@fkui/vue 6.3.0 → 6.4.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,16 +129,194 @@ 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, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
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>;
133
137
 
134
138
  declare const __VLS_component_4: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {
135
- disabled: boolean;
136
139
  min: string;
137
140
  max: string;
138
141
  initial: string;
139
142
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
140
143
 
141
- declare const __VLS_component_5: DefineComponent<IPopupListboxProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
144
+ declare const __VLS_component_5: DefineComponent<ExtractPropTypes< {
145
+ /**
146
+ * Unique (per-table) identifier.
147
+ *
148
+ * Typically set to the row property displayed but any unique string can
149
+ * be used.
150
+ */
151
+ name: {
152
+ type: StringConstructor;
153
+ required: true;
154
+ };
155
+ /**
156
+ * If set to true, display the column, set to false to hide it.
157
+ */
158
+ visible: {
159
+ type: BooleanConstructor;
160
+ default: boolean;
161
+ };
162
+ /**
163
+ * If `true` this cell will be a row header (`<th>` as opposed to
164
+ * `<td>`).
165
+ */
166
+ rowHeader: {
167
+ type: BooleanConstructor;
168
+ required: false;
169
+ default: boolean;
170
+ };
171
+ /**
172
+ * Text to show in column header. In order to force newlines use `\n`.
173
+ */
174
+ title: {
175
+ type: StringConstructor;
176
+ required: true;
177
+ };
178
+ /**
179
+ * Additional column description.
180
+ */
181
+ description: {
182
+ type: StringConstructor;
183
+ required: false;
184
+ default: string;
185
+ };
186
+ /**
187
+ * Set this column to shrink as small as possible.
188
+ *
189
+ * Cannot be combined with `expand`
190
+ */
191
+ shrink: {
192
+ type: BooleanConstructor;
193
+ required: false;
194
+ default: boolean;
195
+ };
196
+ /**
197
+ * Set this column to expand as large as possible.
198
+ *
199
+ * Cannot be combined with `shrink`
200
+ *
201
+ * Default if neither `expand` or `shrink` is set.
202
+ */
203
+ expand: {
204
+ type: BooleanConstructor;
205
+ required: false;
206
+ default: boolean;
207
+ };
208
+ /**
209
+ * Type of data the rows contains.
210
+ *
211
+ * Applies proper alignment and some styling (e.g. "numeric" uses fixed
212
+ * width numbers).
213
+ *
214
+ * Can be one of the following values:
215
+ *
216
+ * - `"text"`: regular text data (default)
217
+ * - `"date"`: date (should be YYYY-MM-DD)
218
+ * - `"numeric"`: numeric data
219
+ * - `"action"`: buttons to perform actions on row
220
+ */
221
+ type: {
222
+ type: PropType<"text" | "date" | "numeric" | "action">;
223
+ required: false;
224
+ default: FTableColumnType;
225
+ validator(value: string): value is FTableColumnType;
226
+ };
227
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
228
+ /**
229
+ * Unique (per-table) identifier.
230
+ *
231
+ * Typically set to the row property displayed but any unique string can
232
+ * be used.
233
+ */
234
+ name: {
235
+ type: StringConstructor;
236
+ required: true;
237
+ };
238
+ /**
239
+ * If set to true, display the column, set to false to hide it.
240
+ */
241
+ visible: {
242
+ type: BooleanConstructor;
243
+ default: boolean;
244
+ };
245
+ /**
246
+ * If `true` this cell will be a row header (`<th>` as opposed to
247
+ * `<td>`).
248
+ */
249
+ rowHeader: {
250
+ type: BooleanConstructor;
251
+ required: false;
252
+ default: boolean;
253
+ };
254
+ /**
255
+ * Text to show in column header. In order to force newlines use `\n`.
256
+ */
257
+ title: {
258
+ type: StringConstructor;
259
+ required: true;
260
+ };
261
+ /**
262
+ * Additional column description.
263
+ */
264
+ description: {
265
+ type: StringConstructor;
266
+ required: false;
267
+ default: string;
268
+ };
269
+ /**
270
+ * Set this column to shrink as small as possible.
271
+ *
272
+ * Cannot be combined with `expand`
273
+ */
274
+ shrink: {
275
+ type: BooleanConstructor;
276
+ required: false;
277
+ default: boolean;
278
+ };
279
+ /**
280
+ * Set this column to expand as large as possible.
281
+ *
282
+ * Cannot be combined with `shrink`
283
+ *
284
+ * Default if neither `expand` or `shrink` is set.
285
+ */
286
+ expand: {
287
+ type: BooleanConstructor;
288
+ required: false;
289
+ default: boolean;
290
+ };
291
+ /**
292
+ * Type of data the rows contains.
293
+ *
294
+ * Applies proper alignment and some styling (e.g. "numeric" uses fixed
295
+ * width numbers).
296
+ *
297
+ * Can be one of the following values:
298
+ *
299
+ * - `"text"`: regular text data (default)
300
+ * - `"date"`: date (should be YYYY-MM-DD)
301
+ * - `"numeric"`: numeric data
302
+ * - `"action"`: buttons to perform actions on row
303
+ */
304
+ type: {
305
+ type: PropType<"text" | "date" | "numeric" | "action">;
306
+ required: false;
307
+ default: FTableColumnType;
308
+ validator(value: string): value is FTableColumnType;
309
+ };
310
+ }>> & Readonly<{}>, {
311
+ type: "text" | "date" | "action" | "numeric";
312
+ description: string;
313
+ shrink: boolean;
314
+ expand: boolean;
315
+ visible: boolean;
316
+ rowHeader: boolean;
317
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
318
+
319
+ declare const __VLS_component_6: DefineComponent<IPopupListboxProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
142
320
  close: () => any;
143
321
  }, string, PublicProps, Readonly<IPopupListboxProps> & Readonly<{
144
322
  onClose?: (() => any) | undefined;
@@ -173,10 +351,6 @@ declare type __VLS_Props = {
173
351
  };
174
352
 
175
353
  declare type __VLS_Props_2 = {
176
- /**
177
- * Disables resizing. The current size is locked.
178
- */
179
- disabled?: boolean;
180
354
  /**
181
355
  * Minimal size of pane.
182
356
  *
@@ -255,6 +429,15 @@ declare function __VLS_template_4(): {
255
429
  };
256
430
 
257
431
  declare function __VLS_template_5(): {
432
+ attrs: Partial<{}>;
433
+ slots: {
434
+ default?(_: {}): any;
435
+ };
436
+ refs: {};
437
+ rootEl: any;
438
+ };
439
+
440
+ declare function __VLS_template_6(): {
258
441
  attrs: Partial<{}>;
259
442
  slots: {
260
443
  default?(_: {}): any;
@@ -277,6 +460,8 @@ declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
277
460
 
278
461
  declare type __VLS_TemplateResult_5 = ReturnType<typeof __VLS_template_5>;
279
462
 
463
+ declare type __VLS_TemplateResult_6 = ReturnType<typeof __VLS_template_6>;
464
+
280
465
  declare type __VLS_WithTemplateSlots<T, S> = T & {
281
466
  new (): {
282
467
  $slots: S;
@@ -307,6 +492,12 @@ declare type __VLS_WithTemplateSlots_5<T, S> = T & {
307
492
  };
308
493
  };
309
494
 
495
+ declare type __VLS_WithTemplateSlots_6<T, S> = T & {
496
+ new (): {
497
+ $slots: S;
498
+ };
499
+ };
500
+
310
501
  /* Excluded from this release type: actionFromKeyboardEvent */
311
502
 
312
503
  /**
@@ -1003,7 +1194,7 @@ resolveNewModelValue(viewValue: string): unknown;
1003
1194
  syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
1004
1195
  triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
1005
1196
  setViewValueToFormattedValueOrFallbackToValue(): void;
1006
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue")[], "blur" | "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
1197
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
1007
1198
  id: {
1008
1199
  type: StringConstructor;
1009
1200
  required: false;
@@ -1312,8 +1503,8 @@ activeOption: string | null;
1312
1503
  activeOptionId: string;
1313
1504
  inputNode: HTMLInputElement;
1314
1505
  }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1315
- close: () => any;
1316
1506
  select: (option: string) => any;
1507
+ close: () => any;
1317
1508
  }, string, PublicProps, Readonly<{
1318
1509
  id: string;
1319
1510
  isOpen: boolean;
@@ -1322,8 +1513,8 @@ activeOption: string | null;
1322
1513
  activeOptionId: string;
1323
1514
  inputNode: HTMLInputElement;
1324
1515
  }> & Readonly<{
1325
- onClose?: (() => any) | undefined;
1326
1516
  onSelect?: ((option: string) => any) | undefined;
1517
+ onClose?: (() => any) | undefined;
1327
1518
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
1328
1519
  listbox: HTMLUListElement;
1329
1520
  }, HTMLDivElement>;
@@ -1460,7 +1651,7 @@ resolveNewModelValue(viewValue: string): unknown;
1460
1651
  syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
1461
1652
  triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
1462
1653
  setViewValueToFormattedValueOrFallbackToValue(): void;
1463
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue")[], "blur" | "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
1654
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
1464
1655
  id: {
1465
1656
  type: StringConstructor;
1466
1657
  required: false;
@@ -1769,8 +1960,8 @@ activeOption: string | null;
1769
1960
  activeOptionId: string;
1770
1961
  inputNode: HTMLInputElement;
1771
1962
  }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1772
- close: () => any;
1773
1963
  select: (option: string) => any;
1964
+ close: () => any;
1774
1965
  }, string, PublicProps, Readonly<{
1775
1966
  id: string;
1776
1967
  isOpen: boolean;
@@ -1779,8 +1970,8 @@ activeOption: string | null;
1779
1970
  activeOptionId: string;
1780
1971
  inputNode: HTMLInputElement;
1781
1972
  }> & Readonly<{
1782
- onClose?: (() => any) | undefined;
1783
1973
  onSelect?: ((option: string) => any) | undefined;
1974
+ onClose?: (() => any) | undefined;
1784
1975
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
1785
1976
  listbox: HTMLUListElement;
1786
1977
  }, HTMLDivElement>;
@@ -1836,7 +2027,7 @@ required: true;
1836
2027
  }>, {}, {}, {}, {
1837
2028
  onClickDay(date: FDate): void;
1838
2029
  onChangeMonth(date: FDate): void;
1839
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("click" | "update:modelValue")[], "click" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
2030
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "click")[], "update:modelValue" | "click", PublicProps, Readonly<ExtractPropTypes< {
1840
2031
  /**
1841
2032
  * Active month.
1842
2033
  * @model
@@ -1904,7 +2095,7 @@ onClickPreviousButton(): void;
1904
2095
  onClickNextButton(): void;
1905
2096
  getDateText(value: FDate): string;
1906
2097
  isFocused(ref: string): boolean;
1907
- }, ComponentOptions, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
2098
+ }, ComponentOptions, ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", PublicProps, Readonly<ExtractPropTypes< {
1908
2099
  modelValue: {
1909
2100
  type: PropType<FDate>;
1910
2101
  required: true;
@@ -1999,7 +2190,7 @@ onClickDay(date: FDate): void;
1999
2190
  onKeydownDay(date: FDate, event: KeyboardEvent): Promise<void>;
2000
2191
  isDayFocused(date: FDate): boolean;
2001
2192
  getTabindex(date: FDate): 0 | -1;
2002
- }, ComponentOptions, ComponentOptionsMixin, ("change" | "click" | "update:modelValue")[], "change" | "click" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
2193
+ }, ComponentOptions, ComponentOptionsMixin, ("update:modelValue" | "change" | "click")[], "update:modelValue" | "change" | "click", PublicProps, Readonly<ExtractPropTypes< {
2003
2194
  modelValue: {
2004
2195
  type: PropType<FDate>;
2005
2196
  required: true;
@@ -2231,7 +2422,7 @@ onValidity({ detail }: CustomEvent<ValidityEvent>): void;
2231
2422
  enter(element: Element): void;
2232
2423
  afterEnter(element: Element): void;
2233
2424
  leave(element: Element): void;
2234
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
2425
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", PublicProps, Readonly<ExtractPropTypes< {
2235
2426
  /**
2236
2427
  * Set to `true`, empty string `""` or string `"disabled"` to disable this input field.
2237
2428
  */
@@ -2391,7 +2582,7 @@ resolveNewModelValue(viewValue: string): unknown;
2391
2582
  syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
2392
2583
  triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
2393
2584
  setViewValueToFormattedValueOrFallbackToValue(): void;
2394
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue")[], "blur" | "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
2585
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
2395
2586
  id: {
2396
2587
  type: StringConstructor;
2397
2588
  required: false;
@@ -2700,8 +2891,8 @@ activeOption: string | null;
2700
2891
  activeOptionId: string;
2701
2892
  inputNode: HTMLInputElement;
2702
2893
  }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2703
- close: () => any;
2704
2894
  select: (option: string) => any;
2895
+ close: () => any;
2705
2896
  }, string, PublicProps, Readonly<{
2706
2897
  id: string;
2707
2898
  isOpen: boolean;
@@ -2710,8 +2901,8 @@ activeOption: string | null;
2710
2901
  activeOptionId: string;
2711
2902
  inputNode: HTMLInputElement;
2712
2903
  }> & Readonly<{
2713
- onClose?: (() => any) | undefined;
2714
2904
  onSelect?: ((option: string) => any) | undefined;
2905
+ onClose?: (() => any) | undefined;
2715
2906
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
2716
2907
  listbox: HTMLUListElement;
2717
2908
  }, HTMLDivElement>;
@@ -2877,12 +3068,12 @@ validator(value: string): boolean;
2877
3068
  }>> & Readonly<{
2878
3069
  [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
2879
3070
  }>, {
2880
- focus: "on" | "off" | "open";
2881
3071
  size: string;
2882
3072
  content: string;
2883
3073
  isOpen: boolean;
2884
3074
  fullscreen: boolean;
2885
3075
  ariaCloseText: string;
3076
+ focus: "on" | "off" | "open";
2886
3077
  heading: string;
2887
3078
  buttons: FModalButtonDescriptor[];
2888
3079
  }, {}, {
@@ -2973,12 +3164,12 @@ validator(value: string): boolean;
2973
3164
  onClose?: ((...args: any[]) => any) | undefined;
2974
3165
  }>, {
2975
3166
  type: "" | "warning" | "error" | "information";
2976
- focus: "on" | "off" | "open";
2977
3167
  size: string;
2978
3168
  isOpen: boolean;
2979
3169
  fullscreen: boolean;
2980
3170
  id: string;
2981
3171
  ariaCloseText: string;
3172
+ focus: "on" | "off" | "open";
2982
3173
  }, {}, {
2983
3174
  FIcon: DefineComponent<ExtractPropTypes< {
2984
3175
  name: {
@@ -3087,7 +3278,7 @@ doHandlePopupMenuTabKey(action: MenuAction): boolean;
3087
3278
  onKeyDown(event: KeyboardEvent): Promise<void>;
3088
3279
  setFocusOnItem(index: number): Promise<void>;
3089
3280
  activateItem(index: number): Promise<void>;
3090
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "select")[], "close" | "select", PublicProps, Readonly<ExtractPropTypes< {
3281
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "close")[], "select" | "close", PublicProps, Readonly<ExtractPropTypes< {
3091
3282
  /**
3092
3283
  * Toggle open/closed popup.
3093
3284
  */
@@ -3293,19 +3484,33 @@ rotate: string;
3293
3484
  }, {}, string, ComponentProvideOptions, true, {}, any>;
3294
3485
 
3295
3486
  export declare const FCrudButton: DefineComponent<ExtractPropTypes< {
3487
+ /**
3488
+ * The action to be performed by the button.
3489
+ * Must be one of the following values: "delete" or "modify".
3490
+ */
3296
3491
  action: {
3297
3492
  type: StringConstructor;
3298
3493
  required: true;
3299
3494
  validator(value: string): boolean;
3300
3495
  };
3496
+ /**
3497
+ * Determines if an icon should be displayed on the button.
3498
+ */
3301
3499
  icon: {
3302
3500
  type: BooleanConstructor;
3303
3501
  default: boolean;
3304
3502
  };
3503
+ /**
3504
+ * The item that the action will be performed on.
3505
+ */
3305
3506
  item: {
3306
3507
  type: ObjectConstructor;
3307
3508
  required: true;
3308
3509
  };
3510
+ /**
3511
+ * Determines if the button should display a label.
3512
+ * If false, the button will use a visually hidden text for accessibility.
3513
+ */
3309
3514
  label: {
3310
3515
  type: BooleanConstructor;
3311
3516
  default: boolean;
@@ -3316,19 +3521,33 @@ buttonText(): string;
3316
3521
  }, {
3317
3522
  executeAction(): void;
3318
3523
  }, ComponentOptions, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
3524
+ /**
3525
+ * The action to be performed by the button.
3526
+ * Must be one of the following values: "delete" or "modify".
3527
+ */
3319
3528
  action: {
3320
3529
  type: StringConstructor;
3321
3530
  required: true;
3322
3531
  validator(value: string): boolean;
3323
3532
  };
3533
+ /**
3534
+ * Determines if an icon should be displayed on the button.
3535
+ */
3324
3536
  icon: {
3325
3537
  type: BooleanConstructor;
3326
3538
  default: boolean;
3327
3539
  };
3540
+ /**
3541
+ * The item that the action will be performed on.
3542
+ */
3328
3543
  item: {
3329
3544
  type: ObjectConstructor;
3330
3545
  required: true;
3331
3546
  };
3547
+ /**
3548
+ * Determines if the button should display a label.
3549
+ * If false, the button will use a visually hidden text for accessibility.
3550
+ */
3332
3551
  label: {
3333
3552
  type: BooleanConstructor;
3334
3553
  default: boolean;
@@ -3424,6 +3643,9 @@ export declare const FCrudDataset: <T>(__VLS_props: NonNullable<Awaited<typeof _
3424
3643
  slots: {
3425
3644
  default?(_: {}): any;
3426
3645
  'add-button'?(_: {}): any;
3646
+ buttons?(_: {
3647
+ buttonClasses: string[];
3648
+ }): any;
3427
3649
  add?(_: {
3428
3650
  item: NonNullable<DistributeRef<[T | null] extends [Ref<any, any>] ? IfAny<Ref<any, any> & T, Ref<Ref<any, any> & T, Ref<any, any> & T>, Ref<any, any> & T> : Ref<UnwrapRef<T> | null, T | UnwrapRef<T> | null>>>;
3429
3651
  }): any;
@@ -3570,7 +3792,7 @@ resolveNewModelValue(viewValue: string): unknown;
3570
3792
  syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
3571
3793
  triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
3572
3794
  setViewValueToFormattedValueOrFallbackToValue(): void;
3573
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue")[], "blur" | "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
3795
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
3574
3796
  id: {
3575
3797
  type: StringConstructor;
3576
3798
  required: false;
@@ -3879,8 +4101,8 @@ activeOption: string | null;
3879
4101
  activeOptionId: string;
3880
4102
  inputNode: HTMLInputElement;
3881
4103
  }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
3882
- close: () => any;
3883
4104
  select: (option: string) => any;
4105
+ close: () => any;
3884
4106
  }, string, PublicProps, Readonly<{
3885
4107
  id: string;
3886
4108
  isOpen: boolean;
@@ -3889,8 +4111,8 @@ activeOption: string | null;
3889
4111
  activeOptionId: string;
3890
4112
  inputNode: HTMLInputElement;
3891
4113
  }> & Readonly<{
3892
- onClose?: (() => any) | undefined;
3893
4114
  onSelect?: ((option: string) => any) | undefined;
4115
+ onClose?: (() => any) | undefined;
3894
4116
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
3895
4117
  listbox: HTMLUListElement;
3896
4118
  }, HTMLDivElement>;
@@ -3918,13 +4140,14 @@ parser: ParseFunction<number>;
3918
4140
  export declare const FDataTable: <T extends object>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_2<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
3919
4141
  props: __VLS_PrettifyLocal_2<Pick<Partial<{
3920
4142
  scroll: TableScroll;
4143
+ keyAttribute: string;
3921
4144
  striped: boolean;
3922
4145
  }> & Omit<{
3923
4146
  readonly scroll: TableScroll;
3924
4147
  readonly rows: T[];
3925
- readonly keyAttribute: string;
3926
4148
  readonly striped: boolean;
3927
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "scroll" | "striped">, "rows" | "keyAttribute" | ("scroll" | "striped")> & {} & Partial<{}>> & PublicProps;
4149
+ readonly keyAttribute?: string | undefined;
4150
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "scroll" | "keyAttribute" | "striped">, "rows" | ("scroll" | "keyAttribute" | "striped")> & {} & Partial<{}>> & PublicProps;
3928
4151
  expose(exposed: ShallowUnwrapRef< {}>): void;
3929
4152
  attrs: any;
3930
4153
  slots: {
@@ -4039,7 +4262,7 @@ isDateEnabled(day: FDate): boolean;
4039
4262
  isDaySelected(date: FDate): boolean;
4040
4263
  highlightDay(date: FDate): boolean;
4041
4264
  updateTextFieldValue(newValue: string): Promise<void>;
4042
- }, ComponentOptions, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
4265
+ }, ComponentOptions, ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", PublicProps, Readonly<ExtractPropTypes< {
4043
4266
  /** Selected day.
4044
4267
  * @model
4045
4268
  */
@@ -4137,7 +4360,7 @@ required: true;
4137
4360
  }>, {}, {}, {}, {
4138
4361
  onClickDay(date: FDate): void;
4139
4362
  onChangeMonth(date: FDate): void;
4140
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("click" | "update:modelValue")[], "click" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
4363
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "click")[], "update:modelValue" | "click", PublicProps, Readonly<ExtractPropTypes< {
4141
4364
  modelValue: {
4142
4365
  type: PropType<FDate>;
4143
4366
  required: true;
@@ -4189,7 +4412,7 @@ onClickPreviousButton(): void;
4189
4412
  onClickNextButton(): void;
4190
4413
  getDateText(value: FDate): string;
4191
4414
  isFocused(ref: string): boolean;
4192
- }, ComponentOptions, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
4415
+ }, ComponentOptions, ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", PublicProps, Readonly<ExtractPropTypes< {
4193
4416
  modelValue: {
4194
4417
  type: PropType<FDate>;
4195
4418
  required: true;
@@ -4284,7 +4507,7 @@ onClickDay(date: FDate): void;
4284
4507
  onKeydownDay(date: FDate, event: KeyboardEvent): Promise<void>;
4285
4508
  isDayFocused(date: FDate): boolean;
4286
4509
  getTabindex(date: FDate): 0 | -1;
4287
- }, ComponentOptions, ComponentOptionsMixin, ("change" | "click" | "update:modelValue")[], "change" | "click" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
4510
+ }, ComponentOptions, ComponentOptionsMixin, ("update:modelValue" | "change" | "click")[], "update:modelValue" | "change" | "click", PublicProps, Readonly<ExtractPropTypes< {
4288
4511
  modelValue: {
4289
4512
  type: PropType<FDate>;
4290
4513
  required: true;
@@ -4562,7 +4785,7 @@ resolveNewModelValue(viewValue: string): unknown;
4562
4785
  syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
4563
4786
  triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
4564
4787
  setViewValueToFormattedValueOrFallbackToValue(): void;
4565
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue")[], "blur" | "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
4788
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
4566
4789
  id: {
4567
4790
  type: StringConstructor;
4568
4791
  required: false;
@@ -4871,8 +5094,8 @@ activeOption: string | null;
4871
5094
  activeOptionId: string;
4872
5095
  inputNode: HTMLInputElement;
4873
5096
  }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
4874
- close: () => any;
4875
5097
  select: (option: string) => any;
5098
+ close: () => any;
4876
5099
  }, string, PublicProps, Readonly<{
4877
5100
  id: string;
4878
5101
  isOpen: boolean;
@@ -4881,8 +5104,8 @@ activeOption: string | null;
4881
5104
  activeOptionId: string;
4882
5105
  inputNode: HTMLInputElement;
4883
5106
  }> & Readonly<{
4884
- onClose?: (() => any) | undefined;
4885
5107
  onSelect?: ((option: string) => any) | undefined;
5108
+ onClose?: (() => any) | undefined;
4886
5109
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
4887
5110
  listbox: HTMLUListElement;
4888
5111
  }, HTMLDivElement>;
@@ -5205,7 +5428,7 @@ onValidity({ detail }: CustomEvent<ValidityEvent>): void;
5205
5428
  onPendingValidity(): void;
5206
5429
  configureValidators(): void;
5207
5430
  configureExtendedValidation(elements: HTMLInputElement[]): void;
5208
- }, ComponentOptions, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue")[], "blur" | "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
5431
+ }, ComponentOptions, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
5209
5432
  /**
5210
5433
  * The id for the input id attribute.
5211
5434
  * The id for the label for attribute.
@@ -5352,7 +5575,7 @@ resolveNewModelValue(viewValue: string): unknown;
5352
5575
  syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
5353
5576
  triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
5354
5577
  setViewValueToFormattedValueOrFallbackToValue(): void;
5355
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue")[], "blur" | "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
5578
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
5356
5579
  id: {
5357
5580
  type: StringConstructor;
5358
5581
  required: false;
@@ -5661,8 +5884,8 @@ activeOption: string | null;
5661
5884
  activeOptionId: string;
5662
5885
  inputNode: HTMLInputElement;
5663
5886
  }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
5664
- close: () => any;
5665
5887
  select: (option: string) => any;
5888
+ close: () => any;
5666
5889
  }, string, PublicProps, Readonly<{
5667
5890
  id: string;
5668
5891
  isOpen: boolean;
@@ -5671,8 +5894,8 @@ activeOption: string | null;
5671
5894
  activeOptionId: string;
5672
5895
  inputNode: HTMLInputElement;
5673
5896
  }> & Readonly<{
5674
- onClose?: (() => any) | undefined;
5675
5897
  onSelect?: ((option: string) => any) | undefined;
5898
+ onClose?: (() => any) | undefined;
5676
5899
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
5677
5900
  listbox: HTMLUListElement;
5678
5901
  }, HTMLDivElement>;
@@ -6000,6 +6223,10 @@ type: NumberConstructor;
6000
6223
  required: false;
6001
6224
  default: number;
6002
6225
  };
6226
+ /**
6227
+ * Text template for the screen reader notification text.
6228
+ * Use `%VALUE%` as a placeholder for the number of notifications.
6229
+ */
6003
6230
  screenReaderNotificationTemplate: {
6004
6231
  type: StringConstructor;
6005
6232
  required: false;
@@ -6049,6 +6276,10 @@ type: NumberConstructor;
6049
6276
  required: false;
6050
6277
  default: number;
6051
6278
  };
6279
+ /**
6280
+ * Text template for the screen reader notification text.
6281
+ * Use `%VALUE%` as a placeholder for the number of notifications.
6282
+ */
6052
6283
  screenReaderNotificationTemplate: {
6053
6284
  type: StringConstructor;
6054
6285
  required: false;
@@ -6743,6 +6974,9 @@ type: StringConstructor;
6743
6974
  required: false;
6744
6975
  default: () => string;
6745
6976
  };
6977
+ /**
6978
+ * Disables the file selector.
6979
+ */
6746
6980
  disabled: {
6747
6981
  type: BooleanConstructor;
6748
6982
  required: false;
@@ -6766,6 +7000,9 @@ type: StringConstructor;
6766
7000
  required: false;
6767
7001
  default: () => string;
6768
7002
  };
7003
+ /**
7004
+ * Disables the file selector.
7005
+ */
6769
7006
  disabled: {
6770
7007
  type: BooleanConstructor;
6771
7008
  required: false;
@@ -6917,6 +7154,14 @@ type: PropType<FValidationFormCallback>;
6917
7154
  required: false;
6918
7155
  default(): void;
6919
7156
  };
7157
+ /**
7158
+ * List of buttons to display in the modal.
7159
+ * Each button is defined as an FModalButtonDescriptor with the following properties:
7160
+ * - `label` (String): The text displayed on the button.
7161
+ * - `event` (String): The event emitted when the button is clicked.
7162
+ * - `type` (String): The button type. Valid values are: "primary" or "secondary".
7163
+ * - `submitButton` (Boolean): Whether the button is a submit button.
7164
+ */
6920
7165
  buttons: {
6921
7166
  type: PropType<FModalButtonDescriptor[]>;
6922
7167
  required: false;
@@ -6928,7 +7173,7 @@ preparedButtons(): FModalButton[];
6928
7173
  onClose(): void;
6929
7174
  onSubmit(): Promise<void>;
6930
7175
  onCancel(): void;
6931
- }, ComponentOptions, ComponentOptionsMixin, ("cancel" | "close" | "submit")[], "cancel" | "close" | "submit", PublicProps, Readonly<ExtractPropTypes< {
7176
+ }, ComponentOptions, ComponentOptionsMixin, ("close" | "submit" | "cancel")[], "close" | "submit" | "cancel", PublicProps, Readonly<ExtractPropTypes< {
6932
7177
  /**
6933
7178
  * Enable fullscreen mode in mobile.
6934
7179
  */
@@ -7012,6 +7257,14 @@ type: PropType<FValidationFormCallback>;
7012
7257
  required: false;
7013
7258
  default(): void;
7014
7259
  };
7260
+ /**
7261
+ * List of buttons to display in the modal.
7262
+ * Each button is defined as an FModalButtonDescriptor with the following properties:
7263
+ * - `label` (String): The text displayed on the button.
7264
+ * - `event` (String): The event emitted when the button is clicked.
7265
+ * - `type` (String): The button type. Valid values are: "primary" or "secondary".
7266
+ * - `submitButton` (Boolean): Whether the button is a submit button.
7267
+ */
7015
7268
  buttons: {
7016
7269
  type: PropType<FModalButtonDescriptor[]>;
7017
7270
  required: false;
@@ -7121,12 +7374,12 @@ validator(value: string): boolean;
7121
7374
  onClose?: ((...args: any[]) => any) | undefined;
7122
7375
  }>, {
7123
7376
  type: "" | "warning" | "error" | "information";
7124
- focus: "on" | "off" | "open";
7125
7377
  size: string;
7126
7378
  isOpen: boolean;
7127
7379
  fullscreen: boolean;
7128
7380
  id: string;
7129
7381
  ariaCloseText: string;
7382
+ focus: "on" | "off" | "open";
7130
7383
  }, {}, {
7131
7384
  FIcon: DefineComponent<ExtractPropTypes< {
7132
7385
  name: {
@@ -7609,8 +7862,9 @@ export declare function findParentByName(vm: ComponentPublicInstance | undefined
7609
7862
 
7610
7863
  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<{
7611
7864
  props: __VLS_PrettifyLocal_3<Pick<Partial<{
7612
- scroll: TableScroll;
7613
7865
  modelValue: T[] | undefined;
7866
+ scroll: TableScroll;
7867
+ keyAttribute: string;
7614
7868
  striped: boolean;
7615
7869
  hover: boolean;
7616
7870
  expandableAttribute: string;
@@ -7629,7 +7883,6 @@ export declare const FInteractiveTable: <T extends object, K extends keyof T>(__
7629
7883
  }> & Omit<{
7630
7884
  readonly scroll: TableScroll;
7631
7885
  readonly rows: T[];
7632
- readonly keyAttribute: string;
7633
7886
  readonly striped: boolean;
7634
7887
  readonly hover: boolean;
7635
7888
  readonly expandableAttribute: string;
@@ -7637,6 +7890,7 @@ export declare const FInteractiveTable: <T extends object, K extends keyof T>(__
7637
7890
  readonly selectable: boolean;
7638
7891
  readonly showActive: boolean;
7639
7892
  readonly modelValue?: T[] | undefined;
7893
+ readonly keyAttribute?: string | undefined;
7640
7894
  readonly active?: ([{
7641
7895
  type: PropType<T | undefined>;
7642
7896
  required: false;
@@ -7646,15 +7900,15 @@ export declare const FInteractiveTable: <T extends object, K extends keyof T>(__
7646
7900
  required: false;
7647
7901
  default: () => undefined;
7648
7902
  }) | undefined;
7649
- readonly onChange?: ((row: T) => any) | undefined;
7650
- readonly onClick?: ((row: T) => any) | undefined;
7651
7903
  readonly onSelect?: ((row: T) => any) | undefined;
7652
7904
  readonly onCollapse?: ((row: T) => any) | undefined;
7653
7905
  readonly "onUpdate:modelValue"?: ((rows: T[]) => any) | undefined;
7906
+ readonly onChange?: ((row: T) => any) | undefined;
7907
+ readonly onClick?: ((row: T) => any) | undefined;
7654
7908
  readonly onExpand?: ((row: T) => any) | undefined;
7655
7909
  readonly onUnselect?: ((row: T) => any) | undefined;
7656
7910
  readonly "onUpdate:active"?: ((row: T) => any) | undefined;
7657
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "scroll" | "modelValue" | "striped" | "hover" | "expandableAttribute" | "expandableDescribedby" | "selectable" | "showActive" | "active">, "onChange" | "onClick" | "onSelect" | "onUpdate:modelValue" | "rows" | "keyAttribute" | "onCollapse" | "onExpand" | "onUnselect" | "onUpdate:active" | ("scroll" | "modelValue" | "striped" | "hover" | "expandableAttribute" | "expandableDescribedby" | "selectable" | "showActive" | "active")> & {} & Partial<{}>> & PublicProps;
7911
+ } & 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;
7658
7912
  expose(exposed: ShallowUnwrapRef< {}>): void;
7659
7913
  attrs: any;
7660
7914
  slots: {
@@ -7681,7 +7935,7 @@ export declare const FInteractiveTable: <T extends object, K extends keyof T>(__
7681
7935
  }): any;
7682
7936
  empty?(_: {}): any;
7683
7937
  };
7684
- emit: ((evt: "change", row: T) => void) & ((evt: "click", row: T) => void) & ((evt: "select", row: T) => void) & ((evt: "collapse", row: T) => void) & ((evt: "update:modelValue", rows: T[]) => void) & ((evt: "expand", row: T) => void) & ((evt: "unselect", row: T) => void) & ((evt: "update:active", row: T) => void);
7938
+ 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);
7685
7939
  }>) => VNode & {
7686
7940
  __ctx?: Awaited<typeof __VLS_setup>;
7687
7941
  };
@@ -8038,6 +8292,7 @@ export declare const FList: <T extends object>(__VLS_props: NonNullable<Awaited<
8038
8292
  elementId: string;
8039
8293
  modelValue: T[] | undefined;
8040
8294
  checkbox: boolean;
8295
+ keyAttribute: string;
8041
8296
  selectable: boolean;
8042
8297
  active: [{
8043
8298
  type: PropType<T | undefined>;
@@ -8052,9 +8307,9 @@ export declare const FList: <T extends object>(__VLS_props: NonNullable<Awaited<
8052
8307
  readonly elementId: string;
8053
8308
  readonly items: T[];
8054
8309
  readonly checkbox: boolean;
8055
- readonly keyAttribute: string;
8056
8310
  readonly selectable: boolean;
8057
8311
  readonly modelValue?: T[] | undefined;
8312
+ readonly keyAttribute?: string | undefined;
8058
8313
  readonly active?: ([{
8059
8314
  type: PropType<T | undefined>;
8060
8315
  required: false;
@@ -8064,13 +8319,13 @@ export declare const FList: <T extends object>(__VLS_props: NonNullable<Awaited<
8064
8319
  required: false;
8065
8320
  default: () => undefined;
8066
8321
  }) | undefined;
8067
- readonly onChange?: ((item: T) => any) | undefined;
8068
- readonly onClick?: ((item: T) => any) | undefined;
8069
8322
  readonly onSelect?: ((item: T) => any) | undefined;
8070
8323
  readonly "onUpdate:modelValue"?: ((item: T[]) => any) | undefined;
8324
+ readonly onChange?: ((item: T) => any) | undefined;
8325
+ readonly onClick?: ((item: T) => any) | undefined;
8071
8326
  readonly onUnselect?: ((item: T) => any) | undefined;
8072
8327
  readonly "onUpdate:active"?: ((item: T) => any) | undefined;
8073
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "elementId" | "modelValue" | "checkbox" | "selectable" | "active">, "onChange" | "onClick" | "onSelect" | "items" | "onUpdate:modelValue" | "keyAttribute" | "onUnselect" | "onUpdate:active" | ("elementId" | "modelValue" | "checkbox" | "selectable" | "active")> & {} & Partial<{}>> & PublicProps;
8328
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "elementId" | "modelValue" | "checkbox" | "keyAttribute" | "selectable" | "active">, "onChange" | "onClick" | "onSelect" | "items" | "onUpdate:modelValue" | "onUnselect" | "onUpdate:active" | ("elementId" | "modelValue" | "checkbox" | "keyAttribute" | "selectable" | "active")> & {} & Partial<{}>> & PublicProps;
8074
8329
  expose(exposed: ShallowUnwrapRef< {}>): void;
8075
8330
  attrs: any;
8076
8331
  slots: {
@@ -8086,7 +8341,7 @@ export declare const FList: <T extends object>(__VLS_props: NonNullable<Awaited<
8086
8341
  item: T;
8087
8342
  }): any;
8088
8343
  };
8089
- emit: ((evt: "change", item: T) => void) & ((evt: "click", item: T) => void) & ((evt: "select", item: T) => void) & ((evt: "update:modelValue", item: T[]) => void) & ((evt: "unselect", item: T) => void) & ((evt: "update:active", item: T) => void);
8344
+ emit: ((evt: "select", item: T) => void) & ((evt: "update:modelValue", item: T[]) => void) & ((evt: "change", item: T) => void) & ((evt: "click", item: T) => void) & ((evt: "unselect", item: T) => void) & ((evt: "update:active", item: T) => void);
8090
8345
  }>) => VNode & {
8091
8346
  __ctx?: Awaited<typeof __VLS_setup>;
8092
8347
  };
@@ -8612,12 +8867,12 @@ validator(value: string): boolean;
8612
8867
  onClose?: ((...args: any[]) => any) | undefined;
8613
8868
  }>, {
8614
8869
  type: "" | "warning" | "error" | "information";
8615
- focus: "on" | "off" | "open";
8616
8870
  size: string;
8617
8871
  isOpen: boolean;
8618
8872
  fullscreen: boolean;
8619
8873
  id: string;
8620
8874
  ariaCloseText: string;
8875
+ focus: "on" | "off" | "open";
8621
8876
  }, {}, {
8622
8877
  FIcon: DefineComponent<ExtractPropTypes< {
8623
8878
  name: {
@@ -8987,7 +9242,7 @@ activateItem(index: number): Promise<void>;
8987
9242
  setFocusedItemIndex(index: number): void;
8988
9243
  onKeyUp(event: KeyboardEvent): void;
8989
9244
  onKeyDown(event: KeyboardEvent): Promise<void>;
8990
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "select" | "update:modelValue" | "update:focusedItem")[], "close" | "select" | "update:modelValue" | "update:focusedItem", PublicProps, Readonly<ExtractPropTypes< {
9245
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "close" | "update:modelValue" | "update:focusedItem")[], "select" | "close" | "update:modelValue" | "update:focusedItem", PublicProps, Readonly<ExtractPropTypes< {
8991
9246
  modelValue: {
8992
9247
  type: StringConstructor;
8993
9248
  required: false;
@@ -9294,7 +9549,7 @@ resolveNewModelValue(viewValue: string): unknown;
9294
9549
  syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
9295
9550
  triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
9296
9551
  setViewValueToFormattedValueOrFallbackToValue(): void;
9297
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue")[], "blur" | "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
9552
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
9298
9553
  id: {
9299
9554
  type: StringConstructor;
9300
9555
  required: false;
@@ -9603,8 +9858,8 @@ activeOption: string | null;
9603
9858
  activeOptionId: string;
9604
9859
  inputNode: HTMLInputElement;
9605
9860
  }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
9606
- close: () => any;
9607
9861
  select: (option: string) => any;
9862
+ close: () => any;
9608
9863
  }, string, PublicProps, Readonly<{
9609
9864
  id: string;
9610
9865
  isOpen: boolean;
@@ -9613,8 +9868,8 @@ activeOption: string | null;
9613
9868
  activeOptionId: string;
9614
9869
  inputNode: HTMLInputElement;
9615
9870
  }> & Readonly<{
9616
- onClose?: (() => any) | undefined;
9617
9871
  onSelect?: ((option: string) => any) | undefined;
9872
+ onClose?: (() => any) | undefined;
9618
9873
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
9619
9874
  listbox: HTMLUListElement;
9620
9875
  }, HTMLDivElement>;
@@ -9932,7 +10187,7 @@ resolveNewModelValue(viewValue: string): unknown;
9932
10187
  syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
9933
10188
  triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
9934
10189
  setViewValueToFormattedValueOrFallbackToValue(): void;
9935
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue")[], "blur" | "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
10190
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
9936
10191
  id: {
9937
10192
  type: StringConstructor;
9938
10193
  required: false;
@@ -10241,8 +10496,8 @@ activeOption: string | null;
10241
10496
  activeOptionId: string;
10242
10497
  inputNode: HTMLInputElement;
10243
10498
  }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
10244
- close: () => any;
10245
10499
  select: (option: string) => any;
10500
+ close: () => any;
10246
10501
  }, string, PublicProps, Readonly<{
10247
10502
  id: string;
10248
10503
  isOpen: boolean;
@@ -10251,8 +10506,8 @@ activeOption: string | null;
10251
10506
  activeOptionId: string;
10252
10507
  inputNode: HTMLInputElement;
10253
10508
  }> & Readonly<{
10254
- onClose?: (() => any) | undefined;
10255
10509
  onSelect?: ((option: string) => any) | undefined;
10510
+ onClose?: (() => any) | undefined;
10256
10511
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
10257
10512
  listbox: HTMLUListElement;
10258
10513
  }, HTMLDivElement>;
@@ -10651,7 +10906,7 @@ resolveNewModelValue(viewValue: string): unknown;
10651
10906
  syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
10652
10907
  triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
10653
10908
  setViewValueToFormattedValueOrFallbackToValue(): void;
10654
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue")[], "blur" | "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
10909
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
10655
10910
  id: {
10656
10911
  type: StringConstructor;
10657
10912
  required: false;
@@ -10960,8 +11215,8 @@ activeOption: string | null;
10960
11215
  activeOptionId: string;
10961
11216
  inputNode: HTMLInputElement;
10962
11217
  }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
10963
- close: () => any;
10964
11218
  select: (option: string) => any;
11219
+ close: () => any;
10965
11220
  }, string, PublicProps, Readonly<{
10966
11221
  id: string;
10967
11222
  isOpen: boolean;
@@ -10970,8 +11225,8 @@ activeOption: string | null;
10970
11225
  activeOptionId: string;
10971
11226
  inputNode: HTMLInputElement;
10972
11227
  }> & Readonly<{
10973
- onClose?: (() => any) | undefined;
10974
11228
  onSelect?: ((option: string) => any) | undefined;
11229
+ onClose?: (() => any) | undefined;
10975
11230
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
10976
11231
  listbox: HTMLUListElement;
10977
11232
  }, HTMLDivElement>;
@@ -11130,7 +11385,7 @@ resolveNewModelValue(viewValue: string): unknown;
11130
11385
  syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
11131
11386
  triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
11132
11387
  setViewValueToFormattedValueOrFallbackToValue(): void;
11133
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue")[], "blur" | "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
11388
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
11134
11389
  id: {
11135
11390
  type: StringConstructor;
11136
11391
  required: false;
@@ -11439,8 +11694,8 @@ activeOption: string | null;
11439
11694
  activeOptionId: string;
11440
11695
  inputNode: HTMLInputElement;
11441
11696
  }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
11442
- close: () => any;
11443
11697
  select: (option: string) => any;
11698
+ close: () => any;
11444
11699
  }, string, PublicProps, Readonly<{
11445
11700
  id: string;
11446
11701
  isOpen: boolean;
@@ -11449,8 +11704,8 @@ activeOption: string | null;
11449
11704
  activeOptionId: string;
11450
11705
  inputNode: HTMLInputElement;
11451
11706
  }> & Readonly<{
11452
- onClose?: (() => any) | undefined;
11453
11707
  onSelect?: ((option: string) => any) | undefined;
11708
+ onClose?: (() => any) | undefined;
11454
11709
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
11455
11710
  listbox: HTMLUListElement;
11456
11711
  }, HTMLDivElement>;
@@ -11517,7 +11772,7 @@ onValidity({ detail }: CustomEvent<ValidityEvent>): void;
11517
11772
  onPendingValidity(): void;
11518
11773
  configureValidators(): void;
11519
11774
  configureExtendedValidation(elements: HTMLInputElement[]): void;
11520
- }, ComponentOptions, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue")[], "blur" | "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
11775
+ }, ComponentOptions, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
11521
11776
  /**
11522
11777
  * The id for the input id attribute.
11523
11778
  * The id for the label for attribute.
@@ -11655,7 +11910,7 @@ resolveNewModelValue(viewValue: string): unknown;
11655
11910
  syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
11656
11911
  triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
11657
11912
  setViewValueToFormattedValueOrFallbackToValue(): void;
11658
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue")[], "blur" | "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
11913
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
11659
11914
  id: {
11660
11915
  type: StringConstructor;
11661
11916
  required: false;
@@ -11964,8 +12219,8 @@ activeOption: string | null;
11964
12219
  activeOptionId: string;
11965
12220
  inputNode: HTMLInputElement;
11966
12221
  }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
11967
- close: () => any;
11968
12222
  select: (option: string) => any;
12223
+ close: () => any;
11969
12224
  }, string, PublicProps, Readonly<{
11970
12225
  id: string;
11971
12226
  isOpen: boolean;
@@ -11974,8 +12229,8 @@ activeOption: string | null;
11974
12229
  activeOptionId: string;
11975
12230
  inputNode: HTMLInputElement;
11976
12231
  }> & Readonly<{
11977
- onClose?: (() => any) | undefined;
11978
12232
  onSelect?: ((option: string) => any) | undefined;
12233
+ onClose?: (() => any) | undefined;
11979
12234
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
11980
12235
  listbox: HTMLUListElement;
11981
12236
  }, HTMLDivElement>;
@@ -12105,7 +12360,7 @@ resolveNewModelValue(viewValue: string): unknown;
12105
12360
  syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
12106
12361
  triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
12107
12362
  setViewValueToFormattedValueOrFallbackToValue(): void;
12108
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue")[], "blur" | "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
12363
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
12109
12364
  id: {
12110
12365
  type: StringConstructor;
12111
12366
  required: false;
@@ -12414,8 +12669,8 @@ activeOption: string | null;
12414
12669
  activeOptionId: string;
12415
12670
  inputNode: HTMLInputElement;
12416
12671
  }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
12417
- close: () => any;
12418
12672
  select: (option: string) => any;
12673
+ close: () => any;
12419
12674
  }, string, PublicProps, Readonly<{
12420
12675
  id: string;
12421
12676
  isOpen: boolean;
@@ -12424,8 +12679,8 @@ activeOption: string | null;
12424
12679
  activeOptionId: string;
12425
12680
  inputNode: HTMLInputElement;
12426
12681
  }> & Readonly<{
12427
- onClose?: (() => any) | undefined;
12428
12682
  onSelect?: ((option: string) => any) | undefined;
12683
+ onClose?: (() => any) | undefined;
12429
12684
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
12430
12685
  listbox: HTMLUListElement;
12431
12686
  }, HTMLDivElement>;
@@ -12564,7 +12819,7 @@ resolveNewModelValue(viewValue: string): unknown;
12564
12819
  syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
12565
12820
  triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
12566
12821
  setViewValueToFormattedValueOrFallbackToValue(): void;
12567
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue")[], "blur" | "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
12822
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
12568
12823
  id: {
12569
12824
  type: StringConstructor;
12570
12825
  required: false;
@@ -12873,8 +13128,8 @@ activeOption: string | null;
12873
13128
  activeOptionId: string;
12874
13129
  inputNode: HTMLInputElement;
12875
13130
  }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
12876
- close: () => any;
12877
13131
  select: (option: string) => any;
13132
+ close: () => any;
12878
13133
  }, string, PublicProps, Readonly<{
12879
13134
  id: string;
12880
13135
  isOpen: boolean;
@@ -12883,8 +13138,8 @@ activeOption: string | null;
12883
13138
  activeOptionId: string;
12884
13139
  inputNode: HTMLInputElement;
12885
13140
  }> & Readonly<{
12886
- onClose?: (() => any) | undefined;
12887
13141
  onSelect?: ((option: string) => any) | undefined;
13142
+ onClose?: (() => any) | undefined;
12888
13143
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
12889
13144
  listbox: HTMLUListElement;
12890
13145
  }, HTMLDivElement>;
@@ -13033,7 +13288,7 @@ onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
13033
13288
  enter(element: Element): void;
13034
13289
  afterEnter(element: Element): void;
13035
13290
  leave(element: Element): void;
13036
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
13291
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", PublicProps, Readonly<ExtractPropTypes< {
13037
13292
  /**
13038
13293
  * Set to `true`, empty string `""` or string `"disabled"` to disable this input field.
13039
13294
  */
@@ -13107,7 +13362,7 @@ onInput(event: Event): void;
13107
13362
  onChange(event: Event): void;
13108
13363
  onBlur(event: Event): void;
13109
13364
  onUpdate(event: Event): void;
13110
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue" | "update")[], "blur" | "change" | "update:modelValue" | "update", PublicProps, Readonly<ExtractPropTypes< {
13365
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur" | "update")[], "update:modelValue" | "change" | "blur" | "update", PublicProps, Readonly<ExtractPropTypes< {
13111
13366
  id: {
13112
13367
  type: StringConstructor;
13113
13368
  required: false;
@@ -13236,7 +13491,7 @@ resolveNewModelValue(viewValue: string): unknown;
13236
13491
  syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
13237
13492
  triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
13238
13493
  setViewValueToFormattedValueOrFallbackToValue(): void;
13239
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue")[], "blur" | "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
13494
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
13240
13495
  id: {
13241
13496
  type: StringConstructor;
13242
13497
  required: false;
@@ -13545,8 +13800,8 @@ activeOption: string | null;
13545
13800
  activeOptionId: string;
13546
13801
  inputNode: HTMLInputElement;
13547
13802
  }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
13548
- close: () => any;
13549
13803
  select: (option: string) => any;
13804
+ close: () => any;
13550
13805
  }, string, PublicProps, Readonly<{
13551
13806
  id: string;
13552
13807
  isOpen: boolean;
@@ -13555,8 +13810,8 @@ activeOption: string | null;
13555
13810
  activeOptionId: string;
13556
13811
  inputNode: HTMLInputElement;
13557
13812
  }> & Readonly<{
13558
- onClose?: (() => any) | undefined;
13559
13813
  onSelect?: ((option: string) => any) | undefined;
13814
+ onClose?: (() => any) | undefined;
13560
13815
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
13561
13816
  listbox: HTMLUListElement;
13562
13817
  }, HTMLDivElement>;
@@ -13693,7 +13948,7 @@ set(value: unknown): void;
13693
13948
  };
13694
13949
  }, {
13695
13950
  onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
13696
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
13951
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", PublicProps, Readonly<ExtractPropTypes< {
13697
13952
  /**
13698
13953
  * The id for the select id attribute.
13699
13954
  * The id for the label for attribute.
@@ -14048,184 +14303,7 @@ rotate: string;
14048
14303
  }, {}, string, ComponentProvideOptions, true, {}, any>;
14049
14304
  }, {}, string, ComponentProvideOptions, true, {}, any>;
14050
14305
 
14051
- export declare const FTableColumn: DefineComponent<ExtractPropTypes< {
14052
- /**
14053
- * Unique (per-table) identifier.
14054
- *
14055
- * Typically set to the row property displayed but any unique string can
14056
- * be used.
14057
- */
14058
- name: {
14059
- type: StringConstructor;
14060
- required: true;
14061
- };
14062
- /**
14063
- * If set to true, display the column, set to false to hide it.
14064
- */
14065
- visible: {
14066
- type: BooleanConstructor;
14067
- default: boolean;
14068
- };
14069
- /**
14070
- * If `true` this cell will be a row header (`<th>` as opposed to
14071
- * `<td>`).
14072
- */
14073
- rowHeader: {
14074
- type: BooleanConstructor;
14075
- required: false;
14076
- default: boolean;
14077
- };
14078
- /**
14079
- * Text to show in column header. In order to force newlines use `\n`.
14080
- */
14081
- title: {
14082
- type: StringConstructor;
14083
- required: true;
14084
- };
14085
- /**
14086
- * Additional column description.
14087
- */
14088
- description: {
14089
- type: StringConstructor;
14090
- required: false;
14091
- default: string;
14092
- };
14093
- /**
14094
- * Set this column to shrink as small as possible.
14095
- *
14096
- * Cannot be combined with `expand`
14097
- */
14098
- shrink: {
14099
- type: BooleanConstructor;
14100
- required: false;
14101
- default: boolean;
14102
- };
14103
- /**
14104
- * Set this column to expand as large as possible.
14105
- *
14106
- * Cannot be combined with `shrink`
14107
- *
14108
- * Default if neither `expand` or `shrink` is set.
14109
- */
14110
- expand: {
14111
- type: BooleanConstructor;
14112
- required: false;
14113
- default: boolean;
14114
- };
14115
- /**
14116
- * Type of data the rows contains.
14117
- *
14118
- * Applies proper alignment and some styling (e.g. "numeric" uses fixed
14119
- * width numbers).
14120
- *
14121
- * Can be one of the following values:
14122
- *
14123
- * - `"text"`: regular text data (default)
14124
- * - `"date"`: date (should be YYYY-MM-DD)
14125
- * - `"numeric"`: numeric data
14126
- * - `"action"`: buttons to perform actions on row
14127
- */
14128
- type: {
14129
- type: PropType<"text" | "date" | "numeric" | "action">;
14130
- required: false;
14131
- default: FTableColumnType;
14132
- validator(value: string): value is FTableColumnType;
14133
- };
14134
- }>, Omit<FTableInterface, "textFieldTableMode">, {}, {
14135
- classes(): string[];
14136
- scope(): "row" | null;
14137
- tagName(): "td" | "th";
14138
- }, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
14139
- /**
14140
- * Unique (per-table) identifier.
14141
- *
14142
- * Typically set to the row property displayed but any unique string can
14143
- * be used.
14144
- */
14145
- name: {
14146
- type: StringConstructor;
14147
- required: true;
14148
- };
14149
- /**
14150
- * If set to true, display the column, set to false to hide it.
14151
- */
14152
- visible: {
14153
- type: BooleanConstructor;
14154
- default: boolean;
14155
- };
14156
- /**
14157
- * If `true` this cell will be a row header (`<th>` as opposed to
14158
- * `<td>`).
14159
- */
14160
- rowHeader: {
14161
- type: BooleanConstructor;
14162
- required: false;
14163
- default: boolean;
14164
- };
14165
- /**
14166
- * Text to show in column header. In order to force newlines use `\n`.
14167
- */
14168
- title: {
14169
- type: StringConstructor;
14170
- required: true;
14171
- };
14172
- /**
14173
- * Additional column description.
14174
- */
14175
- description: {
14176
- type: StringConstructor;
14177
- required: false;
14178
- default: string;
14179
- };
14180
- /**
14181
- * Set this column to shrink as small as possible.
14182
- *
14183
- * Cannot be combined with `expand`
14184
- */
14185
- shrink: {
14186
- type: BooleanConstructor;
14187
- required: false;
14188
- default: boolean;
14189
- };
14190
- /**
14191
- * Set this column to expand as large as possible.
14192
- *
14193
- * Cannot be combined with `shrink`
14194
- *
14195
- * Default if neither `expand` or `shrink` is set.
14196
- */
14197
- expand: {
14198
- type: BooleanConstructor;
14199
- required: false;
14200
- default: boolean;
14201
- };
14202
- /**
14203
- * Type of data the rows contains.
14204
- *
14205
- * Applies proper alignment and some styling (e.g. "numeric" uses fixed
14206
- * width numbers).
14207
- *
14208
- * Can be one of the following values:
14209
- *
14210
- * - `"text"`: regular text data (default)
14211
- * - `"date"`: date (should be YYYY-MM-DD)
14212
- * - `"numeric"`: numeric data
14213
- * - `"action"`: buttons to perform actions on row
14214
- */
14215
- type: {
14216
- type: PropType<"text" | "date" | "numeric" | "action">;
14217
- required: false;
14218
- default: FTableColumnType;
14219
- validator(value: string): value is FTableColumnType;
14220
- };
14221
- }>> & Readonly<{}>, {
14222
- type: "text" | "date" | "action" | "numeric";
14223
- description: string;
14224
- shrink: boolean;
14225
- expand: boolean;
14226
- visible: boolean;
14227
- rowHeader: boolean;
14228
- }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
14306
+ export declare const FTableColumn: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
14229
14307
 
14230
14308
  /**
14231
14309
  * @public
@@ -14698,7 +14776,7 @@ resolveNewModelValue(viewValue: string): unknown;
14698
14776
  syncViewValueAfterModelUpdate(newModelValue: unknown): void | never;
14699
14777
  triggerComponentValidityEvent(validityEvent: ValidityEvent): void;
14700
14778
  setViewValueToFormattedValueOrFallbackToValue(): void;
14701
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "update:modelValue")[], "blur" | "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
14779
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change" | "blur")[], "update:modelValue" | "change" | "blur", PublicProps, Readonly<ExtractPropTypes< {
14702
14780
  /**
14703
14781
  * The id for the input id attribute.
14704
14782
  * The id for the label for attribute.
@@ -15070,8 +15148,8 @@ activeOption: string | null;
15070
15148
  activeOptionId: string;
15071
15149
  inputNode: HTMLInputElement;
15072
15150
  }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
15073
- close: () => any;
15074
15151
  select: (option: string) => any;
15152
+ close: () => any;
15075
15153
  }, string, PublicProps, Readonly<{
15076
15154
  id: string;
15077
15155
  isOpen: boolean;
@@ -15080,8 +15158,8 @@ activeOption: string | null;
15080
15158
  activeOptionId: string;
15081
15159
  inputNode: HTMLInputElement;
15082
15160
  }> & Readonly<{
15083
- onClose?: (() => any) | undefined;
15084
15161
  onSelect?: ((option: string) => any) | undefined;
15162
+ onClose?: (() => any) | undefined;
15085
15163
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
15086
15164
  listbox: HTMLUListElement;
15087
15165
  }, HTMLDivElement>;
@@ -15158,7 +15236,7 @@ isOpen: boolean;
15158
15236
  hasHeader(): boolean;
15159
15237
  }, {
15160
15238
  /* Excluded from this release type: onClickToggle */
15161
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("toggle" | "update:modelValue")[], "toggle" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
15239
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "toggle")[], "update:modelValue" | "toggle", PublicProps, Readonly<ExtractPropTypes< {
15162
15240
  /**
15163
15241
  * Element to attach tooltip toggle button.
15164
15242
  *
@@ -15556,6 +15634,10 @@ export declare interface FWizardApi {
15556
15634
  export declare type FWizardKey = string | number | symbol | boolean;
15557
15635
 
15558
15636
  export declare const FWizardStep: DefineComponent<ExtractPropTypes< {
15637
+ /**
15638
+ * The title of the wizard step.
15639
+ * This will be displayed as the step's header.
15640
+ */
15559
15641
  title: {
15560
15642
  type: StringConstructor;
15561
15643
  required: true;
@@ -15623,6 +15705,10 @@ afterAnimation(open: boolean): Promise<void>;
15623
15705
  beforeNextWrapper(): FValidationFormResult;
15624
15706
  beforeValidationWrapper(): FValidationFormResult;
15625
15707
  }, ComponentOptions, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
15708
+ /**
15709
+ * The title of the wizard step.
15710
+ * This will be displayed as the step's header.
15711
+ */
15626
15712
  title: {
15627
15713
  type: StringConstructor;
15628
15714
  required: true;
@@ -16502,7 +16588,7 @@ onClickDay(date: FDate): void;
16502
16588
  onKeydownDay(date: FDate, event: KeyboardEvent): Promise<void>;
16503
16589
  isDayFocused(date: FDate): boolean;
16504
16590
  getTabindex(date: FDate): 0 | -1;
16505
- }, ComponentOptions, ComponentOptionsMixin, ("change" | "click" | "update:modelValue")[], "change" | "click" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
16591
+ }, ComponentOptions, ComponentOptionsMixin, ("update:modelValue" | "change" | "click")[], "update:modelValue" | "change" | "click", PublicProps, Readonly<ExtractPropTypes< {
16506
16592
  /**
16507
16593
  * Active month.
16508
16594
  * @model
@@ -16681,7 +16767,7 @@ onClickPreviousButton(): void;
16681
16767
  onClickNextButton(): void;
16682
16768
  getDateText(value: FDate): string;
16683
16769
  isFocused(ref: string): boolean;
16684
- }, ComponentOptions, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
16770
+ }, ComponentOptions, ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", PublicProps, Readonly<ExtractPropTypes< {
16685
16771
  /**
16686
16772
  * Focused month.
16687
16773
  */
@@ -16764,11 +16850,11 @@ rotate: string;
16764
16850
  }, {}, string, ComponentProvideOptions, true, {}, any>;
16765
16851
 
16766
16852
  export declare const IComboboxDropdown: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
16767
- close: () => any;
16768
16853
  select: (option: string) => any;
16854
+ close: () => any;
16769
16855
  }, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{
16770
- onClose?: (() => any) | undefined;
16771
16856
  onSelect?: ((option: string) => any) | undefined;
16857
+ onClose?: (() => any) | undefined;
16772
16858
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
16773
16859
  listbox: HTMLUListElement;
16774
16860
  }, HTMLDivElement>;
@@ -17261,7 +17347,7 @@ export declare interface IPopupErrorData {
17261
17347
  arrowOffset: number;
17262
17348
  }
17263
17349
 
17264
- export declare const IPopupListbox: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
17350
+ export declare const IPopupListbox: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
17265
17351
 
17266
17352
  declare interface IPopupListboxProps {
17267
17353
  isOpen: boolean;
@@ -17355,7 +17441,7 @@ activateItem(index: number): Promise<void>;
17355
17441
  setFocusedItemIndex(index: number): void;
17356
17442
  onKeyUp(event: KeyboardEvent): void;
17357
17443
  onKeyDown(event: KeyboardEvent): Promise<void>;
17358
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "select" | "update:modelValue" | "update:focusedItem")[], "close" | "select" | "update:modelValue" | "update:focusedItem", PublicProps, Readonly<ExtractPropTypes< {
17444
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "close" | "update:modelValue" | "update:focusedItem")[], "select" | "close" | "update:modelValue" | "update:focusedItem", PublicProps, Readonly<ExtractPropTypes< {
17359
17445
  /**
17360
17446
  * Key of the currently selected and highlighted item.
17361
17447
  *
@@ -18163,6 +18249,56 @@ export declare interface UseModal {
18163
18249
  */
18164
18250
  export declare function useModal(): UseModal;
18165
18251
 
18252
+ /**
18253
+ * Returned from `useResize()`.
18254
+ *
18255
+ * @public
18256
+ */
18257
+ export declare interface UseResize {
18258
+ /** current size of resize pane in px */
18259
+ readonly size: Readonly<Ref<number>>;
18260
+ }
18261
+
18262
+ /**
18263
+ * Provides an API to control functionallity of an ancestor `FResizePane` component.
18264
+ *
18265
+ * @public
18266
+ * @param options - Optional refs controlling behaviour.
18267
+ */
18268
+ export declare function useResize(options?: UseResizeOptions): UseResize;
18269
+
18270
+ /**
18271
+ * Optional refs controlling behaviour of ancestor `FResizePanel` component.
18272
+ *
18273
+ * @public
18274
+ */
18275
+ export declare interface UseResizeOptions {
18276
+ /** When one or more components sets `enabled` to `true` the resize handle is enabled and the end user can drag it to resize the pane */
18277
+ readonly enabled?: Readonly<Ref<boolean>>;
18278
+ /** When one or more compoents set `visible` to `true` the resize pane is visible */
18279
+ readonly visible?: Readonly<Ref<boolean>>;
18280
+ /**
18281
+ * When one or more components set `overlay` to `true` the resize pane is
18282
+ * displayed as an overlay and instead of occupying space from ther layout
18283
+ * areas it will be shown on top.
18284
+ *
18285
+ * The `offset` property can be used to set a static size of how much space
18286
+ * it should occupy.
18287
+ */
18288
+ readonly overlay?: Readonly<Ref<boolean>>;
18289
+ /**
18290
+ * When `overlay` is enabled this sets how much static space (in px) the
18291
+ * pane should occupy from the nearby layout areas, that is, how much of the
18292
+ * pane should be static and how much is overlay.
18293
+ *
18294
+ * Consider a collapsable panel, by setting the offset to the width of the
18295
+ * collapsed state and enabling overlay, the resize pane will occupy that
18296
+ * amount of space and the rest of the pane will be positioned on
18297
+ * top of the other layout areas.
18298
+ */
18299
+ readonly offset?: Readonly<Ref<number>>;
18300
+ }
18301
+
18166
18302
  /**
18167
18303
  * @public
18168
18304
  */