@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
@@ -4849,6 +4849,9 @@ export default function useCanvas(): {
4849
4849
  enabled: boolean;
4850
4850
  type: "base" | "app";
4851
4851
  }[] | undefined;
4852
+ sfdc?: {
4853
+ use_static_ip_proxy?: boolean | undefined;
4854
+ } | undefined;
4852
4855
  custom_event?: string | undefined;
4853
4856
  enable_recents?: boolean | undefined;
4854
4857
  enable_favorites?: boolean | undefined;
@@ -5174,6 +5177,9 @@ export default function useCanvas(): {
5174
5177
  enabled: boolean;
5175
5178
  type: "base" | "app";
5176
5179
  }[] | undefined;
5180
+ sfdc?: {
5181
+ use_static_ip_proxy?: boolean | undefined;
5182
+ } | undefined;
5177
5183
  custom_event?: string | undefined;
5178
5184
  enable_recents?: boolean | undefined;
5179
5185
  enable_favorites?: boolean | undefined;
@@ -5492,6 +5498,9 @@ export default function useCanvas(): {
5492
5498
  readonly enabled: boolean;
5493
5499
  readonly type: "base" | "app";
5494
5500
  }[] | undefined;
5501
+ readonly sfdc?: {
5502
+ readonly use_static_ip_proxy?: boolean | undefined;
5503
+ } | undefined;
5495
5504
  readonly custom_event?: string | undefined;
5496
5505
  readonly enable_recents?: boolean | undefined;
5497
5506
  readonly enable_favorites?: boolean | undefined;
@@ -5809,6 +5818,9 @@ export default function useCanvas(): {
5809
5818
  readonly enabled: boolean;
5810
5819
  readonly type: "base" | "app";
5811
5820
  }[] | undefined;
5821
+ readonly sfdc?: {
5822
+ readonly use_static_ip_proxy?: boolean | undefined;
5823
+ } | undefined;
5812
5824
  readonly custom_event?: string | undefined;
5813
5825
  readonly enable_recents?: boolean | undefined;
5814
5826
  readonly enable_favorites?: boolean | undefined;
@@ -415,6 +415,7 @@ export declare function usePopupApps(): {
415
415
  } | undefined;
416
416
  } | undefined;
417
417
  order_override?: number | undefined;
418
+ has_multiple_routes?: boolean | undefined;
418
419
  } | undefined;
419
420
  tags?: Array<string> | undefined;
420
421
  readonly published_at: string | null;
@@ -859,6 +860,7 @@ export declare function usePopupApps(): {
859
860
  } | undefined;
860
861
  } | undefined;
861
862
  order_override?: number | undefined;
863
+ has_multiple_routes?: boolean | undefined;
862
864
  } | undefined;
863
865
  tags?: Array<string> | undefined;
864
866
  readonly published_at: string | null;
@@ -28,8 +28,8 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
28
28
  marginLeft: string;
29
29
  };
30
30
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
31
- readonly span: string | number;
32
31
  readonly offset: string | number;
32
+ readonly span: string | number;
33
33
  readonly suffix: boolean;
34
34
  readonly privateShow: boolean;
35
35
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
@@ -67,8 +67,8 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
67
67
  marginLeft: string;
68
68
  };
69
69
  }, {}, {}, {}, {
70
- readonly span: string | number;
71
70
  readonly offset: string | number;
71
+ readonly span: string | number;
72
72
  readonly suffix: boolean;
73
73
  readonly privateShow: boolean;
74
74
  }> | null;
@@ -27,8 +27,8 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
27
27
  marginLeft: string;
28
28
  };
29
29
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
30
- readonly span: string | number;
31
30
  readonly offset: string | number;
31
+ readonly span: string | number;
32
32
  readonly suffix: boolean;
33
33
  readonly privateShow: boolean;
34
34
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
@@ -66,8 +66,8 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
66
66
  marginLeft: string;
67
67
  };
