@uzum-tech/ui 1.4.2 → 1.5.1

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 (221) hide show
  1. package/dist/index.js +65404 -64355
  2. package/dist/index.prod.js +3 -3
  3. package/es/_internal/index.d.ts +2 -0
  4. package/es/_internal/index.js +1 -0
  5. package/es/_internal/typography/index.d.ts +2 -0
  6. package/es/_internal/typography/index.js +1 -0
  7. package/es/_internal/typography/src/styles/text.cssr.d.ts +2 -0
  8. package/es/_internal/typography/src/styles/text.cssr.js +78 -0
  9. package/es/_internal/typography/src/text.d.ts +246 -0
  10. package/es/_internal/typography/src/text.js +79 -0
  11. package/es/_internal/typography/src/variants.d.ts +13 -0
  12. package/es/_internal/typography/src/variants.js +132 -0
  13. package/es/_internal/typography/styles/dark.d.ts +3 -0
  14. package/es/_internal/typography/styles/dark.js +8 -0
  15. package/es/_internal/typography/styles/index.d.ts +3 -0
  16. package/es/_internal/typography/styles/index.js +2 -0
  17. package/es/_internal/typography/styles/light.d.ts +24 -0
  18. package/es/_internal/typography/styles/light.js +28 -0
  19. package/es/_styles/common/_common.d.ts +2 -0
  20. package/es/_styles/common/_common.js +3 -1
  21. package/es/_styles/common/light.d.ts +2 -0
  22. package/es/action-card/index.d.ts +4 -0
  23. package/es/action-card/index.js +2 -0
  24. package/es/action-card/src/ActionCard.d.ts +313 -0
  25. package/es/action-card/src/ActionCard.js +101 -0
  26. package/es/action-card/src/styles/index.cssr.d.ts +2 -0
  27. package/es/action-card/src/styles/index.cssr.js +113 -0
  28. package/es/action-card/styles/dark.d.ts +3 -0
  29. package/es/action-card/styles/dark.js +11 -0
  30. package/es/action-card/styles/index.d.ts +3 -0
  31. package/es/action-card/styles/index.js +2 -0
  32. package/es/action-card/styles/light.d.ts +29 -0
  33. package/es/action-card/styles/light.js +33 -0
  34. package/es/avatar/src/Avatar.d.ts +13 -3
  35. package/es/avatar/src/Avatar.js +4 -3
  36. package/es/avatar/src/styles/index.cssr.js +3 -2
  37. package/es/avatar/styles/light.d.ts +1 -0
  38. package/es/avatar/styles/light.js +4 -3
  39. package/es/avatar-group/src/AvatarGroup.d.ts +10 -0
  40. package/es/avatar-group/styles/light.d.ts +1 -0
  41. package/es/badge/src/Badge.d.ts +10 -0
  42. package/es/badge/src/Badge.js +3 -2
  43. package/es/badge/src/styles/index.cssr.js +19 -1
  44. package/es/badge/styles/light.d.ts +1 -0
  45. package/es/badge/styles/light.js +4 -3
  46. package/es/components.d.ts +1 -0
  47. package/es/components.js +1 -0
  48. package/es/config-provider/src/internal-interface.d.ts +2 -0
  49. package/es/data-table/src/DataTable.d.ts +14 -0
  50. package/es/data-table/src/DataTable.js +3 -3
  51. package/es/data-table/src/HeaderButton/FilterButton.d.ts +2 -0
  52. package/es/data-table/src/HeaderButton/FilterMenu.d.ts +2 -0
  53. package/es/data-table/src/TableParts/Body.d.ts +2 -0
  54. package/es/data-table/src/TableParts/Body.js +10 -1
  55. package/es/data-table/src/TableParts/BodySkeleton.d.ts +18 -0
  56. package/es/data-table/src/TableParts/BodySkeleton.js +52 -0
  57. package/es/data-table/src/TableParts/Header.d.ts +2 -0
  58. package/es/data-table/src/interface.d.ts +6 -0
  59. package/es/data-table/src/styles/index.cssr.js +1 -1
  60. package/es/data-table/styles/light.d.ts +2 -0
  61. package/es/data-table/styles/light.js +1 -1
  62. package/es/dialog/src/DialogProvider.d.ts +4 -0
  63. package/es/icon-wrapper/src/IconWrapper.d.ts +1 -1
  64. package/es/modal/src/BodyWrapper.d.ts +1 -0
  65. package/es/modal/src/Modal.d.ts +9 -0
  66. package/es/modal/styles/light.d.ts +2 -0
  67. package/es/modal/styles/light.js +2 -1
  68. package/es/pagination/src/Pagination.d.ts +22 -0
  69. package/es/pagination/src/Pagination.js +4 -2
  70. package/es/pagination/src/styles/index.cssr.js +11 -0
  71. package/es/pagination/styles/light.d.ts +4 -0
  72. package/es/pagination/styles/light.js +7 -5
  73. package/es/spin/styles/light.js +3 -3
  74. package/es/steps/src/Step.d.ts +17 -0
  75. package/es/steps/src/Step.js +81 -25
  76. package/es/steps/src/Steps.d.ts +127 -1
  77. package/es/steps/src/Steps.js +4 -1
  78. package/es/steps/src/interface.d.ts +10 -2
  79. package/es/steps/src/interface.js +10 -1
  80. package/es/steps/src/styles/index.cssr.js +115 -3
  81. package/es/steps/styles/light.d.ts +14 -0
  82. package/es/steps/styles/light.js +16 -2
  83. package/es/theme-editor/src/ThemeEditor.d.ts +2 -0
  84. package/es/themes/dark.js +2 -0
  85. package/es/themes/light.js +2 -0
  86. package/es/toggle-button/src/ToggleButton.d.ts +13 -0
  87. package/es/toggle-button/src/ToggleButton.js +5 -2
  88. package/es/toggle-button/src/styles/toggle-button.cssr.js +3 -0
  89. package/es/typography/src/a.d.ts +27 -0
  90. package/es/typography/src/a.js +4 -1
  91. package/es/typography/src/blockquote.d.ts +27 -0
  92. package/es/typography/src/blockquote.js +4 -1
  93. package/es/typography/src/create-header.d.ts +27 -0
  94. package/es/typography/src/create-header.js +4 -1
  95. package/es/typography/src/headers.d.ts +108 -0
  96. package/es/typography/src/hr.d.ts +18 -0
  97. package/es/typography/src/hr.js +4 -0
  98. package/es/typography/src/li.js +4 -1
  99. package/es/typography/src/ol.d.ts +27 -0
  100. package/es/typography/src/ol.js +4 -1
  101. package/es/typography/src/p.d.ts +27 -0
  102. package/es/typography/src/p.js +4 -1
  103. package/es/typography/src/text.d.ts +128 -524
  104. package/es/typography/src/text.js +68 -69
  105. package/es/typography/src/ul.d.ts +27 -0
  106. package/es/typography/src/ul.js +4 -1
  107. package/es/typography/styles/light.d.ts +3 -0
  108. package/es/typography/styles/light.js +3 -0
  109. package/es/version.d.ts +1 -1
  110. package/es/version.js +1 -1
  111. package/lib/_internal/index.d.ts +2 -0
  112. package/lib/_internal/index.js +4 -1
  113. package/lib/_internal/typography/index.d.ts +2 -0
  114. package/lib/_internal/typography/index.js +9 -0
  115. package/lib/_internal/typography/src/styles/text.cssr.d.ts +2 -0
  116. package/lib/_internal/typography/src/styles/text.cssr.js +83 -0
  117. package/lib/_internal/typography/src/text.d.ts +246 -0
  118. package/lib/_internal/typography/src/text.js +85 -0
  119. package/lib/_internal/typography/src/variants.d.ts +13 -0
  120. package/lib/_internal/typography/src/variants.js +137 -0
  121. package/lib/_internal/typography/styles/dark.d.ts +3 -0
  122. package/lib/_internal/typography/styles/dark.js +10 -0
  123. package/lib/_internal/typography/styles/index.d.ts +3 -0
  124. package/lib/_internal/typography/styles/index.js +10 -0
  125. package/lib/_internal/typography/styles/light.d.ts +24 -0
  126. package/lib/_internal/typography/styles/light.js +32 -0
  127. package/lib/_styles/common/_common.d.ts +2 -0
  128. package/lib/_styles/common/_common.js +3 -1
  129. package/lib/_styles/common/light.d.ts +2 -0
  130. package/lib/action-card/index.d.ts +4 -0
  131. package/lib/action-card/index.js +11 -0
  132. package/lib/action-card/src/ActionCard.d.ts +313 -0
  133. package/lib/action-card/src/ActionCard.js +107 -0
  134. package/lib/action-card/src/styles/index.cssr.d.ts +2 -0
  135. package/lib/action-card/src/styles/index.cssr.js +118 -0
  136. package/lib/action-card/styles/dark.d.ts +3 -0
  137. package/lib/action-card/styles/dark.js +13 -0
  138. package/lib/action-card/styles/index.d.ts +3 -0
  139. package/lib/action-card/styles/index.js +10 -0
  140. package/lib/action-card/styles/light.d.ts +29 -0
  141. package/lib/action-card/styles/light.js +37 -0
  142. package/lib/avatar/src/Avatar.d.ts +13 -3
  143. package/lib/avatar/src/Avatar.js +4 -3
  144. package/lib/avatar/src/styles/index.cssr.js +3 -2
  145. package/lib/avatar/styles/light.d.ts +1 -0
  146. package/lib/avatar/styles/light.js +4 -3
  147. package/lib/avatar-group/src/AvatarGroup.d.ts +10 -0
  148. package/lib/avatar-group/styles/light.d.ts +1 -0
  149. package/lib/badge/src/Badge.d.ts +10 -0
  150. package/lib/badge/src/Badge.js +3 -2
  151. package/lib/badge/src/styles/index.cssr.js +19 -1
  152. package/lib/badge/styles/light.d.ts +1 -0
  153. package/lib/badge/styles/light.js +4 -3
  154. package/lib/components.d.ts +1 -0
  155. package/lib/components.js +1 -0
  156. package/lib/config-provider/src/internal-interface.d.ts +2 -0
  157. package/lib/data-table/src/DataTable.d.ts +14 -0
  158. package/lib/data-table/src/DataTable.js +3 -3
  159. package/lib/data-table/src/HeaderButton/FilterButton.d.ts +2 -0
  160. package/lib/data-table/src/HeaderButton/FilterMenu.d.ts +2 -0
  161. package/lib/data-table/src/TableParts/Body.d.ts +2 -0
  162. package/lib/data-table/src/TableParts/Body.js +10 -1
  163. package/lib/data-table/src/TableParts/BodySkeleton.d.ts +18 -0
  164. package/lib/data-table/src/TableParts/BodySkeleton.js +54 -0
  165. package/lib/data-table/src/TableParts/Header.d.ts +2 -0
  166. package/lib/data-table/src/interface.d.ts +6 -0
  167. package/lib/data-table/src/styles/index.cssr.js +1 -1
  168. package/lib/data-table/styles/light.d.ts +2 -0
  169. package/lib/data-table/styles/light.js +1 -1
  170. package/lib/dialog/src/DialogProvider.d.ts +4 -0
  171. package/lib/icon-wrapper/src/IconWrapper.d.ts +1 -1
  172. package/lib/modal/src/BodyWrapper.d.ts +1 -0
  173. package/lib/modal/src/Modal.d.ts +9 -0
  174. package/lib/modal/styles/light.d.ts +2 -0
  175. package/lib/modal/styles/light.js +2 -1
  176. package/lib/pagination/src/Pagination.d.ts +22 -0
  177. package/lib/pagination/src/Pagination.js +4 -2
  178. package/lib/pagination/src/styles/index.cssr.js +11 -0
  179. package/lib/pagination/styles/light.d.ts +4 -0
  180. package/lib/pagination/styles/light.js +7 -5
  181. package/lib/spin/styles/light.js +3 -3
  182. package/lib/steps/src/Step.d.ts +17 -0
  183. package/lib/steps/src/Step.js +81 -25
  184. package/lib/steps/src/Steps.d.ts +127 -1
  185. package/lib/steps/src/Steps.js +4 -1
  186. package/lib/steps/src/interface.d.ts +10 -2
  187. package/lib/steps/src/interface.js +11 -0
  188. package/lib/steps/src/styles/index.cssr.js +115 -3
  189. package/lib/steps/styles/light.d.ts +14 -0
  190. package/lib/steps/styles/light.js +16 -2
  191. package/lib/theme-editor/src/ThemeEditor.d.ts +2 -0
  192. package/lib/themes/dark.js +2 -0
  193. package/lib/themes/light.js +2 -0
  194. package/lib/toggle-button/src/ToggleButton.d.ts +13 -0
  195. package/lib/toggle-button/src/ToggleButton.js +5 -2
  196. package/lib/toggle-button/src/styles/toggle-button.cssr.js +3 -0
  197. package/lib/typography/src/a.d.ts +27 -0
  198. package/lib/typography/src/a.js +3 -0
  199. package/lib/typography/src/blockquote.d.ts +27 -0
  200. package/lib/typography/src/blockquote.js +3 -0
  201. package/lib/typography/src/create-header.d.ts +27 -0
  202. package/lib/typography/src/create-header.js +3 -0
  203. package/lib/typography/src/headers.d.ts +108 -0
  204. package/lib/typography/src/hr.d.ts +18 -0
  205. package/lib/typography/src/hr.js +4 -0
  206. package/lib/typography/src/li.js +3 -0
  207. package/lib/typography/src/ol.d.ts +27 -0
  208. package/lib/typography/src/ol.js +3 -0
  209. package/lib/typography/src/p.d.ts +27 -0
  210. package/lib/typography/src/p.js +3 -0
  211. package/lib/typography/src/text.d.ts +128 -524
  212. package/lib/typography/src/text.js +66 -70
  213. package/lib/typography/src/ul.d.ts +27 -0
  214. package/lib/typography/src/ul.js +3 -0
  215. package/lib/typography/styles/light.d.ts +3 -0
  216. package/lib/typography/styles/light.js +3 -0
  217. package/lib/version.d.ts +1 -1
  218. package/lib/version.js +1 -1
  219. package/package.json +1 -1
  220. package/volar.d.ts +1 -0
  221. package/web-types.json +126 -96
