ablok-components 0.2.37 → 0.2.39
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.es.js +111 -112
- package/dist/ablok-components.umd.js +10 -10
- package/dist/components/atoms/custom-html/custom-html.spec.d.ts +1 -0
- package/dist/components/atoms/custom-html/custom-html.vue.d.ts +20 -0
- package/dist/components/molecules/input-dropdown/input-dropdown.vue.d.ts +0 -3
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
content?: string;
|
|
3
|
+
};
|
|
4
|
+
declare function __VLS_template(): {
|
|
5
|
+
attrs: Partial<{}>;
|
|
6
|
+
slots: {
|
|
7
|
+
default?(_: {}): any;
|
|
8
|
+
};
|
|
9
|
+
refs: {};
|
|
10
|
+
rootEl: any;
|
|
11
|
+
};
|
|
12
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
+
declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
15
|
+
export default _default;
|
|
16
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
17
|
+
new (): {
|
|
18
|
+
$slots: S;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
@@ -8,7 +8,6 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
|
|
|
8
8
|
};
|
|
9
9
|
label: {
|
|
10
10
|
type: StringConstructor;
|
|
11
|
-
default: () => string;
|
|
12
11
|
};
|
|
13
12
|
error: {
|
|
14
13
|
type: StringConstructor;
|
|
@@ -94,7 +93,6 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
|
|
|
94
93
|
};
|
|
95
94
|
label: {
|
|
96
95
|
type: StringConstructor;
|
|
97
|
-
default: () => string;
|
|
98
96
|
};
|
|
99
97
|
error: {
|
|
100
98
|
type: StringConstructor;
|
|
@@ -171,7 +169,6 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
|
|
|
171
169
|
}>> & Readonly<{
|
|
172
170
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
173
171
|
}>, {
|
|
174
|
-
label: string;
|
|
175
172
|
icon: string;
|
|
176
173
|
color: string;
|
|
177
174
|
required: boolean;
|