68
68
  }, {}, {}, {}, {
69
- readonly span: string | number;
70
69
  readonly offset: string | number;
70
+ readonly span: string | number;
71
71
  readonly suffix: boolean;
72
72
  readonly privateShow: boolean;
73
73
  }> | null;
@@ -70,7 +70,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
70
70
  arrowOffsetVertical: string;
71
71
  arrowHeight: string;
72
72
  padding: string;
73
- }, any>;
73
+ }, {
74
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
75
+ height: string;
76
+ width: string;
77
+ borderRadius: string;
78
+ color: string;
79
+ colorHover: string;
80
+ railInsetHorizontalBottom: string;
81
+ railInsetHorizontalTop: string;
82
+ railInsetVerticalRight: string;
83
+ railInsetVerticalLeft: string;
84
+ railColor: string;
85
+ }, any>;
86
+ }>;
74
87
  }>;
75
88
  }>>;
76
89
  themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Image", {
@@ -99,7 +112,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
99
112
  arrowOffsetVertical: string;
100
113
  arrowHeight: string;
101
114
  padding: string;
102
- }, any>;
115
+ }, {
116
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
117
+ height: string;
118
+ width: string;
119
+ borderRadius: string;
120
+ color: string;
121
+ colorHover: string;
122
+ railInsetHorizontalBottom: string;
123
+ railInsetHorizontalTop: string;
124
+ railInsetVerticalRight: string;
125
+ railInsetVerticalLeft: string;
126
+ railColor: string;
127
+ }, any>;
128
+ }>;
103
129
  }>;
104
130
  }>>>;
105
131
  builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Image", {
@@ -128,7 +154,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
128
154
  arrowOffsetVertical: string;
129
155
  arrowHeight: string;
130
156
  padding: string;
131
- }, any>;
157
+ }, {
158
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
159
+ height: string;
160
+ width: string;
161
+ borderRadius: string;
162
+ color: string;
163
+ colorHover: string;
164
+ railInsetHorizontalBottom: string;
165
+ railInsetHorizontalTop: string;
166
+ railInsetVerticalRight: string;
167
+ railInsetVerticalLeft: string;
168
+ railColor: string;
169
+ }, any>;
170
+ }>;
132
171
  }>;
133
172
  }>>>;
134
173
  alt: StringConstructor;
@@ -151,26 +190,26 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
151
190
  onLoad: import('vue').PropType<(e: Event) => void>;
152
191
  }>> & Readonly<{}>, {
153
192
  click: () => void;
193
+ showPreview: () => void;
154
194
  mergedClsPrefix: import('vue').Ref<string, string>;
155
195
  groupId: string | undefined;
156
196
  previewInstRef: import('vue').Ref<{
157
197
  setThumbnailEl: (e: HTMLImageElement | null) => void;
158
- setPreviewSrc: (src?: string) => void;
159
- toggleShow: () => void;
160
- } | null, import('naive-ui/es/image/src/ImagePreview').ImagePreviewInst | {
198
+ } | null, import('naive-ui').ImagePreviewInst | {
161
199
  setThumbnailEl: (e: HTMLImageElement | null) => void;
162
- setPreviewSrc: (src?: string) => void;
163
- toggleShow: () => void;
164
200
  } | null>;
165
201
  imageRef: import('vue').Ref<HTMLImageElement | null, HTMLImageElement | null>;
202
+ mergedPreviewSrc: import('vue').ComputedRef<string | undefined>;
166
203
  showError: import('vue').Ref<boolean, boolean>;
167
204
  shouldStartLoading: import('vue').Ref<boolean, boolean>;
168
205
  loaded: import('vue').Ref<boolean, boolean>;
169
- mergedOnClick: (e: MouseEvent) => void;
206
+ mergedOnClick: (e: PointerEvent) => void;
207
+ onPreviewClose: () => void;
170
208
  mergedOnError: (e: Event) => void;
171
209
  mergedOnLoad: (e: Event) => void;
210
+ previewShow: import('vue').Ref<boolean, boolean>;
172
211
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
173
- objectFit: "fill" | "none" | "contain" | "cover" | "scale-down";
212
+ objectFit: "none" | "fill" | "contain" | "cover" | "scale-down";
174
213
  lazy: boolean;
175
214
  showToolbar: boolean;
176
215
  showToolbarTooltip: boolean;
@@ -217,7 +256,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
217
256
  arrowOffsetVertical: string;
218
257
  arrowHeight: string;
219
258
  padding: string;
220
- }, any>;
259
+ }, {
260
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
261
+ height: string;
262
+ width: string;
263
+ borderRadius: string;
264
+ color: string;
265
+ colorHover: string;
266
+ railInsetHorizontalBottom: string;
267
+ railInsetHorizontalTop: string;
268
+ railInsetVerticalRight: string;
269
+ railInsetVerticalLeft: string;
270
+ railColor: string;
271
+ }, any>;
272
+ }>;
221
273
  }>;
