@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.
Files changed (183) hide show
  1. package/dist/index.js +2467 -1507
  2. package/dist/index.mjs +2461 -1506
  3. package/dist/index.prod.js +2 -2
  4. package/dist/index.prod.mjs +2 -2
  5. package/es/_internal/component-renderer/index.d.ts +2 -0
  6. package/es/_internal/component-renderer/index.mjs +1 -0
  7. package/es/_internal/component-renderer/src/interface.d.ts +29 -0
  8. package/es/_internal/component-renderer/src/interface.mjs +1 -0
  9. package/es/_internal/component-renderer/src/renderer.d.ts +3 -0
  10. package/es/_internal/component-renderer/src/renderer.mjs +20 -0
  11. package/es/_internal/select-menu/src/SelectOption.mjs +9 -5
  12. package/es/_internal/select-menu/src/styles/index.cssr.mjs +4 -3
  13. package/es/_internal/selection/src/styles/index.cssr.mjs +3 -0
  14. package/es/card-list/src/CardList.d.ts +1 -1
  15. package/es/checkbox/src/Checkbox.d.ts +2 -2
  16. package/es/components.d.ts +1 -0
  17. package/es/components.mjs +1 -0
  18. package/es/config-provider/src/internal-interface.d.ts +3 -1
  19. package/es/data-table/src/DataTable.d.ts +25 -5
  20. package/es/data-table/src/DataTable.mjs +125 -4
  21. package/es/data-table/src/HeaderButton/FilterMenu.mjs +1 -1
  22. package/es/data-table/src/TableParts/Body.d.ts +9 -6
  23. package/es/data-table/src/TableParts/Body.mjs +30 -6
  24. package/es/data-table/src/TableParts/Cell.mjs +17 -17
  25. package/es/data-table/src/TableParts/Header.d.ts +4 -2
  26. package/es/data-table/src/TableParts/Header.mjs +65 -22
  27. package/es/data-table/src/interface.d.ts +16 -0
  28. package/es/data-table/src/interface.mjs +9 -0
  29. package/es/data-table/src/use-group-header.mjs +2 -2
  30. package/es/data-table/src/use-mask.mjs +1 -1
  31. package/es/data-table/src/use-resizable.d.ts +1 -0
  32. package/es/data-table/src/use-resizable.mjs +5 -2
  33. package/es/data-table/src/use-scroll.d.ts +5 -4
  34. package/es/data-table/src/use-scroll.mjs +29 -25
  35. package/es/data-table/src/use-sorter.mjs +1 -1
  36. package/es/data-table/src/use-table-data.mjs +1 -1
  37. package/es/data-table/src/utils/column-utils.d.ts +13 -0
  38. package/es/data-table/src/utils/column-utils.mjs +84 -0
  39. package/es/data-table/src/utils/csv-utils.d.ts +3 -0
  40. package/es/data-table/src/utils/csv-utils.mjs +21 -0
  41. package/es/data-table/src/utils/index.d.ts +7 -0
  42. package/es/data-table/src/utils/index.mjs +7 -0
  43. package/es/data-table/src/utils/mask-defaults.d.ts +6 -0
  44. package/es/data-table/src/utils/mask-defaults.mjs +16 -0
  45. package/es/data-table/src/utils/resize-orchestrator-utils.d.ts +6 -0
  46. package/es/data-table/src/utils/resize-orchestrator-utils.mjs +21 -0
  47. package/es/data-table/src/utils/sort-filter-utils.d.ts +6 -0
  48. package/es/data-table/src/utils/sort-filter-utils.mjs +38 -0
  49. package/es/data-table/src/utils/width-utils.d.ts +20 -0
  50. package/es/data-table/src/utils/width-utils.mjs +174 -0
  51. package/es/data-table/src/utils.d.ts +1 -25
  52. package/es/data-table/src/utils.mjs +1 -165
  53. package/es/grid/src/Grid.d.ts +1 -1
  54. package/es/header/src/HeaderSearchResults.d.ts +1 -1
  55. package/es/icon-bar/src/IconBar.d.ts +1 -1
  56. package/es/input/src/Input.d.ts +1 -1
  57. package/es/list/src/ListItem.d.ts +2 -2
  58. package/es/list/src/ListItem.mjs +19 -12
  59. package/es/list/src/props.d.ts +3 -1
  60. package/es/list/src/styles/index.cssr.mjs +4 -2
  61. package/es/locales/common/enUS.d.ts +6 -0
  62. package/es/locales/common/enUS.mjs +6 -0
  63. package/es/locales/common/ruRU.mjs +6 -0
  64. package/es/mapping-card/index.d.ts +7 -0
  65. package/es/mapping-card/index.mjs +4 -0
  66. package/es/mapping-card/src/MappingCard.d.ts +2091 -0
  67. package/es/mapping-card/src/MappingCard.mjs +77 -0
  68. package/es/mapping-card/src/MappingCardList.d.ts +36 -0
  69. package/es/mapping-card/src/MappingCardList.mjs +50 -0
  70. package/es/mapping-card/src/MappingCardParts/Body.d.ts +4 -0
  71. package/es/mapping-card/src/MappingCardParts/Body.mjs +66 -0
  72. package/es/mapping-card/src/MappingCardParts/Header.d.ts +7 -0
  73. package/es/mapping-card/src/MappingCardParts/Header.mjs +147 -0
  74. package/es/mapping-card/src/injection.d.ts +17 -0
  75. package/es/mapping-card/src/injection.mjs +2 -0
  76. package/es/mapping-card/src/interface.d.ts +105 -0
  77. package/es/mapping-card/src/interface.mjs +45 -0
  78. package/es/mapping-card/src/styles/index.cssr.d.ts +2 -0
  79. package/es/mapping-card/src/styles/index.cssr.mjs +92 -0
  80. package/es/mapping-card/styles/dark.d.ts +337 -0
  81. package/es/mapping-card/styles/dark.mjs +22 -0
  82. package/es/mapping-card/styles/index.d.ts +3 -0
  83. package/es/mapping-card/styles/index.mjs +2 -0
  84. package/es/mapping-card/styles/light.d.ts +352 -0
  85. package/es/mapping-card/styles/light.mjs +45 -0
  86. package/es/progress/src/MultipleCircle.d.ts +1 -1
  87. package/es/radio/src/Radio.d.ts +1 -1
  88. package/es/radio/src/RadioButton.d.ts +3 -3
  89. package/es/tabs/src/Tabs.d.ts +2 -6
  90. package/es/themes/dark.mjs +2 -0
  91. package/es/themes/light.mjs +2 -0
  92. package/es/toggle-button/src/ToggleButton.d.ts +2 -2
  93. package/es/version.d.ts +1 -1
  94. package/es/version.mjs +1 -1
  95. package/lib/_internal/component-renderer/index.d.ts +2 -0
  96. package/lib/_internal/component-renderer/index.js +5 -0
  97. package/lib/_internal/component-renderer/src/interface.d.ts +29 -0
  98. package/lib/_internal/component-renderer/src/interface.js +2 -0
  99. package/lib/_internal/component-renderer/src/renderer.d.ts +3 -0
  100. package/lib/_internal/component-renderer/src/renderer.js +28 -0
  101. package/lib/_internal/select-menu/src/SelectOption.js +11 -12
  102. package/lib/_internal/select-menu/src/styles/index.cssr.js +4 -3
  103. package/lib/_internal/selection/src/styles/index.cssr.js +3 -0
  104. package/lib/card-list/src/CardList.d.ts +1 -1
  105. package/lib/checkbox/src/Checkbox.d.ts +2 -2
  106. package/lib/components.d.ts +1 -0
  107. package/lib/components.js +1 -0
  108. package/lib/config-provider/src/internal-interface.d.ts +3 -1
  109. package/lib/data-table/src/DataTable.d.ts +25 -5
  110. package/lib/data-table/src/DataTable.js +131 -4
  111. package/lib/data-table/src/TableParts/Body.d.ts +9 -6
  112. package/lib/data-table/src/TableParts/Body.js +30 -8
  113. package/lib/data-table/src/TableParts/Cell.js +16 -16
  114. package/lib/data-table/src/TableParts/Header.d.ts +4 -2
  115. package/lib/data-table/src/TableParts/Header.js +55 -23
  116. package/lib/data-table/src/interface.d.ts +16 -0
  117. package/lib/data-table/src/interface.js +6 -0
  118. package/lib/data-table/src/use-group-header.js +1 -1
  119. package/lib/data-table/src/use-resizable.d.ts +1 -0
  120. package/lib/data-table/src/use-resizable.js +5 -2
  121. package/lib/data-table/src/use-scroll.d.ts +5 -4
  122. package/lib/data-table/src/use-scroll.js +31 -28
  123. package/lib/data-table/src/utils/column-utils.d.ts +13 -0
  124. package/lib/data-table/src/utils/column-utils.js +116 -0
  125. package/lib/data-table/src/utils/csv-utils.d.ts +3 -0
  126. package/lib/data-table/src/utils/csv-utils.js +34 -0
  127. package/lib/data-table/src/utils/index.d.ts +7 -0
  128. package/lib/data-table/src/utils/index.js +26 -0
  129. package/lib/data-table/src/utils/mask-defaults.d.ts +6 -0
  130. package/lib/data-table/src/utils/mask-defaults.js +22 -0
  131. package/lib/data-table/src/utils/resize-orchestrator-utils.d.ts +6 -0
  132. package/lib/data-table/src/utils/resize-orchestrator-utils.js +35 -0
  133. package/lib/data-table/src/utils/sort-filter-utils.d.ts +6 -0
  134. package/lib/data-table/src/utils/sort-filter-utils.js +54 -0
  135. package/lib/data-table/src/utils/width-utils.d.ts +20 -0
  136. package/lib/data-table/src/utils/width-utils.js +182 -0
  137. package/lib/data-table/src/utils.d.ts +1 -25
  138. package/lib/data-table/src/utils.js +15 -229
  139. package/lib/grid/src/Grid.d.ts +1 -1
  140. package/lib/header/src/HeaderSearchResults.d.ts +1 -1
  141. package/lib/icon-bar/src/IconBar.d.ts +1 -1
  142. package/lib/input/src/Input.d.ts +1 -1
  143. package/lib/list/src/ListItem.d.ts +2 -2
  144. package/lib/list/src/ListItem.js +31 -10
  145. package/lib/list/src/props.d.ts +3 -1
  146. package/lib/list/src/styles/index.cssr.js +4 -2
  147. package/lib/locales/common/enUS.d.ts +6 -0
  148. package/lib/locales/common/enUS.js +6 -0
  149. package/lib/locales/common/ruRU.js +6 -0
  150. package/lib/mapping-card/index.d.ts +7 -0
  151. package/lib/mapping-card/index.js +15 -0
  152. package/lib/mapping-card/src/MappingCard.d.ts +2091 -0
  153. package/lib/mapping-card/src/MappingCard.js +58 -0
  154. package/lib/mapping-card/src/MappingCardList.d.ts +36 -0
  155. package/lib/mapping-card/src/MappingCardList.js +38 -0
  156. package/lib/mapping-card/src/MappingCardParts/Body.d.ts +4 -0
  157. package/lib/mapping-card/src/MappingCardParts/Body.js +48 -0
  158. package/lib/mapping-card/src/MappingCardParts/Header.d.ts +7 -0
  159. package/lib/mapping-card/src/MappingCardParts/Header.js +77 -0
  160. package/lib/mapping-card/src/injection.d.ts +17 -0
  161. package/lib/mapping-card/src/injection.js +5 -0
  162. package/lib/mapping-card/src/interface.d.ts +105 -0
  163. package/lib/mapping-card/src/interface.js +48 -0
  164. package/lib/mapping-card/src/styles/index.cssr.d.ts +2 -0
  165. package/lib/mapping-card/src/styles/index.cssr.js +97 -0
  166. package/lib/mapping-card/styles/dark.d.ts +337 -0
  167. package/lib/mapping-card/styles/dark.js +24 -0
  168. package/lib/mapping-card/styles/index.d.ts +3 -0
  169. package/lib/mapping-card/styles/index.js +10 -0
  170. package/lib/mapping-card/styles/light.d.ts +352 -0
  171. package/lib/mapping-card/styles/light.js +40 -0
  172. package/lib/progress/src/MultipleCircle.d.ts +1 -1
  173. package/lib/radio/src/Radio.d.ts +1 -1
  174. package/lib/radio/src/RadioButton.d.ts +3 -3
  175. package/lib/tabs/src/Tabs.d.ts +2 -6
  176. package/lib/themes/dark.js +84 -82
  177. package/lib/themes/light.js +82 -80
  178. package/lib/toggle-button/src/ToggleButton.d.ts +2 -2
  179. package/lib/version.d.ts +1 -1
  180. package/lib/version.js +1 -1
  181. package/package.json +1 -1
  182. package/volar.d.ts +2 -0
  183. package/web-types.json +207 -2
