@pitcher/js-api 1.26.0-beta.7 → 1.26.0-beta.8
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/impact-js-api.spec.json +9 -0
- package/js-api.esm.js +64 -1
- package/js-api.esm.js.map +1 -1
- package/js-api.umd.min.js +9 -9
- package/js-api.umd.min.js.map +1 -1
- package/lib/apps/agenda-selector/components/modals/ApplicationBlockSelectorModal.vue.d.ts +148 -36
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModal.vue.d.ts +2 -2
- package/lib/apps/canvas-builder/components/container/AddComponentModal/AddComponentModal.vue.d.ts +148 -36
- package/lib/apps/canvas-builder/components/container/CanvasContent/CanvasContent.vue.d.ts +2 -2
- package/lib/apps/canvas-builder/components/container/Navigator/Navigator.vue.d.ts +162 -37
- package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.settings.vue.d.ts +2 -2
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridCarousel.vue.d.ts +20 -20
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.settings.vue.d.ts +4 -4
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.settings.vue.d.ts +2 -2
- package/lib/apps/canvas-builder/components/ui/Link/Link.settings.vue.d.ts +2 -2
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.settings.vue.d.ts +2 -2
- package/lib/apps/canvas-builder/components/ui/Page/Page.settings.vue.d.ts +2 -2
- package/lib/apps/canvas-builder/components/ui/Root/Root.settings.vue.d.ts +2 -2
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorToolbar.vue.d.ts +12 -0
- package/lib/apps/canvas-builder/composables/useCanvas.d.ts +12 -0
- package/lib/apps/canvas-builder/composables/usePopupApps.d.ts +2 -0
- package/lib/apps/content-selector/components/Assets.vue.d.ts +2 -2
- package/lib/apps/content-selector/components/Content.vue.d.ts +2 -2
- package/lib/components/CCarousel/CCarousel.vue.d.ts +98 -20
- package/lib/components/CConfigEditor/CConfigEditor.vue.d.ts +2 -2
- package/lib/components/CContactSelector/CContactSelectorAccountsWithContacts.vue.d.ts +3 -3
- package/lib/components/CCreateTemplateSectionBlockModal/CCreateTemplateSectionBlockModal.vue.d.ts +2 -2
- package/lib/components/CCreateThemeModal/steps/CThemeSettingsStep.vue.d.ts +10 -8
- package/lib/components/CDataTable/CDataTable.vue.d.ts +876 -100
- package/lib/components/CFileViewer/pdf/CFileViewerPageDrawer.pdf.vue.d.ts +2 -2
- package/lib/components/CImage/CImage.vue.d.ts +99 -20
- package/lib/components/CInput/CInput.vue.d.ts +148 -36
- package/lib/components/CRichTextEditor/components/CDynamicValueTreeSelect.vue.d.ts +288 -80
- package/lib/components/CRichTextEditor/components/CFormatterWithFieldSelect.vue.d.ts +468 -130
- package/lib/components/CRichTextEditor/components/CHandlebarsHelperTreeSelect.vue.d.ts +288 -80
- package/lib/components/CRichTextEditor/components/CHyperLinkToolbar.vue.d.ts +148 -36
- package/lib/components/CTableInput/CTableInput.vue.d.ts +296 -72
- package/lib/components/CTableTag/CTableTag.vue.d.ts +290 -38
- package/lib/components/CTags/CTags.vue.d.ts +290 -38
- package/lib/components/CUpsertFolderModal/CUpsertFolderModal.vue.d.ts +2 -2
- package/lib/components/CUserMenu/CUserMenu.vue.d.ts +108 -30
- package/lib/components/savedCanvases/CSavedCanvasesManagementOwnerCell.vue.d.ts +176 -46
- package/lib/constants/cdp.const.d.ts +3 -0
- package/lib/sdk/api/HighLevelApi.d.ts +3 -0
- package/lib/sdk/api/modules/query.d.ts +75 -2
- package/lib/sdk/main.d.ts +9 -0
- package/lib/sdk/payload.types.d.ts +51 -0
- package/lib/sdk/peer-connectivity/peerConnectivity.constants.d.ts +1 -0
- package/lib/theme/light.d.ts +113 -8
- package/lib/types/app.d.ts +7 -0
- package/lib/types/launchDarkly.types.d.ts +1 -1
- package/lib/types/organizationSettings.types.d.ts +3 -0
- package/package.json +1 -1
|
@@ -57,7 +57,7 @@ declare function __VLS_template(): {
|
|
|
57
57
|
pair: BooleanConstructor;
|
|
58
58
|
separator: StringConstructor;
|
|
59
59
|
readonly: {
|
|
60
|
-
type: (
|
|
60
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
61
61
|
default: boolean;
|
|
62
62
|
};
|
|
63
63
|
passivelyActivated: BooleanConstructor;
|
|
@@ -173,7 +173,20 @@ declare function __VLS_template(): {
|
|
|
173
173
|
paddingMedium: string;
|
|
174
174
|
paddingLarge: string;
|
|
175
175
|
clearSize: string;
|
|
176
|
-
},
|
|
176
|
+
}, {
|
|
177
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
178
|
+
height: string;
|
|
179
|
+
width: string;
|
|
180
|
+
borderRadius: string;
|
|
181
|
+
color: string;
|
|
182
|
+
colorHover: string;
|
|
183
|
+
railInsetHorizontalBottom: string;
|
|
184
|
+
railInsetHorizontalTop: string;
|
|
185
|
+
railInsetVerticalRight: string;
|
|
186
|
+
railInsetVerticalLeft: string;
|
|
187
|
+
railColor: string;
|
|
188
|
+
}, any>;
|
|
189
|
+
}>>;
|
|
177
190
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
178
191
|
fontWeight: string;
|
|
179
192
|
countTextColorDisabled: string;
|
|
@@ -235,7 +248,20 @@ declare function __VLS_template(): {
|
|
|
235
248
|
paddingMedium: string;
|
|
236
249
|
paddingLarge: string;
|
|
237
250
|
clearSize: string;
|
|
238
|
-
},
|
|
251
|
+
}, {
|
|
252
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
253
|
+
height: string;
|
|
254
|
+
width: string;
|
|
255
|
+
borderRadius: string;
|
|
256
|
+
color: string;
|
|
257
|
+
colorHover: string;
|
|
258
|
+
railInsetHorizontalBottom: string;
|
|
259
|
+
railInsetHorizontalTop: string;
|
|
260
|
+
railInsetVerticalRight: string;
|
|
261
|
+
railInsetVerticalLeft: string;
|
|
262
|
+
railColor: string;
|
|
263
|
+
}, any>;
|
|
264
|
+
}>>>;
|
|
239
265
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
240
266
|
fontWeight: string;
|
|
241
267
|
countTextColorDisabled: string;
|
|
@@ -297,7 +323,20 @@ declare function __VLS_template(): {
|
|
|
297
323
|
paddingMedium: string;
|
|
298
324
|
paddingLarge: string;
|
|
299
325
|
clearSize: string;
|
|
300
|
-
},
|
|
326
|
+
}, {
|
|
327
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
328
|
+
height: string;
|
|
329
|
+
width: string;
|
|
330
|
+
borderRadius: string;
|
|
331
|
+
color: string;
|
|
332
|
+
colorHover: string;
|
|
333
|
+
railInsetHorizontalBottom: string;
|
|
334
|
+
railInsetHorizontalTop: string;
|
|
335
|
+
railInsetVerticalRight: string;
|
|
336
|
+
railInsetVerticalLeft: string;
|
|
337
|
+
railColor: string;
|
|
338
|
+
}, any>;
|
|
339
|
+
}>>>;
|
|
301
340
|
}>> & Readonly<{}>, {
|
|
302
341
|
wrapperElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
303
342
|
inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
@@ -332,14 +371,14 @@ declare function __VLS_template(): {
|
|
|
332
371
|
uncontrolledValue: import('vue').Ref<string | [string, string] | null, string | [string, string] | null>;
|
|
333
372
|
mergedValue: import('vue').ComputedRef<string | [string, string] | null>;
|
|
334
373
|
passwordVisible: import('vue').Ref<boolean, boolean>;
|
|
335
|
-
mergedPlaceholder: import('vue').ComputedRef<[string] | [string
|
|
374
|
+
mergedPlaceholder: import('vue').ComputedRef<[string, string] | [string]>;
|
|
336
375
|
showPlaceholder1: import('vue').ComputedRef<string | false>;
|
|
337
376
|
showPlaceholder2: import('vue').ComputedRef<boolean | "" | undefined>;
|
|
338
377
|
mergedFocus: import('vue').ComputedRef<boolean>;
|
|
339
378
|
isComposing: import('vue').Ref<boolean, boolean>;
|
|
340
379
|
activated: import('vue').Ref<boolean, boolean>;
|
|
341
380
|
showClearButton: import('vue').ComputedRef<boolean>;
|
|
342
|
-
mergedSize: import('vue').ComputedRef<"
|
|
381
|
+
mergedSize: import('vue').ComputedRef<"tiny" | "small" | "medium" | "large">;
|
|
343
382
|
mergedDisabled: import('vue').ComputedRef<boolean>;
|
|
344
383
|
textDecorationStyle: import('vue').ComputedRef<string[] | {
|
|
345
384
|
textDecoration: string;
|
|
@@ -440,9 +479,26 @@ declare function __VLS_template(): {
|
|
|
440
479
|
paddingLarge: string;
|
|
441
480
|
clearSize: string;
|
|
442
481
|
};
|
|
443
|
-
peers:
|
|
482
|
+
peers: {
|
|
483
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
484
|
+
height: string;
|
|
485
|
+
width: string;
|
|
486
|
+
borderRadius: string;
|
|
487
|
+
color: string;
|
|
488
|
+
colorHover: string;
|
|
489
|
+
railInsetHorizontalBottom: string;
|
|
490
|
+
railInsetHorizontalTop: string;
|
|
491
|
+
railInsetVerticalRight: string;
|
|
492
|
+
railInsetVerticalLeft: string;
|
|
493
|
+
railColor: string;
|
|
494
|
+
}, any>;
|
|
495
|
+
};
|
|
444
496
|
peerOverrides: {
|
|
445
|
-
|
|
497
|
+
Scrollbar?: {
|
|
498
|
+
peers?: {
|
|
499
|
+
[x: string]: any;
|
|
500
|
+
} | undefined;
|
|
501
|
+
} | undefined;
|
|
446
502
|
};
|
|
447
503
|
}>;
|
|
448
504
|
cssVars: import('vue').ComputedRef<{
|
|
@@ -507,24 +563,24 @@ declare function __VLS_template(): {
|
|
|
507
563
|
deactivate: () => void;
|
|
508
564
|
scrollTo: (options: ScrollToOptions) => void;
|
|
509
565
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
510
|
-
type: "textarea" | "text" | "password";
|
|
511
|
-
readonly: string | boolean;
|
|
512
566
|
disabled: boolean | undefined;
|
|
513
|
-
|
|
514
|
-
autofocus: boolean;
|
|
515
|
-
loading: boolean;
|
|
516
|
-
autosize: boolean | {
|
|
517
|
-
minRows?: number;
|
|
518
|
-
maxRows?: number;
|
|
519
|
-
};
|
|
567
|
+
type: "text" | "textarea" | "password";
|
|
520
568
|
bordered: boolean | undefined;
|
|
521
569
|
clearable: boolean;
|
|
522
570
|
defaultValue: string | [string, string] | null;
|
|
571
|
+
loading: boolean;
|
|
572
|
+
round: boolean;
|
|
523
573
|
resizable: boolean;
|
|
574
|
+
stateful: boolean;
|
|
524
575
|
pair: boolean;
|
|
525
576
|
rows: string | number;
|
|
577
|
+
autosize: boolean | {
|
|
578
|
+
minRows?: number;
|
|
579
|
+
maxRows?: number;
|
|
580
|
+
};
|
|
581
|
+
readonly: string | boolean;
|
|
526
582
|
passivelyActivated: boolean;
|
|
527
|
-
|
|
583
|
+
autofocus: boolean;
|
|
528
584
|
showCount: boolean;
|
|
529
585
|
attrSize: number;
|
|
530
586
|
internalDeactivateOnEnter: boolean;
|
|
@@ -576,7 +632,7 @@ declare function __VLS_template(): {
|
|
|
576
632
|
pair: BooleanConstructor;
|
|
577
633
|
separator: StringConstructor;
|
|
578
634
|
readonly: {
|
|
579
|
-
type: (
|
|
635
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
580
636
|
default: boolean;
|
|
581
637
|
};
|
|
582
638
|
passivelyActivated: BooleanConstructor;
|
|
@@ -692,7 +748,20 @@ declare function __VLS_template(): {
|
|
|
692
748
|
paddingMedium: string;
|
|
693
749
|
paddingLarge: string;
|
|
694
750
|
clearSize: string;
|
|
695
|
-
},
|
|
751
|
+
}, {
|
|
752
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
753
|
+
height: string;
|
|
754
|
+
width: string;
|
|
755
|
+
borderRadius: string;
|
|
756
|
+
color: string;
|
|
757
|
+
colorHover: string;
|
|
758
|
+
railInsetHorizontalBottom: string;
|
|
759
|
+
railInsetHorizontalTop: string;
|
|
760
|
+
railInsetVerticalRight: string;
|
|
761
|
+
railInsetVerticalLeft: string;
|
|
762
|
+
railColor: string;
|
|
763
|
+
}, any>;
|
|
764
|
+
}>>;
|
|
696
765
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
697
766
|
fontWeight: string;
|
|
698
767
|
countTextColorDisabled: string;
|
|
@@ -754,7 +823,20 @@ declare function __VLS_template(): {
|
|
|
754
823
|
paddingMedium: string;
|
|
755
824
|
paddingLarge: string;
|
|
756
825
|
clearSize: string;
|
|
757
|
-
},
|
|
826
|
+
}, {
|
|
827
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
828
|
+
height: string;
|
|
829
|
+
width: string;
|
|
830
|
+
borderRadius: string;
|
|
831
|
+
color: string;
|
|
832
|
+
colorHover: string;
|
|
833
|
+
railInsetHorizontalBottom: string;
|
|
834
|
+
railInsetHorizontalTop: string;
|
|
835
|
+
railInsetVerticalRight: string;
|
|
836
|
+
railInsetVerticalLeft: string;
|
|
837
|
+
railColor: string;
|
|
838
|
+
}, any>;
|
|
839
|
+
}>>>;
|
|
758
840
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
759
841
|
fontWeight: string;
|
|
760
842
|
countTextColorDisabled: string;
|
|
@@ -816,7 +898,20 @@ declare function __VLS_template(): {
|
|
|
816
898
|
paddingMedium: string;
|
|
817
899
|
paddingLarge: string;
|
|
818
900
|
clearSize: string;
|
|
819
|
-
},
|
|
901
|
+
}, {
|
|
902
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
903
|
+
height: string;
|
|
904
|
+
width: string;
|
|
905
|
+
borderRadius: string;
|
|
906
|
+
color: string;
|
|
907
|
+
colorHover: string;
|
|
908
|
+
railInsetHorizontalBottom: string;
|
|
909
|
+
railInsetHorizontalTop: string;
|
|
910
|
+
railInsetVerticalRight: string;
|
|
911
|
+
railInsetVerticalLeft: string;
|
|
912
|
+
railColor: string;
|
|
913
|
+
}, any>;
|
|
914
|
+
}>>>;
|
|
820
915
|
}>> & Readonly<{}>, {
|
|
821
916
|
wrapperElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
822
917
|
inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
@@ -851,14 +946,14 @@ declare function __VLS_template(): {
|
|
|
851
946
|
uncontrolledValue: import('vue').Ref<string | [string, string] | null, string | [string, string] | null>;
|
|
852
947
|
mergedValue: import('vue').ComputedRef<string | [string, string] | null>;
|
|
853
948
|
passwordVisible: import('vue').Ref<boolean, boolean>;
|
|
854
|
-
mergedPlaceholder: import('vue').ComputedRef<[string] | [string
|
|
949
|
+
mergedPlaceholder: import('vue').ComputedRef<[string, string] | [string]>;
|
|
855
950
|
showPlaceholder1: import('vue').ComputedRef<string | false>;
|
|
856
951
|
showPlaceholder2: import('vue').ComputedRef<boolean | "" | undefined>;
|
|
857
952
|
mergedFocus: import('vue').ComputedRef<boolean>;
|
|
858
953
|
isComposing: import('vue').Ref<boolean, boolean>;
|
|
859
954
|
activated: import('vue').Ref<boolean, boolean>;
|
|
860
955
|
showClearButton: import('vue').ComputedRef<boolean>;
|
|
861
|
-
mergedSize: import('vue').ComputedRef<"
|
|
956
|
+
mergedSize: import('vue').ComputedRef<"tiny" | "small" | "medium" | "large">;
|
|
862
957
|
mergedDisabled: import('vue').ComputedRef<boolean>;
|
|
863
958
|
textDecorationStyle: import('vue').ComputedRef<string[] | {
|
|
864
959
|
textDecoration: string;
|
|
@@ -959,9 +1054,26 @@ declare function __VLS_template(): {
|
|
|
959
1054
|
paddingLarge: string;
|
|
960
1055
|
clearSize: string;
|
|
961
1056
|
};
|
|
962
|
-
peers:
|
|
1057
|
+
peers: {
|
|
1058
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1059
|
+
height: string;
|
|
1060
|
+
width: string;
|
|
1061
|
+
borderRadius: string;
|
|
1062
|
+
color: string;
|
|
1063
|
+
colorHover: string;
|
|
1064
|
+
railInsetHorizontalBottom: string;
|
|
1065
|
+
railInsetHorizontalTop: string;
|
|
1066
|
+
railInsetVerticalRight: string;
|
|
1067
|
+
railInsetVerticalLeft: string;
|
|
1068
|
+
railColor: string;
|
|
1069
|
+
}, any>;
|
|
1070
|
+
};
|
|
963
1071
|
peerOverrides: {
|
|
964
|
-
|
|
1072
|
+
Scrollbar?: {
|
|
1073
|
+
peers?: {
|
|
1074
|
+
[x: string]: any;
|
|
1075
|
+
} | undefined;
|
|
1076
|
+
} | undefined;
|
|
965
1077
|
};
|
|
966
1078
|
}>;
|
|
967
1079
|
cssVars: import('vue').ComputedRef<{
|
|
@@ -1026,24 +1138,24 @@ declare function __VLS_template(): {
|
|
|
1026
1138
|
deactivate: () => void;
|
|
1027
1139
|
scrollTo: (options: ScrollToOptions) => void;
|
|
1028
1140
|
}, {}, {}, {}, {
|
|
1029
|
-
type: "textarea" | "text" | "password";
|
|
1030
|
-
readonly: string | boolean;
|
|
1031
1141
|
disabled: boolean | undefined;
|
|
1032
|
-
|
|
1033
|
-
autofocus: boolean;
|
|
1034
|
-
loading: boolean;
|
|
1035
|
-
autosize: boolean | {
|
|
1036
|
-
minRows?: number;
|
|
1037
|
-
maxRows?: number;
|
|
1038
|
-
};
|
|
1142
|
+
type: "text" | "textarea" | "password";
|
|
1039
1143
|
bordered: boolean | undefined;
|
|
1040
1144
|
clearable: boolean;
|
|
1041
1145
|
defaultValue: string | [string, string] | null;
|
|
1146
|
+
loading: boolean;
|
|
1147
|
+
round: boolean;
|
|
1042
1148
|
resizable: boolean;
|
|
1149
|
+
stateful: boolean;
|
|
1043
1150
|
pair: boolean;
|
|
1044
1151
|
rows: string | number;
|
|
1152
|
+
autosize: boolean | {
|
|
1153
|
+
minRows?: number;
|
|
1154
|
+
maxRows?: number;
|
|
1155
|
+
};
|
|
1156
|
+
readonly: string | boolean;
|
|
1045
1157
|
passivelyActivated: boolean;
|
|
1046
|
-
|
|
1158
|
+
autofocus: boolean;
|
|
1047
1159
|
showCount: boolean;
|
|
1048
1160
|
attrSize: number;
|
|
1049
1161
|
internalDeactivateOnEnter: boolean;
|
|
@@ -1109,7 +1221,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1109
1221
|
pair: BooleanConstructor;
|
|
1110
1222
|
separator: StringConstructor;
|
|
1111
1223
|
readonly: {
|
|
1112
|
-
type: (
|
|
1224
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
1113
1225
|
default: boolean;
|
|
1114
1226
|
};
|
|
1115
1227
|
passivelyActivated: BooleanConstructor;
|
|
@@ -1225,7 +1337,20 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1225
1337
|
paddingMedium: string;
|
|
1226
1338
|
paddingLarge: string;
|
|
1227
1339
|
clearSize: string;
|
|
1228
|
-
},
|
|
1340
|
+
}, {
|
|
1341
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1342
|
+
height: string;
|
|
1343
|
+
width: string;
|
|
1344
|
+
borderRadius: string;
|
|
1345
|
+
color: string;
|
|
1346
|
+
colorHover: string;
|
|
1347
|
+
railInsetHorizontalBottom: string;
|
|
1348
|
+
railInsetHorizontalTop: string;
|
|
1349
|
+
railInsetVerticalRight: string;
|
|
1350
|
+
railInsetVerticalLeft: string;
|
|
1351
|
+
railColor: string;
|
|
1352
|
+
}, any>;
|
|
1353
|
+
}>>;
|
|
1229
1354
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
1230
1355
|
fontWeight: string;
|
|
1231
1356
|
countTextColorDisabled: string;
|
|
@@ -1287,7 +1412,20 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1287
1412
|
paddingMedium: string;
|
|
1288
1413
|
paddingLarge: string;
|
|
1289
1414
|
clearSize: string;
|
|
1290
|
-
},
|
|
1415
|
+
}, {
|
|
1416
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1417
|
+
height: string;
|
|
1418
|
+
width: string;
|
|
1419
|
+
borderRadius: string;
|
|
1420
|
+
color: string;
|
|
1421
|
+
colorHover: string;
|
|
1422
|
+
railInsetHorizontalBottom: string;
|
|
1423
|
+
railInsetHorizontalTop: string;
|
|
1424
|
+
railInsetVerticalRight: string;
|
|
1425
|
+
railInsetVerticalLeft: string;
|
|
1426
|
+
railColor: string;
|
|
1427
|
+
}, any>;
|
|
1428
|
+
}>>>;
|
|
1291
1429
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
1292
1430
|
fontWeight: string;
|
|
1293
1431
|
countTextColorDisabled: string;
|
|
@@ -1349,7 +1487,20 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1349
1487
|
paddingMedium: string;
|
|
1350
1488
|
paddingLarge: string;
|
|
1351
1489
|
clearSize: string;
|
|
1352
|
-
},
|
|
1490
|
+
}, {
|
|
1491
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1492
|
+
height: string;
|
|
1493
|
+
width: string;
|
|
1494
|
+
borderRadius: string;
|
|
1495
|
+
color: string;
|
|
1496
|
+
colorHover: string;
|
|
1497
|
+
railInsetHorizontalBottom: string;
|
|
1498
|
+
railInsetHorizontalTop: string;
|
|
1499
|
+
railInsetVerticalRight: string;
|
|
1500
|
+
railInsetVerticalLeft: string;
|
|
1501
|
+
railColor: string;
|
|
1502
|
+
}, any>;
|
|
1503
|
+
}>>>;
|
|
1353
1504
|
}>> & Readonly<{}>, {
|
|
1354
1505
|
wrapperElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
1355
1506
|
inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
@@ -1384,14 +1535,14 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1384
1535
|
uncontrolledValue: import('vue').Ref<string | [string, string] | null, string | [string, string] | null>;
|
|
1385
1536
|
mergedValue: import('vue').ComputedRef<string | [string, string] | null>;
|
|
1386
1537
|
passwordVisible: import('vue').Ref<boolean, boolean>;
|
|
1387
|
-
mergedPlaceholder: import('vue').ComputedRef<[string] | [string
|
|
1538
|
+
mergedPlaceholder: import('vue').ComputedRef<[string, string] | [string]>;
|
|
1388
1539
|
showPlaceholder1: import('vue').ComputedRef<string | false>;
|
|
1389
1540
|
showPlaceholder2: import('vue').ComputedRef<boolean | "" | undefined>;
|
|
1390
1541
|
mergedFocus: import('vue').ComputedRef<boolean>;
|
|
1391
1542
|
isComposing: import('vue').Ref<boolean, boolean>;
|
|
1392
1543
|
activated: import('vue').Ref<boolean, boolean>;
|
|
1393
1544
|
showClearButton: import('vue').ComputedRef<boolean>;
|
|
1394
|
-
mergedSize: import('vue').ComputedRef<"
|
|
1545
|
+
mergedSize: import('vue').ComputedRef<"tiny" | "small" | "medium" | "large">;
|
|
1395
1546
|
mergedDisabled: import('vue').ComputedRef<boolean>;
|
|
1396
1547
|
textDecorationStyle: import('vue').ComputedRef<string[] | {
|
|
1397
1548
|
textDecoration: string;
|
|
@@ -1492,9 +1643,26 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1492
1643
|
paddingLarge: string;
|
|
1493
1644
|
clearSize: string;
|
|
1494
1645
|
};
|
|
1495
|
-
peers:
|
|
1646
|
+
peers: {
|
|
1647
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1648
|
+
height: string;
|
|
1649
|
+
width: string;
|
|
1650
|
+
borderRadius: string;
|
|
1651
|
+
color: string;
|
|
1652
|
+
colorHover: string;
|
|
1653
|
+
railInsetHorizontalBottom: string;
|
|
1654
|
+
railInsetHorizontalTop: string;
|
|
1655
|
+
railInsetVerticalRight: string;
|
|
1656
|
+
railInsetVerticalLeft: string;
|
|
1657
|
+
railColor: string;
|
|
1658
|
+
}, any>;
|
|
1659
|
+
};
|
|
1496
1660
|
peerOverrides: {
|
|
1497
|
-
|
|
1661
|
+
Scrollbar?: {
|
|
1662
|
+
peers?: {
|
|
1663
|
+
[x: string]: any;
|
|
1664
|
+
} | undefined;
|
|
1665
|
+
} | undefined;
|
|
1498
1666
|
};
|
|
1499
1667
|
}>;
|
|
1500
1668
|
cssVars: import('vue').ComputedRef<{
|
|
@@ -1559,24 +1727,24 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1559
1727
|
deactivate: () => void;
|
|
1560
1728
|
scrollTo: (options: ScrollToOptions) => void;
|
|
1561
1729
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
1562
|
-
type: "textarea" | "text" | "password";
|
|
1563
|
-
readonly: string | boolean;
|
|
1564
1730
|
disabled: boolean | undefined;
|
|
1565
|
-
|
|
1566
|
-
autofocus: boolean;
|
|
1567
|
-
loading: boolean;
|
|
1568
|
-
autosize: boolean | {
|
|
1569
|
-
minRows?: number;
|
|
1570
|
-
maxRows?: number;
|
|
1571
|
-
};
|
|
1731
|
+
type: "text" | "textarea" | "password";
|
|
1572
1732
|
bordered: boolean | undefined;
|
|
1573
1733
|
clearable: boolean;
|
|
1574
1734
|
defaultValue: string | [string, string] | null;
|
|
1735
|
+
loading: boolean;
|
|
1736
|
+
round: boolean;
|
|
1575
1737
|
resizable: boolean;
|
|
1738
|
+
stateful: boolean;
|
|
1576
1739
|
pair: boolean;
|
|
1577
1740
|
rows: string | number;
|
|
1741
|
+
autosize: boolean | {
|
|
1742
|
+
minRows?: number;
|
|
1743
|
+
maxRows?: number;
|
|
1744
|
+
};
|
|
1745
|
+
readonly: string | boolean;
|
|
1578
1746
|
passivelyActivated: boolean;
|
|
1579
|
-
|
|
1747
|
+
autofocus: boolean;
|
|
1580
1748
|
showCount: boolean;
|
|
1581
1749
|
attrSize: number;
|
|
1582
1750
|
internalDeactivateOnEnter: boolean;
|
|
@@ -1628,7 +1796,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1628
1796
|
pair: BooleanConstructor;
|
|
1629
1797
|
separator: StringConstructor;
|
|
1630
1798
|
readonly: {
|
|
1631
|
-
type: (
|
|
1799
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
1632
1800
|
default: boolean;
|
|
1633
1801
|
};
|
|
1634
1802
|
passivelyActivated: BooleanConstructor;
|
|
@@ -1744,7 +1912,20 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1744
1912
|
paddingMedium: string;
|
|
1745
1913
|
paddingLarge: string;
|
|
1746
1914
|
clearSize: string;
|
|
1747
|
-
},
|
|
1915
|
+
}, {
|
|
1916
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1917
|
+
height: string;
|
|
1918
|
+
width: string;
|
|
1919
|
+
borderRadius: string;
|
|
1920
|
+
color: string;
|
|
1921
|
+
colorHover: string;
|
|
1922
|
+
railInsetHorizontalBottom: string;
|
|
1923
|
+
railInsetHorizontalTop: string;
|
|
1924
|
+
railInsetVerticalRight: string;
|
|
1925
|
+
railInsetVerticalLeft: string;
|
|
1926
|
+
railColor: string;
|
|
1927
|
+
}, any>;
|
|
1928
|
+
}>>;
|
|
1748
1929
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
1749
1930
|
fontWeight: string;
|
|
1750
1931
|
countTextColorDisabled: string;
|
|
@@ -1806,7 +1987,20 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1806
1987
|
paddingMedium: string;
|
|
1807
1988
|
paddingLarge: string;
|
|
1808
1989
|
clearSize: string;
|
|
1809
|
-
},
|
|
1990
|
+
}, {
|
|
1991
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1992
|
+
height: string;
|
|
1993
|
+
width: string;
|
|
1994
|
+
borderRadius: string;
|
|
1995
|
+
color: string;
|
|
1996
|
+
colorHover: string;
|
|
1997
|
+
railInsetHorizontalBottom: string;
|
|
1998
|
+
railInsetHorizontalTop: string;
|
|
1999
|
+
railInsetVerticalRight: string;
|
|
2000
|
+
railInsetVerticalLeft: string;
|
|
2001
|
+
railColor: string;
|
|
2002
|
+
}, any>;
|
|
2003
|
+
}>>>;
|
|
1810
2004
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
1811
2005
|
fontWeight: string;
|
|
1812
2006
|
countTextColorDisabled: string;
|
|
@@ -1868,7 +2062,20 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1868
2062
|
paddingMedium: string;
|
|
1869
2063
|
paddingLarge: string;
|
|
1870
2064
|
clearSize: string;
|
|
1871
|
-
},
|
|
2065
|
+
}, {
|
|
2066
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
2067
|
+
height: string;
|
|
2068
|
+
width: string;
|
|
2069
|
+
borderRadius: string;
|
|
2070
|
+
color: string;
|
|
2071
|
+
colorHover: string;
|
|
2072
|
+
railInsetHorizontalBottom: string;
|
|
2073
|
+
railInsetHorizontalTop: string;
|
|
2074
|
+
railInsetVerticalRight: string;
|
|
2075
|
+
railInsetVerticalLeft: string;
|
|
2076
|
+
railColor: string;
|
|
2077
|
+
}, any>;
|
|
2078
|
+
}>>>;
|
|
1872
2079
|
}>> & Readonly<{}>, {
|
|
1873
2080
|
wrapperElRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
1874
2081
|
inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
@@ -1903,14 +2110,14 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1903
2110
|
uncontrolledValue: import('vue').Ref<string | [string, string] | null, string | [string, string] | null>;
|
|
1904
2111
|
mergedValue: import('vue').ComputedRef<string | [string, string] | null>;
|
|
1905
2112
|
passwordVisible: import('vue').Ref<boolean, boolean>;
|
|
1906
|
-
mergedPlaceholder: import('vue').ComputedRef<[string] | [string
|
|
2113
|
+
mergedPlaceholder: import('vue').ComputedRef<[string, string] | [string]>;
|
|
1907
2114
|
showPlaceholder1: import('vue').ComputedRef<string | false>;
|
|
1908
2115
|
showPlaceholder2: import('vue').ComputedRef<boolean | "" | undefined>;
|
|
1909
2116
|
mergedFocus: import('vue').ComputedRef<boolean>;
|
|
1910
2117
|
isComposing: import('vue').Ref<boolean, boolean>;
|
|
1911
2118
|
activated: import('vue').Ref<boolean, boolean>;
|
|
1912
2119
|
showClearButton: import('vue').ComputedRef<boolean>;
|
|
1913
|
-
mergedSize: import('vue').ComputedRef<"
|
|
2120
|
+
mergedSize: import('vue').ComputedRef<"tiny" | "small" | "medium" | "large">;
|
|
1914
2121
|
mergedDisabled: import('vue').ComputedRef<boolean>;
|
|
1915
2122
|
textDecorationStyle: import('vue').ComputedRef<string[] | {
|
|
1916
2123
|
textDecoration: string;
|
|
@@ -2011,9 +2218,26 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
2011
2218
|
paddingLarge: string;
|
|
2012
2219
|
clearSize: string;
|
|
2013
2220
|
};
|
|
2014
|
-
peers:
|
|
2221
|
+
peers: {
|
|
2222
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
2223
|
+
height: string;
|
|
2224
|
+
width: string;
|
|
2225
|
+
borderRadius: string;
|
|
2226
|
+
color: string;
|
|
2227
|
+
colorHover: string;
|
|
2228
|
+
railInsetHorizontalBottom: string;
|
|
2229
|
+
railInsetHorizontalTop: string;
|
|
2230
|
+
railInsetVerticalRight: string;
|
|
2231
|
+
railInsetVerticalLeft: string;
|
|
2232
|
+
railColor: string;
|
|
2233
|
+
}, any>;
|
|
2234
|
+
};
|
|
2015
2235
|
peerOverrides: {
|
|
2016
|
-
|
|
2236
|
+
Scrollbar?: {
|
|
2237
|
+
peers?: {
|
|
2238
|
+
[x: string]: any;
|
|
2239
|
+
} | undefined;
|
|
2240
|
+
} | undefined;
|
|
2017
2241
|
};
|
|
2018
2242
|
}>;
|
|
2019
2243
|
cssVars: import('vue').ComputedRef<{
|
|
@@ -2078,24 +2302,24 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
2078
2302
|
deactivate: () => void;
|
|
2079
2303
|
scrollTo: (options: ScrollToOptions) => void;
|
|
2080
2304
|
}, {}, {}, {}, {
|
|
2081
|
-
type: "textarea" | "text" | "password";
|
|
2082
|
-
readonly: string | boolean;
|
|
2083
2305
|
disabled: boolean | undefined;
|
|
2084
|
-
|
|
2085
|
-
autofocus: boolean;
|
|
2086
|
-
loading: boolean;
|
|
2087
|
-
autosize: boolean | {
|
|
2088
|
-
minRows?: number;
|
|
2089
|
-
maxRows?: number;
|
|
2090
|
-
};
|
|
2306
|
+
type: "text" | "textarea" | "password";
|
|
2091
2307
|
bordered: boolean | undefined;
|
|
2092
2308
|
clearable: boolean;
|
|
2093
2309
|
defaultValue: string | [string, string] | null;
|
|
2310
|
+
loading: boolean;
|
|
2311
|
+
round: boolean;
|
|
2094
2312
|
resizable: boolean;
|
|
2313
|
+
stateful: boolean;
|
|
2095
2314
|
pair: boolean;
|
|
2096
2315
|
rows: string | number;
|
|
2316
|
+
autosize: boolean | {
|
|
2317
|
+
minRows?: number;
|
|
2318
|
+
maxRows?: number;
|
|
2319
|
+
};
|
|
2320
|
+
readonly: string | boolean;
|
|
2097
2321
|
passivelyActivated: boolean;
|
|
2098
|
-
|
|
2322
|
+
autofocus: boolean;
|
|
2099
2323
|
showCount: boolean;
|
|
2100
2324
|
attrSize: number;
|
|
2101
2325
|
internalDeactivateOnEnter: boolean;
|