@semcore/ui 13.0.2 → 13.1.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
@@ -1,3 +1,129 @@
1
+ ## [13.1.1] - 2022-11-09
2
+
3
+ ### @semcore/base-trigger
4
+
5
+ - **Fixed** Fixed `FilterTrigger` accessability.
6
+
7
+ ### @semcore/ellipsis
8
+
9
+ - **Added** Component was added to export of `@semcore/ui`.
10
+
11
+ ### @semcore/checkbox
12
+
13
+ - **Fixed** Fixed displaying in unchecked and disabled state.
14
+
15
+ ### @semcore/d3-chart
16
+
17
+ - **Fixed** Fixed hover and active animated for `Donut` chart.
18
+
19
+ ### @semcore/date-picker
20
+
21
+ - **Fixed** Fixed input trigger visual divergence from initial design.
22
+ - **Fixed** Removed lock on fixed version of `@semcore/input`.
23
+
24
+ ### @semcore/icon
25
+
26
+ - **Added** Added `LookerStudio` icon.
27
+
28
+ ### @semcore/input-mask
29
+
30
+ - **Fixed** Fixed mask and text line-height mismatch.
31
+
32
+ ### @semcore/pagination
33
+
34
+ - **Fixed** Fixed styles for last and single pages
35
+
36
+ ## [13.1.0] - 2022-11-03
37
+
38
+ ### @semcore/animation
39
+
40
+ - **Added** Added a property that removes the `overflow=hidden` setting.
41
+ - **Changed** Returning the original `overflow` after the animation has passed.
42
+
43
+ ### @semcore/button
44
+
45
+ - **Fixed** Lazy checks for necessity of `aria-label` in non production environment.
46
+
47
+ ### @semcore/carousel
48
+
49
+ - **Fixed** Fixed screen readers support.
50
+
51
+ ### @semcore/checkbox
52
+
53
+ - **Fixed** Fixed displaying in unchecked and disabled state.
54
+
55
+ ### @semcore/color-picker
56
+
57
+ - **Fixed** Fixed screen readers support.
58
+
59
+ ### @semcore/d3-chart
60
+
61
+ - **Fixed** Fixed hover and active animated for `Donut` chart.
62
+ - **Fixed** Fixed display of minimum bar size in `StackBar`.
63
+ - **Added** Added display of minimum bar size in `HorizontalBar`.
64
+ - **Fixed** Fixed inner radius for `Donut` chart. It began to equal what is indicated in the `innerRadius` prop.
65
+ - **Fixed** Fixed reference lines were missing dashed style.
66
+ - **Fixed** Fixed typings of render functions.
67
+
68
+ ### @semcore/data-table
69
+
70
+ - **Added** Support for inheritance of `alignItems` prop from header to cells.
71
+ - **Added** Added `disabledScroll` property that disables scrolling in tables.
72
+ - **Added** Added the ability(`flex="inherit"`) to inherit the size from the top table.
73
+
74
+ ### @semcore/date-picker
75
+
76
+ - **Fixed** Removed lock on fixed version of `@semcore/input`.
77
+
78
+ ### @semcore/errors
79
+
80
+ - **Fixed** Fixed paddings.
81
+
82
+ ### @semcore/icon
83
+
84
+ - **Fixed** Lazy checks for necessity of `aria-label` in non production environment.
85
+ - **Changed** Updated `Text` icon.
86
+ - **Added** Added icon `GoogleAds`
87
+
88
+ ### @semcore/inline-edit
89
+
90
+ - **Fixed** Removed wrong aria role and added needed aria label.
91
+
92
+ ### @semcore/inline-input
93
+
94
+ - **Added** Added accessability needed aria label.
95
+
96
+ ### @semcore/input-mask
97
+
98
+ - **Fixed** Fixed mask and text line-height mismatch.
99
+ - **Added** Allowed to pass children.
100
+
101
+ ### @semcore/link
102
+
103
+ - **Fixed** Lazy checks for necessity of `aria-label` in non production environment.
104
+
105
+ ### @semcore/modal
106
+
107
+ - **Changed** Updated `focus-lock`.
108
+
109
+ ### @semcore/popper
110
+
111
+ - **Changed** Updated `focus-lock`.
112
+
113
+ ### @semcore/side-panel
114
+
115
+ - **Changed** Updated `focus-lock`.
116
+
117
+ ### @semcore/time-picker
118
+
119
+ - **Fixed** Fixed that some secret combination of arrows pressing was causing infinite focus call and temporary freeze of browser.
120
+ - **Fixed** Fixed Screen readers support.
121
+
122
+ ### @semcore/utils
123
+
124
+ - **Added** Added `hasLabels` utility.
125
+ - **Fixed** Removed `@types/react`, `@types/react-dom` and `@types/node` from package direct dependencies.
126
+
1
127
  ## [13.0.2] - 2022-10-20
