@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.
Files changed (53) hide show
  1. package/impact-js-api.spec.json +9 -0
  2. package/js-api.esm.js +64 -1
  3. package/js-api.esm.js.map +1 -1
  4. package/js-api.umd.min.js +9 -9
  5. package/js-api.umd.min.js.map +1 -1
  6. package/lib/apps/agenda-selector/components/modals/ApplicationBlockSelectorModal.vue.d.ts +148 -36
  7. package/lib/apps/browser/components/UploadFilesModal/UploadFilesModal.vue.d.ts +2 -2
  8. package/lib/apps/canvas-builder/components/container/AddComponentModal/AddComponentModal.vue.d.ts +148 -36
  9. package/lib/apps/canvas-builder/components/container/CanvasContent/CanvasContent.vue.d.ts +2 -2
  10. package/lib/apps/canvas-builder/components/container/Navigator/Navigator.vue.d.ts +162 -37
  11. package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.settings.vue.d.ts +2 -2
  12. package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridCarousel.vue.d.ts +20 -20
  13. package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.settings.vue.d.ts +4 -4
  14. package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.settings.vue.d.ts +2 -2
  15. package/lib/apps/canvas-builder/components/ui/Link/Link.settings.vue.d.ts +2 -2
  16. package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.settings.vue.d.ts +2 -2
  17. package/lib/apps/canvas-builder/components/ui/Page/Page.settings.vue.d.ts +2 -2
  18. package/lib/apps/canvas-builder/components/ui/Root/Root.settings.vue.d.ts +2 -2
  19. package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorToolbar.vue.d.ts +12 -0
  20. package/lib/apps/canvas-builder/composables/useCanvas.d.ts +12 -0
  21. package/lib/apps/canvas-builder/composables/usePopupApps.d.ts +2 -0
  22. package/lib/apps/content-selector/components/Assets.vue.d.ts +2 -2
  23. package/lib/apps/content-selector/components/Content.vue.d.ts +2 -2
  24. package/lib/components/CCarousel/CCarousel.vue.d.ts +98 -20
  25. package/lib/components/CConfigEditor/CConfigEditor.vue.d.ts +2 -2
  26. package/lib/components/CContactSelector/CContactSelectorAccountsWithContacts.vue.d.ts +3 -3
  27. package/lib/components/CCreateTemplateSectionBlockModal/CCreateTemplateSectionBlockModal.vue.d.ts +2 -2
  28. package/lib/components/CCreateThemeModal/steps/CThemeSettingsStep.vue.d.ts +10 -8
  29. package/lib/components/CDataTable/CDataTable.vue.d.ts +876 -100
  30. package/lib/components/CFileViewer/pdf/CFileViewerPageDrawer.pdf.vue.d.ts +2 -2
  31. package/lib/components/CImage/CImage.vue.d.ts +99 -20
  32. package/lib/components/CInput/CInput.vue.d.ts +148 -36
  33. package/lib/components/CRichTextEditor/components/CDynamicValueTreeSelect.vue.d.ts +288 -80
  34. package/lib/components/CRichTextEditor/components/CFormatterWithFieldSelect.vue.d.ts +468 -130
  35. package/lib/components/CRichTextEditor/components/CHandlebarsHelperTreeSelect.vue.d.ts +288 -80
  36. package/lib/components/CRichTextEditor/components/CHyperLinkToolbar.vue.d.ts +148 -36
  37. package/lib/components/CTableInput/CTableInput.vue.d.ts +296 -72
  38. package/lib/components/CTableTag/CTableTag.vue.d.ts +290 -38
  39. package/lib/components/CTags/CTags.vue.d.ts +290 -38
  40. package/lib/components/CUpsertFolderModal/CUpsertFolderModal.vue.d.ts +2 -2
  41. package/lib/components/CUserMenu/CUserMenu.vue.d.ts +108 -30
  42. package/lib/components/savedCanvases/CSavedCanvasesManagementOwnerCell.vue.d.ts +176 -46
  43. package/lib/constants/cdp.const.d.ts +3 -0
  44. package/lib/sdk/api/HighLevelApi.d.ts +3 -0
  45. package/lib/sdk/api/modules/query.d.ts +75 -2
  46. package/lib/sdk/main.d.ts +9 -0
  47. package/lib/sdk/payload.types.d.ts +51 -0
  48. package/lib/sdk/peer-connectivity/peerConnectivity.constants.d.ts +1 -0
  49. package/lib/theme/light.d.ts +113 -8
  50. package/lib/types/app.d.ts +7 -0
  51. package/lib/types/launchDarkly.types.d.ts +1 -1
  52. package/lib/types/organizationSettings.types.d.ts +3 -0
  53. package/package.json +1 -1
