@tetacom/ng-components 1.0.151 → 1.1.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/assets/color-icons.svg +521 -49
- package/assets/file-icons.svg +1 -0
- package/assets/icons.svg +138 -205
- package/component/accordion/accordion-item/accordion-item.component.d.ts +1 -4
- package/component/button/button/button.component.d.ts +1 -4
- package/component/checkbox/checkbox/checkbox.component.d.ts +1 -2
- package/component/date-picker/date-picker/date-picker.component.d.ts +68 -38
- package/component/date-picker/date-picker.module.d.ts +16 -19
- package/component/date-picker/day-select/day-select.component.d.ts +51 -0
- package/component/date-picker/model/date-picker-mode.enum.d.ts +5 -0
- package/component/date-picker/month-picker/month-picker.component.d.ts +50 -16
- package/component/date-picker/month-select/month-select.component.d.ts +40 -0
- package/component/date-picker/public-api.d.ts +4 -5
- package/component/date-picker/service/picker-touch.service.d.ts +12 -0
- package/component/date-picker/time-part-control/time-part-control.component.d.ts +26 -0
- package/component/date-picker/util/date-picker-util.d.ts +15 -0
- package/component/date-picker/year-select/year-select.component.d.ts +45 -0
- package/component/dropdown/dropdown-base.d.ts +1 -3
- package/component/filter/filter.module.d.ts +2 -1
- package/component/icon/icon-file/icon-file.component.d.ts +3 -9
- package/component/icon/icon.module.d.ts +5 -4
- package/component/icon/public-api.d.ts +0 -1
- package/component/input/input/input.component.d.ts +1 -3
- package/component/message/model/message.d.ts +0 -3
- package/component/public-api.d.ts +0 -2
- package/component/select/select/select.component.d.ts +1 -4
- package/component/select/select.module.d.ts +2 -1
- package/component/switch/switch/switch.component.d.ts +1 -4
- package/component/table/table-body/table-body.component.d.ts +1 -0
- package/component/table/table.module.d.ts +2 -1
- package/component/tree/tree.module.d.ts +2 -1
- package/directive/hint/hint.directive.d.ts +1 -3
- package/directive/only-number/only-number.directive.d.ts +2 -1
- package/directive/public-api.d.ts +1 -0
- package/directive/scrollable/public-api.d.ts +3 -0
- package/directive/scrollable/scrollable/scrollable.component.d.ts +32 -0
- package/directive/scrollable/scrollable.directive.d.ts +6 -0
- package/directive/scrollable/scrollable.module.d.ts +10 -0
- package/esm2020/component/accordion/accordion/accordion.component.mjs +2 -3
- package/esm2020/component/accordion/accordion-head/accordion-head.component.mjs +2 -3
- package/esm2020/component/accordion/accordion-item/accordion-item.component.mjs +3 -13
- package/esm2020/component/button/button/button.component.mjs +3 -18
- package/esm2020/component/checkbox/checkbox/checkbox.component.mjs +3 -6
- package/esm2020/component/date-picker/date-picker/date-picker.component.mjs +235 -141
- package/esm2020/component/date-picker/date-picker.module.mjs +45 -41
- package/esm2020/component/date-picker/day-select/day-select.component.mjs +184 -0
- package/esm2020/component/date-picker/model/date-picker-mode.enum.mjs +7 -0
- package/esm2020/component/date-picker/month-picker/month-picker.component.mjs +237 -33
- package/esm2020/component/date-picker/month-select/month-select.component.mjs +148 -0
- package/esm2020/component/date-picker/public-api.mjs +5 -6
- package/esm2020/component/date-picker/service/picker-touch.service.mjs +34 -0
- package/esm2020/component/date-picker/time-part-control/time-part-control.component.mjs +73 -0
- package/esm2020/component/date-picker/util/date-picker-util.mjs +142 -0
- package/esm2020/component/date-picker/year-select/year-select.component.mjs +189 -0
- package/esm2020/component/dropdown/dropdown/dropdown.component.mjs +2 -3
- package/esm2020/component/dropdown/dropdown-base.mjs +2 -6
- package/esm2020/component/dropdown/dropdown.directive.mjs +1 -1
- package/esm2020/component/expand-card/expand-card/expand-card.component.mjs +1 -1
- package/esm2020/component/expand-card/expand-item/expand-item.component.mjs +1 -1
- package/esm2020/component/expand-panel/expand-panel/expand-panel.component.mjs +1 -1
- package/esm2020/component/file-upload/file-upload-area/file-upload-area.component.mjs +1 -1
- package/esm2020/component/filter/date-filter/date-filter.component.mjs +1 -1
- package/esm2020/component/filter/filter.module.mjs +7 -3
- package/esm2020/component/filter/list-filter/list-filter.component.mjs +4 -3
- package/esm2020/component/filter/numeric-filter/numeric-filter.component.mjs +1 -1
- package/esm2020/component/filter/string-filter/string-filter.component.mjs +1 -1
- package/esm2020/component/icon/icon-file/icon-file.component.mjs +6 -20
- package/esm2020/component/icon/icon.module.mjs +6 -1
- package/esm2020/component/icon/public-api.mjs +1 -2
- package/esm2020/component/input/input/input.component.mjs +3 -6
- package/esm2020/component/input/input.module.mjs +1 -1
- package/esm2020/component/input/text-field/text-field.component.mjs +3 -3
- package/esm2020/component/message/message/message.component.mjs +3 -4
- package/esm2020/component/message/message-host/message-host.component.mjs +1 -1
- package/esm2020/component/message/model/message.mjs +1 -2
- package/esm2020/component/modal/dialog/dialog.component.mjs +1 -1
- package/esm2020/component/property-grid/property-grid/property-grid-item/property-grid-item.component.mjs +2 -2
- package/esm2020/component/public-api.mjs +1 -4
- package/esm2020/component/select/select/select.component.mjs +6 -9
- package/esm2020/component/select/select.module.mjs +7 -3
- package/esm2020/component/switch/switch/switch.component.mjs +7 -19
- package/esm2020/component/table/default/boolean-cell/boolean-cell.component.mjs +1 -1
- package/esm2020/component/table/default/date-cell/date-cell.component.mjs +1 -1
- package/esm2020/component/table/default/date-time-cell/date-time-cell.component.mjs +1 -1
- package/esm2020/component/table/default/default-head-cell/default-head-cell.component.mjs +1 -1
- package/esm2020/component/table/default/list-cell/list-cell.component.mjs +1 -1
- package/esm2020/component/table/default/string-cell/string-cell.component.mjs +1 -1
- package/esm2020/component/table/selection-cell/selection-cell.component.mjs +1 -1
- package/esm2020/component/table/selection-head-cell/selection-head-cell.component.mjs +1 -1
- package/esm2020/component/table/table-body/table-body.component.mjs +11 -6
- package/esm2020/component/table/table-head/filter-dropdown-tab/filter-dropdown-tab.component.mjs +1 -1
- package/esm2020/component/table/table-head/visibility-dropdown-tab/visibility-dropdown-tab.component.mjs +4 -3
- package/esm2020/component/table/table.module.mjs +7 -3
- package/esm2020/component/theme-switch/theme-switch/theme-switch.component.mjs +1 -1
- package/esm2020/component/tree/tree/tree.component.mjs +6 -4
- package/esm2020/component/tree/tree.module.mjs +5 -4
- package/esm2020/directive/hint/hint.directive.mjs +3 -6
- package/esm2020/directive/only-number/only-number.directive.mjs +12 -2
- package/esm2020/directive/public-api.mjs +2 -1
- package/esm2020/directive/scrollable/public-api.mjs +4 -0
- package/esm2020/directive/scrollable/scrollable/scrollable.component.mjs +96 -0
- package/esm2020/directive/scrollable/scrollable.directive.mjs +19 -0
- package/esm2020/directive/scrollable/scrollable.module.mjs +33 -0
- package/esm2020/locale/en.mjs +1 -3
- package/esm2020/locale/ru.mjs +1 -3
- package/esm2020/locale/teta-localisation.mjs +1 -1
- package/esm2020/observable/animation-frame.mjs +30 -0
- package/esm2020/observable/public-api.mjs +2 -1
- package/esm2020/pipe/prepend-zero/prepend-zero.module.mjs +18 -0
- package/esm2020/pipe/prepend-zero/prepend-zero.pipe.mjs +21 -0
- package/fesm2015/tetacom-ng-components.mjs +5483 -5181
- package/fesm2015/tetacom-ng-components.mjs.map +1 -1
- package/fesm2020/tetacom-ng-components.mjs +3333 -3025
- package/fesm2020/tetacom-ng-components.mjs.map +1 -1
- package/locale/teta-localisation.d.ts +0 -2
- package/observable/animation-frame.d.ts +4 -0
- package/observable/public-api.d.ts +1 -0
- package/package.json +2 -3
- package/pipe/prepend-zero/prepend-zero.module.d.ts +8 -0
- package/pipe/prepend-zero/prepend-zero.pipe.d.ts +7 -0
- package/style/accordion.scss +6 -28
- package/style/assembly-library.scss +1 -4
- package/style/assembly-presets.scss +1 -0
- package/style/button.scss +13 -16
- package/style/checkbox.scss +13 -26
- package/style/chips.scss +10 -10
- package/style/color.scss +36 -1
- package/style/datepicker.scss +24 -139
- package/style/drag.scss +1 -1
- package/style/dropdown.scss +4 -6
- package/style/hint.scss +5 -5
- package/style/icon.scss +1 -2
- package/style/input.scss +23 -32
- package/style/layout.scss +2 -6
- package/style/library.scss +17 -0
- package/style/list.scss +8 -11
- package/style/loader.scss +2 -2
- package/style/message.scss +7 -15
- package/style/modal.scss +2 -3
- package/style/navigation.scss +1 -4
- package/style/presets/color-presets.scss +160 -8
- package/style/presets/font-presets.scss +25 -26
- package/style/presets/shadow-presets.scss +16 -0
- package/style/progress.scss +3 -3
- package/style/radio.scss +7 -21
- package/style/resize-panel.scss +2 -2
- package/style/scroll.scss +21 -17
- package/style/select.scss +21 -26
- package/style/shadow.scss +20 -0
- package/style/sidebar.scss +1 -1
- package/style/switch.scss +10 -15
- package/style/table.scss +15 -17
- package/style/tabs.scss +11 -11
- package/style/toggle.scss +18 -20
- package/style/tokens/basedark.tokens.css +77 -0
- package/style/tokens/baselight.tokens.css +61 -0
- package/style/tokens/global.tokens.css +235 -0
- package/style/tokens/utility.tokens.css +1119 -0
- package/style/toolbar.scss +1 -1
- package/style/tooltip.scss +6 -8
- package/style/tree.scss +4 -4
- package/style/util/button-util.scss +58 -0
- package/common/model/view-type.model.d.ts +0 -1
- package/component/avatar/avatar/avatar.component.d.ts +0 -17
- package/component/avatar/avatar.module.d.ts +0 -9
- package/component/avatar/model/avatar-color.enum.d.ts +0 -20
- package/component/avatar/public-api.d.ts +0 -2
- package/component/date-picker/base-calendar.d.ts +0 -49
- package/component/date-picker/base-picker.d.ts +0 -60
- package/component/date-picker/date-picker/date-calendar/date-calendar.component.d.ts +0 -20
- package/component/date-picker/date-range/date-range.component.d.ts +0 -46
- package/component/date-picker/date-range/range-calendar/range-calendar.component.d.ts +0 -39
- package/component/date-picker/day-picker/day-item/day-item.component.d.ts +0 -9
- package/component/date-picker/day-picker/day-picker.component.d.ts +0 -30
- package/component/date-picker/model/from-to.model.d.ts +0 -4
- package/component/date-picker/model/min-max-date.model.d.ts +0 -4
- package/component/date-picker/year-picker/scroll-to-selected-year.directive.d.ts +0 -11
- package/component/date-picker/year-picker/year-picker.component.d.ts +0 -24
- package/component/divider/divider/divider.component.d.ts +0 -10
- package/component/divider/divider.module.d.ts +0 -8
- package/component/divider/public-api.d.ts +0 -2
- package/component/icon/icon-file/icon-file.module.d.ts +0 -9
- package/esm2020/common/model/view-type.model.mjs +0 -2
- package/esm2020/component/avatar/avatar/avatar.component.mjs +0 -57
- package/esm2020/component/avatar/avatar.module.mjs +0 -28
- package/esm2020/component/avatar/model/avatar-color.enum.mjs +0 -22
- package/esm2020/component/avatar/public-api.mjs +0 -3
- package/esm2020/component/date-picker/base-calendar.mjs +0 -99
- package/esm2020/component/date-picker/base-picker.mjs +0 -102
- package/esm2020/component/date-picker/date-picker/date-calendar/date-calendar.component.mjs +0 -49
- package/esm2020/component/date-picker/date-range/date-range.component.mjs +0 -211
- package/esm2020/component/date-picker/date-range/range-calendar/range-calendar.component.mjs +0 -108
- package/esm2020/component/date-picker/day-picker/day-item/day-item.component.mjs +0 -15
- package/esm2020/component/date-picker/day-picker/day-picker.component.mjs +0 -113
- package/esm2020/component/date-picker/model/from-to.model.mjs +0 -2
- package/esm2020/component/date-picker/model/min-max-date.model.mjs +0 -2
- package/esm2020/component/date-picker/year-picker/scroll-to-selected-year.directive.mjs +0 -26
- package/esm2020/component/date-picker/year-picker/year-picker.component.mjs +0 -48
- package/esm2020/component/divider/divider/divider.component.mjs +0 -18
- package/esm2020/component/divider/divider.module.mjs +0 -20
- package/esm2020/component/divider/public-api.mjs +0 -3
- package/esm2020/component/icon/icon-file/icon-file.module.mjs +0 -28
- package/style/badge.scss +0 -28
- package/style/bottombar.scss +0 -5
- package/style/divider.scss +0 -15
- package/style/presets/view-types.scss +0 -15
- package/style/tag.scss +0 -37
- package/style/util/scroll-util.scss +0 -4
package/style/tabs.scss
CHANGED
|
@@ -14,33 +14,33 @@
|
|
|
14
14
|
&-item {
|
|
15
15
|
display: flex;
|
|
16
16
|
align-items: center;
|
|
17
|
-
padding: 0
|
|
17
|
+
padding: 0 20px;
|
|
18
18
|
white-space: nowrap;
|
|
19
|
-
@include getFont($fonts, '
|
|
20
|
-
color:
|
|
21
|
-
fill:
|
|
19
|
+
@include getFont($fonts, 'body-3');
|
|
20
|
+
color: getColorVar('text', '40');
|
|
21
|
+
fill: getColorVar('text', '40');
|
|
22
22
|
|
|
23
23
|
&_disabled, &[disabled] {
|
|
24
|
-
color:
|
|
25
|
-
fill:
|
|
24
|
+
color: getColorVar('text', '20');
|
|
25
|
+
fill: getColorVar('text', '20');
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
&:hover:not([disabled]):not(&_disabled) {
|
|
29
29
|
cursor: pointer;
|
|
30
|
-
color:
|
|
31
|
-
fill:
|
|
30
|
+
color: getColorVar('text', '70');
|
|
31
|
+
fill: getColorVar('text', '70');
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
&_active {
|
|
35
35
|
position: relative;
|
|
36
|
-
color:
|
|
37
|
-
fill:
|
|
36
|
+
color: getColorVar('text', '90');
|
|
37
|
+
fill: getColorVar('text', '70');
|
|
38
38
|
|
|
39
39
|
&::after {
|
|
40
40
|
content: '';
|
|
41
41
|
position: absolute;
|
|
42
42
|
height: 2px;
|
|
43
|
-
background-color:
|
|
43
|
+
background-color: getColorVar('primary', '50');
|
|
44
44
|
border: solid 0 transparent;
|
|
45
45
|
left: 0;
|
|
46
46
|
right: 0;
|
package/style/toggle.scss
CHANGED
|
@@ -8,30 +8,28 @@
|
|
|
8
8
|
flex-grow: 1;
|
|
9
9
|
|
|
10
10
|
&_disabled &-button {
|
|
11
|
-
background:
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
&:focus-within &-button {
|
|
15
|
-
box-shadow: 0 0 0 4px var(--color-primary-5);
|
|
11
|
+
background: getColorVar('text', '5') !important;
|
|
16
12
|
}
|
|
17
13
|
|
|
18
14
|
&-button {
|
|
19
15
|
position: relative;
|
|
20
|
-
width:
|
|
16
|
+
width: 24px;
|
|
21
17
|
height: 16px;
|
|
22
|
-
border:
|
|
18
|
+
border: none;
|
|
23
19
|
border-radius: 10px;
|
|
24
|
-
background:
|
|
20
|
+
background: getColorVar('text', 5);
|
|
21
|
+
box-shadow: inset 0 0 0 1px getColorVar('text', 20);
|
|
25
22
|
|
|
26
23
|
&-circle {
|
|
27
24
|
position: absolute;
|
|
28
|
-
top:
|
|
29
|
-
left:
|
|
30
|
-
width:
|
|
31
|
-
height:
|
|
32
|
-
border:
|
|
33
|
-
border-radius:
|
|
34
|
-
background:
|
|
25
|
+
top: 4px;
|
|
26
|
+
left: 4px;
|
|
27
|
+
width: 8px;
|
|
28
|
+
height: 8px;
|
|
29
|
+
border: none;
|
|
30
|
+
border-radius: 4px;
|
|
31
|
+
background: getColorVar('white', 50);
|
|
32
|
+
box-shadow: 0 0 0 1px getColorVar('text', 20);
|
|
35
33
|
}
|
|
36
34
|
|
|
37
35
|
$button: &;
|
|
@@ -41,16 +39,16 @@
|
|
|
41
39
|
box-shadow: none;
|
|
42
40
|
#{$button}-circle {
|
|
43
41
|
left: unset;
|
|
44
|
-
right:
|
|
42
|
+
right: 4px;
|
|
45
43
|
box-shadow: none;
|
|
46
44
|
}
|
|
47
45
|
|
|
48
|
-
@each $paletteName
|
|
46
|
+
@each $paletteName in $palettes {
|
|
49
47
|
&#{$button}-#{$paletteName} {
|
|
50
48
|
background: getColorVar($paletteName, '50');
|
|
51
49
|
|
|
52
|
-
&:hover:not(.toggle_disabled)
|
|
53
|
-
background: getColorVar($paletteName, '
|
|
50
|
+
&:hover:not(.toggle_disabled) {
|
|
51
|
+
background: getColorVar($paletteName, '40');
|
|
54
52
|
}
|
|
55
53
|
|
|
56
54
|
&:active {
|
|
@@ -62,7 +60,7 @@
|
|
|
62
60
|
}
|
|
63
61
|
|
|
64
62
|
&:not(&_disabled):hover &-button:not(.toggle-button-on) {
|
|
65
|
-
background:
|
|
63
|
+
background: getColorVar('text', 10);
|
|
66
64
|
}
|
|
67
65
|
|
|
68
66
|
&:hover:not(&_disabled) {
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
html[data-theme='basedark'] {
|
|
2
|
+
--color-global-link: #79c6ff;
|
|
3
|
+
--color-global-white: #ffffff;
|
|
4
|
+
--color-global-bgcard: #1e1e1e;
|
|
5
|
+
--color-global-bgmain: #161616;
|
|
6
|
+
--color-text-5: rgba(255, 255, 255, 0.06);
|
|
7
|
+
--color-text-10: rgba(255, 255, 255, 0.1);
|
|
8
|
+
--color-text-20: rgba(255, 255, 255, 0.24);
|
|
9
|
+
--color-text-30: rgba(255, 255, 255, 0.32);
|
|
10
|
+
--color-text-40: rgba(255, 255, 255, 0.48);
|
|
11
|
+
--color-text-50: rgba(255, 255, 255, 0.56);
|
|
12
|
+
--color-text-60: rgba(255, 255, 255, 0.64);
|
|
13
|
+
--color-text-70: rgba(255, 255, 255, 0.72);
|
|
14
|
+
--color-text-80: rgba(255, 255, 255, 0.8);
|
|
15
|
+
--color-text-90: rgba(255, 255, 255, 0.87);
|
|
16
|
+
--color-primary-5: #252e54;
|
|
17
|
+
--color-primary-10: #2b3a6e;
|
|
18
|
+
--color-primary-20: #344d8d;
|
|
19
|
+
--color-primary-30: #3d60ad;
|
|
20
|
+
--color-primary-40: #4476ce;
|
|
21
|
+
--color-primary-50: #4b8def;
|
|
22
|
+
--color-primary-60: #62a0f5;
|
|
23
|
+
--color-primary-70: #7ab3fa;
|
|
24
|
+
--color-primary-80: #94c5fd;
|
|
25
|
+
--color-primary-90: #afd6ff;
|
|
26
|
+
--color-green-5: #232f26;
|
|
27
|
+
--color-green-10: #2f4533;
|
|
28
|
+
--color-green-20: #3a5d3d;
|
|
29
|
+
--color-green-30: #437645;
|
|
30
|
+
--color-green-40: #4c914a;
|
|
31
|
+
--color-green-50: #59ae50;
|
|
32
|
+
--color-green-60: #68c068;
|
|
33
|
+
--color-green-70: #81d088;
|
|
34
|
+
--color-green-80: #9ddea8;
|
|
35
|
+
--color-green-90: #c4f5d1;
|
|
36
|
+
--color-red-5: #3a282d;
|
|
37
|
+
--color-red-10: #56353b;
|
|
38
|
+
--color-red-20: #753f45;
|
|
39
|
+
--color-red-30: #964748;
|
|
40
|
+
--color-red-40: #ba554d;
|
|
41
|
+
--color-red-50: #e06850;
|
|
42
|
+
--color-red-60: #ec8065;
|
|
43
|
+
--color-red-70: #f6997d;
|
|
44
|
+
--color-red-80: #fcb398;
|
|
45
|
+
--color-red-90: #ffccb6;
|
|
46
|
+
--color-yellow-5: #402f1d;
|
|
47
|
+
--color-yellow-10: #5b401f;
|
|
48
|
+
--color-yellow-20: #7a541d;
|
|
49
|
+
--color-yellow-30: #9d6c17;
|
|
50
|
+
--color-yellow-40: #c4890d;
|
|
51
|
+
--color-yellow-50: #eeab00;
|
|
52
|
+
--color-yellow-60: #fdc730;
|
|
53
|
+
--color-yellow-70: #ffdf60;
|
|
54
|
+
--color-yellow-80: #fff18f;
|
|
55
|
+
--color-yellow-90: #fffcbf;
|
|
56
|
+
--color-chart-coffee: #cdbcbc;
|
|
57
|
+
--color-chart-light-purple: #cfaeff;
|
|
58
|
+
--color-chart-mandarin: #ffa496;
|
|
59
|
+
--color-chart-purple: #816af8;
|
|
60
|
+
--color-chart-green: #59ae50;
|
|
61
|
+
--color-chart-blue: #286cfd;
|
|
62
|
+
--color-chart-peach: #ffd297;
|
|
63
|
+
--color-chart-lemon: #ffe701;
|
|
64
|
+
--color-chart-light-blue: #83cfff;
|
|
65
|
+
--color-chart-turquoise: #2bd8c5;
|
|
66
|
+
--color-chart-cadet-blue: #54adad;
|
|
67
|
+
--color-chart-red: #e55759;
|
|
68
|
+
--color-chart-acid-orange: #f67a1a;
|
|
69
|
+
--color-chart-mustard: #d8b655;
|
|
70
|
+
--color-chart-orange: #f6b520;
|
|
71
|
+
--color-chart-light-green: #46d39a;
|
|
72
|
+
--shadow-1: 0px 1px 0px 0px #0b0b0cff;
|
|
73
|
+
--shadow-2: 0px 14px 18px 0px #0000004d;
|
|
74
|
+
--shadow-3: 0px 8px 16px 0px #00000066;
|
|
75
|
+
--shadow-4: 0px 12px 24px 0px #00000066;
|
|
76
|
+
--shadow-5: 0px 16px 32px 0px #00000066;
|
|
77
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
html[data-theme='baselight'] {
|
|
2
|
+
--color-global-link: #005ab6;
|
|
3
|
+
--color-global-white: #ffffff;
|
|
4
|
+
--color-global-bgcard: #ffffff;
|
|
5
|
+
--color-global-bgmain: #f4f5f7;
|
|
6
|
+
--color-text-5: rgba(0, 0, 0, 0.04);
|
|
7
|
+
--color-text-10: rgba(0, 0, 0, 0.1);
|
|
8
|
+
--color-text-20: rgba(0, 0, 0, 0.16);
|
|
9
|
+
--color-text-30: rgba(0, 0, 0, 0.28);
|
|
10
|
+
--color-text-40: rgba(0, 0, 0, 0.44);
|
|
11
|
+
--color-text-50: rgba(0, 0, 0, 0.56);
|
|
12
|
+
--color-text-60: rgba(0, 0, 0, 0.64);
|
|
13
|
+
--color-text-70: rgba(0, 0, 0, 0.72);
|
|
14
|
+
--color-text-80: rgba(0, 0, 0, 0.8);
|
|
15
|
+
--color-text-90: rgba(0, 0, 0, 0.87);
|
|
16
|
+
--color-primary-5: #d9e8ff;
|
|
17
|
+
--color-primary-10: #adcfff;
|
|
18
|
+
--color-primary-20: #82b7ff;
|
|
19
|
+
--color-primary-30: #579fff;
|
|
20
|
+
--color-primary-40: #3789f4;
|
|
21
|
+
--color-primary-50: #2173df;
|
|
22
|
+
--color-primary-60: #2569d3;
|
|
23
|
+
--color-primary-70: #285fc8;
|
|
24
|
+
--color-primary-80: #2b57bc;
|
|
25
|
+
--color-primary-90: #2346a8;
|
|
26
|
+
--color-green-5: #e6f4f0;
|
|
27
|
+
--color-green-10: #bbe0d3;
|
|
28
|
+
--color-green-20: #90cbb5;
|
|
29
|
+
--color-green-30: #66b596;
|
|
30
|
+
--color-green-40: #3c9e76;
|
|
31
|
+
--color-green-50: #148654;
|
|
32
|
+
--color-green-60: #107744;
|
|
33
|
+
--color-green-70: #0c6836;
|
|
34
|
+
--color-green-80: #095828;
|
|
35
|
+
--color-green-90: #06471c;
|
|
36
|
+
--color-red-5: #feebe8;
|
|
37
|
+
--color-red-10: #fac6c0;
|
|
38
|
+
--color-red-20: #f5a099;
|
|
39
|
+
--color-red-30: #ee7a73;
|
|
40
|
+
--color-red-40: #e7534f;
|
|
41
|
+
--color-red-50: #de2c2c;
|
|
42
|
+
--color-red-60: #c5242d;
|
|
43
|
+
--color-red-70: #ab1c2c;
|
|
44
|
+
--color-red-80: #91162a;
|
|
45
|
+
--color-red-90: #751026;
|
|
46
|
+
--color-yellow-5: #fff0cc;
|
|
47
|
+
--color-yellow-10: #ffe1a3;
|
|
48
|
+
--color-yellow-20: #ffcf7a;
|
|
49
|
+
--color-yellow-30: #fdbb52;
|
|
50
|
+
--color-yellow-40: #f9a429;
|
|
51
|
+
--color-yellow-50: #f38b01;
|
|
52
|
+
--color-yellow-60: #d86e00;
|
|
53
|
+
--color-yellow-70: #bd5400;
|
|
54
|
+
--color-yellow-80: #9f3d00;
|
|
55
|
+
--color-yellow-90: #802900;
|
|
56
|
+
--shadow-1: 0px 4px 4px 0px #0000000f;
|
|
57
|
+
--shadow-2: 0px 14px 18px 0px #00000014;
|
|
58
|
+
--shadow-3: 0px 16px 22px 0px #0000001a;
|
|
59
|
+
--shadow-4: 0px 16px 24px 0px #27272729;
|
|
60
|
+
--shadow-5: 0px 20px 32px 0px #27272733;
|
|
61
|
+
}
|
|
@@ -0,0 +1,235 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--font-h1-font-size: 92;
|
|
3
|
+
--font-h1-text-decoration: none;
|
|
4
|
+
--font-h1-font-family: Inter;
|
|
5
|
+
--font-h1-font-weight: 600;
|
|
6
|
+
--font-h1-font-style: normal;
|
|
7
|
+
--font-h1-font-stretch: normal;
|
|
8
|
+
--font-h1-letter-spacing: 0.15;
|
|
9
|
+
--font-h1-line-height: 110.4;
|
|
10
|
+
--font-h1-paragraph-indent: 0;
|
|
11
|
+
--font-h1-paragraph-spacing: 0;
|
|
12
|
+
--font-h1-text-case: none;
|
|
13
|
+
--font-h2-font-size: 60;
|
|
14
|
+
--font-h2-text-decoration: none;
|
|
15
|
+
--font-h2-font-family: Inter;
|
|
16
|
+
--font-h2-font-weight: 600;
|
|
17
|
+
--font-h2-font-style: normal;
|
|
18
|
+
--font-h2-font-stretch: normal;
|
|
19
|
+
--font-h2-letter-spacing: 0.15;
|
|
20
|
+
--font-h2-line-height: 72;
|
|
21
|
+
--font-h2-paragraph-indent: 0;
|
|
22
|
+
--font-h2-paragraph-spacing: 0;
|
|
23
|
+
--font-h2-text-case: none;
|
|
24
|
+
--font-h3-font-size: 48;
|
|
25
|
+
--font-h3-text-decoration: none;
|
|
26
|
+
--font-h3-font-family: Inter;
|
|
27
|
+
--font-h3-font-weight: 600;
|
|
28
|
+
--font-h3-font-style: normal;
|
|
29
|
+
--font-h3-font-stretch: normal;
|
|
30
|
+
--font-h3-letter-spacing: 0.15;
|
|
31
|
+
--font-h3-line-height: 57.6;
|
|
32
|
+
--font-h3-paragraph-indent: 0;
|
|
33
|
+
--font-h3-paragraph-spacing: 0;
|
|
34
|
+
--font-h3-text-case: none;
|
|
35
|
+
--font-h4-font-size: 35;
|
|
36
|
+
--font-h4-text-decoration: none;
|
|
37
|
+
--font-h4-font-family: Inter;
|
|
38
|
+
--font-h4-font-weight: 600;
|
|
39
|
+
--font-h4-font-style: normal;
|
|
40
|
+
--font-h4-font-stretch: normal;
|
|
41
|
+
--font-h4-letter-spacing: 0.15;
|
|
42
|
+
--font-h4-line-height: 44;
|
|
43
|
+
--font-h4-paragraph-indent: 0;
|
|
44
|
+
--font-h4-paragraph-spacing: 0;
|
|
45
|
+
--font-h4-text-case: none;
|
|
46
|
+
--font-h5-font-size: 28;
|
|
47
|
+
--font-h5-text-decoration: none;
|
|
48
|
+
--font-h5-font-family: Inter;
|
|
49
|
+
--font-h5-font-weight: 500;
|
|
50
|
+
--font-h5-font-style: normal;
|
|
51
|
+
--font-h5-font-stretch: normal;
|
|
52
|
+
--font-h5-letter-spacing: 0.15;
|
|
53
|
+
--font-h5-line-height: 33.6;
|
|
54
|
+
--font-h5-paragraph-indent: 0;
|
|
55
|
+
--font-h5-paragraph-spacing: 0;
|
|
56
|
+
--font-h5-text-case: none;
|
|
57
|
+
--font-h6-font-size: 20;
|
|
58
|
+
--font-h6-text-decoration: none;
|
|
59
|
+
--font-h6-font-family: Inter;
|
|
60
|
+
--font-h6-font-weight: 500;
|
|
61
|
+
--font-h6-font-style: normal;
|
|
62
|
+
--font-h6-font-stretch: normal;
|
|
63
|
+
--font-h6-letter-spacing: 0.15;
|
|
64
|
+
--font-h6-line-height: 28;
|
|
65
|
+
--font-h6-paragraph-indent: 0;
|
|
66
|
+
--font-h6-paragraph-spacing: 0;
|
|
67
|
+
--font-h6-text-case: none;
|
|
68
|
+
--font-title1-font-size: 16;
|
|
69
|
+
--font-title1-text-decoration: none;
|
|
70
|
+
--font-title1-font-family: Inter;
|
|
71
|
+
--font-title1-font-weight: 500;
|
|
72
|
+
--font-title1-font-style: normal;
|
|
73
|
+
--font-title1-font-stretch: normal;
|
|
74
|
+
--font-title1-letter-spacing: 0.024;
|
|
75
|
+
--font-title1-line-height: 24;
|
|
76
|
+
--font-title1-paragraph-indent: 0;
|
|
77
|
+
--font-title1-paragraph-spacing: 0;
|
|
78
|
+
--font-title1-text-case: none;
|
|
79
|
+
--font-title2-font-size: 14;
|
|
80
|
+
--font-title2-text-decoration: none;
|
|
81
|
+
--font-title2-font-family: Inter;
|
|
82
|
+
--font-title2-font-weight: 500;
|
|
83
|
+
--font-title2-font-style: normal;
|
|
84
|
+
--font-title2-font-stretch: normal;
|
|
85
|
+
--font-title2-letter-spacing: 0;
|
|
86
|
+
--font-title2-line-height: 20;
|
|
87
|
+
--font-title2-paragraph-indent: 0;
|
|
88
|
+
--font-title2-paragraph-spacing: 0;
|
|
89
|
+
--font-title2-text-case: none;
|
|
90
|
+
--font-title3-font-size: 12;
|
|
91
|
+
--font-title3-text-decoration: none;
|
|
92
|
+
--font-title3-font-family: Inter;
|
|
93
|
+
--font-title3-font-weight: 500;
|
|
94
|
+
--font-title3-font-style: normal;
|
|
95
|
+
--font-title3-font-stretch: normal;
|
|
96
|
+
--font-title3-letter-spacing: 0;
|
|
97
|
+
--font-title3-line-height: 16;
|
|
98
|
+
--font-title3-paragraph-indent: 0;
|
|
99
|
+
--font-title3-paragraph-spacing: 0;
|
|
100
|
+
--font-title3-text-case: none;
|
|
101
|
+
--font-body1-font-size: 16;
|
|
102
|
+
--font-body1-text-decoration: none;
|
|
103
|
+
--font-body1-font-family: Inter;
|
|
104
|
+
--font-body1-font-weight: 400;
|
|
105
|
+
--font-body1-font-style: normal;
|
|
106
|
+
--font-body1-font-stretch: normal;
|
|
107
|
+
--font-body1-letter-spacing: 0;
|
|
108
|
+
--font-body1-line-height: 24;
|
|
109
|
+
--font-body1-paragraph-indent: 0;
|
|
110
|
+
--font-body1-paragraph-spacing: 10;
|
|
111
|
+
--font-body1-text-case: none;
|
|
112
|
+
--font-body2-font-size: 14;
|
|
113
|
+
--font-body2-text-decoration: none;
|
|
114
|
+
--font-body2-font-family: Inter;
|
|
115
|
+
--font-body2-font-weight: 400;
|
|
116
|
+
--font-body2-font-style: normal;
|
|
117
|
+
--font-body2-font-stretch: normal;
|
|
118
|
+
--font-body2-letter-spacing: 0;
|
|
119
|
+
--font-body2-line-height: 20;
|
|
120
|
+
--font-body2-paragraph-indent: 0;
|
|
121
|
+
--font-body2-paragraph-spacing: 8;
|
|
122
|
+
--font-body2-text-case: none;
|
|
123
|
+
--font-body3-font-size: 12;
|
|
124
|
+
--font-body3-text-decoration: none;
|
|
125
|
+
--font-body3-font-family: Inter;
|
|
126
|
+
--font-body3-font-weight: 400;
|
|
127
|
+
--font-body3-font-style: normal;
|
|
128
|
+
--font-body3-font-stretch: normal;
|
|
129
|
+
--font-body3-letter-spacing: 0;
|
|
130
|
+
--font-body3-line-height: 16;
|
|
131
|
+
--font-body3-paragraph-indent: 0;
|
|
132
|
+
--font-body3-paragraph-spacing: 6;
|
|
133
|
+
--font-body3-text-case: none;
|
|
134
|
+
--font-button1-font-size: 13;
|
|
135
|
+
--font-button1-text-decoration: none;
|
|
136
|
+
--font-button1-font-family: Inter;
|
|
137
|
+
--font-button1-font-weight: 500;
|
|
138
|
+
--font-button1-font-style: normal;
|
|
139
|
+
--font-button1-font-stretch: normal;
|
|
140
|
+
--font-button1-letter-spacing: 0;
|
|
141
|
+
--font-button1-line-height: 20;
|
|
142
|
+
--font-button1-paragraph-indent: 0;
|
|
143
|
+
--font-button1-paragraph-spacing: 0;
|
|
144
|
+
--font-button1-text-case: none;
|
|
145
|
+
--font-button2-font-size: 11;
|
|
146
|
+
--font-button2-text-decoration: none;
|
|
147
|
+
--font-button2-font-family: Inter;
|
|
148
|
+
--font-button2-font-weight: 500;
|
|
149
|
+
--font-button2-font-style: normal;
|
|
150
|
+
--font-button2-font-stretch: normal;
|
|
151
|
+
--font-button2-letter-spacing: 0;
|
|
152
|
+
--font-button2-line-height: 16;
|
|
153
|
+
--font-button2-paragraph-indent: 0;
|
|
154
|
+
--font-button2-paragraph-spacing: 0;
|
|
155
|
+
--font-button2-text-case: none;
|
|
156
|
+
--font-button3-font-size: 10;
|
|
157
|
+
--font-button3-text-decoration: none;
|
|
158
|
+
--font-button3-font-family: Inter;
|
|
159
|
+
--font-button3-font-weight: 500;
|
|
160
|
+
--font-button3-font-style: normal;
|
|
161
|
+
--font-button3-font-stretch: normal;
|
|
162
|
+
--font-button3-letter-spacing: 0;
|
|
163
|
+
--font-button3-line-height: 14;
|
|
164
|
+
--font-button3-paragraph-indent: 0;
|
|
165
|
+
--font-button3-paragraph-spacing: 0;
|
|
166
|
+
--font-button3-text-case: none;
|
|
167
|
+
--font-caption-font-size: 11;
|
|
168
|
+
--font-caption-text-decoration: none;
|
|
169
|
+
--font-caption-font-family: Inter;
|
|
170
|
+
--font-caption-font-weight: 400;
|
|
171
|
+
--font-caption-font-style: normal;
|
|
172
|
+
--font-caption-font-stretch: normal;
|
|
173
|
+
--font-caption-letter-spacing: 0;
|
|
174
|
+
--font-caption-line-height: 16;
|
|
175
|
+
--font-caption-paragraph-indent: 0;
|
|
176
|
+
--font-caption-paragraph-spacing: 0;
|
|
177
|
+
--font-caption-text-case: none;
|
|
178
|
+
--font-caption-semi-font-size: 11;
|
|
179
|
+
--font-caption-semi-text-decoration: none;
|
|
180
|
+
--font-caption-semi-font-family: Inter;
|
|
181
|
+
--font-caption-semi-font-weight: 600;
|
|
182
|
+
--font-caption-semi-font-style: normal;
|
|
183
|
+
--font-caption-semi-font-stretch: normal;
|
|
184
|
+
--font-caption-semi-letter-spacing: 0;
|
|
185
|
+
--font-caption-semi-line-height: 16;
|
|
186
|
+
--font-caption-semi-paragraph-indent: 0;
|
|
187
|
+
--font-caption-semi-paragraph-spacing: 0;
|
|
188
|
+
--font-caption-semi-text-case: none;
|
|
189
|
+
--font-overline-font-size: 10;
|
|
190
|
+
--font-overline-text-decoration: none;
|
|
191
|
+
--font-overline-font-family: Inter;
|
|
192
|
+
--font-overline-font-weight: 600;
|
|
193
|
+
--font-overline-font-style: normal;
|
|
194
|
+
--font-overline-font-stretch: normal;
|
|
195
|
+
--font-overline-letter-spacing: 1.5;
|
|
196
|
+
--font-overline-line-height: 12;
|
|
197
|
+
--font-overline-paragraph-indent: 0;
|
|
198
|
+
--font-overline-paragraph-spacing: 0;
|
|
199
|
+
--font-overline-text-case: uppercase;
|
|
200
|
+
--spacing-2: 2px;
|
|
201
|
+
--spacing-4: 4px;
|
|
202
|
+
--spacing-6: 6px;
|
|
203
|
+
--spacing-8: 8px;
|
|
204
|
+
--spacing-10: 10px;
|
|
205
|
+
--spacing-12: 12px;
|
|
206
|
+
--spacing-14: 14px;
|
|
207
|
+
--spacing-16: 16px;
|
|
208
|
+
--spacing-18: 18px;
|
|
209
|
+
--spacing-20: 20px;
|
|
210
|
+
--spacing-22: 22px;
|
|
211
|
+
--spacing-24: 24px;
|
|
212
|
+
--spacing-26: 26px;
|
|
213
|
+
--spacing-28: 28px;
|
|
214
|
+
--spacing-30: 30px;
|
|
215
|
+
--spacing-32: 32px;
|
|
216
|
+
--radius-0: 0px;
|
|
217
|
+
--radius-2: 2px;
|
|
218
|
+
--radius-4: 4px;
|
|
219
|
+
--radius-6: 6px;
|
|
220
|
+
--radius-8: 8px;
|
|
221
|
+
--radius-10: 10px;
|
|
222
|
+
--radius-12: 12px;
|
|
223
|
+
--radius-14: 14px;
|
|
224
|
+
--radius-16: 16px;
|
|
225
|
+
--radius-18: 18px;
|
|
226
|
+
--radius-20: 20px;
|
|
227
|
+
--radius-22: 22px;
|
|
228
|
+
--radius-24: 24px;
|
|
229
|
+
--radius-btn-brick: 0px;
|
|
230
|
+
--radius-btn-round: 8px;
|
|
231
|
+
--radius-btn-circle: 24px;
|
|
232
|
+
--radius-field-brick: 0px;
|
|
233
|
+
--radius-field-round: 8px;
|
|
234
|
+
--radius-field-circle: 24px;
|
|
235
|
+
}
|