diff --git a/.circleci/config.yml b/.circleci/config.yml index 993ef27b..4d4b02d5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -56,16 +56,16 @@ jobs: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/.npmrc echo "//registry.yarnpkg.com/:_authToken=$NPM_TOKEN" >> ~/.npmrc - run: - name: Publish @pxblue/icons + name: Publish @brightlayer-ui/icons command: yarn publish:package -b $CIRCLE_BRANCH - run: - name: Publish @pxblue/icons-svg + name: Publish @brightlayer-ui/icons-svg command: cd svg && yarn publish:package -b $CIRCLE_BRANCH - run: - name: Publish @pxblue/icons-mui + name: Publish @brightlayer-ui/icons-mui command: cd mui && yarn publish:package -b $CIRCLE_BRANCH - run: - name: Publish @pxblue/react-native-vector-icons + name: Publish @brightlayer-ui/react-native-vector-icons command: cd rn-vector && yarn publish:package -b $CIRCLE_BRANCH tag: @@ -77,17 +77,17 @@ jobs: at: . - gh/setup - run: - name: Tag @pxblue/icons - command: yarn tag:package -b $CIRCLE_BRANCH + name: Tag @brightlayer-ui/icons + command: yarn tag:package -b $CIRCLE_BRANCH -s -blui-icons - run: - name: Tag @pxblue/icons-svg - command: cd svg && yarn tag:package -b $CIRCLE_BRANCH + name: Tag @brightlayer-ui/icons-svg + command: cd svg && yarn tag:package -b $CIRCLE_BRANCH -s -blui-icons-svg - run: - name: Tag @pxblue/icons-mui - command: cd mui && yarn tag:package -b $CIRCLE_BRANCH + name: Tag @brightlayer-ui/icons-mui + command: cd mui && yarn tag:package -b $CIRCLE_BRANCH -s -blui-icons-mui - run: - name: Tag @pxblue/react-native-vector-icons - command: cd rn-vector && yarn tag:package -b $CIRCLE_BRANCH + name: Tag @brightlayer-ui/react-native-vector-icons + command: cd rn-vector && yarn tag:package -b $CIRCLE_BRANCH -s -blui-react-native-vector-icons workflows: version: 2 icons: diff --git a/CHANGELOG.md b/CHANGELOG.md index c886a3db..481ffe98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## v1.7.1 (November 3, 2021) + +### Changed + +- Changed package namespace from `@pxblue` to `@brightlayer-ui`. + +## Package Migration Notice + +Previous versions listed after this indicator refer to our deprecated `@pxblue` packages. + +--- + ## v1.7.1 (October 27, 2021) ### Fixed diff --git a/PUBLISHING.md b/PUBLISHING.md index c8168133..be457210 100644 --- a/PUBLISHING.md +++ b/PUBLISHING.md @@ -11,13 +11,13 @@ This package is published to NPM automatically by CircleCI when code is merged i If you need to publish a package manually, you can run the following commands from the root folder: -### @pxblue/icons +### @brightlayer-ui/icons ``` yarn build yarn publish:package ``` -### @pxblue/icons-svg +### @brightlayer-ui/icons-svg ``` yarn build:all cd svg diff --git a/README.md b/README.md index 1ef153d0..5d2435ea 100644 --- a/README.md +++ b/README.md @@ -1,19 +1,19 @@ -# PX Blue Supplemental Icons +# Brightlayer UI Supplemental Icons -[![](https://img.shields.io/npm/v/@pxblue/icons.svg?label=@pxblue/icons&style=flat)](https://www.npmjs.com/package/@pxblue/icons) -[![](https://img.shields.io/npm/v/@pxblue/icons-svg.svg?label=@pxblue/icons-svg&style=flat)](https://www.npmjs.com/package/@pxblue/icons-svg) -[![](https://img.shields.io/circleci/project/github/pxblue/icons/master.svg?style=flat)](https://circleci.com/gh/pxblue/icons/tree/master) +[![](https://img.shields.io/npm/v/@brightlayer-ui/icons.svg?label=@brightlayer-ui/icons&style=flat)](https://www.npmjs.com/package/@brightlayer-ui/icons) +[![](https://img.shields.io/npm/v/@brightlayer-ui/icons-svg.svg?label=@brightlayer-ui/icons-svg&style=flat)](https://www.npmjs.com/package/@brightlayer-ui/icons-svg) +[![](https://img.shields.io/circleci/project/github/brightlayer-ui/icons/master.svg?style=flat)](https://circleci.com/gh/brightlayer-ui/icons/tree/master) -This is a library of supplemental icons, to be used in conjunction with the standard Material Design icons in PX Blue applications. +This is a library of supplemental icons, to be used in conjunction with the standard Material Design icons in Brightlayer UI applications. ## Installation -To install the PX Blue icon font from NPM as a dependency for your project, you can run one of the following commands in your project root: +To install the Brightlayer UI icon font from NPM as a dependency for your project, you can run one of the following commands in your project root: ``` -npm install --save @pxblue/icons +npm install --save @brightlayer-ui/icons or -yarn add @pxblue/icons +yarn add @brightlayer-ui/icons ``` You then need to reference the font in your application so that it is available for use. @@ -25,7 +25,7 @@ In order to use the icon font, you will need to modify your angular.json file "s ``` "styles": [ "src/styles.scss", - "./node_modules/@pxblue/icons/iconfont/PXBlueIcons.css" + "./node_modules/@brightlayer-ui/icons/iconfont/BrightlayerUIIcons.css" ], ``` @@ -34,15 +34,15 @@ In order to use the icon font, you will need to modify your angular.json file "s For React, you'll need to require the font in your top-level JS file (typically index.js). ``` -require('@pxblue/icons/iconfont/PXBlueIcons.css'); +require('@brightlayer-ui/icons/iconfont/BrightlayerUIIcons.css'); ``` ## Using the icon font in your application -This will make the PX Blue icons available to your code by using the appropriate class name (className for React) on a `` element, e.g.: +This will make the Brightlayer UI icons available to your code by using the appropriate class name (className for React) on a `` element, e.g.: ``` - + ``` ### Applying Different Colors @@ -50,30 +50,30 @@ This will make the PX Blue icons available to your code by using the appropriate To change the color of the icon you are using, simply set the CSS color property. This property is inheritable, so if the property is not set on your icon, it will be inherited from the parent container. ``` - + ``` ### Available Icons -See the [Iconography](https://pxblue.github.io/style/iconography) on pxblue.github.io for a list of currently available icons. +See the [Iconography](https://brightlayer-ui.github.io/style/iconography) on brightlayer-ui.github.io for a list of currently available icons. ## Usage Alternatives The icon font is a great way to include lots of icons in your application. If you only need a few, you can also check out these alternative packages: -- [SVG Icons](https://www.npmjs.com/package/@pxblue/icons-svg) -- [React Components](https://www.npmjs.com/package/@pxblue/icons-mui) -- [React Native Vector Icons](https://www.npmjs.com/package/@pxblue/react-native-vector-icons) +- [SVG Icons](https://www.npmjs.com/package/@brightlayer-ui/icons-svg) +- [React Components](https://www.npmjs.com/package/@brightlayer-ui/icons-mui) +- [React Native Vector Icons](https://www.npmjs.com/package/@brightlayer-ui/react-native-vector-icons) -We also have PX Blue oneline symbols (ported from PX Blue 1.0) available: +We also have Brightlayer UI one-line symbols (ported from Brightlayer UI 1.0) available: -- [SVG Symbols](https://www.npmjs.com/package/@pxblue/symbols) -- [React Components](https://www.npmjs.com/package/@pxblue/symbols-mui) +- [SVG Symbols](https://www.npmjs.com/package/@brightlayer-ui/symbols) +- [React Components](https://www.npmjs.com/package/@brightlayer-ui/symbols-mui) Our library of dynamic progress icons has been split off into a dedicated repository: -- [Progress Icons](https://github.com/pxblue/progress-icons) +- [Progress Icons](https://github.com/brightlayer-ui/progress-icons) # For Icon Creators -Please read the instructions in the [Design](https://github.com/pxblue/icons/blob/master/design/README.md) folder before creating or submitting new icons. +Please read the instructions in the [Design](https://github.com/brightlayer-ui/icons/blob/master/design/README.md) folder before creating or submitting new icons. diff --git a/design/.svgsus b/design/.svgsus index e4681ea5..00376065 100644 --- a/design/.svgsus +++ b/design/.svgsus @@ -1 +1 @@ -{"tags":{"px_stop_24px.svg":["stop","stopping"],"px_stopping_24px.svg":["stop","stopping process"],"contextualinquiry.svg":[]},"notes":""} \ No newline at end of file +{"tags":{"blui_stop_24px.svg":["stop","stopping"],"blui_stopping_24px.svg":["stop","stopping process"],"contextualinquiry.svg":[]},"notes":""} \ No newline at end of file diff --git a/design/Agriculture/Leaf/leaf.svg b/design/Agriculture/Leaf/leaf.svg index c0700a81..bf22244f 100644 --- a/design/Agriculture/Leaf/leaf.svg +++ b/design/Agriculture/Leaf/leaf.svg @@ -1,5 +1,4 @@ - px_leaf_24px diff --git a/design/Devices/Bearing/bearing.svg b/design/Devices/Bearing/bearing.svg index 291ce490..c2dcb609 100644 --- a/design/Devices/Bearing/bearing.svg +++ b/design/Devices/Bearing/bearing.svg @@ -1,5 +1,4 @@ - px_bearing_24px diff --git a/design/Devices/Breaker/breaker.svg b/design/Devices/Breaker/breaker.svg index b53dbca0..c6f58ec0 100644 --- a/design/Devices/Breaker/breaker.svg +++ b/design/Devices/Breaker/breaker.svg @@ -1 +1 @@ -px_breaker_24px \ No newline at end of file + \ No newline at end of file diff --git a/design/Devices/Camera/camera.svg b/design/Devices/Camera/camera.svg index 4a2ce890..026c1c1c 100644 --- a/design/Devices/Camera/camera.svg +++ b/design/Devices/Camera/camera.svg @@ -1,5 +1,4 @@ - px_camera_24px diff --git a/design/Devices/Capacitor/capacitor_large.svg b/design/Devices/Capacitor/capacitor_large.svg index 4cdfea30..5ee73259 100644 --- a/design/Devices/Capacitor/capacitor_large.svg +++ b/design/Devices/Capacitor/capacitor_large.svg @@ -1,5 +1,4 @@ - px_capacitor_24px diff --git a/design/Devices/Computer/computer.svg b/design/Devices/Computer/computer.svg index 76cc4298..62414863 100644 --- a/design/Devices/Computer/computer.svg +++ b/design/Devices/Computer/computer.svg @@ -1,5 +1,4 @@ - px_computer_24px diff --git a/design/Devices/Contactor/contactor.svg b/design/Devices/Contactor/contactor.svg index aa364885..91e132e5 100644 --- a/design/Devices/Contactor/contactor.svg +++ b/design/Devices/Contactor/contactor.svg @@ -1,5 +1,4 @@ - px_contactor_24px diff --git a/design/Devices/Device/device.svg b/design/Devices/Device/device.svg index 1d296e75..9171410f 100644 --- a/design/Devices/Device/device.svg +++ b/design/Devices/Device/device.svg @@ -1 +1 @@ -px_device_24px \ No newline at end of file + \ No newline at end of file diff --git a/design/Devices/Ephesus Fixture/ephesus_fixture.svg b/design/Devices/Ephesus Fixture/ephesus_fixture.svg index e655bd18..51a9eb4f 100644 --- a/design/Devices/Ephesus Fixture/ephesus_fixture.svg +++ b/design/Devices/Ephesus Fixture/ephesus_fixture.svg @@ -1 +1 @@ -px_ephesus_fixture_24px \ No newline at end of file + \ No newline at end of file diff --git a/design/Devices/Ephesus Gateway/ephesus_gateway.svg b/design/Devices/Ephesus Gateway/ephesus_gateway.svg index d993ddfa..385d960f 100644 --- a/design/Devices/Ephesus Gateway/ephesus_gateway.svg +++ b/design/Devices/Ephesus Gateway/ephesus_gateway.svg @@ -1,5 +1,4 @@ - px_ephesus_gateway_24px diff --git a/design/Devices/Fan/fan.svg b/design/Devices/Fan/fan.svg index 2caf6b1e..c5a18892 100644 --- a/design/Devices/Fan/fan.svg +++ b/design/Devices/Fan/fan.svg @@ -1,5 +1,4 @@ - px_fan_24px diff --git a/design/Devices/Generator/generator_off.svg b/design/Devices/Generator/generator_off.svg index 8ab31111..7f74f077 100644 --- a/design/Devices/Generator/generator_off.svg +++ b/design/Devices/Generator/generator_off.svg @@ -1,5 +1,4 @@ - px_generator_off_24px diff --git a/design/Devices/Network Switch/network_switch.svg b/design/Devices/Network Switch/network_switch.svg index dcd48f21..968e4a25 100644 --- a/design/Devices/Network Switch/network_switch.svg +++ b/design/Devices/Network Switch/network_switch.svg @@ -1,5 +1,4 @@ - px_network_switch_24px diff --git a/design/Devices/PDU/pdu.svg b/design/Devices/PDU/pdu.svg index dfc65e1c..60b2bc0d 100644 --- a/design/Devices/PDU/pdu.svg +++ b/design/Devices/PDU/pdu.svg @@ -1,5 +1,4 @@ - px_pdu_24px diff --git a/design/Devices/Pump/pump.svg b/design/Devices/Pump/pump.svg index b11757b5..4f972cca 100644 --- a/design/Devices/Pump/pump.svg +++ b/design/Devices/Pump/pump.svg @@ -1 +1 @@ -px_pump_24px \ No newline at end of file + \ No newline at end of file diff --git a/design/Devices/SSOL/ssol.svg b/design/Devices/SSOL/ssol.svg index 36767fb4..a849b4c9 100644 --- a/design/Devices/SSOL/ssol.svg +++ b/design/Devices/SSOL/ssol.svg @@ -1 +1 @@ -px_ssol_24px \ No newline at end of file + \ No newline at end of file diff --git a/design/Devices/Server/server.svg b/design/Devices/Server/server.svg index b5928043..6ddb5be8 100644 --- a/design/Devices/Server/server.svg +++ b/design/Devices/Server/server.svg @@ -1,5 +1,4 @@ - px_server_24px diff --git a/design/Devices/Server/servers.svg b/design/Devices/Server/servers.svg index d42b665c..d9b08956 100644 --- a/design/Devices/Server/servers.svg +++ b/design/Devices/Server/servers.svg @@ -1,5 +1,4 @@ - px_servers_24px diff --git a/design/Devices/Switch/switch.svg b/design/Devices/Switch/switch.svg index c2d2222c..3f100bfe 100644 --- a/design/Devices/Switch/switch.svg +++ b/design/Devices/Switch/switch.svg @@ -1,5 +1,4 @@ - px_tripped_24px diff --git a/design/Devices/VFD/vfd.svg b/design/Devices/VFD/vfd.svg index d688acdb..82dcf0cf 100644 --- a/design/Devices/VFD/vfd.svg +++ b/design/Devices/VFD/vfd.svg @@ -1,5 +1,4 @@ - px_vfd_24px diff --git a/design/META.json b/design/META.json index 58af60d0..c6daa3f5 100644 --- a/design/META.json +++ b/design/META.json @@ -7,7 +7,7 @@ "style": "baseline", "tags": ["device", "product", "equipment"], "description": "Used to represent a generic device.", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -27,7 +27,7 @@ "style": "baseline", "tags": ["battery"], "description": "Battery icon, displayed horizontally", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -37,7 +37,7 @@ "style": "baseline", "tags": ["device", "product", "equipment", "component", "ball bearings", "industrial", "machine"], "description": "Used to represent a generic device.", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -60,7 +60,7 @@ "panel" ], "description": "Used to represent a low voltage circuit breaker.", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -90,7 +90,7 @@ "capacity" ], "description": "Used to represent a large capacitor as used in UPS, HVAC, etc.", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -110,7 +110,7 @@ "capacity" ], "description": "Used to represent a large capacitor as a symbol", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -120,7 +120,7 @@ "style": "baseline", "tags": ["device", "product", "equipment", "component", "computer", "tower", "PC", "desktop", "load"], "description": "Used to represent a generic device.", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -130,7 +130,7 @@ "style": "baseline", "tags": ["device", "equipment", "component", "electrical", "oneline", "one-line", "symbol"], "description": "Used to represent a generic device.", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -140,7 +140,7 @@ "style": "baseline", "tags": ["device", "equipment", "component", "electrical", "oneline", "one-line", "symbol"], "description": "Used to represent a diode.", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -162,7 +162,7 @@ "lumadapt" ], "description": "A light fixture designed after the Ephesus Game On/Lumadapt products.", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -184,7 +184,7 @@ "lumadapt" ], "description": "Ephesus Gateway device.", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -217,7 +217,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["device", "product", "equipment", "electrical", "backup", "g", "industrial", "power"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -226,7 +226,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["device", "product", "equipment", "electrical", "backup", "g", "industrial", "power", "off"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -295,7 +295,7 @@ "power strip", "cabinet" ], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -314,7 +314,7 @@ "liquid", "mechanical" ], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -336,7 +336,7 @@ "computer", "server" ], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -378,7 +378,7 @@ "starter", "motor" ], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "description": "A Solid State Overload Relay", "size": 24 }, @@ -388,7 +388,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["device", "product", "equipment", "electrical", "switch", "circuit", "interrupt"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "description": "Represents an electrical switch", "size": 24 }, @@ -398,7 +398,7 @@ "family": ["Devices"], "style": "outlined", "tags": ["device", "product", "equipment", "electrical", "switchgear", "assembly"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "description": "Represents switchgear lineup", "size": 24 }, @@ -408,7 +408,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["device", "product", "equipment", "electrical", "symbol", "circuit"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "description": "Represents a transfomer symbol", "size": 24 }, @@ -430,7 +430,7 @@ "electricity", "grid" ], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "description": "Represents an electrical switch", "size": 24 }, @@ -451,7 +451,7 @@ "motor", "dg1" ], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "description": "A Variable Frequency Drive", "size": 24 }, @@ -461,7 +461,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["device", "product", "equipment", "electrical", "battery", "storage", "backup", "solar"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "description": "Represents the ESB product xStorage", "size": 24 }, @@ -482,7 +482,7 @@ "style": "baseline", "tags": ["ups", "battery", "bypass", "power", "supply", "output", "input"], "description": "Represents a UPS bypassing battery status", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -491,7 +491,7 @@ "family": ["Status"], "style": "baseline", "tags": ["current", "electrical", "electric", "charge", "amp", "amps", "ampere", "flow", "ciruit"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -512,7 +512,7 @@ "flow", "ciruit" ], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -535,7 +535,7 @@ "flow", "ciruit" ], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -544,7 +544,7 @@ "family": ["Status"], "style": "baseline", "tags": ["water", "rate", "wave", "liquid", "gpm", "gallons", "pipe"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -580,7 +580,7 @@ "family": ["Status"], "style": "baseline", "tags": ["grade", "letter", "score", "points", "gpa", "a", "circle", "health", "healthy"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -589,7 +589,7 @@ "family": ["Status"], "style": "baseline", "tags": ["grade", "letter", "score", "points", "gpa", "b", "circle", "health", "healthy"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -598,7 +598,7 @@ "family": ["Status"], "style": "baseline", "tags": ["grade", "letter", "score", "points", "gpa", "c", "circle", "health"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -607,7 +607,7 @@ "family": ["Status"], "style": "baseline", "tags": ["grade", "letter", "score", "points", "gpa", "d", "circle", "health", "bad", "unhealthy"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -616,7 +616,7 @@ "family": ["Status"], "style": "baseline", "tags": ["grade", "letter", "score", "points", "gpa", "f", "circle", "health", "bad", "unhealthy"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -625,7 +625,7 @@ "family": ["Status"], "style": "baseline", "tags": ["grade", "score", "points", "gpa", "circle", "health", "medical", "care"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -635,7 +635,7 @@ "style": "baseline", "tags": ["incident", "alarms", "occurence"], "description": "This icon represents and incident, or group of Alarms", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -645,7 +645,7 @@ "style": "baseline", "tags": ["incident", "alarms", "occurence", "active"], "description": "This icon represents and incident, or group of Alarms that are currently Active", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -655,7 +655,7 @@ "style": ["baseline", "outline"], "tags": ["incident", "alarms", "occurence"], "description": "This icon represents and incident, or group of Alarms that are resolved or inactive", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -677,7 +677,7 @@ "event" ], "description": "Used to represent maintainance mode or service event", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -699,7 +699,7 @@ "humidity" ], "description": "Represents environmental values such as temperature and humidity", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -708,7 +708,7 @@ "family": ["Status"], "style": "baseline", "tags": ["water", "liquid", "drop", "humidity", "environment", "sensor", "wet", "damp"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -718,7 +718,7 @@ "style": "baseline", "tags": ["interference", "electrical", "waveform", "wave", "radio", "signals", "harmonics"], "description": "", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -728,7 +728,7 @@ "style": "baseline", "tags": ["current", "circle", "circled", "electrical", "electric", "charge", "volts", "flow", "ciruit"], "description": "", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -749,7 +749,7 @@ "ciruit" ], "description": "", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -759,7 +759,7 @@ "style": "baseline", "tags": ["square", "exclaimation", "important", "critical"], "description": "Used to denote (Binary) Priority", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -769,7 +769,7 @@ "style": "baseline", "tags": ["push", "notify", "alert", "message", "badge"], "description": "Represents a device Push Notification", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -779,7 +779,7 @@ "style": "outlined", "tags": ["push", "notify", "alert", "message", "badge", "outlined"], "description": "Represents a device Push Notification", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -809,7 +809,7 @@ "style": "baseline", "tags": ["motor", "run", "running", "high", "fast", "drive", "start", "starter", "speed"], "description": "Represents a motor running on high setting", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -819,7 +819,7 @@ "style": "baseline", "tags": ["motor", "run", "running", "low", "slow", "drive", "start", "starter", "speed"], "description": "Represents a motor running on low setting", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -829,7 +829,7 @@ "style": "baseline", "tags": ["motor", "stop", "drive", "start", "starter", "sign", "ready"], "description": "Stop Sign, can be used to represent a device stopped state or action", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -839,7 +839,7 @@ "style": "baseline", "tags": ["motor", "run", "running", "stopping", "decelerate", "drive", "start", "starter"], "description": "Represents a motor stopping or decelerating", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -869,7 +869,7 @@ "cold" ], "description": "Represents a temperature", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -931,7 +931,7 @@ "change" ], "description": "Represents an increase over time", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -941,7 +941,7 @@ "style": "baseline", "tags": ["data", "arrow", "trend", "chart", "less", "lower", "trending", "down", "decrease", "change"], "description": "Represents a decrease over time", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -951,7 +951,7 @@ "style": "baseline", "tags": ["data", "arrow", "trend", "chart", "trending", "flat", "change", "no change"], "description": "Represents no change over time", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -961,7 +961,7 @@ "style": "baseline", "tags": ["open", "swtich", "trip", "breaker", "tripped", "opened"], "description": "An open or tripped switch or breaker", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -971,7 +971,7 @@ "style": "baseline", "tags": ["ups", "variable module management system", "eaa", "load", "power", "supply"], "description": "Represents Eaton's variable module management system for UPS devices", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -981,7 +981,7 @@ "style": "baseline", "tags": ["electrical", "electric", "charge", "volts", "potential", "voltage", "ciruit"], "description": "", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1001,7 +1001,7 @@ "ciruit" ], "description": "", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1022,7 +1022,7 @@ "ciruit" ], "description": "", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1031,7 +1031,7 @@ "family": ["Status"], "style": "baseline", "tags": ["water", "liquid", "drop", "humidity", "environment", "sensor", "wet"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1040,7 +1040,7 @@ "family": ["Status"], "style": "outlined", "tags": ["outline", "water", "liquid", "drop", "humidity", "environment", "sensor", "wet"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1049,7 +1049,7 @@ "family": ["Status"], "style": "baseline", "tags": ["wave", "waveform", "current", "electrical", "harmonics", "graph", "oscilloscope", "amplitude"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1089,7 +1089,7 @@ "style": "baseline", "tags": ["tank", "gas"], "description": "This icon can be used to represent a tank of gas, industrial gasses", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1098,7 +1098,7 @@ "family": ["Agriculture"], "style": "baseline", "tags": ["tree", "crop", "fruit", "nut", "farm", "plant", "grow", "feed", "orchard", "forest"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1119,7 +1119,7 @@ "environment", "green" ], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "status": "possible redraw", "size": 24 }, @@ -1129,7 +1129,7 @@ "family": ["Agriculture"], "style": "baseline", "tags": ["wheat", "crop", "grain", "farm", "field", "cereal", "silage", "plant", "grow", "feed", "food"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1184,7 +1184,7 @@ "family": ["Agriculture"], "style": "baseline", "tags": ["barley", "grain", "crop", "farm", "plant", "grow", "feed", "food"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1383,7 +1383,7 @@ "logo" ], "description": "Power Xpert Blue icon graphic, redesigned on the Material Design Icon spec", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1439,7 +1439,7 @@ "style": "baseline", "tags": ["sb", "blue", "platform", "ux", "service", "ccis", "design", "user experience", "graphic", "logo"], "description": "Studio Blue logo icon graphic", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1449,7 +1449,7 @@ "style": "outlined", "tags": ["sb", "blue", "platform", "ux", "service", "ccis", "design", "user experience", "graphic", "logo"], "description": "Studio Blue logo icon graphic", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1472,7 +1472,7 @@ "linux" ], "description": "Power Xpert Red icon graphic, redesigned on the Material Design Icon spec", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1495,7 +1495,7 @@ "embedded" ], "description": "Power Xpert Green icon graphic, (somewhat) redesigned on the Material Design Icon spec", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1518,7 +1518,7 @@ "iot" ], "description": "Power Xpert White icon graphic, redesigned on the Material Design Icon spec", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1542,7 +1542,7 @@ "technology" ], "description": "Cybersecurity icon graphic, redesigned on the Material Design Icon spec", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1566,7 +1566,7 @@ "technology" ], "description": "Cybersecurity icon graphic, redesigned on the Material Design Icon spec, includes two-tone traces in the background at 50% opacity", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1746,7 +1746,7 @@ "family": ["status"], "style": "baseline", "tags": ["pins", "places", "locations"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1783,7 +1783,7 @@ "family": ["device"], "style": "baseline", "tags": ["ami", "gateway", "cellular", "control xpert"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1794,7 +1794,7 @@ "style": "baseline", "tags": ["voltage", "volts", "ac"], "description": "Used to represent AC voltage in volts", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1805,7 +1805,7 @@ "style": "baseline", "tags": ["voltage", "volts", "dc"], "description": "Used to represent DC voltage in volts", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1816,7 +1816,7 @@ "style": "baseline", "tags": ["current", "amps", "ac"], "description": "Used to represent AC current in amps", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1827,7 +1827,7 @@ "style": "baseline", "tags": ["current", "amps", "dc"], "description": "Used to represent DC current in amps", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1838,7 +1838,7 @@ "style": "baseline", "tags": ["ac", "current", "alternating current"], "description": "Used to represent Alternating Current (AC)", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1849,7 +1849,7 @@ "style": "baseline", "tags": ["dc", "current", "direct current"], "description": "Used to represent Direct Current (DC)", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1860,7 +1860,7 @@ "style": "baseline", "tags": ["power", "ac", "watts"], "description": "Used to represent AC power in watts", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1871,7 +1871,7 @@ "style": "baseline", "tags": ["power", "dc", "watts"], "description": "Used to represent DC power in watts", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1882,7 +1882,7 @@ "style": "baseline", "tags": ["power", "apparent", "ac", "volt-amps"], "description": "Used to represent AC power in volt-amps", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1893,7 +1893,7 @@ "style": "baseline", "tags": ["line", "average", "compare"], "description": "Used to represent measuring or comparing line-to-line (l-l)", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1904,7 +1904,7 @@ "style": "baseline", "tags": ["line", "neutral", "average", "compare"], "description": "Used to represent measuring or comparing line-to-neutral (l-n)", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1915,7 +1915,7 @@ "style": "baseline", "tags": ["device", "activating", "cellular", "pairing", "syncing", "gateway"], "description": "Used to represent a device Activating or communicating", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1925,7 +1925,7 @@ "family": ["status"], "style": "baseline", "tags": ["distance", "social", "distancing", "proximity"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1935,7 +1935,7 @@ "family": ["ppe"], "style": "baseline", "tags": ["ppe", "distance", "social", "distancing", "proximity", "haptic", "motor", "vibration"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1944,7 +1944,7 @@ "family": ["ppe"], "style": "outlined", "tags": ["ppe", "distance", "social", "distancing", "proximity", "haptic", "motor", "vibration"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1954,7 +1954,7 @@ "family": ["ppe"], "style": "baseline", "tags": ["ppe", "distance", "social", "distancing", "proximity", "haptic", "motor", "vibration"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1964,7 +1964,7 @@ "family": ["ppe"], "style": "baseline", "tags": ["ppe", "footwear", "shoe", "boot", "metatarsal", "boot", "foot", "safe"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1974,7 +1974,7 @@ "family": ["ppe"], "style": "baseline", "tags": ["ppe", "eyewear", "eye", "goggles", "safe"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1984,7 +1984,7 @@ "family": ["ppe"], "style": "baseline", "tags": ["ppe", "hearing", "ear", "noise", "sound", "loud", "safe"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -2004,7 +2004,7 @@ "family": ["ppe"], "style": "baseline", "tags": ["plexiglass", "barrier", "divider", "social distancing", "between", "separate"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -2041,7 +2041,7 @@ "family": ["Lighting"], "style": "baseline", "tags": ["light", "energy"], - "author": "Huayun Huang (PX Blue)", + "author": "Huayun Huang (Brightlayer UI)", "size": 24 }, { @@ -2158,7 +2158,7 @@ "family": ["Status"], "style": "baseline", "tags": ["pressure", "gauge", "psi", "pipe"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -2167,7 +2167,7 @@ "family": ["Status"], "style": "baseline", "tags": ["pressure", "gauge", "psi", "pipe"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -2176,7 +2176,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["battery", "test", "reset", "large battery", "lead acid", "batteries"], - "author": "Huayun Huang (PX Blue)", + "author": "Huayun Huang (Brightlayer UI)", "size": 24 }, { @@ -2185,7 +2185,7 @@ "family": ["Devices"], "style": "outlined", "tags": ["battery", "test", "reset", "outline", "large battery", "lead acid", "batteries"], - "author": "Amy Deng (PX Blue)", + "author": "Amy Deng (Brightlayer UI)", "size": 24 }, { @@ -2194,7 +2194,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["battery", "terminal", "terminals", "large battery", "lead acid", "batteries"], - "author": "Amy Deng (PX Blue)", + "author": "Amy Deng (Brightlayer UI)", "size": 24 }, { @@ -2203,7 +2203,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["battery", "large battery", "lead acid", "batteries"], - "author": "Huayun Huang (PX Blue)", + "author": "Huayun Huang (Brightlayer UI)", "size": 24 }, { @@ -2212,7 +2212,7 @@ "family": ["Devices"], "style": "outlined", "tags": ["battery", "large battery", "lead acid", "batteries"], - "author": "Huayun Huang (PX Blue)", + "author": "Huayun Huang (Brightlayer UI)", "size": 24 }, { @@ -2230,7 +2230,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["automatic", "transfer", "switch", "circuit", "node"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2239,7 +2239,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["automatic", "transfer", "switch", "circuit", "node"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2261,7 +2261,7 @@ "cell", "consumer unit" ], - "author": "Huayun Huang (PX Blue)", + "author": "Huayun Huang (Brightlayer UI)", "size": 24 }, { @@ -2282,7 +2282,7 @@ "DB", "consumer unit" ], - "author": "Huayun Huang (PX Blue)", + "author": "Huayun Huang (Brightlayer UI)", "size": 24 }, { @@ -2291,7 +2291,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["buttons", "arrows", "direction", "start", "stop", "component", "regulate"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2300,7 +2300,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["buttons", "readings", "speed", "unit", "monitor", "display"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2309,7 +2309,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["engine", "spin", "equipment", "rotate", "rotation", "electric"], - "author": "Huayun Huang (PX Blue)", + "author": "Huayun Huang (Brightlayer UI)", "size": 24 }, { @@ -2318,7 +2318,7 @@ "family": ["Devices"], "style": "outlined", "tags": ["control", "engine", "spin", "equipment", "rotate", "rotation", "electric"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2327,7 +2327,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["control", "engine", "spin", "equipment", "rotate", "rotation", "electric"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2336,7 +2336,7 @@ "family": ["Devices"], "style": "outlined", "tags": ["engine", "spin", "equipment", "rotate", "rotation", "electric"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2357,7 +2357,7 @@ "rotation", "electric" ], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2366,7 +2366,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["engine", "spin", "equipment", "rotate", "rotation", "electric"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2375,7 +2375,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["oneline", "switch", "circuit", "control", "conductor", "equipment"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2384,7 +2384,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["signal", "receive", "detect", "anomaly", "monitor", "fault"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2393,7 +2393,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["signal", "receive", "detect", "anomaly", "monitor", "fault"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2402,7 +2402,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["signal", "receive", "detect", "anomaly", "monitor", "fault"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2411,7 +2411,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["signal", "receive", "detect", "anomaly", "monitor", "fault"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2420,7 +2420,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["info", "information", "serial number", "version", "identifier", "code name", "system"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2429,7 +2429,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["curve", "characteristic", "breaker", "circuit", "overload", "short circuit", "unit", "fault"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2438,7 +2438,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["curve", "characteristic", "breaker", "circuit", "overload", "short circuit", "unit", "fault"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2447,7 +2447,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["curve", "breaker", "circuit", "overload", "short circuit", "unit", "fault"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2468,7 +2468,7 @@ "protection", "continuous" ], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2489,7 +2489,7 @@ "protection", "continuous" ], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2498,7 +2498,7 @@ "family": ["General"], "style": "baseline", "tags": ["options", "adjust", "settings", "device", "levels", "slider", "preference", "filter", "tweak"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2507,7 +2507,7 @@ "family": ["General"], "style": "baseline", "tags": ["options", "adjust", "settings", "device", "levels", "wrench", "preference", "filter", "tweak"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2516,7 +2516,7 @@ "family": ["General"], "style": "baseline", "tags": ["select", "dimmer", "level", "step", "discrete", "twist", "knob", "dial", "handle", "rotate"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2538,7 +2538,7 @@ "sheet", "heart beat" ], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2560,7 +2560,7 @@ "heart beat", "result" ], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2569,7 +2569,7 @@ "family": ["Status"], "style": "baseline", "tags": ["triangle", "graph", "diagonal", "up", "E"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2578,7 +2578,7 @@ "family": ["Status"], "style": "baseline", "tags": ["triangle", "graph", "diagonal", "up", "P"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2587,7 +2587,7 @@ "family": ["Status"], "style": "baseline", "tags": ["arrow", "detour", "bounce back", "dismiss"], - "author": "Huayun Huang (PX Blue)", + "author": "Huayun Huang (Brightlayer UI)", "size": 24 }, { @@ -2596,7 +2596,7 @@ "family": ["Status"], "style": "baseline", "tags": ["arrow", "detour", "dismiss"], - "author": "Huayun Huang (PX Blue)", + "author": "Huayun Huang (Brightlayer UI)", "size": 24 }, { @@ -2616,7 +2616,7 @@ "wave", "equipment" ], - "author": "Huayun Huang (PX Blue)", + "author": "Huayun Huang (Brightlayer UI)", "size": 24 }, { @@ -2625,7 +2625,7 @@ "family": ["Status"], "style": "baseline", "tags": ["wave", "graph", "line", "curve", "period", "duration", "length"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2634,7 +2634,7 @@ "family": ["Status"], "style": "baseline", "tags": ["wave", "graph", "line", "curve", "pattern"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2652,7 +2652,7 @@ "complexor", "arithmetic" ], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2661,7 +2661,7 @@ "family": ["Status"], "style": "baseline", "tags": ["PF", "+", "-", "ratio", "plus", "minus"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2670,7 +2670,7 @@ "family": ["Status"], "style": "baseline", "tags": ["triangle", "graph", "up", "E"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2679,7 +2679,7 @@ "family": ["Status"], "style": "baseline", "tags": ["triangle", "graph", "up", "P"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2688,7 +2688,7 @@ "family": ["Status"], "style": "baseline", "tags": ["triangle", "graph", "right", "E"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2697,7 +2697,7 @@ "family": ["Status"], "style": "baseline", "tags": ["triangle", "graph", "right", "P"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2706,7 +2706,7 @@ "family": ["Status"], "style": "baseline", "tags": ["steps", "triangle", "VB", "VR", "VY", "load", "component"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2715,7 +2715,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["air", "fan", "rotate", "rotation", "wind", "ac", "cooling", "cold", "temperature", "climate"], - "author": "Amy Deng (PX Blue)", + "author": "Amy Deng (Brightlayer UI)", "size": 24 }, { @@ -2736,7 +2736,7 @@ "temperature", "climate" ], - "author": "Amy Deng (PX Blue)", + "author": "Amy Deng (Brightlayer UI)", "size": 24 }, { @@ -2745,7 +2745,7 @@ "family": ["Status"], "style": "baseline", "tags": ["outflow", "exit", "export", "air", "water", "waste", "exhaust"], - "author": "Huayun Huang (PX Blue)", + "author": "Huayun Huang (Brightlayer UI)", "size": 24 }, { @@ -2754,7 +2754,7 @@ "family": ["Status"], "style": "baseline", "tags": ["influx", "inflow", "inrush", "entry", "import", "air", "water"], - "author": "Huayun Huang (PX Blue)", + "author": "Huayun Huang (Brightlayer UI)", "size": 24 }, { @@ -2763,7 +2763,7 @@ "family": ["Devices"], "style": "outlined", "tags": ["air", "fire", "sensor", "carbon monoxide", "indicator", "alarm", "outline", "co"], - "author": "Amy Deng (PX Blue)", + "author": "Amy Deng (Brightlayer UI)", "size": 24 }, { @@ -2772,7 +2772,7 @@ "family": ["System"], "style": "baseline", "tags": ["extension", "portable document format", "export"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -2781,7 +2781,7 @@ "family": ["System"], "style": "baseline", "tags": ["extension", "docs", "export"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -2790,7 +2790,7 @@ "family": ["Status"], "style": "baseline", "tags": ["usage", "percentage", "chart", "average", "billing", "line", "consumption", "ratio", "cost"], - "author": "Huayun Huang (PX Blue)", + "author": "Huayun Huang (Brightlayer UI)", "size": 24 }, { @@ -2799,7 +2799,7 @@ "family": ["Vehicles"], "style": "outlined", "tags": ["electric vehicle", "inlet", "connector", "j1772", "japan", "charge", "charging station"], - "author": "Jeremy Matter (PX Blue)", + "author": "Jeremy Matter (Brightlayer UI)", "size": 24 }, { @@ -2808,7 +2808,7 @@ "family": ["Vehicles"], "style": "outlined", "tags": ["electric vehicle", "inlet", "connector", "mennekes", "europe", "charge", "charging station"], - "author": "Jeremy Matter (PX Blue)", + "author": "Jeremy Matter (Brightlayer UI)", "size": 24 }, { @@ -2826,7 +2826,7 @@ "charge", "charging station" ], - "author": "Jeremy Matter (PX Blue)", + "author": "Jeremy Matter (Brightlayer UI)", "size": 24 }, { @@ -2843,7 +2843,7 @@ "charge", "charging station" ], - "author": "Jeremy Matter (PX Blue)", + "author": "Jeremy Matter (Brightlayer UI)", "size": 24 }, { @@ -2852,7 +2852,7 @@ "family": ["Devices"], "style": "outlined", "tags": ["radio frequency identification", "tag", "reader", "data", "tracking", "monitor"], - "author": "Huayun Huang (PX Blue)", + "author": "Huayun Huang (Brightlayer UI)", "size": 24 } ] diff --git a/design/README.md b/design/README.md index e3e3776c..6aba9c56 100644 --- a/design/README.md +++ b/design/README.md @@ -1,26 +1,26 @@ -# Power Xpert Blue Icons +# Brightlayer UI Icons -This repository contains icon files for Power Xpert Blue. These icons are grouped into 'family' folders of related icons. Family folders follow a similar naming convention to Material Design, e.g., **Status** and **Devices**. Each icon should be available as a clean, minified SVG file. You may optionally include a source (AI) file for the icon as well - it may be beneficial to group families of icons into a single AI file. Each icon SVG file will need converted to PNG icons files so the icons are available in two formats. +This repository contains icon files for Brightlayer UI. These icons are grouped into 'family' folders of related icons. Family folders follow a similar naming convention to Material Design, e.g., **Status** and **Devices**. Each icon should be available as a clean, minified SVG file. You may optionally include a source (AI) file for the icon as well - it may be beneficial to group families of icons into a single AI file. Each icon SVG file will need converted to PNG icons files so the icons are available in two formats. ## Icon Approval -All icons created for PX Blue must go through the Pull Request process and be approved by the PX Blue team before they will be merged into the master branch and released in the PX Blue icon packages. +All icons created for Brightlayer UI must go through the Pull Request process and be approved by the Brightlayer UI team before they will be merged into the master branch and released in the Brightlayer UI icon packages. If you are comfortable using GitHub and the command line on your computer, you can follow the instructions below for creating your own Pull Request. > If you're not familiar with GitHub and/or the command line, you can also send us your icons directly via email and we will create the Pull Request for you and relay any feedback. Before acceptance, new icons must be reviewed by: -- A Senior PX Blue designer to ensure that the icons are properly following Material Design guidelines -- A PX Blue developer to ensure that the SVG files are properly formatted and function correctly with the build pipeline +- A Senior Brightlayer UI designer to ensure that the icons are properly following Material Design guidelines +- A Brightlayer UI developer to ensure that the SVG files are properly formatted and function correctly with the build pipeline Reviewers must also agree that the name of the icon makes sense, avoids collisions, and that the icon fits into the proposed family folder. ## Icon Creation When creating icons, follow the Material Design [icon design guidelines](https://material.io/design/iconography/system-icons.html) (we only use 24dp icons, not 20dp). Icon designs that do not adhere to these guidelines will be rejected. Templates are available to assist you: -- Illustrator: [IconTemplate.ait](https://github.com/pxblue/icons/raw/master/design/IconTemplate.ait) -- Printable: [MDILetter.pdf](https://github.com/pxblue/icons/raw/master/design/MDILetter.pdf), [MDITabloid.pdf](https://github.com/pxblue/icons/raw/master/design/MDITabloid.pdf) +- Illustrator: [IconTemplate.ait](https://github.com/brightlayer-ui/icons/raw/master/design/IconTemplate.ait) +- Printable: [MDILetter.pdf](https://github.com/brightlayer-ui/icons/raw/master/design/MDILetter.pdf), [MDITabloid.pdf](https://github.com/brightlayer-ui/icons/raw/master/design/MDITabloid.pdf) Design files should ideally contain both original paths, strokes, text, etc. (in the case that the icon must be modified to increase stroke width or font size, for example) as well as the expanded paths version. The expanded version should be use to generate the SVG file. @@ -47,7 +47,7 @@ Icon SVGs should follow the naming convention of just using an icon name (e.g. ` ## PNG Icons -Power Xpert Blue offers matching PNG icons for each SVG icon in this repository, located in the PNG folders. Each SVG icon is converted to PNG format in four colors and two sizes of 24dp and 48dp. +Brightlayer UI offers matching PNG icons for each SVG icon in this repository, located in the PNG folders. Each SVG icon is converted to PNG format in four colors and two sizes of 24dp and 48dp. Colors: ``` @@ -89,18 +89,18 @@ Convert all SVG icons to PNG icons. - Copy the new PNG icon files to the corresponding PNG folder in this repository. ## Git Steps for Designers -The following instructions are for individuals who are comfortable working with GitHub and the command line on their computer. If you prefer, you can send new icons directly to the PX Blue team via email and we will take care of this part of the process for you. +The following instructions are for individuals who are comfortable working with GitHub and the command line on their computer. If you prefer, you can send new icons directly to the Brightlayer UI team via email and we will take care of this part of the process for you. In order to work with this GitHub repository, you will need to have a GitHub account (if you don't have one, you can [sign up](https://github.com/join?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F&source=header-home) for free). -For outside contributors, please refer to our [Contribution Guidelines](https://github.com/pxblue/.github/blob/master/CONTRIBUTING.md#get-started). To summarize the steps for adding your icons and creating a Pull Request for approval: +For outside contributors, please refer to our [Contribution Guidelines](https://github.com/brightlayer-ui/.github/blob/master/CONTRIBUTING.md#get-started). To summarize the steps for adding your icons and creating a Pull Request for approval: - Fork the icons repository to your account - - Go to https://github.com/pxblue/icons and click the Fork button in the top right of the screen (outside contributors who have been added to the icons repository can clone directly from the PX Blue repository without forking) + - Go to https://github.com/brightlayer-ui/icons and click the Fork button in the top right of the screen (outside contributors who have been added to the icons repository can clone directly from the Brightlayer UI repository without forking) - Clone the repository to your local computer ``` git clone https://github.com//icons cd icons - git remote add upstream https://github.com/pxblue/icons + git remote add upstream https://github.com/brightlayer-ui/icons git pull upstream dev ``` - Create a new Branch for your changes. The name of the branch should start with `feature/` followed by the name of your icon (or a simple summary if you are including multiple icons), e.g., `feature/ups`. If your icon name is multiple words, you must separate them with a dash. @@ -116,7 +116,7 @@ For outside contributors, please refer to our [Contribution Guidelines](https:// git push -u origin ``` - Create a Pull Request to begun the process of reviewing and publishing your changes. - - Go to https://github.com/pxblue/icons + - Go to https://github.com/brightlayer-ui/icons - Click on the Pull Requests tab in the upper left - Click on the green "New Pull Request" button - In the 'base' dropdown, select 'dev' diff --git a/design/Status/Battery Percentage/progress/battery_charging_twotone_05.svg b/design/Status/Battery Percentage/progress/battery_charging_twotone_05.svg index f6c00171..a53d0e69 100644 --- a/design/Status/Battery Percentage/progress/battery_charging_twotone_05.svg +++ b/design/Status/Battery Percentage/progress/battery_charging_twotone_05.svg @@ -1,5 +1,4 @@ - px_battery_charging_twotone_05_24px diff --git a/design/Status/Battery Percentage/progress/battery_charging_twotone_0px.svg b/design/Status/Battery Percentage/progress/battery_charging_twotone_0px.svg index fa7a6e0b..fab43497 100644 --- a/design/Status/Battery Percentage/progress/battery_charging_twotone_0px.svg +++ b/design/Status/Battery Percentage/progress/battery_charging_twotone_0px.svg @@ -1,5 +1,4 @@ - px_battery_charging_0_24px diff --git a/design/Status/Battery Percentage/progress/battery_charging_twotone_10.svg b/design/Status/Battery Percentage/progress/battery_charging_twotone_10.svg index b7a48625..02ac616e 100644 --- a/design/Status/Battery Percentage/progress/battery_charging_twotone_10.svg +++ b/design/Status/Battery Percentage/progress/battery_charging_twotone_10.svg @@ -1,5 +1,4 @@ - px_battery_charging_twotone_10_24px diff --git a/design/Status/Battery Percentage/progress/battery_charging_twotone_100.svg b/design/Status/Battery Percentage/progress/battery_charging_twotone_100.svg index caedfd9c..1af028b6 100644 --- a/design/Status/Battery Percentage/progress/battery_charging_twotone_100.svg +++ b/design/Status/Battery Percentage/progress/battery_charging_twotone_100.svg @@ -1,5 +1,4 @@ - px_battery_charging_twotone_100_24px diff --git a/design/Status/Battery Percentage/progress/battery_charging_twotone_15.svg b/design/Status/Battery Percentage/progress/battery_charging_twotone_15.svg index 3a6ce32f..43491770 100644 --- a/design/Status/Battery Percentage/progress/battery_charging_twotone_15.svg +++ b/design/Status/Battery Percentage/progress/battery_charging_twotone_15.svg @@ -1,5 +1,4 @@ - px_battery_charging_twotone_15_24px diff --git a/design/Status/Battery Percentage/progress/battery_charging_twotone_20.svg b/design/Status/Battery Percentage/progress/battery_charging_twotone_20.svg index b998e5b4..db51b389 100644 --- a/design/Status/Battery Percentage/progress/battery_charging_twotone_20.svg +++ b/design/Status/Battery Percentage/progress/battery_charging_twotone_20.svg @@ -1,5 +1,4 @@ - px_battery_charging_twotone_20_24px diff --git a/design/Status/Battery Percentage/progress/battery_charging_twotone_25.svg b/design/Status/Battery Percentage/progress/battery_charging_twotone_25.svg index 08ed1523..d082e234 100644 --- a/design/Status/Battery Percentage/progress/battery_charging_twotone_25.svg +++ b/design/Status/Battery Percentage/progress/battery_charging_twotone_25.svg @@ -1,5 +1,4 @@ - px_battery_charging_twotone_25_24px diff --git a/design/Status/Battery Percentage/progress/battery_charging_twotone_30.svg b/design/Status/Battery Percentage/progress/battery_charging_twotone_30.svg index 873a033d..1f330fa1 100644 --- a/design/Status/Battery Percentage/progress/battery_charging_twotone_30.svg +++ b/design/Status/Battery Percentage/progress/battery_charging_twotone_30.svg @@ -1,5 +1,4 @@ - px_battery_charging_twotone_30_24px diff --git a/design/Status/Battery Percentage/progress/battery_charging_twotone_35.svg b/design/Status/Battery Percentage/progress/battery_charging_twotone_35.svg index 35ee7d87..7de2204a 100644 --- a/design/Status/Battery Percentage/progress/battery_charging_twotone_35.svg +++ b/design/Status/Battery Percentage/progress/battery_charging_twotone_35.svg @@ -1,5 +1,4 @@ - px_battery_charging_twotone_35_24px diff --git a/design/Status/Battery Percentage/progress/battery_charging_twotone_40.svg b/design/Status/Battery Percentage/progress/battery_charging_twotone_40.svg index 87088289..4026719f 100644 --- a/design/Status/Battery Percentage/progress/battery_charging_twotone_40.svg +++ b/design/Status/Battery Percentage/progress/battery_charging_twotone_40.svg @@ -1,5 +1,4 @@ - px_battery_charging_twotone_40_24px diff --git a/design/Status/Battery Percentage/progress/battery_charging_twotone_45.svg b/design/Status/Battery Percentage/progress/battery_charging_twotone_45.svg index e7b97912..aeb6393c 100644 --- a/design/Status/Battery Percentage/progress/battery_charging_twotone_45.svg +++ b/design/Status/Battery Percentage/progress/battery_charging_twotone_45.svg @@ -1,5 +1,4 @@ - px_battery_charging_twotone_45_24px diff --git a/design/Status/Battery Percentage/progress/battery_charging_twotone_50.svg b/design/Status/Battery Percentage/progress/battery_charging_twotone_50.svg index 04262b17..86714e65 100644 --- a/design/Status/Battery Percentage/progress/battery_charging_twotone_50.svg +++ b/design/Status/Battery Percentage/progress/battery_charging_twotone_50.svg @@ -1,5 +1,4 @@ - px_battery_charging_twotone_50_24px diff --git a/design/Status/Battery Percentage/progress/battery_charging_twotone_55.svg b/design/Status/Battery Percentage/progress/battery_charging_twotone_55.svg index ed2ca336..e0cb701e 100644 --- a/design/Status/Battery Percentage/progress/battery_charging_twotone_55.svg +++ b/design/Status/Battery Percentage/progress/battery_charging_twotone_55.svg @@ -1,5 +1,4 @@ - px_battery_charging_twotone_55_24px diff --git a/design/Status/Battery Percentage/progress/battery_charging_twotone_60.svg b/design/Status/Battery Percentage/progress/battery_charging_twotone_60.svg index 6e7d58f3..4cd67233 100644 --- a/design/Status/Battery Percentage/progress/battery_charging_twotone_60.svg +++ b/design/Status/Battery Percentage/progress/battery_charging_twotone_60.svg @@ -1,5 +1,4 @@ - px_battery_charging_twotone_60_24px diff --git a/design/Status/Battery Percentage/progress/battery_charging_twotone_65.svg b/design/Status/Battery Percentage/progress/battery_charging_twotone_65.svg index 66355f8e..40e22ad7 100644 --- a/design/Status/Battery Percentage/progress/battery_charging_twotone_65.svg +++ b/design/Status/Battery Percentage/progress/battery_charging_twotone_65.svg @@ -1,5 +1,4 @@ - px_battery_charging_twotone_65_24px diff --git a/design/Status/Battery Percentage/progress/battery_charging_twotone_70.svg b/design/Status/Battery Percentage/progress/battery_charging_twotone_70.svg index 5341bcf1..ad9a3a4a 100644 --- a/design/Status/Battery Percentage/progress/battery_charging_twotone_70.svg +++ b/design/Status/Battery Percentage/progress/battery_charging_twotone_70.svg @@ -1,5 +1,4 @@ - px_battery_charging_twotone_70_24px diff --git a/design/Status/Battery Percentage/progress/battery_charging_twotone_75.svg b/design/Status/Battery Percentage/progress/battery_charging_twotone_75.svg index 8e8317c1..5a51f40b 100644 --- a/design/Status/Battery Percentage/progress/battery_charging_twotone_75.svg +++ b/design/Status/Battery Percentage/progress/battery_charging_twotone_75.svg @@ -1,5 +1,4 @@ - px_battery_charging_twotone_75_24px diff --git a/design/Status/Battery Percentage/progress/battery_charging_twotone_80.svg b/design/Status/Battery Percentage/progress/battery_charging_twotone_80.svg index ce502fcf..f470e9c6 100644 --- a/design/Status/Battery Percentage/progress/battery_charging_twotone_80.svg +++ b/design/Status/Battery Percentage/progress/battery_charging_twotone_80.svg @@ -1,5 +1,4 @@ - px_battery_charging_twotone_80_24px diff --git a/design/Status/Battery Percentage/progress/battery_charging_twotone_85.svg b/design/Status/Battery Percentage/progress/battery_charging_twotone_85.svg index 77dec958..dfac76d3 100644 --- a/design/Status/Battery Percentage/progress/battery_charging_twotone_85.svg +++ b/design/Status/Battery Percentage/progress/battery_charging_twotone_85.svg @@ -1,5 +1,4 @@ - px_battery_charging_twotone_85_24px diff --git a/design/Status/Battery Percentage/progress/battery_charging_twotone_90.svg b/design/Status/Battery Percentage/progress/battery_charging_twotone_90.svg index 1208cd7f..4cdd79f2 100644 --- a/design/Status/Battery Percentage/progress/battery_charging_twotone_90.svg +++ b/design/Status/Battery Percentage/progress/battery_charging_twotone_90.svg @@ -1,5 +1,4 @@ - px_battery_charging_twotone_90_24px diff --git a/design/Status/Battery Percentage/progress/battery_charging_twotone_95.svg b/design/Status/Battery Percentage/progress/battery_charging_twotone_95.svg index ea3d897a..fc9b6d26 100644 --- a/design/Status/Battery Percentage/progress/battery_charging_twotone_95.svg +++ b/design/Status/Battery Percentage/progress/battery_charging_twotone_95.svg @@ -1,5 +1,4 @@ - px_battery_charging_twotone_95_24px diff --git a/design/Status/Battery Percentage/progress/battery_twotone_0.svg b/design/Status/Battery Percentage/progress/battery_twotone_0.svg index 85d6b3a7..8b00f310 100644 --- a/design/Status/Battery Percentage/progress/battery_twotone_0.svg +++ b/design/Status/Battery Percentage/progress/battery_twotone_0.svg @@ -1,5 +1,4 @@ - px_battery_twotone_0_24px diff --git a/design/Status/Battery Percentage/progress/battery_twotone_05.svg b/design/Status/Battery Percentage/progress/battery_twotone_05.svg index f2327bff..da0b9dd3 100644 --- a/design/Status/Battery Percentage/progress/battery_twotone_05.svg +++ b/design/Status/Battery Percentage/progress/battery_twotone_05.svg @@ -1,5 +1,4 @@ - px_battery_twotone_05_24px diff --git a/design/Status/Battery Percentage/progress/battery_twotone_10.svg b/design/Status/Battery Percentage/progress/battery_twotone_10.svg index 19e3a98d..08a15a40 100644 --- a/design/Status/Battery Percentage/progress/battery_twotone_10.svg +++ b/design/Status/Battery Percentage/progress/battery_twotone_10.svg @@ -1,5 +1,4 @@ - px_battery_twotone_10_24px diff --git a/design/Status/Battery Percentage/progress/battery_twotone_100.svg b/design/Status/Battery Percentage/progress/battery_twotone_100.svg index 62489a30..191b5630 100644 --- a/design/Status/Battery Percentage/progress/battery_twotone_100.svg +++ b/design/Status/Battery Percentage/progress/battery_twotone_100.svg @@ -1,5 +1,4 @@ - px_battery_twotone_100_24px diff --git a/design/Status/Battery Percentage/progress/battery_twotone_15.svg b/design/Status/Battery Percentage/progress/battery_twotone_15.svg index e6eb8e5c..e2f33d5d 100644 --- a/design/Status/Battery Percentage/progress/battery_twotone_15.svg +++ b/design/Status/Battery Percentage/progress/battery_twotone_15.svg @@ -1,5 +1,4 @@ - px_battery_twotone_15_24px diff --git a/design/Status/Battery Percentage/progress/battery_twotone_20.svg b/design/Status/Battery Percentage/progress/battery_twotone_20.svg index a181c275..f31c13e7 100644 --- a/design/Status/Battery Percentage/progress/battery_twotone_20.svg +++ b/design/Status/Battery Percentage/progress/battery_twotone_20.svg @@ -1,5 +1,4 @@ - px_battery_twotone_20_24px diff --git a/design/Status/Battery Percentage/progress/battery_twotone_25.svg b/design/Status/Battery Percentage/progress/battery_twotone_25.svg index cf38ffb9..cd2103ce 100644 --- a/design/Status/Battery Percentage/progress/battery_twotone_25.svg +++ b/design/Status/Battery Percentage/progress/battery_twotone_25.svg @@ -1,5 +1,4 @@ - px_battery_twotone_25_24px diff --git a/design/Status/Battery Percentage/progress/battery_twotone_30.svg b/design/Status/Battery Percentage/progress/battery_twotone_30.svg index 165cb752..b33111d0 100644 --- a/design/Status/Battery Percentage/progress/battery_twotone_30.svg +++ b/design/Status/Battery Percentage/progress/battery_twotone_30.svg @@ -1,5 +1,4 @@ - px_battery_twotone_30_24px diff --git a/design/Status/Battery Percentage/progress/battery_twotone_35.svg b/design/Status/Battery Percentage/progress/battery_twotone_35.svg index 11ccbc3f..0dfa6bfe 100644 --- a/design/Status/Battery Percentage/progress/battery_twotone_35.svg +++ b/design/Status/Battery Percentage/progress/battery_twotone_35.svg @@ -1,5 +1,4 @@ - px_battery_twotone_35_24px diff --git a/design/Status/Battery Percentage/progress/battery_twotone_40.svg b/design/Status/Battery Percentage/progress/battery_twotone_40.svg index 61643afb..0d91a1f7 100644 --- a/design/Status/Battery Percentage/progress/battery_twotone_40.svg +++ b/design/Status/Battery Percentage/progress/battery_twotone_40.svg @@ -1,5 +1,4 @@ - px_battery_twotone_40_24px diff --git a/design/Status/Battery Percentage/progress/battery_twotone_45.svg b/design/Status/Battery Percentage/progress/battery_twotone_45.svg index ac013317..5d0a9119 100644 --- a/design/Status/Battery Percentage/progress/battery_twotone_45.svg +++ b/design/Status/Battery Percentage/progress/battery_twotone_45.svg @@ -1,5 +1,4 @@ - px_battery_twotone_45_24px diff --git a/design/Status/Battery Percentage/progress/battery_twotone_50.svg b/design/Status/Battery Percentage/progress/battery_twotone_50.svg index f2647e18..a8be4381 100644 --- a/design/Status/Battery Percentage/progress/battery_twotone_50.svg +++ b/design/Status/Battery Percentage/progress/battery_twotone_50.svg @@ -1,5 +1,4 @@ - px_battery_twotone_50_24px diff --git a/design/Status/Battery Percentage/progress/battery_twotone_55.svg b/design/Status/Battery Percentage/progress/battery_twotone_55.svg index c9e33beb..524c0c99 100644 --- a/design/Status/Battery Percentage/progress/battery_twotone_55.svg +++ b/design/Status/Battery Percentage/progress/battery_twotone_55.svg @@ -1,5 +1,4 @@ - px_battery_twotone_55_24px diff --git a/design/Status/Battery Percentage/progress/battery_twotone_60.svg b/design/Status/Battery Percentage/progress/battery_twotone_60.svg index 92b06209..0e108d55 100644 --- a/design/Status/Battery Percentage/progress/battery_twotone_60.svg +++ b/design/Status/Battery Percentage/progress/battery_twotone_60.svg @@ -1,5 +1,4 @@ - px_battery_twotone_60_24px diff --git a/design/Status/Battery Percentage/progress/battery_twotone_65.svg b/design/Status/Battery Percentage/progress/battery_twotone_65.svg index c79d55c5..dcdcb810 100644 --- a/design/Status/Battery Percentage/progress/battery_twotone_65.svg +++ b/design/Status/Battery Percentage/progress/battery_twotone_65.svg @@ -1,5 +1,4 @@ - px_battery_twotone_65_24px diff --git a/design/Status/Battery Percentage/progress/battery_twotone_70.svg b/design/Status/Battery Percentage/progress/battery_twotone_70.svg index 04b31c36..a7ee8330 100644 --- a/design/Status/Battery Percentage/progress/battery_twotone_70.svg +++ b/design/Status/Battery Percentage/progress/battery_twotone_70.svg @@ -1,5 +1,4 @@ - px_battery_twotone_70_24px diff --git a/design/Status/Battery Percentage/progress/battery_twotone_75.svg b/design/Status/Battery Percentage/progress/battery_twotone_75.svg index 66083e01..0e7152ac 100644 --- a/design/Status/Battery Percentage/progress/battery_twotone_75.svg +++ b/design/Status/Battery Percentage/progress/battery_twotone_75.svg @@ -1,5 +1,4 @@ - px_battery_twotone_75_24px diff --git a/design/Status/Battery Percentage/progress/battery_twotone_80.svg b/design/Status/Battery Percentage/progress/battery_twotone_80.svg index 08066680..26277cbb 100644 --- a/design/Status/Battery Percentage/progress/battery_twotone_80.svg +++ b/design/Status/Battery Percentage/progress/battery_twotone_80.svg @@ -1,5 +1,4 @@ - px_battery_twotone_80_24px diff --git a/design/Status/Battery Percentage/progress/battery_twotone_85.svg b/design/Status/Battery Percentage/progress/battery_twotone_85.svg index 106af628..951d6619 100644 --- a/design/Status/Battery Percentage/progress/battery_twotone_85.svg +++ b/design/Status/Battery Percentage/progress/battery_twotone_85.svg @@ -1,5 +1,4 @@ - px_battery_twotone_85_24px diff --git a/design/Status/Battery Percentage/progress/battery_twotone_90.svg b/design/Status/Battery Percentage/progress/battery_twotone_90.svg index 633acba6..560a8b65 100644 --- a/design/Status/Battery Percentage/progress/battery_twotone_90.svg +++ b/design/Status/Battery Percentage/progress/battery_twotone_90.svg @@ -1,5 +1,4 @@ - px_battery_twotone_90_24px diff --git a/design/Status/Battery Percentage/progress/battery_twotone_95.svg b/design/Status/Battery Percentage/progress/battery_twotone_95.svg index 5035fb6c..18b3d9b4 100644 --- a/design/Status/Battery Percentage/progress/battery_twotone_95.svg +++ b/design/Status/Battery Percentage/progress/battery_twotone_95.svg @@ -1,5 +1,4 @@ - px_battery_twotone_95_24px diff --git a/design/Status/Bypass Battery/bypass_battery.svg b/design/Status/Bypass Battery/bypass_battery.svg index 1a2f8f85..f238f921 100644 --- a/design/Status/Bypass Battery/bypass_battery.svg +++ b/design/Status/Bypass Battery/bypass_battery.svg @@ -1,4 +1,4 @@ - + diff --git a/design/Status/Current/current_circled.svg b/design/Status/Current/current_circled.svg index ec96147e..5dcac288 100644 --- a/design/Status/Current/current_circled.svg +++ b/design/Status/Current/current_circled.svg @@ -1,5 +1,4 @@ - px_current_circled_24px diff --git a/design/Status/Current/current_circled_outline.svg b/design/Status/Current/current_circled_outline.svg index ace623af..3d0c1fad 100644 --- a/design/Status/Current/current_circled_outline.svg +++ b/design/Status/Current/current_circled_outline.svg @@ -1,5 +1,4 @@ - px_current_circled_outline_24px diff --git a/design/Status/Flow/flow.svg b/design/Status/Flow/flow.svg index c74e6d17..3ae67234 100644 --- a/design/Status/Flow/flow.svg +++ b/design/Status/Flow/flow.svg @@ -1,5 +1,4 @@ - px_flow_24px diff --git a/design/Status/Grade/grade_b.svg b/design/Status/Grade/grade_b.svg index 9eee919b..9013c1c5 100644 --- a/design/Status/Grade/grade_b.svg +++ b/design/Status/Grade/grade_b.svg @@ -1,5 +1,4 @@ - px_grade_b_24px diff --git a/design/Status/Grade/grade_c.svg b/design/Status/Grade/grade_c.svg index b591b90b..0f3ecccd 100644 --- a/design/Status/Grade/grade_c.svg +++ b/design/Status/Grade/grade_c.svg @@ -1,4 +1,3 @@ - px_grade_c_24px diff --git a/design/Status/Grade/grade_d.svg b/design/Status/Grade/grade_d.svg index b3f1b8d8..87cfb2e0 100644 --- a/design/Status/Grade/grade_d.svg +++ b/design/Status/Grade/grade_d.svg @@ -1,5 +1,4 @@ - px_grade_d_24px diff --git a/design/Status/Grade/grade_f.svg b/design/Status/Grade/grade_f.svg index 5b27a8d4..aa335e1d 100644 --- a/design/Status/Grade/grade_f.svg +++ b/design/Status/Grade/grade_f.svg @@ -1,4 +1,3 @@ - px_grade_f_24px diff --git a/design/Status/Maintanence Mode/maintenance.svg b/design/Status/Maintanence Mode/maintenance.svg index 96840dbc..2705f39e 100644 --- a/design/Status/Maintanence Mode/maintenance.svg +++ b/design/Status/Maintanence Mode/maintenance.svg @@ -1,5 +1,4 @@ - px_maintenance_24px diff --git a/design/Status/Moisture/moisture.svg b/design/Status/Moisture/moisture.svg index 479e1a24..96e2fe7e 100644 --- a/design/Status/Moisture/moisture.svg +++ b/design/Status/Moisture/moisture.svg @@ -1,5 +1,4 @@ - px_moisture_24px diff --git a/design/Status/Overlap/overlap.svg b/design/Status/Overlap/overlap.svg index b944222b..765058f1 100644 --- a/design/Status/Overlap/overlap.svg +++ b/design/Status/Overlap/overlap.svg @@ -1,5 +1,4 @@ - px_overlap_24px diff --git a/design/Status/Pie Charts/progress/pie_chart_twotone_0.svg b/design/Status/Pie Charts/progress/pie_chart_twotone_0.svg index 7fd251ba..e18e06c1 100644 --- a/design/Status/Pie Charts/progress/pie_chart_twotone_0.svg +++ b/design/Status/Pie Charts/progress/pie_chart_twotone_0.svg @@ -1,5 +1,4 @@ - px_pie_chart_twotone_0_24px diff --git a/design/Status/Pie Charts/progress/pie_chart_twotone_05.svg b/design/Status/Pie Charts/progress/pie_chart_twotone_05.svg index 6917b05a..950f3259 100644 --- a/design/Status/Pie Charts/progress/pie_chart_twotone_05.svg +++ b/design/Status/Pie Charts/progress/pie_chart_twotone_05.svg @@ -1,5 +1,4 @@ - px_pie_chart_twotone_05_24px diff --git a/design/Status/Pie Charts/progress/pie_chart_twotone_10.svg b/design/Status/Pie Charts/progress/pie_chart_twotone_10.svg index 655260c5..085cf95f 100644 --- a/design/Status/Pie Charts/progress/pie_chart_twotone_10.svg +++ b/design/Status/Pie Charts/progress/pie_chart_twotone_10.svg @@ -1,5 +1,4 @@ - px_pie_chart_twotone_10_24px diff --git a/design/Status/Pie Charts/progress/pie_chart_twotone_100.svg b/design/Status/Pie Charts/progress/pie_chart_twotone_100.svg index 72b144ca..bb1f7a7e 100644 --- a/design/Status/Pie Charts/progress/pie_chart_twotone_100.svg +++ b/design/Status/Pie Charts/progress/pie_chart_twotone_100.svg @@ -1,5 +1,4 @@ - px_pie_chart_twotone_100_24px diff --git a/design/Status/Pie Charts/progress/pie_chart_twotone_15.svg b/design/Status/Pie Charts/progress/pie_chart_twotone_15.svg index 3698a7cb..18927906 100644 --- a/design/Status/Pie Charts/progress/pie_chart_twotone_15.svg +++ b/design/Status/Pie Charts/progress/pie_chart_twotone_15.svg @@ -1,5 +1,4 @@ - px_pie_chart_twotone_15_24px diff --git a/design/Status/Pie Charts/progress/pie_chart_twotone_20.svg b/design/Status/Pie Charts/progress/pie_chart_twotone_20.svg index 7f6c16ca..7aa34e12 100644 --- a/design/Status/Pie Charts/progress/pie_chart_twotone_20.svg +++ b/design/Status/Pie Charts/progress/pie_chart_twotone_20.svg @@ -1,5 +1,4 @@ - px_pie_chart_twotone_20_24px diff --git a/design/Status/Pie Charts/progress/pie_chart_twotone_25.svg b/design/Status/Pie Charts/progress/pie_chart_twotone_25.svg index 24d34402..0b5127b7 100644 --- a/design/Status/Pie Charts/progress/pie_chart_twotone_25.svg +++ b/design/Status/Pie Charts/progress/pie_chart_twotone_25.svg @@ -1,5 +1,4 @@ - px_pie_chart_twotone_25_24px diff --git a/design/Status/Pie Charts/progress/pie_chart_twotone_35.svg b/design/Status/Pie Charts/progress/pie_chart_twotone_35.svg index 6b9bcfd1..0aa605f9 100644 --- a/design/Status/Pie Charts/progress/pie_chart_twotone_35.svg +++ b/design/Status/Pie Charts/progress/pie_chart_twotone_35.svg @@ -1,5 +1,4 @@ - px_pie_chart_twotone_35_24px diff --git a/design/Status/Pie Charts/progress/pie_chart_twotone_40.svg b/design/Status/Pie Charts/progress/pie_chart_twotone_40.svg index a77450ed..5a547a98 100644 --- a/design/Status/Pie Charts/progress/pie_chart_twotone_40.svg +++ b/design/Status/Pie Charts/progress/pie_chart_twotone_40.svg @@ -1,5 +1,4 @@ - px_pie_chart_twotone_40_24px diff --git a/design/Status/Pie Charts/progress/pie_chart_twotone_45.svg b/design/Status/Pie Charts/progress/pie_chart_twotone_45.svg index c400a1b5..55ad62ab 100644 --- a/design/Status/Pie Charts/progress/pie_chart_twotone_45.svg +++ b/design/Status/Pie Charts/progress/pie_chart_twotone_45.svg @@ -1,5 +1,4 @@ - px_pie_chart_twotone_45_24px diff --git a/design/Status/Pie Charts/progress/pie_chart_twotone_50.svg b/design/Status/Pie Charts/progress/pie_chart_twotone_50.svg index f3deb306..8c7bc843 100644 --- a/design/Status/Pie Charts/progress/pie_chart_twotone_50.svg +++ b/design/Status/Pie Charts/progress/pie_chart_twotone_50.svg @@ -1,5 +1,4 @@ - px_pie_chart_twotone_50_24px diff --git a/design/Status/Pie Charts/progress/pie_chart_twotone_60.svg b/design/Status/Pie Charts/progress/pie_chart_twotone_60.svg index 7e58c705..a53c5208 100644 --- a/design/Status/Pie Charts/progress/pie_chart_twotone_60.svg +++ b/design/Status/Pie Charts/progress/pie_chart_twotone_60.svg @@ -1,5 +1,4 @@ - px_pie_chart_twotone_60_24px diff --git a/design/Status/Pie Charts/progress/pie_chart_twotone_65.svg b/design/Status/Pie Charts/progress/pie_chart_twotone_65.svg index baca59a3..9c545ccd 100644 --- a/design/Status/Pie Charts/progress/pie_chart_twotone_65.svg +++ b/design/Status/Pie Charts/progress/pie_chart_twotone_65.svg @@ -1,5 +1,4 @@ - px_pie_chart_twotone_65_24px diff --git a/design/Status/Pie Charts/progress/pie_chart_twotone_70.svg b/design/Status/Pie Charts/progress/pie_chart_twotone_70.svg index 9abaaa27..c706f9d0 100644 --- a/design/Status/Pie Charts/progress/pie_chart_twotone_70.svg +++ b/design/Status/Pie Charts/progress/pie_chart_twotone_70.svg @@ -1,5 +1,4 @@ - px_pie_chart_twotone_70_24px diff --git a/design/Status/Pie Charts/progress/pie_chart_twotone_75.svg b/design/Status/Pie Charts/progress/pie_chart_twotone_75.svg index 44ff5106..424a066b 100644 --- a/design/Status/Pie Charts/progress/pie_chart_twotone_75.svg +++ b/design/Status/Pie Charts/progress/pie_chart_twotone_75.svg @@ -1,5 +1,4 @@ - px_pie_chart_twotone_75_24px diff --git a/design/Status/Pie Charts/progress/pie_chart_twotone_80.svg b/design/Status/Pie Charts/progress/pie_chart_twotone_80.svg index e3e943ee..846f7956 100644 --- a/design/Status/Pie Charts/progress/pie_chart_twotone_80.svg +++ b/design/Status/Pie Charts/progress/pie_chart_twotone_80.svg @@ -1,5 +1,4 @@ - px_pie_chart_twotone_80_24px diff --git a/design/Status/Pie Charts/progress/pie_chart_twotone_85.svg b/design/Status/Pie Charts/progress/pie_chart_twotone_85.svg index 777330ff..ec9fd6e9 100644 --- a/design/Status/Pie Charts/progress/pie_chart_twotone_85.svg +++ b/design/Status/Pie Charts/progress/pie_chart_twotone_85.svg @@ -1,5 +1,4 @@ - px_pie_chart_twotone_85_24px diff --git a/design/Status/Pie Charts/progress/pie_chart_twotone_90.svg b/design/Status/Pie Charts/progress/pie_chart_twotone_90.svg index 075b9372..3428b406 100644 --- a/design/Status/Pie Charts/progress/pie_chart_twotone_90.svg +++ b/design/Status/Pie Charts/progress/pie_chart_twotone_90.svg @@ -1,5 +1,4 @@ - px_pie_chart_twotone_90_24px diff --git a/design/Status/Pie Charts/progress/pie_chart_twotone_95.svg b/design/Status/Pie Charts/progress/pie_chart_twotone_95.svg index 86c7f6a5..f15c98a9 100644 --- a/design/Status/Pie Charts/progress/pie_chart_twotone_95.svg +++ b/design/Status/Pie Charts/progress/pie_chart_twotone_95.svg @@ -1,5 +1,4 @@ - px_pie_chart_twotone_95_24px diff --git a/design/Status/Power/power_circled.svg b/design/Status/Power/power_circled.svg index a8c19d86..5c0c3063 100644 --- a/design/Status/Power/power_circled.svg +++ b/design/Status/Power/power_circled.svg @@ -1,5 +1,4 @@ - px_power_circled_24px diff --git a/design/Status/Push Notification/push_notification.svg b/design/Status/Push Notification/push_notification.svg index dd783e4a..efa5f92f 100644 --- a/design/Status/Push Notification/push_notification.svg +++ b/design/Status/Push Notification/push_notification.svg @@ -1,5 +1,4 @@ - px_push_notification_24px diff --git a/design/Status/Push Notification/push_notification_solid.svg b/design/Status/Push Notification/push_notification_solid.svg index fe726ef8..37955f37 100644 --- a/design/Status/Push Notification/push_notification_solid.svg +++ b/design/Status/Push Notification/push_notification_solid.svg @@ -1,5 +1,4 @@ - px_push_notification_solid_24px diff --git a/design/Status/QR/qrcode.svg b/design/Status/QR/qrcode.svg index a0de64fd..591ac145 100644 --- a/design/Status/QR/qrcode.svg +++ b/design/Status/QR/qrcode.svg @@ -1,5 +1,4 @@ - px_qrcode_24px diff --git a/design/Status/QR/scan_qrcode.svg b/design/Status/QR/scan_qrcode.svg index d141a6f2..8f88c075 100644 --- a/design/Status/QR/scan_qrcode.svg +++ b/design/Status/QR/scan_qrcode.svg @@ -1,4 +1,3 @@ - px_scan_qrcode_24px diff --git a/design/Status/Running/running_high.svg b/design/Status/Running/running_high.svg index 84f1abc0..f350cbaf 100644 --- a/design/Status/Running/running_high.svg +++ b/design/Status/Running/running_high.svg @@ -1,5 +1,4 @@ - px_running_high_24px diff --git a/design/Status/Running/running_low.svg b/design/Status/Running/running_low.svg index 1ffd4888..8e9dc716 100644 --- a/design/Status/Running/running_low.svg +++ b/design/Status/Running/running_low.svg @@ -1,5 +1,4 @@ - px_running_low_24px diff --git a/design/Status/Stopped/stopped.svg b/design/Status/Stopped/stopped.svg index 597c4986..12c85b1d 100644 --- a/design/Status/Stopped/stopped.svg +++ b/design/Status/Stopped/stopped.svg @@ -1 +1 @@ -px_stop_24px \ No newline at end of file + \ No newline at end of file diff --git a/design/Status/Trending/trending_down.svg b/design/Status/Trending/trending_down.svg index dcb1b274..058f24c2 100644 --- a/design/Status/Trending/trending_down.svg +++ b/design/Status/Trending/trending_down.svg @@ -1,4 +1,4 @@ - + diff --git a/design/Status/Trending/trending_flat.svg b/design/Status/Trending/trending_flat.svg index e61dc4b8..9697d070 100644 --- a/design/Status/Trending/trending_flat.svg +++ b/design/Status/Trending/trending_flat.svg @@ -1,5 +1,4 @@ - px_trending_flat_24px diff --git a/design/Status/Trending/trending_up.svg b/design/Status/Trending/trending_up.svg index 6f8d5285..bb1dc543 100644 --- a/design/Status/Trending/trending_up.svg +++ b/design/Status/Trending/trending_up.svg @@ -1,4 +1,4 @@ - + diff --git a/design/Status/Tripped/tripped.svg b/design/Status/Tripped/tripped.svg index c2d2222c..3f100bfe 100644 --- a/design/Status/Tripped/tripped.svg +++ b/design/Status/Tripped/tripped.svg @@ -1,5 +1,4 @@ - px_tripped_24px diff --git a/design/Status/Voltage/voltage.svg b/design/Status/Voltage/voltage.svg index 22b190e6..8f78392e 100644 --- a/design/Status/Voltage/voltage.svg +++ b/design/Status/Voltage/voltage.svg @@ -1,5 +1,4 @@ - px_voltage_24px diff --git a/design/Status/Voltage/voltage_circled.svg b/design/Status/Voltage/voltage_circled.svg index 57863dc5..5d472df4 100644 --- a/design/Status/Voltage/voltage_circled.svg +++ b/design/Status/Voltage/voltage_circled.svg @@ -1,5 +1,4 @@ - px_voltage_circled_24px diff --git a/design/Status/Voltage/voltage_circled_outline.svg b/design/Status/Voltage/voltage_circled_outline.svg index fc83b0c8..69728e84 100644 --- a/design/Status/Voltage/voltage_circled_outline.svg +++ b/design/Status/Voltage/voltage_circled_outline.svg @@ -1,5 +1,4 @@ - px_voltage_circled_outline_24px diff --git a/design/Status/Water/water_outline.svg b/design/Status/Water/water_outline.svg index d2a58e10..ec6cb3e6 100644 --- a/design/Status/Water/water_outline.svg +++ b/design/Status/Water/water_outline.svg @@ -1,5 +1,4 @@ - px_water_outline_24px diff --git a/design/Status/Waveform/waveform.svg b/design/Status/Waveform/waveform.svg index d5938d8a..bd4bd516 100644 --- a/design/Status/Waveform/waveform.svg +++ b/design/Status/Waveform/waveform.svg @@ -1,5 +1,4 @@ - px_waveform_24px diff --git a/design/Vehicles/Forklift/forklift.svg b/design/Vehicles/Forklift/forklift.svg index 7ca4d288..cfdcd00f 100644 --- a/design/Vehicles/Forklift/forklift.svg +++ b/design/Vehicles/Forklift/forklift.svg @@ -1,5 +1,4 @@ - px_forklift_24px diff --git a/design/Vehicles/Pickup Truck/pickup_truck.svg b/design/Vehicles/Pickup Truck/pickup_truck.svg index 43b953fc..8a97c1c1 100644 --- a/design/Vehicles/Pickup Truck/pickup_truck.svg +++ b/design/Vehicles/Pickup Truck/pickup_truck.svg @@ -1,5 +1,4 @@ - px_pickup_truck_24px diff --git a/iconfont/BrightlayerUIIcons.css b/iconfont/BrightlayerUIIcons.css new file mode 100644 index 00000000..c16b82c7 --- /dev/null +++ b/iconfont/BrightlayerUIIcons.css @@ -0,0 +1,749 @@ +@font-face { + font-family: "BrightlayerUIIcons"; + src: url("./BrightlayerUIIcons.ttf?cc9591f8fce42554a2dfd0c4eaf1594d") format("truetype"), +url("./BrightlayerUIIcons.woff?cc9591f8fce42554a2dfd0c4eaf1594d") format("woff"), +url("./BrightlayerUIIcons.woff2?cc9591f8fce42554a2dfd0c4eaf1594d") format("woff2"), +url("./BrightlayerUIIcons.eot?cc9591f8fce42554a2dfd0c4eaf1594d#iefix") format("embedded-opentype"), +url("./BrightlayerUIIcons.svg?cc9591f8fce42554a2dfd0c4eaf1594d#BrightlayerUIIcons") format("svg"); +} + +i[class^="blui-"]:before, i[class*=" blui-"]:before { + font-family: BrightlayerUIIcons !important; + font-style: normal; + font-weight: normal !important; + font-variant: normal; + text-transform: none; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.blui-ac:before { + content: "\f101"; +} +.blui-account_settings:before { + content: "\f102"; +} +.blui-air_conditioner:before { + content: "\f103"; +} +.blui-air_filter:before { + content: "\f104"; +} +.blui-amazon_alexa:before { + content: "\f105"; +} +.blui-amazon:before { + content: "\f106"; +} +.blui-ami_gateway:before { + content: "\f107"; +} +.blui-apparent_energy:before { + content: "\f108"; +} +.blui-apparent_power:before { + content: "\f109"; +} +.blui-apple_logo:before { + content: "\f10a"; +} +.blui-apple:before { + content: "\f10b"; +} +.blui-asparagus:before { + content: "\f10c"; +} +.blui-ats_alt:before { + content: "\f10d"; +} +.blui-ats:before { + content: "\f10e"; +} +.blui-barley_alt:before { + content: "\f10f"; +} +.blui-barley:before { + content: "\f110"; +} +.blui-barrel:before { + content: "\f111"; +} +.blui-baseball:before { + content: "\f112"; +} +.blui-basketball_hoop:before { + content: "\f113"; +} +.blui-battery_large_outline:before { + content: "\f114"; +} +.blui-battery_large_reset_outline:before { + content: "\f115"; +} +.blui-battery_large_reset:before { + content: "\f116"; +} +.blui-battery_large_showing_terminals:before { + content: "\f117"; +} +.blui-battery_large:before { + content: "\f118"; +} +.blui-battery:before { + content: "\f119"; +} +.blui-bearing:before { + content: "\f11a"; +} +.blui-boxing_glove:before { + content: "\f11b"; +} +.blui-breaker:before { + content: "\f11c"; +} +.blui-broccoli:before { + content: "\f11d"; +} +.blui-building:before { + content: "\f11e"; +} +.blui-bypass_alt:before { + content: "\f11f"; +} +.blui-bypass_battery:before { + content: "\f120"; +} +.blui-bypass:before { + content: "\f121"; +} +.blui-camera:before { + content: "\f122"; +} +.blui-capacitor_large:before { + content: "\f123"; +} +.blui-capacitor_symbol:before { + content: "\f124"; +} +.blui-car:before { + content: "\f125"; +} +.blui-carrot:before { + content: "\f126"; +} +.blui-ceiling_light:before { + content: "\f127"; +} +.blui-chili_pepper:before { + content: "\f128"; +} +.blui-combine_harvester:before { + content: "\f129"; +} +.blui-computer:before { + content: "\f12a"; +} +.blui-configuration:before { + content: "\f12b"; +} +.blui-contactor:before { + content: "\f12c"; +} +.blui-control:before { + content: "\f12d"; +} +.blui-corn:before { + content: "\f12e"; +} +.blui-current_ac:before { + content: "\f12f"; +} +.blui-current_circled_outline:before { + content: "\f130"; +} +.blui-current_circled:before { + content: "\f131"; +} +.blui-current_dc:before { + content: "\f132"; +} +.blui-current:before { + content: "\f133"; +} +.blui-cybersecurity_two_tone:before { + content: "\f134"; +} +.blui-cybersecurity:before { + content: "\f135"; +} +.blui-dc:before { + content: "\f136"; +} +.blui-department:before { + content: "\f137"; +} +.blui-departments:before { + content: "\f138"; +} +.blui-device_activating:before { + content: "\f139"; +} +.blui-device_configuration:before { + content: "\f13a"; +} +.blui-device_info:before { + content: "\f13b"; +} +.blui-device:before { + content: "\f13c"; +} +.blui-diagnostic_alt:before { + content: "\f13d"; +} +.blui-diagnostic:before { + content: "\f13e"; +} +.blui-dimmer:before { + content: "\f13f"; +} +.blui-diode:before { + content: "\f140"; +} +.blui-distance_apart:before { + content: "\f141"; +} +.blui-distribution_box_outline:before { + content: "\f142"; +} +.blui-distribution_box:before { + content: "\f143"; +} +.blui-drive:before { + content: "\f144"; +} +.blui-eaton_tagline:before { + content: "\f145"; +} +.blui-eaton_two_tone:before { + content: "\f146"; +} +.blui-eaton:before { + content: "\f147"; +} +.blui-environment:before { + content: "\f148"; +} +.blui-ephesus_fixture:before { + content: "\f149"; +} +.blui-ephesus_gateway:before { + content: "\f14a"; +} +.blui-ev_plug_ccs_combo:before { + content: "\f14b"; +} +.blui-ev_plug_chademo:before { + content: "\f14c"; +} +.blui-ev_plug_type_one:before { + content: "\f14d"; +} +.blui-ev_plug_type_two:before { + content: "\f14e"; +} +.blui-face_id:before { + content: "\f14f"; +} +.blui-factory:before { + content: "\f150"; +} +.blui-fan_circled:before { + content: "\f151"; +} +.blui-fan:before { + content: "\f152"; +} +.blui-file_doc:before { + content: "\f153"; +} +.blui-file_pdf:before { + content: "\f154"; +} +.blui-flask:before { + content: "\f155"; +} +.blui-flood:before { + content: "\f156"; +} +.blui-flow:before { + content: "\f157"; +} +.blui-flower_tulip:before { + content: "\f158"; +} +.blui-flower:before { + content: "\f159"; +} +.blui-football_helmet:before { + content: "\f15a"; +} +.blui-forklift:before { + content: "\f15b"; +} +.blui-frequency:before { + content: "\f15c"; +} +.blui-fuel:before { + content: "\f15d"; +} +.blui-garlic:before { + content: "\f15e"; +} +.blui-gas_cylinder:before { + content: "\f15f"; +} +.blui-generator_off:before { + content: "\f160"; +} +.blui-generator:before { + content: "\f161"; +} +.blui-glass_divider:before { + content: "\f162"; +} +.blui-glasses:before { + content: "\f163"; +} +.blui-google:before { + content: "\f164"; +} +.blui-grade_a:before { + content: "\f165"; +} +.blui-grade_b:before { + content: "\f166"; +} +.blui-grade_c:before { + content: "\f167"; +} +.blui-grade_d:before { + content: "\f168"; +} +.blui-grade_f:before { + content: "\f169"; +} +.blui-grass:before { + content: "\f16a"; +} +.blui-harmonics:before { + content: "\f16b"; +} +.blui-health:before { + content: "\f16c"; +} +.blui-hearing_protection:before { + content: "\f16d"; +} +.blui-hockey_puck:before { + content: "\f16e"; +} +.blui-hockey_sticks:before { + content: "\f16f"; +} +.blui-hops:before { + content: "\f170"; +} +.blui-incident_active:before { + content: "\f171"; +} +.blui-incident_resolved:before { + content: "\f172"; +} +.blui-incident:before { + content: "\f173"; +} +.blui-input_flow:before { + content: "\f174"; +} +.blui-internet:before { + content: "\f175"; +} +.blui-ippe_vibrate_off:before { + content: "\f176"; +} +.blui-ippe_vibrate_outlined:before { + content: "\f177"; +} +.blui-ippe_vibrate:before { + content: "\f178"; +} +.blui-leaf:before { + content: "\f179"; +} +.blui-light_bulb:before { + content: "\f17a"; +} +.blui-light_switch:before { + content: "\f17b"; +} +.blui-line_to_line:before { + content: "\f17c"; +} +.blui-line_to_neutral:before { + content: "\f17d"; +} +.blui-load_factor:before { + content: "\f17e"; +} +.blui-lock_reset:before { + content: "\f17f"; +} +.blui-maintenance:before { + content: "\f180"; +} +.blui-map_marker_multiple:before { + content: "\f181"; +} +.blui-map_marker_three:before { + content: "\f182"; +} +.blui-meter_face:before { + content: "\f183"; +} +.blui-moisture:before { + content: "\f184"; +} +.blui-motor_alt:before { + content: "\f185"; +} +.blui-motor_controller_outline:before { + content: "\f186"; +} +.blui-motor_controller:before { + content: "\f187"; +} +.blui-motor_outline:before { + content: "\f188"; +} +.blui-motor_starter:before { + content: "\f189"; +} +.blui-motor:before { + content: "\f18a"; +} +.blui-network_switch:before { + content: "\f18b"; +} +.blui-outlet:before { + content: "\f18c"; +} +.blui-outline_offline_bolt:before { + content: "\f18d"; +} +.blui-output_flow:before { + content: "\f18e"; +} +.blui-overlap:before { + content: "\f18f"; +} +.blui-pdu:before { + content: "\f190"; +} +.blui-pepper:before { + content: "\f191"; +} +.blui-phase_angle:before { + content: "\f192"; +} +.blui-pickup_truck:before { + content: "\f193"; +} +.blui-piggy_bank:before { + content: "\f194"; +} +.blui-pipe_disconnected:before { + content: "\f195"; +} +.blui-pipe_leak:before { + content: "\f196"; +} +.blui-pipe:before { + content: "\f197"; +} +.blui-potato:before { + content: "\f198"; +} +.blui-power_ac:before { + content: "\f199"; +} +.blui-power_apparent_ac:before { + content: "\f19a"; +} +.blui-power_circled_outline:before { + content: "\f19b"; +} +.blui-power_circled:before { + content: "\f19c"; +} +.blui-power_dc:before { + content: "\f19d"; +} +.blui-power_factor:before { + content: "\f19e"; +} +.blui-pressure_alt:before { + content: "\f19f"; +} +.blui-pressure:before { + content: "\f1a0"; +} +.blui-priority:before { + content: "\f1a1"; +} +.blui-pump:before { + content: "\f1a2"; +} +.blui-push_notification_solid:before { + content: "\f1a3"; +} +.blui-push_notification:before { + content: "\f1a4"; +} +.blui-pxblue_small_alt:before { + content: "\f1a5"; +} +.blui-pxblue_small:before { + content: "\f1a6"; +} +.blui-pxblue:before { + content: "\f1a7"; +} +.blui-pxgreen:before { + content: "\f1a8"; +} +.blui-pxred:before { + content: "\f1a9"; +} +.blui-pxwhite:before { + content: "\f1aa"; +} +.blui-qrcode:before { + content: "\f1ab"; +} +.blui-radio_handheld:before { + content: "\f1ac"; +} +.blui-reactive_energy:before { + content: "\f1ad"; +} +.blui-reactive_power:before { + content: "\f1ae"; +} +.blui-real_energy:before { + content: "\f1af"; +} +.blui-real_power:before { + content: "\f1b0"; +} +.blui-relay:before { + content: "\f1b1"; +} +.blui-rfid:before { + content: "\f1b2"; +} +.blui-road_alt:before { + content: "\f1b3"; +} +.blui-road:before { + content: "\f1b4"; +} +.blui-running_high:before { + content: "\f1b5"; +} +.blui-running_low:before { + content: "\f1b6"; +} +.blui-safety_boot:before { + content: "\f1b7"; +} +.blui-safety_glasses:before { + content: "\f1b8"; +} +.blui-satellite_uplink:before { + content: "\f1b9"; +} +.blui-scan_qrcode:before { + content: "\f1ba"; +} +.blui-sensor_alt:before { + content: "\f1bb"; +} +.blui-sensor_device_alt:before { + content: "\f1bc"; +} +.blui-sensor_device:before { + content: "\f1bd"; +} +.blui-sensor:before { + content: "\f1be"; +} +.blui-sequence:before { + content: "\f1bf"; +} +.blui-server:before { + content: "\f1c0"; +} +.blui-servers:before { + content: "\f1c1"; +} +.blui-sign_caution:before { + content: "\f1c2"; +} +.blui-silo:before { + content: "\f1c3"; +} +.blui-smoke_detector:before { + content: "\f1c4"; +} +.blui-soybean:before { + content: "\f1c5"; +} +.blui-sports_car:before { + content: "\f1c6"; +} +.blui-ssol:before { + content: "\f1c7"; +} +.blui-stopped:before { + content: "\f1c8"; +} +.blui-stopping:before { + content: "\f1c9"; +} +.blui-studioblue_outline:before { + content: "\f1ca"; +} +.blui-studioblue:before { + content: "\f1cb"; +} +.blui-sunflower:before { + content: "\f1cc"; +} +.blui-support:before { + content: "\f1cd"; +} +.blui-switch:before { + content: "\f1ce"; +} +.blui-switchgear:before { + content: "\f1cf"; +} +.blui-technician:before { + content: "\f1d0"; +} +.blui-temp:before { + content: "\f1d1"; +} +.blui-tennis:before { + content: "\f1d2"; +} +.blui-toggle_off_outlined:before { + content: "\f1d3"; +} +.blui-toggle_off:before { + content: "\f1d4"; +} +.blui-toggle_on_outlined:before { + content: "\f1d5"; +} +.blui-toggle_on:before { + content: "\f1d6"; +} +.blui-tomato:before { + content: "\f1d7"; +} +.blui-tractor:before { + content: "\f1d8"; +} +.blui-traffic_light:before { + content: "\f1d9"; +} +.blui-transformer:before { + content: "\f1da"; +} +.blui-tree:before { + content: "\f1db"; +} +.blui-trending_down:before { + content: "\f1dc"; +} +.blui-trending_flat:before { + content: "\f1dd"; +} +.blui-trending_up:before { + content: "\f1de"; +} +.blui-trip_curve_alt:before { + content: "\f1df"; +} +.blui-trip_curve:before { + content: "\f1e0"; +} +.blui-trip_unit:before { + content: "\f1e1"; +} +.blui-tripped:before { + content: "\f1e2"; +} +.blui-ups_outline:before { + content: "\f1e3"; +} +.blui-ups:before { + content: "\f1e4"; +} +.blui-utility_van:before { + content: "\f1e5"; +} +.blui-utility:before { + content: "\f1e6"; +} +.blui-vfd:before { + content: "\f1e7"; +} +.blui-vmms:before { + content: "\f1e8"; +} +.blui-voltage_ac:before { + content: "\f1e9"; +} +.blui-voltage_circled_outline:before { + content: "\f1ea"; +} +.blui-voltage_circled:before { + content: "\f1eb"; +} +.blui-voltage_dc:before { + content: "\f1ec"; +} +.blui-voltage:before { + content: "\f1ed"; +} +.blui-water_outline:before { + content: "\f1ee"; +} +.blui-water:before { + content: "\f1ef"; +} +.blui-waveform:before { + content: "\f1f0"; +} +.blui-wheat:before { + content: "\f1f1"; +} +.blui-xstorage_alt:before { + content: "\f1f2"; +} +.blui-xstorage:before { + content: "\f1f3"; +} diff --git a/iconfont/PXBlueIcons.eot b/iconfont/BrightlayerUIIcons.eot similarity index 97% rename from iconfont/PXBlueIcons.eot rename to iconfont/BrightlayerUIIcons.eot index 9a1c47f3..b780f65f 100644 Binary files a/iconfont/PXBlueIcons.eot and b/iconfont/BrightlayerUIIcons.eot differ diff --git a/iconfont/PXBlueIcons.html b/iconfont/BrightlayerUIIcons.html similarity index 76% rename from iconfont/PXBlueIcons.html rename to iconfont/BrightlayerUIIcons.html index 025f9ab3..5a1b357d 100644 --- a/iconfont/PXBlueIcons.html +++ b/iconfont/BrightlayerUIIcons.html @@ -2,7 +2,7 @@ - PXBlueIcons + BrightlayerUIIcons - + -

