@brightlayer-ui/colors 4.0.0-alpha.3 → 4.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # CHANGELOG
2
2
 
3
- ## v4.0.0 (Unreleased)
3
+ ## v4.0.0 (December 6, 2023)
4
4
 
5
5
  ### Changed
6
6
 
package/README.md CHANGED
@@ -64,14 +64,14 @@ Incorporating these colors into your project is handled differently depending on
64
64
 
65
65
  ```
66
66
  // For UI Colors in styles.scss or your top-level sass file
67
- @import '~@brightlayer-ui/colors/palette.scss';
67
+ @import '@brightlayer-ui/colors/palette.scss';
68
68
  ...
69
69
  background-color: map-get($blui-primary, 10);
70
70
  ```
71
71
 
72
72
  ```
73
73
  // For Branding Colors in styles.scss or your top-level sass file
74
- @import '~@brightlayer-ui/colors/branding-palette.scss';
74
+ @import '@brightlayer-ui/colors/branding-palette.scss';
75
75
  ...
76
76
  background-color: $brand-lightGray;
77
77
  ```
@@ -27,6 +27,5 @@ declare enum BrandingColors {
27
27
  crimson = "#D22730",
28
28
  wine = "#9D2235"
29
29
  }
30
- export declare const chartColors: BrandingColors[];
31
30
  export declare const lightGray: BrandingColors, gray: BrandingColors, darkGray: BrandingColors, sky: BrandingColors, eatonBlue: BrandingColors, navy: BrandingColors, ash: BrandingColors, teal: BrandingColors, pine: BrandingColors, sage: BrandingColors, citrus: BrandingColors, emerald: BrandingColors, butter: BrandingColors, goldenrod: BrandingColors, toad: BrandingColors, trophy: BrandingColors, sunset: BrandingColors, rust: BrandingColors, crimson: BrandingColors, wine: BrandingColors;
32
31
  export default BrandingColors;
@@ -7,7 +7,7 @@ All rights reserved.
7
7
  This code is licensed under the BSD-3 license found in the LICENSE file in the root directory of this source tree and at https://opensource.org/licenses/BSD-3-Clause.
8
8
  **/
9
9
  Object.defineProperty(exports, "__esModule", { value: true });
10
- exports.wine = exports.crimson = exports.rust = exports.sunset = exports.trophy = exports.toad = exports.goldenrod = exports.butter = exports.emerald = exports.citrus = exports.sage = exports.pine = exports.teal = exports.ash = exports.navy = exports.eatonBlue = exports.sky = exports.darkGray = exports.gray = exports.lightGray = exports.chartColors = void 0;
10
+ exports.wine = exports.crimson = exports.rust = exports.sunset = exports.trophy = exports.toad = exports.goldenrod = exports.butter = exports.emerald = exports.citrus = exports.sage = exports.pine = exports.teal = exports.ash = exports.navy = exports.eatonBlue = exports.sky = exports.darkGray = exports.gray = exports.lightGray = void 0;
11
11
  var BrandingColors;
12
12
  (function (BrandingColors) {
13
13
  BrandingColors["lightGray"] = "#98A4AE";
@@ -31,17 +31,5 @@ var BrandingColors;
31
31
  BrandingColors["crimson"] = "#D22730";
32
32
  BrandingColors["wine"] = "#9D2235";
33
33
  })(BrandingColors || (BrandingColors = {}));
34
- exports.chartColors = [
35
- BrandingColors.teal,
36
- BrandingColors.citrus,
37
- BrandingColors.pine,
38
- BrandingColors.emerald,
39
- BrandingColors.wine,
40
- BrandingColors.crimson,
41
- BrandingColors.sunset,
42
- BrandingColors.rust,
43
- BrandingColors.navy,
44
- BrandingColors.sky,
45
- ];
46
34
  exports.lightGray = BrandingColors.lightGray, exports.gray = BrandingColors.gray, exports.darkGray = BrandingColors.darkGray, exports.sky = BrandingColors.sky, exports.eatonBlue = BrandingColors.eatonBlue, exports.navy = BrandingColors.navy, exports.ash = BrandingColors.ash, exports.teal = BrandingColors.teal, exports.pine = BrandingColors.pine, exports.sage = BrandingColors.sage, exports.citrus = BrandingColors.citrus, exports.emerald = BrandingColors.emerald, exports.butter = BrandingColors.butter, exports.goldenrod = BrandingColors.goldenrod, exports.toad = BrandingColors.toad, exports.trophy = BrandingColors.trophy, exports.sunset = BrandingColors.sunset, exports.rust = BrandingColors.rust, exports.crimson = BrandingColors.crimson, exports.wine = BrandingColors.wine;
47
35
  exports.default = BrandingColors;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightlayer-ui/colors",
3
- "version": "4.0.0-alpha.3",
3
+ "version": "4.0.0",
4
4
  "description": "Brightlayer UI colors for Eaton applications",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",