@defaultusr/dai-ui 1.0.5 → 1.0.7
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/assets/main.css +1 -1
- package/dist/main.js +557 -574
- package/dist/nuxt.js +10 -9
- package/dist/types/components/{checkbox.vue.d.ts → form/checkbox.vue.d.ts} +11 -1
- package/dist/types/components/form/formControl/hint.vue.d.ts +15 -0
- package/dist/types/components/{formControl → form/formControl}/label.vue.d.ts +1 -1
- package/dist/types/components/form/index.d.ts +5 -0
- package/dist/types/components/notifications/notification.vue.d.ts +1 -1
- package/dist/types/components/notifications/notificationQueue.vue.d.ts +1 -1
- package/dist/types/components/progressbar.vue.d.ts +1 -1
- package/dist/types/main.d.ts +1 -5
- package/package.json +1 -1
- /package/dist/types/components/{formControl → form/formControl}/btn.vue.d.ts +0 -0
- /package/dist/types/components/{formControl → form/formControl}/formControl.vue.d.ts +0 -0
- /package/dist/types/components/{formControl → form/formControl}/inputGroup.vue.d.ts +0 -0
- /package/dist/types/components/{input.vue.d.ts → form/input.vue.d.ts} +0 -0
- /package/dist/types/components/{radio.vue.d.ts → form/radio.vue.d.ts} +0 -0
- /package/dist/types/components/{select.vue.d.ts → form/select.vue.d.ts} +0 -0
- /package/dist/types/components/{textarea.vue.d.ts → form/textarea.vue.d.ts} +0 -0
package/dist/nuxt.js
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { defineNuxtModule as
|
|
2
|
-
const
|
|
1
|
+
import { defineNuxtModule as a, addComponent as n } from "@nuxt/kit";
|
|
2
|
+
const s = a({
|
|
3
3
|
defaults: {
|
|
4
4
|
prefix: "Dai"
|
|
5
5
|
},
|
|
6
|
-
setup(
|
|
7
|
-
|
|
6
|
+
setup(t, o) {
|
|
7
|
+
o.options.build ||= {}, o.options.build.transpile ||= [], o.options.build.transpile.push("@defaultusr/dai-ui");
|
|
8
|
+
const i = [
|
|
8
9
|
"Popover",
|
|
9
10
|
"Menu",
|
|
10
11
|
"TabContainer",
|
|
@@ -31,14 +32,14 @@ const u = n({
|
|
|
31
32
|
"Progressbar",
|
|
32
33
|
"Modal"
|
|
33
34
|
];
|
|
34
|
-
for (const
|
|
35
|
-
|
|
36
|
-
name: `${
|
|
37
|
-
export:
|
|
35
|
+
for (const e of i)
|
|
36
|
+
n({
|
|
37
|
+
name: `${t.prefix}${e}`,
|
|
38
|
+
export: e,
|
|
38
39
|
filePath: "@defaultusr/dai-ui"
|
|
39
40
|
});
|
|
40
41
|
}
|
|
41
42
|
});
|
|
42
43
|
export {
|
|
43
|
-
|
|
44
|
+
s as default
|
|
44
45
|
};
|
|
@@ -8,7 +8,11 @@ type __VLS_Props = {
|
|
|
8
8
|
type __VLS_PublicProps = __VLS_Props & {
|
|
9
9
|
modelValue?: boolean;
|
|
10
10
|
};
|
|
11
|
-
declare
|
|
11
|
+
declare var __VLS_5: {};
|
|
12
|
+
type __VLS_Slots = {} & {
|
|
13
|
+
default?: (props: typeof __VLS_5) => any;
|
|
14
|
+
};
|
|
15
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
16
|
"update:modelValue": (value: boolean | undefined) => any;
|
|
13
17
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
14
18
|
"onUpdate:modelValue"?: ((value: boolean | undefined) => any) | undefined;
|
|
@@ -16,4 +20,10 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, void, {
|
|
|
16
20
|
color: "primary" | "secondary" | "success" | "warning" | "danger" | "info";
|
|
17
21
|
showValidationError: boolean;
|
|
18
22
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
23
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
19
24
|
export default _default;
|
|
25
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
26
|
+
new (): {
|
|
27
|
+
$slots: S;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
text?: string;
|
|
3
|
+
};
|
|
4
|
+
declare var __VLS_1: {};
|
|
5
|
+
type __VLS_Slots = {} & {
|
|
6
|
+
default?: (props: typeof __VLS_1) => any;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
9
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
10
|
+
export default _default;
|
|
11
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
12
|
+
new (): {
|
|
13
|
+
$slots: S;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
@@ -5,8 +5,8 @@ type __VLS_Props = {
|
|
|
5
5
|
rounded?: boolean;
|
|
6
6
|
};
|
|
7
7
|
declare const _default: import("vue").DefineComponent<__VLS_Props, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
8
|
-
color: "primary" | "secondary" | "success" | "warning" | "danger" | "info";
|
|
9
8
|
rounded: boolean;
|
|
9
|
+
color: "primary" | "secondary" | "success" | "warning" | "danger" | "info";
|
|
10
10
|
height: number | string;
|
|
11
11
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
12
12
|
export default _default;
|
package/dist/types/main.d.ts
CHANGED
|
@@ -1,11 +1,7 @@
|
|
|
1
1
|
export { Popover, Menu, TabContainer, TabPanel } from "vue-composable-ui";
|
|
2
2
|
export { useClassList } from "./composables/classList";
|
|
3
|
+
export * from "./components/form";
|
|
3
4
|
export { default as Btn } from "./components/btn.vue";
|
|
4
|
-
export { default as Input } from "./components/input.vue";
|
|
5
|
-
export { default as Textarea } from "./components/textarea.vue";
|
|
6
|
-
export { default as Select } from "./components/select.vue";
|
|
7
|
-
export { default as Checkbox } from "./components/checkbox.vue";
|
|
8
|
-
export { default as Radio } from "./components/radio.vue";
|
|
9
5
|
export { default as Switch } from "./components/switch.vue";
|
|
10
6
|
export { default as PopoverDialog } from "./components/popoverDialog.vue";
|
|
11
7
|
export { default as Combobox } from "./components/combobox/combobox.vue";
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|