@fkui/vue 6.5.0 → 6.7.0

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.
@@ -129,19 +129,92 @@ id: string;
129
129
  focusRef: HTMLElement | null;
130
130
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
131
131
 
132
- declare const __VLS_component_3: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
133
- update: () => any;
134
- }, string, PublicProps, Readonly<__VLS_Props> & Readonly<{
135
- onUpdate?: (() => any) | undefined;
136
- }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
132
+ declare const __VLS_component_3: DefineComponent<ExtractPropTypes< {
133
+ /**
134
+ * The action to be performed by the button.
135
+ * Must be one of the following values: "delete" or "modify".
136
+ */
137
+ action: {
138
+ type: StringConstructor;
139
+ required: true;
140
+ validator(value: string): boolean;
141
+ };
142
+ /**
143
+ * Determines if an icon should be displayed on the button.
144
+ */
145
+ icon: {
146
+ type: BooleanConstructor;
147
+ default: boolean;
148
+ };
149
+ /**
150
+ * The item that the action will be performed on.
151
+ */
152
+ item: {
153
+ type: ObjectConstructor;
154
+ required: true;
155
+ };
156
+ /**
157
+ * Determines if the button should display a label.
158
+ * If false, the button will use a visually hidden text for accessibility.
159
+ */
160
+ label: {
161
+ type: BooleanConstructor;
162
+ default: boolean;
163
+ };
164
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
165
+ /**
166
+ * The action to be performed by the button.
167
+ * Must be one of the following values: "delete" or "modify".
168
+ */
169
+ action: {
170
+ type: StringConstructor;
171
+ required: true;
172
+ validator(value: string): boolean;
173
+ };
174
+ /**
175
+ * Determines if an icon should be displayed on the button.
176
+ */
177
+ icon: {
178
+ type: BooleanConstructor;
179
+ default: boolean;
180
+ };
181
+ /**
182
+ * The item that the action will be performed on.
183
+ */
184
+ item: {
185
+ type: ObjectConstructor;
186
+ required: true;
187
+ };
188
+ /**
189
+ * Determines if the button should display a label.
190
+ * If false, the button will use a visually hidden text for accessibility.
191
+ */
192
+ label: {
193
+ type: BooleanConstructor;
194
+ default: boolean;
195
+ };
196
+ }>> & Readonly<{}>, {
197
+ label: boolean;
198
+ icon: boolean;
199
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
137
200
 
138
- declare const __VLS_component_4: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {
201
+ declare const __VLS_component_4: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
202
+
203
+ declare const __VLS_component_5: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
204
+
205
+ declare const __VLS_component_6: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {
139
206
  min: string;
140
207
  max: string;
141
208
  initial: string;
142
209
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
143
210
 
144
- declare const __VLS_component_5: DefineComponent<ExtractPropTypes< {
211
+ declare const __VLS_component_7: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
212
+ click: () => any;
213
+ }, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{
214
+ onClick?: (() => any) | undefined;
215
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
216
+
217
+ declare const __VLS_component_8: DefineComponent<ExtractPropTypes< {
145
218
  /**
146
219
  * Unique (per-table) identifier. Typically set to the row
147
220
  * property displayed but any unique string can be used.
@@ -153,14 +226,16 @@ type: StringConstructor;
153
226
  default: undefined;
154
227
  };
155
228
  /**
156
- * If set to true, display the column, set to false to hide it.
229
+ * When enabled controls column visibility (default `true`)
230
+ *
231
+ * Should be used instead of `v-if` or `v-show`.
157
232
  */
158
233
  visible: {
159
234
  type: BooleanConstructor;
160
235
  default: boolean;
161
236
  };
162
237
  /**
163
- * If `true` this cell will be a row header (`<th>` as opposed to
238
+ * When enabled this cell will be a row header (`<th>` as opposed to
164
239
  * `<td>`).
165
240
  */
166
241
  rowHeader: {
@@ -236,14 +311,16 @@ type: StringConstructor;
236
311
  default: undefined;
237
312
  };
238
313
  /**
239
- * If set to true, display the column, set to false to hide it.
314
+ * When enabled controls column visibility (default `true`)
315
+ *
316
+ * Should be used instead of `v-if` or `v-show`.
240
317
  */
241
318
  visible: {
242
319
  type: BooleanConstructor;
243
320
  default: boolean;
244
321
  };
245
322
  /**
246
- * If `true` this cell will be a row header (`<th>` as opposed to
323
+ * When enabled this cell will be a row header (`<th>` as opposed to
247
324
  * `<td>`).
248
325
  */
249
326
  rowHeader: {
@@ -319,7 +396,7 @@ rowHeader: boolean;
319
396
  element: unknown;
320
397
  }, any>;
321
398
 
322
- declare const __VLS_component_6: DefineComponent<IPopupListboxProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
399
+ declare const __VLS_component_9: DefineComponent<IPopupListboxProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
323
400
  close: () => any;
324
401
  }, string, PublicProps, Readonly<IPopupListboxProps> & Readonly<{
325
402
  onClose?: (() => any) | undefined;
@@ -349,8 +426,21 @@ declare type __VLS_PrettifyLocal_5<T> = {
349
426
  [K in keyof T]: T[K];
350
427
  } & {};
351
428
 
429
+ declare type __VLS_PrettifyLocal_6<T> = {
430
+ [K in keyof T]: T[K];
431
+ } & {};
432
+
433
+ declare type __VLS_PrettifyLocal_7<T> = {
434
+ [K in keyof T]: T[K];
435
+ } & {};
436
+
352
437
  declare type __VLS_Props = {
353
- layout: string;
438
+ /**
439
+ * Screenreader context for toggle button.
440
+ *
441
+ * Default value of `fkui.minimizable-panel.context`.
442
+ */
443
+ context?: string;
354
444
  };
355
445
 
356
446
  declare type __VLS_Props_2 = {
@@ -378,6 +468,18 @@ declare type __VLS_Props_2 = {
378
468
  };
379
469
 
380
470
  declare type __VLS_Props_3 = {
471
+ /**
472
+ * When set to an icon name an icon is displayed next to the label.
473
+ */
474
+ icon?: string;
475
+ /**
476
+ * By default the label is visually hidden. When this prop is enabled the
477
+ * label is rendered visually as well.
478
+ */
479
+ label?: boolean;
480
+ };
481
+
482
+ declare type __VLS_Props_4 = {
381
483
  id: string;
382
484
  isOpen: boolean;
383
485
  options: string[];
@@ -417,7 +519,9 @@ declare function __VLS_template_2(): {
417
519
 
418
520
  declare function __VLS_template_3(): {
419
521
  attrs: Partial<{}>;
420
- slots: Partial<Record<string, (_: {}) => any>>;
522
+ slots: {
523
+ default?(_: {}): any;
524
+ };
421
525
  refs: {};
422
526
  rootEl: any;
423
527
  };
@@ -432,6 +536,42 @@ declare function __VLS_template_4(): {
432
536
  };
433
537
 
434
538
  declare function __VLS_template_5(): {
539
+ attrs: Partial<{}>;
540
+ slots: {
541
+ default?(_: {
542
+ isOpen: boolean;
543
+ header: "header";
544
+ footer: "footer";
545
+ content: "content";
546
+ }): any;
547
+ icon?(_: {
548
+ isOpen: boolean;
549
+ }): any;
550
+ };
551
+ refs: {};
552
+ rootEl: any;
553
+ };
554
+
555
+ declare function __VLS_template_6(): {
556
+ attrs: Partial<{}>;
557
+ slots: {
558
+ default?(_: {}): any;
559
+ };
560
+ refs: {};
561
+ rootEl: any;
562
+ };
563
+
564
+ declare function __VLS_template_7(): {
565
+ attrs: Partial<{}>;
566
+ slots: {
567
+ default?(_: {}): any;
568
+ default?(_: {}): any;
569
+ };
570
+ refs: {};
571
+ rootEl: HTMLButtonElement;
572
+ };
573
+
574
+ declare function __VLS_template_8(): {
435
575
  attrs: Partial<{}>;
436
576
  slots: {
437
577
  default?(_: {}): any;
@@ -442,7 +582,7 @@ declare function __VLS_template_5(): {
442
582
  rootEl: any;
443
583
  };
444
584
 
445
- declare function __VLS_template_6(): {
585
+ declare function __VLS_template_9(): {
446
586
  attrs: Partial<{}>;
447
587
  slots: {
448
588
  default?(_: {}): any;
@@ -467,6 +607,12 @@ declare type __VLS_TemplateResult_5 = ReturnType<typeof __VLS_template_5>;
467
607
 
468
608
  declare type __VLS_TemplateResult_6 = ReturnType<typeof __VLS_template_6>;
469
609
 
610
+ declare type __VLS_TemplateResult_7 = ReturnType<typeof __VLS_template_7>;
611
+
612
+ declare type __VLS_TemplateResult_8 = ReturnType<typeof __VLS_template_8>;
613
+
614
+ declare type __VLS_TemplateResult_9 = ReturnType<typeof __VLS_template_9>;
615
+
470
616
  declare type __VLS_WithTemplateSlots<T, S> = T & {
471
617
  new (): {
472
618
  $slots: S;
@@ -503,6 +649,24 @@ declare type __VLS_WithTemplateSlots_6<T, S> = T & {
503
649
  };
504
650
  };
505
651
 
652
+ declare type __VLS_WithTemplateSlots_7<T, S> = T & {
653
+ new (): {
654
+ $slots: S;
655
+ };
656
+ };
657
+
658
+ declare type __VLS_WithTemplateSlots_8<T, S> = T & {
659
+ new (): {
660
+ $slots: S;
661
+ };
662
+ };
663
+
664
+ declare type __VLS_WithTemplateSlots_9<T, S> = T & {
665
+ new (): {
666
+ $slots: S;
667
+ };
668
+ };
669
+
506
670
  /* Excluded from this release type: actionFromKeyboardEvent */
507
671
 
508
672
  /**
@@ -957,6 +1121,14 @@ align: string;
957
1121
  export { _default as FValidationForm }
958
1122
  export { _default as IValidationForm }
959
1123
 
1124
+ /**
1125
+ * @public
1126
+ */
1127
+ export declare type DetailsPanelCloseCallback<T> = (data: {
1128
+ item: T;
1129
+ reason: string;
1130
+ }) => void;
1131
+
960
1132
  /* Excluded from this release type: dispatchComponentUnmountEvent */
961
1133
 
962
1134
  /**
@@ -3488,134 +3660,7 @@ rotate: string;
3488
3660
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3489
3661
  }, {}, string, ComponentProvideOptions, true, {}, any>;
3490
3662
 
3491
- export declare const FCrudButton: DefineComponent<ExtractPropTypes< {
3492
- /**
3493
- * The action to be performed by the button.
3494
- * Must be one of the following values: "delete" or "modify".
3495
- */
3496
- action: {
3497
- type: StringConstructor;
3498
- required: true;
3499
- validator(value: string): boolean;
3500
- };
3501
- /**
3502
- * Determines if an icon should be displayed on the button.
3503
- */
3504
- icon: {
3505
- type: BooleanConstructor;
3506
- default: boolean;
3507
- };
3508
- /**
3509
- * The item that the action will be performed on.
3510
- */
3511
- item: {
3512
- type: ObjectConstructor;
3513
- required: true;
3514
- };
3515
- /**
3516
- * Determines if the button should display a label.
3517
- * If false, the button will use a visually hidden text for accessibility.
3518
- */
3519
- label: {
3520
- type: BooleanConstructor;
3521
- default: boolean;
3522
- };
3523
- }>, FCrudDatasetInterface, {}, {
3524
- iconName(): string;
3525
- buttonText(): string;
3526
- }, {
3527
- executeAction(): void;
3528
- }, ComponentOptions, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
3529
- /**
3530
- * The action to be performed by the button.
3531
- * Must be one of the following values: "delete" or "modify".
3532
- */
3533
- action: {
3534
- type: StringConstructor;
3535
- required: true;
3536
- validator(value: string): boolean;
3537
- };
3538
- /**
3539
- * Determines if an icon should be displayed on the button.
3540
- */
3541
- icon: {
3542
- type: BooleanConstructor;
3543
- default: boolean;
3544
- };
3545
- /**
3546
- * The item that the action will be performed on.
3547
- */
3548
- item: {
3549
- type: ObjectConstructor;
3550
- required: true;
3551
- };
3552
- /**
3553
- * Determines if the button should display a label.
3554
- * If false, the button will use a visually hidden text for accessibility.
3555
- */
3556
- label: {
3557
- type: BooleanConstructor;
3558
- default: boolean;
3559
- };
3560
- }>> & Readonly<{}>, {
3561
- label: boolean;
3562
- icon: boolean;
3563
- }, {}, {
3564
- FIcon: DefineComponent<ExtractPropTypes< {
3565
- name: {
3566
- type: StringConstructor;
3567
- required: true;
3568
- };
3569
- library: {
3570
- type: StringConstructor;
3571
- required: false;
3572
- default: string;
3573
- };
3574
- flip: {
3575
- type: PropType<string>;
3576
- default: null;
3577
- required: false;
3578
- validator(value: string): boolean;
3579
- };
3580
- rotate: {
3581
- type: PropType<string>;
3582
- default: null;
3583
- required: false;
3584
- validator(value: string): boolean;
3585
- };
3586
- }>, {}, {}, {
3587
- spriteKey(): string;
3588
- spriteId(): string;
3589
- modifiers(): string[];
3590
- ariaHidden(): "true" | undefined;
3591
- }, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
3592
- name: {
3593
- type: StringConstructor;
3594
- required: true;
3595
- };
3596
- library: {
3597
- type: StringConstructor;
3598
- required: false;
3599
- default: string;
3600
- };
3601
- flip: {
3602
- type: PropType<string>;
3603
- default: null;
3604
- required: false;
3605
- validator(value: string): boolean;
3606
- };
3607
- rotate: {
3608
- type: PropType<string>;
3609
- default: null;
3610
- required: false;
3611
- validator(value: string): boolean;
3612
- };
3613
- }>> & Readonly<{}>, {
3614
- library: string;
3615
- flip: string;
3616
- rotate: string;
3617
- }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3618
- }, {}, string, ComponentProvideOptions, true, {}, any>;
3663
+ export declare const FCrudButton: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
3619
3664
 
3620
3665
  export declare const FCrudDataset: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
3621
3666
  props: __VLS_PrettifyLocal<Pick<Partial<{
@@ -3646,7 +3691,10 @@ export declare const FCrudDataset: <T>(__VLS_props: NonNullable<Awaited<typeof _
3646
3691
  expose(exposed: ShallowUnwrapRef< {}>): void;
3647
3692
  attrs: any;
3648
3693
  slots: {
3649
- default?(_: {}): any;
3694
+ default?(_: {
3695
+ updateItem: (current: T) => void;
3696
+ deleteItem: (current: T) => void;
3697
+ }): any;
3650
3698
  'add-button'?(_: {}): any;
3651
3699
  buttons?(_: {
3652
3700
  buttonClasses: string[];
@@ -5238,6 +5286,34 @@ highlight: boolean;
5238
5286
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
5239
5287
  }, {}, string, ComponentProvideOptions, true, {}, any>;
5240
5288
 
5289
+ export declare const FDetailsPanel: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_3<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
5290
+ props: __VLS_PrettifyLocal_3<Pick<Partial<{}> & Omit<{} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, never> & {
5291
+ /**
5292
+ * Name of this panel. Used when referencing the panel in useDetailsPanel.
5293
+ */
5294
+ name: string;
5295
+ /**
5296
+ * An optional identifier to prevent other panels with the same identifier
5297
+ * from being open at the same time.
5298
+ */
5299
+ exclusive?: string;
5300
+ } & Partial<{}>> & PublicProps;
5301
+ expose(exposed: ShallowUnwrapRef< {}>): void;
5302
+ attrs: any;
5303
+ slots: {
5304
+ default?(_: {
5305
+ item: T;
5306
+ close: (reason?: string) => void;
5307
+ header: "header";
5308
+ footer: "footer";
5309
+ content: "content";
5310
+ }): any;
5311
+ };
5312
+ emit: {};
5313
+ }>) => VNode & {
5314
+ __ctx?: Awaited<typeof __VLS_setup>;
5315
+ };
5316
+
5241
5317
  export declare const FDialogueTree: DefineComponent<ExtractPropTypes< {
5242
5318
  /**
5243
5319
  * Current dialogue question
@@ -7078,6 +7154,8 @@ rotate: string;
7078
7154
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
7079
7155
  }, {}, string, ComponentProvideOptions, true, {}, any>;
7080
7156
 
7157
+ export declare const FFixedPane: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
7158
+
7081
7159
  export declare const FFormModal: DefineComponent<ExtractPropTypes< {
7082
7160
  /**
7083
7161
  * Enable fullscreen mode in mobile.
@@ -7868,8 +7946,8 @@ export declare function findHTMLElementFromVueRef(ref: unknown): HTMLElement | u
7868
7946
  */
7869
7947
  export declare function findParentByName(vm: ComponentPublicInstance | undefined | null, name: string): ComponentPublicInstance | undefined;
7870
7948
 
7871
- export declare const FInteractiveTable: <T extends object, K extends keyof T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_3<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
7872
- props: __VLS_PrettifyLocal_3<Pick<Partial<{
7949
+ export declare const FInteractiveTable: <T extends object, K extends keyof T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_4<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
7950
+ props: __VLS_PrettifyLocal_4<Pick<Partial<{
7873
7951
  modelValue: T[] | undefined;
7874
7952
  scroll: TableScroll;
7875
7953
  keyAttribute: string;
@@ -7882,11 +7960,11 @@ export declare const FInteractiveTable: <T extends object, K extends keyof T>(__
7882
7960
  active: [{
7883
7961
  type: PropType<T | undefined>;
7884
7962
  required: false;
7885
- default: () => undefined;
7963
+ default: undefined;
7886
7964
  }] extends [Prop<infer V, infer D>] ? unknown extends V ? keyof V extends never ? IfAny<V, V, D> : V : V : {
7887
7965
  type: PropType<T | undefined>;
7888
7966
  required: false;
7889
- default: () => undefined;
7967
+ default: undefined;
7890
7968
  };
7891
7969
  }> & Omit<{
7892
7970
  readonly scroll: TableScroll;
@@ -7902,11 +7980,11 @@ export declare const FInteractiveTable: <T extends object, K extends keyof T>(__
7902
7980
  readonly active?: ([{
7903
7981
  type: PropType<T | undefined>;
7904
7982
  required: false;
7905
- default: () => undefined;
7983
+ default: undefined;
7906
7984
  }] extends [Prop<infer V, infer D>] ? unknown extends V ? keyof V extends never ? IfAny<V, V, D> : V : V : {
7907
7985
  type: PropType<T | undefined>;
7908
7986
  required: false;
7909
- default: () => undefined;
7987
+ default: undefined;
7910
7988
  }) | undefined;
7911
7989
  readonly onSelect?: ((row: T) => any) | undefined;
7912
7990
  readonly onCollapse?: ((row: T) => any) | undefined;
@@ -7915,7 +7993,7 @@ export declare const FInteractiveTable: <T extends object, K extends keyof T>(__
7915
7993
  readonly onClick?: ((row: T) => any) | undefined;
7916
7994
  readonly onExpand?: ((row: T) => any) | undefined;
7917
7995
  readonly onUnselect?: ((row: T) => any) | undefined;
7918
- readonly "onUpdate:active"?: ((row: T) => any) | undefined;
7996
+ readonly "onUpdate:active"?: ((row: T | undefined) => any) | undefined;
7919
7997
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "modelValue" | "scroll" | "keyAttribute" | "striped" | "hover" | "expandableAttribute" | "expandableDescribedby" | "selectable" | "showActive" | "active">, "onChange" | "onClick" | "onSelect" | "onUpdate:modelValue" | "rows" | "onCollapse" | "onExpand" | "onUnselect" | "onUpdate:active" | ("modelValue" | "scroll" | "keyAttribute" | "striped" | "hover" | "expandableAttribute" | "expandableDescribedby" | "selectable" | "showActive" | "active")> & {} & Partial<{}>> & PublicProps;
7920
7998
  expose(exposed: ShallowUnwrapRef< {}>): void;
7921
7999
  attrs: any;
@@ -7946,7 +8024,7 @@ export declare const FInteractiveTable: <T extends object, K extends keyof T>(__
7946
8024
  }): any;
7947
8025
  empty?(_: {}): any;
7948
8026
  };
7949
- emit: ((evt: "select", row: T) => void) & ((evt: "collapse", row: T) => void) & ((evt: "update:modelValue", rows: T[]) => void) & ((evt: "change", row: T) => void) & ((evt: "click", row: T) => void) & ((evt: "expand", row: T) => void) & ((evt: "unselect", row: T) => void) & ((evt: "update:active", row: T) => void);
8027
+ emit: ((evt: "select", row: T) => void) & ((evt: "collapse", row: T) => void) & ((evt: "update:modelValue", rows: T[]) => void) & ((evt: "change", row: T) => void) & ((evt: "click", row: T) => void) & ((evt: "expand", row: T) => void) & ((evt: "unselect", row: T) => void) & ((evt: "update:active", row: T | undefined) => void);
7950
8028
  }>) => VNode & {
7951
8029
  __ctx?: Awaited<typeof __VLS_setup>;
7952
8030
  };
@@ -8298,8 +8376,8 @@ export declare interface FLayoutRightPanelInteface {
8298
8376
  */
8299
8377
  export declare const FLayoutRightPanelService: FLayoutRightPanelInteface;
8300
8378
 
8301
- export declare const FList: <T extends object>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_4<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
8302
- props: __VLS_PrettifyLocal_4<Pick<Partial<{
8379
+ export declare const FList: <T extends object>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_5<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
8380
+ props: __VLS_PrettifyLocal_5<Pick<Partial<{
8303
8381
  elementId: string;
8304
8382
  modelValue: T[] | undefined;
8305
8383
  checkbox: boolean;
@@ -8588,9 +8666,9 @@ default: string;
8588
8666
  validator(value: string): boolean;
8589
8667
  };
8590
8668
  }>> & Readonly<{}>, {
8669
+ layout: "standard" | "short";
8591
8670
  banner: boolean;
8592
8671
  provideScreenReaderContext: boolean;
8593
- layout: "standard" | "short";
8594
8672
  }, {}, {
8595
8673
  FIcon: DefineComponent<ExtractPropTypes< {
8596
8674
  name: {
@@ -8729,6 +8807,8 @@ align: string;
8729
8807
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
8730
8808
  }, {}, string, ComponentProvideOptions, true, {}, any>;
8731
8809
 
8810
+ export declare const FMinimizablePanel: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
8811
+
8732
8812
  /**
8733
8813
  * Level: Ready
8734
8814
  */
@@ -9910,9 +9990,9 @@ required: false;
9910
9990
  default: typeof parseNumber;
9911
9991
  };
9912
9992
  }>> & Readonly<{}>, {
9993
+ decimals: number;
9913
9994
  formatter: FormatFunction<number>;
9914
9995
  parser: ParseFunction<number>;
9915
- decimals: number;
9916
9996
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
9917
9997
 
9918
9998
  /**
@@ -10542,6 +10622,13 @@ formatter: FormatFunction<string>;
10542
10622
  */
10543
10623
  export declare type FormatFunction<TModel> = (modelValue: TModel) => string | undefined;
10544
10624
 
10625
+ /**
10626
+ * FormatPlugin: A Vue directive plugin for formatting text based on a provided format definition.
10627
+ *
10628
+ * @public
10629
+ */
10630
+ export declare const FormatPlugin: Plugin_2;
10631
+
10545
10632
  /**
10546
10633
  * @public
10547
10634
  */
@@ -10784,7 +10871,43 @@ href: string;
10784
10871
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
10785
10872
  }, {}, string, ComponentProvideOptions, true, {}, any>;
10786
10873
 
10787
- export declare const FPageLayout: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
10874
+ export declare const FPageLayout: <T extends FPageLayoutType>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_6<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
10875
+ props: __VLS_PrettifyLocal_6<Pick<Partial<{}> & Omit<{
10876
+ readonly onUpdate?: (() => any) | undefined;
10877
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, "onUpdate"> & {
10878
+ layout: T;
10879
+ } & Partial<{}>> & PublicProps;
10880
+ expose(exposed: ShallowUnwrapRef< {}>): void;
10881
+ attrs: any;
10882
+ slots: {
10883
+ default?(_: FPageLayoutBindings<T>): any;
10884
+ };
10885
+ emit: (evt: "update") => void;
10886
+ }>) => VNode & {
10887
+ __ctx?: Awaited<typeof __VLS_setup>;
10888
+ };
10889
+
10890
+ /**
10891
+ * @public
10892
+ */
10893
+ export declare type FPageLayoutBindings<K extends string> = K extends FPageLayoutType ? {
10894
+ [Property in FPageLayoutSlotMapping[K][number]]: `${Property}`;
10895
+ } : never;
10896
+
10897
+ /**
10898
+ * @public
10899
+ */
10900
+ export declare interface FPageLayoutSlotMapping {
10901
+ simple: ["header", "content", "footer"];
10902
+ "left-panel": ["header", "left", "content", "footer"];
10903
+ "right-panel": ["header", "right", "content", "footer"];
10904
+ "three-column": ["header", "left", "right", "content", "footer"];
10905
+ }
10906
+
10907
+ /**
10908
+ * @public
10909
+ */
10910
+ export declare type FPageLayoutType = Exclude<keyof FPageLayoutSlotMapping, never>;
10788
10911
 
10789
10912
  export declare const FPercentTextField: DefineComponent<ExtractPropTypes< {
10790
10913
  /**
@@ -11266,9 +11389,9 @@ required: false;
11266
11389
  default: typeof parsePercent;
11267
11390
  };
11268
11391
  }>> & Readonly<{}>, {
11392
+ decimals: number;
11269
11393
  formatter: FormatFunction<number>;
11270
11394
  parser: ParseFunction<number>;
11271
- decimals: number;
11272
11395
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
11273
11396
 
11274
11397
  export declare const FPersonnummerTextField: DefineComponent<ExtractPropTypes< {
@@ -13341,7 +13464,7 @@ id: string;
13341
13464
  disabled: boolean;
13342
13465
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
13343
13466
 
13344
- export declare const FResizePane: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
13467
+ export declare const FResizePane: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
13345
13468
 
13346
13469
  export declare const FSearchTextField: DefineComponent<ExtractPropTypes< {
13347
13470
  id: {
@@ -14156,8 +14279,8 @@ rotate: string;
14156
14279
  }, {}, string, ComponentProvideOptions, true, {}, any>;
14157
14280
  }, {}, string, ComponentProvideOptions, true, {}, any>;
14158
14281
 
14159
- export declare const FSortFilterDataset: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_5<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
14160
- props: __VLS_PrettifyLocal_5<Pick<Partial<{
14282
+ export declare const FSortFilterDataset: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_7<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
14283
+ props: __VLS_PrettifyLocal_7<Pick<Partial<{
14161
14284
  data: T[];
14162
14285
  defaultSortAttribute: string;
14163
14286
  showSort: boolean;
@@ -14314,7 +14437,9 @@ rotate: string;
14314
14437
  }, {}, string, ComponentProvideOptions, true, {}, any>;
14315
14438
  }, {}, string, ComponentProvideOptions, true, {}, any>;
14316
14439
 
14317
- export declare const FTableColumn: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
14440
+ export declare const FTableButton: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
14441
+
14442
+ export declare const FTableColumn: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
14318
14443
 
14319
14444
  /**
14320
14445
  * @public
@@ -14385,7 +14510,7 @@ export declare interface FTableInterface {
14385
14510
  * - When disabled the column will be registered in the table component but
14386
14511
  * no actual content will be rendered.
14387
14512
  */
14388
- readonly renderColumns: boolean;
14513
+ readonly renderColumns: Ref<boolean>;
14389
14514
  }
14390
14515
 
14391
14516
  export declare const FTextareaField: DefineComponent<ExtractPropTypes< {
@@ -16860,10 +16985,10 @@ rotate: string;
16860
16985
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
16861
16986
  }, {}, string, ComponentProvideOptions, true, {}, any>;
16862
16987
 
16863
- export declare const IComboboxDropdown: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
16988
+ export declare const IComboboxDropdown: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
16864
16989
  select: (option: string) => any;
16865
16990
  close: () => any;
16866
- }, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{
16991
+ }, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{
16867
16992
  onSelect?: ((option: string) => any) | undefined;
16868
16993
  onClose?: (() => any) | undefined;
16869
16994
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
@@ -17358,7 +17483,7 @@ export declare interface IPopupErrorData {
17358
17483
  arrowOffset: number;
17359
17484
  }
17360
17485
 
17361
- export declare const IPopupListbox: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
17486
+ export declare const IPopupListbox: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
17362
17487
 
17363
17488
  declare interface IPopupListboxProps {
17364
17489
  isOpen: boolean;
@@ -18089,7 +18214,13 @@ export declare type StepNumber = number;
18089
18214
  */
18090
18215
  export declare enum TableScroll {
18091
18216
  HORIZONTAL = "horizontal",
18217
+ /**
18218
+ * @deprecated Only horizontal is supported. Deprecated since 6.7.0.
18219
+ */
18092
18220
  VERTICAL = "vertical",
18221
+ /**
18222
+ * @deprecated Acts as horizontal. Recommended to use `TableScroll.HORIZONTAL` instead. Deprecated since 6.7.0.
18223
+ */
18093
18224
  BOTH = "both",
18094
18225
  NONE = "none"
18095
18226
  }
@@ -18214,6 +18345,24 @@ export declare function useCombobox(inputRef: Readonly<ShallowRef<HTMLInputEleme
18214
18345
  closeDropdown: () => void;
18215
18346
  };
18216
18347
 
18348
+ /**
18349
+ * @public
18350
+ */
18351
+ export declare interface UseDetailsPanel<T = unknown> {
18352
+ open(item: T, options?: {
18353
+ onClose?: DetailsPanelCloseCallback<T>;
18354
+ }): void;
18355
+ close(): void;
18356
+ }
18357
+
18358
+ /**
18359
+ * Get a API object to access details panels (FDetailsPanel).
18360
+ *
18361
+ * @public
18362
+ * @param name - Name of panel.
18363
+ */
18364
+ export declare function useDetailsPanel<T = unknown>(name: string): UseDetailsPanel<T>;
18365
+
18217
18366
  /**
18218
18367
  * Composable to get access to modal functions.
18219
18368
  *