222
274
  }>>;
223
275
  themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Image", {
@@ -246,7 +298,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
246
298
  arrowOffsetVertical: string;
247
299
  arrowHeight: string;
248
300
  padding: string;
249
- }, any>;
301
+ }, {
302
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
303
+ height: string;
304
+ width: string;
305
+ borderRadius: string;
306
+ color: string;
307
+ colorHover: string;
308
+ railInsetHorizontalBottom: string;
309
+ railInsetHorizontalTop: string;
310
+ railInsetVerticalRight: string;
311
+ railInsetVerticalLeft: string;
312
+ railColor: string;
313
+ }, any>;
314
+ }>;
250
315
  }>;
251
316
  }>>>;
252
317
  builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Image", {
@@ -275,7 +340,20 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
275
340
  arrowOffsetVertical: string;
276
341
  arrowHeight: string;
277
342
  padding: string;
278
- }, any>;
343
+ }, {
344
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
345
+ height: string;
346
+ width: string;
347
+ borderRadius: string;
348
+ color: string;
349
+ colorHover: string;
350
+ railInsetHorizontalBottom: string;
351
+ railInsetHorizontalTop: string;
352
+ railInsetVerticalRight: string;
353
+ railInsetVerticalLeft: string;
354
+ railColor: string;
355
+ }, any>;
356
+ }>;
279
357
  }>;
280
358
  }>>>;
281
359
  alt: StringConstructor;
@@ -298,26 +376,26 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
298
376
  onLoad: import('vue').PropType<(e: Event) => void>;
