@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
@@ -31,6 +31,7 @@ export declare const UH1: import("vue").DefineComponent<{
31
31
  headerBarWidth5: string;
32
32
  headerBarWidth6: string;
33
33
  pMargin: string;
34
+ margin: string;
34
35
  liMargin: string;
35
36
  olPadding: string;
36
37
  ulPadding: string;
@@ -52,6 +53,8 @@ export declare const UH1: import("vue").DefineComponent<{
52
53
  pTextColor3Depth: string;
53
54
  pLineHeight: string;
54
55
  pFontSize: string;
56
+ fontSize: string;
57
+ lineHeight: string;
55
58
  headerBarColor: string;
56
59
  headerBarColorPrimary: string;
57
60
  headerBarColorInfo: string;
@@ -97,6 +100,7 @@ export declare const UH1: import("vue").DefineComponent<{
97
100
  headerBarWidth5: string;
98
101
  headerBarWidth6: string;
99
102
  pMargin: string;
103
+ margin: string;
100
104
  liMargin: string;
101
105
  olPadding: string;
102
106
  ulPadding: string;
@@ -118,6 +122,8 @@ export declare const UH1: import("vue").DefineComponent<{
118
122
  pTextColor3Depth: string;
119
123
  pLineHeight: string;
120
124
  pFontSize: string;
125
+ fontSize: string;
126
+ lineHeight: string;
121
127
  headerBarColor: string;
122
128
  headerBarColorPrimary: string;
123
129
  headerBarColorInfo: string;
@@ -163,6 +169,7 @@ export declare const UH1: import("vue").DefineComponent<{
163
169
  headerBarWidth5: string;
164
170
  headerBarWidth6: string;
165
171
  pMargin: string;
172
+ margin: string;
166
173
  liMargin: string;
167
174
  olPadding: string;
168
175
  ulPadding: string;
@@ -184,6 +191,8 @@ export declare const UH1: import("vue").DefineComponent<{
184
191
  pTextColor3Depth: string;
185
192
  pLineHeight: string;
186
193
  pFontSize: string;
194
+ fontSize: string;
195
+ lineHeight: string;
187
196
  headerBarColor: string;
188
197
  headerBarColorPrimary: string;
189
198
  headerBarColorInfo: string;
@@ -250,6 +259,7 @@ export declare const UH1: import("vue").DefineComponent<{
250
259
  headerBarWidth5: string;
251
260
  headerBarWidth6: string;
252
261
  pMargin: string;
262
+ margin: string;
253
263
  liMargin: string;
254
264
  olPadding: string;
255
265
  ulPadding: string;
@@ -271,6 +281,8 @@ export declare const UH1: import("vue").DefineComponent<{
271
281
  pTextColor3Depth: string;
272
282
  pLineHeight: string;
273
283
  pFontSize: string;
284
+ fontSize: string;
285
+ lineHeight: string;
274
286
  headerBarColor: string;
275
287
  headerBarColorPrimary: string;
276
288
  headerBarColorInfo: string;
@@ -316,6 +328,7 @@ export declare const UH1: import("vue").DefineComponent<{
316
328
  headerBarWidth5: string;
317
329
  headerBarWidth6: string;
318
330
  pMargin: string;
331
+ margin: string;
319
332
  liMargin: string;
320
333
  olPadding: string;
321
334
  ulPadding: string;
@@ -337,6 +350,8 @@ export declare const UH1: import("vue").DefineComponent<{
337
350
  pTextColor3Depth: string;
338
351
  pLineHeight: string;
339
352
  pFontSize: string;
353
+ fontSize: string;
354
+ lineHeight: string;
340
355
  headerBarColor: string;
341
356
  headerBarColorPrimary: string;
342
357
  headerBarColorInfo: string;
@@ -382,6 +397,7 @@ export declare const UH1: import("vue").DefineComponent<{
382
397
  headerBarWidth5: string;
383
398
  headerBarWidth6: string;
384
399
  pMargin: string;
400
+ margin: string;
385
401
  liMargin: string;
386
402
  olPadding: string;
387
403
  ulPadding: string;
@@ -403,6 +419,8 @@ export declare const UH1: import("vue").DefineComponent<{
403
419
  pTextColor3Depth: string;
404
420
  pLineHeight: string;
405
421
  pFontSize: string;
422
+ fontSize: string;
423
+ lineHeight: string;
406
424
  headerBarColor: string;
407
425
  headerBarColorPrimary: string;
408
426
  headerBarColorInfo: string;
@@ -459,6 +477,7 @@ export declare const UH2: import("vue").DefineComponent<{
459
477
  headerBarWidth5: string;
460
478
  headerBarWidth6: string;
461
479
  pMargin: string;
480
+ margin: string;
462
481
  liMargin: string;
463
482
  olPadding: string;
464
483
  ulPadding: string;
@@ -480,6 +499,8 @@ export declare const UH2: import("vue").DefineComponent<{
480
499
  pTextColor3Depth: string;
481
500
  pLineHeight: string;
482
501
  pFontSize: string;
502
+ fontSize: string;
503
+ lineHeight: string;
483
504
  headerBarColor: string;
484
505
  headerBarColorPrimary: string;
485
506
  headerBarColorInfo: string;
@@ -525,6 +546,7 @@ export declare const UH2: import("vue").DefineComponent<{
525
546
  headerBarWidth5: string;
526
547
  headerBarWidth6: string;
527
548
  pMargin: string;
549
+ margin: string;
528
550
  liMargin: string;
529
551
  olPadding: string;
530
552
  ulPadding: string;
@@ -546,6 +568,8 @@ export declare const UH2: import("vue").DefineComponent<{
546
568
  pTextColor3Depth: string;
547
569
  pLineHeight: string;
548
570
  pFontSize: string;
571
+ fontSize: string;
572
+ lineHeight: string;
549
573
  headerBarColor: string;
550
574
  headerBarColorPrimary: string;
551
575
  headerBarColorInfo: string;
@@ -591,6 +615,7 @@ export declare const UH2: import("vue").DefineComponent<{
591
615
  headerBarWidth5: string;
592
616
  headerBarWidth6: string;
593
617
  pMargin: string;
618
+ margin: string;
594
619
  liMargin: string;
595
620
  olPadding: string;
596
621
  ulPadding: string;
@@ -612,6 +637,8 @@ export declare const UH2: import("vue").DefineComponent<{
612
637
  pTextColor3Depth: string;
613
638
  pLineHeight: string;
614
639
  pFontSize: string;
640
+ fontSize: string;
641
+ lineHeight: string;
615
642
  headerBarColor: string;
616
643
  headerBarColorPrimary: string;
617
644
  headerBarColorInfo: string;
@@ -678,6 +705,7 @@ export declare const UH2: import("vue").DefineComponent<{
678
705
  headerBarWidth5: string;
679
706
  headerBarWidth6: string;
680
707
  pMargin: string;
708
+ margin: string;
681
709
  liMargin: string;
682
710
  olPadding: string;
683
711
  ulPadding: string;
@@ -699,6 +727,8 @@ export declare const UH2: import("vue").DefineComponent<{
699
727
  pTextColor3Depth: string;
700
728
  pLineHeight: string;
701
729
  pFontSize: string;
730
+ fontSize: string;
731
+ lineHeight: string;
702
732
  headerBarColor: string;
703
733
  headerBarColorPrimary: string;
704
734
  headerBarColorInfo: string;
@@ -744,6 +774,7 @@ export declare const UH2: import("vue").DefineComponent<{
744
774
  headerBarWidth5: string;
745
775
  headerBarWidth6: string;
746
776
  pMargin: string;
777
+ margin: string;
747
778
  liMargin: string;
748
779
  olPadding: string;
749
780
  ulPadding: string;
@@ -765,6 +796,8 @@ export declare const UH2: import("vue").DefineComponent<{
765
796
  pTextColor3Depth: string;
766
797
  pLineHeight: string;
767
798
  pFontSize: string;
799
+ fontSize: string;
800
+ lineHeight: string;
768
801
  headerBarColor: string;
769
802
  headerBarColorPrimary: string;
770
803
  headerBarColorInfo: string;
@@ -810,6 +843,7 @@ export declare const UH2: import("vue").DefineComponent<{
810
843
  headerBarWidth5: string;
811
844
  headerBarWidth6: string;
812
845
  pMargin: string;
846
+ margin: string;
813
847
  liMargin: string;
814
848
  olPadding: string;
815
849
  ulPadding: string;
@@ -831,6 +865,8 @@ export declare const UH2: import("vue").DefineComponent<{
831
865
  pTextColor3Depth: string;
832
866
  pLineHeight: string;
833
867
  pFontSize: string;
868
+ fontSize: string;
869
+ lineHeight: string;
834
870
  headerBarColor: string;
835
871
  headerBarColorPrimary: string;
836
872
  headerBarColorInfo: string;
@@ -887,6 +923,7 @@ export declare const UH3: import("vue").DefineComponent<{
887
923
  headerBarWidth5: string;
888
924
  headerBarWidth6: string;
889
925
  pMargin: string;
926
+ margin: string;
890
927
  liMargin: string;
891
928
  olPadding: string;
892
929
  ulPadding: string;
@@ -908,6 +945,8 @@ export declare const UH3: import("vue").DefineComponent<{
908
945
  pTextColor3Depth: string;
909
946
  pLineHeight: string;
910
947
  pFontSize: string;
948
+ fontSize: string;
949
+ lineHeight: string;
911
950
  headerBarColor: string;
912
951
  headerBarColorPrimary: string;
913
952
  headerBarColorInfo: string;
@@ -953,6 +992,7 @@ export declare const UH3: import("vue").DefineComponent<{
953
992
  headerBarWidth5: string;
954
993
  headerBarWidth6: string;
955
994
  pMargin: string;
995
+ margin: string;
956
996
  liMargin: string;
957
997
  olPadding: string;
958
998
  ulPadding: string;
@@ -974,6 +1014,8 @@ export declare const UH3: import("vue").DefineComponent<{
974
1014
  pTextColor3Depth: string;
975
1015
  pLineHeight: string;
976
1016
  pFontSize: string;
1017
+ fontSize: string;
1018
+ lineHeight: string;
977
1019
  headerBarColor: string;
978
1020
  headerBarColorPrimary: string;
979
1021
  headerBarColorInfo: string;
@@ -1019,6 +1061,7 @@ export declare const UH3: import("vue").DefineComponent<{
1019
1061
  headerBarWidth5: string;
1020
1062
  headerBarWidth6: string;
1021
1063
  pMargin: string;
1064
+ margin: string;
1022
1065
  liMargin: string;
1023
1066
  olPadding: string;
1024
1067
  ulPadding: string;
@@ -1040,6 +1083,8 @@ export declare const UH3: import("vue").DefineComponent<{
1040
1083
  pTextColor3Depth: string;
1041
1084
  pLineHeight: string;
1042
1085
  pFontSize: string;
1086
+ fontSize: string;
1087
+ lineHeight: string;
1043
1088
  headerBarColor: string;
1044
1089
  headerBarColorPrimary: string;
1045
1090
  headerBarColorInfo: string;
@@ -1106,6 +1151,7 @@ export declare const UH3: import("vue").DefineComponent<{
1106
1151
  headerBarWidth5: string;
1107
1152
  headerBarWidth6: string;
1108
1153
  pMargin: string;
1154
+ margin: string;
1109
1155
  liMargin: string;
1110
1156
  olPadding: string;
1111
1157
  ulPadding: string;
@@ -1127,6 +1173,8 @@ export declare const UH3: import("vue").DefineComponent<{
1127
1173
  pTextColor3Depth: string;
1128
1174
  pLineHeight: string;
1129
1175
  pFontSize: string;
1176
+ fontSize: string;
1177
+ lineHeight: string;
1130
1178
  headerBarColor: string;
1131
1179
  headerBarColorPrimary: string;
1132
1180
  headerBarColorInfo: string;
@@ -1172,6 +1220,7 @@ export declare const UH3: import("vue").DefineComponent<{
1172
1220
  headerBarWidth5: string;
1173
1221
  headerBarWidth6: string;
1174
1222
  pMargin: string;
1223
+ margin: string;
1175
1224
  liMargin: string;
1176
1225
  olPadding: string;
1177
1226
  ulPadding: string;
@@ -1193,6 +1242,8 @@ export declare const UH3: import("vue").DefineComponent<{
1193
1242
  pTextColor3Depth: string;
1194
1243
  pLineHeight: string;
1195
1244
  pFontSize: string;
1245
+ fontSize: string;
1246
+ lineHeight: string;
1196
1247
  headerBarColor: string;
1197
1248
  headerBarColorPrimary: string;
1198
1249
  headerBarColorInfo: string;
@@ -1238,6 +1289,7 @@ export declare const UH3: import("vue").DefineComponent<{
1238
1289
  headerBarWidth5: string;
1239
1290
  headerBarWidth6: string;
1240
1291
  pMargin: string;
1292
+ margin: string;
1241
1293
  liMargin: string;
1242
1294
  olPadding: string;
1243
1295
  ulPadding: string;
@@ -1259,6 +1311,8 @@ export declare const UH3: import("vue").DefineComponent<{
1259
1311
  pTextColor3Depth: string;
1260
1312
  pLineHeight: string;
1261
1313
  pFontSize: string;
1314
+ fontSize: string;
1315
+ lineHeight: string;
1262
1316
  headerBarColor: string;
1263
1317
  headerBarColorPrimary: string;
1264
1318
  headerBarColorInfo: string;
@@ -1315,6 +1369,7 @@ export declare const UH4: import("vue").DefineComponent<{
1315
1369
  headerBarWidth5: string;
1316
1370
  headerBarWidth6: string;
1317
1371
  pMargin: string;
1372
+ margin: string;
1318
1373
  liMargin: string;
1319
1374
  olPadding: string;
1320
1375
  ulPadding: string;
@@ -1336,6 +1391,8 @@ export declare const UH4: import("vue").DefineComponent<{
1336
1391
  pTextColor3Depth: string;
1337
1392
  pLineHeight: string;
1338
1393
  pFontSize: string;
1394
+ fontSize: string;
1395
+ lineHeight: string;
1339
1396
  headerBarColor: string;
1340
1397
  headerBarColorPrimary: string;
1341
1398
  headerBarColorInfo: string;
@@ -1381,6 +1438,7 @@ export declare const UH4: import("vue").DefineComponent<{
1381
1438
  headerBarWidth5: string;
1382
1439
  headerBarWidth6: string;
1383
1440
  pMargin: string;
1441
+ margin: string;
1384
1442
  liMargin: string;
1385
1443
  olPadding: string;
1386
1444
  ulPadding: string;
@@ -1402,6 +1460,8 @@ export declare const UH4: import("vue").DefineComponent<{
1402
1460
  pTextColor3Depth: string;
1403
1461
  pLineHeight: string;
1404
1462
  pFontSize: string;
1463
+ fontSize: string;
1464
+ lineHeight: string;
1405
1465
  headerBarColor: string;
1406
1466
  headerBarColorPrimary: string;
1407
1467
  headerBarColorInfo: string;
@@ -1447,6 +1507,7 @@ export declare const UH4: import("vue").DefineComponent<{
1447
1507
  headerBarWidth5: string;
1448
1508
  headerBarWidth6: string;
1449
1509
  pMargin: string;
1510
+ margin: string;
1450
1511
  liMargin: string;
1451
1512
  olPadding: string;
1452
1513
  ulPadding: string;
@@ -1468,6 +1529,8 @@ export declare const UH4: import("vue").DefineComponent<{
1468
1529
  pTextColor3Depth: string;
1469
1530
  pLineHeight: string;
1470
1531
  pFontSize: string;
1532
+ fontSize: string;
1533
+ lineHeight: string;
1471
1534
  headerBarColor: string;
1472
1535
  headerBarColorPrimary: string;
1473
1536
  headerBarColorInfo: string;
@@ -1534,6 +1597,7 @@ export declare const UH4: import("vue").DefineComponent<{
1534
1597
  headerBarWidth5: string;
1535
1598
  headerBarWidth6: string;
1536
1599
  pMargin: string;
1600
+ margin: string;
1537
1601
  liMargin: string;
1538
1602
  olPadding: string;
1539
1603
  ulPadding: string;
@@ -1555,6 +1619,8 @@ export declare const UH4: import("vue").DefineComponent<{
1555
1619
  pTextColor3Depth: string;
1556
1620
  pLineHeight: string;
1557
1621
  pFontSize: string;
1622
+ fontSize: string;
1623
+ lineHeight: string;
1558
1624
  headerBarColor: string;
1559
1625
  headerBarColorPrimary: string;
1560
1626
  headerBarColorInfo: string;
@@ -1600,6 +1666,7 @@ export declare const UH4: import("vue").DefineComponent<{
1600
1666
  headerBarWidth5: string;
1601
1667
  headerBarWidth6: string;
1602
1668
  pMargin: string;
1669
+ margin: string;
1603
1670
  liMargin: string;
1604
1671
  olPadding: string;
1605
1672
  ulPadding: string;
@@ -1621,6 +1688,8 @@ export declare const UH4: import("vue").DefineComponent<{
1621
1688
  pTextColor3Depth: string;
1622
1689
  pLineHeight: string;
1623
1690
  pFontSize: string;
1691
+ fontSize: string;
1692
+ lineHeight: string;
1624
1693
  headerBarColor: string;
1625
1694
  headerBarColorPrimary: string;
1626
1695
  headerBarColorInfo: string;
@@ -1666,6 +1735,7 @@ export declare const UH4: import("vue").DefineComponent<{
1666
1735
  headerBarWidth5: string;
1667
1736
  headerBarWidth6: string;
1668
1737
  pMargin: string;
1738
+ margin: string;
1669
1739
  liMargin: string;
1670
1740
  olPadding: string;
1671
1741
  ulPadding: string;
@@ -1687,6 +1757,8 @@ export declare const UH4: import("vue").DefineComponent<{
1687
1757
  pTextColor3Depth: string;
1688
1758
  pLineHeight: string;
1689
1759
  pFontSize: string;
1760
+ fontSize: string;
1761
+ lineHeight: string;
1690
1762
  headerBarColor: string;
1691
1763
  headerBarColorPrimary: string;
1692
1764
  headerBarColorInfo: string;
@@ -1743,6 +1815,7 @@ export declare const UH5: import("vue").DefineComponent<{
1743
1815
  headerBarWidth5: string;
1744
1816
  headerBarWidth6: string;
1745
1817
  pMargin: string;
1818
+ margin: string;
1746
1819
  liMargin: string;
1747
1820
  olPadding: string;
1748
1821
  ulPadding: string;
@@ -1764,6 +1837,8 @@ export declare const UH5: import("vue").DefineComponent<{
1764
1837
  pTextColor3Depth: string;
1765
1838
  pLineHeight: string;
1766
1839
  pFontSize: string;
1840
+ fontSize: string;
1841
+ lineHeight: string;
1767
1842
  headerBarColor: string;
1768
1843
  headerBarColorPrimary: string;
1769
1844
  headerBarColorInfo: string;
@@ -1809,6 +1884,7 @@ export declare const UH5: import("vue").DefineComponent<{
1809
1884
  headerBarWidth5: string;
1810
1885
  headerBarWidth6: string;
1811
1886
  pMargin: string;
1887
+ margin: string;
1812
1888
  liMargin: string;
1813
1889
  olPadding: string;
1814
1890
  ulPadding: string;
@@ -1830,6 +1906,8 @@ export declare const UH5: import("vue").DefineComponent<{
1830
1906
  pTextColor3Depth: string;
1831
1907
  pLineHeight: string;
1832
1908
  pFontSize: string;
1909
+ fontSize: string;
1910
+ lineHeight: string;
1833
1911
  headerBarColor: string;
1834
1912
  headerBarColorPrimary: string;
1835
1913
  headerBarColorInfo: string;
@@ -1875,6 +1953,7 @@ export declare const UH5: import("vue").DefineComponent<{
1875
1953
  headerBarWidth5: string;
1876
1954
  headerBarWidth6: string;
1877
1955
  pMargin: string;
1956
+ margin: string;
1878
1957
  liMargin: string;
1879
1958
  olPadding: string;
1880
1959
  ulPadding: string;
@@ -1896,6 +1975,8 @@ export declare const UH5: import("vue").DefineComponent<{
1896
1975
  pTextColor3Depth: string;
1897
1976
  pLineHeight: string;
1898
1977
  pFontSize: string;
1978
+ fontSize: string;
1979
+ lineHeight: string;
1899
1980
  headerBarColor: string;
1900
1981
  headerBarColorPrimary: string;
1901
1982
  headerBarColorInfo: string;
@@ -1962,6 +2043,7 @@ export declare const UH5: import("vue").DefineComponent<{
1962
2043
  headerBarWidth5: string;
1963
2044
  headerBarWidth6: string;
1964
2045
  pMargin: string;
2046
+ margin: string;
1965
2047
  liMargin: string;
1966
2048
  olPadding: string;
1967
2049
  ulPadding: string;
@@ -1983,6 +2065,8 @@ export declare const UH5: import("vue").DefineComponent<{
1983
2065
  pTextColor3Depth: string;
1984
2066
  pLineHeight: string;
1985
2067
  pFontSize: string;
2068
+ fontSize: string;
2069
+ lineHeight: string;
1986
2070
  headerBarColor: string;
1987
2071
  headerBarColorPrimary: string;
1988
2072
  headerBarColorInfo: string;
@@ -2028,6 +2112,7 @@ export declare const UH5: import("vue").DefineComponent<{
2028
2112
  headerBarWidth5: string;
2029
2113
  headerBarWidth6: string;
2030
2114
  pMargin: string;
2115
+ margin: string;
2031
2116
  liMargin: string;
2032
2117
  olPadding: string;
2033
2118
  ulPadding: string;
@@ -2049,6 +2134,8 @@ export declare const UH5: import("vue").DefineComponent<{
2049
2134
  pTextColor3Depth: string;
2050
2135
  pLineHeight: string;
2051
2136
  pFontSize: string;
2137
+ fontSize: string;
2138
+ lineHeight: string;
2052
2139
  headerBarColor: string;
2053
2140
  headerBarColorPrimary: string;
2054
2141
  headerBarColorInfo: string;
@@ -2094,6 +2181,7 @@ export declare const UH5: import("vue").DefineComponent<{
2094
2181
  headerBarWidth5: string;
2095
2182
  headerBarWidth6: string;
2096
2183
  pMargin: string;
2184
+ margin: string;
2097
2185
  liMargin: string;
2098
2186
  olPadding: string;
2099
2187
  ulPadding: string;
@@ -2115,6 +2203,8 @@ export declare const UH5: import("vue").DefineComponent<{
2115
2203
  pTextColor3Depth: string;
2116
2204
  pLineHeight: string;
2117
2205
  pFontSize: string;
2206
+ fontSize: string;
2207
+ lineHeight: string;
2118
2208
  headerBarColor: string;
2119
2209
  headerBarColorPrimary: string;
2120
2210
  headerBarColorInfo: string;
@@ -2171,6 +2261,7 @@ export declare const UH6: import("vue").DefineComponent<{
2171
2261
  headerBarWidth5: string;
2172
2262
  headerBarWidth6: string;
2173
2263
  pMargin: string;
2264
+ margin: string;
2174
2265
  liMargin: string;
2175
2266
  olPadding: string;
2176
2267
  ulPadding: string;
@@ -2192,6 +2283,8 @@ export declare const UH6: import("vue").DefineComponent<{
2192
2283
  pTextColor3Depth: string;
2193
2284
  pLineHeight: string;
2194
2285
  pFontSize: string;
2286
+ fontSize: string;
2287
+ lineHeight: string;
2195
2288
  headerBarColor: string;
2196
2289
  headerBarColorPrimary: string;
2197
2290
  headerBarColorInfo: string;
@@ -2237,6 +2330,7 @@ export declare const UH6: import("vue").DefineComponent<{
2237
2330
  headerBarWidth5: string;
2238
2331
  headerBarWidth6: string;
2239
2332
  pMargin: string;
2333
+ margin: string;
2240
2334
  liMargin: string;
2241
2335
  olPadding: string;
2242
2336
  ulPadding: string;
@@ -2258,6 +2352,8 @@ export declare const UH6: import("vue").DefineComponent<{
2258
2352
  pTextColor3Depth: string;
2259
2353
  pLineHeight: string;
2260
2354
  pFontSize: string;
2355
+ fontSize: string;
2356
+ lineHeight: string;
2261
2357
  headerBarColor: string;
2262
2358
  headerBarColorPrimary: string;
2263
2359
  headerBarColorInfo: string;
@@ -2303,6 +2399,7 @@ export declare const UH6: import("vue").DefineComponent<{
2303
2399
  headerBarWidth5: string;
2304
2400
  headerBarWidth6: string;
2305
2401
  pMargin: string;
2402
+ margin: string;
2306
2403
  liMargin: string;
2307
2404
  olPadding: string;
2308
2405
  ulPadding: string;
@@ -2324,6 +2421,8 @@ export declare const UH6: import("vue").DefineComponent<{
2324
2421
  pTextColor3Depth: string;
2325
2422
  pLineHeight: string;
2326
2423
  pFontSize: string;
2424
+ fontSize: string;
2425
+ lineHeight: string;
2327
2426
  headerBarColor: string;
2328
2427
  headerBarColorPrimary: string;
2329
2428
  headerBarColorInfo: string;
@@ -2390,6 +2489,7 @@ export declare const UH6: import("vue").DefineComponent<{
2390
2489
  headerBarWidth5: string;
2391
2490
  headerBarWidth6: string;
2392
2491
  pMargin: string;
2492
+ margin: string;
2393
2493
  liMargin: string;
2394
2494
  olPadding: string;
2395
2495
  ulPadding: string;
@@ -2411,6 +2511,8 @@ export declare const UH6: import("vue").DefineComponent<{
2411
2511
  pTextColor3Depth: string;
2412
2512
  pLineHeight: string;
2413
2513
  pFontSize: string;
2514
+ fontSize: string;
2515
+ lineHeight: string;
2414
2516
  headerBarColor: string;
2415
2517
  headerBarColorPrimary: string;
2416
2518
  headerBarColorInfo: string;
@@ -2456,6 +2558,7 @@ export declare const UH6: import("vue").DefineComponent<{
2456
2558
  headerBarWidth5: string;
2457
2559
  headerBarWidth6: string;
2458
2560
  pMargin: string;
2561
+ margin: string;
2459
2562
  liMargin: string;
2460
2563
  olPadding: string;
2461
2564
  ulPadding: string;
@@ -2477,6 +2580,8 @@ export declare const UH6: import("vue").DefineComponent<{
2477
2580
  pTextColor3Depth: string;
2478
2581
  pLineHeight: string;
2479
2582
  pFontSize: string;
2583
+ fontSize: string;
2584
+ lineHeight: string;
2480
2585
  headerBarColor: string;
2481
2586
  headerBarColorPrimary: string;
2482
2587
  headerBarColorInfo: string;
@@ -2522,6 +2627,7 @@ export declare const UH6: import("vue").DefineComponent<{
2522
2627
  headerBarWidth5: string;
2523
2628
  headerBarWidth6: string;
2524
2629
  pMargin: string;
2630
+ margin: string;
2525
2631
  liMargin: string;
2526
2632
  olPadding: string;
2527
2633
  ulPadding: string;
@@ -2543,6 +2649,8 @@ export declare const UH6: import("vue").DefineComponent<{
2543
2649
  pTextColor3Depth: string;
2544
2650
  pLineHeight: string;
2545
2651
  pFontSize: string;
2652
+ fontSize: string;
2653
+ lineHeight: string;
2546
2654
  headerBarColor: string;
2547
2655
  headerBarColorPrimary: string;
2548
2656
  headerBarColorInfo: string;
@@ -25,6 +25,7 @@ declare const _default: import("vue").DefineComponent<{
25
25
  headerBarWidth5: string;
26
26
  headerBarWidth6: string;
27
27
  pMargin: string;
28
+ margin: string;
28
29
  liMargin: string;
29
30
  olPadding: string;
30
31
  ulPadding: string;
@@ -46,6 +47,8 @@ declare const _default: import("vue").DefineComponent<{
46
47
  pTextColor3Depth: string;
47
48
  pLineHeight: string;
48
49
  pFontSize: string;
50
+ fontSize: string;
51
+ lineHeight: string;
49
52
  headerBarColor: string;
50
53
  headerBarColorPrimary: string;
51
54
  headerBarColorInfo: string;
@@ -91,6 +94,7 @@ declare const _default: import("vue").DefineComponent<{
91
94
  headerBarWidth5: string;
92
95
  headerBarWidth6: string;
93
96
  pMargin: string;
97
+ margin: string;
94
98
  liMargin: string;
95
99
  olPadding: string;
96
100
  ulPadding: string;
@@ -112,6 +116,8 @@ declare const _default: import("vue").DefineComponent<{
112
116
  pTextColor3Depth: string;
113
117
  pLineHeight: string;
114
118
  pFontSize: string;
119
+ fontSize: string;
120
+ lineHeight: string;
115
121
  headerBarColor: string;
116
122
  headerBarColorPrimary: string;
117
123
  headerBarColorInfo: string;
@@ -157,6 +163,7 @@ declare const _default: import("vue").DefineComponent<{
157
163
  headerBarWidth5: string;
158
164
  headerBarWidth6: string;
159
165
  pMargin: string;
166
+ margin: string;
160
167
  liMargin: string;
161
168
  olPadding: string;
162
169
  ulPadding: string;
@@ -178,6 +185,8 @@ declare const _default: import("vue").DefineComponent<{
178
185
  pTextColor3Depth: string;
179
186
  pLineHeight: string;
180
187
  pFontSize: string;
188
+ fontSize: string;
189
+ lineHeight: string;
181
190
  headerBarColor: string;
182
191
  headerBarColorPrimary: string;
183
192
  headerBarColorInfo: string;
@@ -232,6 +241,7 @@ declare const _default: import("vue").DefineComponent<{
232
241
  headerBarWidth5: string;
233
242
  headerBarWidth6: string;
234
243
  pMargin: string;
244
+ margin: string;
235
245
  liMargin: string;
236
246
  olPadding: string;
237
247
  ulPadding: string;
@@ -253,6 +263,8 @@ declare const _default: import("vue").DefineComponent<{
253
263
  pTextColor3Depth: string;
254
264
  pLineHeight: string;
255
265
  pFontSize: string;
266
+ fontSize: string;
267
+ lineHeight: string;
256
268
  headerBarColor: string;
257
269
  headerBarColorPrimary: string;
258
270
  headerBarColorInfo: string;
@@ -298,6 +310,7 @@ declare const _default: import("vue").DefineComponent<{
298
310
  headerBarWidth5: string;
299
311
  headerBarWidth6: string;
300
312
  pMargin: string;
313
+ margin: string;
301
314
  liMargin: string;
302
315
  olPadding: string;
303
316
  ulPadding: string;
@@ -319,6 +332,8 @@ declare const _default: import("vue").DefineComponent<{
319
332
  pTextColor3Depth: string;
320
333
  pLineHeight: string;
321
334
  pFontSize: string;
335
+ fontSize: string;
336
+ lineHeight: string;
322
337
  headerBarColor: string;
323
338
  headerBarColorPrimary: string;
324
339
  headerBarColorInfo: string;
@@ -364,6 +379,7 @@ declare const _default: import("vue").DefineComponent<{
364
379
  headerBarWidth5: string;
365
380
  headerBarWidth6: string;
366
381
  pMargin: string;
382
+ margin: string;
367
383
  liMargin: string;
368
384
  olPadding: string;
369
385
  ulPadding: string;
@@ -385,6 +401,8 @@ declare const _default: import("vue").DefineComponent<{
385
401
  pTextColor3Depth: string;
386
402
  pLineHeight: string;
387
403
  pFontSize: string;
404
+ fontSize: string;
405
+ lineHeight: string;
388
406
  headerBarColor: string;
389
407
  headerBarColorPrimary: string;
390
408
  headerBarColorInfo: string;
@@ -1,11 +1,15 @@
1
1
  import { h, defineComponent, computed } from 'vue';
2
2
  import { useConfig, useTheme, useThemeClass } from '../../_mixins';
3
+ import { warn } from '../../_utils';
3
4
  import { typographyLight } from '../styles';
4
5
  import style from './styles/hr.cssr';
5
6
  export default defineComponent({
6
7
  name: 'Hr',
7
8
  props: Object.assign({}, useTheme.props),
8
9
  setup(props) {
10
+ if (process.env.NODE_ENV !== 'production') {
11
+ warn('hr', 'Hr component is deprecated, you should implement Hr locally in your component instead.');
12
+ }
9
13
  const { mergedClsPrefixRef, inlineThemeDisabled } = useConfig(props);
10
14
  const themeRef = useTheme('Typography', '-hr', style, typographyLight, props, mergedClsPrefixRef);
11
15
  const cssVarsRef = computed(() => {