@fkui/vue 6.2.0 → 6.3.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.
@@ -131,7 +131,14 @@ focusRef: HTMLElement | null;
131
131
 
132
132
  declare const __VLS_component_3: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
133
133
 
134
- declare const __VLS_component_4: DefineComponent<IPopupListboxProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
134
+ declare const __VLS_component_4: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {
135
+ disabled: boolean;
136
+ min: string;
137
+ max: string;
138
+ initial: string;
139
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
140
+
141
+ declare const __VLS_component_5: DefineComponent<IPopupListboxProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
135
142
  close: () => any;
136
143
  }, string, PublicProps, Readonly<IPopupListboxProps> & Readonly<{
137
144
  onClose?: (() => any) | undefined;
@@ -166,6 +173,34 @@ declare type __VLS_Props = {
166
173
  };
167
174
 
168
175
  declare type __VLS_Props_2 = {
176
+ /**
177
+ * Disables resizing. The current size is locked.
178
+ */
179
+ disabled?: boolean;
180
+ /**
181
+ * Minimal size of pane.
182
+ *
183
+ * Can be set in `px`, `%` (percent of application layout total size)
184
+ * or both as a space-separated list, e.g. `200px 20%`.
185
+ */
186
+ min?: string;
187
+ /**
188
+ * Maximum size of pane.
189
+ *
190
+ * Can be set in `px`, `%` (percent of application layout total size)
191
+ * or both as a space-separated list, e.g. `600px 50%`.
192
+ */
193
+ max?: string;
194
+ /**
195
+ * Initial size of pane used when the pane is used for the first time.
196
+ *
197
+ * Can be set in `px` or `%` (percent of application layout total
198
+ * size)
199
+ */
200
+ initial?: string;
201
+ };
202
+
203
+ declare type __VLS_Props_3 = {
169
204
  id: string;
170
205
  isOpen: boolean;
171
206
  options: string[];
@@ -211,6 +246,15 @@ declare function __VLS_template_3(): {
211
246
  };
212
247
 
213
248
  declare function __VLS_template_4(): {
249
+ attrs: Partial<{}>;
250
+ slots: {
251
+ default?(_: {}): any;
252
+ };
253
+ refs: {};
254
+ rootEl: any;
255
+ };
256
+
257
+ declare function __VLS_template_5(): {
214
258
  attrs: Partial<{}>;
215
259
  slots: {
216
260
  default?(_: {}): any;
@@ -231,6 +275,8 @@ declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
231
275
 
232
276
  declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
233
277
 
278
+ declare type __VLS_TemplateResult_5 = ReturnType<typeof __VLS_template_5>;
279
+
234
280
  declare type __VLS_WithTemplateSlots<T, S> = T & {
235
281
  new (): {
236
282
  $slots: S;
@@ -255,6 +301,12 @@ declare type __VLS_WithTemplateSlots_4<T, S> = T & {
255
301
  };
256
302
  };
257
303
 
304
+ declare type __VLS_WithTemplateSlots_5<T, S> = T & {
305
+ new (): {
306
+ $slots: S;
307
+ };
308
+ };
309
+
258
310
  /* Excluded from this release type: actionFromKeyboardEvent */
259
311
 
260
312
  /**
@@ -865,7 +917,7 @@ required: false;
865
917
  default: boolean;
866
918
  };
867
919
  modelValue: {
868
- type: (StringConstructor | NumberConstructor)[];
920
+ type: (StringConstructor | NumberConstructor | null)[];
869
921
  required: false;
870
922
  default: string;
871
923
  };
@@ -963,7 +1015,7 @@ required: false;
963
1015
  default: boolean;
964
1016
  };
965
1017
  modelValue: {
966
- type: (StringConstructor | NumberConstructor)[];
1018
+ type: (StringConstructor | NumberConstructor | null)[];
967
1019
  required: false;
968
1020
  default: string;
969
1021
  };
@@ -1009,7 +1061,7 @@ onChange?: ((...args: any[]) => any) | undefined;
1009
1061
  }>, {
1010
1062
  type: string;
1011
1063
  id: string;
1012
- modelValue: string | number;
1064
+ modelValue: string | number | null;
1013
1065
  inline: boolean;
1014
1066
  disabled: boolean;
1015
1067
  options: string[] | undefined;
@@ -1322,7 +1374,7 @@ required: false;
1322
1374
  default: boolean;
1323
1375
  };
1324
1376
  modelValue: {
1325
- type: (StringConstructor | NumberConstructor)[];
1377
+ type: (StringConstructor | NumberConstructor | null)[];
1326
1378
  required: false;
1327
1379
  default: string;
1328
1380
  };
@@ -1420,7 +1472,7 @@ required: false;
1420
1472
  default: boolean;
1421
1473
  };
1422
1474
  modelValue: {
1423
- type: (StringConstructor | NumberConstructor)[];
1475
+ type: (StringConstructor | NumberConstructor | null)[];
1424
1476
  required: false;
1425
1477
  default: string;
1426
1478
  };
@@ -1466,7 +1518,7 @@ onChange?: ((...args: any[]) => any) | undefined;
1466
1518
  }>, {
1467
1519
  type: string;
1468
1520
  id: string;
1469
- modelValue: string | number;
1521
+ modelValue: string | number | null;
1470
1522
  inline: boolean;
1471
1523
  disabled: boolean;
1472
1524
  options: string[] | undefined;
@@ -2253,7 +2305,7 @@ required: false;
2253
2305
  default: boolean;
2254
2306
  };
2255
2307
  modelValue: {
2256
- type: (StringConstructor | NumberConstructor)[];
2308
+ type: (StringConstructor | NumberConstructor | null)[];
2257
2309
  required: false;
2258
2310
  default: string;
2259
2311
  };
@@ -2351,7 +2403,7 @@ required: false;
2351
2403
  default: boolean;
2352
2404
  };
2353
2405
  modelValue: {
2354
- type: (StringConstructor | NumberConstructor)[];
2406
+ type: (StringConstructor | NumberConstructor | null)[];
2355
2407
  required: false;
2356
2408
  default: string;
2357
2409
  };
@@ -2397,7 +2449,7 @@ onChange?: ((...args: any[]) => any) | undefined;
2397
2449
  }>, {
2398
2450
  type: string;
2399
2451
  id: string;
2400
- modelValue: string | number;
2452
+ modelValue: string | number | null;
2401
2453
  inline: boolean;
2402
2454
  disabled: boolean;
2403
2455
  options: string[] | undefined;
@@ -3432,7 +3484,7 @@ required: false;
3432
3484
  default: boolean;
3433
3485
  };
3434
3486
  modelValue: {
3435
- type: (StringConstructor | NumberConstructor)[];
3487
+ type: (StringConstructor | NumberConstructor | null)[];
3436
3488
  required: false;
3437
3489
  default: string;
3438
3490
  };
@@ -3530,7 +3582,7 @@ required: false;
3530
3582
  default: boolean;
3531
3583
  };
3532
3584
  modelValue: {
3533
- type: (StringConstructor | NumberConstructor)[];
3585
+ type: (StringConstructor | NumberConstructor | null)[];
3534
3586
  required: false;
3535
3587
  default: string;
3536
3588
  };
@@ -3576,7 +3628,7 @@ onChange?: ((...args: any[]) => any) | undefined;
3576
3628
  }>, {
3577
3629
  type: string;
3578
3630
  id: string;
3579
- modelValue: string | number;
3631
+ modelValue: string | number | null;
3580
3632
  inline: boolean;
3581
3633
  disabled: boolean;
3582
3634
  options: string[] | undefined;
@@ -4424,7 +4476,7 @@ required: false;
4424
4476
  default: boolean;
4425
4477
  };
4426
4478
  modelValue: {
4427
- type: (StringConstructor | NumberConstructor)[];
4479
+ type: (StringConstructor | NumberConstructor | null)[];
4428
4480
  required: false;
4429
4481
  default: string;
4430
4482
  };
@@ -4522,7 +4574,7 @@ required: false;
4522
4574
  default: boolean;
4523
4575
  };
4524
4576
  modelValue: {
4525
- type: (StringConstructor | NumberConstructor)[];
4577
+ type: (StringConstructor | NumberConstructor | null)[];
4526
4578
  required: false;
4527
4579
  default: string;
4528
4580
  };
@@ -4568,7 +4620,7 @@ onChange?: ((...args: any[]) => any) | undefined;
4568
4620
  }>, {
4569
4621
  type: string;
4570
4622
  id: string;
4571
- modelValue: string | number;
4623
+ modelValue: string | number | null;
4572
4624
  inline: boolean;
4573
4625
  disabled: boolean;
4574
4626
  options: string[] | undefined;
@@ -5118,7 +5170,7 @@ default: () => string;
5118
5170
  * @model
5119
5171
  */
5120
5172
  modelValue: {
5121
- type: StringConstructor;
5173
+ type: (StringConstructor | null)[];
5122
5174
  required: false;
5123
5175
  default: undefined;
5124
5176
  };
@@ -5170,7 +5222,7 @@ default: () => string;
5170
5222
  * @model
5171
5223
  */
5172
5224
  modelValue: {
5173
- type: StringConstructor;
5225
+ type: (StringConstructor | null)[];
5174
5226
  required: false;
5175
5227
  default: undefined;
5176
5228
  };
@@ -5197,7 +5249,7 @@ onChange?: ((...args: any[]) => any) | undefined;
5197
5249
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
5198
5250
  }>, {
5199
5251
  id: string;
5200
- modelValue: string;
5252
+ modelValue: string | null;
5201
5253
  maxLength: number;
5202
5254
  extendedValidation: boolean;
5203
5255
  pasteErrorText: string;
@@ -5214,7 +5266,7 @@ required: false;
5214
5266
  default: boolean;
5215
5267
  };
5216
5268
  modelValue: {
5217
- type: (StringConstructor | NumberConstructor)[];
5269
+ type: (StringConstructor | NumberConstructor | null)[];
5218
5270
  required: false;
5219
5271
  default: string;
5220
5272
  };
@@ -5312,7 +5364,7 @@ required: false;
5312
5364
  default: boolean;
5313
5365
  };
5314
5366
  modelValue: {
5315
- type: (StringConstructor | NumberConstructor)[];
5367
+ type: (StringConstructor | NumberConstructor | null)[];
5316
5368
  required: false;
5317
5369
  default: string;
5318
5370
  };
@@ -5358,7 +5410,7 @@ onChange?: ((...args: any[]) => any) | undefined;
5358
5410
  }>, {
5359
5411
  type: string;
5360
5412
  id: string;
5361
- modelValue: string | number;
5413
+ modelValue: string | number | null;
5362
5414
  inline: boolean;
5363
5415
  disabled: boolean;
5364
5416
  options: string[] | undefined;
@@ -9156,7 +9208,7 @@ required: false;
9156
9208
  default: boolean;
9157
9209
  };
9158
9210
  modelValue: {
9159
- type: (StringConstructor | NumberConstructor)[];
9211
+ type: (StringConstructor | NumberConstructor | null)[];
9160
9212
  required: false;
9161
9213
  default: string;
9162
9214
  };
@@ -9254,7 +9306,7 @@ required: false;
9254
9306
  default: boolean;
9255
9307
  };
9256
9308
  modelValue: {
9257
- type: (StringConstructor | NumberConstructor)[];
9309
+ type: (StringConstructor | NumberConstructor | null)[];
9258
9310
  required: false;
9259
9311
  default: string;
9260
9312
  };
@@ -9300,7 +9352,7 @@ onChange?: ((...args: any[]) => any) | undefined;
9300
9352
  }>, {
9301
9353
  type: string;
9302
9354
  id: string;
9303
- modelValue: string | number;
9355
+ modelValue: string | number | null;
9304
9356
  inline: boolean;
9305
9357
  disabled: boolean;
9306
9358
  options: string[] | undefined;
@@ -9794,7 +9846,7 @@ required: false;
9794
9846
  default: boolean;
9795
9847
  };