@@ -113,7 +113,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
113
113
  arrowOffsetVertical: string;
114
114
  arrowHeight: string;
115
115
  padding: string;
116
- }, any>>;
116
+ }, {
117
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
118
+ height: string;
119
+ width: string;
120
+ borderRadius: string;
121
+ color: string;
122
+ colorHover: string;
123
+ railInsetHorizontalBottom: string;
124
+ railInsetHorizontalTop: string;
125
+ railInsetVerticalRight: string;
126
+ railInsetVerticalLeft: string;
127
+ railColor: string;
128
+ }, any>;
129
+ }>>;
117
130
  themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Popover", {
118
131
  fontSize: string;
119
132
  borderRadius: string;
@@ -127,7 +140,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
127
140
  arrowOffsetVertical: string;
128
141
  arrowHeight: string;
129
142
  padding: string;
130
- }, any>>>;
143
+ }, {
144
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
145
+ height: string;
146
+ width: string;
147
+ borderRadius: string;
148
+ color: string;
149
+ colorHover: string;
150
+ railInsetHorizontalBottom: string;
151
+ railInsetHorizontalTop: string;
152
+ railInsetVerticalRight: string;
153
+ railInsetVerticalLeft: string;
154
+ railColor: string;
155
+ }, any>;
156
+ }>>>;
131
157
  builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Popover", {
132
158
  fontSize: string;
133
159
  borderRadius: string;
@@ -141,7 +167,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
141
167
  arrowOffsetVertical: string;
142
168
  arrowHeight: string;
143
169
  padding: string;
144
- }, any>>>;
170
+ }, {
171
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
172
+ height: string;
173
+ width: string;
174
+ borderRadius: string;
175
+ color: string;
176
+ colorHover: string;
177
+ railInsetHorizontalBottom: string;
178
+ railInsetHorizontalTop: string;
179
+ railInsetVerticalRight: string;
180
+ railInsetVerticalLeft: string;
181
+ railColor: string;
182
+ }, any>;
183
+ }>>>;
145
184
  }>> & Readonly<{}>, {
146
185
  binderInstRef: import('vue').Ref<{
147
186
  targetRef: HTMLElement | null;
@@ -161,30 +200,30 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
161
200
  handleBlur: () => void;
162
201
  syncPosition: () => void;
163
202
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
164
- to: string | boolean | HTMLElement;
165
203
  disabled: boolean;
166
- show: boolean | undefined;
167
- flip: boolean;
168
- width: number | "trigger";
169
- duration: number;
170
204
  raw: boolean;
205
+ to: string | boolean | HTMLElement;
171
206
  placement: import('naive-ui').PopoverPlacement;
172
- overlap: boolean;
173
- scrollable: boolean;
174
- trigger: import('naive-ui').PopoverTrigger;
207
+ width: number | "trigger";
208
+ show: boolean | undefined;
175
209
  showArrow: boolean;
210
+ trigger: import('naive-ui').PopoverTrigger;
211
+ arrow: boolean | undefined;
212
+ defaultShow: boolean;
176
213
  delay: number;
214
+ duration: number;
177
215
  arrowPointToCenter: boolean;
178
216
  displayDirective: "show" | "if";
217
+ flip: boolean;
218
+ animated: boolean;
219
+ overlap: boolean;
179
220
  keepAliveOnHover: boolean;
221
+ scrollable: boolean;
180
222
  internalDeactivateImmediately: boolean;
181
- animated: boolean;
182
- internalTrapFocus: boolean;
183
- defaultShow: boolean;
184
223
  internalSyncTargetWithParent: boolean;
185
224
  internalInheritedEventHandlers: import('naive-ui/es/popover/src/Popover').TriggerEventHandlers[];
225
+ internalTrapFocus: boolean;
186
226
  internalExtraClass: string[];
187
- arrow: boolean | undefined;
188
227
  }, true, {}, import('vue').SlotsType<import('naive-ui').PopoverSlots>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
189
228
  P: {};
190
229
  B: {};
@@ -298,7 +337,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
298
337
  arrowOffsetVertical: string;
299
338
  arrowHeight: string;
300
339
  padding: string;
301
- }, any>>;
340
+ }, {
341
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
342
+ height: string;
343
+ width: string;
344
+ borderRadius: string;
345
+ color: string;
346
+ colorHover: string;
347
+ railInsetHorizontalBottom: string;
348
+ railInsetHorizontalTop: string;
349
+ railInsetVerticalRight: string;
350
+ railInsetVerticalLeft: string;
351
+ railColor: string;
352
+ }, any>;
353
+ }>>;
302
354
  themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Popover", {
