@weni/unnnic-system 3.12.3-alpha.4 → 3.12.3-alpha.5

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.
Files changed (31) hide show
  1. package/dist/components/DateFilter/DateFilter.vue.d.ts +37 -10
  2. package/dist/components/Input/BaseInput.vue.d.ts +12 -3
  3. package/dist/components/Input/BaseInput.vue.d.ts.map +1 -1
  4. package/dist/components/Input/Input.vue.d.ts +37 -10
  5. package/dist/components/Input/Input.vue.d.ts.map +1 -1
  6. package/dist/components/Input/TextInput.vue.d.ts +25 -7
  7. package/dist/components/Input/TextInput.vue.d.ts.map +1 -1
  8. package/dist/components/ModalNext/ModalNext.vue.d.ts +37 -10
  9. package/dist/components/MultiSelect/index.vue.d.ts.map +1 -1
  10. package/dist/components/Select/index.vue.d.ts.map +1 -1
  11. package/dist/components/SelectSmart/SelectSmart.vue.d.ts +25 -7
  12. package/dist/components/SelectTime/index.vue.d.ts +25 -7
  13. package/dist/components/index.d.ts +222 -60
  14. package/dist/components/index.d.ts.map +1 -1
  15. package/dist/{es-e4e4f53d.mjs → es-a9e51a05.mjs} +1 -1
  16. package/dist/{index-492e2532.mjs → index-ade761d4.mjs} +37 -26
  17. package/dist/{pt-br-ac2463c3.mjs → pt-br-5395459d.mjs} +1 -1
  18. package/dist/style.css +1 -1
  19. package/dist/unnnic.mjs +1 -1
  20. package/dist/unnnic.umd.js +2 -2
  21. package/package.json +1 -1
  22. package/src/components/Input/BaseInput.vue +7 -6
  23. package/src/components/Input/Input.scss +1 -1
  24. package/src/components/Input/Input.vue +7 -2
  25. package/src/components/Input/TextInput.vue +8 -5
  26. package/src/components/Input/__test__/TextInput.spec.js +1 -1
  27. package/src/components/MultiSelect/__tests__/__snapshots__/MultiSelect.spec.js.snap +5 -5
  28. package/src/components/MultiSelect/index.vue +2 -1
  29. package/src/components/Select/__tests__/__snapshots__/Select.spec.js.snap +4 -4
  30. package/src/components/Select/index.vue +2 -1
  31. package/src/stories/Input.mdx +3 -0
@@ -164,7 +164,11 @@ export declare const unnnicInput: import('vue').DefineComponent<import('vue').Ex
164
164
  type: BooleanConstructor;
165
165
  default: boolean;
166
166
  };
167
- forceActiveStatus: {
167
+ useFocusProp: {
168
+ type: BooleanConstructor;
169
+ default: boolean;
170
+ };
171
+ focus: {
168
172
  type: BooleanConstructor;
169
173
  default: boolean;
170
174
  };
@@ -260,7 +264,11 @@ export declare const unnnicInput: import('vue').DefineComponent<import('vue').Ex
260
264
  type: BooleanConstructor;
261
265
  default: boolean;
262
266
  };
263
- forceActiveStatus: {
267
+ useFocusProp: {
268
+ type: BooleanConstructor;
269
+ default: boolean;
270
+ };
271
+ focus: {
264
272
  type: BooleanConstructor;
265
273
  default: boolean;
266
274
  };
@@ -273,6 +281,7 @@ export declare const unnnicInput: import('vue').DefineComponent<import('vue').Ex
273
281
  onClear?: ((...args: any[]) => any) | undefined;
274
282
  }>, {
275
283
  disabled: boolean;
284
+ focus: boolean;
276
285
  type: string;
277
286
  placeholder: string;
278
287
  tooltip: string;
@@ -284,7 +293,7 @@ export declare const unnnicInput: import('vue').DefineComponent<import('vue').Ex
284
293
  nativeType: string;
285
294
  maxlength: number | null;
286
295
  readonly: boolean;
287
- forceActiveStatus: boolean;
296
+ useFocusProp: boolean;
288
297
  iconLeft: string;
289
298
  iconRight: string;
290
299
  iconLeftClickable: boolean;
@@ -349,7 +358,11 @@ export declare const unnnicInput: import('vue').DefineComponent<import('vue').Ex
349
358
  type: BooleanConstructor;
350
359
  default: boolean;
351
360
  };