299
377
  }>> & Readonly<{}>, {
300
378
  click: () => void;
379
+ showPreview: () => void;
301
380
  mergedClsPrefix: import('vue').Ref<string, string>;
302
381
  groupId: string | undefined;
303
382
  previewInstRef: import('vue').Ref<{
304
383
  setThumbnailEl: (e: HTMLImageElement | null) => void;
305
- setPreviewSrc: (src?: string) => void;
306
- toggleShow: () => void;
307
- } | null, import('naive-ui/es/image/src/ImagePreview').ImagePreviewInst | {
384
+ } | null, import('naive-ui').ImagePreviewInst | {
308
385
  setThumbnailEl: (e: HTMLImageElement | null) => void;
309
- setPreviewSrc: (src?: string) => void;
310
- toggleShow: () => void;
311
386
  } | null>;
312
387
  imageRef: import('vue').Ref<HTMLImageElement | null, HTMLImageElement | null>;
388
+ mergedPreviewSrc: import('vue').ComputedRef<string | undefined>;
313
389
  showError: import('vue').Ref<boolean, boolean>;
314
390
  shouldStartLoading: import('vue').Ref<boolean, boolean>;
315
391
  loaded: import('vue').Ref<boolean, boolean>;
316
- mergedOnClick: (e: MouseEvent) => void;
392
+ mergedOnClick: (e: PointerEvent) => void;
393
+ onPreviewClose: () => void;
317
394
  mergedOnError: (e: Event) => void;
318
395
  mergedOnLoad: (e: Event) => void;
396
+ previewShow: import('vue').Ref<boolean, boolean>;
319
397
  }, {}, {}, {}, {
320
- objectFit: "fill" | "none" | "contain" | "cover" | "scale-down";
398
+ objectFit: "none" | "fill" | "contain" | "cover" | "scale-down";
321
399
  lazy: boolean;
322
400
  showToolbar: boolean;
323
401
  showToolbarTooltip: boolean;
@@ -162,9 +162,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
162
162
  }>> & Readonly<{}>, import('naive-ui').FormInst & {
163
163
  mergedClsPrefix: import('vue').Ref<string, string>;
164
164
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
165
- readonly inline: boolean;
166
165
  readonly disabled: boolean;
167
166
  readonly onSubmit: (e: Event) => void;
167
+ readonly inline: boolean;
168
168
  readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
169
169
  readonly model: Record<string, any>;
170
170
  readonly showRequireMark: boolean | undefined;
@@ -309,9 +309,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
309
309
  }>> & Readonly<{}>, import('naive-ui').FormInst & {
310
310
  mergedClsPrefix: import('vue').Ref<string, string>;
311
311
  }, {}, {}, {}, {
312
- readonly inline: boolean;
313
312
  readonly disabled: boolean;
314
313
  readonly onSubmit: (e: Event) => void;
314
+ readonly inline: boolean;
315
315
  readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
316
316
  readonly model: Record<string, any>;
317
317
  readonly showRequireMark: boolean | undefined;
@@ -337,7 +337,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
337
337
  readonly defaultExpandedNames: string | number | (string | number)[] | null;
338
338
  readonly arrowPlacement: "left" | "right";
339
339
  readonly accordion: boolean;
340
- readonly triggerAreas: ("extra" | "main" | "arrow")[];
340
+ readonly triggerAreas: ("main" | "extra" | "arrow")[];
341
341
  readonly onExpandedNamesChange: import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/collapse/src/interface').OnUpdateExpandedNames> | undefined;
342
342
  }, import('vue').SlotsType<import('naive-ui').CollapseSlots>, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
343
343
  NCollapseItem: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
@@ -351,7 +351,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
351
351
  randomName: string;
352
352
  mergedClsPrefix: import('vue').Ref<string, string>;
353
353
  collapsed: import('vue').ComputedRef<boolean>;
354
- triggerAreas: import('vue').Ref<("extra" | "main" | "arrow")[], ("extra" | "main" | "arrow")[]>;
354
+ triggerAreas: import('vue').Ref<("main" | "extra" | "arrow")[], ("main" | "extra" | "arrow")[]>;
355
355
  mergedDisplayDirective: import('vue').ComputedRef<"show" | "if">;
356
356
  arrowPlacement: import('vue').ComputedRef<"left" | "right">;
357
357
  handleClick(e: MouseEvent): void;
@@ -788,7 +788,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
788
788
  ulPadding: string;
789
789
  }, any>>>;