303
355
  fontSize: string;
304
356
  borderRadius: string;
@@ -312,7 +364,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
312
364
  arrowOffsetVertical: string;
313
365
  arrowHeight: string;
314
366
  padding: string;
315
- }, any>>>;
367
+ }, {
368
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
369
+ height: string;
370
+ width: string;
371
+ borderRadius: string;
372
+ color: string;
373
+ colorHover: string;
374
+ railInsetHorizontalBottom: string;
375
+ railInsetHorizontalTop: string;
376
+ railInsetVerticalRight: string;
377
+ railInsetVerticalLeft: string;
378
+ railColor: string;
379
+ }, any>;
380
+ }>>>;
316
381
  builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Popover", {
317
382
  fontSize: string;
318
383
  borderRadius: string;
@@ -326,7 +391,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
326
391
  arrowOffsetVertical: string;
327
392
  arrowHeight: string;
328
393
  padding: string;
329
- }, any>>>;
394
+ }, {
395
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
396
+ height: string;
397
+ width: string;
398
+ borderRadius: string;
399
+ color: string;
400
+ colorHover: string;
401
+ railInsetHorizontalBottom: string;
402
+ railInsetHorizontalTop: string;
403
+ railInsetVerticalRight: string;
404
+ railInsetVerticalLeft: string;
405
+ railColor: string;
406
+ }, any>;
407
+ }>>>;
330
408
  }>> & Readonly<{}>, {
331
409
  binderInstRef: import('vue').Ref<{
332
410
  targetRef: HTMLElement | null;
@@ -346,30 +424,30 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
346
424
  handleBlur: () => void;
347
425
  syncPosition: () => void;
348
426
  }, {}, {}, {}, {
349
- to: string | boolean | HTMLElement;
350
427
  disabled: boolean;
351
- show: boolean | undefined;
352
- flip: boolean;
353
- width: number | "trigger";
354
- duration: number;
355
428
  raw: boolean;
429
+ to: string | boolean | HTMLElement;
356
430
  placement: import('naive-ui').PopoverPlacement;
357
- overlap: boolean;
358
- scrollable: boolean;
359
- trigger: import('naive-ui').PopoverTrigger;
431
+ width: number | "trigger";
432
+ show: boolean | undefined;
360
433
  showArrow: boolean;
434
+ trigger: import('naive-ui').PopoverTrigger;
435
+ arrow: boolean | undefined;
436
+ defaultShow: boolean;
361
437
  delay: number;
438
+ duration: number;
362
439
  arrowPointToCenter: boolean;
363
440
  displayDirective: "show" | "if";
441
+ flip: boolean;
442
+ animated: boolean;
443
+ overlap: boolean;
364
444
  keepAliveOnHover: boolean;
445
+ scrollable: boolean;
365
446
  internalDeactivateImmediately: boolean;
366
- animated: boolean;
367
- internalTrapFocus: boolean;
368
- defaultShow: boolean;
369
447
  internalSyncTargetWithParent: boolean;
370
448
  internalInheritedEventHandlers: import('naive-ui/es/popover/src/Popover').TriggerEventHandlers[];
449
+ internalTrapFocus: boolean;
371
450
  internalExtraClass: string[];
372
- arrow: boolean | undefined;
373
451
  }> | null;
374
452
  treeSelectRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
375
453
  readonly renderLabel: import('vue').PropType<import('naive-ui').TreeSelectRenderLabel>;
@@ -420,7 +498,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
420
498
  readonly 'onUpdate:indeterminateKeys': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/tree/src/Tree').OnUpdateIndeterminateKeys>>;
421
499
  readonly onUpdateExpandedKeys: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/tree/src/Tree').onUpdateExpandedKeys>>;
422
500
  readonly 'onUpdate:expandedKeys': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/tree/src/Tree').onUpdateExpandedKeys>>;
423
- readonly overrideDefaultNodeClickBehavior: import('vue').PropType<import('naive-ui/es/tree').TreeOverrideNodeClickBehavior>;
501
+ readonly overrideDefaultNodeClickBehavior: import('vue').PropType<import('naive-ui/es/tree-select').TreeSelectOverrideNodeClickBehavior>;
424
502
  readonly bordered: {
425
503
  readonly type: BooleanConstructor;
426
504
  readonly default: true;
@@ -655,7 +733,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
655
733
  arrowOffsetVertical: string;
656
734
  arrowHeight: string;
657
735
  padding: string;
658
- }, any>;
736
+ }, {
737
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
738
+ height: string;
739
+ width: string;
740
+ borderRadius: string;
741
+ color: string;
742
+ colorHover: string;
743
+ railInsetHorizontalBottom: string;
744
+ railInsetHorizontalTop: string;
745
+ railInsetVerticalRight: string;
746
+ railInsetVerticalLeft: string;
747
+ railColor: string;
748
+ }, any>;
749
+ }>;
659
750
  }>;