352
- forceActiveStatus: {
361
+ useFocusProp: {
362
+ type: BooleanConstructor;
363
+ default: boolean;
364
+ };
365
+ focus: {
353
366
  type: BooleanConstructor;
354
367
  default: boolean;
355
368
  };
@@ -366,7 +379,7 @@ export declare const unnnicInput: import('vue').DefineComponent<import('vue').Ex
366
379
  iconScheme(): "fg-base" | "fg-muted";
367
380
  attributes(): any;
368
381
  }, {
369
- focus(): void;
382
+ focusInput(): void;
370
383
  onFocus(): void;
371
384
  onBlur(): void;
372
385
  onIconLeftClick(): void;
@@ -426,7 +439,11 @@ export declare const unnnicInput: import('vue').DefineComponent<import('vue').Ex
426
439
  type: BooleanConstructor;
427
440
  default: boolean;
428
441
  };
429
- forceActiveStatus: {
442
+ useFocusProp: {
443
+ type: BooleanConstructor;
444
+ default: boolean;
445
+ };
446
+ focus: {
430
447
  type: BooleanConstructor;
431
448
  default: boolean;
432
449
  };
@@ -440,6 +457,7 @@ export declare const unnnicInput: import('vue').DefineComponent<import('vue').Ex
440
457
  "onIcon-right-click"?: ((...args: any[]) => any) | undefined;
441
458
  }>, {
442
459
  disabled: boolean;
460
+ focus: boolean;
443
461
  type: string;
444
462
  placeholder: string;
445
463
  size: string;
@@ -447,7 +465,7 @@ export declare const unnnicInput: import('vue').DefineComponent<import('vue').Ex
447
465
  nativeType: string;
448
466
  maxlength: number;
449
467
  readonly: boolean;
450
- forceActiveStatus: boolean;
468
+ useFocusProp: boolean;
451
469
  iconLeft: string;
452
470
  iconRight: string;
453
471
  iconLeftClickable: boolean;
@@ -488,7 +506,11 @@ export declare const unnnicInput: import('vue').DefineComponent<import('vue').Ex
488
506
  type: BooleanConstructor;
489
507
  default: boolean;
490
508
  };
491
- forceActiveStatus: {
509
+ useFocusProp: {
510
+ type: BooleanConstructor;
511
+ default: boolean;
512
+ };
513
+ focus: {
492
514
  type: BooleanConstructor;
493
515
  default: boolean;
494
516
  };
@@ -534,13 +556,18 @@ export declare const unnnicInput: import('vue').DefineComponent<import('vue').Ex
534
556
  type: BooleanConstructor;
535
557
  default: boolean;
536
558
  };
537
- forceActiveStatus: {
559
+ useFocusProp: {
560
+ type: BooleanConstructor;
561
+ default: boolean;
562
+ };
563
+ focus: {
538
564
  type: BooleanConstructor;
539
565
  default: boolean;
540
566
  };
541
567
  }>> & Readonly<{
542
568
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
543
569
  }>, {
570
+ focus: boolean;
544
571
  type: string;
545
572
  size: string;
546
573
  mask: string | unknown[];
@@ -551,7 +578,7 @@ export declare const unnnicInput: import('vue').DefineComponent<import('vue').Ex
551
578
  nativeType: string;
552
579
  maxlength: number;
553
580
  readonly: boolean;
554
- forceActiveStatus: boolean;
581
+ useFocusProp: boolean;
555
582
  }, {}, {}, {
556
583
  mask: any;
557
584
  }, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -3827,7 +3854,11 @@ export declare const unnnicModalNext: import('vue').DefineComponent<import('vue'
3827
3854
  type: BooleanConstructor;
3828
3855
  default: boolean;
3829
3856
  };