PXBlueIcons

+

BrightlayerUIIcons

- +
ac @@ -67,7 +67,7 @@

PXBlueIcons

- +
account_settings @@ -76,7 +76,7 @@

PXBlueIcons

- +
air_conditioner @@ -85,7 +85,7 @@

PXBlueIcons

- +
air_filter @@ -94,7 +94,7 @@

PXBlueIcons

- +
amazon_alexa @@ -103,7 +103,7 @@

PXBlueIcons

- +
amazon @@ -112,7 +112,7 @@

PXBlueIcons

- +
ami_gateway @@ -121,7 +121,7 @@

PXBlueIcons

- +
apparent_energy @@ -130,7 +130,7 @@

PXBlueIcons

- +
apparent_power @@ -139,7 +139,7 @@

PXBlueIcons

- +
apple_logo @@ -148,7 +148,7 @@

PXBlueIcons

- +
apple @@ -157,7 +157,7 @@

PXBlueIcons

- +
asparagus @@ -166,7 +166,7 @@

PXBlueIcons

- +
ats_alt @@ -175,7 +175,7 @@

PXBlueIcons

- +
ats @@ -184,7 +184,7 @@

PXBlueIcons

- +
barley_alt @@ -193,7 +193,7 @@

PXBlueIcons

- +
barley @@ -202,7 +202,7 @@

