@brightlayer-ui/colors 3.1.0-beta.0 → 3.1.0-beta.1

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
@@ -4,7 +4,11 @@
4
4
 
5
5
  ### Added
6
6
 
7
- - Added top level export `BLUIColors` & updated typescript version used to build package ([#47](https://github.com/brightlayer-ui/colors/issues/47)).
7
+ - Added top level export `BLUIColors`.
8
+
9
+ ### Changed
10
+
11
+ - Changed build module from `commonjs` to `es2020` ([#47](https://github.com/brightlayer-ui/colors/issues/47)).
8
12
 
9
13
  ## Package Migration Notice
10
14
 
package/dist/index.js CHANGED
@@ -6,4 +6,5 @@ All rights reserved.
6
6
  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.
7
7
  **/
8
8
  export * from './palette';
9
- export * as BLUIColors from './palette';
9
+ import * as BLUIColors_1 from './palette';
10
+ export { BLUIColors_1 as BLUIColors };
package/dist/palette.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /* Primary Colors / User Interface Colors */
2
- export const blue = {
2
+ export var blue = {
3
3
  50: '#e0eff8',
4
4
  100: '#b3d7ec',
5
5
  200: '#80bde0',
@@ -12,7 +12,7 @@ export const blue = {
12
12
  900: '#004b9e',
13
13
  contrastDefaultColor: 'light',
14
14
  };
15
- export const white = {
15
+ export var white = {
16
16
  50: '#ffffff',
17
17
  100: '#fbfbfb',
18
18
  200: '#f7f8f8',
@@ -25,7 +25,7 @@ export const white = {
25
25
  900: '#e2e5e5',
26
26
  contrastDefaultColor: 'dark',
27
27
  };
28
- export const gray = {
28
+ export var gray = {
29
29
  50: '#eef0f0',
30
30
  100: '#d5d8da',
31
31
  200: '#b9bfc2',
@@ -38,7 +38,7 @@ export const gray = {
38
38
  900: '#424e54',
39
39
  contrastDefaultColor: 'light',
40
40
  };
41
- export const black = {
41
+ export var black = {
42
42
  50: '#e8eaea',
43
43
  100: '#c6cacc',
44
44
  200: '#a1a7aa',
@@ -51,7 +51,7 @@ export const black = {
51
51
  900: '#1d2529',
52
52
  contrastDefaultColor: 'light',
53
53
  };
54
- export const darkBlack = {
54
+ export var darkBlack = {
55
55
  50: '#202224',
56
56
  100: '#182022',
57
57
  200: '#182022',
@@ -65,9 +65,9 @@ export const darkBlack = {
65
65
  contrastDefaultColor: 'light',
66
66
  };
67
67
  // alias
68
- export const vantaBlack = darkBlack;
68
+ export var vantaBlack = darkBlack;
69
69
  /* Status Colors */
70
- export const red = {
70
+ export var red = {
71
71
  50: '#f9e8e8',
72
72
  100: '#efc5c5',
73
73
  200: '#e59e9e',
@@ -80,7 +80,7 @@ export const red = {
80
80
  900: '#ab1a1a',
81
81
  contrastDefaultColor: 'light',
82
82
  };
83
- export const orange = {
83
+ export var orange = {
84
84
  50: '#feefe4',
85
85
  100: '#fcd6bc',
86
86
  200: '#fabb90',
@@ -93,7 +93,7 @@ export const orange = {
93
93
  900: '#ec470b',
94
94
  contrastDefaultColor: 'light',
95
95
  };
96
- export const gold = {
96
+ export var gold = {
97
97
  50: '#fdf5e4',
98
98
  100: '#fbe6bc',
99
99
  200: '#f8d58f',
@@ -106,7 +106,7 @@ export const gold = {
106
106
  900: '#e57f0a',
107
107
  contrastDefaultColor: 'dark',
108
108
  };
109
- export const yellow = {
109
+ export var yellow = {
110
110
  50: '#fdf9e6',
111
111
  100: '#fbefc1',
112
112
  200: '#f8e597',
@@ -119,7 +119,7 @@ export const yellow = {
119
119
  900: '#e5ac12',
120
120
  contrastDefaultColor: 'dark',
121
121
  };
122
- export const green = {
122
+ export var green = {
123
123
  50: '#e7f6e4',
124
124
  100: '#c4e9bc',
125
125
  200: '#9cdb90',
@@ -132,7 +132,7 @@ export const green = {
132
132
  900: '#178e0b',
133
133
  contrastDefaultColor: 'light',
134
134
  };
135
- export const lightBlue = {
135
+ export var lightBlue = {
136
136
  50: '#e0f1fd',
137
137
  100: '#b3dbfb',
138
138
  200: '#80c4f9',
@@ -145,7 +145,7 @@ export const lightBlue = {
145
145
  900: '#0058e8',
146
146
  contrastDefaultColor: 'dark',
147
147
  };
148
- export const purple = {
148
+ export var purple = {
149
149
  50: '#f3e8fd',
150
150
  100: '#e0c5fa',
151
151
  200: '#cc9ff7',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightlayer-ui/colors",
3
- "version": "3.1.0-beta.0",
3
+ "version": "3.1.0-beta.1",
4
4
  "description": "Brightlayer UI colors for Eaton applications",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",