@oiij/naive-ui 0.0.58 → 0.0.60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/data-table-plus/index.d.ts +5 -1
- package/dist/components/icons/MageArrowUp.vue.d.ts +2 -0
- package/dist/components/search-input/SearchInput.vue.d.ts +248 -24
- package/dist/components/toggle-editor/ToggleEditor.vue.d.ts +124 -12
- package/dist/components.cjs +18 -18
- package/dist/components.js +1329 -1259
- package/dist/components.umd.cjs +20 -20
- package/dist/composables/_helper.cjs +29 -0
- package/dist/composables/_helper.d.cts +10 -0
- package/dist/composables/_helper.d.ts +10 -0
- package/dist/composables/_helper.js +27 -0
- package/dist/composables/useDataRequest.cjs +6 -3
- package/dist/composables/useNaiveForm.cjs +4 -2
- package/dist/composables/useNaiveTheme.cjs +33 -60
- package/dist/composables/useNaiveTheme.d.cts +26 -20
- package/dist/composables/useNaiveTheme.d.ts +26 -20
- package/dist/composables/useNaiveTheme.js +28 -57
- package/package.json +16 -16
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DataTableColumns, DataTableFilterState, DataTableInst, DataTableProps, DataTableSortState, PaginationProps } from 'naive-ui';
|
|
1
|
+
import { ButtonProps, DataTableColumns, DataTableFilterState, DataTableInst, DataTableProps, DataTableSortState, PaginationProps } from 'naive-ui';
|
|
2
2
|
import { FilterState, TableBaseColumn } from 'naive-ui/es/data-table/src/interface';
|
|
3
3
|
import { CSSProperties, Ref, ShallowRef } from 'vue';
|
|
4
4
|
import { DataObject, DataRequestFields, UseDataRequestReturns } from '../../composables/useDataRequest';
|
|
@@ -23,6 +23,10 @@ export type DataTablePlusFields = DataRequestFields & {
|
|
|
23
23
|
};
|
|
24
24
|
export type DataTablePlusProps<P extends DataObject = DataObject, D extends DataObject = DataObject, R extends DataObject = DataObject> = RemoteRequestProps<P, D> & {
|
|
25
25
|
title?: string;
|
|
26
|
+
scrollTop?: number | boolean | {
|
|
27
|
+
top?: number;
|
|
28
|
+
buttonProps?: ButtonProps & ClassStyle;
|
|
29
|
+
};
|
|
26
30
|
columns?: DataTableColumns<R>;
|
|
27
31
|
fields?: DataTablePlusFields;
|
|
28
32
|
search?: SearchInputProps & ClassStyle | boolean;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -164,7 +164,20 @@ declare function __VLS_template(): {
|
|
|
164
164
|
paddingMedium: string;
|
|
165
165
|
paddingLarge: string;
|
|
166
166
|
clearSize: string;
|
|
167
|
-
},
|
|
167
|
+
}, {
|
|
168
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
169
|
+
height: string;
|
|
170
|
+
width: string;
|
|
171
|
+
borderRadius: string;
|
|
172
|
+
color: string;
|
|
173
|
+
colorHover: string;
|
|
174
|
+
railInsetHorizontalBottom: string;
|
|
175
|
+
railInsetHorizontalTop: string;
|
|
176
|
+
railInsetVerticalRight: string;
|
|
177
|
+
railInsetVerticalLeft: string;
|
|
178
|
+
railColor: string;
|
|
179
|
+
}, any>;
|
|
180
|
+
}>>;
|
|
168
181
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
169
182
|
fontWeight: string;
|
|
170
183
|
countTextColorDisabled: string;
|
|
@@ -226,7 +239,20 @@ declare function __VLS_template(): {
|
|
|
226
239
|
paddingMedium: string;
|
|
227
240
|
paddingLarge: string;
|
|
228
241
|
clearSize: string;
|
|
229
|
-
},
|
|
242
|
+
}, {
|
|
243
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
244
|
+
height: string;
|
|
245
|
+
width: string;
|
|
246
|
+
borderRadius: string;
|
|
247
|
+
color: string;
|
|
248
|
+
colorHover: string;
|
|
249
|
+
railInsetHorizontalBottom: string;
|
|
250
|
+
railInsetHorizontalTop: string;
|
|
251
|
+
railInsetVerticalRight: string;
|
|
252
|
+
railInsetVerticalLeft: string;
|
|
253
|
+
railColor: string;
|
|
254
|
+
}, any>;
|
|
255
|
+
}>>>;
|
|
230
256
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
231
257
|
fontWeight: string;
|
|
232
258
|
countTextColorDisabled: string;
|
|
@@ -288,7 +314,20 @@ declare function __VLS_template(): {
|
|
|
288
314
|
paddingMedium: string;
|
|
289
315
|
paddingLarge: string;
|
|
290
316
|
clearSize: string;
|
|
291
|
-
},
|
|
317
|
+
}, {
|
|
318
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
319
|
+
height: string;
|
|
320
|
+
width: string;
|
|
321
|
+
borderRadius: string;
|
|
322
|
+
color: string;
|
|
323
|
+
colorHover: string;
|
|
324
|
+
railInsetHorizontalBottom: string;
|
|
325
|
+
railInsetHorizontalTop: string;
|
|
326
|
+
railInsetVerticalRight: string;
|
|
327
|
+
railInsetVerticalLeft: string;
|
|
328
|
+
railColor: string;
|
|
329
|
+
}, any>;
|
|
330
|
+
}>>>;
|
|
292
331
|
}>> & Readonly<{}>, {
|
|
293
332
|
wrapperElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
294
333
|
inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
@@ -431,9 +470,26 @@ declare function __VLS_template(): {
|
|
|
431
470
|
paddingLarge: string;
|
|
432
471
|
clearSize: string;
|
|
433
472
|
};
|
|
434
|
-
peers:
|
|
473
|
+
peers: {
|
|
474
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
475
|
+
height: string;
|
|
476
|
+
width: string;
|
|
477
|
+
borderRadius: string;
|
|
478
|
+
color: string;
|
|
479
|
+
colorHover: string;
|
|
480
|
+
railInsetHorizontalBottom: string;
|
|
481
|
+
railInsetHorizontalTop: string;
|
|
482
|
+
railInsetVerticalRight: string;
|
|
483
|
+
railInsetVerticalLeft: string;
|
|
484
|
+
railColor: string;
|
|
485
|
+
}, any>;
|
|
486
|
+
};
|
|
435
487
|
peerOverrides: {
|
|
436
|
-
|
|
488
|
+
Scrollbar?: {
|
|
489
|
+
peers?: {
|
|
490
|
+
[x: string]: any;
|
|
491
|
+
} | undefined;
|
|
492
|
+
} | undefined;
|
|
437
493
|
};
|
|
438
494
|
}>;
|
|
439
495
|
cssVars: import('vue').ComputedRef<{
|
|
@@ -512,10 +568,10 @@ declare function __VLS_template(): {
|
|
|
512
568
|
clearable: boolean;
|
|
513
569
|
defaultValue: string | [string, string] | null;
|
|
514
570
|
resizable: boolean;
|
|
571
|
+
stateful: boolean;
|
|
515
572
|
pair: boolean;
|
|
516
573
|
rows: string | number;
|
|
517
574
|
passivelyActivated: boolean;
|
|
518
|
-
stateful: boolean;
|
|
519
575
|
showCount: boolean;
|
|
520
576
|
attrSize: number;
|
|
521
577
|
internalDeactivateOnEnter: boolean;
|
|
@@ -683,7 +739,20 @@ declare function __VLS_template(): {
|
|
|
683
739
|
paddingMedium: string;
|
|
684
740
|
paddingLarge: string;
|
|
685
741
|
clearSize: string;
|
|
686
|
-
},
|
|
742
|
+
}, {
|
|
743
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
744
|
+
height: string;
|
|
745
|
+
width: string;
|
|
746
|
+
borderRadius: string;
|
|
747
|
+
color: string;
|
|
748
|
+
colorHover: string;
|
|
749
|
+
railInsetHorizontalBottom: string;
|
|
750
|
+
railInsetHorizontalTop: string;
|
|
751
|
+
railInsetVerticalRight: string;
|
|
752
|
+
railInsetVerticalLeft: string;
|
|
753
|
+
railColor: string;
|
|
754
|
+
}, any>;
|
|
755
|
+
}>>;
|
|
687
756
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
688
757
|
fontWeight: string;
|
|
689
758
|
countTextColorDisabled: string;
|
|
@@ -745,7 +814,20 @@ declare function __VLS_template(): {
|
|
|
745
814
|
paddingMedium: string;
|
|
746
815
|
paddingLarge: string;
|
|
747
816
|
clearSize: string;
|
|
748
|
-
},
|
|
817
|
+
}, {
|
|
818
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
819
|
+
height: string;
|
|
820
|
+
width: string;
|
|
821
|
+
borderRadius: string;
|
|
822
|
+
color: string;
|
|
823
|
+
colorHover: string;
|
|
824
|
+
railInsetHorizontalBottom: string;
|
|
825
|
+
railInsetHorizontalTop: string;
|
|
826
|
+
railInsetVerticalRight: string;
|
|
827
|
+
railInsetVerticalLeft: string;
|
|
828
|
+
railColor: string;
|
|
829
|
+
}, any>;
|
|
830
|
+
}>>>;
|
|
749
831
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
750
832
|
fontWeight: string;
|
|
751
833
|
countTextColorDisabled: string;
|
|
@@ -807,7 +889,20 @@ declare function __VLS_template(): {
|
|
|
807
889
|
paddingMedium: string;
|
|
808
890
|
paddingLarge: string;
|
|
809
891
|
clearSize: string;
|
|
810
|
-
},
|
|
892
|
+
}, {
|
|
893
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
894
|
+
height: string;
|
|
895
|
+
width: string;
|
|
896
|
+
borderRadius: string;
|
|
897
|
+
color: string;
|
|
898
|
+
colorHover: string;
|
|
899
|
+
railInsetHorizontalBottom: string;
|
|
900
|
+
railInsetHorizontalTop: string;
|
|
901
|
+
railInsetVerticalRight: string;
|
|
902
|
+
railInsetVerticalLeft: string;
|
|
903
|
+
railColor: string;
|
|
904
|
+
}, any>;
|
|
905
|
+
}>>>;
|
|
811
906
|
}>> & Readonly<{}>, {
|
|
812
907
|
wrapperElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
813
908
|
inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
@@ -950,9 +1045,26 @@ declare function __VLS_template(): {
|
|
|
950
1045
|
paddingLarge: string;
|
|
951
1046
|
clearSize: string;
|
|
952
1047
|
};
|
|
953
|
-
peers:
|
|
1048
|
+
peers: {
|
|
1049
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1050
|
+
height: string;
|
|
1051
|
+
width: string;
|
|
1052
|
+
borderRadius: string;
|
|
1053
|
+
color: string;
|
|
1054
|
+
colorHover: string;
|
|
1055
|
+
railInsetHorizontalBottom: string;
|
|
1056
|
+
railInsetHorizontalTop: string;
|
|
1057
|
+
railInsetVerticalRight: string;
|
|
1058
|
+
railInsetVerticalLeft: string;
|
|
1059
|
+
railColor: string;
|
|
1060
|
+
}, any>;
|
|
1061
|
+
};
|
|
954
1062
|
peerOverrides: {
|
|
955
|
-
|
|
1063
|
+
Scrollbar?: {
|
|
1064
|
+
peers?: {
|
|
1065
|
+
[x: string]: any;
|
|
1066
|
+
} | undefined;
|
|
1067
|
+
} | undefined;
|
|
956
1068
|
};
|
|
957
1069
|
}>;
|
|
958
1070
|
cssVars: import('vue').ComputedRef<{
|
|
@@ -1031,10 +1143,10 @@ declare function __VLS_template(): {
|
|
|
1031
1143
|
clearable: boolean;
|
|
1032
1144
|
defaultValue: string | [string, string] | null;
|
|
1033
1145
|
resizable: boolean;
|
|
1146
|
+
stateful: boolean;
|
|
1034
1147
|
pair: boolean;
|
|
1035
1148
|
rows: string | number;
|
|
1036
1149
|
passivelyActivated: boolean;
|
|
1037
|
-
stateful: boolean;
|
|
1038
1150
|
showCount: boolean;
|
|
1039
1151
|
attrSize: number;
|
|
1040
1152
|
internalDeactivateOnEnter: boolean;
|
|
@@ -1223,7 +1335,20 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
1223
1335
|
paddingMedium: string;
|
|
1224
1336
|
paddingLarge: string;
|
|
1225
1337
|
clearSize: string;
|
|
1226
|
-
},
|
|
1338
|
+
}, {
|
|
1339
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1340
|
+
height: string;
|
|
1341
|
+
width: string;
|
|
1342
|
+
borderRadius: string;
|
|
1343
|
+
color: string;
|
|
1344
|
+
colorHover: string;
|
|
1345
|
+
railInsetHorizontalBottom: string;
|
|
1346
|
+
railInsetHorizontalTop: string;
|
|
1347
|
+
railInsetVerticalRight: string;
|
|
1348
|
+
railInsetVerticalLeft: string;
|
|
1349
|
+
railColor: string;
|
|
1350
|
+
}, any>;
|
|
1351
|
+
}>>;
|
|
1227
1352
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
1228
1353
|
fontWeight: string;
|
|
1229
1354
|
countTextColorDisabled: string;
|
|
@@ -1285,7 +1410,20 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
1285
1410
|
paddingMedium: string;
|
|
1286
1411
|
paddingLarge: string;
|
|
1287
1412
|
clearSize: string;
|
|
1288
|
-
},
|
|
1413
|
+
}, {
|
|
1414
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1415
|
+
height: string;
|
|
1416
|
+
width: string;
|
|
1417
|
+
borderRadius: string;
|
|
1418
|
+
color: string;
|
|
1419
|
+
colorHover: string;
|
|
1420
|
+
railInsetHorizontalBottom: string;
|
|
1421
|
+
railInsetHorizontalTop: string;
|
|
1422
|
+
railInsetVerticalRight: string;
|
|
1423
|
+
railInsetVerticalLeft: string;
|
|
1424
|
+
railColor: string;
|
|
1425
|
+
}, any>;
|
|
1426
|
+
}>>>;
|
|
1289
1427
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
1290
1428
|
fontWeight: string;
|
|
1291
1429
|
countTextColorDisabled: string;
|
|
@@ -1347,7 +1485,20 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
1347
1485
|
paddingMedium: string;
|
|
1348
1486
|
paddingLarge: string;
|
|
1349
1487
|
clearSize: string;
|
|
1350
|
-
},
|
|
1488
|
+
}, {
|
|
1489
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1490
|
+
height: string;
|
|
1491
|
+
width: string;
|
|
1492
|
+
borderRadius: string;
|
|
1493
|
+
color: string;
|
|
1494
|
+
colorHover: string;
|
|
1495
|
+
railInsetHorizontalBottom: string;
|
|
1496
|
+
railInsetHorizontalTop: string;
|
|
1497
|
+
railInsetVerticalRight: string;
|
|
1498
|
+
railInsetVerticalLeft: string;
|
|
1499
|
+
railColor: string;
|
|
1500
|
+
}, any>;
|
|
1501
|
+
}>>>;
|
|
1351
1502
|
}>> & Readonly<{}>, {
|
|
1352
1503
|
wrapperElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
1353
1504
|
inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
@@ -1490,9 +1641,26 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
1490
1641
|
paddingLarge: string;
|
|
1491
1642
|
clearSize: string;
|
|
1492
1643
|
};
|
|
1493
|
-
peers:
|
|
1644
|
+
peers: {
|
|
1645
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1646
|
+
height: string;
|
|
1647
|
+
width: string;
|
|
1648
|
+
borderRadius: string;
|
|
1649
|
+
color: string;
|
|
1650
|
+
colorHover: string;
|
|
1651
|
+
railInsetHorizontalBottom: string;
|
|
1652
|
+
railInsetHorizontalTop: string;
|
|
1653
|
+
railInsetVerticalRight: string;
|
|
1654
|
+
railInsetVerticalLeft: string;
|
|
1655
|
+
railColor: string;
|
|
1656
|
+
}, any>;
|
|
1657
|
+
};
|
|
1494
1658
|
peerOverrides: {
|
|
1495
|
-
|
|
1659
|
+
Scrollbar?: {
|
|
1660
|
+
peers?: {
|
|
1661
|
+
[x: string]: any;
|
|
1662
|
+
} | undefined;
|
|
1663
|
+
} | undefined;
|
|
1496
1664
|
};
|
|
1497
1665
|
}>;
|
|
1498
1666
|
cssVars: import('vue').ComputedRef<{
|
|
@@ -1571,10 +1739,10 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
1571
1739
|
clearable: boolean;
|
|
1572
1740
|
defaultValue: string | [string, string] | null;
|
|
1573
1741
|
resizable: boolean;
|
|
1742
|
+
stateful: boolean;
|
|
1574
1743
|
pair: boolean;
|
|
1575
1744
|
rows: string | number;
|
|
1576
1745
|
passivelyActivated: boolean;
|
|
1577
|
-
stateful: boolean;
|
|
1578
1746
|
showCount: boolean;
|
|
1579
1747
|
attrSize: number;
|
|
1580
1748
|
internalDeactivateOnEnter: boolean;
|
|
@@ -1742,7 +1910,20 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
1742
1910
|
paddingMedium: string;
|
|
1743
1911
|
paddingLarge: string;
|
|
1744
1912
|
clearSize: string;
|
|
1745
|
-
},
|
|
1913
|
+
}, {
|
|
1914
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1915
|
+
height: string;
|
|
1916
|
+
width: string;
|
|
1917
|
+
borderRadius: string;
|
|
1918
|
+
color: string;
|
|
1919
|
+
colorHover: string;
|
|
1920
|
+
railInsetHorizontalBottom: string;
|
|
1921
|
+
railInsetHorizontalTop: string;
|
|
1922
|
+
railInsetVerticalRight: string;
|
|
1923
|
+
railInsetVerticalLeft: string;
|
|
1924
|
+
railColor: string;
|
|
1925
|
+
}, any>;
|
|
1926
|
+
}>>;
|
|
1746
1927
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
1747
1928
|
fontWeight: string;
|
|
1748
1929
|
countTextColorDisabled: string;
|
|
@@ -1804,7 +1985,20 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
1804
1985
|
paddingMedium: string;
|
|
1805
1986
|
paddingLarge: string;
|
|
1806
1987
|
clearSize: string;
|
|
1807
|
-
},
|
|
1988
|
+
}, {
|
|
1989
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1990
|
+
height: string;
|
|
1991
|
+
width: string;
|
|
1992
|
+
borderRadius: string;
|
|
1993
|
+
color: string;
|
|
1994
|
+
colorHover: string;
|
|
1995
|
+
railInsetHorizontalBottom: string;
|
|
1996
|
+
railInsetHorizontalTop: string;
|
|
1997
|
+
railInsetVerticalRight: string;
|
|
1998
|
+
railInsetVerticalLeft: string;
|
|
1999
|
+
railColor: string;
|
|
2000
|
+
}, any>;
|
|
2001
|
+
}>>>;
|
|
1808
2002
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
1809
2003
|
fontWeight: string;
|
|
1810
2004
|
countTextColorDisabled: string;
|
|
@@ -1866,7 +2060,20 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
1866
2060
|
paddingMedium: string;
|
|
1867
2061
|
paddingLarge: string;
|
|
1868
2062
|
clearSize: string;
|
|
1869
|
-
},
|
|
2063
|
+
}, {
|
|
2064
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
2065
|
+
height: string;
|
|
2066
|
+
width: string;
|
|
2067
|
+
borderRadius: string;
|
|
2068
|
+
color: string;
|
|
2069
|
+
colorHover: string;
|
|
2070
|
+
railInsetHorizontalBottom: string;
|
|
2071
|
+
railInsetHorizontalTop: string;
|
|
2072
|
+
railInsetVerticalRight: string;
|
|
2073
|
+
railInsetVerticalLeft: string;
|
|
2074
|
+
railColor: string;
|
|
2075
|
+
}, any>;
|
|
2076
|
+
}>>>;
|
|
1870
2077
|
}>> & Readonly<{}>, {
|
|
1871
2078
|
wrapperElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
1872
2079
|
inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
@@ -2009,9 +2216,26 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
2009
2216
|
paddingLarge: string;
|
|
2010
2217
|
clearSize: string;
|
|
2011
2218
|
};
|
|
2012
|
-
peers:
|
|
2219
|
+
peers: {
|
|
2220
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
2221
|
+
height: string;
|
|
2222
|
+
width: string;
|
|
2223
|
+
borderRadius: string;
|
|
2224
|
+
color: string;
|
|
2225
|
+
colorHover: string;
|
|
2226
|
+
railInsetHorizontalBottom: string;
|
|
2227
|
+
railInsetHorizontalTop: string;
|
|
2228
|
+
railInsetVerticalRight: string;
|
|
2229
|
+
railInsetVerticalLeft: string;
|
|
2230
|
+
railColor: string;
|
|
2231
|
+
}, any>;
|
|
2232
|
+
};
|
|
2013
2233
|
peerOverrides: {
|
|
2014
|
-
|
|
2234
|
+
Scrollbar?: {
|
|
2235
|
+
peers?: {
|
|
2236
|
+
[x: string]: any;
|
|
2237
|
+
} | undefined;
|
|
2238
|
+
} | undefined;
|
|
2015
2239
|
};
|
|
2016
2240
|
}>;
|
|
2017
2241
|
cssVars: import('vue').ComputedRef<{
|
|
@@ -2090,10 +2314,10 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
2090
2314
|
clearable: boolean;
|
|
2091
2315
|
defaultValue: string | [string, string] | null;
|
|
2092
2316
|
resizable: boolean;
|
|
2317
|
+
stateful: boolean;
|
|
2093
2318
|
pair: boolean;
|
|
2094
2319
|
rows: string | number;
|
|
2095
2320
|
passivelyActivated: boolean;
|
|
2096
|
-
stateful: boolean;
|
|
2097
2321
|
showCount: boolean;
|
|
2098
2322
|
attrSize: number;
|
|
2099
2323
|
internalDeactivateOnEnter: boolean;
|
|
@@ -165,7 +165,20 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
165
165
|
paddingMedium: string;
|
|
166
166
|
paddingLarge: string;
|
|
167
167
|
clearSize: string;
|
|
168
|
-
},
|
|
168
|
+
}, {
|
|
169
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
170
|
+
height: string;
|
|
171
|
+
width: string;
|
|
172
|
+
borderRadius: string;
|
|
173
|
+
color: string;
|
|
174
|
+
colorHover: string;
|
|
175
|
+
railInsetHorizontalBottom: string;
|
|
176
|
+
railInsetHorizontalTop: string;
|
|
177
|
+
railInsetVerticalRight: string;
|
|
178
|
+
railInsetVerticalLeft: string;
|
|
179
|
+
railColor: string;
|
|
180
|
+
}, any>;
|
|
181
|
+
}>>;
|
|
169
182
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
170
183
|
fontWeight: string;
|
|
171
184
|
countTextColorDisabled: string;
|
|
@@ -227,7 +240,20 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
227
240
|
paddingMedium: string;
|
|
228
241
|
paddingLarge: string;
|
|
229
242
|
clearSize: string;
|
|
230
|
-
},
|
|
243
|
+
}, {
|
|
244
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
245
|
+
height: string;
|
|
246
|
+
width: string;
|
|
247
|
+
borderRadius: string;
|
|
248
|
+
color: string;
|
|
249
|
+
colorHover: string;
|
|
250
|
+
railInsetHorizontalBottom: string;
|
|
251
|
+
railInsetHorizontalTop: string;
|
|
252
|
+
railInsetVerticalRight: string;
|
|
253
|
+
railInsetVerticalLeft: string;
|
|
254
|
+
railColor: string;
|
|
255
|
+
}, any>;
|
|
256
|
+
}>>>;
|
|
231
257
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
232
258
|
fontWeight: string;
|
|
233
259
|
countTextColorDisabled: string;
|
|
@@ -289,7 +315,20 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
289
315
|
paddingMedium: string;
|
|
290
316
|
paddingLarge: string;
|
|
291
317
|
clearSize: string;
|
|
292
|
-
},
|
|
318
|
+
}, {
|
|
319
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
320
|
+
height: string;
|
|
321
|
+
width: string;
|
|
322
|
+
borderRadius: string;
|
|
323
|
+
color: string;
|
|
324
|
+
colorHover: string;
|
|
325
|
+
railInsetHorizontalBottom: string;
|
|
326
|
+
railInsetHorizontalTop: string;
|
|
327
|
+
railInsetVerticalRight: string;
|
|
328
|
+
railInsetVerticalLeft: string;
|
|
329
|
+
railColor: string;
|
|
330
|
+
}, any>;
|
|
331
|
+
}>>>;
|
|
293
332
|
}>> & Readonly<{}>, {
|
|
294
333
|
wrapperElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
295
334
|
inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
@@ -432,9 +471,26 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
432
471
|
paddingLarge: string;
|
|
433
472
|
clearSize: string;
|
|
434
473
|
};
|
|
435
|
-
peers:
|
|
474
|
+
peers: {
|
|
475
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
476
|
+
height: string;
|
|
477
|
+
width: string;
|
|
478
|
+
borderRadius: string;
|
|
479
|
+
color: string;
|
|
480
|
+
colorHover: string;
|
|
481
|
+
railInsetHorizontalBottom: string;
|
|
482
|
+
railInsetHorizontalTop: string;
|
|
483
|
+
railInsetVerticalRight: string;
|
|
484
|
+
railInsetVerticalLeft: string;
|
|
485
|
+
railColor: string;
|
|
486
|
+
}, any>;
|
|
487
|
+
};
|
|
436
488
|
peerOverrides: {
|
|
437
|
-
|
|
489
|
+
Scrollbar?: {
|
|
490
|
+
peers?: {
|
|
491
|
+
[x: string]: any;
|
|
492
|
+
} | undefined;
|
|
493
|
+
} | undefined;
|
|
438
494
|
};
|
|
439
495
|
}>;
|
|
440
496
|
cssVars: import('vue').ComputedRef<{
|
|
@@ -513,10 +569,10 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
513
569
|
clearable: boolean;
|
|
514
570
|
defaultValue: string | [string, string] | null;
|
|
515
571
|
resizable: boolean;
|
|
572
|
+
stateful: boolean;
|
|
516
573
|
pair: boolean;
|
|
517
574
|
rows: string | number;
|
|
518
575
|
passivelyActivated: boolean;
|
|
519
|
-
stateful: boolean;
|
|
520
576
|
showCount: boolean;
|
|
521
577
|
attrSize: number;
|
|
522
578
|
internalDeactivateOnEnter: boolean;
|
|
@@ -684,7 +740,20 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
684
740
|
paddingMedium: string;
|
|
685
741
|
paddingLarge: string;
|
|
686
742
|
clearSize: string;
|
|
687
|
-
},
|
|
743
|
+
}, {
|
|
744
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
745
|
+
height: string;
|
|
746
|
+
width: string;
|
|
747
|
+
borderRadius: string;
|
|
748
|
+
color: string;
|
|
749
|
+
colorHover: string;
|
|
750
|
+
railInsetHorizontalBottom: string;
|
|
751
|
+
railInsetHorizontalTop: string;
|
|
752
|
+
railInsetVerticalRight: string;
|
|
753
|
+
railInsetVerticalLeft: string;
|
|
754
|
+
railColor: string;
|
|
755
|
+
}, any>;
|
|
756
|
+
}>>;
|
|
688
757
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
689
758
|
fontWeight: string;
|
|
690
759
|
countTextColorDisabled: string;
|
|
@@ -746,7 +815,20 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
746
815
|
paddingMedium: string;
|
|
747
816
|
paddingLarge: string;
|
|
748
817
|
clearSize: string;
|
|
749
|
-
},
|
|
818
|
+
}, {
|
|
819
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
820
|
+
height: string;
|
|
821
|
+
width: string;
|
|
822
|
+
borderRadius: string;
|
|
823
|
+
color: string;
|
|
824
|
+
colorHover: string;
|
|
825
|
+
railInsetHorizontalBottom: string;
|
|
826
|
+
railInsetHorizontalTop: string;
|
|
827
|
+
railInsetVerticalRight: string;
|
|
828
|
+
railInsetVerticalLeft: string;
|
|
829
|
+
railColor: string;
|
|
830
|
+
}, any>;
|
|
831
|
+
}>>>;
|
|
750
832
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
751
833
|
fontWeight: string;
|
|
752
834
|
countTextColorDisabled: string;
|
|
@@ -808,7 +890,20 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
808
890
|
paddingMedium: string;
|
|
809
891
|
paddingLarge: string;
|
|
810
892
|
clearSize: string;
|
|
811
|
-
},
|
|
893
|
+
}, {
|
|
894
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
895
|
+
height: string;
|
|
896
|
+
width: string;
|
|
897
|
+
borderRadius: string;
|
|
898
|
+
color: string;
|
|
899
|
+
colorHover: string;
|
|
900
|
+
railInsetHorizontalBottom: string;
|
|
901
|
+
railInsetHorizontalTop: string;
|
|
902
|
+
railInsetVerticalRight: string;
|
|
903
|
+
railInsetVerticalLeft: string;
|
|
904
|
+
railColor: string;
|
|
905
|
+
}, any>;
|
|
906
|
+
}>>>;
|
|
812
907
|
}>> & Readonly<{}>, {
|
|
813
908
|
wrapperElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
814
909
|
inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
@@ -951,9 +1046,26 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
951
1046
|
paddingLarge: string;
|
|
952
1047
|
clearSize: string;
|
|
953
1048
|
};
|
|
954
|
-
peers:
|
|
1049
|
+
peers: {
|
|
1050
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1051
|
+
height: string;
|
|
1052
|
+
width: string;
|
|
1053
|
+
borderRadius: string;
|
|
1054
|
+
color: string;
|
|
1055
|
+
colorHover: string;
|
|
1056
|
+
railInsetHorizontalBottom: string;
|
|
1057
|
+
railInsetHorizontalTop: string;
|
|
1058
|
+
railInsetVerticalRight: string;
|
|
1059
|
+
railInsetVerticalLeft: string;
|
|
1060
|
+
railColor: string;
|
|
1061
|
+
}, any>;
|
|
1062
|
+
};
|
|
955
1063
|
peerOverrides: {
|
|
956
|
-
|
|
1064
|
+
Scrollbar?: {
|
|
1065
|
+
peers?: {
|
|
1066
|
+
[x: string]: any;
|
|
1067
|
+
} | undefined;
|
|
1068
|
+
} | undefined;
|
|
957
1069
|
};
|
|
958
1070
|
}>;
|
|
959
1071
|
cssVars: import('vue').ComputedRef<{
|
|
@@ -1032,10 +1144,10 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
1032
1144
|
clearable: boolean;
|
|
1033
1145
|
defaultValue: string | [string, string] | null;
|
|
1034
1146
|
resizable: boolean;
|
|
1147
|
+
stateful: boolean;
|
|
1035
1148
|
pair: boolean;
|
|
1036
1149
|
rows: string | number;
|
|
1037
1150
|
passivelyActivated: boolean;
|
|
1038
|
-
stateful: boolean;
|
|
1039
1151
|
showCount: boolean;
|
|
1040
1152
|
attrSize: number;
|
|
1041
1153
|
internalDeactivateOnEnter: boolean;
|