9796
9848
  modelValue: {
9797
- type: (StringConstructor | NumberConstructor)[];
9849
+ type: (StringConstructor | NumberConstructor | null)[];
9798
9850
  required: false;
9799
9851
  default: string;
9800
9852
  };
@@ -9892,7 +9944,7 @@ required: false;
9892
9944
  default: boolean;
9893
9945
  };
9894
9946
  modelValue: {
9895
- type: (StringConstructor | NumberConstructor)[];
9947
+ type: (StringConstructor | NumberConstructor | null)[];
9896
9948
  required: false;
9897
9949
  default: string;
9898
9950
  };
@@ -9938,7 +9990,7 @@ onChange?: ((...args: any[]) => any) | undefined;
9938
9990
  }>, {
9939
9991
  type: string;
9940
9992
  id: string;
9941
- modelValue: string | number;
9993
+ modelValue: string | number | null;
9942
9994
  inline: boolean;
9943
9995
  disabled: boolean;
9944
9996
  options: string[] | undefined;
@@ -10513,7 +10565,7 @@ required: false;
10513
10565
  default: boolean;
10514
10566
  };
10515
10567
  modelValue: {
10516
- type: (StringConstructor | NumberConstructor)[];
10568
+ type: (StringConstructor | NumberConstructor | null)[];
10517
10569
  required: false;
10518
10570
  default: string;
10519
10571
  };