@@ -0,0 +1,2091 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ title: import("vue").PropType<import("./interface").MappingCardInterface["title"]>;
3
+ description: import("vue").PropType<import("./interface").MappingCardInterface["description"]>;
4
+ rows: import("vue").PropType<import("./interface").MappingCardInterface["rows"]>;
5
+ cols: {
6
+ readonly type: import("vue").PropType<import("./interface").MappingCardInterface["cols"]>;
7
+ readonly default: 3;
8
+ };
9
+ defaultSpan: {
10
+ readonly type: import("vue").PropType<import("./interface").MappingCardInterface["defaultSpan"]>;
11
+ readonly default: 1;
12
+ };
13
+ copy: import("vue").PropType<import("./interface").MappingCardInterface["copy"]>;
14
+ hideCopy: {
15
+ readonly type: import("vue").PropType<import("./interface").MappingCardInterface["hideCopy"]>;
16
+ readonly default: false;
17
+ };
18
+ copyButtonProps: import("vue").PropType<import("./interface").MappingCardInterface["copyButtonProps"]>;
19
+ copyIconProps: import("vue").PropType<import("./interface").MappingCardInterface["copyIconProps"]>;
20
+ headerEditButtonProps: import("vue").PropType<import("./interface").MappingCardInterface["headerEditButtonProps"]>;
21
+ headerEditIconProps: import("vue").PropType<import("./interface").MappingCardInterface["headerEditIconProps"]>;
22
+ headerEditIcon: import("vue").PropType<import("./interface").MappingCardInterface["headerEditIcon"]>;
23
+ headerDeleteButtonProps: import("vue").PropType<import("./interface").MappingCardInterface["headerDeleteButtonProps"]>;
24
+ headerDeleteIconProps: import("vue").PropType<import("./interface").MappingCardInterface["headerDeleteIconProps"]>;
25
+ headerDeleteIcon: import("vue").PropType<import("./interface").MappingCardInterface["headerDeleteIcon"]>;
26
+ headerSwitchProps: import("vue").PropType<import("./interface").MappingCardInterface["headerSwitchProps"]>;
27
+ onCopy: import("vue").PropType<import("./interface").MappingCardInterface["onCopy"]>;
28
+ onEdit: import("vue").PropType<import("./interface").MappingCardInterface["onEdit"]>;
29
+ onDelete: import("vue").PropType<import("./interface").MappingCardInterface["onDelete"]>;
30
+ onSwitchChange: import("vue").PropType<import("./interface").MappingCardInterface["onSwitchChange"]>;
31
+ theme: import("vue").PropType<import("../../_mixins").Theme<"MappingCard", {
32
+ backgroundColor: string;
33
+ borderColor: string;
34
+ borderRadius: string;
35
+ dividerBackgroundColor: string;
36
+ headerPadding: string;
37
+ bodyPadding: string;
38
+ titleColor: string;
39
+ descriptionColor: string;
40
+ arrowColor: string;
41
+ colLabelColor: string;
42
+ colLabelFontSize: string;
43
+ }, {
44
+ Button: import("../../_mixins").Theme<"Button", {
45
+ heightTiny: string;
46
+ heightSmall: string;
47
+ heightMedium: string;
48
+ heightLarge: string;
49
+ borderRadiusTiny: string;
50
+ borderRadiusSmall: string;
51
+ borderRadiusMedium: string;
52
+ borderRadiusLarge: string;
53
+ fontSizeTiny: string;
54
+ fontSizeSmall: string;
55
+ fontSizeMedium: string;
56
+ fontSizeLarge: string;
57
+ opacityDisabled: string;
58
+ colorOpacitySecondary: string;
59
+ colorOpacitySecondaryHover: string;
60
+ colorOpacitySecondaryPressed: string;
61
+ colorOpacitySecondaryFocus: string;
62
+ colorSecondary: string;
63
+ colorSecondaryHover: string;
64
+ colorSecondaryPressed: string;
65
+ colorSecondaryFocus: string;
66
+ colorSecondaryDisabled: string;
67
+ textColorSecondaryDisabled: string;
68
+ waveColorSecondary: string;
69
+ colorTertiary: string;
70
+ colorTertiaryHover: string;
71
+ colorTertiaryPressed: string;
72
+ colorTertiaryFocus: string;
73
+ colorTertiaryDisalbed: string;
74
+ waveColorTertiary: string;
75
+ textColorTextTertiary: string;
76
+ rippleColorTertiary: string;
77
+ colorQuaternary: string;
78
+ colorQuaternaryHover: string;
79
+ colorQuaternaryPressed: string;
80
+ colorQuaternaryFocus: string;
81
+ rippleColorQuaternary: string;
82
+ waveColorQuaternary: string;
83
+ color: string;
84
+ colorHover: string;
85
+ colorPressed: string;
86
+ colorFocus: string;
87
+ colorDisabled: string;
88
+ textColor: string;
89
+ textTertiary: string;
90
+ textColorTertiary: string;
91
+ textColorHover: string;
92
+ textColorPressed: string;
93
+ textColorFocus: string;
94
+ textColorDisabled: string;
95
+ textColorText: string;
96
+ textColorTextHover: string;
97
+ textColorTextPressed: string;
98
+ textColorTextFocus: string;
99
+ textColorTextDisabled: string;
100
+ textColorGhost: string;
101
+ textColorGhostHover: string;
102
+ textColorGhostPressed: string;
103
+ textColorGhostFocus: string;
104
+ textColorGhostDisabled: string;
105
+ border: string;
106
+ borderHover: string;
107
+ borderPressed: string;
108
+ borderFocus: string;
109
+ borderDisabled: string;
110
+ rippleColor: string;
111
+ colorPrimary: string;
112
+ colorHoverPrimary: string;
113
+ colorPressedPrimary: string;
114
+ colorFocusPrimary: string;
115
+ colorDisabledPrimary: string;
116
+ waveColorPrimary: string;
117
+ textColorPrimary: string;
118
+ textColorHoverPrimary: string;
119
+ textColorPressedPrimary: string;
120
+ textColorFocusPrimary: string;
121
+ textColorDisabledPrimary: string;
122
+ textColorTextPrimary: string;
123
+ textColorTextHoverPrimary: string;
124
+ textColorTextPressedPrimary: string;
125
+ textColorTextFocusPrimary: string;
126
+ textColorTextDisabledPrimary: string;
127
+ textColorGhostPrimary: string;
128
+ textColorGhostHoverPrimary: string;
129
+ textColorGhostPressedPrimary: string;
130
+ textColorGhostFocusPrimary: string;
131
+ textColorGhostDisabledPrimary: string;
132
+ borderPrimary: string;
133
+ borderHoverPrimary: string;
134
+ borderPressedPrimary: string;
135
+ borderFocusPrimary: string;
136
+ borderDisabledPrimary: string;
137
+ rippleColorPrimary: string;
138
+ colorInfo: string;
139
+ colorHoverInfo: string;
140
+ colorPressedInfo: string;
141
+ colorFocusInfo: string;
142
+ colorDisabledInfo: string;
143
+ textColorInfo: string;
144
+ textColorHoverInfo: string;
145
+ textColorPressedInfo: string;
146
+ textColorFocusInfo: string;
147
+ textColorDisabledInfo: string;
148
+ textColorTextInfo: string;
149
+ textColorTextHoverInfo: string;
150
+ textColorTextPressedInfo: string;
151
+ textColorTextFocusInfo: string;
152
+ textColorTextDisabledInfo: string;
153
+ textColorGhostInfo: string;
154
+ textColorGhostHoverInfo: string;
155
+ textColorGhostPressedInfo: string;
156
+ textColorGhostFocusInfo: string;
157
+ textColorGhostDisabledInfo: string;
158
+ borderInfo: string;
159
+ borderHoverInfo: string;
160
+ borderPressedInfo: string;
161
+ borderFocusInfo: string;
162
+ borderDisabledInfo: string;
163
+ rippleColorInfo: string;
164
+ colorSuccess: string;
165
+ colorHoverSuccess: string;
166
+ colorPressedSuccess: string;
167
+ colorFocusSuccess: string;
168
+ colorDisabledSuccess: string;
169
+ textColorSuccess: string;
170
+ textColorHoverSuccess: string;
171
+ textColorPressedSuccess: string;
172
+ textColorFocusSuccess: string;
173
+ textColorDisabledSuccess: string;
174
+ textColorTextSuccess: string;
175
+ textColorTextHoverSuccess: string;
176
+ textColorTextPressedSuccess: string;
177
+ textColorTextFocusSuccess: string;
178
+ textColorTextDisabledSuccess: string;
179
+ textColorGhostSuccess: string;
180
+ textColorGhostHoverSuccess: string;
181
+ textColorGhostPressedSuccess: string;
182
+ textColorGhostFocusSuccess: string;
183
+ textColorGhostDisabledSuccess: string;
184
+ borderSuccess: string;
185
+ borderHoverSuccess: string;
186
+ borderPressedSuccess: string;
187
+ borderFocusSuccess: string;
188
+ borderDisabledSuccess: string;
189
+ rippleColorSuccess: string;
190
+ colorWarning: string;
191
+ colorHoverWarning: string;
192
+ colorPressedWarning: string;
193
+ colorFocusWarning: string;
194
+ colorDisabledWarning: string;
195
+ textColorWarning: string;
196
+ textColorHoverWarning: string;
197
+ textColorPressedWarning: string;
198
+ textColorFocusWarning: string;
199
+ textColorDisabledWarning: string;
200
+ textColorTextWarning: string;
201
+ textColorTextHoverWarning: string;
202
+ textColorTextPressedWarning: string;
203
+ textColorTextFocusWarning: string;
204
+ textColorTextDisabledWarning: string;
205
+ textColorGhostWarning: string;
206
+ textColorGhostHoverWarning: string;
207
+ textColorGhostPressedWarning: string;
208
+ textColorGhostFocusWarning: string;
209
+ textColorGhostDisabledWarning: string;
210
+ borderWarning: string;
211
+ borderHoverWarning: string;
212
+ borderPressedWarning: string;
213
+ borderFocusWarning: string;
214
+ borderDisabledWarning: string;
215
+ rippleColorWarning: string;
216
+ colorError: string;
217
+ colorHoverError: string;
218
+ colorPressedError: string;
219
+ colorFocusError: string;
220
+ colorDisabledError: string;
221
+ textColorError: string;
222
+ textColorHoverError: string;
223
+ textColorPressedError: string;
224
+ textColorFocusError: string;
225
+ textColorDisabledError: string;
226
+ textColorTextError: string;
227
+ textColorTextHoverError: string;
228
+ textColorTextPressedError: string;
229
+ textColorTextFocusError: string;
230
+ textColorTextDisabledError: string;
231
+ textColorGhostError: string;
232
+ textColorGhostHoverError: string;
233
+ textColorGhostPressedError: string;
234
+ textColorGhostFocusError: string;
235
+ textColorGhostDisabledError: string;
236
+ borderError: string;
237
+ borderHoverError: string;
238
+ borderPressedError: string;
239
+ borderFocusError: string;
240
+ borderDisabledError: string;
241
+ rippleColorError: string;
242
+ waveOpacity: string;
243
+ fontWeight: string;
244
+ fontWeightStrong: string;
245
+ paddingTiny: string;
246
+ paddingSmall: string;
247
+ paddingMedium: string;
248
+ paddingLarge: string;
249
+ paddingRoundTiny: string;
250
+ paddingRoundSmall: string;
251
+ paddingRoundMedium: string;
252
+ paddingRoundLarge: string;
253
+ iconMarginTiny: string;
254
+ iconMarginSmall: string;
255
+ iconMarginMedium: string;
256
+ iconMarginLarge: string;
257
+ iconSizeTiny: string;
258
+ iconSizeSmall: string;
259
+ iconSizeMedium: string;
260
+ iconSizeLarge: string;
261
+ rippleDuration: string;
262
+ }, any>;
263
+ Icon: import("../../_mixins").Theme<"Icon", {
264
+ color: string;
265
+ opacity1Depth: string;
266
+ opacity2Depth: string;
267
+ opacity3Depth: string;
268
+ opacity4Depth: string;
269
+ opacity5Depth: string;
270
+ }, any>;
271
+ Switch: import("../../_mixins").Theme<"Switch", {
272
+ buttonHeightSmall: string;
273
+ buttonHeightMedium: string;
274
+ buttonHeightLarge: string;
275
+ buttonWidthSmall: string;
276
+ buttonWidthMedium: string;
277
+ buttonWidthLarge: string;
278
+ buttonWidthPressedSmall: string;
279
+ buttonWidthPressedMedium: string;
280
+ buttonWidthPressedLarge: string;
281
+ railHeightSmall: string;
282
+ railHeightMedium: string;
283
+ railHeightLarge: string;
284
+ railWidthSmall: string;
285
+ railWidthMedium: string;
286
+ railWidthLarge: string;
287
+ iconColor: string;
288
+ textColor: string;
289
+ loadingColor: string;
290
+ loadingColorActive: string;
291
+ opacityDisabled: string;
292
+ railColor: string;
293
+ railColorActive: string;
294
+ railColorActiveDisabled: string;
295
+ buttonBoxShadow: string;
296
+ buttonBoxShadowHover: string;
297
+ buttonBoxShadowCheckedHover: string;
298
+ buttonBoxShadowChecked: string;
299
+ buttonColor: string;
300
+ buttonColorDisabled: string;
301
+ railBorderRadiusSmall: string;
302
+ railBorderRadiusMedium: string;
303
+ railBorderRadiusLarge: string;
304
+ buttonBorderRadiusSmall: string;
305
+ buttonBorderRadiusMedium: string;
306
+ buttonBorderRadiusLarge: string;
307
+ boxShadowFocus: string;
308
+ }, any>;
309
+ Tooltip: import("../../_mixins").Theme<"Tooltip", {
310
+ padding: string;
311
+ textPadding: string;
312
+ titleSize: string;
313
+ titleWeight: string;
314
+ titleLineHeight: string;
315
+ subtitleSize: string;
316
+ subtitleMargin: string;
317
+ subtitleWeight: string;
318
+ subtitleLineHeight: string;
319
+ iconSize: string;
320
+ arrowSpace: string;
321
+ noArrowSpace: string;
322
+ borderRadius: string;
323
+ color: string;
324
+ textColor: string;
325
+ }, {
326
+ Popover: import("../../_mixins").Theme<"Popover", {
327
+ space: string;
328
+ spaceArrow: string;
329
+ arrowOffset: string;
330
+ arrowOffsetVertical: string;
331
+ arrowHeight: string;
332
+ padding: string;
333
+ fontSize: string;
334
+ borderRadius: string;
335
+ color: string;
336
+ dividerColor: string;
337
+ textColor: string;
338
+ boxShadow: string;
339
+ }, any>;
340
+ }>;
341
+ EditIcon: import("../../_mixins").Theme<"Icon", {
342
+ color: string;
343
+ opacity1Depth: string;
344
+ opacity2Depth: string;
345
+ opacity3Depth: string;
346
+ opacity4Depth: string;
347
+ opacity5Depth: string;
348
+ }, any>;
349
+ DeleteIcon: import("../../_mixins").Theme<"Icon", {
350
+ color: string;
351
+ opacity1Depth: string;
352
+ opacity2Depth: string;
353
+ opacity3Depth: string;
354
+ opacity4Depth: string;
355
+ opacity5Depth: string;
356
+ }, any>;
357
+ CopyIcon: import("../../_mixins").Theme<"Icon", {
358
+ color: string;
359
+ opacity1Depth: string;
360
+ opacity2Depth: string;
361
+ opacity3Depth: string;
362
+ opacity4Depth: string;
363
+ opacity5Depth: string;
364
+ }, any>;
365
+ }>>;
366
+ themeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"MappingCard", {
367
+ backgroundColor: string;
368
+ borderColor: string;
369
+ borderRadius: string;
370
+ dividerBackgroundColor: string;
371
+ headerPadding: string;
372
+ bodyPadding: string;
373
+ titleColor: string;
374
+ descriptionColor: string;
375
+ arrowColor: string;
376
+ colLabelColor: string;
377
+ colLabelFontSize: string;
378
+ }, {
379
+ Button: import("../../_mixins").Theme<"Button", {
380
+ heightTiny: string;
381
+ heightSmall: string;
382
+ heightMedium: string;
383
+ heightLarge: string;
384
+ borderRadiusTiny: string;
385
+ borderRadiusSmall: string;
386
+ borderRadiusMedium: string;
387
+ borderRadiusLarge: string;
388
+ fontSizeTiny: string;
389
+ fontSizeSmall: string;
390
+ fontSizeMedium: string;
391
+ fontSizeLarge: string;
392
+ opacityDisabled: string;
393
+ colorOpacitySecondary: string;
394
+ colorOpacitySecondaryHover: string;
395
+ colorOpacitySecondaryPressed: string;
396
+ colorOpacitySecondaryFocus: string;
397
+ colorSecondary: string;
398
+ colorSecondaryHover: string;
399
+ colorSecondaryPressed: string;
400
+ colorSecondaryFocus: string;
401
+ colorSecondaryDisabled: string;
402
+ textColorSecondaryDisabled: string;
403
+ waveColorSecondary: string;
404
+ colorTertiary: string;
405
+ colorTertiaryHover: string;
406
+ colorTertiaryPressed: string;
407
+ colorTertiaryFocus: string;
408
+ colorTertiaryDisalbed: string;
409
+ waveColorTertiary: string;
410
+ textColorTextTertiary: string;
411
+ rippleColorTertiary: string;
412
+ colorQuaternary: string;
413
+ colorQuaternaryHover: string;
414
+ colorQuaternaryPressed: string;
415
+ colorQuaternaryFocus: string;
416
+ rippleColorQuaternary: string;
417
+ waveColorQuaternary: string;
418
+ color: string;
419
+ colorHover: string;
420
+ colorPressed: string;
421
+ colorFocus: string;
422
+ colorDisabled: string;
423
+ textColor: string;
424
+ textTertiary: string;
425
+ textColorTertiary: string;
426
+ textColorHover: string;
427
+ textColorPressed: string;
428
+ textColorFocus: string;
429
+ textColorDisabled: string;
430
+ textColorText: string;
431
+ textColorTextHover: string;
432
+ textColorTextPressed: string;
433
+ textColorTextFocus: string;
434
+ textColorTextDisabled: string;
435
+ textColorGhost: string;
436
+ textColorGhostHover: string;
437
+ textColorGhostPressed: string;
438
+ textColorGhostFocus: string;
439
+ textColorGhostDisabled: string;
440
+ border: string;
441
+ borderHover: string;
442
+ borderPressed: string;
443
+ borderFocus: string;
444
+ borderDisabled: string;
445
+ rippleColor: string;
446
+ colorPrimary: string;
447
+ colorHoverPrimary: string;
448
+ colorPressedPrimary: string;
449
+ colorFocusPrimary: string;
450
+ colorDisabledPrimary: string;
451
+ waveColorPrimary: string;
452
+ textColorPrimary: string;
453
+ textColorHoverPrimary: string;
454
+ textColorPressedPrimary: string;
455
+ textColorFocusPrimary: string;
456
+ textColorDisabledPrimary: string;
457
+ textColorTextPrimary: string;
458
+ textColorTextHoverPrimary: string;
459
+ textColorTextPressedPrimary: string;
460
+ textColorTextFocusPrimary: string;
461
+ textColorTextDisabledPrimary: string;
462
+ textColorGhostPrimary: string;
463
+ textColorGhostHoverPrimary: string;
464
+ textColorGhostPressedPrimary: string;
465
+ textColorGhostFocusPrimary: string;
466
+ textColorGhostDisabledPrimary: string;
467
+ borderPrimary: string;
468
+ borderHoverPrimary: string;
469
+ borderPressedPrimary: string;
470
+ borderFocusPrimary: string;
471
+ borderDisabledPrimary: string;
472
+ rippleColorPrimary: string;
473
+ colorInfo: string;
474
+ colorHoverInfo: string;
475
+ colorPressedInfo: string;
476
+ colorFocusInfo: string;
477
+ colorDisabledInfo: string;
478
+ textColorInfo: string;
479
+ textColorHoverInfo: string;
480
+ textColorPressedInfo: string;
481
+ textColorFocusInfo: string;
482
+ textColorDisabledInfo: string;
483
+ textColorTextInfo: string;
484
+ textColorTextHoverInfo: string;
485
+ textColorTextPressedInfo: string;
486
+ textColorTextFocusInfo: string;
487
+ textColorTextDisabledInfo: string;
488
+ textColorGhostInfo: string;
489
+ textColorGhostHoverInfo: string;
490
+ textColorGhostPressedInfo: string;
491
+ textColorGhostFocusInfo: string;
492
+ textColorGhostDisabledInfo: string;
493
+ borderInfo: string;
494
+ borderHoverInfo: string;
495
+ borderPressedInfo: string;
496
+ borderFocusInfo: string;
497
+ borderDisabledInfo: string;
498
+ rippleColorInfo: string;
499
+ colorSuccess: string;
500
+ colorHoverSuccess: string;
501
+ colorPressedSuccess: string;
502
+ colorFocusSuccess: string;
503
+ colorDisabledSuccess: string;
504
+ textColorSuccess: string;
505
+ textColorHoverSuccess: string;
506
+ textColorPressedSuccess: string;
507
+ textColorFocusSuccess: string;
508
+ textColorDisabledSuccess: string;
509
+ textColorTextSuccess: string;
510
+ textColorTextHoverSuccess: string;
511
+ textColorTextPressedSuccess: string;
512
+ textColorTextFocusSuccess: string;
513
+ textColorTextDisabledSuccess: string;
514
+ textColorGhostSuccess: string;
515
+ textColorGhostHoverSuccess: string;
516
+ textColorGhostPressedSuccess: string;
517
+ textColorGhostFocusSuccess: string;
518
+ textColorGhostDisabledSuccess: string;
519
+ borderSuccess: string;
520
+ borderHoverSuccess: string;
521
+ borderPressedSuccess: string;
522
+ borderFocusSuccess: string;
523
+ borderDisabledSuccess: string;
524
+ rippleColorSuccess: string;
525
+ colorWarning: string;
526
+ colorHoverWarning: string;
527
+ colorPressedWarning: string;
528
+ colorFocusWarning: string;
529
+ colorDisabledWarning: string;
530
+ textColorWarning: string;
531
+ textColorHoverWarning: string;
532
+ textColorPressedWarning: string;
533
+ textColorFocusWarning: string;
534
+ textColorDisabledWarning: string;
535
+ textColorTextWarning: string;
536
+ textColorTextHoverWarning: string;
537
+ textColorTextPressedWarning: string;
538
+ textColorTextFocusWarning: string;
539
+ textColorTextDisabledWarning: string;
540
+ textColorGhostWarning: string;
541
+ textColorGhostHoverWarning: string;
542
+ textColorGhostPressedWarning: string;
543
+ textColorGhostFocusWarning: string;
544
+ textColorGhostDisabledWarning: string;
545
+ borderWarning: string;
546
+ borderHoverWarning: string;
547
+ borderPressedWarning: string;
548
+ borderFocusWarning: string;
549
+ borderDisabledWarning: string;
550
+ rippleColorWarning: string;
551
+ colorError: string;
552
+ colorHoverError: string;
553
+ colorPressedError: string;
554
+ colorFocusError: string;
555
+ colorDisabledError: string;
556
+ textColorError: string;
557
+ textColorHoverError: string;
558
+ textColorPressedError: string;
559
+ textColorFocusError: string;
560
+ textColorDisabledError: string;
561
+ textColorTextError: string;
562
+ textColorTextHoverError: string;
563
+ textColorTextPressedError: string;
564
+ textColorTextFocusError: string;
565
+ textColorTextDisabledError: string;
566
+ textColorGhostError: string;
567
+ textColorGhostHoverError: string;
568
+ textColorGhostPressedError: string;
569
+ textColorGhostFocusError: string;
570
+ textColorGhostDisabledError: string;
571
+ borderError: string;
572
+ borderHoverError: string;
573
+ borderPressedError: string;
574
+ borderFocusError: string;
575
+ borderDisabledError: string;
576
+ rippleColorError: string;
577
+ waveOpacity: string;
578
+ fontWeight: string;
579
+ fontWeightStrong: string;
580
+ paddingTiny: string;
581
+ paddingSmall: string;
582
+ paddingMedium: string;
583
+ paddingLarge: string;
584
+ paddingRoundTiny: string;
585
+ paddingRoundSmall: string;
586
+ paddingRoundMedium: string;
587
+ paddingRoundLarge: string;
588
+ iconMarginTiny: string;
589
+ iconMarginSmall: string;
590
+ iconMarginMedium: string;
591
+ iconMarginLarge: string;
592
+ iconSizeTiny: string;
593
+ iconSizeSmall: string;
594
+ iconSizeMedium: string;
595
+ iconSizeLarge: string;
596
+ rippleDuration: string;
597
+ }, any>;
598
+ Icon: import("../../_mixins").Theme<"Icon", {
599
+ color: string;
600
+ opacity1Depth: string;
601
+ opacity2Depth: string;
602
+ opacity3Depth: string;
603
+ opacity4Depth: string;
604
+ opacity5Depth: string;
605
+ }, any>;
606
+ Switch: import("../../_mixins").Theme<"Switch", {
607
+ buttonHeightSmall: string;
608
+ buttonHeightMedium: string;
609
+ buttonHeightLarge: string;
610
+ buttonWidthSmall: string;
611
+ buttonWidthMedium: string;
612
+ buttonWidthLarge: string;
613
+ buttonWidthPressedSmall: string;
614
+ buttonWidthPressedMedium: string;
615
+ buttonWidthPressedLarge: string;
616
+ railHeightSmall: string;
617
+ railHeightMedium: string;
618
+ railHeightLarge: string;
619
+ railWidthSmall: string;
620
+ railWidthMedium: string;
621
+ railWidthLarge: string;
622
+ iconColor: string;
623
+ textColor: string;
624
+ loadingColor: string;
625
+ loadingColorActive: string;
626
+ opacityDisabled: string;
627
+ railColor: string;
628
+ railColorActive: string;
629
+ railColorActiveDisabled: string;
630
+ buttonBoxShadow: string;
631
+ buttonBoxShadowHover: string;
632
+ buttonBoxShadowCheckedHover: string;
633
+ buttonBoxShadowChecked: string;
634
+ buttonColor: string;
635
+ buttonColorDisabled: string;
636
+ railBorderRadiusSmall: string;
637
+ railBorderRadiusMedium: string;
638
+ railBorderRadiusLarge: string;
639
+ buttonBorderRadiusSmall: string;
640
+ buttonBorderRadiusMedium: string;
641
+ buttonBorderRadiusLarge: string;
642
+ boxShadowFocus: string;
643
+ }, any>;
644
+ Tooltip: import("../../_mixins").Theme<"Tooltip", {
645
+ padding: string;
646
+ textPadding: string;
647
+ titleSize: string;
648
+ titleWeight: string;
649
+ titleLineHeight: string;
650
+ subtitleSize: string;
651
+ subtitleMargin: string;
652
+ subtitleWeight: string;
653
+ subtitleLineHeight: string;
654
+ iconSize: string;
655
+ arrowSpace: string;
656
+ noArrowSpace: string;
657
+ borderRadius: string;
658
+ color: string;
659
+ textColor: string;
660
+ }, {
661
+ Popover: import("../../_mixins").Theme<"Popover", {
662
+ space: string;
663
+ spaceArrow: string;
664
+ arrowOffset: string;
665
+ arrowOffsetVertical: string;
666
+ arrowHeight: string;
667
+ padding: string;
668
+ fontSize: string;
669
+ borderRadius: string;
670
+ color: string;
671
+ dividerColor: string;
672
+ textColor: string;
673
+ boxShadow: string;
674
+ }, any>;
675
+ }>;
676
+ EditIcon: import("../../_mixins").Theme<"Icon", {
677
+ color: string;
678
+ opacity1Depth: string;
679
+ opacity2Depth: string;
680
+ opacity3Depth: string;
681
+ opacity4Depth: string;
682
+ opacity5Depth: string;
683
+ }, any>;
684
+ DeleteIcon: import("../../_mixins").Theme<"Icon", {
685
+ color: string;
686
+ opacity1Depth: string;
687
+ opacity2Depth: string;
688
+ opacity3Depth: string;
689
+ opacity4Depth: string;
690
+ opacity5Depth: string;
691
+ }, any>;
692
+ CopyIcon: import("../../_mixins").Theme<"Icon", {
693
+ color: string;
694
+ opacity1Depth: string;
695
+ opacity2Depth: string;
696
+ opacity3Depth: string;
697
+ opacity4Depth: string;
698
+ opacity5Depth: string;
699
+ }, any>;
700
+ }>>>;
701
+ builtinThemeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"MappingCard", {
702
+ backgroundColor: string;
703
+ borderColor: string;
704
+ borderRadius: string;
705
+ dividerBackgroundColor: string;
706
+ headerPadding: string;
707
+ bodyPadding: string;
708
+ titleColor: string;
709
+ descriptionColor: string;
710
+ arrowColor: string;
711
+ colLabelColor: string;
712
+ colLabelFontSize: string;
713
+ }, {
714
+ Button: import("../../_mixins").Theme<"Button", {
715
+ heightTiny: string;
716
+ heightSmall: string;
717
+ heightMedium: string;
718
+ heightLarge: string;
719
+ borderRadiusTiny: string;
720
+ borderRadiusSmall: string;
721
+ borderRadiusMedium: string;
722
+ borderRadiusLarge: string;
723
+ fontSizeTiny: string;
724
+ fontSizeSmall: string;
725
+ fontSizeMedium: string;
726
+ fontSizeLarge: string;
727
+ opacityDisabled: string;
728
+ colorOpacitySecondary: string;
729
+ colorOpacitySecondaryHover: string;
730
+ colorOpacitySecondaryPressed: string;
731
+ colorOpacitySecondaryFocus: string;
732
+ colorSecondary: string;
733
+ colorSecondaryHover: string;
734
+ colorSecondaryPressed: string;
735
+ colorSecondaryFocus: string;
736
+ colorSecondaryDisabled: string;
737
+ textColorSecondaryDisabled: string;
738
+ waveColorSecondary: string;
739
+ colorTertiary: string;
740
+ colorTertiaryHover: string;
741
+ colorTertiaryPressed: string;
742
+ colorTertiaryFocus: string;
743
+ colorTertiaryDisalbed: string;
744
+ waveColorTertiary: string;
745
+ textColorTextTertiary: string;
746
+ rippleColorTertiary: string;
747
+ colorQuaternary: string;
748
+ colorQuaternaryHover: string;
749
+ colorQuaternaryPressed: string;
750
+ colorQuaternaryFocus: string;
751
+ rippleColorQuaternary: string;
752
+ waveColorQuaternary: string;
753
+ color: string;
754
+ colorHover: string;
755
+ colorPressed: string;
756
+ colorFocus: string;
757
+ colorDisabled: string;
758
+ textColor: string;
759
+ textTertiary: string;
760
+ textColorTertiary: string;
761
+ textColorHover: string;
762
+ textColorPressed: string;
763
+ textColorFocus: string;
764
+ textColorDisabled: string;
765
+ textColorText: string;
766
+ textColorTextHover: string;
767
+ textColorTextPressed: string;
768
+ textColorTextFocus: string;
769
+ textColorTextDisabled: string;
770
+ textColorGhost: string;
771
+ textColorGhostHover: string;
772
+ textColorGhostPressed: string;
773
+ textColorGhostFocus: string;
774
+ textColorGhostDisabled: string;
775
+ border: string;
776
+ borderHover: string;
777
+ borderPressed: string;
778
+ borderFocus: string;
779
+ borderDisabled: string;
780
+ rippleColor: string;
781
+ colorPrimary: string;
782
+ colorHoverPrimary: string;
783
+ colorPressedPrimary: string;
784
+ colorFocusPrimary: string;
785
+ colorDisabledPrimary: string;
786
+ waveColorPrimary: string;
787
+ textColorPrimary: string;
788
+ textColorHoverPrimary: string;
789
+ textColorPressedPrimary: string;
790
+ textColorFocusPrimary: string;
791
+ textColorDisabledPrimary: string;
792
+ textColorTextPrimary: string;
793
+ textColorTextHoverPrimary: string;
794
+ textColorTextPressedPrimary: string;
795
+ textColorTextFocusPrimary: string;
796
+ textColorTextDisabledPrimary: string;
797
+ textColorGhostPrimary: string;
798
+ textColorGhostHoverPrimary: string;
799
+ textColorGhostPressedPrimary: string;
800
+ textColorGhostFocusPrimary: string;
801
+ textColorGhostDisabledPrimary: string;
802
+ borderPrimary: string;
803
+ borderHoverPrimary: string;
804
+ borderPressedPrimary: string;
805
+ borderFocusPrimary: string;
806
+ borderDisabledPrimary: string;
807
+ rippleColorPrimary: string;
808
+ colorInfo: string;
809
+ colorHoverInfo: string;
810
+ colorPressedInfo: string;
811
+ colorFocusInfo: string;
812
+ colorDisabledInfo: string;
813
+ textColorInfo: string;
814
+ textColorHoverInfo: string;
815
+ textColorPressedInfo: string;
816
+ textColorFocusInfo: string;
817
+ textColorDisabledInfo: string;
818
+ textColorTextInfo: string;
819
+ textColorTextHoverInfo: string;
820
+ textColorTextPressedInfo: string;
821
+ textColorTextFocusInfo: string;
822
+ textColorTextDisabledInfo: string;
823
+ textColorGhostInfo: string;
824
+ textColorGhostHoverInfo: string;
825
+ textColorGhostPressedInfo: string;
826
+ textColorGhostFocusInfo: string;
827
+ textColorGhostDisabledInfo: string;
828
+ borderInfo: string;
829
+ borderHoverInfo: string;
830
+ borderPressedInfo: string;
831
+ borderFocusInfo: string;
832
+ borderDisabledInfo: string;
833
+ rippleColorInfo: string;
834
+ colorSuccess: string;
835
+ colorHoverSuccess: string;
836
+ colorPressedSuccess: string;
837
+ colorFocusSuccess: string;
838
+ colorDisabledSuccess: string;
839
+ textColorSuccess: string;
840
+ textColorHoverSuccess: string;
841
+ textColorPressedSuccess: string;
842
+ textColorFocusSuccess: string;
843
+ textColorDisabledSuccess: string;
844
+ textColorTextSuccess: string;
845
+ textColorTextHoverSuccess: string;
846
+ textColorTextPressedSuccess: string;
847
+ textColorTextFocusSuccess: string;
848
+ textColorTextDisabledSuccess: string;
849
+ textColorGhostSuccess: string;
850
+ textColorGhostHoverSuccess: string;
851
+ textColorGhostPressedSuccess: string;
852
+ textColorGhostFocusSuccess: string;
853
+ textColorGhostDisabledSuccess: string;
854
+ borderSuccess: string;
855
+ borderHoverSuccess: string;
856
+ borderPressedSuccess: string;
857
+ borderFocusSuccess: string;
858
+ borderDisabledSuccess: string;
859
+ rippleColorSuccess: string;
860
+ colorWarning: string;
861
+ colorHoverWarning: string;
862
+ colorPressedWarning: string;
863
+ colorFocusWarning: string;
864
+ colorDisabledWarning: string;
865
+ textColorWarning: string;
866
+ textColorHoverWarning: string;
867
+ textColorPressedWarning: string;
868
+ textColorFocusWarning: string;
869
+ textColorDisabledWarning: string;
870
+ textColorTextWarning: string;
871
+ textColorTextHoverWarning: string;
872
+ textColorTextPressedWarning: string;
873
+ textColorTextFocusWarning: string;
874
+ textColorTextDisabledWarning: string;
875
+ textColorGhostWarning: string;
876
+ textColorGhostHoverWarning: string;
877
+ textColorGhostPressedWarning: string;
878
+ textColorGhostFocusWarning: string;
879
+ textColorGhostDisabledWarning: string;
880
+ borderWarning: string;
881
+ borderHoverWarning: string;
882
+ borderPressedWarning: string;
883
+ borderFocusWarning: string;
884
+ borderDisabledWarning: string;
885
+ rippleColorWarning: string;
886
+ colorError: string;
887
+ colorHoverError: string;
888
+ colorPressedError: string;
889
+ colorFocusError: string;
890
+ colorDisabledError: string;
891
+ textColorError: string;
892
+ textColorHoverError: string;
893
+ textColorPressedError: string;
894
+ textColorFocusError: string;
895
+ textColorDisabledError: string;
896
+ textColorTextError: string;
897
+ textColorTextHoverError: string;
898
+ textColorTextPressedError: string;
899
+ textColorTextFocusError: string;
900
+ textColorTextDisabledError: string;
901
+ textColorGhostError: string;
902
+ textColorGhostHoverError: string;
903
+ textColorGhostPressedError: string;
904
+ textColorGhostFocusError: string;
905
+ textColorGhostDisabledError: string;
906
+ borderError: string;
907
+ borderHoverError: string;
908
+ borderPressedError: string;
909
+ borderFocusError: string;
910
+ borderDisabledError: string;
911
+ rippleColorError: string;
912
+ waveOpacity: string;
913
+ fontWeight: string;
914
+ fontWeightStrong: string;
915
+ paddingTiny: string;
916
+ paddingSmall: string;
917
+ paddingMedium: string;
918
+ paddingLarge: string;
919
+ paddingRoundTiny: string;
920
+ paddingRoundSmall: string;
921
+ paddingRoundMedium: string;
922
+ paddingRoundLarge: string;
923
+ iconMarginTiny: string;
924
+ iconMarginSmall: string;
925
+ iconMarginMedium: string;
926
+ iconMarginLarge: string;
927
+ iconSizeTiny: string;
928
+ iconSizeSmall: string;
929
+ iconSizeMedium: string;
930
+ iconSizeLarge: string;
931
+ rippleDuration: string;
932
+ }, any>;
933
+ Icon: import("../../_mixins").Theme<"Icon", {
934
+ color: string;
935
+ opacity1Depth: string;
936
+ opacity2Depth: string;
937
+ opacity3Depth: string;
938
+ opacity4Depth: string;
939
+ opacity5Depth: string;
940
+ }, any>;
941
+ Switch: import("../../_mixins").Theme<"Switch", {
942
+ buttonHeightSmall: string;
943
+ buttonHeightMedium: string;
944
+ buttonHeightLarge: string;
945
+ buttonWidthSmall: string;
946
+ buttonWidthMedium: string;
947
+ buttonWidthLarge: string;
948
+ buttonWidthPressedSmall: string;
949
+ buttonWidthPressedMedium: string;
950
+ buttonWidthPressedLarge: string;
951
+ railHeightSmall: string;
952
+ railHeightMedium: string;
953
+ railHeightLarge: string;
954
+ railWidthSmall: string;
955
+ railWidthMedium: string;
956
+ railWidthLarge: string;
957
+ iconColor: string;
958
+ textColor: string;
959
+ loadingColor: string;
960
+ loadingColorActive: string;
961
+ opacityDisabled: string;
962
+ railColor: string;
963
+ railColorActive: string;
964
+ railColorActiveDisabled: string;
965
+ buttonBoxShadow: string;
966
+ buttonBoxShadowHover: string;
967
+ buttonBoxShadowCheckedHover: string;
968
+ buttonBoxShadowChecked: string;
969
+ buttonColor: string;
970
+ buttonColorDisabled: string;
971
+ railBorderRadiusSmall: string;
972
+ railBorderRadiusMedium: string;
973
+ railBorderRadiusLarge: string;
974
+ buttonBorderRadiusSmall: string;
975
+ buttonBorderRadiusMedium: string;
976
+ buttonBorderRadiusLarge: string;
977
+ boxShadowFocus: string;
978
+ }, any>;
979
+ Tooltip: import("../../_mixins").Theme<"Tooltip", {
980
+ padding: string;
981
+ textPadding: string;
982
+ titleSize: string;
983
+ titleWeight: string;
984
+ titleLineHeight: string;
985
+ subtitleSize: string;
986
+ subtitleMargin: string;
987
+ subtitleWeight: string;
988
+ subtitleLineHeight: string;
989
+ iconSize: string;
990
+ arrowSpace: string;
991
+ noArrowSpace: string;
992
+ borderRadius: string;
993
+ color: string;
994
+ textColor: string;
995
+ }, {
996
+ Popover: import("../../_mixins").Theme<"Popover", {
997
+ space: string;
998
+ spaceArrow: string;
999
+ arrowOffset: string;
1000
+ arrowOffsetVertical: string;
1001
+ arrowHeight: string;
1002
+ padding: string;
1003
+ fontSize: string;
1004
+ borderRadius: string;
1005
+ color: string;
1006
+ dividerColor: string;
1007
+ textColor: string;
1008
+ boxShadow: string;
1009
+ }, any>;
1010
+ }>;
1011
+ EditIcon: import("../../_mixins").Theme<"Icon", {
1012
+ color: string;
1013
+ opacity1Depth: string;
1014
+ opacity2Depth: string;
1015
+ opacity3Depth: string;
1016
+ opacity4Depth: string;
1017
+ opacity5Depth: string;
1018
+ }, any>;
1019
+ DeleteIcon: import("../../_mixins").Theme<"Icon", {
1020
+ color: string;
1021
+ opacity1Depth: string;
1022
+ opacity2Depth: string;
1023
+ opacity3Depth: string;
1024
+ opacity4Depth: string;
1025
+ opacity5Depth: string;
1026
+ }, any>;
1027
+ CopyIcon: import("../../_mixins").Theme<"Icon", {
1028
+ color: string;
1029
+ opacity1Depth: string;
1030
+ opacity2Depth: string;
1031
+ opacity3Depth: string;
1032
+ opacity4Depth: string;
1033
+ opacity5Depth: string;
1034
+ }, any>;
1035
+ }>>>;
1036
+ }>, {
1037
+ mergedClsPrefix: import("vue").Ref<string, string>;
1038
+ cssVars: import("vue").ComputedRef<{
1039
+ '--u-bezier': string;
1040
+ '--u-background-color': string;
1041
+ '--u-border-color': string;
1042
+ '--u-border-radius': string;
1043
+ '--u-header-padding': string;
1044
+ '--u-body-padding': string;
1045
+ '--u-title-color': string;
1046
+ '--u-description-color': string;
1047
+ '--u-divider-background-color': string;
1048
+ }> | undefined;
1049
+ themeClass: import("vue").Ref<string, string> | undefined;
1050
+ onRender: (() => void) | undefined;
1051
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1052
+ title: import("vue").PropType<import("./interface").MappingCardInterface["title"]>;
1053
+ description: import("vue").PropType<import("./interface").MappingCardInterface["description"]>;
1054
+ rows: import("vue").PropType<import("./interface").MappingCardInterface["rows"]>;
1055
+ cols: {
1056
+ readonly type: import("vue").PropType<import("./interface").MappingCardInterface["cols"]>;
1057
+ readonly default: 3;
1058
+ };
1059
+ defaultSpan: {
1060
+ readonly type: import("vue").PropType<import("./interface").MappingCardInterface["defaultSpan"]>;
1061
+ readonly default: 1;
1062
+ };
1063
+ copy: import("vue").PropType<import("./interface").MappingCardInterface["copy"]>;
1064
+ hideCopy: {
1065
+ readonly type: import("vue").PropType<import("./interface").MappingCardInterface["hideCopy"]>;
1066
+ readonly default: false;
1067
+ };
1068
+ copyButtonProps: import("vue").PropType<import("./interface").MappingCardInterface["copyButtonProps"]>;
1069
+ copyIconProps: import("vue").PropType<import("./interface").MappingCardInterface["copyIconProps"]>;
1070
+ headerEditButtonProps: import("vue").PropType<import("./interface").MappingCardInterface["headerEditButtonProps"]>;
1071
+ headerEditIconProps: import("vue").PropType<import("./interface").MappingCardInterface["headerEditIconProps"]>;
1072
+ headerEditIcon: import("vue").PropType<import("./interface").MappingCardInterface["headerEditIcon"]>;
1073
+ headerDeleteButtonProps: import("vue").PropType<import("./interface").MappingCardInterface["headerDeleteButtonProps"]>;
1074
+ headerDeleteIconProps: import("vue").PropType<import("./interface").MappingCardInterface["headerDeleteIconProps"]>;
1075
+ headerDeleteIcon: import("vue").PropType<import("./interface").MappingCardInterface["headerDeleteIcon"]>;
1076
+ headerSwitchProps: import("vue").PropType<import("./interface").MappingCardInterface["headerSwitchProps"]>;
1077
+ onCopy: import("vue").PropType<import("./interface").MappingCardInterface["onCopy"]>;
1078
+ onEdit: import("vue").PropType<import("./interface").MappingCardInterface["onEdit"]>;
1079
+ onDelete: import("vue").PropType<import("./interface").MappingCardInterface["onDelete"]>;
1080
+ onSwitchChange: import("vue").PropType<import("./interface").MappingCardInterface["onSwitchChange"]>;
1081
+ theme: import("vue").PropType<import("../../_mixins").Theme<"MappingCard", {
1082
+ backgroundColor: string;
1083
+ borderColor: string;
1084
+ borderRadius: string;
1085
+ dividerBackgroundColor: string;
1086
+ headerPadding: string;
1087
+ bodyPadding: string;
1088
+ titleColor: string;
1089
+ descriptionColor: string;
1090
+ arrowColor: string;
1091
+ colLabelColor: string;
1092
+ colLabelFontSize: string;
1093
+ }, {
1094
+ Button: import("../../_mixins").Theme<"Button", {
1095
+ heightTiny: string;
1096
+ heightSmall: string;
1097
+ heightMedium: string;
1098
+ heightLarge: string;
1099
+ borderRadiusTiny: string;
1100
+ borderRadiusSmall: string;
1101
+ borderRadiusMedium: string;
1102
+ borderRadiusLarge: string;
1103
+ fontSizeTiny: string;
1104
+ fontSizeSmall: string;
1105
+ fontSizeMedium: string;
1106
+ fontSizeLarge: string;
1107
+ opacityDisabled: string;
1108
+ colorOpacitySecondary: string;
1109
+ colorOpacitySecondaryHover: string;
1110
+ colorOpacitySecondaryPressed: string;
1111
+ colorOpacitySecondaryFocus: string;
1112
+ colorSecondary: string;
1113
+ colorSecondaryHover: string;
1114
+ colorSecondaryPressed: string;
1115
+ colorSecondaryFocus: string;
1116
+ colorSecondaryDisabled: string;
1117
+ textColorSecondaryDisabled: string;
1118
+ waveColorSecondary: string;
1119
+ colorTertiary: string;
1120
+ colorTertiaryHover: string;
1121
+ colorTertiaryPressed: string;
1122
+ colorTertiaryFocus: string;
1123
+ colorTertiaryDisalbed: string;
1124
+ waveColorTertiary: string;
1125
+ textColorTextTertiary: string;
1126
+ rippleColorTertiary: string;
1127
+ colorQuaternary: string;
1128
+ colorQuaternaryHover: string;
1129
+ colorQuaternaryPressed: string;
1130
+ colorQuaternaryFocus: string;
1131
+ rippleColorQuaternary: string;
1132
+ waveColorQuaternary: string;
1133
+ color: string;
1134
+ colorHover: string;
1135
+ colorPressed: string;
1136
+ colorFocus: string;
1137
+ colorDisabled: string;
1138
+ textColor: string;
1139
+ textTertiary: string;
1140
+ textColorTertiary: string;
1141
+ textColorHover: string;
1142
+ textColorPressed: string;
1143
+ textColorFocus: string;
1144
+ textColorDisabled: string;
1145
+ textColorText: string;
1146
+ textColorTextHover: string;
1147
+ textColorTextPressed: string;
1148
+ textColorTextFocus: string;
1149
+ textColorTextDisabled: string;
1150
+ textColorGhost: string;
1151
+ textColorGhostHover: string;
1152
+ textColorGhostPressed: string;
1153
+ textColorGhostFocus: string;
1154
+ textColorGhostDisabled: string;
1155
+ border: string;
1156
+ borderHover: string;
1157
+ borderPressed: string;
1158
+ borderFocus: string;
1159
+ borderDisabled: string;
1160
+ rippleColor: string;
1161
+ colorPrimary: string;
1162
+ colorHoverPrimary: string;
1163
+ colorPressedPrimary: string;
1164
+ colorFocusPrimary: string;
1165
+ colorDisabledPrimary: string;
1166
+ waveColorPrimary: string;
1167
+ textColorPrimary: string;
1168
+ textColorHoverPrimary: string;
1169
+ textColorPressedPrimary: string;
1170
+ textColorFocusPrimary: string;
1171
+ textColorDisabledPrimary: string;
1172
+ textColorTextPrimary: string;
1173
+ textColorTextHoverPrimary: string;
1174
+ textColorTextPressedPrimary: string;
1175
+ textColorTextFocusPrimary: string;
1176
+ textColorTextDisabledPrimary: string;
1177
+ textColorGhostPrimary: string;
1178
+ textColorGhostHoverPrimary: string;
1179
+ textColorGhostPressedPrimary: string;
1180
+ textColorGhostFocusPrimary: string;
1181
+ textColorGhostDisabledPrimary: string;
1182
+ borderPrimary: string;
1183
+ borderHoverPrimary: string;
1184
+ borderPressedPrimary: string;
1185
+ borderFocusPrimary: string;
1186
+ borderDisabledPrimary: string;
1187
+ rippleColorPrimary: string;
1188
+ colorInfo: string;
1189
+ colorHoverInfo: string;
1190
+ colorPressedInfo: string;
1191
+ colorFocusInfo: string;
1192
+ colorDisabledInfo: string;
1193
+ textColorInfo: string;
1194
+ textColorHoverInfo: string;
1195
+ textColorPressedInfo: string;
1196
+ textColorFocusInfo: string;
1197
+ textColorDisabledInfo: string;
1198
+ textColorTextInfo: string;
1199
+ textColorTextHoverInfo: string;
1200
+ textColorTextPressedInfo: string;
1201
+ textColorTextFocusInfo: string;
1202
+ textColorTextDisabledInfo: string;
1203
+ textColorGhostInfo: string;
1204
+ textColorGhostHoverInfo: string;
1205
+ textColorGhostPressedInfo: string;
1206
+ textColorGhostFocusInfo: string;
1207
+ textColorGhostDisabledInfo: string;
1208
+ borderInfo: string;
1209
+ borderHoverInfo: string;
1210
+ borderPressedInfo: string;
1211
+ borderFocusInfo: string;
1212
+ borderDisabledInfo: string;
1213
+ rippleColorInfo: string;
1214
+ colorSuccess: string;
1215
+ colorHoverSuccess: string;
1216
+ colorPressedSuccess: string;
1217
+ colorFocusSuccess: string;
1218
+ colorDisabledSuccess: string;
1219
+ textColorSuccess: string;
1220
+ textColorHoverSuccess: string;
1221
+ textColorPressedSuccess: string;
1222
+ textColorFocusSuccess: string;
1223
+ textColorDisabledSuccess: string;
1224
+ textColorTextSuccess: string;
1225
+ textColorTextHoverSuccess: string;
1226
+ textColorTextPressedSuccess: string;
1227
+ textColorTextFocusSuccess: string;
1228
+ textColorTextDisabledSuccess: string;
1229
+ textColorGhostSuccess: string;
1230
+ textColorGhostHoverSuccess: string;
1231
+ textColorGhostPressedSuccess: string;
1232
+ textColorGhostFocusSuccess: string;
1233
+ textColorGhostDisabledSuccess: string;
1234
+ borderSuccess: string;
1235
+ borderHoverSuccess: string;
1236
+ borderPressedSuccess: string;
1237
+ borderFocusSuccess: string;
1238
+ borderDisabledSuccess: string;
1239
+ rippleColorSuccess: string;
1240
+ colorWarning: string;
1241
+ colorHoverWarning: string;
1242
+ colorPressedWarning: string;
1243
+ colorFocusWarning: string;
1244
+ colorDisabledWarning: string;
1245
+ textColorWarning: string;
1246
+ textColorHoverWarning: string;
1247
+ textColorPressedWarning: string;
1248
+ textColorFocusWarning: string;
1249
+ textColorDisabledWarning: string;
1250
+ textColorTextWarning: string;
1251
+ textColorTextHoverWarning: string;
1252
+ textColorTextPressedWarning: string;
1253
+ textColorTextFocusWarning: string;
1254
+ textColorTextDisabledWarning: string;
1255
+ textColorGhostWarning: string;
1256
+ textColorGhostHoverWarning: string;
1257
+ textColorGhostPressedWarning: string;
1258
+ textColorGhostFocusWarning: string;
1259
+ textColorGhostDisabledWarning: string;
1260
+ borderWarning: string;
1261
+ borderHoverWarning: string;
1262
+ borderPressedWarning: string;
1263
+ borderFocusWarning: string;
1264
+ borderDisabledWarning: string;
1265
+ rippleColorWarning: string;
1266
+ colorError: string;
1267
+ colorHoverError: string;
1268
+ colorPressedError: string;
1269
+ colorFocusError: string;
1270
+ colorDisabledError: string;
1271
+ textColorError: string;
1272
+ textColorHoverError: string;
1273
+ textColorPressedError: string;
1274
+ textColorFocusError: string;
1275
+ textColorDisabledError: string;
1276
+ textColorTextError: string;
1277
+ textColorTextHoverError: string;
1278
+ textColorTextPressedError: string;
1279
+ textColorTextFocusError: string;
1280
+ textColorTextDisabledError: string;
1281
+ textColorGhostError: string;
1282
+ textColorGhostHoverError: string;
1283
+ textColorGhostPressedError: string;
1284
+ textColorGhostFocusError: string;
1285
+ textColorGhostDisabledError: string;
1286
+ borderError: string;
1287
+ borderHoverError: string;
1288
+ borderPressedError: string;
1289
+ borderFocusError: string;
1290
+ borderDisabledError: string;
1291
+ rippleColorError: string;
1292
+ waveOpacity: string;
1293
+ fontWeight: string;
1294
+ fontWeightStrong: string;
1295
+ paddingTiny: string;
1296
+ paddingSmall: string;
1297
+ paddingMedium: string;
1298
+ paddingLarge: string;
1299
+ paddingRoundTiny: string;
1300
+ paddingRoundSmall: string;
1301
+ paddingRoundMedium: string;
1302
+ paddingRoundLarge: string;
1303
+ iconMarginTiny: string;
1304
+ iconMarginSmall: string;
1305
+ iconMarginMedium: string;
1306
+ iconMarginLarge: string;
1307
+ iconSizeTiny: string;
1308
+ iconSizeSmall: string;
1309
+ iconSizeMedium: string;
1310
+ iconSizeLarge: string;
1311
+ rippleDuration: string;
1312
+ }, any>;
1313
+ Icon: import("../../_mixins").Theme<"Icon", {
1314
+ color: string;
1315
+ opacity1Depth: string;
1316
+ opacity2Depth: string;
1317
+ opacity3Depth: string;
1318
+ opacity4Depth: string;
1319
+ opacity5Depth: string;
1320
+ }, any>;
1321
+ Switch: import("../../_mixins").Theme<"Switch", {
1322
+ buttonHeightSmall: string;
1323
+ buttonHeightMedium: string;
1324
+ buttonHeightLarge: string;
1325
+ buttonWidthSmall: string;
1326
+ buttonWidthMedium: string;
1327
+ buttonWidthLarge: string;
1328
+ buttonWidthPressedSmall: string;
1329
+ buttonWidthPressedMedium: string;
1330
+ buttonWidthPressedLarge: string;
1331
+ railHeightSmall: string;
1332
+ railHeightMedium: string;
1333
+ railHeightLarge: string;
1334
+ railWidthSmall: string;
1335
+ railWidthMedium: string;
1336
+ railWidthLarge: string;
1337
+ iconColor: string;
1338
+ textColor: string;
1339
+ loadingColor: string;
1340
+ loadingColorActive: string;
1341
+ opacityDisabled: string;
1342
+ railColor: string;
1343
+ railColorActive: string;
1344
+ railColorActiveDisabled: string;
1345
+ buttonBoxShadow: string;
1346
+ buttonBoxShadowHover: string;
1347
+ buttonBoxShadowCheckedHover: string;
1348
+ buttonBoxShadowChecked: string;
1349
+ buttonColor: string;
1350
+ buttonColorDisabled: string;
1351
+ railBorderRadiusSmall: string;
1352
+ railBorderRadiusMedium: string;
1353
+ railBorderRadiusLarge: string;
1354
+ buttonBorderRadiusSmall: string;
1355
+ buttonBorderRadiusMedium: string;
1356
+ buttonBorderRadiusLarge: string;
1357
+ boxShadowFocus: string;
1358
+ }, any>;
1359
+ Tooltip: import("../../_mixins").Theme<"Tooltip", {
1360
+ padding: string;
1361
+ textPadding: string;
1362
+ titleSize: string;
1363
+ titleWeight: string;
1364
+ titleLineHeight: string;
1365
+ subtitleSize: string;
1366
+ subtitleMargin: string;
1367
+ subtitleWeight: string;
1368
+ subtitleLineHeight: string;
1369
+ iconSize: string;
1370
+ arrowSpace: string;
1371
+ noArrowSpace: string;
1372
+ borderRadius: string;
1373
+ color: string;
1374
+ textColor: string;
1375
+ }, {
1376
+ Popover: import("../../_mixins").Theme<"Popover", {
1377
+ space: string;
1378
+ spaceArrow: string;
1379
+ arrowOffset: string;
1380
+ arrowOffsetVertical: string;
1381
+ arrowHeight: string;
1382
+ padding: string;
1383
+ fontSize: string;
1384
+ borderRadius: string;
1385
+ color: string;
1386
+ dividerColor: string;
1387
+ textColor: string;
1388
+ boxShadow: string;
1389
+ }, any>;
1390
+ }>;
1391
+ EditIcon: import("../../_mixins").Theme<"Icon", {
1392
+ color: string;
1393
+ opacity1Depth: string;
1394
+ opacity2Depth: string;
1395
+ opacity3Depth: string;
1396
+ opacity4Depth: string;
1397
+ opacity5Depth: string;
1398
+ }, any>;
1399
+ DeleteIcon: import("../../_mixins").Theme<"Icon", {
1400
+ color: string;
1401
+ opacity1Depth: string;
1402
+ opacity2Depth: string;
1403
+ opacity3Depth: string;
1404
+ opacity4Depth: string;
1405
+ opacity5Depth: string;
1406
+ }, any>;
1407
+ CopyIcon: import("../../_mixins").Theme<"Icon", {
1408
+ color: string;
1409
+ opacity1Depth: string;
1410
+ opacity2Depth: string;
1411
+ opacity3Depth: string;
1412
+ opacity4Depth: string;
1413
+ opacity5Depth: string;
1414
+ }, any>;
1415
+ }>>;
1416
+ themeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"MappingCard", {
1417
+ backgroundColor: string;
1418
+ borderColor: string;
1419
+ borderRadius: string;
1420
+ dividerBackgroundColor: string;
1421
+ headerPadding: string;
1422
+ bodyPadding: string;
1423
+ titleColor: string;
1424
+ descriptionColor: string;
1425
+ arrowColor: string;
1426
+ colLabelColor: string;
1427
+ colLabelFontSize: string;
1428
+ }, {
1429
+ Button: import("../../_mixins").Theme<"Button", {
1430
+ heightTiny: string;
1431
+ heightSmall: string;
1432
+ heightMedium: string;
1433
+ heightLarge: string;
1434
+ borderRadiusTiny: string;
1435
+ borderRadiusSmall: string;
1436
+ borderRadiusMedium: string;
1437
+ borderRadiusLarge: string;
1438
+ fontSizeTiny: string;
1439
+ fontSizeSmall: string;
1440
+ fontSizeMedium: string;
1441
+ fontSizeLarge: string;
1442
+ opacityDisabled: string;
1443
+ colorOpacitySecondary: string;
1444
+ colorOpacitySecondaryHover: string;
1445
+ colorOpacitySecondaryPressed: string;
1446
+ colorOpacitySecondaryFocus: string;
1447
+ colorSecondary: string;
1448
+ colorSecondaryHover: string;
1449
+ colorSecondaryPressed: string;
1450
+ colorSecondaryFocus: string;
1451
+ colorSecondaryDisabled: string;
1452
+ textColorSecondaryDisabled: string;
1453
+ waveColorSecondary: string;
1454
+ colorTertiary: string;
1455
+ colorTertiaryHover: string;
1456
+ colorTertiaryPressed: string;
1457
+ colorTertiaryFocus: string;
1458
+ colorTertiaryDisalbed: string;
1459
+ waveColorTertiary: string;
1460
+ textColorTextTertiary: string;
1461
+ rippleColorTertiary: string;
1462
+ colorQuaternary: string;
1463
+ colorQuaternaryHover: string;
1464
+ colorQuaternaryPressed: string;
1465
+ colorQuaternaryFocus: string;
1466
+ rippleColorQuaternary: string;
1467
+ waveColorQuaternary: string;
1468
+ color: string;
1469
+ colorHover: string;
1470
+ colorPressed: string;
1471
+ colorFocus: string;
1472
+ colorDisabled: string;
1473
+ textColor: string;
1474
+ textTertiary: string;
1475
+ textColorTertiary: string;
1476
+ textColorHover: string;
1477
+ textColorPressed: string;
1478
+ textColorFocus: string;
1479
+ textColorDisabled: string;
1480
+ textColorText: string;
1481
+ textColorTextHover: string;
1482
+ textColorTextPressed: string;
1483
+ textColorTextFocus: string;
1484
+ textColorTextDisabled: string;
1485
+ textColorGhost: string;
1486
+ textColorGhostHover: string;
1487
+ textColorGhostPressed: string;
1488
+ textColorGhostFocus: string;
1489
+ textColorGhostDisabled: string;
1490
+ border: string;
1491
+ borderHover: string;
1492
+ borderPressed: string;
1493
+ borderFocus: string;
1494
+ borderDisabled: string;
1495
+ rippleColor: string;
1496
+ colorPrimary: string;
1497
+ colorHoverPrimary: string;
1498
+ colorPressedPrimary: string;
1499
+ colorFocusPrimary: string;
1500
+ colorDisabledPrimary: string;
1501
+ waveColorPrimary: string;
1502
+ textColorPrimary: string;
1503
+ textColorHoverPrimary: string;
1504
+ textColorPressedPrimary: string;
1505
+ textColorFocusPrimary: string;
1506
+ textColorDisabledPrimary: string;
1507
+ textColorTextPrimary: string;
1508
+ textColorTextHoverPrimary: string;
1509
+ textColorTextPressedPrimary: string;
1510
+ textColorTextFocusPrimary: string;
1511
+ textColorTextDisabledPrimary: string;
1512
+ textColorGhostPrimary: string;
1513
+ textColorGhostHoverPrimary: string;
1514
+ textColorGhostPressedPrimary: string;
1515
+ textColorGhostFocusPrimary: string;
1516
+ textColorGhostDisabledPrimary: string;
1517
+ borderPrimary: string;
1518
+ borderHoverPrimary: string;
1519
+ borderPressedPrimary: string;
1520
+ borderFocusPrimary: string;
1521
+ borderDisabledPrimary: string;
1522
+ rippleColorPrimary: string;
1523
+ colorInfo: string;
1524
+ colorHoverInfo: string;
1525
+ colorPressedInfo: string;
1526
+ colorFocusInfo: string;
1527
+ colorDisabledInfo: string;
1528
+ textColorInfo: string;
1529
+ textColorHoverInfo: string;
1530
+ textColorPressedInfo: string;
1531
+ textColorFocusInfo: string;
1532
+ textColorDisabledInfo: string;
1533
+ textColorTextInfo: string;
1534
+ textColorTextHoverInfo: string;
1535
+ textColorTextPressedInfo: string;
1536
+ textColorTextFocusInfo: string;
1537
+ textColorTextDisabledInfo: string;
1538
+ textColorGhostInfo: string;
1539
+ textColorGhostHoverInfo: string;
1540
+ textColorGhostPressedInfo: string;
1541
+ textColorGhostFocusInfo: string;
1542
+ textColorGhostDisabledInfo: string;
1543
+ borderInfo: string;
1544
+ borderHoverInfo: string;
1545
+ borderPressedInfo: string;
1546
+ borderFocusInfo: string;
1547
+ borderDisabledInfo: string;
1548
+ rippleColorInfo: string;
1549
+ colorSuccess: string;
1550
+ colorHoverSuccess: string;
1551
+ colorPressedSuccess: string;
1552
+ colorFocusSuccess: string;
1553
+ colorDisabledSuccess: string;
1554
+ textColorSuccess: string;
1555
+ textColorHoverSuccess: string;
1556
+ textColorPressedSuccess: string;
1557
+ textColorFocusSuccess: string;
1558
+ textColorDisabledSuccess: string;
1559
+ textColorTextSuccess: string;
1560
+ textColorTextHoverSuccess: string;
1561
+ textColorTextPressedSuccess: string;
1562
+ textColorTextFocusSuccess: string;
1563
+ textColorTextDisabledSuccess: string;
1564
+ textColorGhostSuccess: string;
1565
+ textColorGhostHoverSuccess: string;
1566
+ textColorGhostPressedSuccess: string;
1567
+ textColorGhostFocusSuccess: string;
1568
+ textColorGhostDisabledSuccess: string;
1569
+ borderSuccess: string;
1570
+ borderHoverSuccess: string;
1571
+ borderPressedSuccess: string;
1572
+ borderFocusSuccess: string;
1573
+ borderDisabledSuccess: string;
1574
+ rippleColorSuccess: string;
1575
+ colorWarning: string;
1576
+ colorHoverWarning: string;
1577
+ colorPressedWarning: string;
1578
+ colorFocusWarning: string;
1579
+ colorDisabledWarning: string;
1580
+ textColorWarning: string;
1581
+ textColorHoverWarning: string;
1582
+ textColorPressedWarning: string;
1583
+ textColorFocusWarning: string;
1584
+ textColorDisabledWarning: string;
1585
+ textColorTextWarning: string;
1586
+ textColorTextHoverWarning: string;
1587
+ textColorTextPressedWarning: string;
1588
+ textColorTextFocusWarning: string;
1589
+ textColorTextDisabledWarning: string;
1590
+ textColorGhostWarning: string;
1591
+ textColorGhostHoverWarning: string;
1592
+ textColorGhostPressedWarning: string;
1593
+ textColorGhostFocusWarning: string;
1594
+ textColorGhostDisabledWarning: string;
1595
+ borderWarning: string;
1596
+ borderHoverWarning: string;
1597
+ borderPressedWarning: string;
1598
+ borderFocusWarning: string;
1599
+ borderDisabledWarning: string;
1600
+ rippleColorWarning: string;
1601
+ colorError: string;
1602
+ colorHoverError: string;
1603
+ colorPressedError: string;
1604
+ colorFocusError: string;
1605
+ colorDisabledError: string;
1606
+ textColorError: string;
1607
+ textColorHoverError: string;
1608
+ textColorPressedError: string;
1609
+ textColorFocusError: string;
1610
+ textColorDisabledError: string;
1611
+ textColorTextError: string;
1612
+ textColorTextHoverError: string;
1613
+ textColorTextPressedError: string;
1614
+ textColorTextFocusError: string;
1615
+ textColorTextDisabledError: string;
1616
+ textColorGhostError: string;
1617
+ textColorGhostHoverError: string;
1618
+ textColorGhostPressedError: string;
1619
+ textColorGhostFocusError: string;
1620
+ textColorGhostDisabledError: string;
1621
+ borderError: string;
1622
+ borderHoverError: string;
1623
+ borderPressedError: string;
1624
+ borderFocusError: string;
1625
+ borderDisabledError: string;
1626
+ rippleColorError: string;
1627
+ waveOpacity: string;
1628
+ fontWeight: string;
1629
+ fontWeightStrong: string;
1630
+ paddingTiny: string;
1631
+ paddingSmall: string;
1632
+ paddingMedium: string;
1633
+ paddingLarge: string;
1634
+ paddingRoundTiny: string;
1635
+ paddingRoundSmall: string;
1636
+ paddingRoundMedium: string;
1637
+ paddingRoundLarge: string;
1638
+ iconMarginTiny: string;
1639
+ iconMarginSmall: string;
1640
+ iconMarginMedium: string;
1641
+ iconMarginLarge: string;
1642
+ iconSizeTiny: string;
1643
+ iconSizeSmall: string;
1644
+ iconSizeMedium: string;
1645
+ iconSizeLarge: string;
1646
+ rippleDuration: string;
1647
+ }, any>;
1648
+ Icon: import("../../_mixins").Theme<"Icon", {
1649
+ color: string;
1650
+ opacity1Depth: string;
1651
+ opacity2Depth: string;
1652
+ opacity3Depth: string;
1653
+ opacity4Depth: string;
1654
+ opacity5Depth: string;
1655
+ }, any>;
1656
+ Switch: import("../../_mixins").Theme<"Switch", {
1657
+ buttonHeightSmall: string;
1658
+ buttonHeightMedium: string;
1659
+ buttonHeightLarge: string;
1660
+ buttonWidthSmall: string;
1661
+ buttonWidthMedium: string;
1662
+ buttonWidthLarge: string;
1663
+ buttonWidthPressedSmall: string;
1664
+ buttonWidthPressedMedium: string;
1665
+ buttonWidthPressedLarge: string;
1666
+ railHeightSmall: string;
1667
+ railHeightMedium: string;
1668
+ railHeightLarge: string;
1669
+ railWidthSmall: string;
1670
+ railWidthMedium: string;
1671
+ railWidthLarge: string;
1672
+ iconColor: string;
1673
+ textColor: string;
1674
+ loadingColor: string;
1675
+ loadingColorActive: string;
1676
+ opacityDisabled: string;
1677
+ railColor: string;
1678
+ railColorActive: string;
1679
+ railColorActiveDisabled: string;
1680
+ buttonBoxShadow: string;
1681
+ buttonBoxShadowHover: string;
1682
+ buttonBoxShadowCheckedHover: string;
1683
+ buttonBoxShadowChecked: string;
1684
+ buttonColor: string;
1685
+ buttonColorDisabled: string;
1686
+ railBorderRadiusSmall: string;
1687
+ railBorderRadiusMedium: string;
1688
+ railBorderRadiusLarge: string;
1689
+ buttonBorderRadiusSmall: string;
1690
+ buttonBorderRadiusMedium: string;
1691
+ buttonBorderRadiusLarge: string;
1692
+ boxShadowFocus: string;
1693
+ }, any>;
1694
+ Tooltip: import("../../_mixins").Theme<"Tooltip", {
1695
+ padding: string;
1696
+ textPadding: string;
1697
+ titleSize: string;
1698
+ titleWeight: string;
1699
+ titleLineHeight: string;
1700
+ subtitleSize: string;
1701
+ subtitleMargin: string;
1702
+ subtitleWeight: string;
1703
+ subtitleLineHeight: string;
1704
+ iconSize: string;
1705
+ arrowSpace: string;
1706
+ noArrowSpace: string;
1707
+ borderRadius: string;
1708
+ color: string;
1709
+ textColor: string;
1710
+ }, {
1711
+ Popover: import("../../_mixins").Theme<"Popover", {
1712
+ space: string;
1713
+ spaceArrow: string;
1714
+ arrowOffset: string;
1715
+ arrowOffsetVertical: string;
1716
+ arrowHeight: string;
1717
+ padding: string;
1718
+ fontSize: string;
1719
+ borderRadius: string;
1720
+ color: string;
1721
+ dividerColor: string;
1722
+ textColor: string;
1723
+ boxShadow: string;
1724
+ }, any>;
1725
+ }>;
1726
+ EditIcon: import("../../_mixins").Theme<"Icon", {
1727
+ color: string;
1728
+ opacity1Depth: string;
1729
+ opacity2Depth: string;
1730
+ opacity3Depth: string;
1731
+ opacity4Depth: string;
1732
+ opacity5Depth: string;
1733
+ }, any>;
1734
+ DeleteIcon: import("../../_mixins").Theme<"Icon", {
1735
+ color: string;
1736
+ opacity1Depth: string;
1737
+ opacity2Depth: string;
1738
+ opacity3Depth: string;
1739
+ opacity4Depth: string;
1740
+ opacity5Depth: string;
1741
+ }, any>;
1742
+ CopyIcon: import("../../_mixins").Theme<"Icon", {
1743
+ color: string;
1744
+ opacity1Depth: string;
1745
+ opacity2Depth: string;
1746
+ opacity3Depth: string;
1747
+ opacity4Depth: string;
1748
+ opacity5Depth: string;
1749
+ }, any>;
1750
+ }>>>;
1751
+ builtinThemeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"MappingCard", {
1752
+ backgroundColor: string;
1753
+ borderColor: string;
1754
+ borderRadius: string;
1755
+ dividerBackgroundColor: string;
1756
+ headerPadding: string;
1757
+ bodyPadding: string;
1758
+ titleColor: string;
1759
+ descriptionColor: string;
1760
+ arrowColor: string;
1761
+ colLabelColor: string;
1762
+ colLabelFontSize: string;
1763
+ }, {
1764
+ Button: import("../../_mixins").Theme<"Button", {
1765
+ heightTiny: string;
1766
+ heightSmall: string;
1767
+ heightMedium: string;
1768
+ heightLarge: string;
1769
+ borderRadiusTiny: string;
1770
+ borderRadiusSmall: string;
1771
+ borderRadiusMedium: string;
1772
+ borderRadiusLarge: string;
1773
+ fontSizeTiny: string;
1774
+ fontSizeSmall: string;
1775
+ fontSizeMedium: string;
1776
+ fontSizeLarge: string;
1777
+ opacityDisabled: string;
1778
+ colorOpacitySecondary: string;
1779
+ colorOpacitySecondaryHover: string;
1780
+ colorOpacitySecondaryPressed: string;
1781
+ colorOpacitySecondaryFocus: string;
1782
+ colorSecondary: string;
1783
+ colorSecondaryHover: string;
1784
+ colorSecondaryPressed: string;
1785
+ colorSecondaryFocus: string;
1786
+ colorSecondaryDisabled: string;
1787
+ textColorSecondaryDisabled: string;
1788
+ waveColorSecondary: string;
1789
+ colorTertiary: string;
1790
+ colorTertiaryHover: string;
1791
+ colorTertiaryPressed: string;
1792
+ colorTertiaryFocus: string;
1793
+ colorTertiaryDisalbed: string;
1794
+ waveColorTertiary: string;
1795
+ textColorTextTertiary: string;
1796
+ rippleColorTertiary: string;
1797
+ colorQuaternary: string;
1798
+ colorQuaternaryHover: string;
1799
+ colorQuaternaryPressed: string;
1800
+ colorQuaternaryFocus: string;
1801
+ rippleColorQuaternary: string;
1802
+ waveColorQuaternary: string;
1803
+ color: string;
1804
+ colorHover: string;
1805
+ colorPressed: string;
1806
+ colorFocus: string;
1807
+ colorDisabled: string;
1808
+ textColor: string;
1809
+ textTertiary: string;
1810
+ textColorTertiary: string;
1811
+ textColorHover: string;
1812
+ textColorPressed: string;
1813
+ textColorFocus: string;
1814
+ textColorDisabled: string;
1815
+ textColorText: string;
1816
+ textColorTextHover: string;
1817
+ textColorTextPressed: string;
1818
+ textColorTextFocus: string;
1819
+ textColorTextDisabled: string;
1820
+ textColorGhost: string;
1821
+ textColorGhostHover: string;
1822
+ textColorGhostPressed: string;
1823
+ textColorGhostFocus: string;
1824
+ textColorGhostDisabled: string;
1825
+ border: string;
1826
+ borderHover: string;
1827
+ borderPressed: string;
1828
+ borderFocus: string;
1829
+ borderDisabled: string;
1830
+ rippleColor: string;
1831
+ colorPrimary: string;
1832
+ colorHoverPrimary: string;
1833
+ colorPressedPrimary: string;
1834
+ colorFocusPrimary: string;
1835
+ colorDisabledPrimary: string;
1836
+ waveColorPrimary: string;
1837
+ textColorPrimary: string;
1838
+ textColorHoverPrimary: string;
1839
+ textColorPressedPrimary: string;
1840
+ textColorFocusPrimary: string;
1841
+ textColorDisabledPrimary: string;
1842
+ textColorTextPrimary: string;
1843
+ textColorTextHoverPrimary: string;
1844
+ textColorTextPressedPrimary: string;
1845
+ textColorTextFocusPrimary: string;
1846
+ textColorTextDisabledPrimary: string;
1847
+ textColorGhostPrimary: string;
1848
+ textColorGhostHoverPrimary: string;
1849
+ textColorGhostPressedPrimary: string;
1850
+ textColorGhostFocusPrimary: string;
1851
+ textColorGhostDisabledPrimary: string;
1852
+ borderPrimary: string;
1853
+ borderHoverPrimary: string;
1854
+ borderPressedPrimary: string;
1855
+ borderFocusPrimary: string;
1856
+ borderDisabledPrimary: string;
1857
+ rippleColorPrimary: string;
1858
+ colorInfo: string;
1859
+ colorHoverInfo: string;
1860
+ colorPressedInfo: string;
1861
+ colorFocusInfo: string;
1862
+ colorDisabledInfo: string;
1863
+ textColorInfo: string;
1864
+ textColorHoverInfo: string;
1865
+ textColorPressedInfo: string;
1866
+ textColorFocusInfo: string;
1867
+ textColorDisabledInfo: string;
1868
+ textColorTextInfo: string;
1869
+ textColorTextHoverInfo: string;
1870
+ textColorTextPressedInfo: string;
1871
+ textColorTextFocusInfo: string;
1872
+ textColorTextDisabledInfo: string;
1873
+ textColorGhostInfo: string;
1874
+ textColorGhostHoverInfo: string;
1875
+ textColorGhostPressedInfo: string;
1876
+ textColorGhostFocusInfo: string;
1877
+ textColorGhostDisabledInfo: string;
1878
+ borderInfo: string;
1879
+ borderHoverInfo: string;
1880
+ borderPressedInfo: string;
1881
+ borderFocusInfo: string;
1882
+ borderDisabledInfo: string;
1883
+ rippleColorInfo: string;
1884
+ colorSuccess: string;
1885
+ colorHoverSuccess: string;
1886
+ colorPressedSuccess: string;
1887
+ colorFocusSuccess: string;
1888
+ colorDisabledSuccess: string;
1889
+ textColorSuccess: string;
1890
+ textColorHoverSuccess: string;
1891
+ textColorPressedSuccess: string;
1892
+ textColorFocusSuccess: string;
1893
+ textColorDisabledSuccess: string;
1894
+ textColorTextSuccess: string;
1895
+ textColorTextHoverSuccess: string;
1896
+ textColorTextPressedSuccess: string;
1897
+ textColorTextFocusSuccess: string;
1898
+ textColorTextDisabledSuccess: string;
1899
+ textColorGhostSuccess: string;
1900
+ textColorGhostHoverSuccess: string;
1901
+ textColorGhostPressedSuccess: string;
1902
+ textColorGhostFocusSuccess: string;
1903
+ textColorGhostDisabledSuccess: string;
1904
+ borderSuccess: string;
1905
+ borderHoverSuccess: string;
1906
+ borderPressedSuccess: string;
1907
+ borderFocusSuccess: string;
1908
+ borderDisabledSuccess: string;
1909
+ rippleColorSuccess: string;
1910
+ colorWarning: string;
1911
+ colorHoverWarning: string;
1912
+ colorPressedWarning: string;
1913
+ colorFocusWarning: string;
1914
+ colorDisabledWarning: string;
1915
+ textColorWarning: string;
1916
+ textColorHoverWarning: string;
1917
+ textColorPressedWarning: string;
1918
+ textColorFocusWarning: string;
1919
+ textColorDisabledWarning: string;
1920
+ textColorTextWarning: string;
1921
+ textColorTextHoverWarning: string;
1922
+ textColorTextPressedWarning: string;
1923
+ textColorTextFocusWarning: string;
1924
+ textColorTextDisabledWarning: string;
1925
+ textColorGhostWarning: string;
1926
+ textColorGhostHoverWarning: string;
1927
+ textColorGhostPressedWarning: string;
1928
+ textColorGhostFocusWarning: string;
1929
+ textColorGhostDisabledWarning: string;
1930
+ borderWarning: string;
1931
+ borderHoverWarning: string;
1932
+ borderPressedWarning: string;
1933
+ borderFocusWarning: string;
1934
+ borderDisabledWarning: string;
1935
+ rippleColorWarning: string;
1936
+ colorError: string;
1937
+ colorHoverError: string;
1938
+ colorPressedError: string;
1939
+ colorFocusError: string;
1940
+ colorDisabledError: string;
1941
+ textColorError: string;
1942
+ textColorHoverError: string;
1943
+ textColorPressedError: string;
1944
+ textColorFocusError: string;
1945
+ textColorDisabledError: string;
1946
+ textColorTextError: string;
1947
+ textColorTextHoverError: string;
1948
+ textColorTextPressedError: string;
1949
+ textColorTextFocusError: string;
1950
+ textColorTextDisabledError: string;
1951
+ textColorGhostError: string;
1952
+ textColorGhostHoverError: string;
1953
+ textColorGhostPressedError: string;
1954
+ textColorGhostFocusError: string;
1955
+ textColorGhostDisabledError: string;
1956
+ borderError: string;
1957
+ borderHoverError: string;
1958
+ borderPressedError: string;
1959
+ borderFocusError: string;
1960
+ borderDisabledError: string;
1961
+ rippleColorError: string;
1962
+ waveOpacity: string;
1963
+ fontWeight: string;
1964
+ fontWeightStrong: string;
1965
+ paddingTiny: string;
1966
+ paddingSmall: string;
1967
+ paddingMedium: string;
1968
+ paddingLarge: string;
1969
+ paddingRoundTiny: string;
1970
+ paddingRoundSmall: string;
1971
+ paddingRoundMedium: string;
1972
+ paddingRoundLarge: string;
1973
+ iconMarginTiny: string;
1974
+ iconMarginSmall: string;
1975
+ iconMarginMedium: string;
1976
+ iconMarginLarge: string;
1977
+ iconSizeTiny: string;
1978
+ iconSizeSmall: string;
1979
+ iconSizeMedium: string;
1980
+ iconSizeLarge: string;
1981
+ rippleDuration: string;
1982
+ }, any>;
1983
+ Icon: import("../../_mixins").Theme<"Icon", {
1984
+ color: string;
1985
+ opacity1Depth: string;
1986
+ opacity2Depth: string;
1987
+ opacity3Depth: string;
1988
+ opacity4Depth: string;
1989
+ opacity5Depth: string;
1990
+ }, any>;
1991
+ Switch: import("../../_mixins").Theme<"Switch", {
1992
+ buttonHeightSmall: string;
1993
+ buttonHeightMedium: string;
1994
+ buttonHeightLarge: string;
1995
+ buttonWidthSmall: string;
1996
+ buttonWidthMedium: string;
1997
+ buttonWidthLarge: string;
1998
+ buttonWidthPressedSmall: string;
1999
+ buttonWidthPressedMedium: string;
2000
+ buttonWidthPressedLarge: string;
2001
+ railHeightSmall: string;
2002
+ railHeightMedium: string;
2003
+ railHeightLarge: string;
2004
+ railWidthSmall: string;
2005
+ railWidthMedium: string;
2006
+ railWidthLarge: string;
2007
+ iconColor: string;
2008
+ textColor: string;
2009
+ loadingColor: string;
2010
+ loadingColorActive: string;
2011
+ opacityDisabled: string;
2012
+ railColor: string;
2013
+ railColorActive: string;
2014
+ railColorActiveDisabled: string;
2015
+ buttonBoxShadow: string;
2016
+ buttonBoxShadowHover: string;
2017
+ buttonBoxShadowCheckedHover: string;
2018
+ buttonBoxShadowChecked: string;
2019
+ buttonColor: string;
2020
+ buttonColorDisabled: string;
2021
+ railBorderRadiusSmall: string;
2022
+ railBorderRadiusMedium: string;
2023
+ railBorderRadiusLarge: string;
2024
+ buttonBorderRadiusSmall: string;
2025
+ buttonBorderRadiusMedium: string;
2026
+ buttonBorderRadiusLarge: string;
2027
+ boxShadowFocus: string;
2028
+ }, any>;
2029
+ Tooltip: import("../../_mixins").Theme<"Tooltip", {
2030
+ padding: string;
2031
+ textPadding: string;
2032
+ titleSize: string;
2033
+ titleWeight: string;
2034
+ titleLineHeight: string;
2035
+ subtitleSize: string;
2036
+ subtitleMargin: string;
2037
+ subtitleWeight: string;
2038
+ subtitleLineHeight: string;
2039
+ iconSize: string;
2040
+ arrowSpace: string;
2041
+ noArrowSpace: string;
2042
+ borderRadius: string;
2043
+ color: string;
2044
+ textColor: string;
2045
+ }, {
2046
+ Popover: import("../../_mixins").Theme<"Popover", {
2047
+ space: string;
2048
+ spaceArrow: string;
2049
+ arrowOffset: string;
2050
+ arrowOffsetVertical: string;
2051
+ arrowHeight: string;
2052
+ padding: string;
2053
+ fontSize: string;
2054
+ borderRadius: string;
2055
+ color: string;
2056
+ dividerColor: string;
2057
+ textColor: string;
2058
+ boxShadow: string;
2059
+ }, any>;
2060
+ }>;
2061
+ EditIcon: import("../../_mixins").Theme<"Icon", {
2062
+ color: string;
2063
+ opacity1Depth: string;
2064
+ opacity2Depth: string;
2065
+ opacity3Depth: string;
2066
+ opacity4Depth: string;
2067
+ opacity5Depth: string;
2068
+ }, any>;
2069
+ DeleteIcon: import("../../_mixins").Theme<"Icon", {
2070
+ color: string;
2071
+ opacity1Depth: string;
2072
+ opacity2Depth: string;
2073
+ opacity3Depth: string;
2074
+ opacity4Depth: string;
2075
+ opacity5Depth: string;
2076
+ }, any>;
2077
+ CopyIcon: import("../../_mixins").Theme<"Icon", {
2078
+ color: string;
2079
+ opacity1Depth: string;
2080
+ opacity2Depth: string;
2081
+ opacity3Depth: string;
2082
+ opacity4Depth: string;
2083
+ opacity5Depth: string;
2084
+ }, any>;
2085
+ }>>>;
2086
+ }>> & Readonly<{}>, {
2087
+ cols: number | undefined;
2088
+ defaultSpan: number | undefined;
2089
+ hideCopy: boolean | undefined;
2090
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2091
+ export default _default;