@juit/vue-z 0.0.62 → 0.0.64

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.
package/dist/index.css CHANGED
@@ -32,7 +32,7 @@
32
32
 
33
33
  /* Suffix behind the input */
34
34
  .z-suffix {
35
- &[data-v-659f41b5] {
35
+ &[data-v-6b64624e] {
36
36
  user-select: none;
37
37
  position: absolute;
38
38
  top: 0;
@@ -42,9 +42,9 @@
42
42
  overflow: hidden;
43
43
  font-weight: 500
44
44
  }
45
- .z-suffix-hidden[data-v-659f41b5] { color: transparent
45
+ .z-suffix-hidden[data-v-6b64624e] { color: transparent
46
46
  }
47
- .z-suffix-visible[data-v-659f41b5] { opacity: 0.5
47
+ .z-suffix-visible[data-v-6b64624e] { opacity: 0.5
48
48
  }
49
49
  }
50
50
 
@@ -68,13 +68,13 @@
68
68
  }
69
69
  }
70
70
 
71
- .autocomplete-match[data-v-d0db92ea] {
71
+ .autocomplete-match[data-v-039ff3b5] {
72
72
  font-weight: 700;
73
73
  }
74
- .autocomplete-miss[data-v-d0db92ea] {
74
+ .autocomplete-miss[data-v-039ff3b5] {
75
75
  font-weight: 400;
76
76
  }
77
- .autocomplete-secondary[data-v-d0db92ea] {
77
+ .autocomplete-secondary[data-v-039ff3b5] {
78
78
  font-size: 0.75em;
79
79
  }
80
80
 
@@ -305,3 +305,4 @@ td.q-td a.table-link[data-v-c1278c50] {
305
305
  }
306
306
  }
307
307
  }
308
+ /*$vite$:1*/
package/dist/index.d.ts CHANGED
@@ -317,6 +317,12 @@ type: PropType<ZValidator<number>[]>;
317
317
  required: false;
318
318
  default: () => never[];
319
319
  };
320
+ /** Indicates that the field can be cleared */
321
+ clearable: {
322
+ type: BooleanConstructor;
323
+ required: false;
324
+ default: boolean;
325
+ };
320
326
  modelValue: {
321
327
  type: PropType<number>;
322
328
  };
@@ -418,6 +424,12 @@ type: PropType<ZValidator<number>[]>;
418
424
  required: false;
419
425
  default: () => never[];
420
426
  };
427
+ /** Indicates that the field can be cleared */
428
+ clearable: {
429
+ type: BooleanConstructor;
430
+ required: false;
431
+ default: boolean;
432
+ };
421
433
  modelValue: {
422
434
  type: PropType<number>;
423
435
  };
@@ -436,6 +448,7 @@ placeholder: string;
436
448
  hint: string | undefined;
437
449
  suffix: string;
438
450
  rules: ZValidator<number>[];
451
+ clearable: boolean;
439
452
  minimum: number | undefined;
440
453
  maximum: number | undefined;
441
454
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
@@ -1570,6 +1583,12 @@ type: PropType<ValidationRule<string>[]>;
1570
1583
  required: false;
1571
1584
  default: () => never[];
1572
1585
  };
1586
+ /** Indicates that the field can be cleared */
1587
+ clearable: {
1588
+ type: BooleanConstructor;
1589
+ required: false;
1590
+ default: boolean;
1591
+ };
1573
1592
  /** Used as `@click="..."` in a template, when clicking on text field */
1574
1593
  onClick: {
1575
1594
  type: PropType<((event: PointerEvent) => any) | undefined>;
@@ -1734,6 +1753,12 @@ type: PropType<ValidationRule<string>[]>;
1734
1753
  required: false;
1735
1754
  default: () => never[];
1736
1755
  };
1756
+ /** Indicates that the field can be cleared */
1757
+ clearable: {
1758
+ type: BooleanConstructor;
1759
+ required: false;
1760
+ default: boolean;
1761
+ };
1737
1762
  /** Used as `@click="..."` in a template, when clicking on text field */