@@ -10611,7 +10663,7 @@ required: false;
10611
10663
  default: boolean;
10612
10664
  };
10613
10665
  modelValue: {
10614
- type: (StringConstructor | NumberConstructor)[];
10666
+ type: (StringConstructor | NumberConstructor | null)[];
10615
10667
  required: false;
10616
10668
  default: string;
10617
10669
  };
@@ -10657,7 +10709,7 @@ onChange?: ((...args: any[]) => any) | undefined;
10657
10709
  }>, {
10658
10710
  type: string;
10659
10711
  id: string;
10660
- modelValue: string | number;
10712
+ modelValue: string | number | null;
10661
10713
  inline: boolean;
10662
10714
  disabled: boolean;
10663
10715
  options: string[] | undefined;
@@ -10992,7 +11044,7 @@ required: false;
10992
11044
  default: boolean;
10993
11045
  };
10994
11046
  modelValue: {
10995
- type: (StringConstructor | NumberConstructor)[];
11047
+ type: (StringConstructor | NumberConstructor | null)[];
10996
11048
  required: false;
10997
11049
  default: string;
10998
11050
  };
@@ -11090,7 +11142,7 @@ required: false;
11090
11142
  default: boolean;
11091
11143
  };
11092
11144
  modelValue: {
11093
- type: (StringConstructor | NumberConstructor)[];
11145
+ type: (StringConstructor | NumberConstructor | null)[];
11094
11146
  required: false;
11095
11147
  default: string;
11096
11148
  };