@@ -1,79 +1,34 @@
1
- import { type PropType } from 'vue';
2
- import type { ExtractPublicPropTypes } from '../../_utils';
1
+ import { ExtractPublicPropTypes, PropType } from 'vue';
3
2
  export declare const textProps: {
4
- readonly code: BooleanConstructor;
5
- readonly type: {
3
+ readonly variant: {
4
+ readonly type: PropType<import("../../_internal/typography/src/variants").TypographyVariant>;
5
+ readonly default: undefined;
6
+ };
7
+ readonly tag: {
8
+ readonly type: PropType<keyof HTMLElementTagNameMap>;
9
+ readonly default: undefined;
10
+ };
11
+ readonly text: {
6
12
  readonly type: StringConstructor;
13
+ readonly default: undefined;
14
+ };
15
+ readonly type: {
16
+ readonly type: PropType<"default" | "success" | "info" | "warning" | "error">;
7
17
  readonly default: "default";
8
18
  };
9
- readonly delete: BooleanConstructor;
10
19
  readonly strong: BooleanConstructor;
11
20
  readonly italic: BooleanConstructor;
12
21
  readonly underline: BooleanConstructor;
13
- readonly depth: PropType<1 | 2 | 3 | "1" | "2" | "3">;
14
- readonly tag: StringConstructor;
15
- readonly as: {
16
- readonly type: StringConstructor;
17
- readonly validator: () => boolean;
18
- readonly default: undefined;
19
- };
22
+ readonly strikethrough: BooleanConstructor;
20
23
  readonly theme: PropType<import("../../_mixins").Theme<"Typography", {
21
- headerFontSize1: string;
22
- headerFontSize2: string;
23
- headerFontSize3: string;
24
- headerFontSize4: string;
25
- headerFontSize5: string;
26
- headerFontSize6: string;
27
- headerMargin1: string;
28
- headerMargin2: string;
29
- headerMargin3: string;
30
- headerMargin4: string;
31
- headerMargin5: string;
32
- headerMargin6: string;
33
- headerPrefixWidth1: string;
34
- headerPrefixWidth2: string;
35
- headerPrefixWidth3: string;
36
- headerPrefixWidth4: string;
37
- headerPrefixWidth5: string;
38
- headerPrefixWidth6: string;
39
- headerBarWidth1: string;
40
- headerBarWidth2: string;
41
- headerBarWidth3: string;
42
- headerBarWidth4: string;
43
- headerBarWidth5: string;
44
- headerBarWidth6: string;
45
- pMargin: string;
46
- liMargin: string;
47
- olPadding: string;
48
- ulPadding: string;
24
+ margin: string;
49
25
  aTextColor: string;
50
26
  blockquoteTextColor: string;
51
27
  blockquotePrefixColor: string;
52
- blockquoteLineHeight: string;
53
- blockquoteFontSize: string;
54
28
  codeBorderRadius: string;
55
- liTextColor: string;
56
- liLineHeight: string;
57
- liFontSize: string;
58
- hrColor: string;
59
- headerFontWeight: string;
60
- headerTextColor: string;
61
- pTextColor: string;
62
- pTextColor1Depth: string;
63
- pTextColor2Depth: string;
64
- pTextColor3Depth: string;
65
- pLineHeight: string;
66
- pFontSize: string;
67
- headerBarColor: string;
68
- headerBarColorPrimary: string;
69
- headerBarColorInfo: string;
70
- headerBarColorError: string;
71
- headerBarColorWarning: string;
72
- headerBarColorSuccess: string;
29
+ fontSize: string;
30
+ lineHeight: string;
73
31
  textColor: string;
74
- textColor1Depth: string;
75
- textColor2Depth: string;
76
- textColor3Depth: string;
77
32
  textColorPrimary: string;
78
33
  textColorInfo: string;
79
34
  textColorSuccess: string;
@@ -84,62 +39,14 @@ export declare const textProps: {
84
39
  codeBorder: string;
85
40
  }, any>>;
86
41
  readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Typography", {
87
- headerFontSize1: string;
88
- headerFontSize2: string;
89
- headerFontSize3: string;
90
- headerFontSize4: string;
91
- headerFontSize5: string;
92
- headerFontSize6: string;
93
- headerMargin1: string;
94
- headerMargin2: string;
95
- headerMargin3: string;
96
- headerMargin4: string;
97
- headerMargin5: string;
98
- headerMargin6: string;
99
- headerPrefixWidth1: string;
100
- headerPrefixWidth2: string;
101
- headerPrefixWidth3: string;
102
- headerPrefixWidth4: string;
103
- headerPrefixWidth5: string;
104
- headerPrefixWidth6: string;
105
- headerBarWidth1: string;
106
- headerBarWidth2: string;
107
- headerBarWidth3: string;
108
- headerBarWidth4: string;
109
- headerBarWidth5: string;
110
- headerBarWidth6: string;
111
- pMargin: string;
112
- liMargin: string;
113
- olPadding: string;
114
- ulPadding: string;
42
+ margin: string;
115
43
  aTextColor: string;
116
44
  blockquoteTextColor: string;
117
45
  blockquotePrefixColor: string;
118
- blockquoteLineHeight: string;
119
- blockquoteFontSize: string;
120
46
  codeBorderRadius: string;
121
- liTextColor: string;
122
- liLineHeight: string;
123
- liFontSize: string;
124
- hrColor: string;
125
- headerFontWeight: string;
126
- headerTextColor: string;
127
- pTextColor: string;
128
- pTextColor1Depth: string;
129
- pTextColor2Depth: string;
130
- pTextColor3Depth: string;
131
- pLineHeight: string;
132
- pFontSize: string;
133
- headerBarColor: string;
134
- headerBarColorPrimary: string;
135
- headerBarColorInfo: string;
136
- headerBarColorError: string;
137
- headerBarColorWarning: string;
138
- headerBarColorSuccess: string;
47
+ fontSize: string;
48
+ lineHeight: string;
139
49
  textColor: string;
140
- textColor1Depth: string;
141
- textColor2Depth: string;
142
- textColor3Depth: string;
143
50
  textColorPrimary: string;
144
51
  textColorInfo: string;
145
52
  textColorSuccess: string;
@@ -150,62 +57,14 @@ export declare const textProps: {
150
57
  codeBorder: string;
151
58
  }, any>>>;
152
59
  readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Typography", {
153
- headerFontSize1: string;
154
- headerFontSize2: string;
155
- headerFontSize3: string;
156
- headerFontSize4: string;
157
- headerFontSize5: string;
158
- headerFontSize6: string;
159
- headerMargin1: string;
160
- headerMargin2: string;
161
- headerMargin3: string;
162
- headerMargin4: string;
163
- headerMargin5: string;
164
- headerMargin6: string;
165
- headerPrefixWidth1: string;
166
- headerPrefixWidth2: string;
167
- headerPrefixWidth3: string;
168
- headerPrefixWidth4: string;
169
- headerPrefixWidth5: string;
170
- headerPrefixWidth6: string;
171
- headerBarWidth1: string;
172
- headerBarWidth2: string;
173
- headerBarWidth3: string;
174
- headerBarWidth4: string;
175
- headerBarWidth5: string;
176
- headerBarWidth6: string;
177
- pMargin: string;
178
- liMargin: string;
179
- olPadding: string;
180
- ulPadding: string;
60
+ margin: string;
181
61
  aTextColor: string;
182
62
  blockquoteTextColor: string;
183
63
  blockquotePrefixColor: string;
184
- blockquoteLineHeight: string;
185
- blockquoteFontSize: string;
186
64
  codeBorderRadius: string;
187
- liTextColor: string;
188
- liLineHeight: string;
189
- liFontSize: string;
190
- hrColor: string;
191
- headerFontWeight: string;
192
- headerTextColor: string;
193
- pTextColor: string;
194
- pTextColor1Depth: string;
195
- pTextColor2Depth: string;
196
- pTextColor3Depth: string;
197
- pLineHeight: string;
198
- pFontSize: string;
199
- headerBarColor: string;
200
- headerBarColorPrimary: string;
201
- headerBarColorInfo: string;
202
- headerBarColorError: string;
203
- headerBarColorWarning: string;
204
- headerBarColorSuccess: string;
65
+ fontSize: string;
66
+ lineHeight: string;
205
67
  textColor: string;
206
- textColor1Depth: string;
207
- textColor2Depth: string;
208
- textColor3Depth: string;
209
68
  textColorPrimary: string;
210
69
  textColorInfo: string;
211
70
  textColorSuccess: string;
@@ -218,79 +77,52 @@ export declare const textProps: {
218
77
  };
219
78
  export type TextProps = ExtractPublicPropTypes<typeof textProps>;
220
79
  declare const _default: import("vue").DefineComponent<{
221
- readonly code: BooleanConstructor;
222
- readonly type: {
223
- readonly type: StringConstructor;
224
- readonly default: "default";
80
+ code: {
81
+ type: BooleanConstructor;
82
+ validator: (value: unknown) => true;
225
83
  };
226
- readonly delete: BooleanConstructor;
227
- readonly strong: BooleanConstructor;
228
- readonly italic: BooleanConstructor;
229
- readonly underline: BooleanConstructor;
230
- readonly depth: PropType<1 | 2 | 3 | "1" | "2" | "3">;
231
- readonly tag: StringConstructor;
232
- readonly as: {
84
+ as: {
85
+ type: StringConstructor;
86
+ validator: (value: unknown) => true;
87
+ default: undefined;
88
+ };
89
+ delete: {
90
+ type: BooleanConstructor;
91
+ validator: (value: unknown) => true;
92
+ };
93
+ depth: {
94
+ type: PropType<1 | 2 | 3 | "1" | "2" | "3">;
95
+ validator: (value: unknown) => true;
96
+ };
97
+ variant: {
98
+ readonly type: PropType<import("../../_internal/typography/src/variants").TypographyVariant>;
99
+ readonly default: undefined;
100
+ };
101
+ tag: {
102
+ readonly type: PropType<keyof HTMLElementTagNameMap>;
103
+ readonly default: undefined;
104
+ };
105
+ text: {
233
106
  readonly type: StringConstructor;
234
- readonly validator: () => boolean;
235
107
  readonly default: undefined;
236
108
  };
237
- readonly theme: PropType<import("../../_mixins").Theme<"Typography", {
238
- headerFontSize1: string;
239
- headerFontSize2: string;
240
- headerFontSize3: string;
241
- headerFontSize4: string;
242
- headerFontSize5: string;
243
- headerFontSize6: string;
244
- headerMargin1: string;
245
- headerMargin2: string;
246
- headerMargin3: string;
247
- headerMargin4: string;
248
- headerMargin5: string;
249
- headerMargin6: string;
250
- headerPrefixWidth1: string;
251
- headerPrefixWidth2: string;
252
- headerPrefixWidth3: string;
253
- headerPrefixWidth4: string;
254
- headerPrefixWidth5: string;
255
- headerPrefixWidth6: string;
256
- headerBarWidth1: string;
257
- headerBarWidth2: string;
258
- headerBarWidth3: string;
259
- headerBarWidth4: string;
260
- headerBarWidth5: string;
261
- headerBarWidth6: string;
262
- pMargin: string;
263
- liMargin: string;
264
- olPadding: string;
265
- ulPadding: string;
109
+ type: {
110
+ readonly type: PropType<"default" | "success" | "info" | "warning" | "error">;
111
+ readonly default: "default";
112
+ };
113
+ strong: BooleanConstructor;
114
+ italic: BooleanConstructor;
115
+ underline: BooleanConstructor;
116
+ strikethrough: BooleanConstructor;
117
+ theme: PropType<import("../../_mixins").Theme<"Typography", {
118
+ margin: string;
266
119
  aTextColor: string;
267
120
  blockquoteTextColor: string;
268
121
  blockquotePrefixColor: string;
269
- blockquoteLineHeight: string;
270
- blockquoteFontSize: string;
271
122
  codeBorderRadius: string;
272
- liTextColor: string;
273
- liLineHeight: string;
274
- liFontSize: string;
275
- hrColor: string;
276
- headerFontWeight: string;
277
- headerTextColor: string;
278
- pTextColor: string;
279
- pTextColor1Depth: string;
280
- pTextColor2Depth: string;
281
- pTextColor3Depth: string;
282
- pLineHeight: string;
283
- pFontSize: string;
284
- headerBarColor: string;
285
- headerBarColorPrimary: string;
286
- headerBarColorInfo: string;
287
- headerBarColorError: string;
288
- headerBarColorWarning: string;
289
- headerBarColorSuccess: string;
123
+ fontSize: string;
124
+ lineHeight: string;
290
125
  textColor: string;
291
- textColor1Depth: string;
292
- textColor2Depth: string;
293
- textColor3Depth: string;
294
126
  textColorPrimary: string;
295
127
  textColorInfo: string;
296
128
  textColorSuccess: string;
@@ -300,63 +132,15 @@ declare const _default: import("vue").DefineComponent<{
300
132
  codeColor: string;
301
133
  codeBorder: string;
302
134
  }, any>>;
303
- readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Typography", {
304
- headerFontSize1: string;
305
- headerFontSize2: string;
306
- headerFontSize3: string;
307
- headerFontSize4: string;
308
- headerFontSize5: string;
309
- headerFontSize6: string;
310
- headerMargin1: string;
311
- headerMargin2: string;
312
- headerMargin3: string;
313
- headerMargin4: string;
314
- headerMargin5: string;
315
- headerMargin6: string;
316
- headerPrefixWidth1: string;
317
- headerPrefixWidth2: string;
318
- headerPrefixWidth3: string;
319
- headerPrefixWidth4: string;
320
- headerPrefixWidth5: string;
321
- headerPrefixWidth6: string;
322
- headerBarWidth1: string;
323
- headerBarWidth2: string;
324
- headerBarWidth3: string;
325
- headerBarWidth4: string;
326
- headerBarWidth5: string;
327
- headerBarWidth6: string;
328
- pMargin: string;
329
- liMargin: string;
330
- olPadding: string;
331
- ulPadding: string;
135
+ themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Typography", {
136
+ margin: string;
332
137
  aTextColor: string;
333
138
  blockquoteTextColor: string;
334
139
  blockquotePrefixColor: string;
335
- blockquoteLineHeight: string;
336
- blockquoteFontSize: string;
337
140
  codeBorderRadius: string;
338
- liTextColor: string;
339
- liLineHeight: string;
340
- liFontSize: string;
341
- hrColor: string;
342
- headerFontWeight: string;
343
- headerTextColor: string;
344
- pTextColor: string;
345
- pTextColor1Depth: string;
346
- pTextColor2Depth: string;
347
- pTextColor3Depth: string;
348
- pLineHeight: string;
349
- pFontSize: string;
350
- headerBarColor: string;
351
- headerBarColorPrimary: string;
352
- headerBarColorInfo: string;
353
- headerBarColorError: string;
354
- headerBarColorWarning: string;
355
- headerBarColorSuccess: string;
141
+ fontSize: string;
142
+ lineHeight: string;
356
143
  textColor: string;
357
- textColor1Depth: string;
358
- textColor2Depth: string;
359
- textColor3Depth: string;
360
144
  textColorPrimary: string;
361
145
  textColorInfo: string;
362
146
  textColorSuccess: string;
@@ -366,63 +150,15 @@ declare const _default: import("vue").DefineComponent<{
366
150
  codeColor: string;
367
151
  codeBorder: string;
368
152
  }, any>>>;
369
- readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Typography", {
370
- headerFontSize1: string;
371
- headerFontSize2: string;
372
- headerFontSize3: string;
373
- headerFontSize4: string;
374
- headerFontSize5: string;
375
- headerFontSize6: string;
376
- headerMargin1: string;
377
- headerMargin2: string;
378
- headerMargin3: string;
379
- headerMargin4: string;
380
- headerMargin5: string;
381
- headerMargin6: string;
382
- headerPrefixWidth1: string;
383
- headerPrefixWidth2: string;
384
- headerPrefixWidth3: string;
385
- headerPrefixWidth4: string;
386
- headerPrefixWidth5: string;
387
- headerPrefixWidth6: string;
388
- headerBarWidth1: string;
389
- headerBarWidth2: string;
390
- headerBarWidth3: string;
391
- headerBarWidth4: string;
392
- headerBarWidth5: string;
393
- headerBarWidth6: string;
394
- pMargin: string;
395
- liMargin: string;
396
- olPadding: string;
397
- ulPadding: string;
153
+ builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Typography", {
154
+ margin: string;
398
155
  aTextColor: string;
399
156
  blockquoteTextColor: string;
400
157
  blockquotePrefixColor: string;
401
- blockquoteLineHeight: string;
402
- blockquoteFontSize: string;
403
158
  codeBorderRadius: string;
404
- liTextColor: string;
405
- liLineHeight: string;
406
- liFontSize: string;
407
- hrColor: string;
408
- headerFontWeight: string;
409
- headerTextColor: string;
410
- pTextColor: string;
411
- pTextColor1Depth: string;
412
- pTextColor2Depth: string;
413
- pTextColor3Depth: string;
414
- pLineHeight: string;
415
- pFontSize: string;
416
- headerBarColor: string;
417
- headerBarColorPrimary: string;
418
- headerBarColorInfo: string;
419
- headerBarColorError: string;
420
- headerBarColorWarning: string;
421
- headerBarColorSuccess: string;
159
+ fontSize: string;
160
+ lineHeight: string;
422
161
  textColor: string;
423
- textColor1Depth: string;
424
- textColor2Depth: string;
425
- textColor3Depth: string;
426
162
  textColorPrimary: string;
427
163
  textColorInfo: string;
428
164
  textColorSuccess: string;
@@ -432,95 +168,55 @@ declare const _default: import("vue").DefineComponent<{
432
168
  codeColor: string;
433
169
  codeBorder: string;
434
170
  }, any>>>;
435
- }, {
436
- mergedClsPrefix: import("vue").Ref<string>;
437
- compitableTag: import("vue").ComputedRef<string | undefined>;
438
- cssVars: import("vue").ComputedRef<{
439
- '--u-bezier': string;
440
- '--u-text-color': string;
441
- '--u-font-weight-strong': string;
442
- '--u-font-famliy-mono': string;
443
- '--u-code-border-radius': string;
444
- '--u-code-text-color': string;
445
- '--u-code-color': string;
446
- '--u-code-border': string;
447
- }> | undefined;
448
- themeClass: import("vue").Ref<string> | undefined;
449
- onRender: (() => void) | undefined;
450
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
451
- readonly code: BooleanConstructor;
452
- readonly type: {
453
- readonly type: StringConstructor;
454
- readonly default: "default";
171
+ }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
172
+ [key: string]: any;
173
+ }>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
174
+ code: {
175
+ type: BooleanConstructor;
176
+ validator: (value: unknown) => true;
455
177
  };
456
- readonly delete: BooleanConstructor;
457
- readonly strong: BooleanConstructor;
458
- readonly italic: BooleanConstructor;
459
- readonly underline: BooleanConstructor;
460
- readonly depth: PropType<1 | 2 | 3 | "1" | "2" | "3">;
461
- readonly tag: StringConstructor;
462
- readonly as: {
178
+ as: {
179
+ type: StringConstructor;
180
+ validator: (value: unknown) => true;
181
+ default: undefined;
182
+ };
183
+ delete: {
184
+ type: BooleanConstructor;
185
+ validator: (value: unknown) => true;
186
+ };
187
+ depth: {
188
+ type: PropType<1 | 2 | 3 | "1" | "2" | "3">;
189
+ validator: (value: unknown) => true;
190
+ };
191
+ variant: {
192
+ readonly type: PropType<import("../../_internal/typography/src/variants").TypographyVariant>;
193
+ readonly default: undefined;
194
+ };
195
+ tag: {
196
+ readonly type: PropType<keyof HTMLElementTagNameMap>;
197
+ readonly default: undefined;
198
+ };
199
+ text: {
463
200
  readonly type: StringConstructor;
464
- readonly validator: () => boolean;
465
201
  readonly default: undefined;
466
202
  };
467
- readonly theme: PropType<import("../../_mixins").Theme<"Typography", {
468
- headerFontSize1: string;
469
- headerFontSize2: string;
470
- headerFontSize3: string;
471
- headerFontSize4: string;
472
- headerFontSize5: string;
473
- headerFontSize6: string;
474
- headerMargin1: string;
475
- headerMargin2: string;
476
- headerMargin3: string;
477
- headerMargin4: string;
478
- headerMargin5: string;
479
- headerMargin6: string;
480
- headerPrefixWidth1: string;
481
- headerPrefixWidth2: string;
482
- headerPrefixWidth3: string;
483
- headerPrefixWidth4: string;
484
- headerPrefixWidth5: string;
485
- headerPrefixWidth6: string;
486
- headerBarWidth1: string;
487
- headerBarWidth2: string;
488
- headerBarWidth3: string;
489
- headerBarWidth4: string;
490
- headerBarWidth5: string;
491
- headerBarWidth6: string;
492
- pMargin: string;
493
- liMargin: string;
494
- olPadding: string;
495
- ulPadding: string;
203
+ type: {
204
+ readonly type: PropType<"default" | "success" | "info" | "warning" | "error">;
205
+ readonly default: "default";
206
+ };
207
+ strong: BooleanConstructor;
208
+ italic: BooleanConstructor;
209
+ underline: BooleanConstructor;
210
+ strikethrough: BooleanConstructor;
211
+ theme: PropType<import("../../_mixins").Theme<"Typography", {
212
+ margin: string;
496
213
  aTextColor: string;
497
214
  blockquoteTextColor: string;
498
215
  blockquotePrefixColor: string;
499
- blockquoteLineHeight: string;
500
- blockquoteFontSize: string;
501
216
  codeBorderRadius: string;
502
- liTextColor: string;
503
- liLineHeight: string;
504
- liFontSize: string;
505
- hrColor: string;
506
- headerFontWeight: string;
507
- headerTextColor: string;
508
- pTextColor: string;
509
- pTextColor1Depth: string;
510
- pTextColor2Depth: string;
511
- pTextColor3Depth: string;
512
- pLineHeight: string;
513
- pFontSize: string;
514
- headerBarColor: string;
515
- headerBarColorPrimary: string;
516
- headerBarColorInfo: string;
517
- headerBarColorError: string;
518
- headerBarColorWarning: string;
519
- headerBarColorSuccess: string;
217
+ fontSize: string;
218
+ lineHeight: string;
520
219
  textColor: string;
521
- textColor1Depth: string;
522
- textColor2Depth: string;
523
- textColor3Depth: string;
524
220
  textColorPrimary: string;
525
221
  textColorInfo: string;
526
222
  textColorSuccess: string;
@@ -530,63 +226,15 @@ declare const _default: import("vue").DefineComponent<{
530
226
  codeColor: string;
531
227
  codeBorder: string;
532
228
  }, any>>;
533
- readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Typography", {
534
- headerFontSize1: string;
535
- headerFontSize2: string;
536
- headerFontSize3: string;
537
- headerFontSize4: string;
538
- headerFontSize5: string;
539
- headerFontSize6: string;
540
- headerMargin1: string;
541
- headerMargin2: string;
542
- headerMargin3: string;
543
- headerMargin4: string;
544
- headerMargin5: string;
545
- headerMargin6: string;
546
- headerPrefixWidth1: string;
547
- headerPrefixWidth2: string;
548
- headerPrefixWidth3: string;
549
- headerPrefixWidth4: string;
550
- headerPrefixWidth5: string;
551
- headerPrefixWidth6: string;
552
- headerBarWidth1: string;
553
- headerBarWidth2: string;
554
- headerBarWidth3: string;
555
- headerBarWidth4: string;
556
- headerBarWidth5: string;
557
- headerBarWidth6: string;
558
- pMargin: string;
559
- liMargin: string;
560
- olPadding: string;
561
- ulPadding: string;
229
+ themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Typography", {
230
+ margin: string;
562
231
  aTextColor: string;
563
232
  blockquoteTextColor: string;
564
233
  blockquotePrefixColor: string;
565
- blockquoteLineHeight: string;
566
- blockquoteFontSize: string;
567
234
  codeBorderRadius: string;
568
- liTextColor: string;
569
- liLineHeight: string;
570
- liFontSize: string;
571
- hrColor: string;
572
- headerFontWeight: string;
573
- headerTextColor: string;
574
- pTextColor: string;
575
- pTextColor1Depth: string;
576
- pTextColor2Depth: string;
577
- pTextColor3Depth: string;
578
- pLineHeight: string;
579
- pFontSize: string;
580
- headerBarColor: string;
581
- headerBarColorPrimary: string;
582
- headerBarColorInfo: string;
583
- headerBarColorError: string;
584
- headerBarColorWarning: string;
585
- headerBarColorSuccess: string;
235
+ fontSize: string;
236
+ lineHeight: string;
586
237
  textColor: string;
587
- textColor1Depth: string;
588
- textColor2Depth: string;
589
- textColor3Depth: string;
590
238
  textColorPrimary: string;
591
239
  textColorInfo: string;
592
240
  textColorSuccess: string;
@@ -596,63 +244,15 @@ declare const _default: import("vue").DefineComponent<{
596
244
  codeColor: string;
597
245
  codeBorder: string;
598
246
  }, any>>>;
599
- readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Typography", {
600
- headerFontSize1: string;
601
- headerFontSize2: string;
602
- headerFontSize3: string;
603
- headerFontSize4: string;
604
- headerFontSize5: string;
605
- headerFontSize6: string;
606
- headerMargin1: string;
607
- headerMargin2: string;
608
- headerMargin3: string;
609
- headerMargin4: string;
610
- headerMargin5: string;
611
- headerMargin6: string;
612
- headerPrefixWidth1: string;
613
- headerPrefixWidth2: string;
614
- headerPrefixWidth3: string;
615
- headerPrefixWidth4: string;
616
- headerPrefixWidth5: string;
617
- headerPrefixWidth6: string;
618
- headerBarWidth1: string;
619
- headerBarWidth2: string;
620
- headerBarWidth3: string;
621
- headerBarWidth4: string;
622
- headerBarWidth5: string;
623
- headerBarWidth6: string;
624
- pMargin: string;
625
- liMargin: string;
626
- olPadding: string;
627
- ulPadding: string;
247
+ builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Typography", {
248
+ margin: string;
628
249
  aTextColor: string;
629
250
  blockquoteTextColor: string;
630
251
  blockquotePrefixColor: string;
631
- blockquoteLineHeight: string;
632
- blockquoteFontSize: string;
633
252
  codeBorderRadius: string;
634
- liTextColor: string;
635
- liLineHeight: string;
636
- liFontSize: string;
637
- hrColor: string;
638
- headerFontWeight: string;
639
- headerTextColor: string;
640
- pTextColor: string;
641
- pTextColor1Depth: string;
642
- pTextColor2Depth: string;
643
- pTextColor3Depth: string;
644
- pLineHeight: string;
645
- pFontSize: string;
646
- headerBarColor: string;
647
- headerBarColorPrimary: string;
648
- headerBarColorInfo: string;
649
- headerBarColorError: string;
650
- headerBarColorWarning: string;
651
- headerBarColorSuccess: string;
253
+ fontSize: string;
254
+ lineHeight: string;
652
255
  textColor: string;
653
- textColor1Depth: string;
654
- textColor2Depth: string;
655
- textColor3Depth: string;
656
256
  textColorPrimary: string;
657
257
  textColorInfo: string;
658
258
  textColorSuccess: string;
@@ -663,12 +263,16 @@ declare const _default: import("vue").DefineComponent<{
663
263
  codeBorder: string;
664
264
  }, any>>>;
665
265
  }>>, {
666
- readonly type: string;
667
- readonly as: string;
668
- readonly code: boolean;
669
- readonly strong: boolean;
670
- readonly italic: boolean;
671
- readonly underline: boolean;
672
- readonly delete: boolean;
266
+ type: "default" | "info" | "success" | "warning" | "error";
267
+ tag: keyof HTMLElementTagNameMap;
268
+ as: string;
269
+ code: boolean;
270
+ strong: boolean;
271
+ text: string;
272
+ italic: boolean;
273
+ underline: boolean;
274
+ strikethrough: boolean;
275
+ variant: import("../../_internal/typography/src/variants").TypographyVariant;
276
+ delete: boolean;
673
277
  }, {}>;
674
278
  export default _default;