@uzum-tech/ui 2.0.0-beta.3 → 2.0.0-beta.5
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/dist/index.js +2467 -1507
- package/dist/index.mjs +2461 -1506
- package/dist/index.prod.js +2 -2
- package/dist/index.prod.mjs +2 -2
- package/es/_internal/component-renderer/index.d.ts +2 -0
- package/es/_internal/component-renderer/index.mjs +1 -0
- package/es/_internal/component-renderer/src/interface.d.ts +29 -0
- package/es/_internal/component-renderer/src/interface.mjs +1 -0
- package/es/_internal/component-renderer/src/renderer.d.ts +3 -0
- package/es/_internal/component-renderer/src/renderer.mjs +20 -0
- package/es/_internal/select-menu/src/SelectOption.mjs +9 -5
- package/es/_internal/select-menu/src/styles/index.cssr.mjs +4 -3
- package/es/_internal/selection/src/styles/index.cssr.mjs +3 -0
- package/es/card-list/src/CardList.d.ts +1 -1
- package/es/checkbox/src/Checkbox.d.ts +2 -2
- package/es/components.d.ts +1 -0
- package/es/components.mjs +1 -0
- package/es/config-provider/src/internal-interface.d.ts +3 -1
- package/es/data-table/src/DataTable.d.ts +25 -5
- package/es/data-table/src/DataTable.mjs +125 -4
- package/es/data-table/src/HeaderButton/FilterMenu.mjs +1 -1
- package/es/data-table/src/TableParts/Body.d.ts +9 -6
- package/es/data-table/src/TableParts/Body.mjs +30 -6
- package/es/data-table/src/TableParts/Cell.mjs +17 -17
- package/es/data-table/src/TableParts/Header.d.ts +4 -2
- package/es/data-table/src/TableParts/Header.mjs +65 -22
- package/es/data-table/src/interface.d.ts +16 -0
- package/es/data-table/src/interface.mjs +9 -0
- package/es/data-table/src/use-group-header.mjs +2 -2
- package/es/data-table/src/use-mask.mjs +1 -1
- package/es/data-table/src/use-resizable.d.ts +1 -0
- package/es/data-table/src/use-resizable.mjs +5 -2
- package/es/data-table/src/use-scroll.d.ts +5 -4
- package/es/data-table/src/use-scroll.mjs +29 -25
- package/es/data-table/src/use-sorter.mjs +1 -1
- package/es/data-table/src/use-table-data.mjs +1 -1
- package/es/data-table/src/utils/column-utils.d.ts +13 -0
- package/es/data-table/src/utils/column-utils.mjs +84 -0
- package/es/data-table/src/utils/csv-utils.d.ts +3 -0
- package/es/data-table/src/utils/csv-utils.mjs +21 -0
- package/es/data-table/src/utils/index.d.ts +7 -0
- package/es/data-table/src/utils/index.mjs +7 -0
- package/es/data-table/src/utils/mask-defaults.d.ts +6 -0
- package/es/data-table/src/utils/mask-defaults.mjs +16 -0
- package/es/data-table/src/utils/resize-orchestrator-utils.d.ts +6 -0
- package/es/data-table/src/utils/resize-orchestrator-utils.mjs +21 -0
- package/es/data-table/src/utils/sort-filter-utils.d.ts +6 -0
- package/es/data-table/src/utils/sort-filter-utils.mjs +38 -0
- package/es/data-table/src/utils/width-utils.d.ts +20 -0
- package/es/data-table/src/utils/width-utils.mjs +174 -0
- package/es/data-table/src/utils.d.ts +1 -25
- package/es/data-table/src/utils.mjs +1 -165
- package/es/grid/src/Grid.d.ts +1 -1
- package/es/header/src/HeaderSearchResults.d.ts +1 -1
- package/es/icon-bar/src/IconBar.d.ts +1 -1
- package/es/input/src/Input.d.ts +1 -1
- package/es/list/src/ListItem.d.ts +2 -2
- package/es/list/src/ListItem.mjs +19 -12
- package/es/list/src/props.d.ts +3 -1
- package/es/list/src/styles/index.cssr.mjs +4 -2
- package/es/locales/common/enUS.d.ts +6 -0
- package/es/locales/common/enUS.mjs +6 -0
- package/es/locales/common/ruRU.mjs +6 -0
- package/es/mapping-card/index.d.ts +7 -0
- package/es/mapping-card/index.mjs +4 -0
- package/es/mapping-card/src/MappingCard.d.ts +2091 -0
- package/es/mapping-card/src/MappingCard.mjs +77 -0
- package/es/mapping-card/src/MappingCardList.d.ts +36 -0
- package/es/mapping-card/src/MappingCardList.mjs +50 -0
- package/es/mapping-card/src/MappingCardParts/Body.d.ts +4 -0
- package/es/mapping-card/src/MappingCardParts/Body.mjs +66 -0
- package/es/mapping-card/src/MappingCardParts/Header.d.ts +7 -0
- package/es/mapping-card/src/MappingCardParts/Header.mjs +147 -0
- package/es/mapping-card/src/injection.d.ts +17 -0
- package/es/mapping-card/src/injection.mjs +2 -0
- package/es/mapping-card/src/interface.d.ts +105 -0
- package/es/mapping-card/src/interface.mjs +45 -0
- package/es/mapping-card/src/styles/index.cssr.d.ts +2 -0
- package/es/mapping-card/src/styles/index.cssr.mjs +92 -0
- package/es/mapping-card/styles/dark.d.ts +337 -0
- package/es/mapping-card/styles/dark.mjs +22 -0
- package/es/mapping-card/styles/index.d.ts +3 -0
- package/es/mapping-card/styles/index.mjs +2 -0
- package/es/mapping-card/styles/light.d.ts +352 -0
- package/es/mapping-card/styles/light.mjs +45 -0
- package/es/progress/src/MultipleCircle.d.ts +1 -1
- package/es/radio/src/Radio.d.ts +1 -1
- package/es/radio/src/RadioButton.d.ts +3 -3
- package/es/tabs/src/Tabs.d.ts +2 -6
- package/es/themes/dark.mjs +2 -0
- package/es/themes/light.mjs +2 -0
- package/es/toggle-button/src/ToggleButton.d.ts +2 -2
- package/es/version.d.ts +1 -1
- package/es/version.mjs +1 -1
- package/lib/_internal/component-renderer/index.d.ts +2 -0
- package/lib/_internal/component-renderer/index.js +5 -0
- package/lib/_internal/component-renderer/src/interface.d.ts +29 -0
- package/lib/_internal/component-renderer/src/interface.js +2 -0
- package/lib/_internal/component-renderer/src/renderer.d.ts +3 -0
- package/lib/_internal/component-renderer/src/renderer.js +28 -0
- package/lib/_internal/select-menu/src/SelectOption.js +11 -12
- package/lib/_internal/select-menu/src/styles/index.cssr.js +4 -3
- package/lib/_internal/selection/src/styles/index.cssr.js +3 -0
- package/lib/card-list/src/CardList.d.ts +1 -1
- package/lib/checkbox/src/Checkbox.d.ts +2 -2
- package/lib/components.d.ts +1 -0
- package/lib/components.js +1 -0
- package/lib/config-provider/src/internal-interface.d.ts +3 -1
- package/lib/data-table/src/DataTable.d.ts +25 -5
- package/lib/data-table/src/DataTable.js +131 -4
- package/lib/data-table/src/TableParts/Body.d.ts +9 -6
- package/lib/data-table/src/TableParts/Body.js +30 -8
- package/lib/data-table/src/TableParts/Cell.js +16 -16
- package/lib/data-table/src/TableParts/Header.d.ts +4 -2
- package/lib/data-table/src/TableParts/Header.js +55 -23
- package/lib/data-table/src/interface.d.ts +16 -0
- package/lib/data-table/src/interface.js +6 -0
- package/lib/data-table/src/use-group-header.js +1 -1
- package/lib/data-table/src/use-resizable.d.ts +1 -0
- package/lib/data-table/src/use-resizable.js +5 -2
- package/lib/data-table/src/use-scroll.d.ts +5 -4
- package/lib/data-table/src/use-scroll.js +31 -28
- package/lib/data-table/src/utils/column-utils.d.ts +13 -0
- package/lib/data-table/src/utils/column-utils.js +116 -0
- package/lib/data-table/src/utils/csv-utils.d.ts +3 -0
- package/lib/data-table/src/utils/csv-utils.js +34 -0
- package/lib/data-table/src/utils/index.d.ts +7 -0
- package/lib/data-table/src/utils/index.js +26 -0
- package/lib/data-table/src/utils/mask-defaults.d.ts +6 -0
- package/lib/data-table/src/utils/mask-defaults.js +22 -0
- package/lib/data-table/src/utils/resize-orchestrator-utils.d.ts +6 -0
- package/lib/data-table/src/utils/resize-orchestrator-utils.js +35 -0
- package/lib/data-table/src/utils/sort-filter-utils.d.ts +6 -0
- package/lib/data-table/src/utils/sort-filter-utils.js +54 -0
- package/lib/data-table/src/utils/width-utils.d.ts +20 -0
- package/lib/data-table/src/utils/width-utils.js +182 -0
- package/lib/data-table/src/utils.d.ts +1 -25
- package/lib/data-table/src/utils.js +15 -229
- package/lib/grid/src/Grid.d.ts +1 -1
- package/lib/header/src/HeaderSearchResults.d.ts +1 -1
- package/lib/icon-bar/src/IconBar.d.ts +1 -1
- package/lib/input/src/Input.d.ts +1 -1
- package/lib/list/src/ListItem.d.ts +2 -2
- package/lib/list/src/ListItem.js +31 -10
- package/lib/list/src/props.d.ts +3 -1
- package/lib/list/src/styles/index.cssr.js +4 -2
- package/lib/locales/common/enUS.d.ts +6 -0
- package/lib/locales/common/enUS.js +6 -0
- package/lib/locales/common/ruRU.js +6 -0
- package/lib/mapping-card/index.d.ts +7 -0
- package/lib/mapping-card/index.js +15 -0
- package/lib/mapping-card/src/MappingCard.d.ts +2091 -0
- package/lib/mapping-card/src/MappingCard.js +58 -0
- package/lib/mapping-card/src/MappingCardList.d.ts +36 -0
- package/lib/mapping-card/src/MappingCardList.js +38 -0
- package/lib/mapping-card/src/MappingCardParts/Body.d.ts +4 -0
- package/lib/mapping-card/src/MappingCardParts/Body.js +48 -0
- package/lib/mapping-card/src/MappingCardParts/Header.d.ts +7 -0
- package/lib/mapping-card/src/MappingCardParts/Header.js +77 -0
- package/lib/mapping-card/src/injection.d.ts +17 -0
- package/lib/mapping-card/src/injection.js +5 -0
- package/lib/mapping-card/src/interface.d.ts +105 -0
- package/lib/mapping-card/src/interface.js +48 -0
- package/lib/mapping-card/src/styles/index.cssr.d.ts +2 -0
- package/lib/mapping-card/src/styles/index.cssr.js +97 -0
- package/lib/mapping-card/styles/dark.d.ts +337 -0
- package/lib/mapping-card/styles/dark.js +24 -0
- package/lib/mapping-card/styles/index.d.ts +3 -0
- package/lib/mapping-card/styles/index.js +10 -0
- package/lib/mapping-card/styles/light.d.ts +352 -0
- package/lib/mapping-card/styles/light.js +40 -0
- package/lib/progress/src/MultipleCircle.d.ts +1 -1
- package/lib/radio/src/Radio.d.ts +1 -1
- package/lib/radio/src/RadioButton.d.ts +3 -3
- package/lib/tabs/src/Tabs.d.ts +2 -6
- package/lib/themes/dark.js +84 -82
- package/lib/themes/light.js +82 -80
- package/lib/toggle-button/src/ToggleButton.d.ts +2 -2
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/volar.d.ts +2 -0
- package/web-types.json +207 -2
|
@@ -0,0 +1,352 @@
|
|
|
1
|
+
import type { ThemeCommonVars } from '../../_styles/common';
|
|
2
|
+
export declare function self(vars: ThemeCommonVars): {
|
|
3
|
+
backgroundColor: string;
|
|
4
|
+
borderColor: string;
|
|
5
|
+
borderRadius: string;
|
|
6
|
+
dividerBackgroundColor: string;
|
|
7
|
+
headerPadding: string;
|
|
8
|
+
bodyPadding: string;
|
|
9
|
+
titleColor: string;
|
|
10
|
+
descriptionColor: string;
|
|
11
|
+
arrowColor: string;
|
|
12
|
+
colLabelColor: string;
|
|
13
|
+
colLabelFontSize: string;
|
|
14
|
+
};
|
|
15
|
+
export type MappingCardThemeVars = ReturnType<typeof self>;
|
|
16
|
+
declare const mappingCardLight: import("../../_mixins").Theme<"MappingCard", {
|
|
17
|
+
backgroundColor: string;
|
|
18
|
+
borderColor: string;
|
|
19
|
+
borderRadius: string;
|
|
20
|
+
dividerBackgroundColor: string;
|
|
21
|
+
headerPadding: string;
|
|
22
|
+
bodyPadding: string;
|
|
23
|
+
titleColor: string;
|
|
24
|
+
descriptionColor: string;
|
|
25
|
+
arrowColor: string;
|
|
26
|
+
colLabelColor: string;
|
|
27
|
+
colLabelFontSize: string;
|
|
28
|
+
}, {
|
|
29
|
+
Button: import("../../_mixins").Theme<"Button", {
|
|
30
|
+
heightTiny: string;
|
|
31
|
+
heightSmall: string;
|
|
32
|
+
heightMedium: string;
|
|
33
|
+
heightLarge: string;
|
|
34
|
+
borderRadiusTiny: string;
|
|
35
|
+
borderRadiusSmall: string;
|
|
36
|
+
borderRadiusMedium: string;
|
|
37
|
+
borderRadiusLarge: string;
|
|
38
|
+
fontSizeTiny: string;
|
|
39
|
+
fontSizeSmall: string;
|
|
40
|
+
fontSizeMedium: string;
|
|
41
|
+
fontSizeLarge: string;
|
|
42
|
+
opacityDisabled: string;
|
|
43
|
+
colorOpacitySecondary: string;
|
|
44
|
+
colorOpacitySecondaryHover: string;
|
|
45
|
+
colorOpacitySecondaryPressed: string;
|
|
46
|
+
colorOpacitySecondaryFocus: string;
|
|
47
|
+
colorSecondary: string;
|
|
48
|
+
colorSecondaryHover: string;
|
|
49
|
+
colorSecondaryPressed: string;
|
|
50
|
+
colorSecondaryFocus: string;
|
|
51
|
+
colorSecondaryDisabled: string;
|
|
52
|
+
textColorSecondaryDisabled: string;
|
|
53
|
+
waveColorSecondary: string;
|
|
54
|
+
colorTertiary: string;
|
|
55
|
+
colorTertiaryHover: string;
|
|
56
|
+
colorTertiaryPressed: string;
|
|
57
|
+
colorTertiaryFocus: string;
|
|
58
|
+
colorTertiaryDisalbed: string;
|
|
59
|
+
waveColorTertiary: string;
|
|
60
|
+
textColorTextTertiary: string;
|
|
61
|
+
rippleColorTertiary: string;
|
|
62
|
+
colorQuaternary: string;
|
|
63
|
+
colorQuaternaryHover: string;
|
|
64
|
+
colorQuaternaryPressed: string;
|
|
65
|
+
colorQuaternaryFocus: string;
|
|
66
|
+
rippleColorQuaternary: string;
|
|
67
|
+
waveColorQuaternary: string;
|
|
68
|
+
color: string;
|
|
69
|
+
colorHover: string;
|
|
70
|
+
colorPressed: string;
|
|
71
|
+
colorFocus: string;
|
|
72
|
+
colorDisabled: string;
|
|
73
|
+
textColor: string;
|
|
74
|
+
textTertiary: string;
|
|
75
|
+
textColorTertiary: string;
|
|
76
|
+
textColorHover: string;
|
|
77
|
+
textColorPressed: string;
|
|
78
|
+
textColorFocus: string;
|
|
79
|
+
textColorDisabled: string;
|
|
80
|
+
textColorText: string;
|
|
81
|
+
textColorTextHover: string;
|
|
82
|
+
textColorTextPressed: string;
|
|
83
|
+
textColorTextFocus: string;
|
|
84
|
+
textColorTextDisabled: string;
|
|
85
|
+
textColorGhost: string;
|
|
86
|
+
textColorGhostHover: string;
|
|
87
|
+
textColorGhostPressed: string;
|
|
88
|
+
textColorGhostFocus: string;
|
|
89
|
+
textColorGhostDisabled: string;
|
|
90
|
+
border: string;
|
|
91
|
+
borderHover: string;
|
|
92
|
+
borderPressed: string;
|
|
93
|
+
borderFocus: string;
|
|
94
|
+
borderDisabled: string;
|
|
95
|
+
rippleColor: string;
|
|
96
|
+
colorPrimary: string;
|
|
97
|
+
colorHoverPrimary: string;
|
|
98
|
+
colorPressedPrimary: string;
|
|
99
|
+
colorFocusPrimary: string;
|
|
100
|
+
colorDisabledPrimary: string;
|
|
101
|
+
waveColorPrimary: string;
|
|
102
|
+
textColorPrimary: string;
|
|
103
|
+
textColorHoverPrimary: string;
|
|
104
|
+
textColorPressedPrimary: string;
|
|
105
|
+
textColorFocusPrimary: string;
|
|
106
|
+
textColorDisabledPrimary: string;
|
|
107
|
+
textColorTextPrimary: string;
|
|
108
|
+
textColorTextHoverPrimary: string;
|
|
109
|
+
textColorTextPressedPrimary: string;
|
|
110
|
+
textColorTextFocusPrimary: string;
|
|
111
|
+
textColorTextDisabledPrimary: string;
|
|
112
|
+
textColorGhostPrimary: string;
|
|
113
|
+
textColorGhostHoverPrimary: string;
|
|
114
|
+
textColorGhostPressedPrimary: string;
|
|
115
|
+
textColorGhostFocusPrimary: string;
|
|
116
|
+
textColorGhostDisabledPrimary: string;
|
|
117
|
+
borderPrimary: string;
|
|
118
|
+
borderHoverPrimary: string;
|
|
119
|
+
borderPressedPrimary: string;
|
|
120
|
+
borderFocusPrimary: string;
|
|
121
|
+
borderDisabledPrimary: string;
|
|
122
|
+
rippleColorPrimary: string;
|
|
123
|
+
colorInfo: string;
|
|
124
|
+
colorHoverInfo: string;
|
|
125
|
+
colorPressedInfo: string;
|
|
126
|
+
colorFocusInfo: string;
|
|
127
|
+
colorDisabledInfo: string;
|
|
128
|
+
textColorInfo: string;
|
|
129
|
+
textColorHoverInfo: string;
|
|
130
|
+
textColorPressedInfo: string;
|
|
131
|
+
textColorFocusInfo: string;
|
|
132
|
+
textColorDisabledInfo: string;
|
|
133
|
+
textColorTextInfo: string;
|
|
134
|
+
textColorTextHoverInfo: string;
|
|
135
|
+
textColorTextPressedInfo: string;
|
|
136
|
+
textColorTextFocusInfo: string;
|
|
137
|
+
textColorTextDisabledInfo: string;
|
|
138
|
+
textColorGhostInfo: string;
|
|
139
|
+
textColorGhostHoverInfo: string;
|
|
140
|
+
textColorGhostPressedInfo: string;
|
|
141
|
+
textColorGhostFocusInfo: string;
|
|
142
|
+
textColorGhostDisabledInfo: string;
|
|
143
|
+
borderInfo: string;
|
|
144
|
+
borderHoverInfo: string;
|
|
145
|
+
borderPressedInfo: string;
|
|
146
|
+
borderFocusInfo: string;
|
|
147
|
+
borderDisabledInfo: string;
|
|
148
|
+
rippleColorInfo: string;
|
|
149
|
+
colorSuccess: string;
|
|
150
|
+
colorHoverSuccess: string;
|
|
151
|
+
colorPressedSuccess: string;
|
|
152
|
+
colorFocusSuccess: string;
|
|
153
|
+
colorDisabledSuccess: string;
|
|
154
|
+
textColorSuccess: string;
|
|
155
|
+
textColorHoverSuccess: string;
|
|
156
|
+
textColorPressedSuccess: string;
|
|
157
|
+
textColorFocusSuccess: string;
|
|
158
|
+
textColorDisabledSuccess: string;
|
|
159
|
+
textColorTextSuccess: string;
|
|
160
|
+
textColorTextHoverSuccess: string;
|
|
161
|
+
textColorTextPressedSuccess: string;
|
|
162
|
+
textColorTextFocusSuccess: string;
|
|
163
|
+
textColorTextDisabledSuccess: string;
|
|
164
|
+
textColorGhostSuccess: string;
|
|
165
|
+
textColorGhostHoverSuccess: string;
|
|
166
|
+
textColorGhostPressedSuccess: string;
|
|
167
|
+
textColorGhostFocusSuccess: string;
|
|
168
|
+
textColorGhostDisabledSuccess: string;
|
|
169
|
+
borderSuccess: string;
|
|
170
|
+
borderHoverSuccess: string;
|
|
171
|
+
borderPressedSuccess: string;
|
|
172
|
+
borderFocusSuccess: string;
|
|
173
|
+
borderDisabledSuccess: string;
|
|
174
|
+
rippleColorSuccess: string;
|
|
175
|
+
colorWarning: string;
|
|
176
|
+
colorHoverWarning: string;
|
|
177
|
+
colorPressedWarning: string;
|
|
178
|
+
colorFocusWarning: string;
|
|
179
|
+
colorDisabledWarning: string;
|
|
180
|
+
textColorWarning: string;
|
|
181
|
+
textColorHoverWarning: string;
|
|
182
|
+
textColorPressedWarning: string;
|
|
183
|
+
textColorFocusWarning: string;
|
|
184
|
+
textColorDisabledWarning: string;
|
|
185
|
+
textColorTextWarning: string;
|
|
186
|
+
textColorTextHoverWarning: string;
|
|
187
|
+
textColorTextPressedWarning: string;
|
|
188
|
+
textColorTextFocusWarning: string;
|
|
189
|
+
textColorTextDisabledWarning: string;
|
|
190
|
+
textColorGhostWarning: string;
|
|
191
|
+
textColorGhostHoverWarning: string;
|
|
192
|
+
textColorGhostPressedWarning: string;
|
|
193
|
+
textColorGhostFocusWarning: string;
|
|
194
|
+
textColorGhostDisabledWarning: string;
|
|
195
|
+
borderWarning: string;
|
|
196
|
+
borderHoverWarning: string;
|
|
197
|
+
borderPressedWarning: string;
|
|
198
|
+
borderFocusWarning: string;
|
|
199
|
+
borderDisabledWarning: string;
|
|
200
|
+
rippleColorWarning: string;
|
|
201
|
+
colorError: string;
|
|
202
|
+
colorHoverError: string;
|
|
203
|
+
colorPressedError: string;
|
|
204
|
+
colorFocusError: string;
|
|
205
|
+
colorDisabledError: string;
|
|
206
|
+
textColorError: string;
|
|
207
|
+
textColorHoverError: string;
|
|
208
|
+
textColorPressedError: string;
|
|
209
|
+
textColorFocusError: string;
|
|
210
|
+
textColorDisabledError: string;
|
|
211
|
+
textColorTextError: string;
|
|
212
|
+
textColorTextHoverError: string;
|
|
213
|
+
textColorTextPressedError: string;
|
|
214
|
+
textColorTextFocusError: string;
|
|
215
|
+
textColorTextDisabledError: string;
|
|
216
|
+
textColorGhostError: string;
|
|
217
|
+
textColorGhostHoverError: string;
|
|
218
|
+
textColorGhostPressedError: string;
|
|
219
|
+
textColorGhostFocusError: string;
|
|
220
|
+
textColorGhostDisabledError: string;
|
|
221
|
+
borderError: string;
|
|
222
|
+
borderHoverError: string;
|
|
223
|
+
borderPressedError: string;
|
|
224
|
+
borderFocusError: string;
|
|
225
|
+
borderDisabledError: string;
|
|
226
|
+
rippleColorError: string;
|
|
227
|
+
waveOpacity: string;
|
|
228
|
+
fontWeight: string;
|
|
229
|
+
fontWeightStrong: string;
|
|
230
|
+
paddingTiny: string;
|
|
231
|
+
paddingSmall: string;
|
|
232
|
+
paddingMedium: string;
|
|
233
|
+
paddingLarge: string;
|
|
234
|
+
paddingRoundTiny: string;
|
|
235
|
+
paddingRoundSmall: string;
|
|
236
|
+
paddingRoundMedium: string;
|
|
237
|
+
paddingRoundLarge: string;
|
|
238
|
+
iconMarginTiny: string;
|
|
239
|
+
iconMarginSmall: string;
|
|
240
|
+
iconMarginMedium: string;
|
|
241
|
+
iconMarginLarge: string;
|
|
242
|
+
iconSizeTiny: string;
|
|
243
|
+
iconSizeSmall: string;
|
|
244
|
+
iconSizeMedium: string;
|
|
245
|
+
iconSizeLarge: string;
|
|
246
|
+
rippleDuration: string;
|
|
247
|
+
}, any>;
|
|
248
|
+
Icon: import("../../_mixins").Theme<"Icon", {
|
|
249
|
+
color: string;
|
|
250
|
+
opacity1Depth: string;
|
|
251
|
+
opacity2Depth: string;
|
|
252
|
+
opacity3Depth: string;
|
|
253
|
+
opacity4Depth: string;
|
|
254
|
+
opacity5Depth: string;
|
|
255
|
+
}, any>;
|
|
256
|
+
Switch: import("../../_mixins").Theme<"Switch", {
|
|
257
|
+
buttonHeightSmall: string;
|
|
258
|
+
buttonHeightMedium: string;
|
|
259
|
+
buttonHeightLarge: string;
|
|
260
|
+
buttonWidthSmall: string;
|
|
261
|
+
buttonWidthMedium: string;
|
|
262
|
+
buttonWidthLarge: string;
|
|
263
|
+
buttonWidthPressedSmall: string;
|
|
264
|
+
buttonWidthPressedMedium: string;
|
|
265
|
+
buttonWidthPressedLarge: string;
|
|
266
|
+
railHeightSmall: string;
|
|
267
|
+
railHeightMedium: string;
|
|
268
|
+
railHeightLarge: string;
|
|
269
|
+
railWidthSmall: string;
|
|
270
|
+
railWidthMedium: string;
|
|
271
|
+
railWidthLarge: string;
|
|
272
|
+
iconColor: string;
|
|
273
|
+
textColor: string;
|
|
274
|
+
loadingColor: string;
|
|
275
|
+
loadingColorActive: string;
|
|
276
|
+
opacityDisabled: string;
|
|
277
|
+
railColor: string;
|
|
278
|
+
railColorActive: string;
|
|
279
|
+
railColorActiveDisabled: string;
|
|
280
|
+
buttonBoxShadow: string;
|
|
281
|
+
buttonBoxShadowHover: string;
|
|
282
|
+
buttonBoxShadowCheckedHover: string;
|
|
283
|
+
buttonBoxShadowChecked: string;
|
|
284
|
+
buttonColor: string;
|
|
285
|
+
buttonColorDisabled: string;
|
|
286
|
+
railBorderRadiusSmall: string;
|
|
287
|
+
railBorderRadiusMedium: string;
|
|
288
|
+
railBorderRadiusLarge: string;
|
|
289
|
+
buttonBorderRadiusSmall: string;
|
|
290
|
+
buttonBorderRadiusMedium: string;
|
|
291
|
+
buttonBorderRadiusLarge: string;
|
|
292
|
+
boxShadowFocus: string;
|
|
293
|
+
}, any>;
|
|
294
|
+
Tooltip: import("../../_mixins").Theme<"Tooltip", {
|
|
295
|
+
padding: string;
|
|
296
|
+
textPadding: string;
|
|
297
|
+
titleSize: string;
|
|
298
|
+
titleWeight: string;
|
|
299
|
+
titleLineHeight: string;
|
|
300
|
+
subtitleSize: string;
|
|
301
|
+
subtitleMargin: string;
|
|
302
|
+
subtitleWeight: string;
|
|
303
|
+
subtitleLineHeight: string;
|
|
304
|
+
iconSize: string;
|
|
305
|
+
arrowSpace: string;
|
|
306
|
+
noArrowSpace: string;
|
|
307
|
+
borderRadius: string;
|
|
308
|
+
color: string;
|
|
309
|
+
textColor: string;
|
|
310
|
+
}, {
|
|
311
|
+
Popover: import("../../_mixins").Theme<"Popover", {
|
|
312
|
+
space: string;
|
|
313
|
+
spaceArrow: string;
|
|
314
|
+
arrowOffset: string;
|
|
315
|
+
arrowOffsetVertical: string;
|
|
316
|
+
arrowHeight: string;
|
|
317
|
+
padding: string;
|
|
318
|
+
fontSize: string;
|
|
319
|
+
borderRadius: string;
|
|
320
|
+
color: string;
|
|
321
|
+
dividerColor: string;
|
|
322
|
+
textColor: string;
|
|
323
|
+
boxShadow: string;
|
|
324
|
+
}, any>;
|
|
325
|
+
}>;
|
|
326
|
+
EditIcon: import("../../_mixins").Theme<"Icon", {
|
|
327
|
+
color: string;
|
|
328
|
+
opacity1Depth: string;
|
|
329
|
+
opacity2Depth: string;
|
|
330
|
+
opacity3Depth: string;
|
|
331
|
+
opacity4Depth: string;
|
|
332
|
+
opacity5Depth: string;
|
|
333
|
+
}, any>;
|
|
334
|
+
DeleteIcon: import("../../_mixins").Theme<"Icon", {
|
|
335
|
+
color: string;
|
|
336
|
+
opacity1Depth: string;
|
|
337
|
+
opacity2Depth: string;
|
|
338
|
+
opacity3Depth: string;
|
|
339
|
+
opacity4Depth: string;
|
|
340
|
+
opacity5Depth: string;
|
|
341
|
+
}, any>;
|
|
342
|
+
CopyIcon: import("../../_mixins").Theme<"Icon", {
|
|
343
|
+
color: string;
|
|
344
|
+
opacity1Depth: string;
|
|
345
|
+
opacity2Depth: string;
|
|
346
|
+
opacity3Depth: string;
|
|
347
|
+
opacity4Depth: string;
|
|
348
|
+
opacity5Depth: string;
|
|
349
|
+
}, any>;
|
|
350
|
+
}>;
|
|
351
|
+
export default mappingCardLight;
|
|
352
|
+
export type MappingCardTheme = typeof mappingCardLight;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { createTheme } from "../../_mixins/index.mjs";
|
|
2
|
+
import { commonLight } from "../../_styles/common/index.mjs";
|
|
3
|
+
import { buttonLight } from "../../button/styles/index.mjs";
|
|
4
|
+
import { iconLight } from "../../icon/styles/index.mjs";
|
|
5
|
+
import { switchLight } from "../../switch/styles/index.mjs";
|
|
6
|
+
import { tooltipLight } from "../../tooltip/styles/index.mjs";
|
|
7
|
+
export function self(vars) {
|
|
8
|
+
const {
|
|
9
|
+
borderRadiusLarge,
|
|
10
|
+
elementsQuaternary,
|
|
11
|
+
textPrimary,
|
|
12
|
+
textSecondary,
|
|
13
|
+
textTertiary,
|
|
14
|
+
surfacePrimary,
|
|
15
|
+
containerSecondary
|
|
16
|
+
} = vars;
|
|
17
|
+
return {
|
|
18
|
+
backgroundColor: surfacePrimary,
|
|
19
|
+
borderColor: elementsQuaternary,
|
|
20
|
+
borderRadius: borderRadiusLarge,
|
|
21
|
+
dividerBackgroundColor: containerSecondary,
|
|
22
|
+
headerPadding: '12px 24px',
|
|
23
|
+
bodyPadding: '0 0',
|
|
24
|
+
titleColor: textPrimary,
|
|
25
|
+
descriptionColor: textSecondary,
|
|
26
|
+
arrowColor: textTertiary,
|
|
27
|
+
colLabelColor: textTertiary,
|
|
28
|
+
colLabelFontSize: '11px'
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
const mappingCardLight = createTheme({
|
|
32
|
+
name: 'MappingCard',
|
|
33
|
+
common: commonLight,
|
|
34
|
+
peers: {
|
|
35
|
+
Button: buttonLight,
|
|
36
|
+
Icon: iconLight,
|
|
37
|
+
Switch: switchLight,
|
|
38
|
+
Tooltip: tooltipLight,
|
|
39
|
+
EditIcon: iconLight,
|
|
40
|
+
DeleteIcon: iconLight,
|
|
41
|
+
CopyIcon: iconLight
|
|
42
|
+
},
|
|
43
|
+
self
|
|
44
|
+
});
|
|
45
|
+
export default mappingCardLight;
|
|
@@ -76,8 +76,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
76
76
|
};
|
|
77
77
|
}>> & Readonly<{}>, {
|
|
78
78
|
railColor: string[];
|
|
79
|
-
fillColor: string[] | ProgressGradient[];
|
|
80
79
|
railStyle: (string | CSSProperties)[];
|
|
80
|
+
fillColor: string[] | ProgressGradient[];
|
|
81
81
|
percentage: number[];
|
|
82
82
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
83
83
|
export default _default;
|
package/es/radio/src/Radio.d.ts
CHANGED
|
@@ -601,8 +601,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
601
601
|
readonly value: string | number | boolean;
|
|
602
602
|
readonly disabled: boolean | undefined;
|
|
603
603
|
readonly position: "left" | "right";
|
|
604
|
+
readonly checkedValue: boolean | undefined;
|
|
604
605
|
readonly checked: boolean | undefined;
|
|
605
606
|
readonly defaultChecked: boolean;
|
|
606
|
-
readonly checkedValue: boolean | undefined;
|
|
607
607
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
608
608
|
export default _default;
|
|
@@ -36,8 +36,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
36
36
|
readonly onChange?: import("../../_internal/radio").OnChangeImpl | undefined;
|
|
37
37
|
readonly onClick?: ((event: MouseEvent) => void) | undefined;
|
|
38
38
|
readonly name?: string | undefined;
|
|
39
|
-
readonly checked?: boolean | undefined;
|
|
40
39
|
readonly checkedValue?: boolean | undefined;
|
|
40
|
+
readonly checked?: boolean | undefined;
|
|
41
41
|
readonly 'onUpdate:checked'?: import("../../_utils").MaybeArray<(value: boolean) => void> | undefined;
|
|
42
42
|
readonly onUpdateChecked?: import("../../_utils").MaybeArray<(value: boolean) => void> | undefined;
|
|
43
43
|
}, import("../../_internal").UseRadio, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
@@ -49,15 +49,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
49
49
|
readonly onChange?: import("../../_internal/radio").OnChangeImpl | undefined;
|
|
50
50
|
readonly onClick?: ((event: MouseEvent) => void) | undefined;
|
|
51
51
|
readonly name?: string | undefined;
|
|
52
|
-
readonly checked?: boolean | undefined;
|
|
53
52
|
readonly checkedValue?: boolean | undefined;
|
|
53
|
+
readonly checked?: boolean | undefined;
|
|
54
54
|
readonly 'onUpdate:checked'?: import("../../_utils").MaybeArray<(value: boolean) => void> | undefined;
|
|
55
55
|
readonly onUpdateChecked?: import("../../_utils").MaybeArray<(value: boolean) => void> | undefined;
|
|
56
56
|
}> & Readonly<{}>, {
|
|
57
57
|
readonly value: string | number | boolean;
|
|
58
58
|
readonly disabled: boolean | undefined;
|
|
59
|
+
readonly checkedValue: boolean | undefined;
|
|
59
60
|
readonly checked: boolean | undefined;
|
|
60
61
|
readonly defaultChecked: boolean;
|
|
61
|
-
readonly checkedValue: boolean | undefined;
|
|
62
62
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
63
63
|
export default _default;
|
package/es/tabs/src/Tabs.d.ts
CHANGED
|
@@ -664,9 +664,7 @@ declare const _default: import("vue").DefineComponent<ExtractPropTypes<{
|
|
|
664
664
|
$: import("vue").ComponentInternalInstance;
|
|
665
665
|
$data: {};
|
|
666
666
|
$props: {};
|
|
667
|
-
$attrs:
|
|
668
|
-
[x: string]: unknown;
|
|
669
|
-
};
|
|
667
|
+
$attrs: import("vue").Attrs;
|
|
670
668
|
$refs: {
|
|
671
669
|
[x: string]: unknown;
|
|
672
670
|
};
|
|
@@ -702,9 +700,7 @@ declare const _default: import("vue").DefineComponent<ExtractPropTypes<{
|
|
|
702
700
|
$: import("vue").ComponentInternalInstance;
|
|
703
701
|
$data: {};
|
|
704
702
|
$props: {};
|
|
705
|
-
$attrs:
|
|
706
|
-
[x: string]: unknown;
|
|
707
|
-
};
|
|
703
|
+
$attrs: import("vue").Attrs;
|
|
708
704
|
$refs: {
|
|
709
705
|
[x: string]: unknown;
|
|
710
706
|
};
|
package/es/themes/dark.mjs
CHANGED
|
@@ -57,6 +57,7 @@ import { legacyTransferDark } from "../legacy-transfer/styles/index.mjs";
|
|
|
57
57
|
import { listDark } from "../list/styles/index.mjs";
|
|
58
58
|
import { loadingBarDark } from "../loading-bar/styles/index.mjs";
|
|
59
59
|
import { logDark } from "../log/styles/index.mjs";
|
|
60
|
+
import { mappingCardDark } from "../mapping-card/styles/index.mjs";
|
|
60
61
|
import { marqueeDark } from "../marquee/styles/index.mjs";
|
|
61
62
|
import { mentionDark } from "../mention/styles/index.mjs";
|
|
62
63
|
import { menuDark } from "../menu/styles/index.mjs";
|
|
@@ -103,6 +104,7 @@ export const darkTheme = {
|
|
|
103
104
|
common: commonDark,
|
|
104
105
|
AccountOption: accountOptionDark,
|
|
105
106
|
ActionCard: actionCardDark,
|
|
107
|
+
MappingCard: mappingCardDark,
|
|
106
108
|
Alert: alertDark,
|
|
107
109
|
Anchor: anchorDark,
|
|
108
110
|
AutoComplete: autoCompleteDark,
|
package/es/themes/light.mjs
CHANGED
|
@@ -60,6 +60,7 @@ import { legacyTransferLight } from "../legacy-transfer/styles/index.mjs";
|
|
|
60
60
|
import { listLight } from "../list/styles/index.mjs";
|
|
61
61
|
import { loadingBarLight } from "../loading-bar/styles/index.mjs";
|
|
62
62
|
import { logLight } from "../log/styles/index.mjs";
|
|
63
|
+
import { mappingCardLight } from "../mapping-card/styles/index.mjs";
|
|
63
64
|
import { marqueeLight } from "../marquee/styles/index.mjs";
|
|
64
65
|
import { mentionLight } from "../mention/styles/index.mjs";
|
|
65
66
|
import { menuLight } from "../menu/styles/index.mjs";
|
|
@@ -105,6 +106,7 @@ export const lightTheme = {
|
|
|
105
106
|
common: commonLight,
|
|
106
107
|
AccountOption: accountOptionLight,
|
|
107
108
|
ActionCard: actionCardLight,
|
|
109
|
+
MappingCard: mappingCardLight,
|
|
108
110
|
Alert: alertLight,
|
|
109
111
|
Anchor: anchorLight,
|
|
110
112
|
AutoComplete: autoCompleteLight,
|
|
@@ -554,10 +554,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
554
554
|
value: string | number | boolean;
|
|
555
555
|
disabled: boolean | undefined;
|
|
556
556
|
type: "checkbox" | "radio";
|
|
557
|
-
checked: string | number | boolean | undefined;
|
|
558
|
-
defaultChecked: string | number | boolean;
|
|
559
557
|
checkedValue: string | number | boolean;
|
|
560
558
|
uncheckedValue: string | number | boolean;
|
|
559
|
+
checked: string | number | boolean | undefined;
|
|
560
|
+
defaultChecked: string | number | boolean;
|
|
561
561
|
viewType: "default" | "primary";
|
|
562
562
|
iconPosition: "top" | "bottom";
|
|
563
563
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
package/es/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "2.0.0-beta.
|
|
1
|
+
declare const _default: "2.0.0-beta.5";
|
|
2
2
|
export default _default;
|
package/es/version.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default '2.0.0-beta.
|
|
1
|
+
export default '2.0.0-beta.5';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.renderConfig = void 0;
|
|
4
|
+
var renderer_1 = require("./src/renderer");
|
|
5
|
+
Object.defineProperty(exports, "renderConfig", { enumerable: true, get: function () { return renderer_1.renderConfig; } });
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { VNode } from 'vue';
|
|
2
|
+
import type { BadgeProps } from '../../../badge';
|
|
3
|
+
import type { ListItemProps } from '../../../list/src/props';
|
|
4
|
+
import type { StatusProps } from '../../../status';
|
|
5
|
+
import type { TagProps } from '../../../tag';
|
|
6
|
+
import type { TextProps } from '../../../typography';
|
|
7
|
+
export interface BuiltinTypeMap {
|
|
8
|
+
text: TextProps;
|
|
9
|
+
status: StatusProps;
|
|
10
|
+
badge: BadgeProps;
|
|
11
|
+
tag: TagProps;
|
|
12
|
+
list_item: ListItemProps;
|
|
13
|
+
}
|
|
14
|
+
export type BuiltinType = keyof BuiltinTypeMap;
|
|
15
|
+
export type BuiltinConfig = {
|
|
16
|
+
[K in BuiltinType]: {
|
|
17
|
+
type: K;
|
|
18
|
+
params?: BuiltinTypeMap[K];
|
|
19
|
+
slots?: Record<string, ComponentConfig>;
|
|
20
|
+
render?: never;
|
|
21
|
+
};
|
|
22
|
+
}[BuiltinType];
|
|
23
|
+
export interface RenderConfig {
|
|
24
|
+
render: () => VNode;
|
|
25
|
+
type?: never;
|
|
26
|
+
params?: never;
|
|
27
|
+
slots?: never;
|
|
28
|
+
}
|
|
29
|
+
export type ComponentConfig = BuiltinConfig | RenderConfig;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.renderConfig = renderConfig;
|
|
4
|
+
const vue_1 = require("vue");
|
|
5
|
+
const badge_1 = require("../../../badge");
|
|
6
|
+
const list_1 = require("../../../list");
|
|
7
|
+
const status_1 = require("../../../status");
|
|
8
|
+
const tag_1 = require("../../../tag");
|
|
9
|
+
const typography_1 = require("../../../typography");
|
|
10
|
+
const registry = {
|
|
11
|
+
text: typography_1.UText,
|
|
12
|
+
status: status_1.UStatus,
|
|
13
|
+
badge: badge_1.UBadge,
|
|
14
|
+
tag: tag_1.UTag,
|
|
15
|
+
list_item: list_1.UListItem
|
|
16
|
+
};
|
|
17
|
+
function renderConfig(config) {
|
|
18
|
+
if (config.render) {
|
|
19
|
+
return config.render();
|
|
20
|
+
}
|
|
21
|
+
const slots = config.slots
|
|
22
|
+
? Object.fromEntries(Object.entries(config.slots).map(([name, slotConfig]) => [
|
|
23
|
+
name,
|
|
24
|
+
() => renderConfig(slotConfig)
|
|
25
|
+
]))
|
|
26
|
+
: undefined;
|
|
27
|
+
return (0, vue_1.h)(registry[config.type], config.params, slots);
|
|
28
|
+
}
|
|
@@ -11,11 +11,12 @@ const icon_1 = require("../../icon");
|
|
|
11
11
|
const icons_1 = require("../../icons");
|
|
12
12
|
const interface_1 = require("./interface");
|
|
13
13
|
function renderCheckMark(show, clsPrefix) {
|
|
14
|
-
return ((0, vue_1.h)(
|
|
15
|
-
|
|
16
|
-
default: () => (0, vue_1.h)(
|
|
17
|
-
|
|
18
|
-
|
|
14
|
+
return ((0, vue_1.h)("div", { class: `${clsPrefix}-base-select-option__check-wrapper` },
|
|
15
|
+
(0, vue_1.h)(vue_1.Transition, { name: "fade-in-scale-up-transition" }, {
|
|
16
|
+
default: () => show ? ((0, vue_1.h)(icon_1.UBaseIcon, { clsPrefix: clsPrefix, class: `${clsPrefix}-base-select-option__check` }, {
|
|
17
|
+
default: () => (0, vue_1.h)(icons_1.CheckmarkIcon)
|
|
18
|
+
})) : null
|
|
19
|
+
})));
|
|
19
20
|
}
|
|
20
21
|
exports.default = (0, vue_1.defineComponent)({
|
|
21
22
|
name: 'UBaseSelectOption',
|
|
@@ -70,8 +71,9 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
70
71
|
isSelected: (0, vooks_1.useMemo)(() => {
|
|
71
72
|
const { value } = valueRef;
|
|
72
73
|
const { value: multiple } = multipleRef;
|
|
73
|
-
if (value === null)
|
|
74
|
+
if (value === null) {
|
|
74
75
|
return false;
|
|
76
|
+
}
|
|
75
77
|
const optionValue = props.tmNode.rawNode[valueFieldRef.value];
|
|
76
78
|
if (multiple) {
|
|
77
79
|
const { value: valueSet } = valueSetRef;
|
|
@@ -91,16 +93,13 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
91
93
|
},
|
|
92
94
|
render() {
|
|
93
95
|
const { clsPrefix, tmNode: { rawNode }, isSelected, isPending, isGrouped, showCheckmark, nodeProps, renderOption, renderLabel, handleClick, handleMouseEnter, handleMouseMove, account } = this;
|
|
94
|
-
const checkmark = renderCheckMark(isSelected, clsPrefix);
|
|
96
|
+
const checkmark = renderCheckMark(showCheckmark && isSelected, clsPrefix);
|
|
95
97
|
const label = renderLabel
|
|
96
98
|
? renderLabel(rawNode, isSelected)
|
|
97
99
|
: (0, _utils_1.render)(rawNode[this.labelField], rawNode, isSelected);
|
|
98
100
|
const children = account
|
|
99
|
-
? [
|
|
100
|
-
|
|
101
|
-
showCheckmark && checkmark
|
|
102
|
-
]
|
|
103
|
-
: [label, showCheckmark && checkmark];
|
|
101
|
+
? [(0, vue_1.h)(account_option_1.default, Object.assign({}, rawNode, { label: label })), checkmark]
|
|
102
|
+
: [label, checkmark];
|
|
104
103
|
const attrs = nodeProps === null || nodeProps === void 0 ? void 0 : nodeProps(rawNode);
|
|
105
104
|
const node = ((0, vue_1.h)("div", Object.assign({}, attrs, { class: [
|
|
106
105
|
`${clsPrefix}-base-select-option`,
|
|
@@ -109,14 +109,15 @@ exports.default = (0, cssr_1.cB)('base-select-menu', `
|
|
|
109
109
|
color: var(--u-option-text-color-disabled);
|
|
110
110
|
`), (0, cssr_1.cM)('selected', `
|
|
111
111
|
opacity: var(--u-option-opacity-disabled);
|
|
112
|
-
`)]), (0, cssr_1.cE)('check', `
|
|
113
|
-
font-size: 24px;
|
|
112
|
+
`)]), (0, cssr_1.cE)('check-wrapper', `
|
|
114
113
|
position: absolute;
|
|
115
114
|
right: calc(var(--u-option-padding-right) - 4px);
|
|
116
115
|
top: 50%;
|
|
117
116
|
transform: translateY(-50%);
|
|
117
|
+
`, [(0, cssr_1.cE)('check', `
|
|
118
|
+
font-size: 24px;
|
|
118
119
|
color: var(--u-option-check-color);
|
|
119
120
|
transition: color .3s var(--u-bezier);
|
|
120
121
|
`, [(0, fade_in_scale_up_cssr_1.fadeInScaleUpTransition)({
|
|
121
122
|
enterScale: '0.5'
|
|
122
|
-
})])])]);
|
|
123
|
+
})])])])]);
|