@@ -11136,7 +11188,7 @@ onChange?: ((...args: any[]) => any) | undefined;
11136
11188
  }>, {
11137
11189
  type: string;
11138
11190
  id: string;
11139
- modelValue: string | number;
11191
+ modelValue: string | number | null;
11140
11192
  inline: boolean;
11141
11193
  disabled: boolean;
11142
11194
  options: string[] | undefined;
@@ -11436,11 +11488,12 @@ default: () => string;
11436
11488
  };
11437
11489
  /**
11438
11490
  * The value for the input.
11439
- * If the prop is not set undefined will be used.
11491
+ * If the prop is not used or set to undefined
11492
+ * or null then the default value will be used.
11440
11493
  * @model
11441
11494
  */
11442
11495
  modelValue: {
11443
- type: StringConstructor;
11496
+ type: (StringConstructor | null)[];
11444
11497
  required: false;
11445
11498
  default: undefined;
11446
11499
  };
@@ -11477,11 +11530,12 @@ default: () => string;
11477
11530
  };
11478
11531
  /**
11479
11532
  * The value for the input.
11480
- * If the prop is not set undefined will be used.
11533
+ * If the prop is not used or set to undefined
11534
+ * or null then the default value will be used.
11481
11535
  * @model
11482
11536
  */
