@nattstack/ui 0.0.106 → 0.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/README.md +1 -1
- package/dist/baseline/index.css +9 -5
- package/dist/components/button/button-spinner.js +18 -3
- package/dist/components/button/button-spinner.stylex.js +96 -0
- package/dist/components/button/button.d.ts +20 -17
- package/dist/components/button/button.js +28 -38
- package/dist/components/button/button.stylex.d.ts +121 -0
- package/dist/components/button/button.stylex.js +158 -0
- package/dist/components/button-link/button-link.d.ts +5 -6
- package/dist/components/button-link/button-link.js +5 -5
- package/dist/components/checkbox/checkbox-icon.js +4 -3
- package/dist/components/checkbox/checkbox.d.ts +2 -2
- package/dist/components/checkbox/checkbox.js +6 -8
- package/dist/components/checkbox/checkbox.stylex.d.ts +40 -0
- package/dist/components/checkbox/checkbox.stylex.js +43 -0
- package/dist/components/cn.d.ts +6 -0
- package/dist/components/cn.js +18 -0
- package/dist/components/column/column.d.ts +2 -2
- package/dist/components/column/column.js +17 -15
- package/dist/components/column/column.stylex.d.ts +10 -0
- package/dist/components/column/column.stylex.js +8 -0
- package/dist/components/combobox/combobox-content.d.ts +1 -2
- package/dist/components/combobox/combobox-content.js +5 -7
- package/dist/components/combobox/combobox-empty.d.ts +2 -2
- package/dist/components/combobox/combobox-empty.js +4 -6
- package/dist/components/combobox/combobox-empty.stylex.d.ts +13 -0
- package/dist/components/combobox/combobox-empty.stylex.js +11 -0
- package/dist/components/combobox/combobox-group-label.d.ts +1 -2
- package/dist/components/combobox/combobox-group-label.js +4 -6
- package/dist/components/combobox/combobox-group.d.ts +1 -2
- package/dist/components/combobox/combobox-group.js +4 -6
- package/dist/components/combobox/combobox-input.d.ts +6 -10
- package/dist/components/combobox/combobox-input.js +10 -25
- package/dist/components/combobox/combobox-input.stylex.d.ts +93 -0
- package/dist/components/combobox/combobox-input.stylex.js +100 -0
- package/dist/components/combobox/combobox-item.d.ts +2 -4
- package/dist/components/combobox/combobox-item.js +7 -10
- package/dist/components/combobox/combobox-list.d.ts +1 -2
- package/dist/components/combobox/combobox-list.js +4 -6
- package/dist/components/combobox/combobox-search.d.ts +3 -4
- package/dist/components/combobox/combobox-search.js +7 -9
- package/dist/components/combobox/combobox-search.stylex.d.ts +45 -0
- package/dist/components/combobox/combobox-search.stylex.js +45 -0
- package/dist/components/combobox/combobox-separator.d.ts +1 -2
- package/dist/components/combobox/combobox-separator.js +4 -6
- package/dist/components/combobox/combobox-trigger.d.ts +4 -8
- package/dist/components/combobox/combobox-trigger.js +6 -21
- package/dist/components/combobox/combobox-value.d.ts +2 -2
- package/dist/components/combobox/combobox-value.js +4 -6
- package/dist/components/combobox/combobox-value.stylex.d.ts +14 -0
- package/dist/components/combobox/combobox-value.stylex.js +12 -0
- package/dist/components/dialog-responsive/dialog-responsive-backdrop.js +4 -6
- package/dist/components/dialog-responsive/dialog-responsive-backdrop.stylex.js +14 -0
- package/dist/components/dialog-responsive/dialog-responsive-bar.js +4 -5
- package/dist/components/dialog-responsive/dialog-responsive-bar.stylex.js +13 -0
- package/dist/components/dialog-responsive/dialog-responsive-popup.d.ts +2 -2
- package/dist/components/dialog-responsive/dialog-responsive-popup.js +4 -6
- package/dist/components/dialog-responsive/dialog-responsive-popup.stylex.d.ts +32 -0
- package/dist/components/dialog-responsive/dialog-responsive-popup.stylex.js +30 -0
- package/dist/components/dialog-responsive/dialog-responsive-portal.js +4 -6
- package/dist/components/dialog-responsive/dialog-responsive-portal.stylex.js +9 -0
- package/dist/components/dialog-responsive/dialog-responsive-viewport.js +4 -6
- package/dist/components/dialog-responsive/dialog-responsive-viewport.stylex.js +13 -0
- package/dist/components/dialog-responsive/dialog-responsive.d.ts +1 -4
- package/dist/components/dialog-responsive/dialog-responsive.js +1 -4
- package/dist/components/icon-button/icon-button.d.ts +3 -5
- package/dist/components/icon-button/icon-button.js +17 -22
- package/dist/components/icon-button/icon-button.stylex.d.ts +21 -0
- package/dist/components/icon-button/icon-button.stylex.js +25 -0
- package/dist/components/index.d.ts +90 -53
- package/dist/components/index.js +91 -53
- package/dist/components/input/input.d.ts +8 -16
- package/dist/components/input/input.js +9 -36
- package/dist/components/input/input.stylex.d.ts +66 -0
- package/dist/components/input/input.stylex.js +71 -0
- package/dist/components/label/label.d.ts +2 -2
- package/dist/components/label/label.js +7 -6
- package/dist/components/label/label.stylex.d.ts +12 -0
- package/dist/components/label/label.stylex.js +10 -0
- package/dist/components/menu/menu-checkbox-item.d.ts +2 -6
- package/dist/components/menu/menu-checkbox-item.js +7 -12
- package/dist/components/menu/menu-content.d.ts +2 -2
- package/dist/components/menu/menu-content.js +8 -10
- package/dist/components/menu/menu-content.stylex.d.ts +11 -0
- package/dist/components/menu/menu-content.stylex.js +9 -0
- package/dist/components/menu/menu-group-label.d.ts +1 -2
- package/dist/components/menu/menu-group-label.js +4 -6
- package/dist/components/menu/menu-group.d.ts +1 -2
- package/dist/components/menu/menu-group.js +4 -6
- package/dist/components/menu/menu-item.d.ts +3 -4
- package/dist/components/menu/menu-item.js +6 -9
- package/dist/components/menu/menu-item.stylex.d.ts +11 -0
- package/dist/components/menu/menu-item.stylex.js +9 -0
- package/dist/components/menu/menu-link-item.d.ts +1 -2
- package/dist/components/menu/menu-link-item.js +5 -7
- package/dist/components/menu/menu-radio-group.d.ts +2 -4
- package/dist/components/menu/menu-radio-group.js +5 -8
- package/dist/components/menu/menu-radio-item.d.ts +2 -4
- package/dist/components/menu/menu-radio-item.js +7 -10
- package/dist/components/menu/menu-separator.d.ts +1 -2
- package/dist/components/menu/menu-separator.js +4 -6
- package/dist/components/menu/menu-submenu-trigger.d.ts +3 -4
- package/dist/components/menu/menu-submenu-trigger.js +8 -15
- package/dist/components/menu/menu-submenu-trigger.stylex.d.ts +19 -0
- package/dist/components/menu/menu-submenu-trigger.stylex.js +20 -0
- package/dist/components/otp-field/otp-field-input.d.ts +2 -2
- package/dist/components/otp-field/otp-field-input.js +5 -6
- package/dist/components/otp-field/otp-field-input.stylex.d.ts +25 -0
- package/dist/components/otp-field/otp-field-input.stylex.js +23 -0
- package/dist/components/otp-field/otp-field.d.ts +4 -7
- package/dist/components/otp-field/otp-field.js +7 -18
- package/dist/components/otp-field/otp-field.stylex.d.ts +16 -0
- package/dist/components/otp-field/otp-field.stylex.js +17 -0
- package/dist/components/picker/picker-group.stylex.d.ts +18 -0
- package/dist/components/picker/picker-group.stylex.js +19 -0
- package/dist/components/picker/picker-item.stylex.d.ts +39 -0
- package/dist/components/picker/picker-item.stylex.js +41 -0
- package/dist/components/picker/picker-list.stylex.js +13 -0
- package/dist/components/picker/picker-popup.stylex.d.ts +36 -0
- package/dist/components/picker/picker-popup.stylex.js +37 -0
- package/dist/components/picker/picker-separator.stylex.d.ts +13 -0
- package/dist/components/picker/picker-separator.stylex.js +11 -0
- package/dist/components/picker/picker-trigger.stylex.d.ts +60 -0
- package/dist/components/picker/picker-trigger.stylex.js +67 -0
- package/dist/components/row/row.d.ts +2 -2
- package/dist/components/row/row.js +17 -15
- package/dist/components/row/row.stylex.d.ts +10 -0
- package/dist/components/row/row.stylex.js +8 -0
- package/dist/components/select/select-content.d.ts +2 -2
- package/dist/components/select/select-content.js +7 -9
- package/dist/components/select/select-group-label.d.ts +1 -2
- package/dist/components/select/select-group-label.js +4 -6
- package/dist/components/select/select-group.d.ts +2 -2
- package/dist/components/select/select-group.js +4 -6
- package/dist/components/select/select-item.d.ts +3 -4
- package/dist/components/select/select-item.js +7 -10
- package/dist/components/select/select-separator.d.ts +2 -2
- package/dist/components/select/select-separator.js +4 -6
- package/dist/components/select/select-trigger.d.ts +5 -8
- package/dist/components/select/select-trigger.js +6 -21
- package/dist/components/select/select-value.d.ts +2 -2
- package/dist/components/select/select-value.js +4 -6
- package/dist/components/select/select-value.stylex.d.ts +14 -0
- package/dist/components/select/select-value.stylex.js +12 -0
- package/dist/components/spacer/spacer.d.ts +2 -2
- package/dist/components/spacer/spacer.js +13 -11
- package/dist/components/spacer/spacer.stylex.d.ts +9 -0
- package/dist/components/spacer/spacer.stylex.js +7 -0
- package/dist/components/stylex.css +1420 -0
- package/dist/components/switch/switch.d.ts +4 -12
- package/dist/components/switch/switch.js +6 -22
- package/dist/components/switch/switch.stylex.d.ts +41 -0
- package/dist/components/switch/switch.stylex.js +44 -0
- package/dist/components/tabs/tabs-panel.d.ts +2 -2
- package/dist/components/tabs/tabs-panel.js +7 -7
- package/dist/components/tabs/tabs-panel.stylex.d.ts +14 -0
- package/dist/components/tabs/tabs-panel.stylex.js +12 -0
- package/dist/components/tabs/tabs.d.ts +2 -2
- package/dist/components/tabs/tabs.js +7 -7
- package/dist/components/tabs/tabs.stylex.d.ts +10 -0
- package/dist/components/tabs/tabs.stylex.js +8 -0
- package/dist/components/tabs-pill/tabs-pill-indicator.js +4 -6
- package/dist/components/tabs-pill/tabs-pill-indicator.stylex.js +16 -0
- package/dist/components/tabs-pill/tabs-pill-list.d.ts +2 -2
- package/dist/components/tabs-pill/tabs-pill-list.js +4 -6
- package/dist/components/tabs-pill/tabs-pill-list.stylex.d.ts +13 -0
- package/dist/components/tabs-pill/tabs-pill-list.stylex.js +11 -0
- package/dist/components/tabs-pill/tabs-pill-tab.d.ts +3 -5
- package/dist/components/tabs-pill/tabs-pill-tab.js +8 -10
- package/dist/components/tabs-pill/tabs-pill-tab.stylex.d.ts +44 -0
- package/dist/components/tabs-pill/tabs-pill-tab.stylex.js +46 -0
- package/dist/components/tabs-segmented/tabs-segmented-indicator.js +4 -6
- package/dist/components/tabs-segmented/tabs-segmented-indicator.stylex.js +16 -0
- package/dist/components/tabs-segmented/tabs-segmented-list.d.ts +2 -2
- package/dist/components/tabs-segmented/tabs-segmented-list.js +4 -6
- package/dist/components/tabs-segmented/tabs-segmented-list.stylex.d.ts +17 -0
- package/dist/components/tabs-segmented/tabs-segmented-list.stylex.js +15 -0
- package/dist/components/tabs-segmented/tabs-segmented-tab.d.ts +3 -5
- package/dist/components/tabs-segmented/tabs-segmented-tab.js +6 -8
- package/dist/components/tabs-segmented/tabs-segmented-tab.stylex.d.ts +28 -0
- package/dist/components/tabs-segmented/tabs-segmented-tab.stylex.js +26 -0
- package/dist/components/tabs-underline/tabs-underline-indicator.js +4 -6
- package/dist/components/tabs-underline/tabs-underline-indicator.stylex.js +14 -0
- package/dist/components/tabs-underline/tabs-underline-list.d.ts +2 -2
- package/dist/components/tabs-underline/tabs-underline-list.js +4 -6
- package/dist/components/tabs-underline/tabs-underline-list.stylex.d.ts +14 -0
- package/dist/components/tabs-underline/tabs-underline-list.stylex.js +12 -0
- package/dist/components/tabs-underline/tabs-underline-tab.d.ts +3 -5
- package/dist/components/tabs-underline/tabs-underline-tab.js +6 -8
- package/dist/components/tabs-underline/tabs-underline-tab.stylex.d.ts +27 -0
- package/dist/components/tabs-underline/tabs-underline-tab.stylex.js +25 -0
- package/dist/components/textarea/textarea.d.ts +7 -12
- package/dist/components/textarea/textarea.js +10 -23
- package/dist/components/textarea/textarea.stylex.d.ts +13 -0
- package/dist/components/textarea/textarea.stylex.js +11 -0
- package/dist/components/toggle-group/toggle-group-item.d.ts +3 -6
- package/dist/components/toggle-group/toggle-group-item.js +6 -8
- package/dist/components/toggle-group/toggle-group-item.stylex.d.ts +33 -0
- package/dist/components/toggle-group/toggle-group-item.stylex.js +34 -0
- package/dist/components/toggle-group/toggle-group.d.ts +3 -7
- package/dist/components/toggle-group/toggle-group.js +6 -9
- package/dist/components/toggle-group/toggle-group.stylex.d.ts +11 -0
- package/dist/components/toggle-group/toggle-group.stylex.js +9 -0
- package/dist/components/tooltip/tooltip-popup.d.ts +2 -2
- package/dist/components/tooltip/tooltip-popup.js +6 -7
- package/dist/components/tooltip/tooltip-popup.stylex.d.ts +30 -0
- package/dist/components/tooltip/tooltip-popup.stylex.js +32 -0
- package/dist/components/tooltip/tooltip.d.ts +1 -4
- package/dist/components/tooltip/tooltip.js +2 -4
- package/dist/tailwind-colors/root.css +10 -0
- package/package.json +4 -3
- package/dist/components/button/button-spinner.css +0 -97
- package/dist/components/button/button-spinner.module.js +0 -8
- package/dist/components/button/button.css +0 -191
- package/dist/components/button/button.module.js +0 -21
- package/dist/components/checkbox/checkbox.css +0 -55
- package/dist/components/checkbox/checkbox.module.js +0 -9
- package/dist/components/column/column.css +0 -6
- package/dist/components/column/column.module.js +0 -5
- package/dist/components/combobox/combobox-empty.css +0 -9
- package/dist/components/combobox/combobox-empty.module.js +0 -5
- package/dist/components/combobox/combobox-input.css +0 -121
- package/dist/components/combobox/combobox-input.module.js +0 -16
- package/dist/components/combobox/combobox-search.css +0 -44
- package/dist/components/combobox/combobox-search.module.js +0 -9
- package/dist/components/combobox/combobox-value.css +0 -14
- package/dist/components/combobox/combobox-value.module.js +0 -5
- package/dist/components/dialog-responsive/dialog-responsive-backdrop.css +0 -28
- package/dist/components/dialog-responsive/dialog-responsive-backdrop.module.js +0 -5
- package/dist/components/dialog-responsive/dialog-responsive-bar.css +0 -16
- package/dist/components/dialog-responsive/dialog-responsive-bar.module.js +0 -5
- package/dist/components/dialog-responsive/dialog-responsive-popup.css +0 -56
- package/dist/components/dialog-responsive/dialog-responsive-popup.module.js +0 -5
- package/dist/components/dialog-responsive/dialog-responsive-portal.css +0 -7
- package/dist/components/dialog-responsive/dialog-responsive-portal.module.js +0 -5
- package/dist/components/dialog-responsive/dialog-responsive-viewport.css +0 -18
- package/dist/components/dialog-responsive/dialog-responsive-viewport.module.js +0 -5
- package/dist/components/icon-button/icon-button.css +0 -21
- package/dist/components/icon-button/icon-button.module.js +0 -11
- package/dist/components/input/input.css +0 -83
- package/dist/components/input/input.module.js +0 -14
- package/dist/components/label/label.css +0 -8
- package/dist/components/label/label.module.js +0 -5
- package/dist/components/menu/menu-content.css +0 -7
- package/dist/components/menu/menu-content.module.js +0 -5
- package/dist/components/menu/menu-item.css +0 -7
- package/dist/components/menu/menu-item.module.js +0 -5
- package/dist/components/menu/menu-submenu-trigger.css +0 -16
- package/dist/components/menu/menu-submenu-trigger.module.js +0 -8
- package/dist/components/otp-field/otp-field-input.css +0 -32
- package/dist/components/otp-field/otp-field-input.module.js +0 -5
- package/dist/components/otp-field/otp-field.css +0 -13
- package/dist/components/otp-field/otp-field.module.js +0 -8
- package/dist/components/picker/picker-group.css +0 -14
- package/dist/components/picker/picker-group.module.js +0 -8
- package/dist/components/picker/picker-item.css +0 -43
- package/dist/components/picker/picker-item.module.js +0 -9
- package/dist/components/picker/picker-list.css +0 -15
- package/dist/components/picker/picker-list.module.js +0 -5
- package/dist/components/picker/picker-popup.css +0 -56
- package/dist/components/picker/picker-popup.module.js +0 -8
- package/dist/components/picker/picker-separator.css +0 -8
- package/dist/components/picker/picker-separator.module.js +0 -5
- package/dist/components/picker/picker-trigger.css +0 -85
- package/dist/components/picker/picker-trigger.module.js +0 -14
- package/dist/components/row/row.css +0 -6
- package/dist/components/row/row.module.js +0 -5
- package/dist/components/select/select-value.css +0 -14
- package/dist/components/select/select-value.module.js +0 -5
- package/dist/components/spacer/spacer.css +0 -5
- package/dist/components/spacer/spacer.module.js +0 -5
- package/dist/components/switch/switch.css +0 -55
- package/dist/components/switch/switch.module.js +0 -10
- package/dist/components/tabs/tabs-panel.css +0 -14
- package/dist/components/tabs/tabs-panel.module.js +0 -5
- package/dist/components/tabs/tabs.css +0 -6
- package/dist/components/tabs/tabs.module.js +0 -5
- package/dist/components/tabs-pill/tabs-pill-indicator.css +0 -14
- package/dist/components/tabs-pill/tabs-pill-indicator.module.js +0 -5
- package/dist/components/tabs-pill/tabs-pill-list.css +0 -9
- package/dist/components/tabs-pill/tabs-pill-list.module.js +0 -5
- package/dist/components/tabs-pill/tabs-pill-tab.css +0 -66
- package/dist/components/tabs-pill/tabs-pill-tab.module.js +0 -9
- package/dist/components/tabs-segmented/tabs-segmented-indicator.css +0 -14
- package/dist/components/tabs-segmented/tabs-segmented-indicator.module.js +0 -5
- package/dist/components/tabs-segmented/tabs-segmented-list.css +0 -13
- package/dist/components/tabs-segmented/tabs-segmented-list.module.js +0 -5
- package/dist/components/tabs-segmented/tabs-segmented-tab.css +0 -37
- package/dist/components/tabs-segmented/tabs-segmented-tab.module.js +0 -5
- package/dist/components/tabs-underline/tabs-underline-indicator.css +0 -12
- package/dist/components/tabs-underline/tabs-underline-indicator.module.js +0 -5
- package/dist/components/tabs-underline/tabs-underline-list.css +0 -10
- package/dist/components/tabs-underline/tabs-underline-list.module.js +0 -5
- package/dist/components/tabs-underline/tabs-underline-tab.css +0 -36
- package/dist/components/tabs-underline/tabs-underline-tab.module.js +0 -5
- package/dist/components/textarea/textarea.css +0 -9
- package/dist/components/textarea/textarea.module.js +0 -5
- package/dist/components/toggle-group/toggle-group-item.css +0 -47
- package/dist/components/toggle-group/toggle-group-item.module.js +0 -5
- package/dist/components/toggle-group/toggle-group.css +0 -7
- package/dist/components/toggle-group/toggle-group.module.js +0 -5
- package/dist/components/tooltip/tooltip-popup.css +0 -32
- package/dist/components/tooltip/tooltip-popup.module.js +0 -8
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
@layer components {
|
|
2
|
-
.combobox-search-module_base_6egFqa {
|
|
3
|
-
background-color: var(--color-bg-shell-inner);
|
|
4
|
-
box-shadow: inset 0 -1px 0 var(--color-border);
|
|
5
|
-
flex-shrink: 0;
|
|
6
|
-
align-items: center;
|
|
7
|
-
column-gap: 8px;
|
|
8
|
-
height: 40px;
|
|
9
|
-
padding: 0 16px;
|
|
10
|
-
display: flex;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.combobox-search-module_icon_6egFqa {
|
|
14
|
-
color: var(--color-gray-9);
|
|
15
|
-
flex-shrink: 0;
|
|
16
|
-
justify-content: center;
|
|
17
|
-
align-items: center;
|
|
18
|
-
display: flex;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.combobox-search-module_input_6egFqa {
|
|
22
|
-
appearance: none;
|
|
23
|
-
color: var(--color-text-primary);
|
|
24
|
-
background-color: #0000;
|
|
25
|
-
border-style: none;
|
|
26
|
-
outline: none;
|
|
27
|
-
flex: 1;
|
|
28
|
-
min-width: 0;
|
|
29
|
-
height: 100%;
|
|
30
|
-
padding: 0;
|
|
31
|
-
font-size: 14px;
|
|
32
|
-
font-weight: 400;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.combobox-search-module_input_6egFqa::placeholder {
|
|
36
|
-
color: var(--color-gray-9);
|
|
37
|
-
user-select: none;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.combobox-search-module_input_6egFqa:disabled {
|
|
41
|
-
cursor: not-allowed;
|
|
42
|
-
opacity: .5;
|
|
43
|
-
}
|
|
44
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import './combobox-search.css';
|
|
2
|
-
//#region src/components/combobox/combobox-search.module.css
|
|
3
|
-
var combobox_search_module_default = {
|
|
4
|
-
"base": "combobox-search-module_base_6egFqa",
|
|
5
|
-
"icon": "combobox-search-module_icon_6egFqa",
|
|
6
|
-
"input": "combobox-search-module_input_6egFqa"
|
|
7
|
-
};
|
|
8
|
-
//#endregion
|
|
9
|
-
export { combobox_search_module_default as default };
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
@layer components {
|
|
2
|
-
.combobox-value-module_base_kG6VyG {
|
|
3
|
-
color: var(--color-text-primary);
|
|
4
|
-
text-overflow: ellipsis;
|
|
5
|
-
white-space: nowrap;
|
|
6
|
-
font-size: 14px;
|
|
7
|
-
font-weight: 450;
|
|
8
|
-
overflow-x: hidden;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
[data-placeholder] .combobox-value-module_base_kG6VyG {
|
|
12
|
-
color: var(--color-gray-9);
|
|
13
|
-
}
|
|
14
|
-
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
@layer components {
|
|
2
|
-
.dialog-responsive-backdrop-module_base_-X7FOq {
|
|
3
|
-
--backdrop-opacity: .25;
|
|
4
|
-
opacity: calc(var(--backdrop-opacity) * (1 - var(--drawer-swipe-progress)));
|
|
5
|
-
outline-color: var(--color-primary-9);
|
|
6
|
-
background-color: #000;
|
|
7
|
-
transition-property: opacity;
|
|
8
|
-
transition-duration: .15s;
|
|
9
|
-
position: fixed;
|
|
10
|
-
inset: 0;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.dialog-responsive-backdrop-module_base_-X7FOq[data-ending-style], .dialog-responsive-backdrop-module_base_-X7FOq[data-starting-style] {
|
|
14
|
-
opacity: 0;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.dialog-responsive-backdrop-module_base_-X7FOq[data-ending-style] {
|
|
18
|
-
transition-duration: calc(var(--drawer-swipe-strength) * .4s);
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.dialog-responsive-backdrop-module_base_-X7FOq[data-swiping] {
|
|
22
|
-
transition-duration: 0s;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.dark .dialog-responsive-backdrop-module_base_-X7FOq {
|
|
26
|
-
--backdrop-opacity: .75;
|
|
27
|
-
}
|
|
28
|
-
}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import './dialog-responsive-backdrop.css';
|
|
2
|
-
//#region src/components/dialog-responsive/dialog-responsive-backdrop.module.css
|
|
3
|
-
var dialog_responsive_backdrop_module_default = { "base": "dialog-responsive-backdrop-module_base_-X7FOq" };
|
|
4
|
-
//#endregion
|
|
5
|
-
export { dialog_responsive_backdrop_module_default as default };
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
@layer components {
|
|
2
|
-
.dialog-responsive-bar-module_base_iUwUCq {
|
|
3
|
-
background-color: var(--color-gray-4);
|
|
4
|
-
border-radius: 9999px;
|
|
5
|
-
width: 48px;
|
|
6
|
-
height: 4px;
|
|
7
|
-
margin: 12px auto;
|
|
8
|
-
display: none;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
@media (width <= 640px) {
|
|
12
|
-
.dialog-responsive-bar-module_base_iUwUCq {
|
|
13
|
-
display: block;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import './dialog-responsive-bar.css';
|
|
2
|
-
//#region src/components/dialog-responsive/dialog-responsive-bar.module.css
|
|
3
|
-
var dialog_responsive_bar_module_default = { "base": "dialog-responsive-bar-module_base_iUwUCq" };
|
|
4
|
-
//#endregion
|
|
5
|
-
export { dialog_responsive_bar_module_default as default };
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
@layer components {
|
|
2
|
-
.dialog-responsive-popup-module_base_cgfWTq {
|
|
3
|
-
background-color: var(--color-gray-1);
|
|
4
|
-
cursor: auto;
|
|
5
|
-
outline-color: var(--color-primary-9);
|
|
6
|
-
outline-offset: -4px;
|
|
7
|
-
will-change: opacity, transform;
|
|
8
|
-
border-radius: 16px;
|
|
9
|
-
outline-width: 0;
|
|
10
|
-
outline-style: solid;
|
|
11
|
-
flex-direction: column;
|
|
12
|
-
width: 100%;
|
|
13
|
-
max-width: 640px;
|
|
14
|
-
padding: 16px;
|
|
15
|
-
transition-property: opacity, transform;
|
|
16
|
-
transition-duration: .15s;
|
|
17
|
-
display: flex;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.dialog-responsive-popup-module_base_cgfWTq:focus-visible {
|
|
21
|
-
outline-width: 2px;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.dialog-responsive-popup-module_base_cgfWTq[data-ending-style], .dialog-responsive-popup-module_base_cgfWTq[data-starting-style] {
|
|
25
|
-
opacity: 0;
|
|
26
|
-
transform: scale(.975);
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.dialog-responsive-popup-module_base_cgfWTq[data-swiping] {
|
|
30
|
-
user-select: none;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
@media (width <= 640px) {
|
|
34
|
-
.dialog-responsive-popup-module_base_cgfWTq {
|
|
35
|
-
--radius-mobile: 24px;
|
|
36
|
-
border-bottom-right-radius: 0;
|
|
37
|
-
border-bottom-left-radius: 0;
|
|
38
|
-
border-top-left-radius: var(--radius-mobile);
|
|
39
|
-
border-top-right-radius: var(--radius-mobile);
|
|
40
|
-
transform: translateY(var(--drawer-swipe-movement-y));
|
|
41
|
-
padding-top: 0;
|
|
42
|
-
transition-property: transform;
|
|
43
|
-
transition-duration: .45s;
|
|
44
|
-
transition-timing-function: cubic-bezier(.32, .72, 0, 1);
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.dialog-responsive-popup-module_base_cgfWTq[data-ending-style], .dialog-responsive-popup-module_base_cgfWTq[data-starting-style] {
|
|
48
|
-
opacity: 1;
|
|
49
|
-
transform: scale(1) translateY(100%);
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.dialog-responsive-popup-module_base_cgfWTq[data-ending-style] {
|
|
53
|
-
transition-duration: calc(var(--drawer-swipe-strength) * .3s);
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import './dialog-responsive-popup.css';
|
|
2
|
-
//#region src/components/dialog-responsive/dialog-responsive-popup.module.css
|
|
3
|
-
var dialog_responsive_popup_module_default = { "base": "dialog-responsive-popup-module_base_cgfWTq" };
|
|
4
|
-
//#endregion
|
|
5
|
-
export { dialog_responsive_popup_module_default as default };
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import './dialog-responsive-portal.css';
|
|
2
|
-
//#region src/components/dialog-responsive/dialog-responsive-portal.module.css
|
|
3
|
-
var dialog_responsive_portal_module_default = { "base": "dialog-responsive-portal-module_base_keH0Tq" };
|
|
4
|
-
//#endregion
|
|
5
|
-
export { dialog_responsive_portal_module_default as default };
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
@layer components {
|
|
2
|
-
.dialog-responsive-viewport-module_base_b5ZINa {
|
|
3
|
-
cursor: pointer;
|
|
4
|
-
justify-content: safe center;
|
|
5
|
-
align-items: safe center;
|
|
6
|
-
padding: 24px;
|
|
7
|
-
display: flex;
|
|
8
|
-
position: fixed;
|
|
9
|
-
inset: 0;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
@media (width <= 640px) {
|
|
13
|
-
.dialog-responsive-viewport-module_base_b5ZINa {
|
|
14
|
-
align-items: safe flex-end;
|
|
15
|
-
padding: 48px 0 0;
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import './dialog-responsive-viewport.css';
|
|
2
|
-
//#region src/components/dialog-responsive/dialog-responsive-viewport.module.css
|
|
3
|
-
var dialog_responsive_viewport_module_default = { "base": "dialog-responsive-viewport-module_base_b5ZINa" };
|
|
4
|
-
//#endregion
|
|
5
|
-
export { dialog_responsive_viewport_module_default as default };
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
@layer components {
|
|
2
|
-
.icon-button-module_size_32_gxECxa {
|
|
3
|
-
width: 32px;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.icon-button-module_size_36_gxECxa {
|
|
7
|
-
width: 36px;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.icon-button-module_size_40_gxECxa {
|
|
11
|
-
width: 40px;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.icon-button-module_size_44_gxECxa {
|
|
15
|
-
width: 44px;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.icon-button-module_size_48_gxECxa {
|
|
19
|
-
width: 48px;
|
|
20
|
-
}
|
|
21
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import './icon-button.css';
|
|
2
|
-
//#region src/components/icon-button/icon-button.module.css
|
|
3
|
-
var icon_button_module_default = {
|
|
4
|
-
"size_32": "icon-button-module_size_32_gxECxa",
|
|
5
|
-
"size_36": "icon-button-module_size_36_gxECxa",
|
|
6
|
-
"size_40": "icon-button-module_size_40_gxECxa",
|
|
7
|
-
"size_44": "icon-button-module_size_44_gxECxa",
|
|
8
|
-
"size_48": "icon-button-module_size_48_gxECxa"
|
|
9
|
-
};
|
|
10
|
-
//#endregion
|
|
11
|
-
export { icon_button_module_default as default };
|
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
@layer components {
|
|
2
|
-
.input-module_base_o34hyq {
|
|
3
|
-
appearance: none;
|
|
4
|
-
background-color: var(--color-bg-shell-inner);
|
|
5
|
-
box-shadow: inset 0 0 0 1px var(--color-border);
|
|
6
|
-
color: var(--color-text-primary);
|
|
7
|
-
cursor: text;
|
|
8
|
-
outline-offset: -2px;
|
|
9
|
-
border-style: none;
|
|
10
|
-
outline: 2px solid #0000;
|
|
11
|
-
width: 100%;
|
|
12
|
-
font-size: 14px;
|
|
13
|
-
font-weight: 400;
|
|
14
|
-
line-height: 1.5;
|
|
15
|
-
text-decoration: none;
|
|
16
|
-
transition-property: box-shadow, opacity;
|
|
17
|
-
transition-duration: .15s;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.input-module_base_o34hyq::placeholder {
|
|
21
|
-
color: var(--color-gray-9);
|
|
22
|
-
user-select: none;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.input-module_base_o34hyq:disabled {
|
|
26
|
-
cursor: not-allowed;
|
|
27
|
-
opacity: .5;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.input-module_base_o34hyq:enabled:active, .input-module_base_o34hyq:enabled:focus, .input-module_base_o34hyq:enabled:hover, .input-module_base_o34hyq:enabled[data-is-active="true"] {
|
|
31
|
-
box-shadow: inset 0 0 0 1px var(--color-gray-6);
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.input-module_base_o34hyq[data-is-valid="true"] {
|
|
35
|
-
outline-color: #30a46c;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
.input-module_base_o34hyq[data-is-invalid="true"] {
|
|
39
|
-
outline-color: #e5484d;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.input-module_base_o34hyq:focus-visible {
|
|
43
|
-
outline-color: var(--color-outline);
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.input-module_rounded_base_o34hyq {
|
|
47
|
-
border-radius: 12px;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.input-module_base_o34hyq.input-module_rounded_full_o34hyq {
|
|
51
|
-
border-radius: 9999px;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.input-module_size_32_o34hyq {
|
|
55
|
-
border-radius: 8px;
|
|
56
|
-
min-height: 32px;
|
|
57
|
-
padding: 0 8px;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.input-module_size_36_o34hyq {
|
|
61
|
-
border-radius: 9px;
|
|
62
|
-
min-height: 36px;
|
|
63
|
-
padding: 0 10px;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.input-module_size_40_o34hyq {
|
|
67
|
-
border-radius: 10px;
|
|
68
|
-
min-height: 40px;
|
|
69
|
-
padding: 0 12px;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.input-module_size_44_o34hyq {
|
|
73
|
-
border-radius: 11px;
|
|
74
|
-
min-height: 44px;
|
|
75
|
-
padding: 0 14px;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
.input-module_size_48_o34hyq {
|
|
79
|
-
border-radius: 12px;
|
|
80
|
-
min-height: 48px;
|
|
81
|
-
padding: 0 16px;
|
|
82
|
-
}
|
|
83
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import './input.css';
|
|
2
|
-
//#region src/components/input/input.module.css
|
|
3
|
-
var input_module_default = {
|
|
4
|
-
"base": "input-module_base_o34hyq",
|
|
5
|
-
"rounded_base": "input-module_rounded_base_o34hyq",
|
|
6
|
-
"rounded_full": "input-module_rounded_full_o34hyq",
|
|
7
|
-
"size_32": "input-module_size_32_o34hyq",
|
|
8
|
-
"size_36": "input-module_size_36_o34hyq",
|
|
9
|
-
"size_40": "input-module_size_40_o34hyq",
|
|
10
|
-
"size_44": "input-module_size_44_o34hyq",
|
|
11
|
-
"size_48": "input-module_size_48_o34hyq"
|
|
12
|
-
};
|
|
13
|
-
//#endregion
|
|
14
|
-
export { input_module_default as default };
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
@layer components {
|
|
2
|
-
.menu-submenu-trigger-module_base_XujWGq[data-popup-open] {
|
|
3
|
-
background-color: var(--color-gray-3);
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.menu-submenu-trigger-module_icon_XujWGq {
|
|
7
|
-
color: var(--color-text-secondary);
|
|
8
|
-
flex-shrink: 0;
|
|
9
|
-
justify-content: center;
|
|
10
|
-
align-items: center;
|
|
11
|
-
width: 16px;
|
|
12
|
-
height: 16px;
|
|
13
|
-
margin-left: auto;
|
|
14
|
-
display: flex;
|
|
15
|
-
}
|
|
16
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import './menu-submenu-trigger.css';
|
|
2
|
-
//#region src/components/menu/menu-submenu-trigger.module.css
|
|
3
|
-
var menu_submenu_trigger_module_default = {
|
|
4
|
-
"base": "menu-submenu-trigger-module_base_XujWGq",
|
|
5
|
-
"icon": "menu-submenu-trigger-module_icon_XujWGq"
|
|
6
|
-
};
|
|
7
|
-
//#endregion
|
|
8
|
-
export { menu_submenu_trigger_module_default as default };
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
@layer components {
|
|
2
|
-
.otp-field-input-module_base_7VaNVa {
|
|
3
|
-
background-color: var(--color-gray-3);
|
|
4
|
-
box-shadow: inset 0 0 0 1px var(--color-border);
|
|
5
|
-
color: var(--color-text-primary);
|
|
6
|
-
outline-color: var(--color-outline);
|
|
7
|
-
outline-offset: -2px;
|
|
8
|
-
text-align: center;
|
|
9
|
-
border-radius: 14px;
|
|
10
|
-
outline-width: 0;
|
|
11
|
-
outline-style: solid;
|
|
12
|
-
width: 40px;
|
|
13
|
-
height: 48px;
|
|
14
|
-
font-size: 14px;
|
|
15
|
-
font-weight: 450;
|
|
16
|
-
transition-property: box-shadow;
|
|
17
|
-
transition-duration: .15s;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.otp-field-input-module_base_7VaNVa:enabled:hover {
|
|
21
|
-
box-shadow: inset 0 0 0 1px var(--color-gray-6);
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.otp-field-input-module_base_7VaNVa:disabled {
|
|
25
|
-
cursor: not-allowed;
|
|
26
|
-
opacity: .5;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.otp-field-input-module_base_7VaNVa:focus-visible {
|
|
30
|
-
outline-width: 2px;
|
|
31
|
-
}
|
|
32
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import './otp-field.css';
|
|
2
|
-
//#region src/components/otp-field/otp-field.module.css
|
|
3
|
-
var otp_field_module_default = {
|
|
4
|
-
"base": "otp-field-module_base_6ylpka",
|
|
5
|
-
"masked": "otp-field-module_masked_6ylpka"
|
|
6
|
-
};
|
|
7
|
-
//#endregion
|
|
8
|
-
export { otp_field_module_default as default };
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
@layer components {
|
|
2
|
-
.picker-group-module_base_7MpjwG {
|
|
3
|
-
flex-direction: column;
|
|
4
|
-
row-gap: 2px;
|
|
5
|
-
display: flex;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.picker-group-module_label_7MpjwG {
|
|
9
|
-
color: var(--color-text-secondary);
|
|
10
|
-
padding: 6px 12px 4px;
|
|
11
|
-
font-size: 12px;
|
|
12
|
-
font-weight: 450;
|
|
13
|
-
}
|
|
14
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import './picker-group.css';
|
|
2
|
-
//#region src/components/picker/picker-group.module.css
|
|
3
|
-
var picker_group_module_default = {
|
|
4
|
-
"base": "picker-group-module_base_7MpjwG",
|
|
5
|
-
"label": "picker-group-module_label_7MpjwG"
|
|
6
|
-
};
|
|
7
|
-
//#endregion
|
|
8
|
-
export { picker_group_module_default as default };
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
@layer components {
|
|
2
|
-
.picker-item-module_base__oYUvq {
|
|
3
|
-
cursor: pointer;
|
|
4
|
-
user-select: none;
|
|
5
|
-
border-radius: 8px;
|
|
6
|
-
outline: none;
|
|
7
|
-
flex-shrink: 0;
|
|
8
|
-
align-items: center;
|
|
9
|
-
column-gap: 8px;
|
|
10
|
-
height: 36px;
|
|
11
|
-
padding: 0 12px;
|
|
12
|
-
display: flex;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.picker-item-module_base__oYUvq[data-disabled] {
|
|
16
|
-
cursor: not-allowed;
|
|
17
|
-
opacity: .5;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.picker-item-module_base__oYUvq[data-highlighted]:not([data-disabled]), .picker-item-module_base__oYUvq[data-highlighted][data-disabled]:not(:hover) {
|
|
21
|
-
background-color: var(--color-gray-3);
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.picker-item-module_label__oYUvq {
|
|
25
|
-
color: var(--color-text-primary);
|
|
26
|
-
text-overflow: ellipsis;
|
|
27
|
-
white-space: nowrap;
|
|
28
|
-
font-size: 14px;
|
|
29
|
-
font-weight: 450;
|
|
30
|
-
overflow-x: hidden;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.picker-item-module_indicator__oYUvq {
|
|
34
|
-
color: var(--color-primary-9);
|
|
35
|
-
flex-shrink: 0;
|
|
36
|
-
justify-content: center;
|
|
37
|
-
align-items: center;
|
|
38
|
-
width: 16px;
|
|
39
|
-
height: 16px;
|
|
40
|
-
margin-left: auto;
|
|
41
|
-
display: flex;
|
|
42
|
-
}
|
|
43
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import './picker-item.css';
|
|
2
|
-
//#region src/components/picker/picker-item.module.css
|
|
3
|
-
var picker_item_module_default = {
|
|
4
|
-
"base": "picker-item-module_base__oYUvq",
|
|
5
|
-
"indicator": "picker-item-module_indicator__oYUvq",
|
|
6
|
-
"label": "picker-item-module_label__oYUvq"
|
|
7
|
-
};
|
|
8
|
-
//#endregion
|
|
9
|
-
export { picker_item_module_default as default };
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
@layer components {
|
|
2
|
-
.picker-list-module_base_DdtSga {
|
|
3
|
-
overscroll-behavior: contain;
|
|
4
|
-
flex-direction: column;
|
|
5
|
-
row-gap: 2px;
|
|
6
|
-
padding: 4px;
|
|
7
|
-
scroll-padding: 4px;
|
|
8
|
-
display: flex;
|
|
9
|
-
overflow-y: auto;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.picker-list-module_base_DdtSga[data-empty] {
|
|
13
|
-
display: none;
|
|
14
|
-
}
|
|
15
|
-
}
|