660
751
  }>>;
661
752
  readonly themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"TreeSelect", {
@@ -828,7 +919,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
828
919
  arrowOffsetVertical: string;
829
920
  arrowHeight: string;
830
921
  padding: string;
831
- }, any>;
922
+ }, {
923
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
924
+ height: string;
925
+ width: string;
926
+ borderRadius: string;
927
+ color: string;
928
+ colorHover: string;
929
+ railInsetHorizontalBottom: string;
930
+ railInsetHorizontalTop: string;
931
+ railInsetVerticalRight: string;
932
+ railInsetVerticalLeft: string;
933
+ railColor: string;
934
+ }, any>;
935
+ }>;
832
936
  }>;
833
937
  }>>>;
834
938
  readonly builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"TreeSelect", {
@@ -1001,7 +1105,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
1001
1105
  arrowOffsetVertical: string;
1002
1106
  arrowHeight: string;
1003
1107
  padding: string;
1004
- }, any>;
1108
+ }, {
1109
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
1110
+ height: string;
1111
+ width: string;
1112
+ borderRadius: string;
1113
+ color: string;
1114
+ colorHover: string;
1115
+ railInsetHorizontalBottom: string;
1116
+ railInsetHorizontalTop: string;
1117
+ railInsetVerticalRight: string;
1118
+ railInsetVerticalLeft: string;
1119
+ railColor: string;
1120
+ }, any>;
1121
+ }>;
1005
1122
  }>;