11483
11537
  modelValue: {
11484
- type: StringConstructor;
11538
+ type: (StringConstructor | null)[];
11485
11539
  required: false;
11486
11540
  default: undefined;
11487
11541
  };
@@ -11499,7 +11553,7 @@ onChange?: ((...args: any[]) => any) | undefined;
11499
11553
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
11500
11554
  }>, {
11501
11555
  id: string;
11502
- modelValue: string;
11556
+ modelValue: string | null;
11503
11557
  maxLength: number;
11504
11558
  extendedValidation: boolean;
11505
11559
  }, {}, {
@@ -11515,7 +11569,7 @@ required: false;
11515
11569
  default: boolean;
11516
11570
  };
11517
11571
  modelValue: {
11518
- type: (StringConstructor | NumberConstructor)[];
11572
+ type: (StringConstructor | NumberConstructor | null)[];
11519
11573
  required: false;
11520
11574
  default: string;
11521
11575
  };
@@ -11613,7 +11667,7 @@ required: false;
11613
11667
  default: boolean;
11614
11668
  };
11615
11669
  modelValue: {
11616
- type: (StringConstructor | NumberConstructor)[];
11670
+ type: (StringConstructor | NumberConstructor | null)[];
11617
11671
  required: false;
11618
11672
  default: string;
11619
11673
  };
@@ -11659,7 +11713,7 @@ onChange?: ((...args: any[]) => any) | undefined;
11659
11713
  }>, {
11660
11714
  type: string;
11661
11715
  id: string;
11662
- modelValue: string | number;
11716
+ modelValue: string | number | null;
11663
11717
  inline: boolean;
11664
11718
  disabled: boolean;
11665
11719
  options: string[] | undefined;
@@ -11965,7 +12019,7 @@ required: false;
11965
12019
  default: boolean;
11966
12020
  };
11967
12021
  modelValue: {
11968
- type: (StringConstructor | NumberConstructor)[];
12022
+ type: (StringConstructor | NumberConstructor | null)[];
11969
12023
  required: false;
11970
12024
  default: string;
11971
12025
  };
@@ -12063,7 +12117,7 @@ required: false;
12063
12117
  default: boolean;
12064
12118
  };
12065
12119
  modelValue: {
12066
- type: (StringConstructor | NumberConstructor)[];
12120
+ type: (StringConstructor | NumberConstructor | null)[];
12067
12121
  required: false;
12068
12122
  default: string;
12069
12123
  };
@@ -12109,7 +12163,7 @@ onChange?: ((...args: any[]) => any) | undefined;
12109
12163
  }>, {
12110
12164
  type: string;
12111
12165
  id: string;
12112
- modelValue: string | number;
12166
+ modelValue: string | number | null;
12113
12167
  inline: boolean;
12114
12168
  disabled: boolean;
12115
12169
  options: string[] | undefined;
@@ -12424,7 +12478,7 @@ required: false;
12424
12478
  default: boolean;
12425
12479
  };
12426
12480
  modelValue: {
12427
- type: (StringConstructor | NumberConstructor)[];
12481
+ type: (StringConstructor | NumberConstructor | null)[];
12428
12482
  required: false;
12429
12483
  default: string;
12430
12484
  };
@@ -12522,7 +12576,7 @@ required: false;
12522
12576
  default: boolean;
12523
12577
  };
12524
12578
  modelValue: {
12525
- type: (StringConstructor | NumberConstructor)[];
12579
+ type: (StringConstructor | NumberConstructor | null)[];
12526
12580
  required: false;
12527
12581
  default: string;
12528
12582
  };