1738
1763
  onClick: {
1739
1764
  type: PropType<((event: PointerEvent) => any) | undefined>;
@@ -1784,6 +1809,7 @@ prefix: string;
1784
1809
  raw: boolean;
1785
1810
  maxLength: number;
1786
1811
  rules: ValidationRule<string>[];
1812
+ clearable: boolean;
1787
1813
  onClickIcon: ((event: PointerEvent) => any) | undefined;
1788
1814
  onClear: (() => any) | undefined;
1789
1815
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
@@ -3886,6 +3912,12 @@ type: PropType<ZValidator<string>[]>;
3886
3912
  required: false;
3887
3913
  default: () => never[];
3888
3914
  };
3915
+ /** Indicates that the field can be cleared */
3916
+ clearable: {
3917
+ type: BooleanConstructor;
3918
+ required: false;
3919
+ default: boolean;
3920
+ };
3889
3921
  modelValue: {
3890
3922
  type: PropType<string>;
3891
3923
  };
@@ -3962,6 +3994,12 @@ type: PropType<ZValidator<string>[]>;
3962
3994
  required: false;
3963
3995
  default: () => never[];
3964
3996
  };
3997
+ /** Indicates that the field can be cleared */
3998
+ clearable: {
3999
+ type: BooleanConstructor;
4000
+ required: false;
4001
+ default: boolean;
4002
+ };
3965
4003
  modelValue: {
3966
4004
  type: PropType<string>;
3967
4005
  };
@@ -3978,6 +4016,7 @@ readonly: boolean | undefined;
3978
4016
  placeholder: string;
3979
4017
  hint: string | undefined;
3980
4018
  rules: ZValidator<string>[];
4019
+ clearable: boolean;
3981
4020
  minLength: number;
3982
4021
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3983
4022
 
@@ -4051,6 +4090,12 @@ type: BooleanConstructor;
4051
4090
  required: false;
4052
4091
  default: boolean;
4053
4092
  };
4093
+ /** Indicates that the field can be cleared */
4094
+ clearable: {
4095
+ type: BooleanConstructor;
4096
+ required: false;
4097
+ default: boolean;
4098
+ };
4054
4099
  modelValue: {
4055
4100
  type: PropType<string[]>;
4056
4101
  };
@@ -4121,6 +4166,12 @@ type: BooleanConstructor;
4121
4166
  required: false;
4122
4167
  default: boolean;
4123
4168
  };
4169
+ /** Indicates that the field can be cleared */
4170
+ clearable: {
4171
+ type: BooleanConstructor;
4172
+ required: false;
4173
+ default: boolean;
4174
+ };
4124
4175
  modelValue: {
4125
4176
  type: PropType<string[]>;
4126
4177
  };
@@ -4136,6 +4187,7 @@ bottomSlots: boolean | undefined;
4136
4187
  readonly: boolean | undefined;
4137
4188
  placeholder: string;
4138
4189
  hint: string | undefined;
4190
+ clearable: boolean;
4139
4191
  tags: string[];
4140
4192
  noNewValues: boolean;
4141
4193
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
@@ -4209,6 +4261,12 @@ type: PropType<ZValidator<string>[]>;
4209
4261
  required: false;
4210
4262
  default: () => never[];
4211
4263
  };
4264
+ /** Indicates that the field can be cleared */
4265
+ clearable: {
4266
+ type: BooleanConstructor;
4267
+ required: false;
4268
+ default: boolean;
4269
+ };
4212
4270
  modelValue: {
4213
4271
  type: PropType<string>;
4214
4272
  };
@@ -4290,6 +4348,12 @@ type: PropType<ZValidator<string>[]>;
4290
4348
  required: false;
4291
4349
  default: () => never[];
4292
4350
  };
4351
+ /** Indicates that the field can be cleared */
4352
+ clearable: {
4353
+ type: BooleanConstructor;
4354
+ required: false;
4355
+ default: boolean;
4356
+ };
4293
4357
  modelValue: {
4294
4358
  type: PropType<string>;
4295
4359
  };
@@ -4306,6 +4370,7 @@ readonly: boolean | undefined;
4306
4370
  placeholder: string;
4307
4371
  hint: string | undefined;
4308
4372
  rules: ZValidator<string>[];
4373
+ clearable: boolean;
4309
4374
  country: string;
4310
4375
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
4311
4376