1006
1123
  }>>>;
1007
1124
  }>> & Readonly<{}>, {
@@ -1259,7 +1376,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
1259
1376
  arrowOffsetVertical: string;
1260
1377
  arrowHeight: string;
1261
1378
  padding: string;
1262
- }, any>;
1379
+ }, {
1380
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
1381
+ height: string;
1382
+ width: string;
1383
+ borderRadius: string;
1384
+ color: string;
1385
+ colorHover: string;
1386
+ railInsetHorizontalBottom: string;
1387
+ railInsetHorizontalTop: string;
1388
+ railInsetVerticalRight: string;
1389
+ railInsetVerticalLeft: string;
1390
+ railColor: string;
1391
+ }, any>;
1392
+ }>;
1263
1393
  }>;
1264
1394
  };
1265
1395
  peerOverrides: {
@@ -1344,7 +1474,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
1344
1474
  arrowOffsetVertical: string;
1345
1475
  arrowHeight: string;
1346
1476
  padding: string;
1347
- }, any>> | undefined;
1477
+ }, {
1478
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
1479
+ height: string;
1480
+ width: string;
1481
+ borderRadius: string;
1482
+ color: string;
1483
+ colorHover: string;
1484
+ railInsetHorizontalBottom: string;
1485
+ railInsetHorizontalTop: string;
1486
+ railInsetVerticalRight: string;
1487
+ railInsetVerticalLeft: string;
1488
+ railColor: string;
1489
+ }, any>;
1490
+ }>> | undefined;
1348
1491
  } | undefined;
1349
1492
  } | undefined;
1350
1493
  };
@@ -1377,35 +1520,35 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
1377
1520
  blur: () => void;
1378
1521
  blurInput: () => void;
1379
1522
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
1380
- readonly options: TreeSelectOption[];
1381
- readonly to: string | boolean | HTMLElement;
1382
1523
  readonly disabled: boolean | undefined;
1383
- readonly show: boolean | undefined;
1384
- readonly separator: string;
1385
- readonly multiple: boolean;
1386
- readonly loading: boolean;
1387
1524
  readonly bordered: boolean;
1525
+ readonly to: string | boolean | HTMLElement;
1526
+ readonly clearable: boolean;
1527
+ readonly defaultValue: string | number | (string | number)[] | null;
1528
+ readonly loading: boolean;
1388
1529
  readonly placement: import('naive-ui').PopoverPlacement;
1389
- readonly keyField: string;
1390
- readonly labelField: string;
1391
- readonly virtualScroll: boolean;
1392
- readonly checkable: boolean;
1530
+ readonly options: TreeSelectOption[];
1531
+ readonly show: boolean | undefined;
1532
+ readonly separator: string;
1393
1533
  readonly defaultShow: boolean;
1534
+ readonly allowCheckingNotLoaded: boolean;
1535
+ readonly multiple: boolean;
1394
1536
  readonly filterable: boolean;
1395
- readonly clearable: boolean;
1537
+ readonly disabledField: string;
1396
1538
  readonly clearFilterAfterSelect: boolean;
1397
- readonly defaultValue: string | number | (string | number)[] | null;
1398
- readonly consistentMenuWidth: boolean;
1399
- readonly childrenField: string;
1400
- readonly defaultExpandAll: boolean;
1401
- readonly allowCheckingNotLoaded: boolean;
1402
1539
  readonly cascade: boolean;
1403
- readonly indent: number;
1404
- readonly checkStrategy: import('treemate').CheckStrategy;
1405
- readonly disabledField: string;
1406
1540
  readonly leafOnly: boolean;
1407
1541
  readonly showPath: boolean;
1542
+ readonly virtualScroll: boolean;
1543
+ readonly checkStrategy: import('treemate').CheckStrategy;
1544
+ readonly labelField: string;
1545
+ readonly childrenField: string;
1546
+ readonly consistentMenuWidth: boolean;
1547
+ readonly defaultExpandAll: boolean;
1548
+ readonly indent: number;
1549
+ readonly keyField: string;
1408
1550
  readonly defaultExpandedKeys: import('naive-ui/es/tree/src/interface').Key[];