2
128
 
3
129
  ### @semcore/base-trigger
@@ -0,0 +1 @@
1
+ module.exports = require('@semcore/ellipsis');
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/ellipsis';
2
+ export * from '@semcore/ellipsis';
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/ellipsis';
2
+ export * from '@semcore/ellipsis';
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/ellipsis';
2
+ export * from '@semcore/ellipsis';
package/generate.ts CHANGED
@@ -104,19 +104,22 @@ const GENERATOR = {
104
104
  UTILS: async (dependency: string, name: string) => {
105
105
  const require = createRequire(import.meta.url);
106
106
  const utilsMain = require.resolve(dependency);
107
- const utilsPath = path.join(utilsMain, '..');
108
- const utils = glob.sync('**/*.+(js|ts)', { cwd: utilsPath });
107
+ const utilsDistPath = path.join(utilsMain, '..');
108
+ const utilsPath = path.join(utilsDistPath, '..');
109
+ const utils = glob.sync('**/*.+(js|ts)', { cwd: utilsDistPath });
109
110
  for (const util of utils) {
110
111
  const utilNameWithoutExtention = util.replace(/\.(d\.)?(t|j)s$/, '');
111
112
 
112
113
  // index.js of utils throws & useless, so we copy it
113
114
  if (utilNameWithoutExtention === 'index') {
114
- await fs.copy(`${utilsPath}/${util}`, `./${name}/lib/${util}`);
115
+ await fs.copy(`${utilsDistPath}/${util}`, `./${name}/lib/${util}`);
115
116
  continue;
116
117
  }
117
118
 
118
119
  for (const extension of exportExtensions) {
119
- const defaultExport = await hasExportDefault(`${utilsPath}/${utilNameWithoutExtention}`);
120
+ const defaultExport = await hasExportDefault(
121
+ `${utilsDistPath}/${utilNameWithoutExtention}`,
122
+ );
120
123
  const template = defaultExport
121
124
  ? EXPORT_TEMPLATES[extension].LIB_DEFAULT
122
125
  : EXPORT_TEMPLATES[extension].LIB_NAMED;
@@ -127,6 +130,7 @@ const GENERATOR = {
127
130
  );
128
131
  }
129
132
  }
133
+ await fs.copy(`${utilsPath}/style`, `./${name}/style`);
130
134
  },
131
135
  ICONS: async (dependency: string, name: string) => {
132
136
  const require = createRequire(import.meta.url);
@@ -0,0 +1 @@
1
+ module.exports = require('@semcore/icon/GoogleAds/l');
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/GoogleAds/l';
2
+ export * from '@semcore/icon/GoogleAds/l';
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/GoogleAds/l';
2
+ export * from '@semcore/icon/GoogleAds/l';
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/GoogleAds/l';
2
+ export * from '@semcore/icon/GoogleAds/l';
@@ -0,0 +1 @@
1
+ module.exports = require('@semcore/icon/GoogleAds/m');
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/GoogleAds/m';
2
+ export * from '@semcore/icon/GoogleAds/m';
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/GoogleAds/m';
2
+ export * from '@semcore/icon/GoogleAds/m';
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/GoogleAds/m';
2
+ export * from '@semcore/icon/GoogleAds/m';
@@ -0,0 +1 @@
1
+ module.exports = require('@semcore/icon/LookerStudio/l');
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/LookerStudio/l';
2
+ export * from '@semcore/icon/LookerStudio/l';
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/LookerStudio/l';
2
+ export * from '@semcore/icon/LookerStudio/l';
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/LookerStudio/l';
2
+ export * from '@semcore/icon/LookerStudio/l';
@@ -0,0 +1 @@
1
+ module.exports = require('@semcore/icon/LookerStudio/m');
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/LookerStudio/m';
2
+ export * from '@semcore/icon/LookerStudio/m';
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/LookerStudio/m';
2
+ export * from '@semcore/icon/LookerStudio/m';
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/LookerStudio/m';
2
+ export * from '@semcore/icon/LookerStudio/m';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@semcore/ui",
3
- "version": "13.0.2",
3
+ "version": "13.1.1",
4
4
  "license": "MIT",
5
5
  "module": "./index.js",
6
6
  "sideEffects": false,
@@ -10,77 +10,78 @@
10
10
  "test": "jest"
11
11
  },
12
12
  "dependencies": {
13
- "@semcore/accordion": "4.1.2",
14
- "@semcore/animation": "1.6.2",
15
- "@semcore/badge": "3.2.2",
16
- "@semcore/base-trigger": "3.2.2",
17
- "@semcore/breadcrumbs": "4.2.2",
18
- "@semcore/breakpoints": "1.2.2",
19
- "@semcore/button": "4.2.2",
20
- "@semcore/card": "4.1.2",
21
- "@semcore/carousel": "2.1.2",
22
- "@semcore/checkbox": "6.1.2",
23
- "@semcore/color-picker": "1.2.2",
24
- "@semcore/core": "1.13.3",
25
- "@semcore/counter": "2.1.2",
26
- "@semcore/data-table": "3.3.2",
27
- "@semcore/date-picker": "3.4.2",
28
- "@semcore/divider": "3.1.2",
29
- "@semcore/dot": "4.1.2",
30
- "@semcore/drag-and-drop": "2.1.2",
31
- "@semcore/dropdown": "3.2.2",
32
- "@semcore/dropdown-menu": "3.3.1",
33
- "@semcore/d3-chart": "2.4.2",
13
+ "@semcore/accordion": "4.1.7",
14
+ "@semcore/animation": "1.7.1",
15
+ "@semcore/badge": "3.2.3",
16
+ "@semcore/base-trigger": "3.2.6",
17
+ "@semcore/breadcrumbs": "4.2.6",
18
+ "@semcore/breakpoints": "1.2.3",
19
+ "@semcore/button": "4.2.3",
20
+ "@semcore/card": "4.1.6",
21
+ "@semcore/carousel": "2.1.7",
22
+ "@semcore/checkbox": "6.1.4",
23
+ "@semcore/color-picker": "1.2.7",
24
+ "@semcore/core": "1.13.4",
25
+ "@semcore/counter": "2.1.3",
26
+ "@semcore/data-table": "3.5.1",
27
+ "@semcore/date-picker": "3.4.9",
28
+ "@semcore/divider": "3.1.3",
29
+ "@semcore/dot": "4.1.4",
30
+ "@semcore/drag-and-drop": "2.1.6",
31
+ "@semcore/dropdown": "3.2.4",
32
+ "@semcore/dropdown-menu": "3.3.3",
33
+ "@semcore/d3-chart": "2.4.10",
34
+ "@semcore/ellipsis": "1.0.3",
34
35
  "@semcore/email": "1.0.2",
35
- "@semcore/errors": "3.5.2",
36
- "@semcore/feature-popover": "3.1.2",
37
- "@semcore/feedback-form": "5.2.2",
38
- "@semcore/flags": "3.1.2",
39
- "@semcore/flex-box": "4.6.2",
40
- "@semcore/format-text": "3.1.2",
41
- "@semcore/fullscreen-modal": "2.1.2",
42
- "@semcore/grid": "4.2.2",
43
- "@semcore/icon": "3.0.2",
44
- "@semcore/illustration": "1.3.2",
45
- "@semcore/inline-input": "3.1.2",
46
- "@semcore/inline-edit": "2.1.2",
47
- "@semcore/input": "3.2.2",
48
- "@semcore/input-mask": "4.3.2",
49
- "@semcore/input-number": "4.1.2",
50
- "@semcore/input-tags": "3.2.2",
51
- "@semcore/link": "4.2.2",
52
- "@semcore/modal": "3.1.2",
53
- "@semcore/neighbor-location": "3.1.2",
54
- "@semcore/notice": "4.2.2",
55
- "@semcore/notice-global": "1.2.2",
56
- "@semcore/notice-bubble": "4.2.2",
57
- "@semcore/outside-click": "2.5.2",
58
- "@semcore/pagination": "3.3.2",
59
- "@semcore/pills": "4.3.2",
60
- "@semcore/popper": "4.13.2",
61
- "@semcore/portal": "2.4.2",
62
- "@semcore/product-head": "3.1.2",
63
- "@semcore/progress-bar": "3.2.2",
64
- "@semcore/radio": "5.1.2",
65
- "@semcore/scroll-area": "4.1.2",
66
- "@semcore/select": "3.2.3",
67
- "@semcore/side-panel": "2.1.2",
68
- "@semcore/skeleton": "4.2.2",
69
- "@semcore/slider": "3.2.2",
70
- "@semcore/spin": "4.1.2",
71
- "@semcore/spin-container": "6.1.2",
72
- "@semcore/sticky": "2.3.2",
73
- "@semcore/switch": "4.2.2",
74
- "@semcore/tab-line": "3.1.2",
75
- "@semcore/tab-panel": "3.1.2",
76
- "@semcore/tag": "4.2.2",
77
- "@semcore/textarea": "4.1.2",
78
- "@semcore/time-picker": "3.2.1",
79
- "@semcore/tooltip": "5.1.2",
80
- "@semcore/typography": "4.2.2",
81
- "@semcore/utils": "3.39.1",
82
- "@semcore/widget-empty": "3.6.2",
83
- "@semcore/wizard": "1.1.2"
36
+ "@semcore/errors": "3.5.4",
37
+ "@semcore/feature-popover": "3.1.8",
38
+ "@semcore/feedback-form": "5.2.3",
39
+ "@semcore/flags": "3.1.3",
40
+ "@semcore/flex-box": "4.6.3",
41
+ "@semcore/format-text": "3.1.3",
42
+ "@semcore/fullscreen-modal": "2.1.7",
43
+ "@semcore/grid": "4.2.3",
44
+ "@semcore/icon": "3.2.0",
45
+ "@semcore/illustration": "1.3.3",
46
+ "@semcore/inline-input": "3.1.6",
47
+ "@semcore/inline-edit": "2.1.5",
48
+ "@semcore/input": "3.2.3",
49
+ "@semcore/input-mask": "4.3.4",
50
+ "@semcore/input-number": "4.1.3",
51
+ "@semcore/input-tags": "3.2.3",
52
+ "@semcore/link": "4.2.3",
53
+ "@semcore/modal": "3.1.8",
54
+ "@semcore/neighbor-location": "3.1.3",
55
+ "@semcore/notice": "4.2.7",
56
+ "@semcore/notice-global": "1.2.7",
57
+ "@semcore/notice-bubble": "4.2.7",
58
+ "@semcore/outside-click": "2.5.3",
59
+ "@semcore/pagination": "3.3.7",
60
+ "@semcore/pills": "4.3.3",
61
+ "@semcore/popper": "4.13.4",
62
+ "@semcore/portal": "2.4.3",
63
+ "@semcore/product-head": "3.1.3",
64
+ "@semcore/progress-bar": "3.2.3",
65
+ "@semcore/radio": "5.1.3",
66
+ "@semcore/scroll-area": "4.1.3",
67
+ "@semcore/select": "3.2.9",
68
+ "@semcore/side-panel": "2.1.8",
69
+ "@semcore/skeleton": "4.2.3",
70
+ "@semcore/slider": "3.2.3",
71
+ "@semcore/spin": "4.1.3",
72
+ "@semcore/spin-container": "6.1.4",
73
+ "@semcore/sticky": "2.3.3",
74
+ "@semcore/switch": "4.2.3",
75
+ "@semcore/tab-line": "3.1.3",
76
+ "@semcore/tab-panel": "3.1.3",
77
+ "@semcore/tag": "4.2.6",
78
+ "@semcore/textarea": "4.1.3",
79
+ "@semcore/time-picker": "3.2.8",
80
+ "@semcore/tooltip": "5.1.4",
81
+ "@semcore/typography": "4.2.6",
82
+ "@semcore/utils": "3.40.0",
83
+ "@semcore/widget-empty": "3.6.3",
84
+ "@semcore/wizard": "1.1.8"
84
85
  },
85
86
  "devDependencies": {
86
87
  "@types/react": "18.0.21",
@@ -0,0 +1 @@
1
+ module.exports = require('@semcore/utils/lib/hasLabels');
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/utils/lib/hasLabels';
2
+ export * from '@semcore/utils/lib/hasLabels';
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/utils/lib/hasLabels';
2
+ export * from '@semcore/utils/lib/hasLabels';
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/utils/lib/hasLabels';
2
+ export * from '@semcore/utils/lib/hasLabels';
@@ -0,0 +1,17 @@
1
+ @import '@semcore/utils/style/var.css';
2
+
3
+ :root {
4
+ --brand-color: #ff006b;
5
+ --light-orange: #ffbb00;
6
+ --orange: #f97134;
7
+ --dark-red: #c50108;
8
+ --red: #f5141c;
9
+ --dark-orange: #f97134;
10
+ --ultramarine: #4338a2;
11
+ --light-ultramarine: #5c4cdc;
12
+ --dark-rose: #d30059;
13
+ --rose: #e60563;
14
+ --ghost-white: #f2f0fc;
15
+ --ghost-white50: #f7f6fd;
16
+ --keyboard-focus: 0 0 0 3px color-mod(var(--light-ultramarine) a(30%));
17
+ }
@@ -0,0 +1,221 @@
1
+ :root {
2
+ --white: #ffffff;
3
+ --black: #000000;
4
+ --gray-50: #f4f5f9;
5
+ --gray-100: #e0e1e9;
6
+ --gray-200: #c4c7cf;
7
+ --gray-300: #a9abb6;
8
+ --gray-400: #8a8e9b;
9
+ --gray-500: #6c6e79;
10
+ --gray-600: #484a54;
11
+ --gray-700: #2b2e38;
12
+ --gray-800: #191b23;
13
+ --blue-50: #e9f7ff;
14
+ --blue-100: #c4e5fe;
15
+ --blue-200: #8ecdff;
16
+ --blue-300: #2bb3ff;
17
+ --blue-400: #008ff8;
18
+ --blue-500: #006dca;
19
+ --blue-600: #044792;
20
+ --blue-700: #002b5f;
21
+ --blue-800: #001b3d;
22
+ --green-50: #dbfee8;
23
+ --green-100: #9ef2c9;
24
+ --green-200: #59ddaa;
25
+ --green-300: #00c192;
26
+ --green-400: #009f81;
27
+ --green-500: #007c65;
28
+ --green-600: #055345;
29
+ --green-700: #00342d;
30
+ --green-800: #00201e;
31
+ --salad-50: #ecfbcd;
32
+ --salad-100: #c7ee96;
33
+ --salad-200: #9bd85d;
34
+ --salad-300: #66c030;
35
+ --salad-400: #35a21e;
36
+ --salad-500: #0a7e22;
37
+ --salad-600: #005613;
38
+ --salad-700: #003509;
39
+ --salad-800: #002203;
40
+ --orange-50: #fff3d9;
41
+ --orange-100: #ffdca2;
42
+ --orange-200: #ffb26e;
43
+ --orange-300: #ff8c43;
44
+ --orange-400: #ff642d;
45
+ --orange-500: #c33909;
46
+ --orange-600: #8b1500;
47
+ --orange-700: #551200;
48
+ --orange-800: #351000;
49
+ --yellow-50: #fdf7c8;
50
+ --yellow-100: #fce081;
51
+ --yellow-200: #fdc23c;
52
+ --yellow-300: #ef9800;
53
+ --yellow-400: #d87900;
54
+ --yellow-500: #a75800;
55
+ --yellow-600: #743a00;
56
+ --yellow-700: #462500;
57
+ --yellow-800: #2c1600;
58
+ --red-50: #fff0f7;
59
+ --red-100: #ffd7df;
60
+ --red-200: #ffaeb5;
61
+ --red-300: #ff8786;
62
+ --red-400: #ff4953;
63
+ --red-500: #d1002f;
64
+ --red-600: #8e0016;
65
+ --red-700: #58000a;
66
+ --red-800: #410101;
67
+ --pink-50: #fff0ff;
68
+ --pink-100: #ffd3ff;
69
+ --pink-200: #ffa9fa;
70
+ --pink-300: #f67cf2;
71
+ --pink-400: #e14adf;
72
+ --pink-500: #b229b9;
73
+ --pink-600: #7d0480;
74
+ --pink-700: #4d0050;
75
+ --pink-800: #340439;
76
+ --violet-50: #f9f2ff;
77
+ --violet-100: #edd9ff;
78
+ --violet-200: #dcb8ff;
79
+ --violet-300: #c695ff;
80
+ --violet-400: #ab6cfe;
81
+ --violet-500: #8649e1;
82
+ --violet-600: #5925ab;
83
+ --violet-700: #421983;
84
+ --violet-800: #220358;
85
+ --brand-color: #ff642d;
86
+ --pinterest: #bd081c;
87
+ --instagram: #e4405f;
88
+ --youtube: #ff0000;
89
+ --facebook: #3b5998;
90
+ --linkedIn: #1a7ab2;
91
+ --twitter: #2bafeb;
92
+ --google-my-business: #1a73e8;
93
+ --google-blue: #1a0dab;
94
+ --google-green: #016723;
95
+
96
+ --keyboard-focus: 0 0 0 3px color-mod(var(--blue-400) a(20%));
97
+ --keyborad-focus: var(--keyboard-focus);
98
+ --keyboard-focus-valid: 0px 0px 0px 3px color-mod(var(--green-400) a(20%));
99
+ --keyboard-focus-invalid: 0px 0px 0px 3px color-mod(var(--red-400) a(20%));
100
+
101
+ --rounded-s: 4px;
102
+ --rounded-m: 6px;
103
+ --rounded-l: 12px;
104
+
105
+ --form-control-m: 28px;
106
+ --form-control-l: 40px;
107
+
108
+ --box-shadow-card: 0px 1px 2px 0px rgba(25, 27, 35, 0.12), 0px 0px 1px 0px rgba(25, 27, 35, 0.16);
109
+ --box-shadow-hover: 3px 3px 30px 0px rgba(25, 27, 35, 0.15);
110
+ --box-shadow-popper: 0px 1px 12px 0px rgba(25, 27, 35, 0.15);
111
+ --box-shadow-modal: 0px 3px 8px 0px rgba(25, 27, 35, 0.2);
112
+ --box-shadow-dnd: 0 0 1px rgba(25, 27, 35, 0.16), 0 12px 40px rgba(25, 27, 35, 0.16);
113
+
114
+ --fs-100: 12px;
115
+ --lh-100: 1.33;
116
+ --fs-200: 14px;
117
+ --lh-200: 1.42;
118
+ --fs-300: 16px;
119
+ --lh-300: 1.5;
120
+ --fs-400: 20px;
121
+ --lh-400: 1.2;
122
+ --fs-500: 24px;
123
+ --lh-500: 1.17;
124
+ --fs-600: 32px;
125
+ --lh-600: 1.25;
126
+ --fs-700: 36px;
127
+ --lh-700: 1.1;
128
+ --fs-800: 48px;
129
+ --lh-800: 1.17;
130
+
131
+ --disabled-opacity: 0.3;
132
+
133
+ --xs-screen: 320px;
134
+ --sm-screen: 768px;
135
+ --md-screen: 1200px;
136
+
137
+ /* DEPRECATED START
138
+ Deprecated variables should never be used in
139
+ components styles but preserved for backward
140
+ compatibility if they used in projects
141
+ like `<Badge bg="red">alpha</Badge>`
142
+ */
143
+ --denim-blue: #006dca;
144
+ --light-blue: #008ff8;
145
+ --neon-blue: #8ecdff;
146
+ --cyan: #2bb3ff;
147
+ --green: #009f81;
148
+ --dark-green: #007c65;
149
+ --yellow: #fdc23c;
150
+ --light-orange: #ff8c43;
151
+ --orange: #ff642d;
152
+ --dark-orange: #c33909;
153
+ --red: #ff4953;
154
+ --dark-red: #d1002f;
155
+ --violet: #ab6cfe;
156
+ --dark-violet: #8649e1;
157
+ --pink: #e14adf;
158
+ --asphalt: #6c6e79;
159
+ --wall: #8a8e9b;
160
+ --mist: #a9abb6;
161
+ --mist-light: #c4c7cf;
162
+ --stone: #a9abb6;
163
+ --stone-light: #c4c7cf;
164
+ --gray20: #191b23;
165
+ --gray30: #191b23;
166
+ --gray40: #484a54;
167
+ --gray60: #6c6e79;
168
+ --gray70: #a9abb6;
169
+ --gray80: #c4c7cf;
170
+ --gray94: #e0e1e9;
171
+ --gray96: #f4f5f9;
172
+ --mystic: #f4f5f9;
173
+ --mercury: #e0e1e9;
174
+
175
+ --blue50: #e9f7ff;
176
+ --blue100: #c4e5fe;
177
+ --blue400: #008ff8;
178
+ --blue600: #044792;
179
+ --green50: #dbfee8;
180
+ --green100: #9ef2c9;
181
+ --green200: #59ddaa;
182
+ --green300: #00c192;
183
+ --green600: #055345;
184
+ --red50: #fff0f7;
185
+ --red100: #ffd7df;
186
+ --red200: #ffaeb5;
187
+ --red300: #ff8786;
188
+ --red600: #8e0016;
189
+ --orange50: #fff3d9;
190
+ --orange100: #ffdca2;
191
+ --orange200: #ffb26e;
192
+ --yellow100: #fce081;
193
+
194
+ --iceberg-blue: #6fafd4;
195
+ --salad: #8bc835;
196
+ --granitic: #2f3439;
197
+ --gray10: #222222;
198
+ --sky: #e1f2ff;
199
+ --lily: #e6f9fd;
200
+ --marble: #f1f6f8;
201
+ --googleplus: #e14b3f;
202
+ --linkedin: #1a7ab2;
203
+
204
+ --font-size_-1: 11px;
205
+ --font-size_-2: 10px;
206
+ --font-size_0: 12px;
207
+ --font-size_1: 13px;
208
+ --font-size_11: 33px;
209
+ --font-size_12: 36px;
210
+ --font-size_15: 48px;
211
+ --font-size_2: 14px;
212
+ --font-size_3: 16px;
213
+ --font-size_5: 19px;
214
+ --font-size_6: 21px;
215
+ --font-size_8: 25px;
216
+ /* DEPRECATED END */
217
+ }
218
+
219
+ @custom-media --xs-media (width < 320px);
220
+ @custom-media --sm-media (width >= 320px) and (width < 768px);
221
+ @custom-media --md-media (width >= 768px) and (width < 1200px);