@@ -12568,7 +12622,7 @@ onChange?: ((...args: any[]) => any) | undefined;
12568
12622
  }>, {
12569
12623
  type: string;
12570
12624
  id: string;
12571
- modelValue: string | number;
12625
+ modelValue: string | number | null;
12572
12626
  inline: boolean;
12573
12627
  disabled: boolean;
12574
12628
  options: string[] | undefined;
@@ -13021,6 +13075,8 @@ id: string;
13021
13075
  disabled: boolean;
13022
13076
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
13023
13077
 
13078
+ export declare const FResizePane: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
13079
+
13024
13080
  export declare const FSearchTextField: DefineComponent<ExtractPropTypes< {
13025
13081
  id: {
13026
13082
  type: StringConstructor;
@@ -13028,7 +13084,7 @@ required: false;
13028
13084
  default: () => string;
13029
13085
  };
13030
13086
  modelValue: {
13031
- type: StringConstructor;
13087
+ type: (StringConstructor | null)[];
13032
13088
  required: false;
13033
13089
  default: string;
13034
13090
  };
@@ -13058,7 +13114,7 @@ required: false;
13058
13114
  default: () => string;
13059
13115
  };
13060
13116
  modelValue: {
13061
- type: StringConstructor;
13117
+ type: (StringConstructor | null)[];
13062
13118
  required: false;
13063
13119
  default: string;
13064
13120
  };
@@ -13078,7 +13134,7 @@ onChange?: ((...args: any[]) => any) | undefined;
13078
13134
  onUpdate?: ((...args: any[]) => any) | undefined;
13079
13135
  }>, {
13080
13136
  id: string;
13081
- modelValue: string;
13137
+ modelValue: string | null;
13082
13138
  maxLength: number;
13083
13139
  clearableScreenReaderText: string;
13084
13140
  }, {}, {
@@ -13094,7 +13150,7 @@ required: false;
13094
13150
  default: boolean;
13095
13151
  };
13096
13152
  modelValue: {
13097
- type: (StringConstructor | NumberConstructor)[];
13153
+ type: (StringConstructor | NumberConstructor | null)[];
13098
13154
  required: false;
13099
13155
  default: string;
13100
13156
  };
@@ -13192,7 +13248,7 @@ required: false;
13192
13248
  default: boolean;
13193
13249
  };
13194
13250
  modelValue: {
13195
- type: (StringConstructor | NumberConstructor)[];
13251
+ type: (StringConstructor | NumberConstructor | null)[];
13196
13252
  required: false;
13197
13253
  default: string;
13198
13254
  };
@@ -13238,7 +13294,7 @@ onChange?: ((...args: any[]) => any) | undefined;
13238
13294
  }>, {
13239
13295
  type: string;
13240
13296
  id: string;
13241
- modelValue: string | number;
13297
+ modelValue: string | number | null;
13242
13298
  inline: boolean;
13243
13299
  disabled: boolean;
13244
13300
  options: string[] | undefined;
@@ -14502,11 +14558,12 @@ default: boolean;
14502
14558
  };
14503
14559
  /**
14504
14560
  * The value for the input.
14505
- * If the prop is not set undefined will be used.
14561
+ * If the prop is not used or set to undefined
14562
+ * or null then the default value will be used.
14506
14563
  * @model
14507
14564
  */
14508
14565
  modelValue: {
14509
- type: (StringConstructor | NumberConstructor)[];
14566
+ type: (StringConstructor | NumberConstructor | null)[];
14510
14567
  required: false;
14511
14568
  default: string;
14512
14569
  };
@@ -14662,11 +14719,12 @@ default: boolean;
14662
14719
  };
14663
14720
  /**
14664
14721
  * The value for the input.
14665
- * If the prop is not set undefined will be used.
14722
+ * If the prop is not used or set to undefined
14723
+ * or null then the default value will be used.
14666
14724
  * @model
14667
14725
  */
14668
14726
  modelValue: {
14669
- type: (StringConstructor | NumberConstructor)[];
14727
+ type: (StringConstructor | NumberConstructor | null)[];
14670
14728
  required: false;
14671
14729
  default: string;
14672
14730
  };
@@ -14761,7 +14819,7 @@ onChange?: ((...args: any[]) => any) | undefined;
14761
14819
  }>, {
14762
14820
  type: string;
14763
14821
  id: string;
14764
- modelValue: string | number;
14822
+ modelValue: string | number | null;
14765
14823
  inline: boolean;
14766
14824
  disabled: boolean;
14767
14825
  options: string[] | undefined;
@@ -16705,10 +16763,10 @@ rotate: string;
16705
16763
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
16706
16764
  }, {}, string, ComponentProvideOptions, true, {}, any>;
