naive-ui 2.19.1 → 2.19.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/_internal/selection/src/Selection.d.ts +56 -56
- package/es/_internal/selection/styles/_common.d.ts +0 -8
- package/es/_internal/selection/styles/_common.js +0 -8
- package/es/_internal/selection/styles/dark.js +10 -2
- package/es/_internal/selection/styles/light.d.ts +16 -16
- package/es/_internal/selection/styles/light.js +10 -2
- package/es/_mixins/use-rtl.js +1 -1
- package/es/alert/src/Alert.js +15 -16
- package/es/cascader/src/Cascader.d.ts +80 -80
- package/es/cascader/src/CascaderOption.d.ts +8 -8
- package/es/cascader/src/CascaderSelectMenu.d.ts +8 -8
- package/es/cascader/src/CascaderSubmenu.d.ts +8 -8
- package/es/cascader/styles/light.d.ts +8 -8
- package/es/checkbox/src/Checkbox.d.ts +1 -0
- package/es/checkbox/src/Checkbox.js +5 -3
- package/es/checkbox/src/CheckboxGroup.js +1 -1
- package/es/data-table/src/DataTable.d.ts +88 -88
- package/es/data-table/src/HeaderButton/FilterButton.d.ts +16 -16
- package/es/data-table/src/HeaderButton/FilterMenu.d.ts +16 -16
- package/es/data-table/src/TableParts/Body.d.ts +16 -16
- package/es/data-table/src/TableParts/Cell.d.ts +32 -32
- package/es/data-table/src/TableParts/Header.d.ts +16 -16
- package/es/data-table/styles/light.d.ts +8 -8
- package/es/drawer/src/styles/index.cssr.js +2 -0
- package/es/global-style/src/GlobalStyle.js +13 -3
- package/es/input-number/src/InputNumber.d.ts +3 -3
- package/es/jest-setup.js +3 -1
- package/es/locales/common/ukUA.d.ts +3 -0
- package/es/locales/common/ukUA.js +92 -0
- package/es/locales/date/ukUA.d.ts +3 -0
- package/es/locales/date/ukUA.js +6 -0
- package/es/locales/index.d.ts +2 -0
- package/es/locales/index.js +2 -0
- package/es/pagination/src/Pagination.d.ts +88 -99
- package/es/pagination/styles/light.d.ts +8 -8
- package/es/select/src/Select.d.ts +80 -80
- package/es/select/styles/light.d.ts +8 -8
- package/es/tree-select/src/TreeSelect.d.ts +80 -80
- package/es/tree-select/styles/light.d.ts +8 -8
- package/es/version.d.ts +1 -1
- package/es/version.js +1 -1
- package/lib/_internal/selection/src/Selection.d.ts +56 -56
- package/lib/_internal/selection/styles/_common.d.ts +0 -8
- package/lib/_internal/selection/styles/_common.js +0 -8
- package/lib/_internal/selection/styles/dark.js +10 -2
- package/lib/_internal/selection/styles/light.d.ts +16 -16
- package/lib/_internal/selection/styles/light.js +10 -2
- package/lib/_mixins/use-rtl.js +1 -1
- package/lib/alert/src/Alert.js +15 -16
- package/lib/cascader/src/Cascader.d.ts +80 -80
- package/lib/cascader/src/CascaderOption.d.ts +8 -8
- package/lib/cascader/src/CascaderSelectMenu.d.ts +8 -8
- package/lib/cascader/src/CascaderSubmenu.d.ts +8 -8
- package/lib/cascader/styles/light.d.ts +8 -8
- package/lib/checkbox/src/Checkbox.d.ts +1 -0
- package/lib/checkbox/src/Checkbox.js +5 -3
- package/lib/checkbox/src/CheckboxGroup.js +1 -1
- package/lib/data-table/src/DataTable.d.ts +88 -88
- package/lib/data-table/src/HeaderButton/FilterButton.d.ts +16 -16
- package/lib/data-table/src/HeaderButton/FilterMenu.d.ts +16 -16
- package/lib/data-table/src/TableParts/Body.d.ts +16 -16
- package/lib/data-table/src/TableParts/Cell.d.ts +32 -32
- package/lib/data-table/src/TableParts/Header.d.ts +16 -16
- package/lib/data-table/styles/light.d.ts +8 -8
- package/lib/drawer/src/styles/index.cssr.js +2 -0
- package/lib/global-style/src/GlobalStyle.js +13 -3
- package/lib/input-number/src/InputNumber.d.ts +3 -3
- package/lib/jest-setup.js +3 -1
- package/lib/locales/common/ukUA.d.ts +3 -0
- package/lib/locales/common/ukUA.js +94 -0
- package/lib/locales/date/ukUA.d.ts +3 -0
- package/lib/locales/date/ukUA.js +8 -0
- package/lib/locales/index.d.ts +2 -0
- package/lib/locales/index.js +5 -1
- package/lib/pagination/src/Pagination.d.ts +88 -99
- package/lib/pagination/styles/light.d.ts +8 -8
- package/lib/select/src/Select.d.ts +80 -80
- package/lib/select/styles/light.d.ts +8 -8
- package/lib/tree-select/src/TreeSelect.d.ts +80 -80
- package/lib/tree-select/styles/light.d.ts +8 -8
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +3 -3
- package/web-types.json +1 -1
|
@@ -111,6 +111,14 @@ declare const selectProps: {
|
|
|
111
111
|
menuBoxShadow: string;
|
|
112
112
|
}, {
|
|
113
113
|
InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
|
|
114
|
+
fontSizeTiny: string;
|
|
115
|
+
fontSizeSmall: string;
|
|
116
|
+
fontSizeMedium: string;
|
|
117
|
+
fontSizeLarge: string;
|
|
118
|
+
heightTiny: string;
|
|
119
|
+
heightSmall: string;
|
|
120
|
+
heightMedium: string;
|
|
121
|
+
heightLarge: string;
|
|
114
122
|
borderRadius: string;
|
|
115
123
|
textColor: string;
|
|
116
124
|
textColorDisabled: string;
|
|
@@ -151,14 +159,6 @@ declare const selectProps: {
|
|
|
151
159
|
clearColor: string;
|
|
152
160
|
clearColorHover: string;
|
|
153
161
|
clearColorPressed: string;
|
|
154
|
-
heightTiny: string;
|
|
155
|
-
heightSmall: string;
|
|
156
|
-
heightMedium: string;
|
|
157
|
-
heightLarge: string;
|
|
158
|
-
fontSizeTiny: string;
|
|
159
|
-
fontSizeSmall: string;
|
|
160
|
-
fontSizeMedium: string;
|
|
161
|
-
fontSizeLarge: string;
|
|
162
162
|
paddingSingle: string;
|
|
163
163
|
clearSize: string;
|
|
164
164
|
arrowSize: string;
|
|
@@ -235,6 +235,14 @@ declare const selectProps: {
|
|
|
235
235
|
menuBoxShadow: string;
|
|
236
236
|
}, {
|
|
237
237
|
InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
|
|
238
|
+
fontSizeTiny: string;
|
|
239
|
+
fontSizeSmall: string;
|
|
240
|
+
fontSizeMedium: string;
|
|
241
|
+
fontSizeLarge: string;
|
|
242
|
+
heightTiny: string;
|
|
243
|
+
heightSmall: string;
|
|
244
|
+
heightMedium: string;
|
|
245
|
+
heightLarge: string;
|
|
238
246
|
borderRadius: string;
|
|
239
247
|
textColor: string;
|
|
240
248
|
textColorDisabled: string;
|
|
@@ -275,14 +283,6 @@ declare const selectProps: {
|
|
|
275
283
|
clearColor: string;
|
|
276
284
|
clearColorHover: string;
|
|
277
285
|
clearColorPressed: string;
|
|
278
|
-
heightTiny: string;
|
|
279
|
-
heightSmall: string;
|
|
280
|
-
heightMedium: string;
|
|
281
|
-
heightLarge: string;
|
|
282
|
-
fontSizeTiny: string;
|
|
283
|
-
fontSizeSmall: string;
|
|
284
|
-
fontSizeMedium: string;
|
|
285
|
-
fontSizeLarge: string;
|
|
286
286
|
paddingSingle: string;
|
|
287
287
|
clearSize: string;
|
|
288
288
|
arrowSize: string;
|
|
@@ -359,6 +359,14 @@ declare const selectProps: {
|
|
|
359
359
|
menuBoxShadow: string;
|
|
360
360
|
}, {
|
|
361
361
|
InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
|
|
362
|
+
fontSizeTiny: string;
|
|
363
|
+
fontSizeSmall: string;
|
|
364
|
+
fontSizeMedium: string;
|
|
365
|
+
fontSizeLarge: string;
|
|
366
|
+
heightTiny: string;
|
|
367
|
+
heightSmall: string;
|
|
368
|
+
heightMedium: string;
|
|
369
|
+
heightLarge: string;
|
|
362
370
|
borderRadius: string;
|
|
363
371
|
textColor: string;
|
|
364
372
|
textColorDisabled: string;
|
|
@@ -399,14 +407,6 @@ declare const selectProps: {
|
|
|
399
407
|
clearColor: string;
|
|
400
408
|
clearColorHover: string;
|
|
401
409
|
clearColorPressed: string;
|
|
402
|
-
heightTiny: string;
|
|
403
|
-
heightSmall: string;
|
|
404
|
-
heightMedium: string;
|
|
405
|
-
heightLarge: string;
|
|
406
|
-
fontSizeTiny: string;
|
|
407
|
-
fontSizeSmall: string;
|
|
408
|
-
fontSizeMedium: string;
|
|
409
|
-
fontSizeLarge: string;
|
|
410
410
|
paddingSingle: string;
|
|
411
411
|
clearSize: string;
|
|
412
412
|
arrowSize: string;
|
|
@@ -585,6 +585,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
585
585
|
menuBoxShadow: string;
|
|
586
586
|
}, {
|
|
587
587
|
InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
|
|
588
|
+
fontSizeTiny: string;
|
|
589
|
+
fontSizeSmall: string;
|
|
590
|
+
fontSizeMedium: string;
|
|
591
|
+
fontSizeLarge: string;
|
|
592
|
+
heightTiny: string;
|
|
593
|
+
heightSmall: string;
|
|
594
|
+
heightMedium: string;
|
|
595
|
+
heightLarge: string;
|
|
588
596
|
borderRadius: string;
|
|
589
597
|
textColor: string;
|
|
590
598
|
textColorDisabled: string;
|
|
@@ -625,14 +633,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
625
633
|
clearColor: string;
|
|
626
634
|
clearColorHover: string;
|
|
627
635
|
clearColorPressed: string;
|
|
628
|
-
heightTiny: string;
|
|
629
|
-
heightSmall: string;
|
|
630
|
-
heightMedium: string;
|
|
631
|
-
heightLarge: string;
|
|
632
|
-
fontSizeTiny: string;
|
|
633
|
-
fontSizeSmall: string;
|
|
634
|
-
fontSizeMedium: string;
|
|
635
|
-
fontSizeLarge: string;
|
|
636
636
|
paddingSingle: string;
|
|
637
637
|
clearSize: string;
|
|
638
638
|
arrowSize: string;
|
|
@@ -709,6 +709,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
709
709
|
menuBoxShadow: string;
|
|
710
710
|
}, {
|
|
711
711
|
InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
|
|
712
|
+
fontSizeTiny: string;
|
|
713
|
+
fontSizeSmall: string;
|
|
714
|
+
fontSizeMedium: string;
|
|
715
|
+
fontSizeLarge: string;
|
|
716
|
+
heightTiny: string;
|
|
717
|
+
heightSmall: string;
|
|
718
|
+
heightMedium: string;
|
|
719
|
+
heightLarge: string;
|
|
712
720
|
borderRadius: string;
|
|
713
721
|
textColor: string;
|
|
714
722
|
textColorDisabled: string;
|
|
@@ -749,14 +757,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
749
757
|
clearColor: string;
|
|
750
758
|
clearColorHover: string;
|
|
751
759
|
clearColorPressed: string;
|
|
752
|
-
heightTiny: string;
|
|
753
|
-
heightSmall: string;
|
|
754
|
-
heightMedium: string;
|
|
755
|
-
heightLarge: string;
|
|
756
|
-
fontSizeTiny: string;
|
|
757
|
-
fontSizeSmall: string;
|
|
758
|
-
fontSizeMedium: string;
|
|
759
|
-
fontSizeLarge: string;
|
|
760
760
|
paddingSingle: string;
|
|
761
761
|
clearSize: string;
|
|
762
762
|
arrowSize: string;
|
|
@@ -833,6 +833,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
833
833
|
menuBoxShadow: string;
|
|
834
834
|
}, {
|
|
835
835
|
InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
|
|
836
|
+
fontSizeTiny: string;
|
|
837
|
+
fontSizeSmall: string;
|
|
838
|
+
fontSizeMedium: string;
|
|
839
|
+
fontSizeLarge: string;
|
|
840
|
+
heightTiny: string;
|
|
841
|
+
heightSmall: string;
|
|
842
|
+
heightMedium: string;
|
|
843
|
+
heightLarge: string;
|
|
836
844
|
borderRadius: string;
|
|
837
845
|
textColor: string;
|
|
838
846
|
textColorDisabled: string;
|
|
@@ -873,14 +881,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
873
881
|
clearColor: string;
|
|
874
882
|
clearColorHover: string;
|
|
875
883
|
clearColorPressed: string;
|
|
876
|
-
heightTiny: string;
|
|
877
|
-
heightSmall: string;
|
|
878
|
-
heightMedium: string;
|
|
879
|
-
heightLarge: string;
|
|
880
|
-
fontSizeTiny: string;
|
|
881
|
-
fontSizeSmall: string;
|
|
882
|
-
fontSizeMedium: string;
|
|
883
|
-
fontSizeLarge: string;
|
|
884
884
|
paddingSingle: string;
|
|
885
885
|
clearSize: string;
|
|
886
886
|
arrowSize: string;
|
|
@@ -1109,6 +1109,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1109
1109
|
};
|
|
1110
1110
|
peers: {
|
|
1111
1111
|
InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
|
|
1112
|
+
fontSizeTiny: string;
|
|
1113
|
+
fontSizeSmall: string;
|
|
1114
|
+
fontSizeMedium: string;
|
|
1115
|
+
fontSizeLarge: string;
|
|
1116
|
+
heightTiny: string;
|
|
1117
|
+
heightSmall: string;
|
|
1118
|
+
heightMedium: string;
|
|
1119
|
+
heightLarge: string;
|
|
1112
1120
|
borderRadius: string;
|
|
1113
1121
|
textColor: string;
|
|
1114
1122
|
textColorDisabled: string;
|
|
@@ -1149,14 +1157,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1149
1157
|
clearColor: string;
|
|
1150
1158
|
clearColorHover: string;
|
|
1151
1159
|
clearColorPressed: string;
|
|
1152
|
-
heightTiny: string;
|
|
1153
|
-
heightSmall: string;
|
|
1154
|
-
heightMedium: string;
|
|
1155
|
-
heightLarge: string;
|
|
1156
|
-
fontSizeTiny: string;
|
|
1157
|
-
fontSizeSmall: string;
|
|
1158
|
-
fontSizeMedium: string;
|
|
1159
|
-
fontSizeLarge: string;
|
|
1160
1160
|
paddingSingle: string;
|
|
1161
1161
|
clearSize: string;
|
|
1162
1162
|
arrowSize: string;
|
|
@@ -1350,6 +1350,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1350
1350
|
menuBoxShadow: string;
|
|
1351
1351
|
}, {
|
|
1352
1352
|
InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
|
|
1353
|
+
fontSizeTiny: string;
|
|
1354
|
+
fontSizeSmall: string;
|
|
1355
|
+
fontSizeMedium: string;
|
|
1356
|
+
fontSizeLarge: string;
|
|
1357
|
+
heightTiny: string;
|
|
1358
|
+
heightSmall: string;
|
|
1359
|
+
heightMedium: string;
|
|
1360
|
+
heightLarge: string;
|
|
1353
1361
|
borderRadius: string;
|
|
1354
1362
|
textColor: string;
|
|
1355
1363
|
textColorDisabled: string;
|
|
@@ -1390,14 +1398,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1390
1398
|
clearColor: string;
|
|
1391
1399
|
clearColorHover: string;
|
|
1392
1400
|
clearColorPressed: string;
|
|
1393
|
-
heightTiny: string;
|
|
1394
|
-
heightSmall: string;
|
|
1395
|
-
heightMedium: string;
|
|
1396
|
-
heightLarge: string;
|
|
1397
|
-
fontSizeTiny: string;
|
|
1398
|
-
fontSizeSmall: string;
|
|
1399
|
-
fontSizeMedium: string;
|
|
1400
|
-
fontSizeLarge: string;
|
|
1401
1401
|
paddingSingle: string;
|
|
1402
1402
|
clearSize: string;
|
|
1403
1403
|
arrowSize: string;
|
|
@@ -1474,6 +1474,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1474
1474
|
menuBoxShadow: string;
|
|
1475
1475
|
}, {
|
|
1476
1476
|
InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
|
|
1477
|
+
fontSizeTiny: string;
|
|
1478
|
+
fontSizeSmall: string;
|
|
1479
|
+
fontSizeMedium: string;
|
|
1480
|
+
fontSizeLarge: string;
|
|
1481
|
+
heightTiny: string;
|
|
1482
|
+
heightSmall: string;
|
|
1483
|
+
heightMedium: string;
|
|
1484
|
+
heightLarge: string;
|
|
1477
1485
|
borderRadius: string;
|
|
1478
1486
|
textColor: string;
|
|
1479
1487
|
textColorDisabled: string;
|
|
@@ -1514,14 +1522,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1514
1522
|
clearColor: string;
|
|
1515
1523
|
clearColorHover: string;
|
|
1516
1524
|
clearColorPressed: string;
|
|
1517
|
-
heightTiny: string;
|
|
1518
|
-
heightSmall: string;
|
|
1519
|
-
heightMedium: string;
|
|
1520
|
-
heightLarge: string;
|
|
1521
|
-
fontSizeTiny: string;
|
|
1522
|
-
fontSizeSmall: string;
|
|
1523
|
-
fontSizeMedium: string;
|
|
1524
|
-
fontSizeLarge: string;
|
|
1525
1525
|
paddingSingle: string;
|
|
1526
1526
|
clearSize: string;
|
|
1527
1527
|
arrowSize: string;
|
|
@@ -1598,6 +1598,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1598
1598
|
menuBoxShadow: string;
|
|
1599
1599
|
}, {
|
|
1600
1600
|
InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
|
|
1601
|
+
fontSizeTiny: string;
|
|
1602
|
+
fontSizeSmall: string;
|
|
1603
|
+
fontSizeMedium: string;
|
|
1604
|
+
fontSizeLarge: string;
|
|
1605
|
+
heightTiny: string;
|
|
1606
|
+
heightSmall: string;
|
|
1607
|
+
heightMedium: string;
|
|
1608
|
+
heightLarge: string;
|
|
1601
1609
|
borderRadius: string;
|
|
1602
1610
|
textColor: string;
|
|
1603
1611
|
textColorDisabled: string;
|
|
@@ -1638,14 +1646,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1638
1646
|
clearColor: string;
|
|
1639
1647
|
clearColorHover: string;
|
|
1640
1648
|
clearColorPressed: string;
|
|
1641
|
-
heightTiny: string;
|
|
1642
|
-
heightSmall: string;
|
|
1643
|
-
heightMedium: string;
|
|
1644
|
-
heightLarge: string;
|
|
1645
|
-
fontSizeTiny: string;
|
|
1646
|
-
fontSizeSmall: string;
|
|
1647
|
-
fontSizeMedium: string;
|
|
1648
|
-
fontSizeLarge: string;
|
|
1649
1649
|
paddingSingle: string;
|
|
1650
1650
|
clearSize: string;
|
|
1651
1651
|
arrowSize: string;
|
|
@@ -6,6 +6,14 @@ declare const selectLight: import("../../_mixins").Theme<"Select", {
|
|
|
6
6
|
menuBoxShadow: string;
|
|
7
7
|
}, {
|
|
8
8
|
InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
|
|
9
|
+
fontSizeTiny: string;
|
|
10
|
+
fontSizeSmall: string;
|
|
11
|
+
fontSizeMedium: string;
|
|
12
|
+
fontSizeLarge: string;
|
|
13
|
+
heightTiny: string;
|
|
14
|
+
heightSmall: string;
|
|
15
|
+
heightMedium: string;
|
|
16
|
+
heightLarge: string;
|
|
9
17
|
borderRadius: string;
|
|
10
18
|
textColor: string;
|
|
11
19
|
textColorDisabled: string;
|
|
@@ -46,14 +54,6 @@ declare const selectLight: import("../../_mixins").Theme<"Select", {
|
|
|
46
54
|
clearColor: string;
|
|
47
55
|
clearColorHover: string;
|
|
48
56
|
clearColorPressed: string;
|
|
49
|
-
heightTiny: string;
|
|
50
|
-
heightSmall: string;
|
|
51
|
-
heightMedium: string;
|
|
52
|
-
heightLarge: string;
|
|
53
|
-
fontSizeTiny: string;
|
|
54
|
-
fontSizeSmall: string;
|
|
55
|
-
fontSizeMedium: string;
|
|
56
|
-
fontSizeLarge: string;
|
|
57
57
|
paddingSingle: string;
|
|
58
58
|
clearSize: string;
|
|
59
59
|
arrowSize: string;
|
|
@@ -164,6 +164,14 @@ declare const props: {
|
|
|
164
164
|
iconSizeHuge: string;
|
|
165
165
|
}, any>;
|
|
166
166
|
InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
|
|
167
|
+
fontSizeTiny: string;
|
|
168
|
+
fontSizeSmall: string;
|
|
169
|
+
fontSizeMedium: string;
|
|
170
|
+
fontSizeLarge: string;
|
|
171
|
+
heightTiny: string;
|
|
172
|
+
heightSmall: string;
|
|
173
|
+
heightMedium: string;
|
|
174
|
+
heightLarge: string;
|
|
167
175
|
borderRadius: string;
|
|
168
176
|
textColor: string;
|
|
169
177
|
textColorDisabled: string;
|
|
@@ -204,14 +212,6 @@ declare const props: {
|
|
|
204
212
|
clearColor: string;
|
|
205
213
|
clearColorHover: string;
|
|
206
214
|
clearColorPressed: string;
|
|
207
|
-
heightTiny: string;
|
|
208
|
-
heightSmall: string;
|
|
209
|
-
heightMedium: string;
|
|
210
|
-
heightLarge: string;
|
|
211
|
-
fontSizeTiny: string;
|
|
212
|
-
fontSizeSmall: string;
|
|
213
|
-
fontSizeMedium: string;
|
|
214
|
-
fontSizeLarge: string;
|
|
215
215
|
paddingSingle: string;
|
|
216
216
|
clearSize: string;
|
|
217
217
|
arrowSize: string;
|
|
@@ -298,6 +298,14 @@ declare const props: {
|
|
|
298
298
|
iconSizeHuge: string;
|
|
299
299
|
}, any>;
|
|
300
300
|
InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
|
|
301
|
+
fontSizeTiny: string;
|
|
302
|
+
fontSizeSmall: string;
|
|
303
|
+
fontSizeMedium: string;
|
|
304
|
+
fontSizeLarge: string;
|
|
305
|
+
heightTiny: string;
|
|
306
|
+
heightSmall: string;
|
|
307
|
+
heightMedium: string;
|
|
308
|
+
heightLarge: string;
|
|
301
309
|
borderRadius: string;
|
|
302
310
|
textColor: string;
|
|
303
311
|
textColorDisabled: string;
|
|
@@ -338,14 +346,6 @@ declare const props: {
|
|
|
338
346
|
clearColor: string;
|
|
339
347
|
clearColorHover: string;
|
|
340
348
|
clearColorPressed: string;
|
|
341
|
-
heightTiny: string;
|
|
342
|
-
heightSmall: string;
|
|
343
|
-
heightMedium: string;
|
|
344
|
-
heightLarge: string;
|
|
345
|
-
fontSizeTiny: string;
|
|
346
|
-
fontSizeSmall: string;
|
|
347
|
-
fontSizeMedium: string;
|
|
348
|
-
fontSizeLarge: string;
|
|
349
349
|
paddingSingle: string;
|
|
350
350
|
clearSize: string;
|
|
351
351
|
arrowSize: string;
|
|
@@ -432,6 +432,14 @@ declare const props: {
|
|
|
432
432
|
iconSizeHuge: string;
|
|
433
433
|
}, any>;
|
|
434
434
|
InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
|
|
435
|
+
fontSizeTiny: string;
|
|
436
|
+
fontSizeSmall: string;
|
|
437
|
+
fontSizeMedium: string;
|
|
438
|
+
fontSizeLarge: string;
|
|
439
|
+
heightTiny: string;
|
|
440
|
+
heightSmall: string;
|
|
441
|
+
heightMedium: string;
|
|
442
|
+
heightLarge: string;
|
|
435
443
|
borderRadius: string;
|
|
436
444
|
textColor: string;
|
|
437
445
|
textColorDisabled: string;
|
|
@@ -472,14 +480,6 @@ declare const props: {
|
|
|
472
480
|
clearColor: string;
|
|
473
481
|
clearColorHover: string;
|
|
474
482
|
clearColorPressed: string;
|
|
475
|
-
heightTiny: string;
|
|
476
|
-
heightSmall: string;
|
|
477
|
-
heightMedium: string;
|
|
478
|
-
heightLarge: string;
|
|
479
|
-
fontSizeTiny: string;
|
|
480
|
-
fontSizeSmall: string;
|
|
481
|
-
fontSizeMedium: string;
|
|
482
|
-
fontSizeLarge: string;
|
|
483
483
|
paddingSingle: string;
|
|
484
484
|
clearSize: string;
|
|
485
485
|
arrowSize: string;
|
|
@@ -661,6 +661,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
661
661
|
iconSizeHuge: string;
|
|
662
662
|
}, any>;
|
|
663
663
|
InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
|
|
664
|
+
fontSizeTiny: string;
|
|
665
|
+
fontSizeSmall: string;
|
|
666
|
+
fontSizeMedium: string;
|
|
667
|
+
fontSizeLarge: string;
|
|
668
|
+
heightTiny: string;
|
|
669
|
+
heightSmall: string;
|
|
670
|
+
heightMedium: string;
|
|
671
|
+
heightLarge: string;
|
|
664
672
|
borderRadius: string;
|
|
665
673
|
textColor: string;
|
|
666
674
|
textColorDisabled: string;
|
|
@@ -701,14 +709,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
701
709
|
clearColor: string;
|
|
702
710
|
clearColorHover: string;
|
|
703
711
|
clearColorPressed: string;
|
|
704
|
-
heightTiny: string;
|
|
705
|
-
heightSmall: string;
|
|
706
|
-
heightMedium: string;
|
|
707
|
-
heightLarge: string;
|
|
708
|
-
fontSizeTiny: string;
|
|
709
|
-
fontSizeSmall: string;
|
|
710
|
-
fontSizeMedium: string;
|
|
711
|
-
fontSizeLarge: string;
|
|
712
712
|
paddingSingle: string;
|
|
713
713
|
clearSize: string;
|
|
714
714
|
arrowSize: string;
|
|
@@ -795,6 +795,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
795
795
|
iconSizeHuge: string;
|
|
796
796
|
}, any>;
|
|
797
797
|
InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
|
|
798
|
+
fontSizeTiny: string;
|
|
799
|
+
fontSizeSmall: string;
|
|
800
|
+
fontSizeMedium: string;
|
|
801
|
+
fontSizeLarge: string;
|
|
802
|
+
heightTiny: string;
|
|
803
|
+
heightSmall: string;
|
|
804
|
+
heightMedium: string;
|
|
805
|
+
heightLarge: string;
|
|
798
806
|
borderRadius: string;
|
|
799
807
|
textColor: string;
|
|
800
808
|
textColorDisabled: string;
|
|
@@ -835,14 +843,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
835
843
|
clearColor: string;
|
|
836
844
|
clearColorHover: string;
|
|
837
845
|
clearColorPressed: string;
|
|
838
|
-
heightTiny: string;
|
|
839
|
-
heightSmall: string;
|
|
840
|
-
heightMedium: string;
|
|
841
|
-
heightLarge: string;
|
|
842
|
-
fontSizeTiny: string;
|
|
843
|
-
fontSizeSmall: string;
|
|
844
|
-
fontSizeMedium: string;
|
|
845
|
-
fontSizeLarge: string;
|
|
846
846
|
paddingSingle: string;
|
|
847
847
|
clearSize: string;
|
|
848
848
|
arrowSize: string;
|
|
@@ -929,6 +929,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
929
929
|
iconSizeHuge: string;
|
|
930
930
|
}, any>;
|
|
931
931
|
InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
|
|
932
|
+
fontSizeTiny: string;
|
|
933
|
+
fontSizeSmall: string;
|
|
934
|
+
fontSizeMedium: string;
|
|
935
|
+
fontSizeLarge: string;
|
|
936
|
+
heightTiny: string;
|
|
937
|
+
heightSmall: string;
|
|
938
|
+
heightMedium: string;
|
|
939
|
+
heightLarge: string;
|
|
932
940
|
borderRadius: string;
|
|
933
941
|
textColor: string;
|
|
934
942
|
textColorDisabled: string;
|
|
@@ -969,14 +977,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
969
977
|
clearColor: string;
|
|
970
978
|
clearColorHover: string;
|
|
971
979
|
clearColorPressed: string;
|
|
972
|
-
heightTiny: string;
|
|
973
|
-
heightSmall: string;
|
|
974
|
-
heightMedium: string;
|
|
975
|
-
heightLarge: string;
|
|
976
|
-
fontSizeTiny: string;
|
|
977
|
-
fontSizeSmall: string;
|
|
978
|
-
fontSizeMedium: string;
|
|
979
|
-
fontSizeLarge: string;
|
|
980
980
|
paddingSingle: string;
|
|
981
981
|
clearSize: string;
|
|
982
982
|
arrowSize: string;
|
|
@@ -1228,6 +1228,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1228
1228
|
iconSizeHuge: string;
|
|
1229
1229
|
}, any>;
|
|
1230
1230
|
InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
|
|
1231
|
+
fontSizeTiny: string;
|
|
1232
|
+
fontSizeSmall: string;
|
|
1233
|
+
fontSizeMedium: string;
|
|
1234
|
+
fontSizeLarge: string;
|
|
1235
|
+
heightTiny: string;
|
|
1236
|
+
heightSmall: string;
|
|
1237
|
+
heightMedium: string;
|
|
1238
|
+
heightLarge: string;
|
|
1231
1239
|
borderRadius: string;
|
|
1232
1240
|
textColor: string;
|
|
1233
1241
|
textColorDisabled: string;
|
|
@@ -1268,14 +1276,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1268
1276
|
clearColor: string;
|
|
1269
1277
|
clearColorHover: string;
|
|
1270
1278
|
clearColorPressed: string;
|
|
1271
|
-
heightTiny: string;
|
|
1272
|
-
heightSmall: string;
|
|
1273
|
-
heightMedium: string;
|
|
1274
|
-
heightLarge: string;
|
|
1275
|
-
fontSizeTiny: string;
|
|
1276
|
-
fontSizeSmall: string;
|
|
1277
|
-
fontSizeMedium: string;
|
|
1278
|
-
fontSizeLarge: string;
|
|
1279
1279
|
paddingSingle: string;
|
|
1280
1280
|
clearSize: string;
|
|
1281
1281
|
arrowSize: string;
|
|
@@ -1500,6 +1500,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1500
1500
|
iconSizeHuge: string;
|
|
1501
1501
|
}, any>;
|
|
1502
1502
|
InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
|
|
1503
|
+
fontSizeTiny: string;
|
|
1504
|
+
fontSizeSmall: string;
|
|
1505
|
+
fontSizeMedium: string;
|
|
1506
|
+
fontSizeLarge: string;
|
|
1507
|
+
heightTiny: string;
|
|
1508
|
+
heightSmall: string;
|
|
1509
|
+
heightMedium: string;
|
|
1510
|
+
heightLarge: string;
|
|
1503
1511
|
borderRadius: string;
|
|
1504
1512
|
textColor: string;
|
|
1505
1513
|
textColorDisabled: string;
|
|
@@ -1540,14 +1548,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1540
1548
|
clearColor: string;
|
|
1541
1549
|
clearColorHover: string;
|
|
1542
1550
|
clearColorPressed: string;
|
|
1543
|
-
heightTiny: string;
|
|
1544
|
-
heightSmall: string;
|
|
1545
|
-
heightMedium: string;
|
|
1546
|
-
heightLarge: string;
|
|
1547
|
-
fontSizeTiny: string;
|
|
1548
|
-
fontSizeSmall: string;
|
|
1549
|
-
fontSizeMedium: string;
|
|
1550
|
-
fontSizeLarge: string;
|
|
1551
1551
|
paddingSingle: string;
|
|
1552
1552
|
clearSize: string;
|
|
1553
1553
|
arrowSize: string;
|
|
@@ -1634,6 +1634,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1634
1634
|
iconSizeHuge: string;
|
|
1635
1635
|
}, any>;
|
|
1636
1636
|
InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
|
|
1637
|
+
fontSizeTiny: string;
|
|
1638
|
+
fontSizeSmall: string;
|
|
1639
|
+
fontSizeMedium: string;
|
|
1640
|
+
fontSizeLarge: string;
|
|
1641
|
+
heightTiny: string;
|
|
1642
|
+
heightSmall: string;
|
|
1643
|
+
heightMedium: string;
|
|
1644
|
+
heightLarge: string;
|
|
1637
1645
|
borderRadius: string;
|
|
1638
1646
|
textColor: string;
|
|
1639
1647
|
textColorDisabled: string;
|
|
@@ -1674,14 +1682,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1674
1682
|
clearColor: string;
|
|
1675
1683
|
clearColorHover: string;
|
|
1676
1684
|
clearColorPressed: string;
|
|
1677
|
-
heightTiny: string;
|
|
1678
|
-
heightSmall: string;
|
|
1679
|
-
heightMedium: string;
|
|
1680
|
-
heightLarge: string;
|
|
1681
|
-
fontSizeTiny: string;
|
|
1682
|
-
fontSizeSmall: string;
|
|
1683
|
-
fontSizeMedium: string;
|
|
1684
|
-
fontSizeLarge: string;
|
|
1685
1685
|
paddingSingle: string;
|
|
1686
1686
|
clearSize: string;
|
|
1687
1687
|
arrowSize: string;
|
|
@@ -1768,6 +1768,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1768
1768
|
iconSizeHuge: string;
|
|
1769
1769
|
}, any>;
|
|
1770
1770
|
InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
|
|
1771
|
+
fontSizeTiny: string;
|
|
1772
|
+
fontSizeSmall: string;
|
|
1773
|
+
fontSizeMedium: string;
|
|
1774
|
+
fontSizeLarge: string;
|
|
1775
|
+
heightTiny: string;
|
|
1776
|
+
heightSmall: string;
|
|
1777
|
+
heightMedium: string;
|
|
1778
|
+
heightLarge: string;
|
|
1771
1779
|
borderRadius: string;
|
|
1772
1780
|
textColor: string;
|
|
1773
1781
|
textColorDisabled: string;
|
|
@@ -1808,14 +1816,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1808
1816
|
clearColor: string;
|
|
1809
1817
|
clearColorHover: string;
|
|
1810
1818
|
clearColorPressed: string;
|
|
1811
|
-
heightTiny: string;
|
|
1812
|
-
heightSmall: string;
|
|
1813
|
-
heightMedium: string;
|
|
1814
|
-
heightLarge: string;
|
|
1815
|
-
fontSizeTiny: string;
|
|
1816
|
-
fontSizeSmall: string;
|
|
1817
|
-
fontSizeMedium: string;
|
|
1818
|
-
fontSizeLarge: string;
|
|
1819
1819
|
paddingSingle: string;
|
|
1820
1820
|
clearSize: string;
|
|
1821
1821
|
arrowSize: string;
|
|
@@ -73,6 +73,14 @@ declare const treeSelectLight: import("../../_mixins/use-theme").Theme<"TreeSele
|
|
|
73
73
|
iconSizeHuge: string;
|
|
74
74
|
}, any>;
|
|
75
75
|
InternalSelection: import("../../_mixins/use-theme").Theme<"InternalSelection", {
|
|
76
|
+
fontSizeTiny: string;
|
|
77
|
+
fontSizeSmall: string;
|
|
78
|
+
fontSizeMedium: string;
|
|
79
|
+
fontSizeLarge: string;
|
|
80
|
+
heightTiny: string;
|
|
81
|
+
heightSmall: string;
|
|
82
|
+
heightMedium: string;
|
|
83
|
+
heightLarge: string;
|
|
76
84
|
borderRadius: string;
|
|
77
85
|
textColor: string;
|
|
78
86
|
textColorDisabled: string;
|
|
@@ -113,14 +121,6 @@ declare const treeSelectLight: import("../../_mixins/use-theme").Theme<"TreeSele
|
|
|
113
121
|
clearColor: string;
|
|
114
122
|
clearColorHover: string;
|
|
115
123
|
clearColorPressed: string;
|
|
116
|
-
heightTiny: string;
|
|
117
|
-
heightSmall: string;
|
|
118
|
-
heightMedium: string;
|
|
119
|
-
heightLarge: string;
|
|
120
|
-
fontSizeTiny: string;
|
|
121
|
-
fontSizeSmall: string;
|
|
122
|
-
fontSizeMedium: string;
|
|
123
|
-
fontSizeLarge: string;
|
|
124
124
|
paddingSingle: string;
|
|
125
125
|
clearSize: string;
|
|
126
126
|
arrowSize: string;
|
package/es/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "2.19.
|
|
1
|
+
declare const _default: "2.19.2";
|
|
2
2
|
export default _default;
|
package/es/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default '2.19.
|
|
1
|
+
export default '2.19.2';
|