PXBlueIcons

- +
barrel @@ -211,7 +211,7 @@

PXBlueIcons

- +
baseball @@ -220,7 +220,7 @@

PXBlueIcons

- +
basketball_hoop @@ -229,7 +229,7 @@

PXBlueIcons

- +
battery_large_outline @@ -238,7 +238,7 @@

PXBlueIcons

- +
battery_large_reset_outline @@ -247,7 +247,7 @@

PXBlueIcons

- +
battery_large_reset @@ -256,7 +256,7 @@

PXBlueIcons

- +
battery_large_showing_terminals @@ -265,7 +265,7 @@

PXBlueIcons

- +
battery_large @@ -274,7 +274,7 @@

PXBlueIcons

- +
battery @@ -283,7 +283,7 @@

PXBlueIcons

- +
bearing @@ -292,7 +292,7 @@

PXBlueIcons

- +
boxing_glove @@ -301,7 +301,7 @@

PXBlueIcons

- +
breaker @@ -310,7 +310,7 @@

PXBlueIcons

- +
broccoli @@ -319,7 +319,7 @@

PXBlueIcons

- +
building @@ -328,7 +328,7 @@

PXBlueIcons

- +
bypass_alt @@ -337,7 +337,7 @@

PXBlueIcons

- +
bypass_battery @@ -346,7 +346,7 @@

