@fkui/vue 6.14.0 → 6.16.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.
@@ -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: {};
@@ -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, void, {}, {}, {}, 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
+ }>, void, {}, {}, {}, 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: {
@@ -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".
@@ -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< {}, void, {}, {}, {}, 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, void, {}, {}, {}, 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, void, {}, {}, {}, 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, void, {}, {}, {}, 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.
@@ -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
  /**
@@ -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)[];
@@ -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<{
@@ -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;
@@ -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)[];
@@ -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;
@@ -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< {
@@ -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;
@@ -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;
@@ -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)[];
@@ -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: {
@@ -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)[];
@@ -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)[];
@@ -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>;
@@ -16528,7 +16862,7 @@ export declare function hasParentByName(vm: ComponentPublicInstance | undefined
16528
16862
  */
16529
16863
  export declare function hasSlot(vm: {
16530
16864
  $slots: Slots;
16531
- }, name: string, props?: Record<string, unknown>, options?: Partial<RenderSlotOptions>): boolean;
16865
+ }, name: string, props?: Record<string, unknown>, options?: Partial<Pick<RenderSlotOptions, "stripClasses">>): boolean;
16532
16866
 
16533
16867
  export declare const IAnimateExpand: DefineComponent<ExtractPropTypes< {
16534
16868
  /**
@@ -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;
@@ -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;
@@ -18142,6 +18523,11 @@ export declare interface RenderSlotOptions {
18142
18523
  * Default: `["sr-only"]`
18143
18524
  */
18144
18525
  stripClasses: string[];
18526
+ /**
18527
+ * By default nested components will not be rendered. When this option is
18528
+ * enabled components will be rendered as `<ComponentName />`.
18529
+ */
18530
+ componentPlaceholder: boolean;
18145
18531
  }
18146
18532
 
18147
18533
  /**