1551
+ readonly checkable: boolean;
1409
1552
  }, true, {}, import('vue').SlotsType<import('naive-ui').TreeSelectSlots>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
1410
1553
  P: {};
1411
1554
  B: {};
@@ -1462,7 +1605,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
1462
1605
  readonly 'onUpdate:indeterminateKeys': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/tree/src/Tree').OnUpdateIndeterminateKeys>>;
1463
1606
  readonly onUpdateExpandedKeys: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/tree/src/Tree').onUpdateExpandedKeys>>;
1464
1607
  readonly 'onUpdate:expandedKeys': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/tree/src/Tree').onUpdateExpandedKeys>>;
1465
- readonly overrideDefaultNodeClickBehavior: import('vue').PropType<import('naive-ui/es/tree').TreeOverrideNodeClickBehavior>;
1608
+ readonly overrideDefaultNodeClickBehavior: import('vue').PropType<import('naive-ui/es/tree-select').TreeSelectOverrideNodeClickBehavior>;
1466
1609
  readonly bordered: {
1467
1610
  readonly type: BooleanConstructor;
1468
1611
  readonly default: true;
@@ -1697,7 +1840,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
1697
1840
  arrowOffsetVertical: string;
1698
1841
  arrowHeight: string;
1699
1842
  padding: string;
1700
- }, any>;
1843
+ }, {
1844
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
1845
+ height: string;
1846
+ width: string;
1847
+ borderRadius: string;
1848
+ color: string;
1849
+ colorHover: string;
1850
+ railInsetHorizontalBottom: string;
1851
+ railInsetHorizontalTop: string;
1852
+ railInsetVerticalRight: string;
1853
+ railInsetVerticalLeft: string;
1854
+ railColor: string;
1855
+ }, any>;
1856
+ }>;
1701
1857
  }>;
1702
1858
  }>>;
1703
1859
  readonly themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"TreeSelect", {
@@ -1870,7 +2026,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
1870
2026
  arrowOffsetVertical: string;
1871
2027
  arrowHeight: string;
1872
2028
  padding: string;
1873
- }, any>;
2029
+ }, {
2030
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
2031
+ height: string;
2032
+ width: string;
2033
+ borderRadius: string;
2034
+ color: string;
2035
+ colorHover: string;
2036
+ railInsetHorizontalBottom: string;
2037
+ railInsetHorizontalTop: string;
2038
+ railInsetVerticalRight: string;
2039
+ railInsetVerticalLeft: string;
2040
+ railColor: string;
2041
+ }, any>;
2042
+ }>;
1874
2043
  }>;
1875
2044
  }>>>;
1876
2045
  readonly builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"TreeSelect", {
@@ -2043,7 +2212,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
2043
2212
  arrowOffsetVertical: string;
2044
2213
  arrowHeight: string;
2045
2214
  padding: string;
2046
- }, any>;
2215
+ }, {
2216
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
2217
+ height: string;
2218
+ width: string;
2219
+ borderRadius: string;
2220
+ color: string;
2221
+ colorHover: string;
2222
+ railInsetHorizontalBottom: string;
2223
+ railInsetHorizontalTop: string;
2224
+ railInsetVerticalRight: string;
2225
+ railInsetVerticalLeft: string;
2226
+ railColor: string;
2227
+ }, any>;
2228
+ }>;
2047
2229
  }>;
2048
2230
  }>>>;