PXBlueIcons

- +
bypass @@ -355,7 +355,7 @@

PXBlueIcons

- +
camera @@ -364,7 +364,7 @@

PXBlueIcons

- +
capacitor_large @@ -373,7 +373,7 @@

PXBlueIcons

- +
capacitor_symbol @@ -382,7 +382,7 @@

PXBlueIcons

- +
car @@ -391,7 +391,7 @@

PXBlueIcons

- +
carrot @@ -400,7 +400,7 @@

PXBlueIcons

- +
ceiling_light @@ -409,7 +409,7 @@

PXBlueIcons

- +
chili_pepper @@ -418,7 +418,7 @@

PXBlueIcons

- +
combine_harvester @@ -427,7 +427,7 @@

PXBlueIcons

- +
computer @@ -436,7 +436,7 @@

PXBlueIcons

- +
configuration @@ -445,7 +445,7 @@

PXBlueIcons

- +
contactor @@ -454,7 +454,7 @@

PXBlueIcons

- +
control @@ -463,7 +463,7 @@

PXBlueIcons

- +
corn @@ -472,7 +472,7 @@

PXBlueIcons

- +
current_ac @@ -481,7 +481,7 @@

PXBlueIcons

- +
current_circled_outline @@ -490,7 +490,7 @@

PXBlueIcons

- +
current_circled @@ -499,7 +499,7 @@

PXBlueIcons

- +
current_dc @@ -508,7 +508,7 @@

PXBlueIcons

- +
current @@ -517,7 +517,7 @@

PXBlueIcons

- +
cybersecurity_two_tone @@ -526,7 +526,7 @@

PXBlueIcons

- +
cybersecurity @@ -535,7 +535,7 @@

PXBlueIcons

- +
dc @@ -544,7 +544,7 @@

PXBlueIcons

- +
department @@ -553,7 +553,7 @@

PXBlueIcons

- +
departments @@ -562,7 +562,7 @@

PXBlueIcons

- +
device_activating @@ -571,7 +571,7 @@

PXBlueIcons

- +
device_configuration @@ -580,7 +580,7 @@

PXBlueIcons

- +
device_info @@ -589,7 +589,7 @@

PXBlueIcons

- +
device @@ -598,7 +598,7 @@

PXBlueIcons

- +
diagnostic_alt @@ -607,7 +607,7 @@

PXBlueIcons

- +
diagnostic @@ -616,7 +616,7 @@

PXBlueIcons

- +
dimmer @@ -625,7 +625,7 @@

PXBlueIcons

- +
diode @@ -634,7 +634,7 @@

PXBlueIcons

- +
distance_apart @@ -643,7 +643,7 @@

PXBlueIcons

- +
distribution_box_outline @@ -652,7 +652,7 @@

PXBlueIcons

- +
distribution_box @@ -661,7 +661,7 @@

PXBlueIcons

- +
drive @@ -670,7 +670,7 @@

PXBlueIcons

- +
eaton_tagline @@ -679,7 +679,7 @@

PXBlueIcons

- +
eaton_two_tone @@ -688,7 +688,7 @@

PXBlueIcons

- +
eaton @@ -697,7 +697,7 @@

PXBlueIcons

- +
environment @@ -706,7 +706,7 @@

PXBlueIcons

- +
ephesus_fixture @@ -715,7 +715,7 @@

PXBlueIcons

- +
ephesus_gateway @@ -724,7 +724,7 @@

PXBlueIcons

- +
ev_plug_ccs_combo @@ -733,7 +733,7 @@

PXBlueIcons

- +
ev_plug_chademo @@ -742,7 +742,7 @@

PXBlueIcons

- +
ev_plug_type_one @@ -751,7 +751,7 @@

PXBlueIcons

- +
ev_plug_type_two @@ -760,7 +760,7 @@

PXBlueIcons

- +
face_id @@ -769,7 +769,7 @@

PXBlueIcons

- +
factory @@ -778,7 +778,7 @@

PXBlueIcons

- +
fan_circled @@ -787,7 +787,7 @@

PXBlueIcons

- +
fan @@ -796,7 +796,7 @@

PXBlueIcons

- +
file_doc @@ -805,7 +805,7 @@

PXBlueIcons

- +
file_pdf @@ -814,7 +814,7 @@

PXBlueIcons

- +
flask @@ -823,7 +823,7 @@

PXBlueIcons

- +
flood @@ -832,7 +832,7 @@

PXBlueIcons

- +
flow @@ -841,7 +841,7 @@

PXBlueIcons

- +
flower_tulip @@ -850,7 +850,7 @@

PXBlueIcons

- +
flower @@ -859,7 +859,7 @@

PXBlueIcons

- +
football_helmet @@ -868,7 +868,7 @@

PXBlueIcons

- +
forklift @@ -877,7 +877,7 @@

PXBlueIcons

- +
frequency @@ -886,7 +886,7 @@

PXBlueIcons

- +
fuel @@ -895,7 +895,7 @@

PXBlueIcons

- +
garlic @@ -904,7 +904,7 @@

PXBlueIcons

- +
gas_cylinder @@ -913,7 +913,7 @@

PXBlueIcons

- +
generator_off @@ -922,7 +922,7 @@

PXBlueIcons

- +
generator @@ -931,7 +931,7 @@

PXBlueIcons

- +
glass_divider @@ -940,7 +940,7 @@

PXBlueIcons

- +
glasses @@ -949,7 +949,7 @@

PXBlueIcons

- +
google @@ -958,7 +958,7 @@

PXBlueIcons

- +
grade_a @@ -967,7 +967,7 @@

PXBlueIcons

- +
grade_b @@ -976,7 +976,7 @@

PXBlueIcons

- +
grade_c @@ -985,7 +985,7 @@

PXBlueIcons

- +
grade_d @@ -994,7 +994,7 @@

PXBlueIcons

- +
grade_f @@ -1003,7 +1003,7 @@

PXBlueIcons

- +
grass @@ -1012,7 +1012,7 @@

PXBlueIcons

- +
harmonics @@ -1021,7 +1021,7 @@

PXBlueIcons

- +
health @@ -1030,7 +1030,7 @@

PXBlueIcons

- +
hearing_protection @@ -1039,7 +1039,7 @@

PXBlueIcons

- +
hockey_puck @@ -1048,7 +1048,7 @@

PXBlueIcons

- +
hockey_sticks @@ -1057,7 +1057,7 @@

PXBlueIcons

- +
hops @@ -1066,7 +1066,7 @@

PXBlueIcons

- +
incident_active @@ -1075,7 +1075,7 @@

PXBlueIcons

- +
incident_resolved @@ -1084,7 +1084,7 @@

PXBlueIcons

- +
incident @@ -1093,7 +1093,7 @@

PXBlueIcons

- +
input_flow @@ -1102,7 +1102,7 @@

PXBlueIcons

- +
internet @@ -1111,7 +1111,7 @@

PXBlueIcons

- +
ippe_vibrate_off @@ -1120,7 +1120,7 @@

PXBlueIcons

- +
ippe_vibrate_outlined @@ -1129,7 +1129,7 @@

PXBlueIcons

- +
ippe_vibrate @@ -1138,7 +1138,7 @@

PXBlueIcons

- +
leaf @@ -1147,7 +1147,7 @@

PXBlueIcons

- +
light_bulb @@ -1156,7 +1156,7 @@

PXBlueIcons

- +
light_switch @@ -1165,7 +1165,7 @@

PXBlueIcons

- +
line_to_line @@ -1174,7 +1174,7 @@

PXBlueIcons

- +
line_to_neutral @@ -1183,7 +1183,7 @@

PXBlueIcons

- +
load_factor @@ -1192,7 +1192,7 @@

PXBlueIcons

- +
lock_reset @@ -1201,7 +1201,7 @@

PXBlueIcons

- +
maintenance @@ -1210,7 +1210,7 @@

PXBlueIcons

- +
map_marker_multiple @@ -1219,7 +1219,7 @@

PXBlueIcons

- +
map_marker_three @@ -1228,7 +1228,7 @@

PXBlueIcons

- +
meter_face @@ -1237,7 +1237,7 @@

PXBlueIcons

- +
moisture @@ -1246,7 +1246,7 @@

PXBlueIcons

- +
motor_alt @@ -1255,7 +1255,7 @@

PXBlueIcons

- +
motor_controller_outline @@ -1264,7 +1264,7 @@

PXBlueIcons

- +
motor_controller @@ -1273,7 +1273,7 @@

PXBlueIcons

- +
motor_outline @@ -1282,7 +1282,7 @@

PXBlueIcons

- +
motor_starter @@ -1291,7 +1291,7 @@

PXBlueIcons

- +
motor @@ -1300,7 +1300,7 @@

PXBlueIcons

- +
network_switch @@ -1309,7 +1309,7 @@

PXBlueIcons

- +
outlet @@ -1318,7 +1318,7 @@

PXBlueIcons

- +
outline_offline_bolt @@ -1327,7 +1327,7 @@

PXBlueIcons

- +
output_flow @@ -1336,7 +1336,7 @@

PXBlueIcons

- +
overlap @@ -1345,7 +1345,7 @@

PXBlueIcons

- +
pdu @@ -1354,7 +1354,7 @@

PXBlueIcons

- +
pepper @@ -1363,7 +1363,7 @@

PXBlueIcons

- +
phase_angle @@ -1372,7 +1372,7 @@

PXBlueIcons

- +
pickup_truck @@ -1381,7 +1381,7 @@

PXBlueIcons

- +
piggy_bank @@ -1390,7 +1390,7 @@

PXBlueIcons

- +
pipe_disconnected @@ -1399,7 +1399,7 @@

PXBlueIcons

- +
pipe_leak @@ -1408,7 +1408,7 @@

PXBlueIcons

- +
pipe @@ -1417,7 +1417,7 @@

PXBlueIcons

- +
potato @@ -1426,7 +1426,7 @@

PXBlueIcons

- +
power_ac @@ -1435,7 +1435,7 @@

PXBlueIcons

- +
power_apparent_ac @@ -1444,7 +1444,7 @@

PXBlueIcons

- +
power_circled_outline @@ -1453,7 +1453,7 @@

PXBlueIcons

- +
power_circled @@ -1462,7 +1462,7 @@

PXBlueIcons

- +
power_dc @@ -1471,7 +1471,7 @@

PXBlueIcons

- +
power_factor @@ -1480,7 +1480,7 @@

PXBlueIcons

- +
pressure_alt @@ -1489,7 +1489,7 @@

PXBlueIcons

- +
pressure @@ -1498,7 +1498,7 @@

PXBlueIcons

- +
priority @@ -1507,7 +1507,7 @@

PXBlueIcons

- +
pump @@ -1516,7 +1516,7 @@

PXBlueIcons

- +
push_notification_solid @@ -1525,7 +1525,7 @@

PXBlueIcons

- +
push_notification @@ -1534,7 +1534,7 @@

PXBlueIcons

- +
pxblue_small_alt @@ -1543,7 +1543,7 @@

PXBlueIcons

- +
pxblue_small @@ -1552,7 +1552,7 @@

PXBlueIcons

- +
pxblue @@ -1561,7 +1561,7 @@

PXBlueIcons

- +
pxgreen @@ -1570,7 +1570,7 @@

PXBlueIcons

- +
pxred @@ -1579,7 +1579,7 @@

PXBlueIcons

- +
pxwhite @@ -1588,7 +1588,7 @@

PXBlueIcons

- +
qrcode @@ -1597,7 +1597,7 @@

PXBlueIcons

- +
radio_handheld @@ -1606,7 +1606,7 @@

PXBlueIcons

- +
reactive_energy @@ -1615,7 +1615,7 @@

PXBlueIcons

- +
reactive_power @@ -1624,7 +1624,7 @@

PXBlueIcons

- +
real_energy @@ -1633,7 +1633,7 @@

PXBlueIcons

- +
real_power @@ -1642,7 +1642,7 @@

PXBlueIcons

- +
relay @@ -1651,7 +1651,7 @@

PXBlueIcons

- +
rfid @@ -1660,7 +1660,7 @@

PXBlueIcons

- +
road_alt @@ -1669,7 +1669,7 @@

PXBlueIcons

- +
road @@ -1678,7 +1678,7 @@

PXBlueIcons

- +
running_high @@ -1687,7 +1687,7 @@

PXBlueIcons

- +
running_low @@ -1696,7 +1696,7 @@

PXBlueIcons

- +
safety_boot @@ -1705,7 +1705,7 @@

PXBlueIcons

- +
safety_glasses @@ -1714,7 +1714,7 @@

PXBlueIcons

- +
satellite_uplink @@ -1723,7 +1723,7 @@

PXBlueIcons

- +
scan_qrcode @@ -1732,7 +1732,7 @@

PXBlueIcons

- +
sensor_alt @@ -1741,7 +1741,7 @@

PXBlueIcons

- +
sensor_device_alt @@ -1750,7 +1750,7 @@

PXBlueIcons

- +
sensor_device @@ -1759,7 +1759,7 @@

PXBlueIcons

- +
sensor @@ -1768,7 +1768,7 @@

PXBlueIcons

- +
sequence @@ -1777,7 +1777,7 @@

PXBlueIcons

- +
server @@ -1786,7 +1786,7 @@

PXBlueIcons

- +
servers @@ -1795,7 +1795,7 @@

PXBlueIcons

- +
sign_caution @@ -1804,7 +1804,7 @@

PXBlueIcons

- +
silo @@ -1813,7 +1813,7 @@

PXBlueIcons

- +
smoke_detector @@ -1822,7 +1822,7 @@

PXBlueIcons

- +
soybean @@ -1831,7 +1831,7 @@

PXBlueIcons

- +
sports_car @@ -1840,7 +1840,7 @@

PXBlueIcons

- +
ssol @@ -1849,7 +1849,7 @@

PXBlueIcons

- +
stopped @@ -1858,7 +1858,7 @@

PXBlueIcons

- +
stopping @@ -1867,7 +1867,7 @@

PXBlueIcons

- +
studioblue_outline @@ -1876,7 +1876,7 @@

PXBlueIcons

- +
studioblue @@ -1885,7 +1885,7 @@

PXBlueIcons

- +
sunflower @@ -1894,7 +1894,7 @@

PXBlueIcons

- +
support @@ -1903,7 +1903,7 @@

PXBlueIcons

- +
switch @@ -1912,7 +1912,7 @@

PXBlueIcons

- +
switchgear @@ -1921,7 +1921,7 @@

PXBlueIcons

- +
technician @@ -1930,7 +1930,7 @@

PXBlueIcons

- +
temp @@ -1939,7 +1939,7 @@

PXBlueIcons

- +
tennis @@ -1948,7 +1948,7 @@

PXBlueIcons

- +
toggle_off_outlined @@ -1957,7 +1957,7 @@

PXBlueIcons

- +
toggle_off @@ -1966,7 +1966,7 @@

PXBlueIcons

- +
toggle_on_outlined @@ -1975,7 +1975,7 @@

PXBlueIcons

- +
toggle_on @@ -1984,7 +1984,7 @@

PXBlueIcons

- +
tomato @@ -1993,7 +1993,7 @@

PXBlueIcons

- +
tractor @@ -2002,7 +2002,7 @@

PXBlueIcons

- +
traffic_light @@ -2011,7 +2011,7 @@

PXBlueIcons

- +
transformer @@ -2020,7 +2020,7 @@

PXBlueIcons

- +
tree @@ -2029,7 +2029,7 @@

PXBlueIcons

- +
trending_down @@ -2038,7 +2038,7 @@

PXBlueIcons

- +
trending_flat @@ -2047,7 +2047,7 @@

PXBlueIcons

- +
trending_up @@ -2056,7 +2056,7 @@

PXBlueIcons

- +
trip_curve_alt @@ -2065,7 +2065,7 @@

PXBlueIcons

- +
trip_curve @@ -2074,7 +2074,7 @@

PXBlueIcons

- +
trip_unit @@ -2083,7 +2083,7 @@

PXBlueIcons

- +
tripped @@ -2092,7 +2092,7 @@

PXBlueIcons

- +
ups_outline @@ -2101,7 +2101,7 @@

PXBlueIcons

- +
ups @@ -2110,7 +2110,7 @@

PXBlueIcons

- +
utility_van @@ -2119,7 +2119,7 @@

PXBlueIcons

- +
utility @@ -2128,7 +2128,7 @@

PXBlueIcons

- +
vfd @@ -2137,7 +2137,7 @@

PXBlueIcons

- +
vmms @@ -2146,7 +2146,7 @@

PXBlueIcons

- +
voltage_ac @@ -2155,7 +2155,7 @@

PXBlueIcons

- +
voltage_circled_outline @@ -2164,7 +2164,7 @@

PXBlueIcons

- +
voltage_circled @@ -2173,7 +2173,7 @@

PXBlueIcons

- +
voltage_dc @@ -2182,7 +2182,7 @@

PXBlueIcons

- +
voltage @@ -2191,7 +2191,7 @@

PXBlueIcons

- +
water_outline @@ -2200,7 +2200,7 @@

PXBlueIcons

- +
water @@ -2209,7 +2209,7 @@

PXBlueIcons

- +
waveform @@ -2218,7 +2218,7 @@

PXBlueIcons

- +
wheat @@ -2227,7 +2227,7 @@

PXBlueIcons

- +
xstorage_alt @@ -2236,7 +2236,7 @@

PXBlueIcons