3830
- forceActiveStatus: {
3857
+ useFocusProp: {
3858
+ type: BooleanConstructor;
3859
+ default: boolean;
3860
+ };
3861
+ focus: {
3831
3862
  type: BooleanConstructor;
3832
3863
  default: boolean;
3833
3864
  };
@@ -3923,7 +3954,11 @@ export declare const unnnicModalNext: import('vue').DefineComponent<import('vue'
3923
3954
  type: BooleanConstructor;
3924
3955
  default: boolean;
3925
3956
  };
3926
- forceActiveStatus: {
3957
+ useFocusProp: {
3958
+ type: BooleanConstructor;
3959
+ default: boolean;
3960
+ };
3961
+ focus: {
3927
3962
  type: BooleanConstructor;
3928
3963
  default: boolean;
3929
3964
  };
@@ -3936,6 +3971,7 @@ export declare const unnnicModalNext: import('vue').DefineComponent<import('vue'
3936
3971
  onClear?: ((...args: any[]) => any) | undefined;
3937
3972
  }>, {
3938
3973
  disabled: boolean;
3974
+ focus: boolean;
3939
3975
  type: string;
3940
3976
  placeholder: string;
3941
3977
  tooltip: string;
@@ -3947,7 +3983,7 @@ export declare const unnnicModalNext: import('vue').DefineComponent<import('vue'
3947
3983
  nativeType: string;
3948
3984
  maxlength: number | null;
3949
3985
  readonly: boolean;
3950
- forceActiveStatus: boolean;
3986
+ useFocusProp: boolean;
3951
3987
  iconLeft: string;
3952
3988
  iconRight: string;
3953
3989
  iconLeftClickable: boolean;
@@ -4012,7 +4048,11 @@ export declare const unnnicModalNext: import('vue').DefineComponent<import('vue'
4012
4048
  type: BooleanConstructor;
4013
4049
  default: boolean;
4014
4050
  };
4015
- forceActiveStatus: {
4051
+ useFocusProp: {
4052
+ type: BooleanConstructor;
4053
+ default: boolean;
4054
+ };
4055
+ focus: {
4016
4056
  type: BooleanConstructor;
4017
4057
  default: boolean;
4018
4058
  };
@@ -4029,7 +4069,7 @@ export declare const unnnicModalNext: import('vue').DefineComponent<import('vue'
4029
4069
  iconScheme(): "fg-base" | "fg-muted";
4030
4070
  attributes(): any;
4031
4071
  }, {
4032
- focus(): void;
4072
+ focusInput(): void;
4033
4073
  onFocus(): void;
4034
4074
  onBlur(): void;
4035
4075
  onIconLeftClick(): void;
@@ -4089,7 +4129,11 @@ export declare const unnnicModalNext: import('vue').DefineComponent<import('vue'
4089
4129
  type: BooleanConstructor;
4090
4130
  default: boolean;
4091
4131
  };
4092
- forceActiveStatus: {
4132
+ useFocusProp: {
4133
+ type: BooleanConstructor;
4134
+ default: boolean;
4135
+ };
4136
+ focus: {
4093
4137
  type: BooleanConstructor;
4094
4138
  default: boolean;
4095
4139
  };
@@ -4103,6 +4147,7 @@ export declare const unnnicModalNext: import('vue').DefineComponent<import('vue'
4103
4147
  "onIcon-right-click"?: ((...args: any[]) => any) | undefined;
4104
4148
  }>, {
4105
4149
  disabled: boolean;
4150
+ focus: boolean;
4106
4151
  type: string;
4107
4152
  placeholder: string;
4108
4153
  size: string;
@@ -4110,7 +4155,7 @@ export declare const unnnicModalNext: import('vue').DefineComponent<import('vue'
4110
4155
  nativeType: string;
4111
4156
  maxlength: number;
4112
4157
  readonly: boolean;
4113
- forceActiveStatus: boolean;
4158
+ useFocusProp: boolean;
4114
4159
  iconLeft: string;
4115
4160
  iconRight: string;
4116
4161
  iconLeftClickable: boolean;
@@ -4151,7 +4196,11 @@ export declare const unnnicModalNext: import('vue').DefineComponent<import('vue'
4151
4196
  type: BooleanConstructor;
4152
4197
  default: boolean;
4153
4198
  };
4154
- forceActiveStatus: {
4199
+ useFocusProp: {
4200
+ type: BooleanConstructor;
4201
+ default: boolean;
4202
+ };
4203
+ focus: {
4155
4204
  type: BooleanConstructor;
4156
4205
  default: boolean;
4157
4206
  };
@@ -4197,13 +4246,18 @@ export declare const unnnicModalNext: import('vue').DefineComponent<import('vue'
4197
4246
  type: BooleanConstructor;
4198
4247
  default: boolean;
4199
4248
  };
4200
- forceActiveStatus: {
4249
+ useFocusProp: {
4250
+ type: BooleanConstructor;
4251
+ default: boolean;
4252
+ };
4253
+ focus: {
4201
4254
  type: BooleanConstructor;
4202
4255
  default: boolean;
4203
4256
  };
4204
4257
  }>> & Readonly<{
4205
4258
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
4206
4259
  }>, {
4260
+ focus: boolean;
4207
4261
  type: string;
4208
4262
  size: string;
4209
4263
  mask: string | unknown[];
@@ -4214,7 +4268,7 @@ export declare const unnnicModalNext: import('vue').DefineComponent<import('vue'
4214
4268
  nativeType: string;
4215
4269
  maxlength: number;
4216
4270
  readonly: boolean;
4217
- forceActiveStatus: boolean;
4271
+ useFocusProp: boolean;
4218
4272
  }, {}, {}, {
4219
4273
  mask: any;
4220
4274
  }, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -7352,7 +7406,11 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
7352
7406
  type: BooleanConstructor;
7353
7407
  default: boolean;
7354
7408
  };
7355
- forceActiveStatus: {
7409
+ useFocusProp: {
7410
+ type: BooleanConstructor;
7411
+ default: boolean;
7412
+ };
7413
+ focus: {
7356
7414
  type: BooleanConstructor;
7357
7415
  default: boolean;
7358
7416
  };
@@ -7448,7 +7506,11 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
7448
7506
  type: BooleanConstructor;
7449
7507
  default: boolean;
7450
7508
  };
7451
- forceActiveStatus: {
7509
+ useFocusProp: {
7510
+ type: BooleanConstructor;
7511
+ default: boolean;
7512
+ };
7513
+ focus: {
7452
7514
  type: BooleanConstructor;
7453
7515
  default: boolean;
7454
7516
  };
@@ -7461,6 +7523,7 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
7461
7523
  onClear?: ((...args: any[]) => any) | undefined;
7462
7524
  }>, {
7463
7525
  disabled: boolean;
7526
+ focus: boolean;
7464
7527
  type: string;
7465
7528
  placeholder: string;
7466
7529
  tooltip: string;
@@ -7472,7 +7535,7 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
7472
7535
  nativeType: string;
7473
7536
  maxlength: number | null;
7474
7537
  readonly: boolean;
7475
- forceActiveStatus: boolean;
7538
+ useFocusProp: boolean;
7476
7539
  iconLeft: string;
7477
7540
  iconRight: string;
7478
7541
  iconLeftClickable: boolean;
@@ -7537,7 +7600,11 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
7537
7600
  type: BooleanConstructor;
7538
7601
  default: boolean;
7539
7602
  };
7540
- forceActiveStatus: {
7603
+ useFocusProp: {
7604
+ type: BooleanConstructor;
7605
+ default: boolean;
7606
+ };
7607
+ focus: {
7541
7608
  type: BooleanConstructor;
7542
7609
  default: boolean;
7543
7610
  };
@@ -7554,7 +7621,7 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
7554
7621
  iconScheme(): "fg-base" | "fg-muted";
7555
7622
  attributes(): any;
7556
7623
  }, {
7557
- focus(): void;
7624
+ focusInput(): void;
7558
7625
  onFocus(): void;
7559
7626
  onBlur(): void;
7560
7627
  onIconLeftClick(): void;
@@ -7614,7 +7681,11 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
7614
7681
  type: BooleanConstructor;
7615
7682
  default: boolean;
7616
7683
  };
7617
- forceActiveStatus: {
7684
+ useFocusProp: {
7685
+ type: BooleanConstructor;
7686
+ default: boolean;
7687
+ };
7688
+ focus: {
7618
7689
  type: BooleanConstructor;
7619
7690
  default: boolean;
7620
7691
  };
@@ -7628,6 +7699,7 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
7628
7699
  "onIcon-right-click"?: ((...args: any[]) => any) | undefined;
7629
7700
  }>, {
7630
7701
  disabled: boolean;
7702
+ focus: boolean;
7631
7703
  type: string;
7632
7704
  placeholder: string;
7633
7705
  size: string;
@@ -7635,7 +7707,7 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
7635
7707
  nativeType: string;
7636
7708
  maxlength: number;
7637
7709
  readonly: boolean;
7638
- forceActiveStatus: boolean;
7710
+ useFocusProp: boolean;
7639
7711
  iconLeft: string;
7640
7712
  iconRight: string;
7641
7713
  iconLeftClickable: boolean;
@@ -7676,7 +7748,11 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
7676
7748
  type: BooleanConstructor;
7677
7749
  default: boolean;
7678
7750
  };
7679
- forceActiveStatus: {
7751
+ useFocusProp: {
7752
+ type: BooleanConstructor;
7753
+ default: boolean;
7754
+ };
7755
+ focus: {
7680
7756
  type: BooleanConstructor;
7681
7757
  default: boolean;
7682
7758
  };
@@ -7722,13 +7798,18 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
7722
7798
  type: BooleanConstructor;
7723
7799
  default: boolean;
7724
7800
  };
7725
- forceActiveStatus: {
7801
+ useFocusProp: {
7802
+ type: BooleanConstructor;
7803
+ default: boolean;
7804
+ };
7805
+ focus: {
7726
7806
  type: BooleanConstructor;
7727
7807
  default: boolean;
7728
7808
  };
7729
7809
  }>> & Readonly<{
7730
7810
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
7731
7811
  }>, {
7812
+ focus: boolean;
7732
7813
  type: string;
7733
7814
  size: string;
7734
7815
  mask: string | unknown[];
@@ -7739,7 +7820,7 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
7739
7820
  nativeType: string;
7740
7821
  maxlength: number;
7741
7822
  readonly: boolean;
7742
- forceActiveStatus: boolean;
7823
+ useFocusProp: boolean;
7743
7824
  }, {}, {}, {
7744
7825
  mask: any;
7745
7826
  }, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -12035,7 +12116,11 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
12035
12116
  type: BooleanConstructor;
12036
12117
  default: boolean;
12037
12118
  };
12038
- forceActiveStatus: {
12119
+ useFocusProp: {
12120
+ type: BooleanConstructor;
12121
+ default: boolean;
12122
+ };
12123
+ focus: {
12039
12124
  type: BooleanConstructor;
12040
12125
  default: boolean;
12041
12126
  };
@@ -12131,7 +12216,11 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
12131
12216
  type: BooleanConstructor;
12132
12217
  default: boolean;
12133
12218
  };
12134
- forceActiveStatus: {
12219
+ useFocusProp: {
12220
+ type: BooleanConstructor;
12221
+ default: boolean;
12222
+ };
12223
+ focus: {
12135
12224
  type: BooleanConstructor;
12136
12225
  default: boolean;
12137
12226
  };
@@ -12144,6 +12233,7 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
12144
12233
  onClear?: ((...args: any[]) => any) | undefined;
12145
12234
  }>, {
12146
12235
  disabled: boolean;
12236
+ focus: boolean;
12147
12237
  type: string;
12148
12238
  placeholder: string;
12149
12239
  tooltip: string;
@@ -12155,7 +12245,7 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
12155
12245
  nativeType: string;
12156
12246
  maxlength: number | null;
12157
12247
  readonly: boolean;
12158
- forceActiveStatus: boolean;
12248
+ useFocusProp: boolean;
12159
12249
  iconLeft: string;
12160
12250
  iconRight: string;
12161
12251
  iconLeftClickable: boolean;
@@ -12220,7 +12310,11 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
12220
12310
  type: BooleanConstructor;
12221
12311
  default: boolean;
12222
12312
  };
12223
- forceActiveStatus: {
12313
+ useFocusProp: {
12314
+ type: BooleanConstructor;
12315
+ default: boolean;
12316
+ };
12317
+ focus: {
12224
12318
  type: BooleanConstructor;
12225
12319
  default: boolean;
12226
12320
  };
@@ -12237,7 +12331,7 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
12237
12331
  iconScheme(): "fg-base" | "fg-muted";
12238
12332
  attributes(): any;
12239
12333
  }, {
12240
- focus(): void;
12334
+ focusInput(): void;
12241
12335
  onFocus(): void;
12242
12336
  onBlur(): void;
12243
12337
  onIconLeftClick(): void;
@@ -12297,7 +12391,11 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
12297
12391
  type: BooleanConstructor;
12298
12392
  default: boolean;
12299
12393
  };
12300
- forceActiveStatus: {
12394
+ useFocusProp: {
12395
+ type: BooleanConstructor;
12396
+ default: boolean;
12397
+ };
12398
+ focus: {
12301
12399
  type: BooleanConstructor;
12302
12400
  default: boolean;
12303
12401
  };
@@ -12311,6 +12409,7 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
12311
12409
  "onIcon-right-click"?: ((...args: any[]) => any) | undefined;
12312
12410
  }>, {
12313
12411
  disabled: boolean;
12412
+ focus: boolean;
12314
12413
  type: string;
12315
12414
  placeholder: string;
12316
12415
  size: string;
@@ -12318,7 +12417,7 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
12318
12417
  nativeType: string;
12319
12418
  maxlength: number;
12320
12419
  readonly: boolean;
12321
- forceActiveStatus: boolean;
12420
+ useFocusProp: boolean;
12322
12421
  iconLeft: string;
12323
12422
  iconRight: string;
12324
12423
  iconLeftClickable: boolean;
@@ -12359,7 +12458,11 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
12359
12458
  type: BooleanConstructor;
12360
12459
  default: boolean;
12361
12460
  };
12362
- forceActiveStatus: {
12461
+ useFocusProp: {
12462
+ type: BooleanConstructor;
12463
+ default: boolean;
12464
+ };
12465
+ focus: {
12363
12466
  type: BooleanConstructor;
12364
12467
  default: boolean;
12365
12468
  };
@@ -12405,13 +12508,18 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
12405
12508
  type: BooleanConstructor;
12406
12509
  default: boolean;
12407
12510
  };
12408
- forceActiveStatus: {
12511
+ useFocusProp: {
12512
+ type: BooleanConstructor;
12513
+ default: boolean;
12514
+ };
12515
+ focus: {
12409
12516
  type: BooleanConstructor;
12410
12517
  default: boolean;
12411
12518
  };
12412
12519
  }>> & Readonly<{
12413
12520
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
12414
12521
  }>, {
12522
+ focus: boolean;
12415
12523
  type: string;
12416
12524
  size: string;
12417
12525
  mask: string | unknown[];
@@ -12422,7 +12530,7 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
12422
12530
  nativeType: string;
12423
12531
  maxlength: number;
12424
12532
  readonly: boolean;
12425
- forceActiveStatus: boolean;
12533
+ useFocusProp: boolean;
12426
12534
  }, {}, {}, {
12427
12535
  mask: any;
12428
12536
  }, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -15698,7 +15806,11 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
15698
15806
  type: BooleanConstructor;
15699
15807
  default: boolean;
15700
15808
  };
15701
- forceActiveStatus: {
15809
+ useFocusProp: {
15810
+ type: BooleanConstructor;
15811
+ default: boolean;
15812
+ };
15813
+ focus: {
15702
15814
  type: BooleanConstructor;
15703
15815
  default: boolean;
15704
15816
  };
@@ -15794,7 +15906,11 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
15794
15906
  type: BooleanConstructor;
15795
15907
  default: boolean;
15796
15908
  };
15797
- forceActiveStatus: {
15909
+ useFocusProp: {
15910
+ type: BooleanConstructor;
15911
+ default: boolean;
15912
+ };
15913
+ focus: {
15798
15914
  type: BooleanConstructor;
15799
15915
  default: boolean;
15800
15916
  };
@@ -15807,6 +15923,7 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
15807
15923
  onClear?: ((...args: any[]) => any) | undefined;
15808
15924
  }>, {
15809
15925
  disabled: boolean;
15926
+ focus: boolean;
15810
15927
  type: string;
15811
15928
  placeholder: string;
15812
15929
  tooltip: string;
@@ -15818,7 +15935,7 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
15818
15935
  nativeType: string;
15819
15936
  maxlength: number | null;
15820
15937
  readonly: boolean;
15821
- forceActiveStatus: boolean;
15938
+ useFocusProp: boolean;
15822
15939
  iconLeft: string;
15823
15940
  iconRight: string;
15824
15941
  iconLeftClickable: boolean;
@@ -15883,7 +16000,11 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
15883
16000
  type: BooleanConstructor;
15884
16001
  default: boolean;
15885
16002
  };
15886
- forceActiveStatus: {
16003
+ useFocusProp: {
16004
+ type: BooleanConstructor;
16005
+ default: boolean;
16006
+ };
16007
+ focus: {
15887
16008
  type: BooleanConstructor;
15888
16009
  default: boolean;
15889
16010
  };
@@ -15900,7 +16021,7 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
15900
16021
  iconScheme(): "fg-base" | "fg-muted";
15901
16022
  attributes(): any;
15902
16023
  }, {
15903
- focus(): void;
16024
+ focusInput(): void;
15904
16025
  onFocus(): void;
15905
16026
  onBlur(): void;
15906
16027
  onIconLeftClick(): void;
@@ -15960,7 +16081,11 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
15960
16081
  type: BooleanConstructor;
15961
16082
  default: boolean;
15962
16083
  };
15963
- forceActiveStatus: {
16084
+ useFocusProp: {
16085
+ type: BooleanConstructor;
16086
+ default: boolean;
16087
+ };
16088
+ focus: {
15964
16089
  type: BooleanConstructor;
15965
16090
  default: boolean;
15966
16091
  };
@@ -15974,6 +16099,7 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
15974
16099
  "onIcon-right-click"?: ((...args: any[]) => any) | undefined;
15975
16100
  }>, {
15976
16101
  disabled: boolean;
16102
+ focus: boolean;
15977
16103
  type: string;
15978
16104
  placeholder: string;
15979
16105
  size: string;
@@ -15981,7 +16107,7 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
15981
16107
  nativeType: string;
15982
16108
  maxlength: number;
15983
16109
  readonly: boolean;
15984
- forceActiveStatus: boolean;
16110
+ useFocusProp: boolean;
15985
16111
  iconLeft: string;
15986
16112
  iconRight: string;
15987
16113
  iconLeftClickable: boolean;
@@ -16022,7 +16148,11 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
16022
16148
  type: BooleanConstructor;
16023
16149
  default: boolean;
16024
16150
  };
16025
- forceActiveStatus: {
16151
+ useFocusProp: {
16152
+ type: BooleanConstructor;
16153
+ default: boolean;
16154
+ };
16155
+ focus: {
16026
16156
  type: BooleanConstructor;
16027
16157
  default: boolean;
16028
16158
  };
@@ -16068,13 +16198,18 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
16068
16198
  type: BooleanConstructor;
16069
16199
  default: boolean;
16070
16200
  };
16071
- forceActiveStatus: {
16201
+ useFocusProp: {
16202
+ type: BooleanConstructor;
16203
+ default: boolean;
16204
+ };
16205
+ focus: {
16072
16206
  type: BooleanConstructor;
16073
16207
  default: boolean;
16074
16208
  };
16075
16209
  }>> & Readonly<{
16076
16210
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
16077
16211
  }>, {
16212
+ focus: boolean;
16078
16213
  type: string;
16079
16214
  size: string;
16080
16215
  mask: string | unknown[];
@@ -16085,7 +16220,7 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
16085
16220
  nativeType: string;
16086
16221
  maxlength: number;
16087
16222
  readonly: boolean;
16088
- forceActiveStatus: boolean;
16223
+ useFocusProp: boolean;
16089
16224
  }, {}, {}, {
16090
16225
  mask: any;
16091
16226
  }, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -19223,7 +19358,11 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
19223
19358
  type: BooleanConstructor;
19224
19359
  default: boolean;
19225
19360
  };
19226
- forceActiveStatus: {
19361
+ useFocusProp: {
19362
+ type: BooleanConstructor;
19363
+ default: boolean;
19364
+ };
19365
+ focus: {
19227
19366
  type: BooleanConstructor;
19228
19367
  default: boolean;
19229
19368
  };
@@ -19319,7 +19458,11 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
19319
19458
  type: BooleanConstructor;
19320
19459
  default: boolean;
19321
19460
  };
19322
- forceActiveStatus: {
19461
+ useFocusProp: {
19462
+ type: BooleanConstructor;
19463
+ default: boolean;
19464
+ };
19465
+ focus: {
19323
19466
  type: BooleanConstructor;
19324
19467
  default: boolean;
19325
19468
  };
@@ -19332,6 +19475,7 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
19332
19475
  onClear?: ((...args: any[]) => any) | undefined;
19333
19476
  }>, {
19334
19477
  disabled: boolean;
19478
+ focus: boolean;
19335
19479
  type: string;
19336
19480
  placeholder: string;
19337
19481
  tooltip: string;
@@ -19343,7 +19487,7 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
19343
19487
  nativeType: string;
19344
19488
  maxlength: number | null;
19345
19489
  readonly: boolean;
19346
- forceActiveStatus: boolean;
19490
+ useFocusProp: boolean;
19347
19491
  iconLeft: string;
19348
19492
  iconRight: string;
19349
19493
  iconLeftClickable: boolean;
@@ -19408,7 +19552,11 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
19408
19552
  type: BooleanConstructor;
19409
19553
  default: boolean;
19410
19554
  };
19411
- forceActiveStatus: {
19555
+ useFocusProp: {
19556
+ type: BooleanConstructor;
19557
+ default: boolean;
19558
+ };
19559
+ focus: {
19412
19560
  type: BooleanConstructor;
19413
19561
  default: boolean;
19414
19562
  };
@@ -19425,7 +19573,7 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
19425
19573
  iconScheme(): "fg-base" | "fg-muted";
19426
19574
  attributes(): any;
19427
19575
  }, {
19428
- focus(): void;
19576
+ focusInput(): void;
19429
19577
  onFocus(): void;
19430
19578
  onBlur(): void;
19431
19579
  onIconLeftClick(): void;
@@ -19485,7 +19633,11 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
19485
19633
  type: BooleanConstructor;
19486
19634
  default: boolean;
19487
19635
  };
19488
- forceActiveStatus: {
19636
+ useFocusProp: {
19637
+ type: BooleanConstructor;
19638
+ default: boolean;
19639
+ };
19640
+ focus: {
19489
19641
  type: BooleanConstructor;
19490
19642
  default: boolean;
19491
19643
  };
@@ -19499,6 +19651,7 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
19499
19651
  "onIcon-right-click"?: ((...args: any[]) => any) | undefined;
19500
19652
  }>, {
19501
19653
  disabled: boolean;
19654
+ focus: boolean;
19502
19655
  type: string;
19503
19656
  placeholder: string;
19504
19657
  size: string;
@@ -19506,7 +19659,7 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
19506
19659
  nativeType: string;
19507
19660
  maxlength: number;
19508
19661
  readonly: boolean;
19509
- forceActiveStatus: boolean;
19662
+ useFocusProp: boolean;
19510
19663
  iconLeft: string;
19511
19664
  iconRight: string;
19512
19665
  iconLeftClickable: boolean;
@@ -19547,7 +19700,11 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
19547
19700
  type: BooleanConstructor;
19548
19701
  default: boolean;
19549
19702
  };
19550
- forceActiveStatus: {
19703
+ useFocusProp: {
19704
+ type: BooleanConstructor;
19705
+ default: boolean;
19706
+ };
19707
+ focus: {
19551
19708
  type: BooleanConstructor;
19552
19709
  default: boolean;
19553
19710
  };
@@ -19593,13 +19750,18 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
19593
19750
  type: BooleanConstructor;
19594
19751
  default: boolean;
19595
19752
  };
19596
- forceActiveStatus: {
19753
+ useFocusProp: {
19754
+ type: BooleanConstructor;
19755
+ default: boolean;
19756
+ };
19757
+ focus: {
19597
19758
  type: BooleanConstructor;
19598
19759
  default: boolean;
19599
19760
  };
19600
19761
  }>> & Readonly<{
19601
19762
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
19602
19763
  }>, {
19764
+ focus: boolean;
19603
19765
  type: string;
19604
19766
  size: string;
19605
19767
  mask: string | unknown[];
@@ -19610,7 +19772,7 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
19610
19772
  nativeType: string;
19611
19773
  maxlength: number;
19612
19774
  readonly: boolean;
19613
- forceActiveStatus: boolean;
19775
+ useFocusProp: boolean;
19614
19776
  }, {}, {}, {
19615
19777
  mask: any;
19616
19778
  }, string, import('vue').ComponentProvideOptions, true, {}, any>;