2049
2231
  }>> & Readonly<{}>, {
@@ -2301,7 +2483,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
2301
2483
  arrowOffsetVertical: string;
2302
2484
  arrowHeight: string;
2303
2485
  padding: string;
2304
- }, any>;
2486
+ }, {
2487
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
2488
+ height: string;
2489
+ width: string;
2490
+ borderRadius: string;
2491
+ color: string;
2492
+ colorHover: string;
2493
+ railInsetHorizontalBottom: string;
2494
+ railInsetHorizontalTop: string;
2495
+ railInsetVerticalRight: string;
2496
+ railInsetVerticalLeft: string;
2497
+ railColor: string;
2498
+ }, any>;
2499
+ }>;
2305
2500
  }>;
2306
2501
  };
2307
2502
  peerOverrides: {
@@ -2386,7 +2581,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
2386
2581
  arrowOffsetVertical: string;
2387
2582
  arrowHeight: string;
2388
2583
  padding: string;
2389
- }, any>> | undefined;
2584
+ }, {
2585
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
2586
+ height: string;
2587
+ width: string;
2588
+ borderRadius: string;
2589
+ color: string;
2590
+ colorHover: string;
2591
+ railInsetHorizontalBottom: string;
2592
+ railInsetHorizontalTop: string;
2593
+ railInsetVerticalRight: string;
2594
+ railInsetVerticalLeft: string;
2595
+ railColor: string;
2596
+ }, any>;
2597
+ }>> | undefined;
2390
2598
  } | undefined;
2391
2599
  } | undefined;
2392
2600
  };
@@ -2419,35 +2627,35 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
2419
2627
  blur: () => void;
2420
2628
  blurInput: () => void;
2421
2629
  }, {}, {}, {}, {
2422
- readonly options: TreeSelectOption[];
2423
- readonly to: string | boolean | HTMLElement;
2424
2630
  readonly disabled: boolean | undefined;
2425
- readonly show: boolean | undefined;
2426
- readonly separator: string;
2427
- readonly multiple: boolean;
2428
- readonly loading: boolean;
2429
2631
  readonly bordered: boolean;
2632
+ readonly to: string | boolean | HTMLElement;
2633
+ readonly clearable: boolean;
2634
+ readonly defaultValue: string | number | (string | number)[] | null;
2635
+ readonly loading: boolean;
2430
2636
  readonly placement: import('naive-ui').PopoverPlacement;
2431
- readonly keyField: string;
2432
- readonly labelField: string;
2433
- readonly virtualScroll: boolean;
2434
- readonly checkable: boolean;
2637
+ readonly options: TreeSelectOption[];
2638
+ readonly show: boolean | undefined;
2639
+ readonly separator: string;
2435
2640
  readonly defaultShow: boolean;
2641
+ readonly allowCheckingNotLoaded: boolean;
2642
+ readonly multiple: boolean;
2436
2643
  readonly filterable: boolean;
2437
- readonly clearable: boolean;
2644
+ readonly disabledField: string;
2438
2645
  readonly clearFilterAfterSelect: boolean;
2439
- readonly defaultValue: string | number | (string | number)[] | null;
2440
- readonly consistentMenuWidth: boolean;
2441
- readonly childrenField: string;
2442
- readonly defaultExpandAll: boolean;
2443
- readonly allowCheckingNotLoaded: boolean;
2444
2646
  readonly cascade: boolean;
2445
- readonly indent: number;
2446
- readonly checkStrategy: import('treemate').CheckStrategy;
2447
- readonly disabledField: string;
2448
2647
  readonly leafOnly: boolean;
2449
2648
  readonly showPath: boolean;
2649
+ readonly virtualScroll: boolean;
2650
+ readonly checkStrategy: import('treemate').CheckStrategy;
2651
+ readonly labelField: string;
2652
+ readonly childrenField: string;
2653
+ readonly consistentMenuWidth: boolean;
2654
+ readonly defaultExpandAll: boolean;
2655
+ readonly indent: number;
2656
+ readonly keyField: string;
2450
2657
  readonly defaultExpandedKeys: import('naive-ui/es/tree/src/interface').Key[];
2658
+ readonly checkable: boolean;
2451
2659
  }> | null;
2452
2660
  }, any>;
2453
2661
  export default _default;