- +
xstorage diff --git a/iconfont/PXBlueIcons.json b/iconfont/BrightlayerUIIcons.json similarity index 100% rename from iconfont/PXBlueIcons.json rename to iconfont/BrightlayerUIIcons.json diff --git a/iconfont/PXBlueIcons.svg b/iconfont/BrightlayerUIIcons.svg similarity index 99% rename from iconfont/PXBlueIcons.svg rename to iconfont/BrightlayerUIIcons.svg index dea145bc..a44ca770 100644 --- a/iconfont/PXBlueIcons.svg +++ b/iconfont/BrightlayerUIIcons.svg @@ -2,8 +2,8 @@ - - + diff --git a/iconfont/PXBlueIcons.ts b/iconfont/BrightlayerUIIcons.ts similarity index 58% rename from iconfont/PXBlueIcons.ts rename to iconfont/BrightlayerUIIcons.ts index bd0e2411..de670e9a 100644 --- a/iconfont/PXBlueIcons.ts +++ b/iconfont/BrightlayerUIIcons.ts @@ -1,4 +1,4 @@ -export type PxBlueIconsId = +export type BrightlayerUiIconsId = | "ac" | "account_settings" | "air_conditioner" @@ -243,7 +243,7 @@ export type PxBlueIconsId = | "xstorage_alt" | "xstorage"; -export type PxBlueIconsKey = +export type BrightlayerUiIconsKey = | "Ac" | "AccountSettings" | "AirConditioner" @@ -488,7 +488,7 @@ export type PxBlueIconsKey = | "XstorageAlt" | "Xstorage"; -export enum PxBlueIcons { +export enum BrightlayerUiIcons { Ac = "ac", AccountSettings = "account_settings", AirConditioner = "air_conditioner", @@ -734,248 +734,248 @@ export enum PxBlueIcons { Xstorage = "xstorage", } -export const PX_BLUE_ICONS_CODEPOINTS: { [key in PxBlueIcons]: string } = { - [PxBlueIcons.Ac]: "61697", - [PxBlueIcons.AccountSettings]: "61698", - [PxBlueIcons.AirConditioner]: "61699", - [PxBlueIcons.AirFilter]: "61700", - [PxBlueIcons.AmazonAlexa]: "61701", - [PxBlueIcons.Amazon]: "61702", - [PxBlueIcons.AmiGateway]: "61703", - [PxBlueIcons.ApparentEnergy]: "61704", - [PxBlueIcons.ApparentPower]: "61705", - [PxBlueIcons.AppleLogo]: "61706", - [PxBlueIcons.Apple]: "61707", - [PxBlueIcons.Asparagus]: "61708", - [PxBlueIcons.AtsAlt]: "61709", - [PxBlueIcons.Ats]: "61710", - [PxBlueIcons.BarleyAlt]: "61711", - [PxBlueIcons.Barley]: "61712", - [PxBlueIcons.Barrel]: "61713", - [PxBlueIcons.Baseball]: "61714", - [PxBlueIcons.BasketballHoop]: "61715", - [PxBlueIcons.BatteryLargeOutline]: "61716", - [PxBlueIcons.BatteryLargeResetOutline]: "61717", - [PxBlueIcons.BatteryLargeReset]: "61718", - [PxBlueIcons.BatteryLargeShowingTerminals]: "61719", - [PxBlueIcons.BatteryLarge]: "61720", - [PxBlueIcons.Battery]: "61721", - [PxBlueIcons.Bearing]: "61722", - [PxBlueIcons.BoxingGlove]: "61723", - [PxBlueIcons.Breaker]: "61724", - [PxBlueIcons.Broccoli]: "61725", - [PxBlueIcons.Building]: "61726", - [PxBlueIcons.BypassAlt]: "61727", - [PxBlueIcons.BypassBattery]: "61728", - [PxBlueIcons.Bypass]: "61729", - [PxBlueIcons.Camera]: "61730", - [PxBlueIcons.CapacitorLarge]: "61731", - [PxBlueIcons.CapacitorSymbol]: "61732", - [PxBlueIcons.Car]: "61733", - [PxBlueIcons.Carrot]: "61734", - [PxBlueIcons.CeilingLight]: "61735", - [PxBlueIcons.ChiliPepper]: "61736", - [PxBlueIcons.CombineHarvester]: "61737", - [PxBlueIcons.Computer]: "61738", - [PxBlueIcons.Configuration]: "61739", - [PxBlueIcons.Contactor]: "61740", - [PxBlueIcons.Control]: "61741", - [PxBlueIcons.Corn]: "61742", - [PxBlueIcons.CurrentAc]: "61743", - [PxBlueIcons.CurrentCircledOutline]: "61744", - [PxBlueIcons.CurrentCircled]: "61745", - [PxBlueIcons.CurrentDc]: "61746", - [PxBlueIcons.Current]: "61747", - [PxBlueIcons.CybersecurityTwoTone]: "61748", - [PxBlueIcons.Cybersecurity]: "61749", - [PxBlueIcons.Dc]: "61750", - [PxBlueIcons.Department]: "61751", - [PxBlueIcons.Departments]: "61752", - [PxBlueIcons.DeviceActivating]: "61753", - [PxBlueIcons.DeviceConfiguration]: "61754", - [PxBlueIcons.DeviceInfo]: "61755", - [PxBlueIcons.Device]: "61756", - [PxBlueIcons.DiagnosticAlt]: "61757", - [PxBlueIcons.Diagnostic]: "61758", - [PxBlueIcons.Dimmer]: "61759", - [PxBlueIcons.Diode]: "61760", - [PxBlueIcons.DistanceApart]: "61761", - [PxBlueIcons.DistributionBoxOutline]: "61762", - [PxBlueIcons.DistributionBox]: "61763", - [PxBlueIcons.Drive]: "61764", - [PxBlueIcons.EatonTagline]: "61765", - [PxBlueIcons.EatonTwoTone]: "61766", - [PxBlueIcons.Eaton]: "61767", - [PxBlueIcons.Environment]: "61768", - [PxBlueIcons.EphesusFixture]: "61769", - [PxBlueIcons.EphesusGateway]: "61770", - [PxBlueIcons.EvPlugCcsCombo]: "61771", - [PxBlueIcons.EvPlugChademo]: "61772", - [PxBlueIcons.EvPlugTypeOne]: "61773", - [PxBlueIcons.EvPlugTypeTwo]: "61774", - [PxBlueIcons.FaceId]: "61775", - [PxBlueIcons.Factory]: "61776", - [PxBlueIcons.FanCircled]: "61777", - [PxBlueIcons.Fan]: "61778", - [PxBlueIcons.FileDoc]: "61779", - [PxBlueIcons.FilePdf]: "61780", - [PxBlueIcons.Flask]: "61781", - [PxBlueIcons.Flood]: "61782", - [PxBlueIcons.Flow]: "61783", - [PxBlueIcons.FlowerTulip]: "61784", - [PxBlueIcons.Flower]: "61785", - [PxBlueIcons.FootballHelmet]: "61786", - [PxBlueIcons.Forklift]: "61787", - [PxBlueIcons.Frequency]: "61788", - [PxBlueIcons.Fuel]: "61789", - [PxBlueIcons.Garlic]: "61790", - [PxBlueIcons.GasCylinder]: "61791", - [PxBlueIcons.GeneratorOff]: "61792", - [PxBlueIcons.Generator]: "61793", - [PxBlueIcons.GlassDivider]: "61794", - [PxBlueIcons.Glasses]: "61795", - [PxBlueIcons.Google]: "61796", - [PxBlueIcons.GradeA]: "61797", - [PxBlueIcons.GradeB]: "61798", - [PxBlueIcons.GradeC]: "61799", - [PxBlueIcons.GradeD]: "61800", - [PxBlueIcons.GradeF]: "61801", - [PxBlueIcons.Grass]: "61802", - [PxBlueIcons.Harmonics]: "61803", - [PxBlueIcons.Health]: "61804", - [PxBlueIcons.HearingProtection]: "61805", - [PxBlueIcons.HockeyPuck]: "61806", - [PxBlueIcons.HockeySticks]: "61807", - [PxBlueIcons.Hops]: "61808", - [PxBlueIcons.IncidentActive]: "61809", - [PxBlueIcons.IncidentResolved]: "61810", - [PxBlueIcons.Incident]: "61811", - [PxBlueIcons.InputFlow]: "61812", - [PxBlueIcons.Internet]: "61813", - [PxBlueIcons.IppeVibrateOff]: "61814", - [PxBlueIcons.IppeVibrateOutlined]: "61815", - [PxBlueIcons.IppeVibrate]: "61816", - [PxBlueIcons.Leaf]: "61817", - [PxBlueIcons.LightBulb]: "61818", - [PxBlueIcons.LightSwitch]: "61819", - [PxBlueIcons.LineToLine]: "61820", - [PxBlueIcons.LineToNeutral]: "61821", - [PxBlueIcons.LoadFactor]: "61822", - [PxBlueIcons.LockReset]: "61823", - [PxBlueIcons.Maintenance]: "61824", - [PxBlueIcons.MapMarkerMultiple]: "61825", - [PxBlueIcons.MapMarkerThree]: "61826", - [PxBlueIcons.MeterFace]: "61827", - [PxBlueIcons.Moisture]: "61828", - [PxBlueIcons.MotorAlt]: "61829", - [PxBlueIcons.MotorControllerOutline]: "61830", - [PxBlueIcons.MotorController]: "61831", - [PxBlueIcons.MotorOutline]: "61832", - [PxBlueIcons.MotorStarter]: "61833", - [PxBlueIcons.Motor]: "61834", - [PxBlueIcons.NetworkSwitch]: "61835", - [PxBlueIcons.Outlet]: "61836", - [PxBlueIcons.OutlineOfflineBolt]: "61837", - [PxBlueIcons.OutputFlow]: "61838", - [PxBlueIcons.Overlap]: "61839", - [PxBlueIcons.Pdu]: "61840", - [PxBlueIcons.Pepper]: "61841", - [PxBlueIcons.PhaseAngle]: "61842", - [PxBlueIcons.PickupTruck]: "61843", - [PxBlueIcons.PiggyBank]: "61844", - [PxBlueIcons.PipeDisconnected]: "61845", - [PxBlueIcons.PipeLeak]: "61846", - [PxBlueIcons.Pipe]: "61847", - [PxBlueIcons.Potato]: "61848", - [PxBlueIcons.PowerAc]: "61849", - [PxBlueIcons.PowerApparentAc]: "61850", - [PxBlueIcons.PowerCircledOutline]: "61851", - [PxBlueIcons.PowerCircled]: "61852", - [PxBlueIcons.PowerDc]: "61853", - [PxBlueIcons.PowerFactor]: "61854", - [PxBlueIcons.PressureAlt]: "61855", - [PxBlueIcons.Pressure]: "61856", - [PxBlueIcons.Priority]: "61857", - [PxBlueIcons.Pump]: "61858", - [PxBlueIcons.PushNotificationSolid]: "61859", - [PxBlueIcons.PushNotification]: "61860", - [PxBlueIcons.PxblueSmallAlt]: "61861", - [PxBlueIcons.PxblueSmall]: "61862", - [PxBlueIcons.Pxblue]: "61863", - [PxBlueIcons.Pxgreen]: "61864", - [PxBlueIcons.Pxred]: "61865", - [PxBlueIcons.Pxwhite]: "61866", - [PxBlueIcons.Qrcode]: "61867", - [PxBlueIcons.RadioHandheld]: "61868", - [PxBlueIcons.ReactiveEnergy]: "61869", - [PxBlueIcons.ReactivePower]: "61870", - [PxBlueIcons.RealEnergy]: "61871", - [PxBlueIcons.RealPower]: "61872", - [PxBlueIcons.Relay]: "61873", - [PxBlueIcons.Rfid]: "61874", - [PxBlueIcons.RoadAlt]: "61875", - [PxBlueIcons.Road]: "61876", - [PxBlueIcons.RunningHigh]: "61877", - [PxBlueIcons.RunningLow]: "61878", - [PxBlueIcons.SafetyBoot]: "61879", - [PxBlueIcons.SafetyGlasses]: "61880", - [PxBlueIcons.SatelliteUplink]: "61881", - [PxBlueIcons.ScanQrcode]: "61882", - [PxBlueIcons.SensorAlt]: "61883", - [PxBlueIcons.SensorDeviceAlt]: "61884", - [PxBlueIcons.SensorDevice]: "61885", - [PxBlueIcons.Sensor]: "61886", - [PxBlueIcons.Sequence]: "61887", - [PxBlueIcons.Server]: "61888", - [PxBlueIcons.Servers]: "61889", - [PxBlueIcons.SignCaution]: "61890", - [PxBlueIcons.Silo]: "61891", - [PxBlueIcons.SmokeDetector]: "61892", - [PxBlueIcons.Soybean]: "61893", - [PxBlueIcons.SportsCar]: "61894", - [PxBlueIcons.Ssol]: "61895", - [PxBlueIcons.Stopped]: "61896", - [PxBlueIcons.Stopping]: "61897", - [PxBlueIcons.StudioblueOutline]: "61898", - [PxBlueIcons.Studioblue]: "61899", - [PxBlueIcons.Sunflower]: "61900", - [PxBlueIcons.Support]: "61901", - [PxBlueIcons.Switch]: "61902", - [PxBlueIcons.Switchgear]: "61903", - [PxBlueIcons.Technician]: "61904", - [PxBlueIcons.Temp]: "61905", - [PxBlueIcons.Tennis]: "61906", - [PxBlueIcons.ToggleOffOutlined]: "61907", - [PxBlueIcons.ToggleOff]: "61908", - [PxBlueIcons.ToggleOnOutlined]: "61909", - [PxBlueIcons.ToggleOn]: "61910", - [PxBlueIcons.Tomato]: "61911", - [PxBlueIcons.Tractor]: "61912", - [PxBlueIcons.TrafficLight]: "61913", - [PxBlueIcons.Transformer]: "61914", - [PxBlueIcons.Tree]: "61915", - [PxBlueIcons.TrendingDown]: "61916", - [PxBlueIcons.TrendingFlat]: "61917", - [PxBlueIcons.TrendingUp]: "61918", - [PxBlueIcons.TripCurveAlt]: "61919", - [PxBlueIcons.TripCurve]: "61920", - [PxBlueIcons.TripUnit]: "61921", - [PxBlueIcons.Tripped]: "61922", - [PxBlueIcons.UpsOutline]: "61923", - [PxBlueIcons.Ups]: "61924", - [PxBlueIcons.UtilityVan]: "61925", - [PxBlueIcons.Utility]: "61926", - [PxBlueIcons.Vfd]: "61927", - [PxBlueIcons.Vmms]: "61928", - [PxBlueIcons.VoltageAc]: "61929", - [PxBlueIcons.VoltageCircledOutline]: "61930", - [PxBlueIcons.VoltageCircled]: "61931", - [PxBlueIcons.VoltageDc]: "61932", - [PxBlueIcons.Voltage]: "61933", - [PxBlueIcons.WaterOutline]: "61934", - [PxBlueIcons.Water]: "61935", - [PxBlueIcons.Waveform]: "61936", - [PxBlueIcons.Wheat]: "61937", - [PxBlueIcons.XstorageAlt]: "61938", - [PxBlueIcons.Xstorage]: "61939", +export const BRIGHTLAYER_UI_ICONS_CODEPOINTS: { [key in BrightlayerUiIcons]: string } = { + [BrightlayerUiIcons.Ac]: "61697", + [BrightlayerUiIcons.AccountSettings]: "61698", + [BrightlayerUiIcons.AirConditioner]: "61699", + [BrightlayerUiIcons.AirFilter]: "61700", + [BrightlayerUiIcons.AmazonAlexa]: "61701", + [BrightlayerUiIcons.Amazon]: "61702", + [BrightlayerUiIcons.AmiGateway]: "61703", + [BrightlayerUiIcons.ApparentEnergy]: "61704", + [BrightlayerUiIcons.ApparentPower]: "61705", + [BrightlayerUiIcons.AppleLogo]: "61706", + [BrightlayerUiIcons.Apple]: "61707", + [BrightlayerUiIcons.Asparagus]: "61708", + [BrightlayerUiIcons.AtsAlt]: "61709", + [BrightlayerUiIcons.Ats]: "61710", + [BrightlayerUiIcons.BarleyAlt]: "61711", + [BrightlayerUiIcons.Barley]: "61712", + [BrightlayerUiIcons.Barrel]: "61713", + [BrightlayerUiIcons.Baseball]: "61714", + [BrightlayerUiIcons.BasketballHoop]: "61715", + [BrightlayerUiIcons.BatteryLargeOutline]: "61716", + [BrightlayerUiIcons.BatteryLargeResetOutline]: "61717", + [BrightlayerUiIcons.BatteryLargeReset]: "61718", + [BrightlayerUiIcons.BatteryLargeShowingTerminals]: "61719", + [BrightlayerUiIcons.BatteryLarge]: "61720", + [BrightlayerUiIcons.Battery]: "61721", + [BrightlayerUiIcons.Bearing]: "61722", + [BrightlayerUiIcons.BoxingGlove]: "61723", + [BrightlayerUiIcons.Breaker]: "61724", + [BrightlayerUiIcons.Broccoli]: "61725", + [BrightlayerUiIcons.Building]: "61726", + [BrightlayerUiIcons.BypassAlt]: "61727", + [BrightlayerUiIcons.BypassBattery]: "61728", + [BrightlayerUiIcons.Bypass]: "61729", + [BrightlayerUiIcons.Camera]: "61730", + [BrightlayerUiIcons.CapacitorLarge]: "61731", + [BrightlayerUiIcons.CapacitorSymbol]: "61732", + [BrightlayerUiIcons.Car]: "61733", + [BrightlayerUiIcons.Carrot]: "61734", + [BrightlayerUiIcons.CeilingLight]: "61735", + [BrightlayerUiIcons.ChiliPepper]: "61736", + [BrightlayerUiIcons.CombineHarvester]: "61737", + [BrightlayerUiIcons.Computer]: "61738", + [BrightlayerUiIcons.Configuration]: "61739", + [BrightlayerUiIcons.Contactor]: "61740", + [BrightlayerUiIcons.Control]: "61741", + [BrightlayerUiIcons.Corn]: "61742", + [BrightlayerUiIcons.CurrentAc]: "61743", + [BrightlayerUiIcons.CurrentCircledOutline]: "61744", + [BrightlayerUiIcons.CurrentCircled]: "61745", + [BrightlayerUiIcons.CurrentDc]: "61746", + [BrightlayerUiIcons.Current]: "61747", + [BrightlayerUiIcons.CybersecurityTwoTone]: "61748", + [BrightlayerUiIcons.Cybersecurity]: "61749", + [BrightlayerUiIcons.Dc]: "61750", + [BrightlayerUiIcons.Department]: "61751", + [BrightlayerUiIcons.Departments]: "61752", + [BrightlayerUiIcons.DeviceActivating]: "61753", + [BrightlayerUiIcons.DeviceConfiguration]: "61754", + [BrightlayerUiIcons.DeviceInfo]: "61755", + [BrightlayerUiIcons.Device]: "61756", + [BrightlayerUiIcons.DiagnosticAlt]: "61757", + [BrightlayerUiIcons.Diagnostic]: "61758", + [BrightlayerUiIcons.Dimmer]: "61759", + [BrightlayerUiIcons.Diode]: "61760", + [BrightlayerUiIcons.DistanceApart]: "61761", + [BrightlayerUiIcons.DistributionBoxOutline]: "61762", + [BrightlayerUiIcons.DistributionBox]: "61763", + [BrightlayerUiIcons.Drive]: "61764", + [BrightlayerUiIcons.EatonTagline]: "61765", + [BrightlayerUiIcons.EatonTwoTone]: "61766", + [BrightlayerUiIcons.Eaton]: "61767", + [BrightlayerUiIcons.Environment]: "61768", + [BrightlayerUiIcons.EphesusFixture]: "61769", + [BrightlayerUiIcons.EphesusGateway]: "61770", + [BrightlayerUiIcons.EvPlugCcsCombo]: "61771", + [BrightlayerUiIcons.EvPlugChademo]: "61772", + [BrightlayerUiIcons.EvPlugTypeOne]: "61773", + [BrightlayerUiIcons.EvPlugTypeTwo]: "61774", + [BrightlayerUiIcons.FaceId]: "61775", + [BrightlayerUiIcons.Factory]: "61776", + [BrightlayerUiIcons.FanCircled]: "61777", + [BrightlayerUiIcons.Fan]: "61778", + [BrightlayerUiIcons.FileDoc]: "61779", + [BrightlayerUiIcons.FilePdf]: "61780", + [BrightlayerUiIcons.Flask]: "61781", + [BrightlayerUiIcons.Flood]: "61782", + [BrightlayerUiIcons.Flow]: "61783", + [BrightlayerUiIcons.FlowerTulip]: "61784", + [BrightlayerUiIcons.Flower]: "61785", + [BrightlayerUiIcons.FootballHelmet]: "61786", + [BrightlayerUiIcons.Forklift]: "61787", + [BrightlayerUiIcons.Frequency]: "61788", + [BrightlayerUiIcons.Fuel]: "61789", + [BrightlayerUiIcons.Garlic]: "61790", + [BrightlayerUiIcons.GasCylinder]: "61791", + [BrightlayerUiIcons.GeneratorOff]: "61792", + [BrightlayerUiIcons.Generator]: "61793", + [BrightlayerUiIcons.GlassDivider]: "61794", + [BrightlayerUiIcons.Glasses]: "61795", + [BrightlayerUiIcons.Google]: "61796", + [BrightlayerUiIcons.GradeA]: "61797", + [BrightlayerUiIcons.GradeB]: "61798", + [BrightlayerUiIcons.GradeC]: "61799", + [BrightlayerUiIcons.GradeD]: "61800", + [BrightlayerUiIcons.GradeF]: "61801", + [BrightlayerUiIcons.Grass]: "61802", + [BrightlayerUiIcons.Harmonics]: "61803", + [BrightlayerUiIcons.Health]: "61804", + [BrightlayerUiIcons.HearingProtection]: "61805", + [BrightlayerUiIcons.HockeyPuck]: "61806", + [BrightlayerUiIcons.HockeySticks]: "61807", + [BrightlayerUiIcons.Hops]: "61808", + [BrightlayerUiIcons.IncidentActive]: "61809", + [BrightlayerUiIcons.IncidentResolved]: "61810", + [BrightlayerUiIcons.Incident]: "61811", + [BrightlayerUiIcons.InputFlow]: "61812", + [BrightlayerUiIcons.Internet]: "61813", + [BrightlayerUiIcons.IppeVibrateOff]: "61814", + [BrightlayerUiIcons.IppeVibrateOutlined]: "61815", + [BrightlayerUiIcons.IppeVibrate]: "61816", + [BrightlayerUiIcons.Leaf]: "61817", + [BrightlayerUiIcons.LightBulb]: "61818", + [BrightlayerUiIcons.LightSwitch]: "61819", + [BrightlayerUiIcons.LineToLine]: "61820", + [BrightlayerUiIcons.LineToNeutral]: "61821", + [BrightlayerUiIcons.LoadFactor]: "61822", + [BrightlayerUiIcons.LockReset]: "61823", + [BrightlayerUiIcons.Maintenance]: "61824", + [BrightlayerUiIcons.MapMarkerMultiple]: "61825", + [BrightlayerUiIcons.MapMarkerThree]: "61826", + [BrightlayerUiIcons.MeterFace]: "61827", + [BrightlayerUiIcons.Moisture]: "61828", + [BrightlayerUiIcons.MotorAlt]: "61829", + [BrightlayerUiIcons.MotorControllerOutline]: "61830", + [BrightlayerUiIcons.MotorController]: "61831", + [BrightlayerUiIcons.MotorOutline]: "61832", + [BrightlayerUiIcons.MotorStarter]: "61833", + [BrightlayerUiIcons.Motor]: "61834", + [BrightlayerUiIcons.NetworkSwitch]: "61835", + [BrightlayerUiIcons.Outlet]: "61836", + [BrightlayerUiIcons.OutlineOfflineBolt]: "61837", + [BrightlayerUiIcons.OutputFlow]: "61838", + [BrightlayerUiIcons.Overlap]: "61839", + [BrightlayerUiIcons.Pdu]: "61840", + [BrightlayerUiIcons.Pepper]: "61841", + [BrightlayerUiIcons.PhaseAngle]: "61842", + [BrightlayerUiIcons.PickupTruck]: "61843", + [BrightlayerUiIcons.PiggyBank]: "61844", + [BrightlayerUiIcons.PipeDisconnected]: "61845", + [BrightlayerUiIcons.PipeLeak]: "61846", + [BrightlayerUiIcons.Pipe]: "61847", + [BrightlayerUiIcons.Potato]: "61848", + [BrightlayerUiIcons.PowerAc]: "61849", + [BrightlayerUiIcons.PowerApparentAc]: "61850", + [BrightlayerUiIcons.PowerCircledOutline]: "61851", + [BrightlayerUiIcons.PowerCircled]: "61852", + [BrightlayerUiIcons.PowerDc]: "61853", + [BrightlayerUiIcons.PowerFactor]: "61854", + [BrightlayerUiIcons.PressureAlt]: "61855", + [BrightlayerUiIcons.Pressure]: "61856", + [BrightlayerUiIcons.Priority]: "61857", + [BrightlayerUiIcons.Pump]: "61858", + [BrightlayerUiIcons.PushNotificationSolid]: "61859", + [BrightlayerUiIcons.PushNotification]: "61860", + [BrightlayerUiIcons.PxblueSmallAlt]: "61861", + [BrightlayerUiIcons.PxblueSmall]: "61862", + [BrightlayerUiIcons.Pxblue]: "61863", + [BrightlayerUiIcons.Pxgreen]: "61864", + [BrightlayerUiIcons.Pxred]: "61865", + [BrightlayerUiIcons.Pxwhite]: "61866", + [BrightlayerUiIcons.Qrcode]: "61867", + [BrightlayerUiIcons.RadioHandheld]: "61868", + [BrightlayerUiIcons.ReactiveEnergy]: "61869", + [BrightlayerUiIcons.ReactivePower]: "61870", + [BrightlayerUiIcons.RealEnergy]: "61871", + [BrightlayerUiIcons.RealPower]: "61872", + [BrightlayerUiIcons.Relay]: "61873", + [BrightlayerUiIcons.Rfid]: "61874", + [BrightlayerUiIcons.RoadAlt]: "61875", + [BrightlayerUiIcons.Road]: "61876", + [BrightlayerUiIcons.RunningHigh]: "61877", + [BrightlayerUiIcons.RunningLow]: "61878", + [BrightlayerUiIcons.SafetyBoot]: "61879", + [BrightlayerUiIcons.SafetyGlasses]: "61880", + [BrightlayerUiIcons.SatelliteUplink]: "61881", + [BrightlayerUiIcons.ScanQrcode]: "61882", + [BrightlayerUiIcons.SensorAlt]: "61883", + [BrightlayerUiIcons.SensorDeviceAlt]: "61884", + [BrightlayerUiIcons.SensorDevice]: "61885", + [BrightlayerUiIcons.Sensor]: "61886", + [BrightlayerUiIcons.Sequence]: "61887", + [BrightlayerUiIcons.Server]: "61888", + [BrightlayerUiIcons.Servers]: "61889", + [BrightlayerUiIcons.SignCaution]: "61890", + [BrightlayerUiIcons.Silo]: "61891", + [BrightlayerUiIcons.SmokeDetector]: "61892", + [BrightlayerUiIcons.Soybean]: "61893", + [BrightlayerUiIcons.SportsCar]: "61894", + [BrightlayerUiIcons.Ssol]: "61895", + [BrightlayerUiIcons.Stopped]: "61896", + [BrightlayerUiIcons.Stopping]: "61897", + [BrightlayerUiIcons.StudioblueOutline]: "61898", + [BrightlayerUiIcons.Studioblue]: "61899", + [BrightlayerUiIcons.Sunflower]: "61900", + [BrightlayerUiIcons.Support]: "61901", + [BrightlayerUiIcons.Switch]: "61902", + [BrightlayerUiIcons.Switchgear]: "61903", + [BrightlayerUiIcons.Technician]: "61904", + [BrightlayerUiIcons.Temp]: "61905", + [BrightlayerUiIcons.Tennis]: "61906", + [BrightlayerUiIcons.ToggleOffOutlined]: "61907", + [BrightlayerUiIcons.ToggleOff]: "61908", + [BrightlayerUiIcons.ToggleOnOutlined]: "61909", + [BrightlayerUiIcons.ToggleOn]: "61910", + [BrightlayerUiIcons.Tomato]: "61911", + [BrightlayerUiIcons.Tractor]: "61912", + [BrightlayerUiIcons.TrafficLight]: "61913", + [BrightlayerUiIcons.Transformer]: "61914", + [BrightlayerUiIcons.Tree]: "61915", + [BrightlayerUiIcons.TrendingDown]: "61916", + [BrightlayerUiIcons.TrendingFlat]: "61917", + [BrightlayerUiIcons.TrendingUp]: "61918", + [BrightlayerUiIcons.TripCurveAlt]: "61919", + [BrightlayerUiIcons.TripCurve]: "61920", + [BrightlayerUiIcons.TripUnit]: "61921", + [BrightlayerUiIcons.Tripped]: "61922", + [BrightlayerUiIcons.UpsOutline]: "61923", + [BrightlayerUiIcons.Ups]: "61924", + [BrightlayerUiIcons.UtilityVan]: "61925", + [BrightlayerUiIcons.Utility]: "61926", + [BrightlayerUiIcons.Vfd]: "61927", + [BrightlayerUiIcons.Vmms]: "61928", + [BrightlayerUiIcons.VoltageAc]: "61929", + [BrightlayerUiIcons.VoltageCircledOutline]: "61930", + [BrightlayerUiIcons.VoltageCircled]: "61931", + [BrightlayerUiIcons.VoltageDc]: "61932", + [BrightlayerUiIcons.Voltage]: "61933", + [BrightlayerUiIcons.WaterOutline]: "61934", + [BrightlayerUiIcons.Water]: "61935", + [BrightlayerUiIcons.Waveform]: "61936", + [BrightlayerUiIcons.Wheat]: "61937", + [BrightlayerUiIcons.XstorageAlt]: "61938", + [BrightlayerUiIcons.Xstorage]: "61939", }; diff --git a/iconfont/PXBlueIcons.ttf b/iconfont/BrightlayerUIIcons.ttf similarity index 98% rename from iconfont/PXBlueIcons.ttf rename to iconfont/BrightlayerUIIcons.ttf index ff146af7..2616fb36 100644 Binary files a/iconfont/PXBlueIcons.ttf and b/iconfont/BrightlayerUIIcons.ttf differ diff --git a/iconfont/PXBlueIcons.woff b/iconfont/BrightlayerUIIcons.woff similarity index 97% rename from iconfont/PXBlueIcons.woff rename to iconfont/BrightlayerUIIcons.woff index 4097b726..71e18dd0 100644 Binary files a/iconfont/PXBlueIcons.woff and b/iconfont/BrightlayerUIIcons.woff differ diff --git a/iconfont/BrightlayerUIIcons.woff2 b/iconfont/BrightlayerUIIcons.woff2 new file mode 100644 index 00000000..7504ccc6 Binary files /dev/null and b/iconfont/BrightlayerUIIcons.woff2 differ diff --git a/iconfont/PXBlueIcons.css b/iconfont/PXBlueIcons.css deleted file mode 100644 index 178852e6..00000000 --- a/iconfont/PXBlueIcons.css +++ /dev/null @@ -1,749 +0,0 @@ -@font-face { - font-family: "PXBlueIcons"; - src: url("./PXBlueIcons.ttf?f03e6f385ea1c0f8651f168388033e81") format("truetype"), -url("./PXBlueIcons.woff?f03e6f385ea1c0f8651f168388033e81") format("woff"), -url("./PXBlueIcons.woff2?f03e6f385ea1c0f8651f168388033e81") format("woff2"), -url("./PXBlueIcons.eot?f03e6f385ea1c0f8651f168388033e81#iefix") format("embedded-opentype"), -url("./PXBlueIcons.svg?f03e6f385ea1c0f8651f168388033e81#PXBlueIcons") format("svg"); -} - -i[class^="pxb-"]:before, i[class*=" pxb-"]:before { - font-family: PXBlueIcons !important; - font-style: normal; - font-weight: normal !important; - font-variant: normal; - text-transform: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.pxb-ac:before { - content: "\f101"; -} -.pxb-account_settings:before { - content: "\f102"; -} -.pxb-air_conditioner:before { - content: "\f103"; -} -.pxb-air_filter:before { - content: "\f104"; -} -.pxb-amazon_alexa:before { - content: "\f105"; -} -.pxb-amazon:before { - content: "\f106"; -} -.pxb-ami_gateway:before { - content: "\f107"; -} -.pxb-apparent_energy:before { - content: "\f108"; -} -.pxb-apparent_power:before { - content: "\f109"; -} -.pxb-apple_logo:before { - content: "\f10a"; -} -.pxb-apple:before { - content: "\f10b"; -} -.pxb-asparagus:before { - content: "\f10c"; -} -.pxb-ats_alt:before { - content: "\f10d"; -} -.pxb-ats:before { - content: "\f10e"; -} -.pxb-barley_alt:before { - content: "\f10f"; -} -.pxb-barley:before { - content: "\f110"; -} -.pxb-barrel:before { - content: "\f111"; -} -.pxb-baseball:before { - content: "\f112"; -} -.pxb-basketball_hoop:before { - content: "\f113"; -} -.pxb-battery_large_outline:before { - content: "\f114"; -} -.pxb-battery_large_reset_outline:before { - content: "\f115"; -} -.pxb-battery_large_reset:before { - content: "\f116"; -} -.pxb-battery_large_showing_terminals:before { - content: "\f117"; -} -.pxb-battery_large:before { - content: "\f118"; -} -.pxb-battery:before { - content: "\f119"; -} -.pxb-bearing:before { - content: "\f11a"; -} -.pxb-boxing_glove:before { - content: "\f11b"; -} -.pxb-breaker:before { - content: "\f11c"; -} -.pxb-broccoli:before { - content: "\f11d"; -} -.pxb-building:before { - content: "\f11e"; -} -.pxb-bypass_alt:before { - content: "\f11f"; -} -.pxb-bypass_battery:before { - content: "\f120"; -} -.pxb-bypass:before { - content: "\f121"; -} -.pxb-camera:before { - content: "\f122"; -} -.pxb-capacitor_large:before { - content: "\f123"; -} -.pxb-capacitor_symbol:before { - content: "\f124"; -} -.pxb-car:before { - content: "\f125"; -} -.pxb-carrot:before { - content: "\f126"; -} -.pxb-ceiling_light:before { - content: "\f127"; -} -.pxb-chili_pepper:before { - content: "\f128"; -} -.pxb-combine_harvester:before { - content: "\f129"; -} -.pxb-computer:before { - content: "\f12a"; -} -.pxb-configuration:before { - content: "\f12b"; -} -.pxb-contactor:before { - content: "\f12c"; -} -.pxb-control:before { - content: "\f12d"; -} -.pxb-corn:before { - content: "\f12e"; -} -.pxb-current_ac:before { - content: "\f12f"; -} -.pxb-current_circled_outline:before { - content: "\f130"; -} -.pxb-current_circled:before { - content: "\f131"; -} -.pxb-current_dc:before { - content: "\f132"; -} -.pxb-current:before { - content: "\f133"; -} -.pxb-cybersecurity_two_tone:before { - content: "\f134"; -} -.pxb-cybersecurity:before { - content: "\f135"; -} -.pxb-dc:before { - content: "\f136"; -} -.pxb-department:before { - content: "\f137"; -} -.pxb-departments:before { - content: "\f138"; -} -.pxb-device_activating:before { - content: "\f139"; -} -.pxb-device_configuration:before { - content: "\f13a"; -} -.pxb-device_info:before { - content: "\f13b"; -} -.pxb-device:before { - content: "\f13c"; -} -.pxb-diagnostic_alt:before { - content: "\f13d"; -} -.pxb-diagnostic:before { - content: "\f13e"; -} -.pxb-dimmer:before { - content: "\f13f"; -} -.pxb-diode:before { - content: "\f140"; -} -.pxb-distance_apart:before { - content: "\f141"; -} -.pxb-distribution_box_outline:before { - content: "\f142"; -} -.pxb-distribution_box:before { - content: "\f143"; -} -.pxb-drive:before { - content: "\f144"; -} -.pxb-eaton_tagline:before { - content: "\f145"; -} -.pxb-eaton_two_tone:before { - content: "\f146"; -} -.pxb-eaton:before { - content: "\f147"; -} -.pxb-environment:before { - content: "\f148"; -} -.pxb-ephesus_fixture:before { - content: "\f149"; -} -.pxb-ephesus_gateway:before { - content: "\f14a"; -} -.pxb-ev_plug_ccs_combo:before { - content: "\f14b"; -} -.pxb-ev_plug_chademo:before { - content: "\f14c"; -} -.pxb-ev_plug_type_one:before { - content: "\f14d"; -} -.pxb-ev_plug_type_two:before { - content: "\f14e"; -} -.pxb-face_id:before { - content: "\f14f"; -} -.pxb-factory:before { - content: "\f150"; -} -.pxb-fan_circled:before { - content: "\f151"; -} -.pxb-fan:before { - content: "\f152"; -} -.pxb-file_doc:before { - content: "\f153"; -} -.pxb-file_pdf:before { - content: "\f154"; -} -.pxb-flask:before { - content: "\f155"; -} -.pxb-flood:before { - content: "\f156"; -} -.pxb-flow:before { - content: "\f157"; -} -.pxb-flower_tulip:before { - content: "\f158"; -} -.pxb-flower:before { - content: "\f159"; -} -.pxb-football_helmet:before { - content: "\f15a"; -} -.pxb-forklift:before { - content: "\f15b"; -} -.pxb-frequency:before { - content: "\f15c"; -} -.pxb-fuel:before { - content: "\f15d"; -} -.pxb-garlic:before { - content: "\f15e"; -} -.pxb-gas_cylinder:before { - content: "\f15f"; -} -.pxb-generator_off:before { - content: "\f160"; -} -.pxb-generator:before { - content: "\f161"; -} -.pxb-glass_divider:before { - content: "\f162"; -} -.pxb-glasses:before { - content: "\f163"; -} -.pxb-google:before { - content: "\f164"; -} -.pxb-grade_a:before { - content: "\f165"; -} -.pxb-grade_b:before { - content: "\f166"; -} -.pxb-grade_c:before { - content: "\f167"; -} -.pxb-grade_d:before { - content: "\f168"; -} -.pxb-grade_f:before { - content: "\f169"; -} -.pxb-grass:before { - content: "\f16a"; -} -.pxb-harmonics:before { - content: "\f16b"; -} -.pxb-health:before { - content: "\f16c"; -} -.pxb-hearing_protection:before { - content: "\f16d"; -} -.pxb-hockey_puck:before { - content: "\f16e"; -} -.pxb-hockey_sticks:before { - content: "\f16f"; -} -.pxb-hops:before { - content: "\f170"; -} -.pxb-incident_active:before { - content: "\f171"; -} -.pxb-incident_resolved:before { - content: "\f172"; -} -.pxb-incident:before { - content: "\f173"; -} -.pxb-input_flow:before { - content: "\f174"; -} -.pxb-internet:before { - content: "\f175"; -} -.pxb-ippe_vibrate_off:before { - content: "\f176"; -} -.pxb-ippe_vibrate_outlined:before { - content: "\f177"; -} -.pxb-ippe_vibrate:before { - content: "\f178"; -} -.pxb-leaf:before { - content: "\f179"; -} -.pxb-light_bulb:before { - content: "\f17a"; -} -.pxb-light_switch:before { - content: "\f17b"; -} -.pxb-line_to_line:before { - content: "\f17c"; -} -.pxb-line_to_neutral:before { - content: "\f17d"; -} -.pxb-load_factor:before { - content: "\f17e"; -} -.pxb-lock_reset:before { - content: "\f17f"; -} -.pxb-maintenance:before { - content: "\f180"; -} -.pxb-map_marker_multiple:before { - content: "\f181"; -} -.pxb-map_marker_three:before { - content: "\f182"; -} -.pxb-meter_face:before { - content: "\f183"; -} -.pxb-moisture:before { - content: "\f184"; -} -.pxb-motor_alt:before { - content: "\f185"; -} -.pxb-motor_controller_outline:before { - content: "\f186"; -} -.pxb-motor_controller:before { - content: "\f187"; -} -.pxb-motor_outline:before { - content: "\f188"; -} -.pxb-motor_starter:before { - content: "\f189"; -} -.pxb-motor:before { - content: "\f18a"; -} -.pxb-network_switch:before { - content: "\f18b"; -} -.pxb-outlet:before { - content: "\f18c"; -} -.pxb-outline_offline_bolt:before { - content: "\f18d"; -} -.pxb-output_flow:before { - content: "\f18e"; -} -.pxb-overlap:before { - content: "\f18f"; -} -.pxb-pdu:before { - content: "\f190"; -} -.pxb-pepper:before { - content: "\f191"; -} -.pxb-phase_angle:before { - content: "\f192"; -} -.pxb-pickup_truck:before { - content: "\f193"; -} -.pxb-piggy_bank:before { - content: "\f194"; -} -.pxb-pipe_disconnected:before { - content: "\f195"; -} -.pxb-pipe_leak:before { - content: "\f196"; -} -.pxb-pipe:before { - content: "\f197"; -} -.pxb-potato:before { - content: "\f198"; -} -.pxb-power_ac:before { - content: "\f199"; -} -.pxb-power_apparent_ac:before { - content: "\f19a"; -} -.pxb-power_circled_outline:before { - content: "\f19b"; -} -.pxb-power_circled:before { - content: "\f19c"; -} -.pxb-power_dc:before { - content: "\f19d"; -} -.pxb-power_factor:before { - content: "\f19e"; -} -.pxb-pressure_alt:before { - content: "\f19f"; -} -.pxb-pressure:before { - content: "\f1a0"; -} -.pxb-priority:before { - content: "\f1a1"; -} -.pxb-pump:before { - content: "\f1a2"; -} -.pxb-push_notification_solid:before { - content: "\f1a3"; -} -.pxb-push_notification:before { - content: "\f1a4"; -} -.pxb-pxblue_small_alt:before { - content: "\f1a5"; -} -.pxb-pxblue_small:before { - content: "\f1a6"; -} -.pxb-pxblue:before { - content: "\f1a7"; -} -.pxb-pxgreen:before { - content: "\f1a8"; -} -.pxb-pxred:before { - content: "\f1a9"; -} -.pxb-pxwhite:before { - content: "\f1aa"; -} -.pxb-qrcode:before { - content: "\f1ab"; -} -.pxb-radio_handheld:before { - content: "\f1ac"; -} -.pxb-reactive_energy:before { - content: "\f1ad"; -} -.pxb-reactive_power:before { - content: "\f1ae"; -} -.pxb-real_energy:before { - content: "\f1af"; -} -.pxb-real_power:before { - content: "\f1b0"; -} -.pxb-relay:before { - content: "\f1b1"; -} -.pxb-rfid:before { - content: "\f1b2"; -} -.pxb-road_alt:before { - content: "\f1b3"; -} -.pxb-road:before { - content: "\f1b4"; -} -.pxb-running_high:before { - content: "\f1b5"; -} -.pxb-running_low:before { - content: "\f1b6"; -} -.pxb-safety_boot:before { - content: "\f1b7"; -} -.pxb-safety_glasses:before { - content: "\f1b8"; -} -.pxb-satellite_uplink:before { - content: "\f1b9"; -} -.pxb-scan_qrcode:before { - content: "\f1ba"; -} -.pxb-sensor_alt:before { - content: "\f1bb"; -} -.pxb-sensor_device_alt:before { - content: "\f1bc"; -} -.pxb-sensor_device:before { - content: "\f1bd"; -} -.pxb-sensor:before { - content: "\f1be"; -} -.pxb-sequence:before { - content: "\f1bf"; -} -.pxb-server:before { - content: "\f1c0"; -} -.pxb-servers:before { - content: "\f1c1"; -} -.pxb-sign_caution:before { - content: "\f1c2"; -} -.pxb-silo:before { - content: "\f1c3"; -} -.pxb-smoke_detector:before { - content: "\f1c4"; -} -.pxb-soybean:before { - content: "\f1c5"; -} -.pxb-sports_car:before { - content: "\f1c6"; -} -.pxb-ssol:before { - content: "\f1c7"; -} -.pxb-stopped:before { - content: "\f1c8"; -} -.pxb-stopping:before { - content: "\f1c9"; -} -.pxb-studioblue_outline:before { - content: "\f1ca"; -} -.pxb-studioblue:before { - content: "\f1cb"; -} -.pxb-sunflower:before { - content: "\f1cc"; -} -.pxb-support:before { - content: "\f1cd"; -} -.pxb-switch:before { - content: "\f1ce"; -} -.pxb-switchgear:before { - content: "\f1cf"; -} -.pxb-technician:before { - content: "\f1d0"; -} -.pxb-temp:before { - content: "\f1d1"; -} -.pxb-tennis:before { - content: "\f1d2"; -} -.pxb-toggle_off_outlined:before { - content: "\f1d3"; -} -.pxb-toggle_off:before { - content: "\f1d4"; -} -.pxb-toggle_on_outlined:before { - content: "\f1d5"; -} -.pxb-toggle_on:before { - content: "\f1d6"; -} -.pxb-tomato:before { - content: "\f1d7"; -} -.pxb-tractor:before { - content: "\f1d8"; -} -.pxb-traffic_light:before { - content: "\f1d9"; -} -.pxb-transformer:before { - content: "\f1da"; -} -.pxb-tree:before { - content: "\f1db"; -} -.pxb-trending_down:before { - content: "\f1dc"; -} -.pxb-trending_flat:before { - content: "\f1dd"; -} -.pxb-trending_up:before { - content: "\f1de"; -} -.pxb-trip_curve_alt:before { - content: "\f1df"; -} -.pxb-trip_curve:before { - content: "\f1e0"; -} -.pxb-trip_unit:before { - content: "\f1e1"; -} -.pxb-tripped:before { - content: "\f1e2"; -} -.pxb-ups_outline:before { - content: "\f1e3"; -} -.pxb-ups:before { - content: "\f1e4"; -} -.pxb-utility_van:before { - content: "\f1e5"; -} -.pxb-utility:before { - content: "\f1e6"; -} -.pxb-vfd:before { - content: "\f1e7"; -} -.pxb-vmms:before { - content: "\f1e8"; -} -.pxb-voltage_ac:before { - content: "\f1e9"; -} -.pxb-voltage_circled_outline:before { - content: "\f1ea"; -} -.pxb-voltage_circled:before { - content: "\f1eb"; -} -.pxb-voltage_dc:before { - content: "\f1ec"; -} -.pxb-voltage:before { - content: "\f1ed"; -} -.pxb-water_outline:before { - content: "\f1ee"; -} -.pxb-water:before { - content: "\f1ef"; -} -.pxb-waveform:before { - content: "\f1f0"; -} -.pxb-wheat:before { - content: "\f1f1"; -} -.pxb-xstorage_alt:before { - content: "\f1f2"; -} -.pxb-xstorage:before { - content: "\f1f3"; -} diff --git a/iconfont/PXBlueIcons.woff2 b/iconfont/PXBlueIcons.woff2 deleted file mode 100644 index ecc93ae6..00000000 Binary files a/iconfont/PXBlueIcons.woff2 and /dev/null differ diff --git a/mui/CHANGELOG.md b/mui/CHANGELOG.md index 4ebf818a..ab58a734 100644 --- a/mui/CHANGELOG.md +++ b/mui/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## v2.7.0 (November 3, 2021) + +### Changed + +- Changed package namespace from `@pxblue` to `@brightlayer-ui`. + +## Package Migration Notice + +Previous versions listed after this indicator refer to our deprecated `@pxblue` packages. + +--- + ## v2.7.0 (October 1, 2021) ### Added diff --git a/mui/CODEOWNERS b/mui/CODEOWNERS index f4feb1c9..6c4bd522 100644 --- a/mui/CODEOWNERS +++ b/mui/CODEOWNERS @@ -1 +1 @@ -* @joebochill @huayunh @emclaug2 \ No newline at end of file +* @daileytj @huayunh @emclaug2 \ No newline at end of file diff --git a/mui/README.md b/mui/README.md index dd60c3e0..1854be8e 100644 --- a/mui/README.md +++ b/mui/README.md @@ -1,19 +1,19 @@ -[![](https://img.shields.io/circleci/project/github/pxblue/icons/mui/master.svg?style=flat)](https://circleci.com/gh/pxblue/icons/tree/master) -![npm](https://img.shields.io/npm/v/@pxblue/icons-mui?label=%40pxblue/icons-mui) +[![](https://img.shields.io/circleci/project/github/brightlayer-ui/icons/mui/master.svg?style=flat)](https://circleci.com/gh/brightlayer-ui/icons/tree/master) +![npm](https://img.shields.io/npm/v/@brightlayer-ui/icons-mui?label=%40brightlayer-ui/icons-mui) -# PX Blue Icons for Material-UI +# Brightlayer UI Icons for Material-UI -This library contains componentized svg icons from [@pxblue/icons](https://github.com/pxblue/icons) for use in React applications using Material UI. The icons are made available in the same way that Material UI exposes the [Material Icons](https://material-ui.com/style/icons/#svg-material-icons). +This library contains componentized svg icons from [@brightlayer-ui/icons](https://github.com/brightlayer-ui/icons) for use in React applications using Material UI. The icons are made available in the same way that Material UI exposes the [Material Icons](https://material-ui.com/style/icons/#svg-material-icons). ## Installation -To install the PX Blue mui icons from NPM as a dependency for your project, you can run one of the following commands in your project root: +To install the Brightlayer UI mui icons from NPM as a dependency for your project, you can run one of the following commands in your project root: ``` -npm install --save @pxblue/icons-mui +npm install --save @brightlayer-ui/icons-mui or -yarn add @pxblue/icons-mui +yarn add @brightlayer-ui/icons-mui ``` > **NOTE (Peer Dependencies):** Using this package requires you to have @material-ui/core and @material-ui/icons defined as dependencies in your project's package.json file. @@ -22,14 +22,14 @@ yarn add @pxblue/icons-mui ### Angular -This package is intended for use only in React applications. For a way to link svg icons for use in Angular applications, see [@pxblue/icons](https://github.com/pxblue/icons). +This package is intended for use only in React applications. For a way to link svg icons for use in Angular applications, see [@brightlayer-ui/icons](https://github.com/brightlayer-ui/icons). ### React Once you have installed the npm module, you can import the icon components into your application as follows: ``` -import myIcon from '@pxblue/icons-mui/MyIcon'; +import myIcon from '@brightlayer-ui/icons-mui/MyIcon'; ... ``` @@ -37,7 +37,7 @@ import myIcon from '@pxblue/icons-mui/MyIcon'; If you are importing multiple icons, you can save some space by using named imports from the package root: ``` -import {FirstIcon, SecondIcon, ThirdIcon} from '@pxblue/icons-mui'; +import {FirstIcon, SecondIcon, ThirdIcon} from '@brightlayer-ui/icons-mui'; ``` ### Applying Different Colors @@ -50,23 +50,23 @@ To change the color of the icon you are using, simply set the CSS color property ## Available Icons -See the [Iconography](https://pxblue.github.io/style/iconography) on pxblue.github.io for a list of currently available icons. +See the [Iconography](https://brightlayer-ui.github.io/style/iconography) on brightlayer-ui.github.io for a list of currently available icons. > **NOTE**: When using this package, icon names are in TitleCase (e.g., bypass_battery --> BypassBattery). ## Building Icon Set (for contributors) -To build the icons-mui package (e.g., after new icons are added to PX Blue): +To build the icons-mui package (e.g., after new icons are added to Brightlayer UI): ``` -git clone https://github.com/pxblue/icons-mui +git clone https://github.com/brightlayer-ui/icons-mui cd icons-mui yarn build:full ``` This will populate the /icons directory with all of the icon components as well as copy over necessary files for publishing (Readme, package.json, etc.). -> When building the icons-mui package, it imports the latest icons from the @pxblue/icons-svg package, so when new icons are added, @pxblue/icons-svg must be published to NPM before this package can be updated. +> When building the icons-mui package, it imports the latest icons from the @brightlayer-ui/icons-svg package, so when new icons are added, @brightlayer-ui/icons-svg must be published to NPM before this package can be updated. ### Publishing @@ -83,4 +83,4 @@ npm publish ## Browser Support -PX Blue Icons for Material-UI will work with any modern browser. For details refer to our [Browser Support](https://pxblue.github.io/development/frameworks-web/react#browser-support) documentation. +Brightlayer UI Icons for Material-UI will work with any modern browser. For details refer to our [Browser Support](https://brightlayer-ui.github.io/development/frameworks-web/react#browser-support) documentation. diff --git a/mui/package.json b/mui/package.json index c54febed..966b3405 100644 --- a/mui/package.json +++ b/mui/package.json @@ -1,13 +1,13 @@ { - "name": "@pxblue/icons-mui", + "name": "@brightlayer-ui/icons-mui", "version": "2.7.0", - "description": "PX Blue icons for Material UI", + "description": "Brightlayer UI icons for Material UI", "main": "./index.js", "repository": { "type": "git", - "url": "git+https://github.com/pxblue/icons-mui.git" + "url": "git+https://github.com/brightlayer-ui/icons.git" }, - "author": "px-blue ", + "author": "Brightlayer UI ", "license": "BSD-3-Clause", "peerDependencies": { "@material-ui/core": ">=3.3.1", @@ -22,28 +22,28 @@ "prettier": "prettier \"**/**.{ts,tsx,js,jsx,json,css,scss,html,md}\" --write", "start": "yarn start:showcase", "test": "./scripts/buildTest.sh", - "publish:package": "cd dist && set npm_config_yes=true && npx -p @pxblue/publish pxb-publish", - "tag:package": "cd dist && set npm_config_yes=true && npx -p @pxblue/tag pxb-tag" + "publish:package": "cd dist && set npm_config_yes=true && npx -p @brightlayer-ui/publish blui-publish", + "tag:package": "cd dist && set npm_config_yes=true && npx -p @brightlayer-ui/tag blui-tag" }, "bugs": { - "url": "https://github.com/pxblue/icons-mui/issues" + "url": "https://github.com/brightlayer-ui/icons/issues" }, - "prettier": "@pxblue/prettier-config", - "homepage": "https://github.com/pxblue/icons-mui#readme", + "prettier": "@brightlayer-ui/prettier-config", + "homepage": "https://github.com/brightlayer-ui/icons/mui#readme", "devDependencies": { "@babel/cli": "^7.1.2", "@babel/core": "^7.1.2", "@babel/node": "7.0.0", "@babel/preset-env": "^7.1.0", "@babel/preset-react": "^7.0.0", - "@pxblue/icons-svg": "^1.3.0", - "@pxblue/prettier-config": "^1.0.2", + "@brightlayer-ui/icons-svg": "latest", + "@brightlayer-ui/prettier-config": "^1.0.3", "prettier": "^2.3.1" }, "keywords": [ "icons", "material", "material-ui", - "pxblue" + "brightlayer-ui" ] } diff --git a/mui/scripts/linkComponents.sh b/mui/scripts/linkComponents.sh index 10c16a48..689550d1 100644 --- a/mui/scripts/linkComponents.sh +++ b/mui/scripts/linkComponents.sh @@ -13,19 +13,19 @@ echo -e "${BLUE}Building components...${NC}" yarn build echo -en "${BLUE}Creating new folder in node_modules...${NC}" -rm -rf "./demos/showcase/node_modules/@pxblue/icons-mui" -mkdir -p "./demos/showcase/node_modules/@pxblue/icons-mui" +rm -rf "./demos/showcase/node_modules/@brightlayer-ui/icons-mui" +mkdir -p "./demos/showcase/node_modules/@brightlayer-ui/icons-mui" echo -e "${GREEN}Done${NC}" echo -en "${BLUE}Copying build output into node_modules...${NC}"; -cp -r ./dist/. ./demos/showcase/node_modules/@pxblue/icons-mui +cp -r ./dist/. ./demos/showcase/node_modules/@brightlayer-ui/icons-mui echo -e "${GREEN}Done${NC}" echo -en "\r\n${BLUE}Linking Components: ${NC}" -if [ ! -f ./demos/showcase/node_modules/@pxblue/icons-mui/package.json ]; then echo -e "${BRED}Not Linked${NC}" && exit 1; fi -if [ ! -s ./demos/showcase/node_modules/@pxblue/icons-mui ]; +if [ ! -f ./demos/showcase/node_modules/@brightlayer-ui/icons-mui/package.json ]; then echo -e "${BRED}Not Linked${NC}" && exit 1; fi +if [ ! -s ./demos/showcase/node_modules/@brightlayer-ui/icons-mui ]; then - if [ ! -f ./demos/showcase/node_modules/@pxblue/icons-mui/index.js ]; + if [ ! -f ./demos/showcase/node_modules/@brightlayer-ui/icons-mui/index.js ]; then echo -e "${BRED}Not Linked${NC}" && exit 1; fi; fi diff --git a/mui/yarn.lock b/mui/yarn.lock index 0f2934ae..cbc6fd4f 100644 --- a/mui/yarn.lock +++ b/mui/yarn.lock @@ -746,15 +746,15 @@ lodash "^4.17.13" to-fast-properties "^2.0.0" -"@pxblue/icons-svg@^1.3.0": - version "1.4.0" - resolved "https://registry.yarnpkg.com/@pxblue/icons-svg/-/icons-svg-1.4.0.tgz#d13155ac6b835df37eeee1c19eca1b8781dc0a16" - integrity sha512-s6kbqFRaMXVqyyMraWYmnBf+36//HXoYUTPIHghTJrUw43n3kqqBdFUQ6M39O8c0Wn/1sUxFZ8+2qkjsI71cSQ== +"@brightlayer-ui/icons-svg@latest": + version "1.7.0-beta.0" + resolved "https://registry.yarnpkg.com/@brightlayer-ui/icons-svg/-/icons-svg-1.7.0-beta.0.tgz#253a59a53ae05b7e94778da1e53f923d0325aab8" + integrity sha512-synD/xe+mzzXiV53U2Pr5jYMxWNGFDq2fFiJs/VWuG3WaLBumG/jdxE5iiWGXF8e9nK55Jyl94rNuPZwJwl/2g== -"@pxblue/prettier-config@^1.0.2": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@pxblue/prettier-config/-/prettier-config-1.0.2.tgz#fb00503df6557b66c3d91d43c9101e614c35d2ec" - integrity sha512-/3cLBoTjZs3kV1ATPA/Sp0tsL7XmlV/b8HW/qt0jqR/uP5+cdXL2YIhMXQngLRa7PhpSkEiRIYK5sl0rKsXTUg== +"@brightlayer-ui/prettier-config@^1.0.3": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@brightlayer-ui/prettier-config/-/prettier-config-1.0.3.tgz#e40a7ae7435c6fd5118acbf249080e0aa81e93af" + integrity sha512-EYm3+V7Qd+oYEF+8FadsXAZqXryEHHbGnrV1BMp9selhABjceqUqXPVE4Sn3SKWQdBNJ3En2A3EzgrzRbvRTaw== abbrev@1: version "1.1.1" diff --git a/package.json b/package.json index d98e7a2d..c67e63b7 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,13 @@ { - "name": "@pxblue/icons", + "name": "@brightlayer-ui/icons", "version": "1.7.1", - "description": "Px Blue icons", - "main": "./iconfont/PXBlueIcons.css", + "description": "Brightlayer UI Icons", + "main": "./iconfont/BrightlayerUIIcons.css", "repository": { "type": "git", - "url": "git+https://github.com/pxblue/icons.git" + "url": "git+https://github.com/brightlayer-ui/icons.git" }, - "author": "PX Blue ", + "author": "Brightlayer UI ", "license": "BSD-3-Clause", "dependencies": {}, "scripts": { @@ -18,11 +18,11 @@ "copy": "yarn move && rm -r svg && mkdir svg && copyfiles -f -e \"design/old/*.svg\" -e \"design/Internal/*.svg\" -e \"design/WIP/*.svg\" -e \"design/Products/**/*.svg\" \"design/Products/*.svg\" design/**/*.svg design/**/**/*.svg svg && yarn move-back", "sprites": "create-svg-sprite --optimize --input './svg' --output './svg' --name 'icons'", "build": "yarn build:font", - "build:font": "yarn && yarn copy && rm -r iconfont && mkdir iconfont && fantasticon svg -o iconfont -n PXBlueIcons -p pxb -t ttf -t woff -t woff2 -t eot -t svg --font-height 300 && yarn sprites && yarn index", + "build:font": "yarn && yarn copy && rm -r iconfont && mkdir iconfont && fantasticon svg -o iconfont -n BrightlayerUIIcons -p blui -t ttf -t woff -t woff2 -t eot -t svg --font-height 300 && yarn sprites && yarn index", "build:rn-vector": "cd rn-vector && yarn build", - "publish:package": "set npm_config_yes=true && npx -p @pxblue/publish pxb-publish", - "tag:package": "set npm_config_yes=true && npx -p @pxblue/tag pxb-tag", - "start": "yarn build:font && open ./iconfont/PXBlueIcons.html && cd mui && yarn start" + "publish:package": "set npm_config_yes=true && npx -p @brightlayer-ui/publish blui-publish", + "tag:package": "set npm_config_yes=true && npx -p @brightlayer-ui/tag blui-tag", + "start": "yarn build:font && open ./iconfont/BrightlayerUIIcons.html && cd mui && yarn start" }, "files": [ "iconfont", @@ -32,12 +32,12 @@ "CHANGELOG.md" ], "bugs": { - "url": "https://github.com/pxblue/icons/issues" + "url": "https://github.com/brightlayer-ui/icons/issues" }, - "homepage": "https://github.com/pxblue/icons#readme", - "prettier": "@pxblue/prettier-config", + "homepage": "https://github.com/brightlayer-ui/icons#readme", + "prettier": "@brightlayer-ui/prettier-config", "devDependencies": { - "@pxblue/prettier-config": "^1.0.3", + "@brightlayer-ui/prettier-config": "^1.0.3", "copyfiles": "^2.1.0", "create-svg-sprite": "~1.0.0", "fantasticon": "^1.2.2", @@ -47,6 +47,6 @@ "keywords": [ "icons", "material", - "pxblue" + "brightlayer-ui" ] } diff --git a/rn-vector/CHANGELOG.md b/rn-vector/CHANGELOG.md index 93d7ada1..7a79cd54 100644 --- a/rn-vector/CHANGELOG.md +++ b/rn-vector/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## v1.3.1 (November 3, 2021) + +### Changed + +- Changed package namespace from `@pxblue` to `@brightlayer-ui`. + +## Package Migration Notice + +Previous versions listed after this indicator refer to our deprecated `@pxblue` packages. + +--- + ## v1.3.1 (October 26, 2021) ### Fixed diff --git a/rn-vector/Fonts/PXBlueIcons.ttf b/rn-vector/Fonts/BrightlayerUIIcons.ttf similarity index 98% rename from rn-vector/Fonts/PXBlueIcons.ttf rename to rn-vector/Fonts/BrightlayerUIIcons.ttf index ff146af7..2616fb36 100644 Binary files a/rn-vector/Fonts/PXBlueIcons.ttf and b/rn-vector/Fonts/BrightlayerUIIcons.ttf differ diff --git a/rn-vector/GlyphMaps/PXBlueIcons.json b/rn-vector/GlyphMaps/BrightlayerUIIcons.json similarity index 100% rename from rn-vector/GlyphMaps/PXBlueIcons.json rename to rn-vector/GlyphMaps/BrightlayerUIIcons.json diff --git a/rn-vector/README.md b/rn-vector/README.md index 5b6adc1e..1daf77e5 100644 --- a/rn-vector/README.md +++ b/rn-vector/README.md @@ -1,17 +1,17 @@ # React Native Vector Icons -[![](https://img.shields.io/npm/v/@pxblue/react-native-vector-icons.svg?label=@pxblue/react-native-vectoricons&style=flat)](https://www.npmjs.com/package/@pxblue/react-native-vector-icons) +[![](https://img.shields.io/npm/v/@brightlayer-ui/react-native-vector-icons.svg?label=@brightlayer-ui/react-native-vectoricons&style=flat)](https://www.npmjs.com/package/@brightlayer-ui/react-native-vector-icons) -This package allows you to use PX Blue supplemental icons in the same way as you use [react-native-vector-icons](https://www.npmjs.com/package/react-native-vector-icons) for Material Icons. +This package allows you to use Brightlayer UI supplemental icons in the same way as you use [react-native-vector-icons](https://www.npmjs.com/package/react-native-vector-icons) for Material Icons. ## Installation -To install the PX Blue react native vector icons from NPM as a dependency for your project, you can run one of the following commands in your project root: +To install the Brightlayer UI react native vector icons from NPM as a dependency for your project, you can run one of the following commands in your project root: ``` -npm install --save @pxblue/react-native-vector-icons +npm install --save @brightlayer-ui/react-native-vector-icons or -yarn add @pxblue/react-native-vector-icons +yarn add @brightlayer-ui/react-native-vector-icons ``` This package relies on [react-native-vector-icons](https://www.npmjs.com/package/react-native-vector-icons) as a peer dependency: @@ -30,11 +30,11 @@ To use this package in iOS projects, the native modules will need to be linked ( Add the following to your `Podfile`: ``` -pod 'RNPXBVectorIcons', :path => '../node_modules/@pxblue/react-native-vector-icons' +pod 'RNBLUIVectorIcons', :path => '../node_modules/@brightlayer-ui/react-native-vector-icons' ``` Edit your `Info.plist` -- Under the "Fonts Provided By Application" property (which you should have added when setting up RNVI), add an entry for PXBlueIcons.ttf. +- Under the "Fonts Provided By Application" property (which you should have added when setting up RNVI), add an entry for BrightlayerUIIcons.ttf. After updating these files you will need to install the Pods and recompile your application: @@ -50,17 +50,17 @@ To use this package in Android projects, you need to make the icon font availabl Edit `android/app/build.gradle` ( NOT `android/build.gradle` ) and add the following: ``` -apply from: "../../node_modules/@pxblue/react-native-vector-icons/fonts.gradle" +apply from: "../../node_modules/@brightlayer-ui/react-native-vector-icons/fonts.gradle" ``` -> NOTE: if you are restricting which fonts are being added to your application for `react-native-vector-icons`, you will need to include 'PXBlueIcons.ttf' in your `iconFontNames` array in this file as well. +> NOTE: if you are restricting which fonts are being added to your application for `react-native-vector-icons`, you will need to include 'BrightlayerUIIcons.ttf' in your `iconFontNames` array in this file as well. ## Usage Using these icons in your application is exactly the same as using react-native-vector-icons (we use their library to build ours so the API is identical). ```tsx -import PXBIcon from '@pxblue/react-native-vector-icons'; +import BLUIIcon from '@brightlayer-ui/react-native-vector-icons'; ... - + ``` diff --git a/rn-vector/RNPXBVectorIcons.podspec b/rn-vector/RNBLUIVectorIcons.podspec similarity index 59% rename from rn-vector/RNPXBVectorIcons.podspec rename to rn-vector/RNBLUIVectorIcons.podspec index 2ce14c6f..e1f45364 100644 --- a/rn-vector/RNPXBVectorIcons.podspec +++ b/rn-vector/RNBLUIVectorIcons.podspec @@ -3,14 +3,14 @@ require "json" package = JSON.parse(File.read(File.join(__dir__, "package.json"))) Pod::Spec.new do |s| - s.name = "RNPXBVectorIcons" + s.name = "RNBLUIVectorIcons" s.version = package["version"] s.summary = package["description"] - s.homepage = "https://github.com/pxblue/icons" + s.homepage = "https://github.com/brightlayer-ui/icons" s.license = "BSD-3-Clause" - s.authors = { "PX Blue" => "pxblue@eaton.com" } + s.authors = { "Brightlayer UI" => "brightlayer-ui@eaton.com" } s.platforms = { :ios => "9.0" } - s.source = { :git => "https://github.com/pxblue/icons.git", :tag => "#{s.version}" } + s.source = { :git => "https://github.com/brightlayer-ui/icons.git", :tag => "#{s.version}" } s.source_files = "ios/**/*.{h,c,cc,cpp,m,mm,swift}" s.resources = ["Fonts/*.ttf"] s.requires_arc = true diff --git a/rn-vector/android/build.gradle b/rn-vector/android/build.gradle index 74b82eef..97d3980f 100644 --- a/rn-vector/android/build.gradle +++ b/rn-vector/android/build.gradle @@ -81,7 +81,7 @@ def configureReactNativePom(def pom) { name packageJson.title artifactId packageJson.name version = packageJson.version - group = "io.pxblue" + group = "io.brightlayerui" description packageJson.description url packageJson.repository.baseUrl diff --git a/rn-vector/android/src/main/AndroidManifest.xml b/rn-vector/android/src/main/AndroidManifest.xml index 15572891..17f33c2a 100644 --- a/rn-vector/android/src/main/AndroidManifest.xml +++ b/rn-vector/android/src/main/AndroidManifest.xml @@ -1,6 +1,6 @@ + package="io.brightlayerui"> diff --git a/rn-vector/android/src/main/java/io/pxblue/PXBRNVectorIconsModule.java b/rn-vector/android/src/main/java/io/brightlayerui/BLUIRNVectorIconsModule.java similarity index 73% rename from rn-vector/android/src/main/java/io/pxblue/PXBRNVectorIconsModule.java rename to rn-vector/android/src/main/java/io/brightlayerui/BLUIRNVectorIconsModule.java index 3e42e22d..8b38dfee 100644 --- a/rn-vector/android/src/main/java/io/pxblue/PXBRNVectorIconsModule.java +++ b/rn-vector/android/src/main/java/io/brightlayerui/BLUIRNVectorIconsModule.java @@ -1,24 +1,24 @@ -// PXBRNVectorIconsModule.java +// BLUIRNVectorIconsModule.java -package io.pxblue; +package io.brightlayerui; import com.facebook.react.bridge.ReactApplicationContext; import com.facebook.react.bridge.ReactContextBaseJavaModule; import com.facebook.react.bridge.ReactMethod; import com.facebook.react.bridge.Callback; -public class PXBRNVectorIconsModule extends ReactContextBaseJavaModule { +public class BLUIRNVectorIconsModule extends ReactContextBaseJavaModule { private final ReactApplicationContext reactContext; - public PXBRNVectorIconsModule(ReactApplicationContext reactContext) { + public BLUIRNVectorIconsModule(ReactApplicationContext reactContext) { super(reactContext); this.reactContext = reactContext; } @Override public String getName() { - return "PXBRNVectorIcons"; + return "BLUIRNVectorIcons"; } @ReactMethod diff --git a/rn-vector/android/src/main/java/io/pxblue/PXBRNVectorIconsPackage.java b/rn-vector/android/src/main/java/io/brightlayerui/BLUIRNVectorIconsPackage.java similarity index 71% rename from rn-vector/android/src/main/java/io/pxblue/PXBRNVectorIconsPackage.java rename to rn-vector/android/src/main/java/io/brightlayerui/BLUIRNVectorIconsPackage.java index ce60c24f..dac2494a 100644 --- a/rn-vector/android/src/main/java/io/pxblue/PXBRNVectorIconsPackage.java +++ b/rn-vector/android/src/main/java/io/brightlayerui/BLUIRNVectorIconsPackage.java @@ -1,6 +1,6 @@ -// PXBRNVectorIconsPackage.java +// BLUIRNVectorIconsPackage.java -package io.pxblue; +package io.brightlayerui; import java.util.Arrays; import java.util.Collections; @@ -11,10 +11,10 @@ import com.facebook.react.bridge.ReactApplicationContext; import com.facebook.react.uimanager.ViewManager; -public class PXBRNVectorIconsPackage implements ReactPackage { +public class BLUIRNVectorIconsPackage implements ReactPackage { @Override public List createNativeModules(ReactApplicationContext reactContext) { - return Arrays.asList(new PXBRNVectorIconsModule(reactContext)); + return Arrays.asList(new BLUIRNVectorIconsModule(reactContext)); } @Override diff --git a/rn-vector/fonts.gradle b/rn-vector/fonts.gradle index 8441705f..2d9dea3b 100644 --- a/rn-vector/fonts.gradle +++ b/rn-vector/fonts.gradle @@ -3,7 +3,7 @@ */ afterEvaluate { def config = project.hasProperty("vectoricons") ? project.vectoricons : []; - def iconFontsDir = config.iconFontsDir ?: "../../node_modules/@pxblue/react-native-vector-icons/Fonts"; + def iconFontsDir = config.iconFontsDir ?: "../../node_modules/@brightlayer-ui/react-native-vector-icons/Fonts"; def iconFontNames = config.iconFontNames ?: [ "*.ttf" ]; android.applicationVariants.all { def variant -> @@ -12,7 +12,7 @@ afterEvaluate { // Create task for copying fonts def currentFontCopyTask = tasks.create( - name: "copy${targetName}ReactNativePXBVectorIconFonts", + name: "copy${targetName}ReactNativeBLUIVectorIconFonts", type: Copy) { group = "react" description = "copy fonts into ${targetName}." diff --git a/rn-vector/index.js b/rn-vector/index.js index 0eaa10fc..a7e9f940 100644 --- a/rn-vector/index.js +++ b/rn-vector/index.js @@ -4,5 +4,5 @@ var __importDefault = (this && this.__importDefault) || function (mod) { }; Object.defineProperty(exports, "__esModule", { value: true }); const react_native_vector_icons_1 = require("react-native-vector-icons"); -const PXBlueIcons_json_1 = __importDefault(require("./GlyphMaps/PXBlueIcons.json")); -exports.default = react_native_vector_icons_1.createIconSet(PXBlueIcons_json_1.default, 'PXBlueIcons', 'PXBlueIcons.ttf'); +const BrightlayerUIIcons_json_1 = __importDefault(require("./GlyphMaps/BrightlayerUIIcons.json")); +exports.default = react_native_vector_icons_1.createIconSet(BrightlayerUIIcons_json_1.default, 'BrightlayerUIIcons', 'BrightlayerUIIcons.ttf'); diff --git a/rn-vector/index.ts b/rn-vector/index.ts index 4db1003e..62e7e3b1 100644 --- a/rn-vector/index.ts +++ b/rn-vector/index.ts @@ -1,3 +1,3 @@ import { createIconSet } from 'react-native-vector-icons'; -import glyphMap from './GlyphMaps/PXBlueIcons.json'; -export default createIconSet(glyphMap, 'PXBlueIcons', 'PXBlueIcons.ttf'); +import glyphMap from './GlyphMaps/BrightlayerUIIcons.json'; +export default createIconSet(glyphMap, 'BrightlayerUIIcons', 'BrightlayerUIIcons.ttf'); diff --git a/rn-vector/ios/BLUIRNVectorIcons.h b/rn-vector/ios/BLUIRNVectorIcons.h new file mode 100644 index 00000000..fdc21cc7 --- /dev/null +++ b/rn-vector/ios/BLUIRNVectorIcons.h @@ -0,0 +1,7 @@ +// BLUIRNVectorIcons.h + +#import + +@interface BLUIRNVectorIcons : NSObject + +@end diff --git a/rn-vector/ios/PXBRNVectorIcons.m b/rn-vector/ios/BLUIRNVectorIcons.m similarity index 80% rename from rn-vector/ios/PXBRNVectorIcons.m rename to rn-vector/ios/BLUIRNVectorIcons.m index 76d0dc1d..de8b0df9 100644 --- a/rn-vector/ios/PXBRNVectorIcons.m +++ b/rn-vector/ios/BLUIRNVectorIcons.m @@ -1,9 +1,9 @@ -// PXBRNVectorIcons.m +// BLUIRNVectorIcons.m -#import "PXBRNVectorIcons.h" +#import "BLUIRNVectorIcons.h" -@implementation PXBRNVectorIcons +@implementation BLUIRNVectorIcons RCT_EXPORT_MODULE() diff --git a/rn-vector/ios/PXBRNVectorIcons.xcodeproj/project.pbxproj b/rn-vector/ios/BLUIRNVectorIcons.xcodeproj/project.pbxproj similarity index 82% rename from rn-vector/ios/PXBRNVectorIcons.xcodeproj/project.pbxproj rename to rn-vector/ios/BLUIRNVectorIcons.xcodeproj/project.pbxproj index 52e715bd..e68084c7 100644 --- a/rn-vector/ios/PXBRNVectorIcons.xcodeproj/project.pbxproj +++ b/rn-vector/ios/BLUIRNVectorIcons.xcodeproj/project.pbxproj @@ -6,9 +6,9 @@ objectVersion = 46; objects = { -/* Begin PBXCopyFilesBuildPhase section */ +/* Begin BLUICopyFilesBuildPhase section */ 58B511D91A9E6C8500147676 /* CopyFiles */ = { - isa = PBXCopyFilesBuildPhase; + isa = BLUICopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = "include/$(PRODUCT_NAME)"; dstSubfolderSpec = 16; @@ -16,44 +16,44 @@ ); runOnlyForDeploymentPostprocessing = 0; }; -/* End PBXCopyFilesBuildPhase section */ +/* End BLUICopyFilesBuildPhase section */ -/* Begin PBXFileReference section */ - 134814201AA4EA6300B7C361 /* libPXBRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libPXBRNVectorIcons.a; sourceTree = BUILT_PRODUCTS_DIR; }; -/* End PBXFileReference section */ +/* Begin BLUIFileReference section */ + 134814201AA4EA6300B7C361 /* libBLUIRNVectorIcons.a */ = {isa = BLUIFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libBLUIRNVectorIcons.a; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End BLUIFileReference section */ -/* Begin PBXFrameworksBuildPhase section */ +/* Begin BLUIFrameworksBuildPhase section */ 58B511D81A9E6C8500147676 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; + isa = BLUIFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; -/* End PBXFrameworksBuildPhase section */ +/* End BLUIFrameworksBuildPhase section */ -/* Begin PBXGroup section */ +/* Begin BLUIGroup section */ 134814211AA4EA7D00B7C361 /* Products */ = { - isa = PBXGroup; + isa = BLUIGroup; children = ( - 134814201AA4EA6300B7C361 /* libPXBRNVectorIcons.a */, + 134814201AA4EA6300B7C361 /* libBLUIRNVectorIcons.a */, ); name = Products; sourceTree = ""; }; 58B511D21A9E6C8500147676 = { - isa = PBXGroup; + isa = BLUIGroup; children = ( 134814211AA4EA7D00B7C361 /* Products */, ); sourceTree = ""; }; -/* End PBXGroup section */ +/* End BLUIGroup section */ -/* Begin PBXNativeTarget section */ - 58B511DA1A9E6C8500147676 /* PXBRNVectorIcons */ = { - isa = PBXNativeTarget; - buildConfigurationList = 58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "PXBRNVectorIcons" */; +/* Begin BLUINativeTarget section */ + 58B511DA1A9E6C8500147676 /* BLUIRNVectorIcons */ = { + isa = BLUINativeTarget; + buildConfigurationList = 58B511EF1A9E6C8500147676 /* Build configuration list for BLUINativeTarget "BLUIRNVectorIcons" */; buildPhases = ( 58B511D71A9E6C8500147676 /* Sources */, 58B511D81A9E6C8500147676 /* Frameworks */, @@ -63,16 +63,16 @@ ); dependencies = ( ); - name = PXBRNVectorIcons; + name = BLUIRNVectorIcons; productName = RCTDataManager; - productReference = 134814201AA4EA6300B7C361 /* libPXBRNVectorIcons.a */; + productReference = 134814201AA4EA6300B7C361 /* libBLUIRNVectorIcons.a */; productType = "com.apple.product-type.library.static"; }; -/* End PBXNativeTarget section */ +/* End BLUINativeTarget section */ -/* Begin PBXProject section */ +/* Begin BLUIProject section */ 58B511D31A9E6C8500147676 /* Project object */ = { - isa = PBXProject; + isa = BLUIProject; attributes = { LastUpgradeCheck = 0920; ORGANIZATIONNAME = Facebook; @@ -82,7 +82,7 @@ }; }; }; - buildConfigurationList = 58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "PXBRNVectorIcons" */; + buildConfigurationList = 58B511D61A9E6C8500147676 /* Build configuration list for BLUIProject "BLUIRNVectorIcons" */; compatibilityVersion = "Xcode 3.2"; developmentRegion = en; hasScannedForEncodings = 0; @@ -95,20 +95,20 @@ projectDirPath = ""; projectRoot = ""; targets = ( - 58B511DA1A9E6C8500147676 /* PXBRNVectorIcons */, + 58B511DA1A9E6C8500147676 /* BLUIRNVectorIcons */, ); }; -/* End PBXProject section */ +/* End BLUIProject section */ -/* Begin PBXSourcesBuildPhase section */ +/* Begin BLUISourcesBuildPhase section */ 58B511D71A9E6C8500147676 /* Sources */ = { - isa = PBXSourcesBuildPhase; + isa = BLUISourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; -/* End PBXSourcesBuildPhase section */ +/* End BLUISourcesBuildPhase section */ /* Begin XCBuildConfiguration section */ 58B511ED1A9E6C8500147676 /* Debug */ = { @@ -233,7 +233,7 @@ ); LIBRARY_SEARCH_PATHS = "$(inherited)"; OTHER_LDFLAGS = "-ObjC"; - PRODUCT_NAME = PXBRNVectorIcons; + PRODUCT_NAME = BLUIRNVectorIcons; SKIP_INSTALL = YES; }; name = Debug; @@ -249,7 +249,7 @@ ); LIBRARY_SEARCH_PATHS = "$(inherited)"; OTHER_LDFLAGS = "-ObjC"; - PRODUCT_NAME = PXBRNVectorIcons; + PRODUCT_NAME = BLUIRNVectorIcons; SKIP_INSTALL = YES; }; name = Release; @@ -257,7 +257,7 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "PXBRNVectorIcons" */ = { + 58B511D61A9E6C8500147676 /* Build configuration list for BLUIProject "BLUIRNVectorIcons" */ = { isa = XCConfigurationList; buildConfigurations = ( 58B511ED1A9E6C8500147676 /* Debug */, @@ -266,7 +266,7 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "PXBRNVectorIcons" */ = { + 58B511EF1A9E6C8500147676 /* Build configuration list for BLUINativeTarget "BLUIRNVectorIcons" */ = { isa = XCConfigurationList; buildConfigurations = ( 58B511F01A9E6C8500147676 /* Debug */, diff --git a/rn-vector/ios/PXBRNVectorIcons.xcworkspace/contents.xcworkspacedata b/rn-vector/ios/BLUIRNVectorIcons.xcworkspace/contents.xcworkspacedata similarity index 66% rename from rn-vector/ios/PXBRNVectorIcons.xcworkspace/contents.xcworkspacedata rename to rn-vector/ios/BLUIRNVectorIcons.xcworkspace/contents.xcworkspacedata index f326d989..bd3a8942 100644 --- a/rn-vector/ios/PXBRNVectorIcons.xcworkspace/contents.xcworkspacedata +++ b/rn-vector/ios/BLUIRNVectorIcons.xcworkspace/contents.xcworkspacedata @@ -2,6 +2,6 @@ + location = "group:BLUIRNVectorIcons.xcodeproj"> diff --git a/rn-vector/ios/PXBRNVectorIcons.h b/rn-vector/ios/PXBRNVectorIcons.h deleted file mode 100644 index 204c2f52..00000000 --- a/rn-vector/ios/PXBRNVectorIcons.h +++ /dev/null @@ -1,7 +0,0 @@ -// PXBRNVectorIcons.h - -#import - -@interface PXBRNVectorIcons : NSObject - -@end diff --git a/rn-vector/package.json b/rn-vector/package.json index 3fe2738f..f3a2177e 100644 --- a/rn-vector/package.json +++ b/rn-vector/package.json @@ -1,8 +1,8 @@ { - "name": "@pxblue/react-native-vector-icons", - "title": "React Native PX Blue Vector Icons", + "name": "@brightlayer-ui/react-native-vector-icons", + "title": "React Native Brightlayer UI Vector Icons", "version": "1.3.1", - "description": "PX Blue vector icons for use in React Native projects, based on react-native-vector-icons", + "description": "Brightlayer UI vector icons for use in React Native projects, based on react-native-vector-icons", "main": "index.js", "files": [ "android", @@ -14,7 +14,7 @@ "index.d.ts", "ios", "LICENSE", - "RNPXBVectorIcons.podspec", + "RNBLUIVectorIcons.podspec", "README.md", "!android/build", "!ios/build" @@ -22,26 +22,29 @@ "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "build": "yarn && bash ./scripts/buildIcons.sh", - "publish:package": "set npm_config_yes=true && npx -p @pxblue/publish pxb-publish", - "tag:package": "set npm_config_yes=true && npx -p @pxblue/tag pxb-tag" + "publish:package": "set npm_config_yes=true && npx -p @brightlayer-ui/publish blui-publish", + "tag:package": "set npm_config_yes=true && npx -p @brightlayer-ui/tag blui-tag" + }, + "bugs": { + "url": "https://github.com/brightlayer-ui/icons/issues" }, "repository": { "type": "git", - "url": "git+https://github.com/pxblue/icons.git", - "baseUrl": "https://github.com/pxblue/icons/tree/master/react-native-vector-icons" + "url": "git+https://github.com/brightlayer-ui/icons.git", + "baseUrl": "https://github.com/brightlayer-ui/icons/tree/master/react-native-vector-icons" }, "keywords": [ "react-native", - "px blue", - "pxblue", + "Brightlayer UI", + "brightlayer-ui", "icons", "vector", "power", "eaton" ], "author": { - "name": "PX Blue", - "email": "pxblue@eaton.com" + "name": "Brightlayer UI", + "email": "brightlayer-ui@eaton.com" }, "license": "BSD-3-Clause", "licenseFilename": "LICENSE", diff --git a/rn-vector/scripts/buildIcons.sh b/rn-vector/scripts/buildIcons.sh index 4bb4a00b..5871d859 100644 --- a/rn-vector/scripts/buildIcons.sh +++ b/rn-vector/scripts/buildIcons.sh @@ -13,13 +13,13 @@ rm -rf GlyphMaps/* echo -e "${BLUE}Done${NC}" # we will use the latest icons from this folder instead of from NPM -# echo -ne "Loading latest PX Blue icon font package...${NC}" -# yarn upgrade @pxblue/icons +# echo -ne "Loading latest Brightlayer UI icon font package...${NC}" +# yarn upgrade @brightlayer-ui/icons # echo -e "${BLUE}Done${NC}" echo -ne "Copying latest icon font and glyph map...${NC}" -cp ../iconfont/PXBlueIcons.json ./GlyphMaps -cp ../iconfont/PXBlueIcons.ttf ./Fonts +cp ../iconfont/BrightlayerUIIcons.json ./GlyphMaps +cp ../iconfont/BrightlayerUIIcons.ttf ./Fonts echo -e "${BLUE}Done${NC}" echo -ne "Compiling typescript...${NC}" @@ -27,7 +27,7 @@ tsc --p tsconfig.lib.json echo -e "${BLUE}Done${NC}" echo -e "\r\n${GREEN}-----------------------------------" -echo -e "RNPXBVectorIcons package successfully created" +echo -e "RNBLUIVectorIcons package successfully created" echo -e "-----------------------------------${NC}\r\n\r\n" exit 0 \ No newline at end of file diff --git a/svg/bearing.svg b/svg/bearing.svg index 35232146..ef2bd840 100644 --- a/svg/bearing.svg +++ b/svg/bearing.svg @@ -1 +1 @@ -px_bearing_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/breaker.svg b/svg/breaker.svg index 1103f686..20411115 100644 --- a/svg/breaker.svg +++ b/svg/breaker.svg @@ -1 +1 @@ -px_breaker_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/camera.svg b/svg/camera.svg index 427a6fe3..713ab958 100644 --- a/svg/camera.svg +++ b/svg/camera.svg @@ -1 +1 @@ -px_camera_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/capacitor_large.svg b/svg/capacitor_large.svg index ba4841e7..e6b8632c 100644 --- a/svg/capacitor_large.svg +++ b/svg/capacitor_large.svg @@ -1 +1 @@ -px_capacitor_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/computer.svg b/svg/computer.svg index 2e35485e..ed72b65f 100644 --- a/svg/computer.svg +++ b/svg/computer.svg @@ -1 +1 @@ -px_computer_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/contactor.svg b/svg/contactor.svg index fec3252f..539e3cc4 100644 --- a/svg/contactor.svg +++ b/svg/contactor.svg @@ -1 +1 @@ -px_contactor_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/current_circled.svg b/svg/current_circled.svg index cc8c4bc5..aa8ad9a9 100644 --- a/svg/current_circled.svg +++ b/svg/current_circled.svg @@ -1 +1 @@ -px_current_circled_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/current_circled_outline.svg b/svg/current_circled_outline.svg index b6e150b8..87b4ce5c 100644 --- a/svg/current_circled_outline.svg +++ b/svg/current_circled_outline.svg @@ -1 +1 @@ -px_current_circled_outline_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/device.svg b/svg/device.svg index 897a57ec..3e2e78bd 100644 --- a/svg/device.svg +++ b/svg/device.svg @@ -1 +1 @@ -px_device_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/ephesus_fixture.svg b/svg/ephesus_fixture.svg index dbc7eda2..6d15501f 100644 --- a/svg/ephesus_fixture.svg +++ b/svg/ephesus_fixture.svg @@ -1 +1 @@ -px_ephesus_fixture_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/ephesus_gateway.svg b/svg/ephesus_gateway.svg index be5d2e53..71495bfc 100644 --- a/svg/ephesus_gateway.svg +++ b/svg/ephesus_gateway.svg @@ -1 +1 @@ -px_ephesus_gateway_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/fan.svg b/svg/fan.svg index a0617f0e..4861e7a0 100644 --- a/svg/fan.svg +++ b/svg/fan.svg @@ -1 +1 @@ -px_fan_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/flow.svg b/svg/flow.svg index 422fbbc4..59a7c561 100644 --- a/svg/flow.svg +++ b/svg/flow.svg @@ -1 +1 @@ -px_flow_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/forklift.svg b/svg/forklift.svg index 6419c6f8..2dc091b4 100644 --- a/svg/forklift.svg +++ b/svg/forklift.svg @@ -1 +1 @@ -px_forklift_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/generator_off.svg b/svg/generator_off.svg index a91787a0..5e92dad5 100644 --- a/svg/generator_off.svg +++ b/svg/generator_off.svg @@ -1 +1 @@ -px_generator_off_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/grade_b.svg b/svg/grade_b.svg index 227a2dc3..84154d82 100644 --- a/svg/grade_b.svg +++ b/svg/grade_b.svg @@ -1 +1 @@ -px_grade_b_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/grade_c.svg b/svg/grade_c.svg index f0a8d6bd..fd417fe2 100644 --- a/svg/grade_c.svg +++ b/svg/grade_c.svg @@ -1 +1 @@ -px_grade_c_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/grade_d.svg b/svg/grade_d.svg index 0c3265e0..a6e6930f 100644 --- a/svg/grade_d.svg +++ b/svg/grade_d.svg @@ -1 +1 @@ -px_grade_d_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/grade_f.svg b/svg/grade_f.svg index 2c189f25..b5d2648e 100644 --- a/svg/grade_f.svg +++ b/svg/grade_f.svg @@ -1 +1 @@ -px_grade_f_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/icons.svg b/svg/icons.svg index 83682e78..23f27f7c 100644 --- a/svg/icons.svg +++ b/svg/icons.svg @@ -1 +1 @@ -Account Settingsasparagusbarleybaseballbasketball_hoopbatterypx_bearing_24pxboxing_glovepx_breaker_24pxbroccolipx_camera_24pxpx_capacitor_24pxcarrotceiling_fancombine_harvesterpx_computer_24pxpx_contactor_24pxcorncurrentpx_current_circled_24pxpx_current_circled_outline_24pxcybersecuritycybersecurity_two_tonepx_device_24pxdimmerenvironmentpx_ephesus_fixture_24pxpx_ephesus_gateway_24pxpx_fan_24pxpx_flow_24pxfootball_helmetpx_forklift_24pxgarlicpx_generator_off_24pxpx_grade_b_24pxpx_grade_c_24pxpx_grade_d_24pxpx_grade_f_24pxgrassHealthhearing_protection_althockey_puckhockey_sticksactive_incidentincident_activeresolved_incidentInternetpx_leaf_24pxlightbulblight_switchLock Resetpx_maintenance_24pxpx_moisture_24pxpx_network_switch_24pxoutletpx_overlap_24pxpx_pdu_24pxpepperpx_pickup_truck_24pxpotatopx_power_circled_24pxpx_pump_24pxpx_push_notification_24pxpx_push_notification_solid_24pxpxblue_centeredpxblue_smallpxblue_small_altpxgreenpxredpxwhitepx_qrcode_24pxpx_running_high_24pxpx_running_low_24pxsafety_bootpx_scan_qrcode_24pxpx_server_24pxpx_servers_24pxpx_ssol_24pxpx_stop_24pxstudiobluestudioblue_outlinesunflowersupportpx_tripped_24pxtemptennistomatopx_trending_flat_24pxpx_tripped_24pxpx_vfd_24pxpx_voltage_24pxpx_voltage_circled_24pxpx_voltage_circled_outline_24pxpx_water_outline_24pxpx_waveform_24pxwheat \ No newline at end of file +Account Settingsasparagusbarleybaseballbasketball_hoopbatteryboxing_glovebroccolicarrotceiling_fancombine_harvestercorncurrentcybersecuritycybersecurity_two_tonedimmerenvironmentfootball_helmetgarlicgrassHealthhearing_protection_althockey_puckhockey_sticksactive_incidentincident_activeresolved_incidentInternetlightbulblight_switchLock Resetoutletpepperpotatopxblue_centeredpxblue_smallpxblue_small_altpxgreenpxredpxwhitesafety_bootstudiobluestudioblue_outlinesunflowersupporttemptennistomatowheat \ No newline at end of file diff --git a/svg/index.json b/svg/index.json index 58af60d0..c6daa3f5 100644 --- a/svg/index.json +++ b/svg/index.json @@ -7,7 +7,7 @@ "style": "baseline", "tags": ["device", "product", "equipment"], "description": "Used to represent a generic device.", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -27,7 +27,7 @@ "style": "baseline", "tags": ["battery"], "description": "Battery icon, displayed horizontally", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -37,7 +37,7 @@ "style": "baseline", "tags": ["device", "product", "equipment", "component", "ball bearings", "industrial", "machine"], "description": "Used to represent a generic device.", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -60,7 +60,7 @@ "panel" ], "description": "Used to represent a low voltage circuit breaker.", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -90,7 +90,7 @@ "capacity" ], "description": "Used to represent a large capacitor as used in UPS, HVAC, etc.", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -110,7 +110,7 @@ "capacity" ], "description": "Used to represent a large capacitor as a symbol", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -120,7 +120,7 @@ "style": "baseline", "tags": ["device", "product", "equipment", "component", "computer", "tower", "PC", "desktop", "load"], "description": "Used to represent a generic device.", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -130,7 +130,7 @@ "style": "baseline", "tags": ["device", "equipment", "component", "electrical", "oneline", "one-line", "symbol"], "description": "Used to represent a generic device.", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -140,7 +140,7 @@ "style": "baseline", "tags": ["device", "equipment", "component", "electrical", "oneline", "one-line", "symbol"], "description": "Used to represent a diode.", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -162,7 +162,7 @@ "lumadapt" ], "description": "A light fixture designed after the Ephesus Game On/Lumadapt products.", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -184,7 +184,7 @@ "lumadapt" ], "description": "Ephesus Gateway device.", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -217,7 +217,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["device", "product", "equipment", "electrical", "backup", "g", "industrial", "power"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -226,7 +226,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["device", "product", "equipment", "electrical", "backup", "g", "industrial", "power", "off"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -295,7 +295,7 @@ "power strip", "cabinet" ], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -314,7 +314,7 @@ "liquid", "mechanical" ], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -336,7 +336,7 @@ "computer", "server" ], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -378,7 +378,7 @@ "starter", "motor" ], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "description": "A Solid State Overload Relay", "size": 24 }, @@ -388,7 +388,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["device", "product", "equipment", "electrical", "switch", "circuit", "interrupt"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "description": "Represents an electrical switch", "size": 24 }, @@ -398,7 +398,7 @@ "family": ["Devices"], "style": "outlined", "tags": ["device", "product", "equipment", "electrical", "switchgear", "assembly"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "description": "Represents switchgear lineup", "size": 24 }, @@ -408,7 +408,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["device", "product", "equipment", "electrical", "symbol", "circuit"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "description": "Represents a transfomer symbol", "size": 24 }, @@ -430,7 +430,7 @@ "electricity", "grid" ], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "description": "Represents an electrical switch", "size": 24 }, @@ -451,7 +451,7 @@ "motor", "dg1" ], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "description": "A Variable Frequency Drive", "size": 24 }, @@ -461,7 +461,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["device", "product", "equipment", "electrical", "battery", "storage", "backup", "solar"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "description": "Represents the ESB product xStorage", "size": 24 }, @@ -482,7 +482,7 @@ "style": "baseline", "tags": ["ups", "battery", "bypass", "power", "supply", "output", "input"], "description": "Represents a UPS bypassing battery status", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -491,7 +491,7 @@ "family": ["Status"], "style": "baseline", "tags": ["current", "electrical", "electric", "charge", "amp", "amps", "ampere", "flow", "ciruit"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -512,7 +512,7 @@ "flow", "ciruit" ], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -535,7 +535,7 @@ "flow", "ciruit" ], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -544,7 +544,7 @@ "family": ["Status"], "style": "baseline", "tags": ["water", "rate", "wave", "liquid", "gpm", "gallons", "pipe"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -580,7 +580,7 @@ "family": ["Status"], "style": "baseline", "tags": ["grade", "letter", "score", "points", "gpa", "a", "circle", "health", "healthy"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -589,7 +589,7 @@ "family": ["Status"], "style": "baseline", "tags": ["grade", "letter", "score", "points", "gpa", "b", "circle", "health", "healthy"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -598,7 +598,7 @@ "family": ["Status"], "style": "baseline", "tags": ["grade", "letter", "score", "points", "gpa", "c", "circle", "health"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -607,7 +607,7 @@ "family": ["Status"], "style": "baseline", "tags": ["grade", "letter", "score", "points", "gpa", "d", "circle", "health", "bad", "unhealthy"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -616,7 +616,7 @@ "family": ["Status"], "style": "baseline", "tags": ["grade", "letter", "score", "points", "gpa", "f", "circle", "health", "bad", "unhealthy"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -625,7 +625,7 @@ "family": ["Status"], "style": "baseline", "tags": ["grade", "score", "points", "gpa", "circle", "health", "medical", "care"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -635,7 +635,7 @@ "style": "baseline", "tags": ["incident", "alarms", "occurence"], "description": "This icon represents and incident, or group of Alarms", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -645,7 +645,7 @@ "style": "baseline", "tags": ["incident", "alarms", "occurence", "active"], "description": "This icon represents and incident, or group of Alarms that are currently Active", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -655,7 +655,7 @@ "style": ["baseline", "outline"], "tags": ["incident", "alarms", "occurence"], "description": "This icon represents and incident, or group of Alarms that are resolved or inactive", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -677,7 +677,7 @@ "event" ], "description": "Used to represent maintainance mode or service event", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -699,7 +699,7 @@ "humidity" ], "description": "Represents environmental values such as temperature and humidity", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -708,7 +708,7 @@ "family": ["Status"], "style": "baseline", "tags": ["water", "liquid", "drop", "humidity", "environment", "sensor", "wet", "damp"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -718,7 +718,7 @@ "style": "baseline", "tags": ["interference", "electrical", "waveform", "wave", "radio", "signals", "harmonics"], "description": "", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -728,7 +728,7 @@ "style": "baseline", "tags": ["current", "circle", "circled", "electrical", "electric", "charge", "volts", "flow", "ciruit"], "description": "", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -749,7 +749,7 @@ "ciruit" ], "description": "", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -759,7 +759,7 @@ "style": "baseline", "tags": ["square", "exclaimation", "important", "critical"], "description": "Used to denote (Binary) Priority", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -769,7 +769,7 @@ "style": "baseline", "tags": ["push", "notify", "alert", "message", "badge"], "description": "Represents a device Push Notification", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -779,7 +779,7 @@ "style": "outlined", "tags": ["push", "notify", "alert", "message", "badge", "outlined"], "description": "Represents a device Push Notification", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -809,7 +809,7 @@ "style": "baseline", "tags": ["motor", "run", "running", "high", "fast", "drive", "start", "starter", "speed"], "description": "Represents a motor running on high setting", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -819,7 +819,7 @@ "style": "baseline", "tags": ["motor", "run", "running", "low", "slow", "drive", "start", "starter", "speed"], "description": "Represents a motor running on low setting", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -829,7 +829,7 @@ "style": "baseline", "tags": ["motor", "stop", "drive", "start", "starter", "sign", "ready"], "description": "Stop Sign, can be used to represent a device stopped state or action", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -839,7 +839,7 @@ "style": "baseline", "tags": ["motor", "run", "running", "stopping", "decelerate", "drive", "start", "starter"], "description": "Represents a motor stopping or decelerating", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -869,7 +869,7 @@ "cold" ], "description": "Represents a temperature", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -931,7 +931,7 @@ "change" ], "description": "Represents an increase over time", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -941,7 +941,7 @@ "style": "baseline", "tags": ["data", "arrow", "trend", "chart", "less", "lower", "trending", "down", "decrease", "change"], "description": "Represents a decrease over time", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -951,7 +951,7 @@ "style": "baseline", "tags": ["data", "arrow", "trend", "chart", "trending", "flat", "change", "no change"], "description": "Represents no change over time", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -961,7 +961,7 @@ "style": "baseline", "tags": ["open", "swtich", "trip", "breaker", "tripped", "opened"], "description": "An open or tripped switch or breaker", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -971,7 +971,7 @@ "style": "baseline", "tags": ["ups", "variable module management system", "eaa", "load", "power", "supply"], "description": "Represents Eaton's variable module management system for UPS devices", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -981,7 +981,7 @@ "style": "baseline", "tags": ["electrical", "electric", "charge", "volts", "potential", "voltage", "ciruit"], "description": "", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1001,7 +1001,7 @@ "ciruit" ], "description": "", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1022,7 +1022,7 @@ "ciruit" ], "description": "", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1031,7 +1031,7 @@ "family": ["Status"], "style": "baseline", "tags": ["water", "liquid", "drop", "humidity", "environment", "sensor", "wet"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1040,7 +1040,7 @@ "family": ["Status"], "style": "outlined", "tags": ["outline", "water", "liquid", "drop", "humidity", "environment", "sensor", "wet"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1049,7 +1049,7 @@ "family": ["Status"], "style": "baseline", "tags": ["wave", "waveform", "current", "electrical", "harmonics", "graph", "oscilloscope", "amplitude"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1089,7 +1089,7 @@ "style": "baseline", "tags": ["tank", "gas"], "description": "This icon can be used to represent a tank of gas, industrial gasses", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1098,7 +1098,7 @@ "family": ["Agriculture"], "style": "baseline", "tags": ["tree", "crop", "fruit", "nut", "farm", "plant", "grow", "feed", "orchard", "forest"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1119,7 +1119,7 @@ "environment", "green" ], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "status": "possible redraw", "size": 24 }, @@ -1129,7 +1129,7 @@ "family": ["Agriculture"], "style": "baseline", "tags": ["wheat", "crop", "grain", "farm", "field", "cereal", "silage", "plant", "grow", "feed", "food"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1184,7 +1184,7 @@ "family": ["Agriculture"], "style": "baseline", "tags": ["barley", "grain", "crop", "farm", "plant", "grow", "feed", "food"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1383,7 +1383,7 @@ "logo" ], "description": "Power Xpert Blue icon graphic, redesigned on the Material Design Icon spec", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1439,7 +1439,7 @@ "style": "baseline", "tags": ["sb", "blue", "platform", "ux", "service", "ccis", "design", "user experience", "graphic", "logo"], "description": "Studio Blue logo icon graphic", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1449,7 +1449,7 @@ "style": "outlined", "tags": ["sb", "blue", "platform", "ux", "service", "ccis", "design", "user experience", "graphic", "logo"], "description": "Studio Blue logo icon graphic", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1472,7 +1472,7 @@ "linux" ], "description": "Power Xpert Red icon graphic, redesigned on the Material Design Icon spec", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1495,7 +1495,7 @@ "embedded" ], "description": "Power Xpert Green icon graphic, (somewhat) redesigned on the Material Design Icon spec", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1518,7 +1518,7 @@ "iot" ], "description": "Power Xpert White icon graphic, redesigned on the Material Design Icon spec", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1542,7 +1542,7 @@ "technology" ], "description": "Cybersecurity icon graphic, redesigned on the Material Design Icon spec", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1566,7 +1566,7 @@ "technology" ], "description": "Cybersecurity icon graphic, redesigned on the Material Design Icon spec, includes two-tone traces in the background at 50% opacity", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1746,7 +1746,7 @@ "family": ["status"], "style": "baseline", "tags": ["pins", "places", "locations"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1783,7 +1783,7 @@ "family": ["device"], "style": "baseline", "tags": ["ami", "gateway", "cellular", "control xpert"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1794,7 +1794,7 @@ "style": "baseline", "tags": ["voltage", "volts", "ac"], "description": "Used to represent AC voltage in volts", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1805,7 +1805,7 @@ "style": "baseline", "tags": ["voltage", "volts", "dc"], "description": "Used to represent DC voltage in volts", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1816,7 +1816,7 @@ "style": "baseline", "tags": ["current", "amps", "ac"], "description": "Used to represent AC current in amps", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1827,7 +1827,7 @@ "style": "baseline", "tags": ["current", "amps", "dc"], "description": "Used to represent DC current in amps", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1838,7 +1838,7 @@ "style": "baseline", "tags": ["ac", "current", "alternating current"], "description": "Used to represent Alternating Current (AC)", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1849,7 +1849,7 @@ "style": "baseline", "tags": ["dc", "current", "direct current"], "description": "Used to represent Direct Current (DC)", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1860,7 +1860,7 @@ "style": "baseline", "tags": ["power", "ac", "watts"], "description": "Used to represent AC power in watts", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1871,7 +1871,7 @@ "style": "baseline", "tags": ["power", "dc", "watts"], "description": "Used to represent DC power in watts", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1882,7 +1882,7 @@ "style": "baseline", "tags": ["power", "apparent", "ac", "volt-amps"], "description": "Used to represent AC power in volt-amps", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1893,7 +1893,7 @@ "style": "baseline", "tags": ["line", "average", "compare"], "description": "Used to represent measuring or comparing line-to-line (l-l)", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1904,7 +1904,7 @@ "style": "baseline", "tags": ["line", "neutral", "average", "compare"], "description": "Used to represent measuring or comparing line-to-neutral (l-n)", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1915,7 +1915,7 @@ "style": "baseline", "tags": ["device", "activating", "cellular", "pairing", "syncing", "gateway"], "description": "Used to represent a device Activating or communicating", - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1925,7 +1925,7 @@ "family": ["status"], "style": "baseline", "tags": ["distance", "social", "distancing", "proximity"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1935,7 +1935,7 @@ "family": ["ppe"], "style": "baseline", "tags": ["ppe", "distance", "social", "distancing", "proximity", "haptic", "motor", "vibration"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -1944,7 +1944,7 @@ "family": ["ppe"], "style": "outlined", "tags": ["ppe", "distance", "social", "distancing", "proximity", "haptic", "motor", "vibration"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1954,7 +1954,7 @@ "family": ["ppe"], "style": "baseline", "tags": ["ppe", "distance", "social", "distancing", "proximity", "haptic", "motor", "vibration"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1964,7 +1964,7 @@ "family": ["ppe"], "style": "baseline", "tags": ["ppe", "footwear", "shoe", "boot", "metatarsal", "boot", "foot", "safe"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1974,7 +1974,7 @@ "family": ["ppe"], "style": "baseline", "tags": ["ppe", "eyewear", "eye", "goggles", "safe"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -1984,7 +1984,7 @@ "family": ["ppe"], "style": "baseline", "tags": ["ppe", "hearing", "ear", "noise", "sound", "loud", "safe"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -2004,7 +2004,7 @@ "family": ["ppe"], "style": "baseline", "tags": ["plexiglass", "barrier", "divider", "social distancing", "between", "separate"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, @@ -2041,7 +2041,7 @@ "family": ["Lighting"], "style": "baseline", "tags": ["light", "energy"], - "author": "Huayun Huang (PX Blue)", + "author": "Huayun Huang (Brightlayer UI)", "size": 24 }, { @@ -2158,7 +2158,7 @@ "family": ["Status"], "style": "baseline", "tags": ["pressure", "gauge", "psi", "pipe"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -2167,7 +2167,7 @@ "family": ["Status"], "style": "baseline", "tags": ["pressure", "gauge", "psi", "pipe"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -2176,7 +2176,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["battery", "test", "reset", "large battery", "lead acid", "batteries"], - "author": "Huayun Huang (PX Blue)", + "author": "Huayun Huang (Brightlayer UI)", "size": 24 }, { @@ -2185,7 +2185,7 @@ "family": ["Devices"], "style": "outlined", "tags": ["battery", "test", "reset", "outline", "large battery", "lead acid", "batteries"], - "author": "Amy Deng (PX Blue)", + "author": "Amy Deng (Brightlayer UI)", "size": 24 }, { @@ -2194,7 +2194,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["battery", "terminal", "terminals", "large battery", "lead acid", "batteries"], - "author": "Amy Deng (PX Blue)", + "author": "Amy Deng (Brightlayer UI)", "size": 24 }, { @@ -2203,7 +2203,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["battery", "large battery", "lead acid", "batteries"], - "author": "Huayun Huang (PX Blue)", + "author": "Huayun Huang (Brightlayer UI)", "size": 24 }, { @@ -2212,7 +2212,7 @@ "family": ["Devices"], "style": "outlined", "tags": ["battery", "large battery", "lead acid", "batteries"], - "author": "Huayun Huang (PX Blue)", + "author": "Huayun Huang (Brightlayer UI)", "size": 24 }, { @@ -2230,7 +2230,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["automatic", "transfer", "switch", "circuit", "node"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2239,7 +2239,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["automatic", "transfer", "switch", "circuit", "node"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2261,7 +2261,7 @@ "cell", "consumer unit" ], - "author": "Huayun Huang (PX Blue)", + "author": "Huayun Huang (Brightlayer UI)", "size": 24 }, { @@ -2282,7 +2282,7 @@ "DB", "consumer unit" ], - "author": "Huayun Huang (PX Blue)", + "author": "Huayun Huang (Brightlayer UI)", "size": 24 }, { @@ -2291,7 +2291,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["buttons", "arrows", "direction", "start", "stop", "component", "regulate"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2300,7 +2300,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["buttons", "readings", "speed", "unit", "monitor", "display"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2309,7 +2309,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["engine", "spin", "equipment", "rotate", "rotation", "electric"], - "author": "Huayun Huang (PX Blue)", + "author": "Huayun Huang (Brightlayer UI)", "size": 24 }, { @@ -2318,7 +2318,7 @@ "family": ["Devices"], "style": "outlined", "tags": ["control", "engine", "spin", "equipment", "rotate", "rotation", "electric"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2327,7 +2327,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["control", "engine", "spin", "equipment", "rotate", "rotation", "electric"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2336,7 +2336,7 @@ "family": ["Devices"], "style": "outlined", "tags": ["engine", "spin", "equipment", "rotate", "rotation", "electric"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2357,7 +2357,7 @@ "rotation", "electric" ], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2366,7 +2366,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["engine", "spin", "equipment", "rotate", "rotation", "electric"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2375,7 +2375,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["oneline", "switch", "circuit", "control", "conductor", "equipment"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2384,7 +2384,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["signal", "receive", "detect", "anomaly", "monitor", "fault"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2393,7 +2393,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["signal", "receive", "detect", "anomaly", "monitor", "fault"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2402,7 +2402,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["signal", "receive", "detect", "anomaly", "monitor", "fault"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2411,7 +2411,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["signal", "receive", "detect", "anomaly", "monitor", "fault"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2420,7 +2420,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["info", "information", "serial number", "version", "identifier", "code name", "system"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2429,7 +2429,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["curve", "characteristic", "breaker", "circuit", "overload", "short circuit", "unit", "fault"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2438,7 +2438,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["curve", "characteristic", "breaker", "circuit", "overload", "short circuit", "unit", "fault"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2447,7 +2447,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["curve", "breaker", "circuit", "overload", "short circuit", "unit", "fault"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2468,7 +2468,7 @@ "protection", "continuous" ], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2489,7 +2489,7 @@ "protection", "continuous" ], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2498,7 +2498,7 @@ "family": ["General"], "style": "baseline", "tags": ["options", "adjust", "settings", "device", "levels", "slider", "preference", "filter", "tweak"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2507,7 +2507,7 @@ "family": ["General"], "style": "baseline", "tags": ["options", "adjust", "settings", "device", "levels", "wrench", "preference", "filter", "tweak"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2516,7 +2516,7 @@ "family": ["General"], "style": "baseline", "tags": ["select", "dimmer", "level", "step", "discrete", "twist", "knob", "dial", "handle", "rotate"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2538,7 +2538,7 @@ "sheet", "heart beat" ], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2560,7 +2560,7 @@ "heart beat", "result" ], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2569,7 +2569,7 @@ "family": ["Status"], "style": "baseline", "tags": ["triangle", "graph", "diagonal", "up", "E"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2578,7 +2578,7 @@ "family": ["Status"], "style": "baseline", "tags": ["triangle", "graph", "diagonal", "up", "P"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2587,7 +2587,7 @@ "family": ["Status"], "style": "baseline", "tags": ["arrow", "detour", "bounce back", "dismiss"], - "author": "Huayun Huang (PX Blue)", + "author": "Huayun Huang (Brightlayer UI)", "size": 24 }, { @@ -2596,7 +2596,7 @@ "family": ["Status"], "style": "baseline", "tags": ["arrow", "detour", "dismiss"], - "author": "Huayun Huang (PX Blue)", + "author": "Huayun Huang (Brightlayer UI)", "size": 24 }, { @@ -2616,7 +2616,7 @@ "wave", "equipment" ], - "author": "Huayun Huang (PX Blue)", + "author": "Huayun Huang (Brightlayer UI)", "size": 24 }, { @@ -2625,7 +2625,7 @@ "family": ["Status"], "style": "baseline", "tags": ["wave", "graph", "line", "curve", "period", "duration", "length"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2634,7 +2634,7 @@ "family": ["Status"], "style": "baseline", "tags": ["wave", "graph", "line", "curve", "pattern"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2652,7 +2652,7 @@ "complexor", "arithmetic" ], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2661,7 +2661,7 @@ "family": ["Status"], "style": "baseline", "tags": ["PF", "+", "-", "ratio", "plus", "minus"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2670,7 +2670,7 @@ "family": ["Status"], "style": "baseline", "tags": ["triangle", "graph", "up", "E"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2679,7 +2679,7 @@ "family": ["Status"], "style": "baseline", "tags": ["triangle", "graph", "up", "P"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2688,7 +2688,7 @@ "family": ["Status"], "style": "baseline", "tags": ["triangle", "graph", "right", "E"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2697,7 +2697,7 @@ "family": ["Status"], "style": "baseline", "tags": ["triangle", "graph", "right", "P"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2706,7 +2706,7 @@ "family": ["Status"], "style": "baseline", "tags": ["steps", "triangle", "VB", "VR", "VY", "load", "component"], - "author": "Renato Martins (PX Blue)", + "author": "Renato Martins (Brightlayer UI)", "size": 24 }, { @@ -2715,7 +2715,7 @@ "family": ["Devices"], "style": "baseline", "tags": ["air", "fan", "rotate", "rotation", "wind", "ac", "cooling", "cold", "temperature", "climate"], - "author": "Amy Deng (PX Blue)", + "author": "Amy Deng (Brightlayer UI)", "size": 24 }, { @@ -2736,7 +2736,7 @@ "temperature", "climate" ], - "author": "Amy Deng (PX Blue)", + "author": "Amy Deng (Brightlayer UI)", "size": 24 }, { @@ -2745,7 +2745,7 @@ "family": ["Status"], "style": "baseline", "tags": ["outflow", "exit", "export", "air", "water", "waste", "exhaust"], - "author": "Huayun Huang (PX Blue)", + "author": "Huayun Huang (Brightlayer UI)", "size": 24 }, { @@ -2754,7 +2754,7 @@ "family": ["Status"], "style": "baseline", "tags": ["influx", "inflow", "inrush", "entry", "import", "air", "water"], - "author": "Huayun Huang (PX Blue)", + "author": "Huayun Huang (Brightlayer UI)", "size": 24 }, { @@ -2763,7 +2763,7 @@ "family": ["Devices"], "style": "outlined", "tags": ["air", "fire", "sensor", "carbon monoxide", "indicator", "alarm", "outline", "co"], - "author": "Amy Deng (PX Blue)", + "author": "Amy Deng (Brightlayer UI)", "size": 24 }, { @@ -2772,7 +2772,7 @@ "family": ["System"], "style": "baseline", "tags": ["extension", "portable document format", "export"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -2781,7 +2781,7 @@ "family": ["System"], "style": "baseline", "tags": ["extension", "docs", "export"], - "author": "Eric Atha (PX Blue)", + "author": "Eric Atha (Brightlayer UI)", "size": 24 }, { @@ -2790,7 +2790,7 @@ "family": ["Status"], "style": "baseline", "tags": ["usage", "percentage", "chart", "average", "billing", "line", "consumption", "ratio", "cost"], - "author": "Huayun Huang (PX Blue)", + "author": "Huayun Huang (Brightlayer UI)", "size": 24 }, { @@ -2799,7 +2799,7 @@ "family": ["Vehicles"], "style": "outlined", "tags": ["electric vehicle", "inlet", "connector", "j1772", "japan", "charge", "charging station"], - "author": "Jeremy Matter (PX Blue)", + "author": "Jeremy Matter (Brightlayer UI)", "size": 24 }, { @@ -2808,7 +2808,7 @@ "family": ["Vehicles"], "style": "outlined", "tags": ["electric vehicle", "inlet", "connector", "mennekes", "europe", "charge", "charging station"], - "author": "Jeremy Matter (PX Blue)", + "author": "Jeremy Matter (Brightlayer UI)", "size": 24 }, { @@ -2826,7 +2826,7 @@ "charge", "charging station" ], - "author": "Jeremy Matter (PX Blue)", + "author": "Jeremy Matter (Brightlayer UI)", "size": 24 }, { @@ -2843,7 +2843,7 @@ "charge", "charging station" ], - "author": "Jeremy Matter (PX Blue)", + "author": "Jeremy Matter (Brightlayer UI)", "size": 24 }, { @@ -2852,7 +2852,7 @@ "family": ["Devices"], "style": "outlined", "tags": ["radio frequency identification", "tag", "reader", "data", "tracking", "monitor"], - "author": "Huayun Huang (PX Blue)", + "author": "Huayun Huang (Brightlayer UI)", "size": 24 } ] diff --git a/svg/leaf.svg b/svg/leaf.svg index a7048d74..1a96edcd 100644 --- a/svg/leaf.svg +++ b/svg/leaf.svg @@ -1 +1 @@ -px_leaf_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/maintenance.svg b/svg/maintenance.svg index b557bccd..99a72c78 100644 --- a/svg/maintenance.svg +++ b/svg/maintenance.svg @@ -1 +1 @@ -px_maintenance_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/moisture.svg b/svg/moisture.svg index a3e99ad5..0e302563 100644 --- a/svg/moisture.svg +++ b/svg/moisture.svg @@ -1 +1 @@ -px_moisture_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/network_switch.svg b/svg/network_switch.svg index 4ac4a67c..9671b09c 100644 --- a/svg/network_switch.svg +++ b/svg/network_switch.svg @@ -1 +1 @@ -px_network_switch_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/overlap.svg b/svg/overlap.svg index 68b10812..c5c7f2e6 100644 --- a/svg/overlap.svg +++ b/svg/overlap.svg @@ -1 +1 @@ -px_overlap_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/package.json b/svg/package.json index 00ca1816..b0c5d0f6 100644 --- a/svg/package.json +++ b/svg/package.json @@ -1,27 +1,27 @@ { - "name": "@pxblue/icons-svg", + "name": "@brightlayer-ui/icons-svg", "version": "1.7.0", - "description": "svg icons for Eaton applications", + "description": "SVG icons for Eaton applications", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", - "publish:package": "set npm_config_yes=true && npx -p @pxblue/publish pxb-publish", - "tag:package": "set npm_config_yes=true && cp ../CHANGELOG.md CHANGELOG.md && npx -p @pxblue/tag pxb-tag" + "publish:package": "set npm_config_yes=true && npx -p @brightlayer-ui/publish blui-publish", + "tag:package": "set npm_config_yes=true && cp ../CHANGELOG.md CHANGELOG.md && npx -p @brightlayer-ui/tag blui-tag" }, "repository": { "type": "git", - "url": "git+https://github.com/pxblue/icons.git" + "url": "git+https://github.com/brightlayer-ui/icons.git" }, "keywords": [ "icons", - "pxblue", + "brightlayer-ui", "eaton", "svg" ], - "author": "px-blue ", + "author": "Brightlayer UI ", "license": "BSD-3-Clause", "bugs": { - "url": "https://github.com/pxblue/icons/issues" + "url": "https://github.com/brightlayer-ui/icons/issues" }, - "homepage": "https://github.com/pxblue/icons#readme" + "homepage": "https://github.com/brightlayer-ui/icons#readme" } diff --git a/svg/pdu.svg b/svg/pdu.svg index 729a31fd..19fbf212 100644 --- a/svg/pdu.svg +++ b/svg/pdu.svg @@ -1 +1 @@ -px_pdu_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/pickup_truck.svg b/svg/pickup_truck.svg index 550bc066..7cae4f40 100644 --- a/svg/pickup_truck.svg +++ b/svg/pickup_truck.svg @@ -1 +1 @@ -px_pickup_truck_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/power_circled.svg b/svg/power_circled.svg index 1248edf3..43445214 100644 --- a/svg/power_circled.svg +++ b/svg/power_circled.svg @@ -1 +1 @@ -px_power_circled_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/pump.svg b/svg/pump.svg index 87fe412a..adb31f1c 100644 --- a/svg/pump.svg +++ b/svg/pump.svg @@ -1 +1 @@ -px_pump_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/push_notification.svg b/svg/push_notification.svg index c1834f96..147294ef 100644 --- a/svg/push_notification.svg +++ b/svg/push_notification.svg @@ -1 +1 @@ -px_push_notification_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/push_notification_solid.svg b/svg/push_notification_solid.svg index 72968606..d4ced8ce 100644 --- a/svg/push_notification_solid.svg +++ b/svg/push_notification_solid.svg @@ -1 +1 @@ -px_push_notification_solid_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/qrcode.svg b/svg/qrcode.svg index e19d7084..05f0227a 100644 --- a/svg/qrcode.svg +++ b/svg/qrcode.svg @@ -1 +1 @@ -px_qrcode_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/running_high.svg b/svg/running_high.svg index 15e3b224..948beef4 100644 --- a/svg/running_high.svg +++ b/svg/running_high.svg @@ -1 +1 @@ -px_running_high_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/running_low.svg b/svg/running_low.svg index a120981b..41c1780a 100644 --- a/svg/running_low.svg +++ b/svg/running_low.svg @@ -1 +1 @@ -px_running_low_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/scan_qrcode.svg b/svg/scan_qrcode.svg index 78332f76..d44fde04 100644 --- a/svg/scan_qrcode.svg +++ b/svg/scan_qrcode.svg @@ -1 +1 @@ -px_scan_qrcode_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/server.svg b/svg/server.svg index 3fac3a69..41f9c1d9 100644 --- a/svg/server.svg +++ b/svg/server.svg @@ -1 +1 @@ -px_server_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/servers.svg b/svg/servers.svg index dbe61a8e..1e883c75 100644 --- a/svg/servers.svg +++ b/svg/servers.svg @@ -1 +1 @@ -px_servers_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/ssol.svg b/svg/ssol.svg index 22a191c0..166168ee 100644 --- a/svg/ssol.svg +++ b/svg/ssol.svg @@ -1 +1 @@ -px_ssol_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/stopped.svg b/svg/stopped.svg index 7954036d..7d3050da 100644 --- a/svg/stopped.svg +++ b/svg/stopped.svg @@ -1 +1 @@ -px_stop_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/switch.svg b/svg/switch.svg index f93a2889..24e15476 100644 --- a/svg/switch.svg +++ b/svg/switch.svg @@ -1 +1 @@ -px_tripped_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/trending_flat.svg b/svg/trending_flat.svg index 91e24bba..e424d2c8 100644 --- a/svg/trending_flat.svg +++ b/svg/trending_flat.svg @@ -1 +1 @@ -px_trending_flat_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/tripped.svg b/svg/tripped.svg index f93a2889..24e15476 100644 --- a/svg/tripped.svg +++ b/svg/tripped.svg @@ -1 +1 @@ -px_tripped_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/vfd.svg b/svg/vfd.svg index 54280ef2..1cde63cb 100644 --- a/svg/vfd.svg +++ b/svg/vfd.svg @@ -1 +1 @@ -px_vfd_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/voltage.svg b/svg/voltage.svg index 06505abe..19677a6e 100644 --- a/svg/voltage.svg +++ b/svg/voltage.svg @@ -1 +1 @@ -px_voltage_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/voltage_circled.svg b/svg/voltage_circled.svg index e51a98ca..0091204d 100644 --- a/svg/voltage_circled.svg +++ b/svg/voltage_circled.svg @@ -1 +1 @@ -px_voltage_circled_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/voltage_circled_outline.svg b/svg/voltage_circled_outline.svg index 087531f5..151a3b92 100644 --- a/svg/voltage_circled_outline.svg +++ b/svg/voltage_circled_outline.svg @@ -1 +1 @@ -px_voltage_circled_outline_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/water_outline.svg b/svg/water_outline.svg index 390c36ba..01abd8d9 100644 --- a/svg/water_outline.svg +++ b/svg/water_outline.svg @@ -1 +1 @@ -px_water_outline_24px \ No newline at end of file + \ No newline at end of file diff --git a/svg/waveform.svg b/svg/waveform.svg index 59d25ffc..c49c383a 100644 --- a/svg/waveform.svg +++ b/svg/waveform.svg @@ -1 +1 @@ -px_waveform_24px \ No newline at end of file + \ No newline at end of file diff --git a/yarn.lock b/yarn.lock index 4b214c7d..4be04a1f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,6 +2,11 @@ # yarn lockfile v1 +"@brightlayer-ui/prettier-config@^1.0.3": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@brightlayer-ui/prettier-config/-/prettier-config-1.0.3.tgz#e40a7ae7435c6fd5118acbf249080e0aa81e93af" + integrity sha512-EYm3+V7Qd+oYEF+8FadsXAZqXryEHHbGnrV1BMp9selhABjceqUqXPVE4Sn3SKWQdBNJ3En2A3EzgrzRbvRTaw== + "@nodelib/fs.scandir@2.1.5": version "2.1.5" resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" @@ -165,11 +170,6 @@ node-gyp "^7.1.0" read-package-json-fast "^2.0.1" -"@pxblue/prettier-config@^1.0.3": - version "1.0.3" - resolved "https://registry.yarnpkg.com/@pxblue/prettier-config/-/prettier-config-1.0.3.tgz#285b9ba346f714d397ef4a59579443b95a77e63e" - integrity sha512-x9SDup4pf5H54r/stZBXz7/XlMcIqnwHkEJ+9pyXVtGyQljI28lDGQCWQj6heipWAett50yx0RB3P2+MWZDhJA== - "@tootallnate/once@1": version "1.1.2" resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" @@ -2307,7 +2307,6 @@ minipass-fetch@^1.3.0, minipass-fetch@^1.3.2: resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-1.3.3.tgz#34c7cea038c817a8658461bf35174551dce17a0a" integrity sha512-akCrLDWfbdAWkMLBxJEeWTdNsjML+dt5YgOI4gJ53vuO0vrmYQkUPxa6j6V65s9CcePIr2SSWqjT2EcrNseryQ== dependencies: - encoding "^0.1.12" minipass "^3.1.0" minipass-sized "^1.0.3" minizlib "^2.0.0"