@fkui/vue 6.15.0 → 6.16.1

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.
@@ -19,6 +19,7 @@ import { FocusOptions as FocusOptions_2 } from '@fkui/logic';
19
19
  import { formatNumber } from '@fkui/logic';
20
20
  import { formatPersonnummer } from '@fkui/logic';
21
21
  import { formatPostalCode } from '@fkui/logic';
22
+ import { FYear } from '@fkui/date';
22
23
  import { IfAny } from '@vue/shared';
23
24
  import { InjectionKey } from 'vue';
24
25
  import { OrganisationsnummerString } from '@fkui/logic';
@@ -88,6 +89,8 @@ declare const __VLS_6: {};
88
89
 
89
90
  declare const __VLS_6_2: {};
90
91
 
92
+ declare const __VLS_6_3: {};
93
+
91
94
  declare const __VLS_7: {};
92
95
 
93
96
  declare const __VLS_8: {};
@@ -112,7 +115,7 @@ inverted: {
112
115
  type: BooleanConstructor;
113
116
  default: boolean;
114
117
  };
115
- }>, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
118
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
116
119
  /**
117
120
  * The status of the badge, can be either 'default', 'warning', 'error', 'success' or 'info'.
118
121
  */
@@ -133,8 +136,177 @@ status: "default" | "warning" | "error" | "success" | "info";
133
136
  inverted: boolean;
134
137
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
135
138
 
