@juit/vue-z 0.0.63 → 0.0.65
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 +4 -3
- package/dist/index.d.ts +26 -0
- package/dist/index.js +6880 -6647
- package/dist/index.js.map +1 -1
- package/package.json +7 -7
package/dist/index.css
CHANGED
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
|
|
33
33
|
/* Suffix behind the input */
|
|
34
34
|
.z-suffix {
|
|
35
|
-
&[data-v-
|
|
35
|
+
&[data-v-7f2feeca] {
|
|
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-
|
|
45
|
+
.z-suffix-hidden[data-v-7f2feeca] { color: transparent
|
|
46
46
|
}
|
|
47
|
-
.z-suffix-visible[data-v-
|
|
47
|
+
.z-suffix-visible[data-v-7f2feeca] { opacity: 0.5
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
|
|
@@ -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
|
@@ -4622,6 +4622,18 @@ readonly type: PropType<boolean | "ondemand">;
|
|
|
4622
4622
|
readonly required: false;
|
|
4623
4623
|
readonly default: undefined;
|
|
4624
4624
|
};
|
|
4625
|
+
/** The debounce time in milliseconds for the input field */
|
|
4626
|
+
debounce: {
|
|
4627
|
+
type: NumberConstructor;
|
|
4628
|
+
required: false;
|
|
4629
|
+
default: number;
|
|
4630
|
+
};
|
|
4631
|
+
/** Clearable, when clicked value will become the empty string */
|
|
4632
|
+
clearable: {
|
|
4633
|
+
type: BooleanConstructor;
|
|
4634
|
+
required: false;
|
|
4635
|
+
default: boolean;
|
|
4636
|
+
};
|
|
4625
4637
|
modelValue: {
|
|
4626
4638
|
type: PropType<string>;
|
|
4627
4639
|
required: true;
|
|
@@ -4657,6 +4669,18 @@ readonly type: PropType<boolean | "ondemand">;
|
|
|
4657
4669
|
readonly required: false;
|
|
4658
4670
|
readonly default: undefined;
|
|
4659
4671
|
};
|
|
4672
|
+
/** The debounce time in milliseconds for the input field */
|
|
4673
|
+
debounce: {
|
|
4674
|
+
type: NumberConstructor;
|
|
4675
|
+
required: false;
|
|
4676
|
+
default: number;
|
|
4677
|
+
};
|
|
4678
|
+
/** Clearable, when clicked value will become the empty string */
|
|
4679
|
+
clearable: {
|
|
4680
|
+
type: BooleanConstructor;
|
|
4681
|
+
required: false;
|
|
4682
|
+
default: boolean;
|
|
4683
|
+
};
|
|
4660
4684
|
modelValue: {
|
|
4661
4685
|
type: PropType<string>;
|
|
4662
4686
|
required: true;
|
|
@@ -4669,6 +4693,8 @@ disabled: boolean | undefined;
|
|
|
4669
4693
|
lazyRules: boolean | "ondemand";
|
|
4670
4694
|
bottomSlots: boolean | undefined;
|
|
4671
4695
|
readonly: boolean | undefined;
|
|
4696
|
+
debounce: number;
|
|
4697
|
+
clearable: boolean;
|
|
4672
4698
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
4673
4699
|
|
|
4674
4700
|
declare const __VLS_export_8: DefineComponent<ExtractPropTypes< {
|