16707
16765
 
16708
- export declare const IComboboxDropdown: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
16766
+ export declare const IComboboxDropdown: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
16709
16767
  close: () => any;
16710
16768
  select: (option: string) => any;
16711
- }, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{
16769
+ }, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{
16712
16770
  onClose?: (() => any) | undefined;
16713
16771
  onSelect?: ((option: string) => any) | undefined;
16714
16772
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
@@ -17203,7 +17261,7 @@ export declare interface IPopupErrorData {
17203
17261
  arrowOffset: number;
17204
17262
  }
17205
17263
 
17206
- export declare const IPopupListbox: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
17264
+ export declare const IPopupListbox: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
17207
17265
 
17208
17266
  declare interface IPopupListboxProps {
17209
17267
  isOpen: boolean;
@@ -17957,7 +18015,7 @@ export declare const TestPlugin: Plugin_2;
17957
18015
  export declare interface TextFieldSetupProps {
17958
18016
  id: string;
17959
18017
  inline: boolean;
17960
- modelValue: string | number;
18018
+ modelValue: string | number | null;
17961
18019
  type: string;
17962
18020
  formatter?: FormatFunction<unknown>;
17963
18021
  parser?: ParseFunction<unknown>;
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.50.1"
8
+ "packageVersion": "7.51.1"
9
9
  }
10
10
  ]
11
11
  }
@@ -445,6 +445,26 @@ module.exports = defineMetadata({
445
445
  permittedContent: [],
446
446
  },
447
447
 
448
+ "f-resize-pane": {
449
+ flow: true,
450
+ attributes: {
451
+ min: {
452
+ enum: ["/\\d+px/", "/\\d+%/"],
453
+ list: true,
454
+ },
455
+ max: {
456
+ enum: ["/\\d+px/", "/\\d+%/"],
457
+ list: true,
458
+ },
459
+ initial: {
460
+ enum: ["/\\d+px/", "/\\d+%/"],
461
+ },
462
+ disabled: {
463
+ boolean: true,
464
+ },
465
+ },
466
+ },
467
+
448
468
  "f-sort-filter-dataset": {
449
469
  flow: true,
450
470
  interactive: true,
@@ -240,6 +240,7 @@ module.exports = defineMetadata({
240
240
  },
241
241
  },
242
242
  },
243
+
243
244
  "i-combobox-dropdown": {
244
245
  flow: true,
245
246
  interactive: true,
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@fkui/vue",
3
- "version": "6.2.0",
3
+ "version": "6.3.0",
4
4
  "description": "Vue implementation of FKUI components",
5
5
  "keywords": [
6
6
  "fkui",
7
7
  "designsystem",
8
8
  "vue"
9
9
  ],
10
- "homepage": "https://forsakringskassan.github.io/designsystem/",
10
+ "homepage": "https://designsystem.forsakringskassan.se/",
11
11
  "bugs": "https://github.com/Forsakringskassan/designsystem/issues",
12
12
  "repository": {
13
13
  "type": "git",
@@ -60,9 +60,9 @@
60
60
  "unit:watch": "jest --watch"
61
61
  },
62
62
  "peerDependencies": {
63
- "@fkui/date": "^6.2.0",
64
- "@fkui/design": "^6.2.0",
65
- "@fkui/logic": "^6.2.0",
63
+ "@fkui/date": "^6.3.0",
64
+ "@fkui/design": "^6.3.0",
65
+ "@fkui/logic": "^6.3.0",
66
66
  "fk-icons": "^4.30.1",
67
67
  "html-validate": ">= 7.9.0",
68
68
  "vue": "^3.5.0"
@@ -79,5 +79,5 @@
79
79
  "node": ">= 20",
80
80
  "npm": ">= 7"
81
81
  },
82
- "gitHead": "b75730a2c2bee0c0fe8243d2de511b77c88dcbee"
82
+ "gitHead": "b971dc60326c5eb1c73318733f36c5f1776504b2"
83
83
  }