ablok-components 0.2.16 → 0.2.18
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/ablok-components.css +1 -1
- package/dist/ablok-components.es.js +3521 -3500
- package/dist/ablok-components.umd.js +39 -39
- package/dist/components/atoms/base-input/base-input.vue.d.ts +20 -0
- package/dist/components/templates/sortable-list/sortable-list.vue.d.ts +2 -2
- package/package.json +1 -1
|
@@ -85,8 +85,17 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
85
85
|
type: StringConstructor;
|
|
86
86
|
default: string;
|
|
87
87
|
};
|
|
88
|
+
validate: {
|
|
89
|
+
type: BooleanConstructor;
|
|
90
|
+
default: boolean;
|
|
91
|
+
};
|
|
92
|
+
valid: {
|
|
93
|
+
type: BooleanConstructor;
|
|
94
|
+
default: boolean;
|
|
95
|
+
};
|
|
88
96
|
}>, {}, {}, {}, {}, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
89
97
|
"update:modelValue": (...args: any[]) => void;
|
|
98
|
+
"update:valid": (...args: any[]) => void;
|
|
90
99
|
}, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
91
100
|
modelValue: {
|
|
92
101
|
type: (StringConstructor | BooleanConstructor | DateConstructor | NumberConstructor)[];
|
|
@@ -157,8 +166,17 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
157
166
|
type: StringConstructor;
|
|
158
167
|
default: string;
|
|
159
168
|
};
|
|
169
|
+
validate: {
|
|
170
|
+
type: BooleanConstructor;
|
|
171
|
+
default: boolean;
|
|
172
|
+
};
|
|
173
|
+
valid: {
|
|
174
|
+
type: BooleanConstructor;
|
|
175
|
+
default: boolean;
|
|
176
|
+
};
|
|
160
177
|
}>> & Readonly<{
|
|
161
178
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
179
|
+
"onUpdate:valid"?: ((...args: any[]) => any) | undefined;
|
|
162
180
|
}>, {
|
|
163
181
|
type: string;
|
|
164
182
|
label: string;
|
|
@@ -175,6 +193,8 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
175
193
|
falseValue: any;
|
|
176
194
|
role: string;
|
|
177
195
|
autocomplete: string;
|
|
196
|
+
validate: boolean;
|
|
197
|
+
valid: boolean;
|
|
178
198
|
}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {
|
|
179
199
|
input: HTMLInputElement;
|
|
180
200
|
}, HTMLDivElement>;
|
|
@@ -29,7 +29,7 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
29
29
|
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
30
30
|
readonly [Symbol.species]: ArrayConstructor;
|
|
31
31
|
};
|
|
32
|
-
default: () =>
|
|
32
|
+
default: () => never[];
|
|
33
33
|
};
|
|
34
34
|
config: {
|
|
35
35
|
type: ObjectConstructor;
|
|
@@ -74,7 +74,7 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
74
74
|
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
75
75
|
readonly [Symbol.species]: ArrayConstructor;
|
|
76
76
|
};
|
|
77
|
-
default: () =>
|
|
77
|
+
default: () => never[];
|
|
78
78
|
};
|
|
79
79
|
config: {
|
|
80
80
|
type: ObjectConstructor;
|