@lumx/core 2.0.3 → 2.1.0-alpha-css-test2
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/css/_retro-compat-v2.css +117 -0
- package/css/design-tokens.css +768 -92
- package/css/material.css +56 -57
- package/js/constants/design-tokens.js +3406 -414
- package/js/constants/design-tokens.min.js +1 -1
- package/js/constants/design-tokens.min.js.map +1 -1
- package/js/constants/design-tokens.ts +3386 -394
- package/lumx.css +1 -1
- package/lumx.min.css +1 -1
- package/package.json +2 -2
- package/scss/_design-tokens.scss +1670 -224
- package/scss/_retro-compat-v2.scss +95 -0
- package/scss/components/button/_index.scss +6 -42
- package/scss/components/button/_mixins.scss +144 -29
- package/scss/components/checkbox/_mixins.scss +9 -9
- package/scss/components/chip/_index.scss +2 -2
- package/scss/components/chip/_mixins.scss +2 -2
- package/scss/components/image-block/_index.scss +4 -5
- package/scss/components/input-helper/_mixins.scss +3 -3
- package/scss/components/input-label/_mixins.scss +3 -3
- package/scss/components/progress/_index.scss +2 -2
- package/scss/components/radio-button/_mixins.scss +12 -12
- package/scss/components/select/_index.scss +99 -10
- package/scss/components/select/_mixins.scss +6 -1
- package/scss/components/skeleton/_index.scss +2 -2
- package/scss/components/switch/_mixins.scss +15 -15
- package/scss/components/tabs/_index.scss +27 -55
- package/scss/components/tabs/_mixins.scss +66 -31
- package/scss/components/text-field/_index.scss +114 -9
- package/scss/components/text-field/_mixins.scss +42 -66
- package/scss/components/user-block/_index.scss +2 -9
- package/scss/core/base/_variables.scss +1 -0
- package/scss/core/state/_mixins.scss +11 -7
- package/scss/core/typography/_index.scss +9 -2
- package/scss/core/typography/_mixins.scss +13 -4
- package/scss/core/typography/_variables.scss +2 -1
- package/scss/lumx.scss +4 -0
package/css/material.css
CHANGED
|
@@ -1,61 +1,60 @@
|
|
|
1
1
|
:root {
|
|
2
2
|
--lumx-border-radius: 2px;
|
|
3
3
|
--lumx-typography-font-family: 'Roboto', sans-serif;
|
|
4
|
-
--lumx-
|
|
5
|
-
--lumx-button-
|
|
6
|
-
--lumx-
|
|
7
|
-
--lumx-
|
|
8
|
-
--lumx-
|
|
9
|
-
--lumx-
|
|
10
|
-
--lumx-
|
|
11
|
-
--lumx-
|
|
12
|
-
--lumx-
|
|
13
|
-
--lumx-
|
|
14
|
-
--lumx-
|
|
15
|
-
--lumx-
|
|
16
|
-
--lumx-input-
|
|
17
|
-
--lumx-input-
|
|
18
|
-
--lumx-input-
|
|
19
|
-
--lumx-input-
|
|
20
|
-
--lumx-
|
|
21
|
-
--lumx-
|
|
22
|
-
--lumx-
|
|
23
|
-
--lumx-
|
|
24
|
-
--lumx-
|
|
25
|
-
--lumx-
|
|
26
|
-
--lumx-text-field-
|
|
27
|
-
--lumx-text-field-
|
|
28
|
-
--lumx-text-field-
|
|
29
|
-
--lumx-text-field-
|
|
30
|
-
--lumx-text-field-
|
|
31
|
-
--lumx-text-field-
|
|
32
|
-
--lumx-text-field-
|
|
33
|
-
--lumx-
|
|
34
|
-
--lumx-
|
|
35
|
-
--lumx-
|
|
36
|
-
--lumx-
|
|
37
|
-
--lumx-
|
|
38
|
-
--lumx-
|
|
39
|
-
--lumx-
|
|
40
|
-
--lumx-
|
|
41
|
-
--lumx-
|
|
42
|
-
--lumx-
|
|
43
|
-
--lumx-
|
|
44
|
-
--lumx-
|
|
45
|
-
--lumx-
|
|
46
|
-
--lumx-
|
|
47
|
-
--lumx-
|
|
48
|
-
--lumx-
|
|
49
|
-
--lumx-
|
|
50
|
-
--lumx-
|
|
51
|
-
--lumx-
|
|
52
|
-
--lumx-
|
|
53
|
-
--lumx-text-field-
|
|
54
|
-
--lumx-text-field-
|
|
55
|
-
--lumx-
|
|
56
|
-
--lumx-
|
|
57
|
-
--lumx-
|
|
58
|
-
--lumx-
|
|
59
|
-
--lumx-
|
|
60
|
-
--lumx-typography-style-overline-font-weight: 500;
|
|
4
|
+
--lumx-typography-font-weight-bold: 500;
|
|
5
|
+
--lumx-typography-custom-button-size-s-font-size: 10px;
|
|
6
|
+
--lumx-text-field-input-min-height: 32px;
|
|
7
|
+
--lumx-text-field-input-padding-horizontal: 0;
|
|
8
|
+
--lumx-text-field-input-border-radius: 0;
|
|
9
|
+
--lumx-text-field-state-default-input-border-top-width: 0;
|
|
10
|
+
--lumx-text-field-state-default-input-border-right-width: 0;
|
|
11
|
+
--lumx-text-field-state-default-input-border-bottom-width: 1px;
|
|
12
|
+
--lumx-text-field-state-default-input-border-left-width: 0;
|
|
13
|
+
--lumx-text-field-state-default-theme-light-input-background-color: transparent;
|
|
14
|
+
--lumx-text-field-state-default-theme-light-input-border-color: rgba(0, 0, 0, 0.12);
|
|
15
|
+
--lumx-text-field-state-default-theme-dark-input-background-color: transparent;
|
|
16
|
+
--lumx-text-field-state-default-theme-dark-input-border-color: rgba(255, 255, 255, 0.2);
|
|
17
|
+
--lumx-text-field-state-hover-input-border-top-width: 0;
|
|
18
|
+
--lumx-text-field-state-hover-input-border-right-width: 0;
|
|
19
|
+
--lumx-text-field-state-hover-input-border-bottom-width: 1px;
|
|
20
|
+
--lumx-text-field-state-hover-input-border-left-width: 0;
|
|
21
|
+
--lumx-text-field-state-hover-theme-light-input-background-color: transparent;
|
|
22
|
+
--lumx-text-field-state-hover-theme-light-input-border-color: rgba(0, 0, 0, 0.12);
|
|
23
|
+
--lumx-text-field-state-hover-theme-dark-input-background-color: transparent;
|
|
24
|
+
--lumx-text-field-state-hover-theme-dark-input-border-color: rgba(255, 255, 255, 0.2);
|
|
25
|
+
--lumx-text-field-state-focus-input-border-top-width: 0;
|
|
26
|
+
--lumx-text-field-state-focus-input-border-right-width: 0;
|
|
27
|
+
--lumx-text-field-state-focus-input-border-bottom-width: 2px;
|
|
28
|
+
--lumx-text-field-state-focus-input-border-left-width: 0;
|
|
29
|
+
--lumx-text-field-state-focus-theme-light-input-background-color: transparent;
|
|
30
|
+
--lumx-text-field-state-focus-theme-light-input-border-color: var(--lumx-color-primary-N);
|
|
31
|
+
--lumx-text-field-state-focus-theme-dark-input-background-color: transparent;
|
|
32
|
+
--lumx-text-field-state-focus-theme-dark-input-border-color: #ffffff;
|
|
33
|
+
--lumx-material-button-text-transform: uppercase;
|
|
34
|
+
--lumx-material-button-variant-icon-border-radius: 50%;
|
|
35
|
+
--lumx-material-checkbox-wrapper-size: 24px;
|
|
36
|
+
--lumx-material-checkbox-control-size: 18px;
|
|
37
|
+
--lumx-material-chip-size-m-height: 32px;
|
|
38
|
+
--lumx-material-chip-size-m-border-radius: 16px;
|
|
39
|
+
--lumx-material-chip-size-m-padding-vertical: 12px;
|
|
40
|
+
--lumx-material-chip-size-s-height: 20px;
|
|
41
|
+
--lumx-material-chip-size-s-border-radius: 2px;
|
|
42
|
+
--lumx-material-chip-size-s-padding-vertical: 8px;
|
|
43
|
+
--lumx-material-input-label-font-size: 16px;
|
|
44
|
+
--lumx-material-input-label-line-height: 24px;
|
|
45
|
+
--lumx-material-input-helper-font-size: 14px;
|
|
46
|
+
--lumx-material-input-helper-line-height: 20px;
|
|
47
|
+
--lumx-material-progress-bounce: none;
|
|
48
|
+
--lumx-material-progress-rotate: block;
|
|
49
|
+
--lumx-material-radio-button-wrapper-size: 24px;
|
|
50
|
+
--lumx-material-radio-button-control-size: 20px;
|
|
51
|
+
--lumx-material-radio-button-indicator-size: 10px;
|
|
52
|
+
--lumx-material-switch-wrapper-height: 24px;
|
|
53
|
+
--lumx-material-text-field-padding-top: 20px;
|
|
54
|
+
--lumx-material-text-field-padding-bottom: 8px;
|
|
55
|
+
--lumx-material-text-field-header-wrapper-margin-bottom: 0;
|
|
56
|
+
--lumx-material-text-field-header-label-font-size: 12px;
|
|
57
|
+
--lumx-material-text-field-header-label-line-height: 14px;
|
|
58
|
+
--lumx-material-text-field-input-content-font-size: 16px;
|
|
59
|
+
--lumx-material-text-field-input-content-line-height: 24px;
|
|
61
60
|
}
|