790
790
  }>> & Readonly<{}>, {
791
- readonly type: "error" | "default" | "info" | "success" | "warning";
791
+ readonly type: "default" | "info" | "warning" | "error" | "success";
792
792
  readonly alignText: boolean;
793
793
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
794
794
  CContactAccountListItem: import('vue').DefineComponent<{
@@ -147,9 +147,9 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
147
147
  }>> & Readonly<{}>, import('naive-ui').FormInst & {
148
148
  mergedClsPrefix: import('vue').Ref<string, string>;
149
149
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
150
- readonly inline: boolean;
151
150
  readonly disabled: boolean;
152
151
  readonly onSubmit: (e: Event) => void;
152
+ readonly inline: boolean;
153
153
  readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
154
154
  readonly model: Record<string, any>;
155
155
  readonly showRequireMark: boolean | undefined;
@@ -294,9 +294,9 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
294
294
  }>> & Readonly<{}>, import('naive-ui').FormInst & {
295
295
  mergedClsPrefix: import('vue').Ref<string, string>;
296
296
  }, {}, {}, {}, {
297
- readonly inline: boolean;
298
297
  readonly disabled: boolean;
299
298
  readonly onSubmit: (e: Event) => void;
299
+ readonly inline: boolean;
300
300
  readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
301
301
  readonly model: Record<string, any>;
302
302
  readonly showRequireMark: boolean | undefined;
@@ -159,9 +159,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
159
159
  }>> & Readonly<{}>, FormInst & {
160
160
  mergedClsPrefix: import('vue').Ref<string, string>;
161
161
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
162
- readonly inline: boolean;
163
162
  readonly disabled: boolean;
164
163
  readonly onSubmit: (e: Event) => void;
164
+ readonly inline: boolean;
165
165
  readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
166
166
  readonly model: Record<string, any>;
167
167
  readonly showRequireMark: boolean | undefined;
@@ -306,9 +306,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
306
306
  }>> & Readonly<{}>, FormInst & {
307
307
  mergedClsPrefix: import('vue').Ref<string, string>;
308
308
  }, {}, {}, {}, {
309
- readonly inline: boolean;
310
309
  readonly disabled: boolean;
311
310
  readonly onSubmit: (e: Event) => void;
311
+ readonly inline: boolean;
312
312
  readonly labelPlacement: import('naive-ui/es/form/src/interface').LabelPlacement;
313
313
  readonly model: Record<string, any>;
314
314
  readonly showRequireMark: boolean | undefined;
@@ -1151,6 +1151,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
1151
1151
  draggerInsideRef: {
1152
1152
  value: boolean;
1153
1153
  };
1154
+ rtlEnabled: import('vue').Ref<import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined, import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined> | undefined;
1154
1155
  inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
1155
1156
  mergedTheme: import('vue').ComputedRef<{
1156
1157
  common: import('naive-ui').ThemeCommonVars;
@@ -1420,14 +1421,14 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
1420
1421
  onRender: (() => void) | undefined;
1421
1422
  handleFileInputChange: (e: Event) => void;
1422
1423
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
1423
- readonly method: string;
1424
- readonly name: string;
1425
- readonly abstract: boolean;
1426
1424
  readonly disabled: boolean | undefined;
1425
+ readonly name: string;
1427
1426
  readonly multiple: boolean;
1427
+ readonly abstract: boolean;
1428
1428
  readonly showTrigger: boolean;
1429
1429
  readonly directory: boolean;
1430
1430
  readonly directoryDnd: boolean;
1431
+ readonly method: string;
1431
1432
  readonly showFileList: boolean;
1432
1433
  readonly withCredentials: boolean;
1433
1434
  readonly responseType: XMLHttpRequestResponseType;
@@ -2283,6 +2284,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
2283
2284
  draggerInsideRef: {
2284
2285
  value: boolean;
2285
2286
  };
2287
+ rtlEnabled: import('vue').Ref<import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined, import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined> | undefined;
2286
2288
  inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
2287
2289
  mergedTheme: import('vue').ComputedRef<{
2288
2290
  common: import('naive-ui').ThemeCommonVars;
@@ -2552,14 +2554,14 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
2552
2554
  onRender: (() => void) | undefined;
2553
2555
  handleFileInputChange: (e: Event) => void;
2554
2556
  }, {}, {}, {}, {
2555
- readonly method: string;
2556
- readonly name: string;
2557
- readonly abstract: boolean;
2558
2557
  readonly disabled: boolean | undefined;
2558
+ readonly name: string;
2559
2559
  readonly multiple: boolean;
2560
+ readonly abstract: boolean;
2560
2561
  readonly showTrigger: boolean;
2561
2562
  readonly directory: boolean;
2562
2563
  readonly directoryDnd: boolean;
2564
+ readonly method: string;
2563
2565
  readonly showFileList: boolean;
2564
2566
  readonly withCredentials: boolean;
2565
2567
  readonly responseType: XMLHttpRequestResponseType;