139
+ declare const __VLS_component_10: DefineComponent<IPopupListboxProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
140
+ close: () => any;
141
+ }, string, PublicProps, Readonly<IPopupListboxProps> & Readonly<{
142
+ onClose?: (() => any) | undefined;
143
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
144
+
136
145
  declare const __VLS_component_2: DefineComponent<ExtractPropTypes< {
137
146
  /**
147
+ * Type of button, can be one of:
148
+ * - `primary`
149
+ * - `secondary`
150
+ * - `tertiary`
151
+ */
152
+ variant: {
153
+ type: PropType<"primary" | "secondary" | "tertiary">;
154
+ default: string;
155
+ validator(value: string): boolean;
156
+ };
157
+ /**
158
+ * Button size, can be one of:
159
+ * - `small`
160
+ * - `medium`
161
+ * - `large`
162
+ */
163
+ size: {
164
+ type: PropType<"small" | "medium" | "large">;
165
+ default: string;
166
+ validator(value: string): boolean;
167
+ };
168
+ /**
169
+ * Name of an icon to display on the left side of the button.
170
+ */
171
+ iconLeft: {
172
+ type: StringConstructor;
173
+ default: undefined;
174
+ };
175
+ /**
176
+ * Name of an icon to display on the right side of the button.
177
+ */
178
+ iconRight: {
179
+ type: StringConstructor;
180
+ default: undefined;
181
+ };
182
+ /**
183
+ * Tertiary button style, used in conjunction with button variant `tertiary`.
184
+ * Can be one of:
185
+ * - `standard`
186
+ * - `black`
187
+ * - `inverted`
188
+ */
189
+ tertiaryStyle: {
190
+ type: PropType<"standard" | "black" | "inverted">;
191
+ default: string;
192
+ validator(value: string): boolean;
193
+ };
194
+ /**
195
+ * Align button text and icon with content above or below.
196
+ * Used in conjunction with button variant `tertiary`.
197
+ */
198
+ alignText: {
199
+ type: BooleanConstructor;
200
+ default: boolean;
201
+ };
202
+ /**
203
+ *
204
+ * Enable full width on mobile for sizes `small` and `medium`, always active for button size `large`.
205
+ */
206
+ mobileFullWidth: {
207
+ type: BooleanConstructor;
208
+ default: boolean;
209
+ };
210
+ /**
211
+ * The default behavior of the button. Possible values are:
212
+ * - `submit`
213
+ * - `reset`
214
+ * - `button`
215
+ */
216
+ type: {
217
+ type: PropType<"submit" | "reset" | "button">;
218
+ default: string;
219
+ validator(value: string): boolean;
220
+ };
221
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
222
+ /**
223
+ * Type of button, can be one of:
224
+ * - `primary`
225
+ * - `secondary`
226
+ * - `tertiary`
227
+ */
228
+ variant: {
229
+ type: PropType<"primary" | "secondary" | "tertiary">;
230
+ default: string;
231
+ validator(value: string): boolean;
232
+ };
233
+ /**
234
+ * Button size, can be one of:
235
+ * - `small`
236
+ * - `medium`
237
+ * - `large`
238
+ */
239
+ size: {
240
+ type: PropType<"small" | "medium" | "large">;
241
+ default: string;
242
+ validator(value: string): boolean;
243
+ };
244
+ /**
245
+ * Name of an icon to display on the left side of the button.
246
+ */
247
+ iconLeft: {
248
+ type: StringConstructor;
249
+ default: undefined;
250
+ };
251
+ /**
252
+ * Name of an icon to display on the right side of the button.
253
+ */
254
+ iconRight: {
255
+ type: StringConstructor;
256
+ default: undefined;
257
+ };
258
+ /**
259
+ * Tertiary button style, used in conjunction with button variant `tertiary`.
260
+ * Can be one of:
261
+ * - `standard`
262
+ * - `black`
263
+ * - `inverted`
264
+ */
265
+ tertiaryStyle: {
266
+ type: PropType<"standard" | "black" | "inverted">;
267
+ default: string;
268
+ validator(value: string): boolean;
269
+ };
270
+ /**
271
+ * Align button text and icon with content above or below.
272
+ * Used in conjunction with button variant `tertiary`.
273
+ */
274
+ alignText: {
275
+ type: BooleanConstructor;
276
+ default: boolean;
277
+ };
278
+ /**
279
+ *
280
+ * Enable full width on mobile for sizes `small` and `medium`, always active for button size `large`.
281
+ */
282
+ mobileFullWidth: {
283
+ type: BooleanConstructor;
284
+ default: boolean;
285
+ };
286
+ /**
287
+ * The default behavior of the button. Possible values are:
288
+ * - `submit`
289
+ * - `reset`
290
+ * - `button`
291
+ */
292
+ type: {
293
+ type: PropType<"submit" | "reset" | "button">;
294
+ default: string;
295
+ validator(value: string): boolean;
296
+ };
297
+ }>> & Readonly<{}>, {
298
+ type: "button" | "submit" | "reset";
299
+ variant: "primary" | "secondary" | "tertiary";
300
+ size: "small" | "medium" | "large";
301
+ iconLeft: string;
302
+ iconRight: string;
303
+ tertiaryStyle: "inverted" | "standard" | "black";
304
+ alignText: boolean;
305
+ mobileFullWidth: boolean;
306
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
307
+
308
+ declare const __VLS_component_3: DefineComponent<ExtractPropTypes< {
309
+ /**
138
310
  * Element to focus on when card is invalid. Set when using validation.
139
311
  */
140
312
  focusRef: {
@@ -150,7 +322,7 @@ type: StringConstructor;
150
322
  required: false;
151
323
  default: () => string;
152
324
  };
153
- }>, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
325
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
154
326
  /**
155
327
  * Element to focus on when card is invalid. Set when using validation.
156
328
  */
@@ -172,7 +344,7 @@ id: string;
172
344
  focusRef: HTMLElement | null;
173
345
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
174
346
 
175
- declare const __VLS_component_3: DefineComponent<ExtractPropTypes< {
347
+ declare const __VLS_component_4: DefineComponent<ExtractPropTypes< {
176
348
  /**
177
349
  * The action to be performed by the button.
178
350
  * Must be one of the following values: "delete" or "modify".
@@ -204,7 +376,7 @@ label: {
204
376
  type: BooleanConstructor;
205
377
  default: boolean;
206
378
  };
207
- }>, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
379
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
208
380
  /**
209
381
  * The action to be performed by the button.
210
382
  * Must be one of the following values: "delete" or "modify".
@@ -241,23 +413,23 @@ label: boolean;
241
413
  icon: boolean;
242
414
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
243
415
 
244
- declare const __VLS_component_4: DefineComponent< {}, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
416
+ declare const __VLS_component_5: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
245
417
 
246
- declare const __VLS_component_5: DefineComponent<__VLS_Props, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
418
+ declare const __VLS_component_6: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
247
419
 
248
- declare const __VLS_component_6: DefineComponent<__VLS_Props_2, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {
420
+ declare const __VLS_component_7: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {
249
421
  min: string;
250
422
  max: string;
251
423
  initial: string;
252
424
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
253
425
 
254
- declare const __VLS_component_7: DefineComponent<__VLS_Props_3, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
426
+ declare const __VLS_component_8: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
255
427
  click: () => any;
256
428
  }, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{
257
429
  onClick?: (() => any) | undefined;
258
430
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
259
431
 
260
- declare const __VLS_component_8: DefineComponent<ExtractPropTypes< {
432
+ declare const __VLS_component_9: DefineComponent<ExtractPropTypes< {
261
433
  /**
262
434
  * Unique (per-table) identifier. Typically set to the row
263
435
  * property displayed but any unique string can be used.
@@ -342,7 +514,7 @@ required: false;
342
514
  default: FTableColumnType;
343
515
  validator(value: string): value is FTableColumnType;
344
516
  };
345
- }>, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
517
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
346
518
  /**
347
519
  * Unique (per-table) identifier. Typically set to the row
348
520
  * property displayed but any unique string can be used.
@@ -437,12 +609,6 @@ visible: boolean;
437
609
  rowHeader: boolean;
438
610
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
439
611
 
440
- declare const __VLS_component_9: DefineComponent<IPopupListboxProps, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
441
- close: () => any;
442
- }, string, PublicProps, Readonly<IPopupListboxProps> & Readonly<{
443
- onClose?: (() => any) | undefined;
444
- }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
445
-
446
612
  declare type __VLS_PrettifyLocal<T> = {
447
613
  [K in keyof T as K]: T[K];
448
614
  } & {};
@@ -535,7 +701,15 @@ declare type __VLS_Slots = {} & {
535
701
  default?: (props: typeof __VLS_1) => any;
536
702
  };
537
703
 
704
+ declare type __VLS_Slots_10 = {} & {
705
+ default?: (props: typeof __VLS_6_3) => any;
706
+ };
707
+
538
708
  declare type __VLS_Slots_2 = {} & {
709
+ default?: (props: typeof __VLS_6) => any;
710
+ };
711
+
712
+ declare type __VLS_Slots_3 = {} & {
539
713
  header?: (props: typeof __VLS_1_2) => any;
540
714
  } & {
541
715
  'error-message'?: (props: typeof __VLS_3) => any;
@@ -545,39 +719,41 @@ declare type __VLS_Slots_2 = {} & {
545
719
  footer?: (props: typeof __VLS_27) => any;
546
720
  };
547
721
 
548
- declare type __VLS_Slots_3 = {} & {
722
+ declare type __VLS_Slots_4 = {} & {
549
723
  default?: (props: typeof __VLS_9) => any;
550
724
  };
551
725
 
552
- declare type __VLS_Slots_4 = {} & {
726
+ declare type __VLS_Slots_5 = {} & {
553
727
  default?: (props: typeof __VLS_7) => any;
554
728
  };
555
729
 
556
- declare type __VLS_Slots_5 = {} & {
730
+ declare type __VLS_Slots_6 = {} & {
557
731
  default?: (props: typeof __VLS_11) => any;
558
732
  } & {
559
733
  icon?: (props: typeof __VLS_13) => any;
560
734
  };
561
735
 
562
- declare type __VLS_Slots_6 = {} & {
736
+ declare type __VLS_Slots_7 = {} & {
563
737
  default?: (props: typeof __VLS_10) => any;
564
738
  };
565
739
 
566
- declare type __VLS_Slots_7 = {} & {
567
- default?: (props: typeof __VLS_6) => any;
740
+ declare type __VLS_Slots_8 = {} & {
741
+ default?: (props: typeof __VLS_6_2) => any;
568
742
  } & {
569
743
  default?: (props: typeof __VLS_8) => any;
570
744
  };
571
745
 
572
- declare type __VLS_Slots_8 = {} & {
746
+ declare type __VLS_Slots_9 = {} & {
573
747
  default?: (props: typeof __VLS_8_2) => any;
574
748
  };
575
749
 
576
- declare type __VLS_Slots_9 = {} & {
577
- default?: (props: typeof __VLS_6_2) => any;
750
+ declare type __VLS_WithSlots<T, S> = T & {
751
+ new (): {
752
+ $slots: S;
753
+ };
578
754
  };
579
755
 
580
- declare type __VLS_WithSlots<T, S> = T & {
756
+ declare type __VLS_WithSlots_10<T, S> = T & {
581
757
  new (): {
582
758
  $slots: S;
583
759
  };
@@ -649,6 +825,7 @@ export declare function ActivateItemInjected<T>(): ActivateItemInterface<T>;
649
825
  export declare interface ActivateItemInterface<T> {
650
826
  registerCallbackAfterItemAdd(callback: ActivateItemCallback<T>): void;
651
827
  registerCallbackBeforeItemDelete(callback: ActivateItemCallback<T>): void;
828
+ setNestedKey(key: keyof T): void;
652
829
  }
653
830
 
654
831
  /**
@@ -1643,7 +1820,7 @@ options: string[];
1643
1820
  activeOption: string | null;
1644
1821
  activeOptionId: string;
1645
1822
  inputNode: HTMLInputElement;
1646
- }, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1823
+ }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1647
1824
  select: (option: string) => any;
1648
1825
  close: () => any;
1649
1826
  }, string, PublicProps, Readonly<{
@@ -1657,7 +1834,7 @@ inputNode: HTMLInputElement;
1657
1834
  onSelect?: ((option: string) => any) | undefined;
1658
1835
  onClose?: (() => any) | undefined;
1659
1836
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
1660
- IComboboxToggleButton: DefineComponent< {}, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1837
+ IComboboxToggleButton: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1661
1838
  toggle: () => any;
1662
1839
  }, string, PublicProps, Readonly<{}> & Readonly<{
1663
1840
  onToggle?: (() => any) | undefined;
@@ -2098,7 +2275,7 @@ options: string[];
2098
2275
  activeOption: string | null;
2099
2276
  activeOptionId: string;
2100
2277
  inputNode: HTMLInputElement;
2101
- }, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2278
+ }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2102
2279
  select: (option: string) => any;
2103
2280
  close: () => any;
2104
2281
  }, string, PublicProps, Readonly<{
@@ -2112,7 +2289,7 @@ inputNode: HTMLInputElement;
2112
2289
  onSelect?: ((option: string) => any) | undefined;
2113
2290
  onClose?: (() => any) | undefined;
2114
2291
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2115
- IComboboxToggleButton: DefineComponent< {}, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2292
+ IComboboxToggleButton: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2116
2293
  toggle: () => any;
2117
2294
  }, string, PublicProps, Readonly<{}> & Readonly<{
2118
2295
  onToggle?: (() => any) | undefined;
@@ -2127,10 +2304,11 @@ default: typeof parseBankgiro;
2127
2304
  formatter: FormatFunction<string>;
2128
2305
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
2129
2306
 
2307
+ export declare const FButton: __VLS_WithSlots_2<typeof __VLS_component_2, __VLS_Slots_2>;
2308
+
2130
2309
  export declare const FCalendar: DefineComponent<ExtractPropTypes< {
2131
2310
  /**
2132
2311
  * Active month.
2133
- * @model
2134
2312
  */
2135
2313
  modelValue: {
2136
2314
  type: PropType<FDate>;
@@ -2161,13 +2339,46 @@ maxDate: {
2161
2339
  type: PropType<FDate>;
2162
2340
  required: true;
2163
2341
  };
2164
- }>, {}, {}, {}, {
2342
+ /**
2343
+ * Includes a year selector when enabled.
2344
+ */
2345
+ yearSelector: {
2346
+ type: BooleanConstructor;
2347
+ required: false;
2348
+ default: boolean;
2349
+ };
2350
+ /**
2351
+ * Optional id (generated by default).
2352
+ */
2353
+ id: {
2354
+ type: StringConstructor;
2355
+ required: false;
2356
+ default: () => string;
2357
+ };
2358
+ }>, {
2359
+ yearSelectorOpen: Ref<boolean, boolean>;
2360
+ activeYear: Ref<FYear, FYear>;
2361
+ selectableYears: Readonly<ShallowRef<FYear[]>>;
2362
+ onChangeDate: (date: FDate) => void;
2363
+ onClickSelectYear: (year: FYear) => void;
2364
+ }, {}, {
2365
+ yearNounText(): string;
2366
+ }, {
2367
+ getSelectableYearId(year: FYear): string;
2165
2368
  onClickDay(date: FDate): void;
2166
- onChangeMonth(date: FDate): void;
2167
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "click")[], "update:modelValue" | "click", PublicProps, Readonly<ExtractPropTypes< {
2369
+ }, ComponentOptionsMixin, ComponentOptionsMixin, {
2370
+ /**
2371
+ * `click` event. Emitted when a calendar day is clicked.
2372
+ */
2373
+ click(_date: FDate): true;
2374
+ /**
2375
+ * `v-model` event. Emitted when changing to a different month
2376
+ * or year in the calendar.
2377
+ */
2378
+ "update:modelValue"(_date: FDate): true;
2379
+ }, string, PublicProps, Readonly<ExtractPropTypes< {
2168
2380
  /**
2169
2381
  * Active month.
2170
- * @model
2171
2382
  */
2172
2383
  modelValue: {
2173
2384
  type: PropType<FDate>;
@@ -2198,10 +2409,28 @@ maxDate: {
2198
2409
  type: PropType<FDate>;
2199
2410
  required: true;
2200
2411
  };
2412
+ /**
2413
+ * Includes a year selector when enabled.
2414
+ */
2415
+ yearSelector: {
2416
+ type: BooleanConstructor;
2417
+ required: false;
2418
+ default: boolean;
2419
+ };
2420
+ /**
2421
+ * Optional id (generated by default).
2422
+ */
2423
+ id: {
2424
+ type: StringConstructor;
2425
+ required: false;
2426
+ default: () => string;
2427
+ };
2201
2428
  }>> & Readonly<{
2202
- onClick?: ((...args: any[]) => any) | undefined;
2203
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2429
+ "onUpdate:modelValue"?: ((_date: FDate) => any) | undefined;
2430
+ onClick?: ((_date: FDate) => any) | undefined;
2204
2431
  }>, {
2432
+ id: string;
2433
+ yearSelector: boolean;
2205
2434
  tabDate: FDate | undefined;
2206
2435
  }, {}, {
2207
2436
  ICalendarNavbar: DefineComponent<ExtractPropTypes< {
@@ -2217,6 +2446,21 @@ maxDate: {
2217
2446
  type: PropType<FDate>;
2218
2447
  required: true;
2219
2448
  };
2449
+ yearSelector: {
2450
+ type: BooleanConstructor;
2451
+ required: false;
2452
+ default: boolean;
2453
+ };
2454
+ yearSelectorOpen: {
2455
+ type: BooleanConstructor;
2456
+ required: false;
2457
+ default: boolean;
2458
+ };
2459
+ id: {
2460
+ type: StringConstructor;
2461
+ required: false;
2462
+ default: () => string;
2463
+ };
2220
2464
  }>, {}, {}, {
2221
2465
  previousDisabled(): boolean;
2222
2466
  nextDisabled(): boolean;
@@ -2225,14 +2469,20 @@ nextValue(): FDate;
2225
2469
  currentText(): string;
2226
2470
  previousSrText(): string;
2227
2471
  nextSrText(): string;
2472
+ openYearSelectorText(): string;
2473
+ closeYearSelectorText(): string;
2228
2474
  previousIconClasses(): Record<string, boolean>;
2229
2475
  nextIconClasses(): Record<string, boolean>;
2476
+ monthTitleClass(): string;
2230
2477
  }, {
2478
+ onClickYearSelector(): void;
2231
2479
  onClickPreviousButton(): void;
2232
2480
  onClickNextButton(): void;
2481
+ onCloseYearSelector(): void;
2482
+ changeDisplayYearSelectorAsOpen(value: boolean): void;
2233
2483
  getDateText(value: FDate): string;
2234
2484
  isFocused(ref: string): boolean;
2235
- }, ComponentOptions, ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", PublicProps, Readonly<ExtractPropTypes< {
2485
+ }, ComponentOptions, ComponentOptionsMixin, ("update:modelValue" | "change" | "update:yearSelectorOpen")[], "update:modelValue" | "change" | "update:yearSelectorOpen", PublicProps, Readonly<ExtractPropTypes< {
2236
2486
  modelValue: {
2237
2487
  type: PropType<FDate>;
2238
2488
  required: true;
@@ -2245,10 +2495,30 @@ maxDate: {
2245
2495
  type: PropType<FDate>;
2246
2496
  required: true;
2247
2497
  };
2498
+ yearSelector: {
2499
+ type: BooleanConstructor;
2500
+ required: false;
2501
+ default: boolean;
2502
+ };
2503
+ yearSelectorOpen: {
2504
+ type: BooleanConstructor;
2505
+ required: false;
2506
+ default: boolean;
2507
+ };
2508
+ id: {
2509
+ type: StringConstructor;
2510
+ required: false;
2511
+ default: () => string;
2512
+ };
2248
2513
  }>> & Readonly<{
2249
2514
  onChange?: ((...args: any[]) => any) | undefined;
2250
2515
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2251
- }>, {}, {}, {
2516
+ "onUpdate:yearSelectorOpen"?: ((...args: any[]) => any) | undefined;
2517
+ }>, {
2518
+ id: string;
2519
+ yearSelector: boolean;
2520
+ yearSelectorOpen: boolean;
2521
+ }, {}, {
2252
2522
  FIcon: DefineComponent<ExtractPropTypes< {
2253
2523
  name: {
2254
2524
  type: StringConstructor;
@@ -2487,7 +2757,7 @@ selected: boolean;
2487
2757
  highlight: boolean;
2488
2758
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
2489
2759
 
2490
- export declare const FCard: __VLS_WithSlots_2<typeof __VLS_component_2, __VLS_Slots_2>;
2760
+ export declare const FCard: __VLS_WithSlots_3<typeof __VLS_component_3, __VLS_Slots_3>;
2491
2761
 
2492
2762
  export declare const FCheckboxField: DefineComponent<ExtractPropTypes< {
2493
2763
  /**
@@ -2510,7 +2780,6 @@ default: () => string;
2510
2780
  };
2511
2781
  /**
2512
2782
  * The value for the input checked attribute.
2513
- * @model
2514
2783
  */
2515
2784
  modelValue: {
2516
2785
  type: (StringConstructor | BooleanConstructor | ObjectConstructor | DateConstructor | ArrayConstructor | NumberConstructor)[];
@@ -2580,7 +2849,6 @@ default: () => string;
2580
2849
  };
2581
2850
  /**
2582
2851
  * The value for the input checked attribute.
2583
- * @model
2584
2852
  */
2585
2853
  modelValue: {
2586
2854
  type: (StringConstructor | BooleanConstructor | ObjectConstructor | DateConstructor | ArrayConstructor | NumberConstructor)[];
@@ -3027,7 +3295,7 @@ options: string[];
3027
3295
  activeOption: string | null;
3028
3296
  activeOptionId: string;
3029
3297
  inputNode: HTMLInputElement;
3030
- }, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
3298
+ }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
3031
3299
  select: (option: string) => any;
3032
3300
  close: () => any;
3033
3301
  }, string, PublicProps, Readonly<{
@@ -3041,7 +3309,7 @@ inputNode: HTMLInputElement;
3041
3309
  onSelect?: ((option: string) => any) | undefined;
3042
3310
  onClose?: (() => any) | undefined;
3043
3311
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
3044
- IComboboxToggleButton: DefineComponent< {}, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
3312
+ IComboboxToggleButton: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
3045
3313
  toggle: () => any;
3046
3314
  }, string, PublicProps, Readonly<{}> & Readonly<{
3047
3315
  onToggle?: (() => any) | undefined;
@@ -3618,7 +3886,7 @@ rotate: string;
3618
3886
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3619
3887
  }, {}, string, ComponentProvideOptions, true, {}, any>;
3620
3888
 
3621
- export declare const FCrudButton: __VLS_WithSlots_3<typeof __VLS_component_3, __VLS_Slots_3>;
3889
+ export declare const FCrudButton: __VLS_WithSlots_4<typeof __VLS_component_4, __VLS_Slots_4>;
3622
3890
 
3623
3891
  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<{
3624
3892
  props: __VLS_PrettifyLocal<Pick<Partial<{
@@ -3645,7 +3913,7 @@ export declare const FCrudDataset: <T>(__VLS_props: NonNullable<Awaited<typeof _
3645
3913
  readonly onUpdated?: ((item: T) => any) | undefined;
3646
3914
  readonly "onUpdate:modelValue"?: ((items: T[]) => any) | undefined;
3647
3915
  readonly onDeleted?: ((item: T) => any) | undefined;
3648
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "beforeCreate" | "modelValue" | "beforeSubmit" | "beforeValidation" | "onCancel" | "primaryButtonRight" | "addNewModalHeader" | "modifyModalHeader" | "deleteModalHeader">, "onUpdate:modelValue" | "onCreated" | "onUpdated" | "onDeleted" | ("beforeCreate" | "modelValue" | "beforeSubmit" | "beforeValidation" | "onCancel" | "primaryButtonRight" | "addNewModalHeader" | "modifyModalHeader" | "deleteModalHeader")> & {} & Partial<{}>> & PublicProps;
3916
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "beforeCreate" | "modelValue" | "beforeSubmit" | "beforeValidation" | "onCancel" | "primaryButtonRight" | "addNewModalHeader" | "modifyModalHeader" | "deleteModalHeader">, "onUpdate:modelValue" | "onCreated" | "onUpdated" | "onDeleted" | ("beforeCreate" | "modelValue" | "beforeSubmit" | "beforeValidation" | "onCancel" | "primaryButtonRight" | "addNewModalHeader" | "modifyModalHeader" | "deleteModalHeader")> & {} & {}> & PublicProps;
3649
3917
  expose(exposed: ShallowUnwrapRef< {}>): void;
3650
3918
  attrs: any;
3651
3919
  slots: {
@@ -4116,7 +4384,7 @@ options: string[];
4116
4384
  activeOption: string | null;
4117
4385
  activeOptionId: string;
4118
4386
  inputNode: HTMLInputElement;
4119
- }, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
4387
+ }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
4120
4388
  select: (option: string) => any;
4121
4389
  close: () => any;
4122
4390
  }, string, PublicProps, Readonly<{
@@ -4130,7 +4398,7 @@ inputNode: HTMLInputElement;
4130
4398
  onSelect?: ((option: string) => any) | undefined;
4131
4399
  onClose?: (() => any) | undefined;
4132
4400
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
4133
- IComboboxToggleButton: DefineComponent< {}, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
4401
+ IComboboxToggleButton: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
4134
4402
  toggle: () => any;
4135
4403
  }, string, PublicProps, Readonly<{}> & Readonly<{
4136
4404
  onToggle?: (() => any) | undefined;
@@ -4161,7 +4429,7 @@ export declare const FDataTable: <T extends object>(__VLS_props: NonNullable<Awa
4161
4429
  readonly rows: T[];
4162
4430
  readonly striped: boolean;
4163
4431
  readonly keyAttribute?: string | undefined;
4164
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "scroll" | "keyAttribute" | "striped">, "rows" | ("scroll" | "keyAttribute" | "striped")> & {} & Partial<{}>> & PublicProps;
4432
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "scroll" | "keyAttribute" | "striped">, "rows" | ("scroll" | "keyAttribute" | "striped")> & {} & {}> & PublicProps;
4165
4433
  expose(exposed: ShallowUnwrapRef< {}>): void;
4166
4434
  attrs: any;
4167
4435
  slots: {
@@ -4188,7 +4456,6 @@ export declare const FDataTable: <T extends object>(__VLS_props: NonNullable<Awa
4188
4456
 
4189
4457
  export declare const FDatepickerField: DefineComponent<ExtractPropTypes< {
4190
4458
  /** Selected day.
4191
- * @model
4192
4459
  */
4193
4460
  modelValue: {
4194
4461
  type: StringConstructor;
@@ -4220,6 +4487,14 @@ type: BooleanConstructor;
4220
4487
  default: boolean;
4221
4488
  };
4222
4489
  /**
4490
+ * Includes a year selector when enabled.
4491
+ */
4492
+ yearSelector: {
4493
+ type: BooleanConstructor;
4494
+ required: false;
4495
+ default: boolean;
4496
+ };
4497
+ /**
4223
4498
  * Set responsive width for label section.
4224
4499
  *
4225
4500
  * ```
@@ -4285,7 +4560,6 @@ highlightDay(date: FDate): boolean;
4285
4560
  updateTextFieldValue(newValue: string): Promise<void>;
4286
4561
  }, ComponentOptions, ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", PublicProps, Readonly<ExtractPropTypes< {
4287
4562
  /** Selected day.
4288
- * @model
4289
4563
  */
4290
4564
  modelValue: {
4291
4565
  type: StringConstructor;
@@ -4317,6 +4591,14 @@ type: BooleanConstructor;
4317
4591
  default: boolean;
4318
4592
  };
4319
4593
  /**
4594
+ * Includes a year selector when enabled.
4595
+ */
4596
+ yearSelector: {
4597
+ type: BooleanConstructor;
4598
+ required: false;
4599
+ default: boolean;
4600
+ };
4601
+ /**
4320
4602
  * Set responsive width for label section.
4321
4603
  *
4322
4604
  * ```
@@ -4353,6 +4635,7 @@ onChange?: ((...args: any[]) => any) | undefined;
4353
4635
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
4354
4636
  }>, {
4355
4637
  modelValue: string;
4638
+ yearSelector: boolean;
4356
4639
  disabled: boolean;
4357
4640
  labelWidth: string;
4358
4641
  inputWidth: string;
@@ -4378,10 +4661,31 @@ maxDate: {
4378
4661
  type: PropType<FDate>;
4379
4662
  required: true;
4380
4663
  };
4381
- }>, {}, {}, {}, {
4664
+ yearSelector: {
4665
+ type: BooleanConstructor;
4666
+ required: false;
4667
+ default: boolean;
4668
+ };
4669
+ id: {
4670
+ type: StringConstructor;
4671
+ required: false;
4672
+ default: () => string;
4673
+ };
4674
+ }>, {
4675
+ yearSelectorOpen: Ref<boolean, boolean>;
4676
+ activeYear: Ref<FYear, FYear>;
4677
+ selectableYears: Readonly<ShallowRef<FYear[]>>;
4678
+ onChangeDate: (date: FDate) => void;
4679
+ onClickSelectYear: (year: FYear) => void;
4680
+ }, {}, {
4681
+ yearNounText(): string;
4682
+ }, {
4683
+ getSelectableYearId(year: FYear): string;
4382
4684
  onClickDay(date: FDate): void;
4383
- onChangeMonth(date: FDate): void;
4384
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "click")[], "update:modelValue" | "click", PublicProps, Readonly<ExtractPropTypes< {
4685
+ }, ComponentOptionsMixin, ComponentOptionsMixin, {
4686
+ click(_date: FDate): true;
4687
+ "update:modelValue"(_date: FDate): true;
4688
+ }, string, PublicProps, Readonly<ExtractPropTypes< {
4385
4689
  modelValue: {
4386
4690
  type: PropType<FDate>;
4387
4691
  required: true;
@@ -4399,10 +4703,22 @@ maxDate: {
4399
4703
  type: PropType<FDate>;
4400
4704
  required: true;
4401
4705
  };
4706
+ yearSelector: {
4707
+ type: BooleanConstructor;
4708
+ required: false;
4709
+ default: boolean;
4710
+ };
4711
+ id: {
4712
+ type: StringConstructor;
4713
+ required: false;
4714
+ default: () => string;
4715
+ };
4402
4716
  }>> & Readonly<{
4403
- onClick?: ((...args: any[]) => any) | undefined;
4404
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
4717
+ "onUpdate:modelValue"?: ((_date: FDate) => any) | undefined;
4718
+ onClick?: ((_date: FDate) => any) | undefined;
4405
4719
  }>, {
4720
+ id: string;
4721
+ yearSelector: boolean;
4406
4722
  tabDate: FDate | undefined;
4407
4723
  }, {}, {
4408
4724
  ICalendarNavbar: DefineComponent<ExtractPropTypes< {
@@ -4418,6 +4734,21 @@ maxDate: {
4418
4734
  type: PropType<FDate>;
4419
4735
  required: true;
4420
4736
  };
4737
+ yearSelector: {
4738
+ type: BooleanConstructor;
4739
+ required: false;
4740
+ default: boolean;
4741
+ };
4742
+ yearSelectorOpen: {
4743
+ type: BooleanConstructor;
4744
+ required: false;
4745
+ default: boolean;
4746
+ };
4747
+ id: {
4748
+ type: StringConstructor;
4749
+ required: false;
4750
+ default: () => string;
4751
+ };
4421
4752
  }>, {}, {}, {
4422
4753
  previousDisabled(): boolean;
4423
4754
  nextDisabled(): boolean;
@@ -4426,14 +4757,20 @@ nextValue(): FDate;
4426
4757
  currentText(): string;
4427
4758
  previousSrText(): string;
4428
4759
  nextSrText(): string;
4760
+ openYearSelectorText(): string;
4761
+ closeYearSelectorText(): string;
4429
4762
  previousIconClasses(): Record<string, boolean>;
4430
4763
  nextIconClasses(): Record<string, boolean>;
4764
+ monthTitleClass(): string;
4431
4765
  }, {
4766
+ onClickYearSelector(): void;
4432
4767
  onClickPreviousButton(): void;
4433
4768
  onClickNextButton(): void;
4769
+ onCloseYearSelector(): void;
4770
+ changeDisplayYearSelectorAsOpen(value: boolean): void;
4434
4771
  getDateText(value: FDate): string;
4435
4772
  isFocused(ref: string): boolean;
4436
- }, ComponentOptions, ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", PublicProps, Readonly<ExtractPropTypes< {
4773
+ }, ComponentOptions, ComponentOptionsMixin, ("update:modelValue" | "change" | "update:yearSelectorOpen")[], "update:modelValue" | "change" | "update:yearSelectorOpen", PublicProps, Readonly<ExtractPropTypes< {
4437
4774
  modelValue: {
4438
4775
  type: PropType<FDate>;
4439
4776
  required: true;
@@ -4446,10 +4783,30 @@ maxDate: {
4446
4783
  type: PropType<FDate>;
4447
4784
  required: true;
4448
4785
  };
4786
+ yearSelector: {
4787
+ type: BooleanConstructor;
4788
+ required: false;
4789
+ default: boolean;
4790
+ };
4791
+ yearSelectorOpen: {
4792
+ type: BooleanConstructor;
4793
+ required: false;
4794
+ default: boolean;
4795
+ };
4796
+ id: {
4797
+ type: StringConstructor;
4798
+ required: false;
4799
+ default: () => string;
4800
+ };
4449
4801
  }>> & Readonly<{
4450
4802
  onChange?: ((...args: any[]) => any) | undefined;
4451
4803
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
4452
- }>, {}, {}, {
4804
+ "onUpdate:yearSelectorOpen"?: ((...args: any[]) => any) | undefined;
4805
+ }>, {
4806
+ id: string;
4807
+ yearSelector: boolean;
4808
+ yearSelectorOpen: boolean;
4809
+ }, {}, {
4453
4810
  FIcon: DefineComponent<ExtractPropTypes< {
4454
4811
  name: {
4455
4812
  type: StringConstructor;
@@ -5114,7 +5471,7 @@ options: string[];
5114
5471
  activeOption: string | null;
5115
5472
  activeOptionId: string;
5116
5473
  inputNode: HTMLInputElement;
5117
- }, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
5474
+ }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
5118
5475
  select: (option: string) => any;
5119
5476
  close: () => any;
5120
5477
  }, string, PublicProps, Readonly<{
@@ -5128,7 +5485,7 @@ inputNode: HTMLInputElement;
5128
5485
  onSelect?: ((option: string) => any) | undefined;
5129
5486
  onClose?: (() => any) | undefined;
5130
5487
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
5131
- IComboboxToggleButton: DefineComponent< {}, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
5488
+ IComboboxToggleButton: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
5132
5489
  toggle: () => any;
5133
5490
  }, string, PublicProps, Readonly<{}> & Readonly<{
5134
5491
  onToggle?: (() => any) | undefined;
@@ -5260,7 +5617,7 @@ export declare const FDetailsPanel: <T>(__VLS_props: NonNullable<Awaited<typeof
5260
5617
  * from being open at the same time.
5261
5618
  */
5262
5619
  exclusive?: string;
5263
- } & Partial<{}>> & PublicProps;
5620
+ } & {}> & PublicProps;
5264
5621
  expose(exposed: ShallowUnwrapRef< {}>): void;
5265
5622
  attrs: any;
5266
5623
  slots: {
@@ -5280,7 +5637,6 @@ export declare const FDetailsPanel: <T>(__VLS_props: NonNullable<Awaited<typeof
5280
5637
  export declare const FDialogueTree: DefineComponent<ExtractPropTypes< {
5281
5638
  /**
5282
5639
  * Current dialogue question
5283
- * @model
5284
5640
  */
5285
5641
  modelValue: {
5286
5642
  type: PropType<FDialogueTreeUserProgress>;
@@ -5302,7 +5658,6 @@ emitChange(lastStep: boolean): void;
5302
5658
  }, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
5303
5659
  /**
5304
5660
  * Current dialogue question
5305
- * @model
5306
5661
  */
5307
5662
  modelValue: {
5308
5663
  type: PropType<FDialogueTreeUserProgress>;
@@ -5437,7 +5792,6 @@ default: () => string;
5437
5792
  /**
5438
5793
  * The value for the input.
5439
5794
  * If the prop is not set undefined will be used.
5440
- * @model
5441
5795
  */
5442
5796
  modelValue: {
5443
5797
  type: (StringConstructor | null)[];
@@ -5489,7 +5843,6 @@ default: () => string;
5489
5843
  /**
5490
5844
  * The value for the input.
5491
5845
  * If the prop is not set undefined will be used.
5492
- * @model
5493
5846
  */
5494
5847
  modelValue: {
5495
5848
  type: (StringConstructor | null)[];
@@ -5930,7 +6283,7 @@ options: string[];
5930
6283
  activeOption: string | null;
5931
6284
  activeOptionId: string;
5932
6285
  inputNode: HTMLInputElement;
5933
- }, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
6286
+ }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
5934
6287
  select: (option: string) => any;
5935
6288
  close: () => any;
5936
6289
  }, string, PublicProps, Readonly<{
@@ -5944,7 +6297,7 @@ inputNode: HTMLInputElement;
5944
6297
  onSelect?: ((option: string) => any) | undefined;
5945
6298
  onClose?: (() => any) | undefined;
5946
6299
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
5947
- IComboboxToggleButton: DefineComponent< {}, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
6300
+ IComboboxToggleButton: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
5948
6301
  toggle: () => any;
5949
6302
  }, string, PublicProps, Readonly<{}> & Readonly<{
5950
6303
  onToggle?: (() => any) | undefined;
@@ -7125,7 +7478,7 @@ rotate: string;
7125
7478
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
7126
7479
  }, {}, string, ComponentProvideOptions, true, {}, any>;
7127
7480
 
7128
- export declare const FFixedPane: __VLS_WithSlots_4<typeof __VLS_component_4, __VLS_Slots_4>;
7481
+ export declare const FFixedPane: __VLS_WithSlots_5<typeof __VLS_component_5, __VLS_Slots_5>;
7129
7482
 
7130
7483
  export declare const FFormModal: DefineComponent<ExtractPropTypes< {
7131
7484
  /**
@@ -7230,7 +7583,7 @@ preparedButtons(): FModalButton[];
7230
7583
  onClose(): void;
7231
7584
  onSubmit(): Promise<void>;
7232
7585
  onCancel(): void;
7233
- }, ComponentOptions, ComponentOptionsMixin, ("close" | "submit" | "cancel")[], "close" | "submit" | "cancel", PublicProps, Readonly<ExtractPropTypes< {
7586
+ }, ComponentOptions, ComponentOptionsMixin, ("submit" | "close" | "cancel")[], "submit" | "close" | "cancel", PublicProps, Readonly<ExtractPropTypes< {
7234
7587
  /**
7235
7588
  * Enable fullscreen mode in mobile.
7236
7589
  */
@@ -7332,8 +7685,8 @@ onSubmit?: ((...args: any[]) => any) | undefined;
7332
7685
  onClose?: ((...args: any[]) => any) | undefined;
7333
7686
  onCancel?: ((...args: any[]) => any) | undefined;
7334
7687
  }>, {
7335
- value: Record<string, any>;
7336
7688
  size: string;
7689
+ value: Record<string, any>;
7337
7690
  isOpen: boolean;
7338
7691
  fullscreen: boolean;
7339
7692
  ariaCloseText: string;
@@ -7965,7 +8318,7 @@ export declare const FInteractiveTable: <T extends object, K extends keyof T>(__
7965
8318
  readonly onExpand?: ((row: T) => any) | undefined;
7966
8319
  readonly onUnselect?: ((row: T) => any) | undefined;
7967
8320
  readonly "onUpdate:active"?: ((row: T | undefined) => any) | undefined;
7968
- } & 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;
8321
+ } & 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")> & {} & {}> & PublicProps;
7969
8322
  expose(exposed: ShallowUnwrapRef< {}>): void;
7970
8323
  attrs: any;
7971
8324
  slots: {
@@ -8248,7 +8601,6 @@ contentStyle(): Record<string, string>;
8248
8601
  }, {
8249
8602
  onOpenSecondary(): Promise<void>;
8250
8603
  onCloseSecondary(): void;
8251
- openSecondary(): void;
8252
8604
  onClickCloseSecondary(): void;
8253
8605
  onResize(): void;
8254
8606
  }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
@@ -8394,7 +8746,7 @@ export declare const FList: <T extends object>(__VLS_props: NonNullable<Awaited<
8394
8746
  readonly onClick?: ((item: T) => any) | undefined;
8395
8747
  readonly onUnselect?: ((item: T) => any) | undefined;
8396
8748
  readonly "onUpdate:active"?: ((item: T) => any) | undefined;
8397
- } & 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;
8749
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "elementId" | "modelValue" | "checkbox" | "keyAttribute" | "selectable" | "active">, "onChange" | "onClick" | "onSelect" | "items" | "onUpdate:modelValue" | "onUnselect" | "onUpdate:active" | ("elementId" | "modelValue" | "checkbox" | "keyAttribute" | "selectable" | "active")> & {} & {}> & PublicProps;
8398
8750
  expose(exposed: ShallowUnwrapRef< {}>): void;
8399
8751
  attrs: any;
8400
8752
  slots: {
@@ -8549,7 +8901,7 @@ default: string;
8549
8901
  required: false;
8550
8902
  validator(value: string): boolean;
8551
8903
  };
8552
- }>, void, {}, {
8904
+ }>, {}, {}, {
8553
8905
  ariaLabel(): string;
8554
8906
  }, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
8555
8907
  /**
@@ -8800,7 +9152,7 @@ align: string;
8800
9152
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
8801
9153
  }, {}, string, ComponentProvideOptions, true, {}, any>;
8802
9154
 
8803
- export declare const FMinimizablePanel: __VLS_WithSlots_5<typeof __VLS_component_5, __VLS_Slots_5>;
9155
+ export declare const FMinimizablePanel: __VLS_WithSlots_6<typeof __VLS_component_6, __VLS_Slots_6>;
8804
9156
 
8805
9157
  /**
8806
9158
  * Level: Ready
@@ -9508,7 +9860,6 @@ export declare interface FNavigationMenuData {
9508
9860
  export declare const FNumericTextField: DefineComponent<ExtractPropTypes< {
9509
9861
  /**
9510
9862
  * The number of decimals to format number as.
9511
- * @model
9512
9863
  */
9513
9864
  decimals: {
9514
9865
  type: NumberConstructor;
@@ -9943,7 +10294,7 @@ options: string[];
9943
10294
  activeOption: string | null;
9944
10295
  activeOptionId: string;
9945
10296
  inputNode: HTMLInputElement;
9946
- }, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
10297
+ }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
9947
10298
  select: (option: string) => any;
9948
10299
  close: () => any;
9949
10300
  }, string, PublicProps, Readonly<{
@@ -9957,7 +10308,7 @@ inputNode: HTMLInputElement;
9957
10308
  onSelect?: ((option: string) => any) | undefined;
9958
10309
  onClose?: (() => any) | undefined;
9959
10310
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
9960
- IComboboxToggleButton: DefineComponent< {}, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
10311
+ IComboboxToggleButton: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
9961
10312
  toggle: () => any;
9962
10313
  }, string, PublicProps, Readonly<{}> & Readonly<{
9963
10314
  onToggle?: (() => any) | undefined;
@@ -9965,7 +10316,6 @@ onToggle?: (() => any) | undefined;
9965
10316
  }, {}, string, ComponentProvideOptions, true, {}, any>, {}, string, PublicProps, Readonly<ExtractPropTypes< {
9966
10317
  /**
9967
10318
  * The number of decimals to format number as.
9968
- * @model
9969
10319
  */
9970
10320
  decimals: {
9971
10321
  type: NumberConstructor;
@@ -10579,7 +10929,7 @@ options: string[];
10579
10929
  activeOption: string | null;
10580
10930
  activeOptionId: string;
10581
10931
  inputNode: HTMLInputElement;
10582
- }, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
10932
+ }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
10583
10933
  select: (option: string) => any;
10584
10934
  close: () => any;
10585
10935
  }, string, PublicProps, Readonly<{
@@ -10593,7 +10943,7 @@ inputNode: HTMLInputElement;
10593
10943
  onSelect?: ((option: string) => any) | undefined;
10594
10944
  onClose?: (() => any) | undefined;
10595
10945
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
10596
- IComboboxToggleButton: DefineComponent< {}, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
10946
+ IComboboxToggleButton: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
10597
10947
  toggle: () => any;
10598
10948
  }, string, PublicProps, Readonly<{}> & Readonly<{
10599
10949
  onToggle?: (() => any) | undefined;
@@ -10867,7 +11217,7 @@ export declare const FPageLayout: <T extends FPageLayoutType>(__VLS_props: NonNu
10867
11217
  readonly onUpdate?: (() => any) | undefined;
10868
11218
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, "onUpdate"> & {
10869
11219
  layout: T;
10870
- } & Partial<{}>> & PublicProps;
11220
+ } & {}> & PublicProps;
10871
11221
  expose(exposed: ShallowUnwrapRef< {}>): void;
10872
11222
  attrs: any;
10873
11223
  slots: {
@@ -11339,7 +11689,7 @@ options: string[];
11339
11689
  activeOption: string | null;
11340
11690
  activeOptionId: string;
11341
11691
  inputNode: HTMLInputElement;
11342
- }, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
11692
+ }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
11343
11693
  select: (option: string) => any;
11344
11694
  close: () => any;
11345
11695
  }, string, PublicProps, Readonly<{
@@ -11353,7 +11703,7 @@ inputNode: HTMLInputElement;
11353
11703
  onSelect?: ((option: string) => any) | undefined;
11354
11704
  onClose?: (() => any) | undefined;
11355
11705
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
11356
- IComboboxToggleButton: DefineComponent< {}, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
11706
+ IComboboxToggleButton: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
11357
11707
  toggle: () => any;
11358
11708
  }, string, PublicProps, Readonly<{}> & Readonly<{
11359
11709
  onToggle?: (() => any) | undefined;
@@ -11816,7 +12166,7 @@ options: string[];
11816
12166
  activeOption: string | null;
11817
12167
  activeOptionId: string;
11818
12168
  inputNode: HTMLInputElement;
11819
- }, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
12169
+ }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
11820
12170
  select: (option: string) => any;
11821
12171
  close: () => any;
11822
12172
  }, string, PublicProps, Readonly<{
@@ -11830,7 +12180,7 @@ inputNode: HTMLInputElement;
11830
12180
  onSelect?: ((option: string) => any) | undefined;
11831
12181
  onClose?: (() => any) | undefined;
11832
12182
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
11833
- IComboboxToggleButton: DefineComponent< {}, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
12183
+ IComboboxToggleButton: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
11834
12184
  toggle: () => any;
11835
12185
  }, string, PublicProps, Readonly<{}> & Readonly<{
11836
12186
  onToggle?: (() => any) | undefined;
@@ -11866,7 +12216,6 @@ default: () => string;
11866
12216
  * The value for the input.
11867
12217
  * If the prop is not used or set to undefined
11868
12218
  * or null then the default value will be used.
11869
- * @model
11870
12219
  */
11871
12220
  modelValue: {
11872
12221
  type: (StringConstructor | null)[];
@@ -11908,7 +12257,6 @@ default: () => string;
11908
12257
  * The value for the input.
11909
12258
  * If the prop is not used or set to undefined
11910
12259
  * or null then the default value will be used.
11911
- * @model
11912
12260
  */
11913
12261
  modelValue: {
11914
12262
  type: (StringConstructor | null)[];
@@ -12339,7 +12687,7 @@ options: string[];
12339
12687
  activeOption: string | null;
12340
12688
  activeOptionId: string;
12341
12689
  inputNode: HTMLInputElement;
12342
- }, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
12690
+ }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
12343
12691
  select: (option: string) => any;
12344
12692
  close: () => any;
12345
12693
  }, string, PublicProps, Readonly<{
@@ -12353,7 +12701,7 @@ inputNode: HTMLInputElement;
12353
12701
  onSelect?: ((option: string) => any) | undefined;
12354
12702
  onClose?: (() => any) | undefined;
12355
12703
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
12356
- IComboboxToggleButton: DefineComponent< {}, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
12704
+ IComboboxToggleButton: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
12357
12705
  toggle: () => any;
12358
12706
  }, string, PublicProps, Readonly<{}> & Readonly<{
12359
12707
  onToggle?: (() => any) | undefined;
@@ -12787,7 +13135,7 @@ options: string[];
12787
13135
  activeOption: string | null;
12788
13136
  activeOptionId: string;
12789
13137
  inputNode: HTMLInputElement;
12790
- }, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
13138
+ }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
12791
13139
  select: (option: string) => any;
12792
13140
  close: () => any;
12793
13141
  }, string, PublicProps, Readonly<{
@@ -12801,7 +13149,7 @@ inputNode: HTMLInputElement;
12801
13149
  onSelect?: ((option: string) => any) | undefined;
12802
13150
  onClose?: (() => any) | undefined;
12803
13151
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
12804
- IComboboxToggleButton: DefineComponent< {}, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
13152
+ IComboboxToggleButton: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
12805
13153
  toggle: () => any;
12806
13154
  }, string, PublicProps, Readonly<{}> & Readonly<{
12807
13155
  onToggle?: (() => any) | undefined;
@@ -13244,7 +13592,7 @@ options: string[];
13244
13592
  activeOption: string | null;
13245
13593
  activeOptionId: string;
13246
13594
  inputNode: HTMLInputElement;
13247
- }, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
13595
+ }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
13248
13596
  select: (option: string) => any;
13249
13597
  close: () => any;
13250
13598
  }, string, PublicProps, Readonly<{
@@ -13258,7 +13606,7 @@ inputNode: HTMLInputElement;
13258
13606
  onSelect?: ((option: string) => any) | undefined;
13259
13607
  onClose?: (() => any) | undefined;
13260
13608
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
13261
- IComboboxToggleButton: DefineComponent< {}, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
13609
+ IComboboxToggleButton: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
13262
13610
  toggle: () => any;
13263
13611
  }, string, PublicProps, Readonly<{}> & Readonly<{
13264
13612
  onToggle?: (() => any) | undefined;
@@ -13303,7 +13651,7 @@ default: string;
13303
13651
  type: StringConstructor;
13304
13652
  required: true;
13305
13653
  };
13306
- }>, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
13654
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
13307
13655
  /**
13308
13656
  * Sets the progress. Higher value indicates further progress.
13309
13657
  *
@@ -13358,7 +13706,6 @@ default: () => string;
13358
13706
  };
13359
13707
  /**
13360
13708
  * The value for the input checked attribute.
13361
- * @model
13362
13709
  */
13363
13710
  modelValue: {
13364
13711
  type: (StringConstructor | BooleanConstructor | ObjectConstructor | DateConstructor | ArrayConstructor | NumberConstructor | null)[];
@@ -13424,7 +13771,6 @@ default: () => string;
13424
13771
  };
13425
13772
  /**
13426
13773
  * The value for the input checked attribute.
13427
- * @model
13428
13774
  */
13429
13775
  modelValue: {
13430
13776
  type: (StringConstructor | BooleanConstructor | ObjectConstructor | DateConstructor | ArrayConstructor | NumberConstructor | null)[];
@@ -13447,7 +13793,7 @@ modelValue: string | number | boolean | Date | unknown[] | Record<string, any> |
13447
13793
  disabled: boolean;
13448
13794
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
13449
13795
 
13450
- export declare const FResizePane: __VLS_WithSlots_6<typeof __VLS_component_6, __VLS_Slots_6>;
13796
+ export declare const FResizePane: __VLS_WithSlots_7<typeof __VLS_component_7, __VLS_Slots_7>;
13451
13797
 
13452
13798
  export declare const FSearchTextField: DefineComponent<ExtractPropTypes< {
13453
13799
  id: {
@@ -13916,7 +14262,7 @@ options: string[];
13916
14262
  activeOption: string | null;
13917
14263
  activeOptionId: string;
13918
14264
  inputNode: HTMLInputElement;
13919
- }, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
14265
+ }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
13920
14266
  select: (option: string) => any;
13921
14267
  close: () => any;
13922
14268
  }, string, PublicProps, Readonly<{
@@ -13930,7 +14276,7 @@ inputNode: HTMLInputElement;
13930
14276
  onSelect?: ((option: string) => any) | undefined;
13931
14277
  onClose?: (() => any) | undefined;
13932
14278
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
13933
- IComboboxToggleButton: DefineComponent< {}, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
14279
+ IComboboxToggleButton: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
13934
14280
  toggle: () => any;
13935
14281
  }, string, PublicProps, Readonly<{}> & Readonly<{
13936
14282
  onToggle?: (() => any) | undefined;
@@ -14014,7 +14360,6 @@ default: boolean;
14014
14360
  /**
14015
14361
  * The value for the input.
14016
14362
  * If the prop is not set undefined will be used.
14017
- * @model
14018
14363
  */
14019
14364
  modelValue: {
14020
14365
  type: (StringConstructor | BooleanConstructor | ObjectConstructor | ArrayConstructor | NumberConstructor | null)[];
@@ -14085,7 +14430,6 @@ default: boolean;
14085
14430
  /**
14086
14431
  * The value for the input.
14087
14432
  * If the prop is not set undefined will be used.
14088
- * @model
14089
14433
  */
14090
14434
  modelValue: {
14091
14435
  type: (StringConstructor | BooleanConstructor | ObjectConstructor | ArrayConstructor | NumberConstructor | null)[];
@@ -14279,7 +14623,7 @@ export declare const FSortFilterDataset: <T>(__VLS_props: NonNullable<Awaited<ty
14279
14623
  readonly filterAttributes?: string[] | undefined;
14280
14624
  readonly onDatasetSorted?: ((items: T[]) => any) | undefined;
14281
14625
  readonly onUsedSortAttributes?: ((sortAttribute: SortOrder) => any) | undefined;
14282
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "defaultSortAttribute" | "showSort" | "showFilter" | "placeholderFilter" | "defaultSortAscending" | "filterAttributes">, "data" | "sortableAttributes" | "onDatasetSorted" | "onUsedSortAttributes" | ("defaultSortAttribute" | "showSort" | "showFilter" | "placeholderFilter" | "defaultSortAscending" | "filterAttributes")> & {} & Partial<{}>> & PublicProps;
14626
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "defaultSortAttribute" | "showSort" | "showFilter" | "placeholderFilter" | "defaultSortAscending" | "filterAttributes">, "data" | "sortableAttributes" | "onDatasetSorted" | "onUsedSortAttributes" | ("defaultSortAttribute" | "showSort" | "showFilter" | "placeholderFilter" | "defaultSortAscending" | "filterAttributes")> & {} & {}> & PublicProps;
14283
14627
  expose(exposed: ShallowUnwrapRef< {}>): void;
14284
14628
  attrs: any;
14285
14629
  slots: {
@@ -14420,9 +14764,9 @@ rotate: string;
14420
14764
  }, {}, string, ComponentProvideOptions, true, {}, any>;
14421
14765
  }, {}, string, ComponentProvideOptions, true, {}, any>;
14422
14766
 
14423
- export declare const FTableButton: __VLS_WithSlots_7<typeof __VLS_component_7, __VLS_Slots_7>;
14767
+ export declare const FTableButton: __VLS_WithSlots_8<typeof __VLS_component_8, __VLS_Slots_8>;
14424
14768
 
14425
- export declare const FTableColumn: __VLS_WithSlots_8<typeof __VLS_component_8, __VLS_Slots_8>;
14769
+ export declare const FTableColumn: __VLS_WithSlots_9<typeof __VLS_component_9, __VLS_Slots_9>;
14426
14770
 
14427
14771
  /**
14428
14772
  * @public
@@ -14510,7 +14854,6 @@ default: () => string;
14510
14854
  /**
14511
14855
  * The value for the input.
14512
14856
  * If the prop is not set undefined will be used.
14513
- * @model
14514
14857
  */
14515
14858
  modelValue: {
14516
14859
  type: StringConstructor;
@@ -14591,7 +14934,6 @@ default: () => string;
14591
14934
  /**
14592
14935
  * The value for the input.
14593
14936
  * If the prop is not set undefined will be used.
14594
- * @model
14595
14937
  */
14596
14938
  modelValue: {
14597
14939
  type: StringConstructor;
@@ -14757,7 +15099,6 @@ default: boolean;
14757
15099
  * The value for the input.
14758
15100
  * If the prop is not used or set to undefined
14759
15101
  * or null then the default value will be used.
14760
- * @model
14761
15102
  */
14762
15103
  modelValue: {
14763
15104
  type: (StringConstructor | NumberConstructor | null)[];
@@ -14918,7 +15259,6 @@ default: boolean;
14918
15259
  * The value for the input.
14919
15260
  * If the prop is not used or set to undefined
14920
15261
  * or null then the default value will be used.
14921
- * @model
14922
15262
  */
14923
15263
  modelValue: {
14924
15264
  type: (StringConstructor | NumberConstructor | null)[];
@@ -15266,7 +15606,7 @@ options: string[];
15266
15606
  activeOption: string | null;
15267
15607
  activeOptionId: string;
15268
15608
  inputNode: HTMLInputElement;
15269
- }, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
15609
+ }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
15270
15610
  select: (option: string) => any;
15271
15611
  close: () => any;
15272
15612
  }, string, PublicProps, Readonly<{
@@ -15280,7 +15620,7 @@ inputNode: HTMLInputElement;
15280
15620
  onSelect?: ((option: string) => any) | undefined;
15281
15621
  onClose?: (() => any) | undefined;
15282
15622
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
15283
- IComboboxToggleButton: DefineComponent< {}, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
15623
+ IComboboxToggleButton: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
15284
15624
  toggle: () => any;
15285
15625
  }, string, PublicProps, Readonly<{}> & Readonly<{
15286
15626
  onToggle?: (() => any) | undefined;
@@ -15304,8 +15644,6 @@ default: null;
15304
15644
  };
15305
15645
  /**
15306
15646
  * State (expanded or collapsed) of the tooltip. The value is `true` if the tooltip is expanded.
15307
- *
15308
- * @model
15309
15647
  */
15310
15648
  modelValue: {
15311
15649
  type: BooleanConstructor;
@@ -15370,8 +15708,6 @@ default: null;
15370
15708
  };
15371
15709
  /**
15372
15710
  * State (expanded or collapsed) of the tooltip. The value is `true` if the tooltip is expanded.
15373
- *
15374
- * @model
15375
15711
  */
15376
15712
  modelValue: {
15377
15713
  type: BooleanConstructor;
@@ -15610,7 +15946,6 @@ export declare const FValidationGroup: DefineComponent<ExtractPropTypes< {
15610
15946
  * `componentsWithError`: a list of components with errors sorted in DOM order
15611
15947
  *
15612
15948
  * `componentCount`: number of registered components
15613
- * @model
15614
15949
  */
15615
15950
  modelValue: {
15616
15951
  type: PropType<GroupValidityEvent>;
@@ -15640,7 +15975,6 @@ triggerGroupValidityEvent(): void;
15640
15975
  * `componentsWithError`: a list of components with errors sorted in DOM order
15641
15976
  *
15642
15977
  * `componentCount`: number of registered components
15643
- * @model
15644
15978
  */
15645
15979
  modelValue: {
15646
15980
  type: PropType<GroupValidityEvent>;
@@ -16669,7 +17003,6 @@ afterAnimation: AnimationCallback;
16669
17003
  export declare const ICalendarMonth: DefineComponent<ExtractPropTypes< {
16670
17004
  /**
16671
17005
  * Active month.
16672
- * @model
16673
17006
  */
16674
17007
  modelValue: {
16675
17008
  type: PropType<FDate>;
@@ -16708,7 +17041,6 @@ getTabindex(date: FDate): 0 | -1;
16708
17041
  }, ComponentOptions, ComponentOptionsMixin, ("update:modelValue" | "change" | "click")[], "update:modelValue" | "change" | "click", PublicProps, Readonly<ExtractPropTypes< {
16709
17042
  /**
16710
17043
  * Active month.
16711
- * @model
16712
17044
  */
16713
17045
  modelValue: {
16714
17046
  type: PropType<FDate>;
@@ -16793,7 +17125,6 @@ hideWeekNumbers: boolean;
16793
17125
  export declare const ICalendarMonthGrid: DefineComponent<ExtractPropTypes< {
16794
17126
  /**
16795
17127
  * Focused month.
16796
- * @model
16797
17128
  */
16798
17129
  value: {
16799
17130
  type: PropType<FDate>;
@@ -16829,7 +17160,6 @@ getDayEndOffset(days: FDate[]): number;
16829
17160
  }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
16830
17161
  /**
16831
17162
  * Focused month.
16832
- * @model
16833
17163
  */
16834
17164
  value: {
16835
17165
  type: PropType<FDate>;
@@ -16869,6 +17199,30 @@ maxDate: {
16869
17199
  type: PropType<FDate>;
16870
17200
  required: true;
16871
17201
  };
17202
+ /**
17203
+ * Includes a year selector when enabled.
17204
+ */
17205
+ yearSelector: {
17206
+ type: BooleanConstructor;
17207
+ required: false;
17208
+ default: boolean;
17209
+ };
17210
+ /**
17211
+ * Displays the year selector as open when enabled.
17212
+ */
17213
+ yearSelectorOpen: {
17214
+ type: BooleanConstructor;
17215
+ required: false;
17216
+ default: boolean;
17217
+ };
17218
+ /**
17219
+ * Optional id (generated by default).
17220
+ */
17221
+ id: {
17222
+ type: StringConstructor;
17223
+ required: false;
17224
+ default: () => string;
17225
+ };
16872
17226
  }>, {}, {}, {
16873
17227
  previousDisabled(): boolean;
16874
17228
  nextDisabled(): boolean;
@@ -16877,14 +17231,20 @@ nextValue(): FDate;
16877
17231
  currentText(): string;
16878
17232
  previousSrText(): string;
16879
17233
  nextSrText(): string;
17234
+ openYearSelectorText(): string;
17235
+ closeYearSelectorText(): string;
16880
17236
  previousIconClasses(): Record<string, boolean>;
16881
17237
  nextIconClasses(): Record<string, boolean>;
17238
+ monthTitleClass(): string;
16882
17239
  }, {
17240
+ onClickYearSelector(): void;
16883
17241
  onClickPreviousButton(): void;
16884
17242
  onClickNextButton(): void;
17243
+ onCloseYearSelector(): void;
17244
+ changeDisplayYearSelectorAsOpen(value: boolean): void;
16885
17245
  getDateText(value: FDate): string;
16886
17246
  isFocused(ref: string): boolean;
16887
- }, ComponentOptions, ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", PublicProps, Readonly<ExtractPropTypes< {
17247
+ }, ComponentOptions, ComponentOptionsMixin, ("update:modelValue" | "change" | "update:yearSelectorOpen")[], "update:modelValue" | "change" | "update:yearSelectorOpen", PublicProps, Readonly<ExtractPropTypes< {
16888
17248
  /**
16889
17249
  * Focused month.
16890
17250
  */
@@ -16906,10 +17266,39 @@ maxDate: {
16906
17266
  type: PropType<FDate>;
16907
17267
  required: true;
16908
17268
  };
17269
+ /**
17270
+ * Includes a year selector when enabled.
17271
+ */
17272
+ yearSelector: {
17273
+ type: BooleanConstructor;
17274
+ required: false;
17275
+ default: boolean;
17276
+ };
17277
+ /**
17278
+ * Displays the year selector as open when enabled.
17279
+ */
17280
+ yearSelectorOpen: {
17281
+ type: BooleanConstructor;
17282
+ required: false;
17283
+ default: boolean;
17284
+ };
17285
+ /**
17286
+ * Optional id (generated by default).
17287
+ */
17288
+ id: {
17289
+ type: StringConstructor;
17290
+ required: false;
17291
+ default: () => string;
17292
+ };
16909
17293
  }>> & Readonly<{
16910
17294
  onChange?: ((...args: any[]) => any) | undefined;
16911
17295
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
16912
- }>, {}, {}, {
17296
+ "onUpdate:yearSelectorOpen"?: ((...args: any[]) => any) | undefined;
17297
+ }>, {
17298
+ id: string;
17299
+ yearSelector: boolean;
17300
+ yearSelectorOpen: boolean;
17301
+ }, {}, {
16913
17302
  FIcon: DefineComponent<ExtractPropTypes< {
16914
17303
  name: {
16915
17304
  type: StringConstructor;
@@ -16966,7 +17355,7 @@ rotate: string;
16966
17355
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
16967
17356
  }, {}, string, ComponentProvideOptions, true, {}, any>;
16968
17357
 
16969
- export declare const IComboboxDropdown: DefineComponent<__VLS_Props_4, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
17358
+ export declare const IComboboxDropdown: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
16970
17359
  select: (option: string) => any;
16971
17360
  close: () => any;
16972
17361
  }, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{
@@ -16974,7 +17363,7 @@ onSelect?: ((option: string) => any) | undefined;
16974
17363
  onClose?: (() => any) | undefined;
16975
17364
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
16976
17365
 
16977
- export declare const IComboboxToggleButton: DefineComponent< {}, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
17366
+ export declare const IComboboxToggleButton: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
16978
17367
  toggle: () => any;
16979
17368
  }, string, PublicProps, Readonly<{}> & Readonly<{
16980
17369
  onToggle?: (() => any) | undefined;
@@ -17462,7 +17851,7 @@ export declare interface IPopupErrorData {
17462
17851
  arrowOffset: number;
17463
17852
  }
17464
17853
 
17465
- export declare const IPopupListbox: __VLS_WithSlots_9<typeof __VLS_component_9, __VLS_Slots_9>;
17854
+ export declare const IPopupListbox: __VLS_WithSlots_10<typeof __VLS_component_10, __VLS_Slots_10>;
17466
17855
 
17467
17856
  declare interface IPopupListboxProps {
17468
17857
  isOpen: boolean;
@@ -17475,8 +17864,6 @@ declare interface IPopupListboxProps {
17475
17864
  export declare const IPopupMenu: DefineComponent<ExtractPropTypes< {
17476
17865
  /**
17477
17866
  * Key of the currently selected and highlighted item.
17478
- *
17479
- * @model
17480
17867
  */
17481
17868
  modelValue: {
17482
17869
  type: StringConstructor;
@@ -17486,8 +17873,6 @@ default: string;
17486
17873
  /**
17487
17874
  * Key of the currently focused item.
17488
17875
  * Sets focus on matching item element when value changes.
17489
- *
17490
- * @model
17491
17876
  */
17492
17877
  focusedItem: {
17493
17878
  type: StringConstructor;
@@ -17559,8 +17944,6 @@ onKeyDown(event: KeyboardEvent): Promise<void>;
17559
17944
  }, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "close" | "update:modelValue" | "update:focusedItem")[], "select" | "close" | "update:modelValue" | "update:focusedItem", PublicProps, Readonly<ExtractPropTypes< {
17560
17945
  /**
17561
17946
  * Key of the currently selected and highlighted item.
17562
- *
17563
- * @model
17564
17947
  */
17565
17948
  modelValue: {
17566
17949
  type: StringConstructor;
@@ -17570,8 +17953,6 @@ default: string;
17570
17953
  /**
17571
17954
  * Key of the currently focused item.
17572
17955
  * Sets focus on matching item element when value changes.
17573
- *
17574
- * @model
17575
17956
  */
17576
17957
  focusedItem: {
17577
17958
  type: StringConstructor;