@enos5/enos-vue-default 1.7.6 → 1.8.2
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/README.md +1 -1
- package/dist/components/ColorPicker.vue.d.ts +59 -0
- package/dist/components/ConfirmationModal.vue.d.ts +1 -1
- package/dist/components/DialogModal.vue.d.ts +1 -1
- package/dist/components/InputGroup.vue.d.ts +18 -0
- package/dist/components/Modal.vue.d.ts +1 -1
- package/dist/exports.d.ts +1 -0
- package/dist/index.docs.d.ts +1 -0
- package/dist/index.js +28 -27
- package/dist/index.node.js +28 -27
- package/dist/{plugin-BBFChsPh.js → plugin-DYTVm2W1.js} +998 -231
- package/dist/plugin-DYTVm2W1.js.map +1 -0
- package/dist/styles.css +190 -0
- package/package.json +1 -1
- package/dist/plugin-BBFChsPh.js.map +0 -1
package/README.md
CHANGED
|
@@ -51,7 +51,7 @@ createApp(App).use(EnosVueDefault).mount('#app')
|
|
|
51
51
|
Or import individual components:
|
|
52
52
|
|
|
53
53
|
```ts
|
|
54
|
-
import { Button, TextInput } from '@enos5/enos-vue-default'
|
|
54
|
+
import { Button, ColorPicker, TextInput } from '@enos5/enos-vue-default'
|
|
55
55
|
```
|
|
56
56
|
|
|
57
57
|
Styles are loaded automatically when you import the package entrypoint, so consumers do not have to remember a separate CSS import.
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
declare const _default: typeof __VLS_export;
|
|
2
|
+
export default _default;
|
|
3
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
modelValue: {
|
|
5
|
+
type: (StringConstructor | null)[];
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
8
|
+
disabled: {
|
|
9
|
+
type: BooleanConstructor;
|
|
10
|
+
default: boolean;
|
|
11
|
+
};
|
|
12
|
+
disabledClass: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
allowAlpha: {
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
default: boolean;
|
|
19
|
+
};
|
|
20
|
+
variant: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
}>, {
|
|
25
|
+
focus: () => any;
|
|
26
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
27
|
+
"update:modelValue": (...args: any[]) => void;
|
|
28
|
+
blur: (...args: any[]) => void;
|
|
29
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
30
|
+
modelValue: {
|
|
31
|
+
type: (StringConstructor | null)[];
|
|
32
|
+
default: string;
|
|
33
|
+
};
|
|
34
|
+
disabled: {
|
|
35
|
+
type: BooleanConstructor;
|
|
36
|
+
default: boolean;
|
|
37
|
+
};
|
|
38
|
+
disabledClass: {
|
|
39
|
+
type: StringConstructor;
|
|
40
|
+
default: string;
|
|
41
|
+
};
|
|
42
|
+
allowAlpha: {
|
|
43
|
+
type: BooleanConstructor;
|
|
44
|
+
default: boolean;
|
|
45
|
+
};
|
|
46
|
+
variant: {
|
|
47
|
+
type: StringConstructor;
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
50
|
+
}>> & Readonly<{
|
|
51
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
52
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
53
|
+
}>, {
|
|
54
|
+
disabled: boolean;
|
|
55
|
+
variant: string;
|
|
56
|
+
modelValue: string | null;
|
|
57
|
+
disabledClass: string;
|
|
58
|
+
allowAlpha: boolean;
|
|
59
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -46,8 +46,8 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
46
46
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
47
47
|
}>, {
|
|
48
48
|
position: string;
|
|
49
|
-
show: boolean;
|
|
50
49
|
maxWidth: string;
|
|
50
|
+
show: boolean;
|
|
51
51
|
closeable: boolean;
|
|
52
52
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
53
53
|
type __VLS_Slots = {
|
|
@@ -35,8 +35,8 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
35
35
|
}>> & Readonly<{
|
|
36
36
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
37
37
|
}>, {
|
|
38
|
-
show: boolean;
|
|
39
38
|
maxWidth: string;
|
|
39
|
+
show: boolean;
|
|
40
40
|
closeable: boolean;
|
|
41
41
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
42
42
|
type __VLS_Slots = {
|
|
@@ -177,6 +177,14 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
177
177
|
type: StringConstructor;
|
|
178
178
|
default: string;
|
|
179
179
|
};
|
|
180
|
+
allowAlpha: {
|
|
181
|
+
type: BooleanConstructor;
|
|
182
|
+
default: boolean;
|
|
183
|
+
};
|
|
184
|
+
variant: {
|
|
185
|
+
type: StringConstructor;
|
|
186
|
+
default: string;
|
|
187
|
+
};
|
|
180
188
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
181
189
|
"update:modelValue": (...args: any[]) => void;
|
|
182
190
|
blur: (...args: any[]) => void;
|
|
@@ -353,6 +361,14 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
353
361
|
type: StringConstructor;
|
|
354
362
|
default: string;
|
|
355
363
|
};
|
|
364
|
+
allowAlpha: {
|
|
365
|
+
type: BooleanConstructor;
|
|
366
|
+
default: boolean;
|
|
367
|
+
};
|
|
368
|
+
variant: {
|
|
369
|
+
type: StringConstructor;
|
|
370
|
+
default: string;
|
|
371
|
+
};
|
|
356
372
|
}>> & Readonly<{
|
|
357
373
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
358
374
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
@@ -360,6 +376,7 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
360
376
|
label: string;
|
|
361
377
|
name: string;
|
|
362
378
|
disabled: boolean;
|
|
379
|
+
variant: string;
|
|
363
380
|
modelValue: string | number | boolean | unknown[] | null;
|
|
364
381
|
disabledClass: string;
|
|
365
382
|
modelModifiers: Record<string, any>;
|
|
@@ -399,6 +416,7 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
399
416
|
outputFormat: string;
|
|
400
417
|
startLabel: string;
|
|
401
418
|
endLabel: string;
|
|
419
|
+
allowAlpha: boolean;
|
|
402
420
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
403
421
|
type __VLS_Slots = {
|
|
404
422
|
'unsupported-type'?: ((props: {
|
|
@@ -46,8 +46,8 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
46
46
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
47
47
|
}>, {
|
|
48
48
|
position: string;
|
|
49
|
-
show: boolean;
|
|
50
49
|
maxWidth: string;
|
|
50
|
+
show: boolean;
|
|
51
51
|
closeable: boolean;
|
|
52
52
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
53
53
|
type __VLS_Slots = {
|
package/dist/exports.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export { default as CardTabs } from './components/CardTabs.vue';
|
|
|
8
8
|
export { default as Checkbox } from './components/Checkbox.vue';
|
|
9
9
|
export { default as CheckboxInput } from './components/CheckboxInput.vue';
|
|
10
10
|
export { default as CheckboxMultipleInput } from './components/CheckboxMultipleInput.vue';
|
|
11
|
+
export { default as ColorPicker } from './components/ColorPicker.vue';
|
|
11
12
|
export { default as ConfirmationModal } from './components/ConfirmationModal.vue';
|
|
12
13
|
export { default as CustomSelect } from './components/CustomSelect.vue';
|
|
13
14
|
export { default as DateInput } from './components/DateInput.vue';
|
package/dist/index.docs.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export { default as CardTabs } from "./components/CardTabs.vue";
|
|
|
8
8
|
export { default as Checkbox } from "./components/Checkbox.vue";
|
|
9
9
|
export { default as CheckboxInput } from "./components/CheckboxInput.vue";
|
|
10
10
|
export { default as CheckboxMultipleInput } from "./components/CheckboxMultipleInput.vue";
|
|
11
|
+
export { default as ColorPicker } from "./components/ColorPicker.vue";
|
|
11
12
|
export { default as ConfirmationModal } from "./components/ConfirmationModal.vue";
|
|
12
13
|
export { default as CustomSelect } from "./components/CustomSelect.vue";
|
|
13
14
|
export { default as DateInput } from "./components/DateInput.vue";
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import './styles.css';
|
|
2
|
-
import { _, a, b, c, d, e, f, g, h, i, j, k, D, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z, A, B, S,
|
|
2
|
+
import { _, a, b, c, d, e, f, g, h, i, C, j, k, D, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z, A, B, S, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, T, U, V, W, X, Y, Z, $, a0, a1, a2, a3 } from "./plugin-DYTVm2W1.js";
|
|
3
3
|
export {
|
|
4
4
|
_ as ActionCard,
|
|
5
5
|
a as ActionMessage,
|
|
@@ -11,6 +11,7 @@ export {
|
|
|
11
11
|
g as Checkbox,
|
|
12
12
|
h as CheckboxInput,
|
|
13
13
|
i as CheckboxMultipleInput,
|
|
14
|
+
C as ColorPicker,
|
|
14
15
|
j as ConfirmationModal,
|
|
15
16
|
k as CustomSelect,
|
|
16
17
|
D as DateInput,
|
|
@@ -32,31 +33,31 @@ export {
|
|
|
32
33
|
A as RadioMultipleInput,
|
|
33
34
|
B as SectionBorder,
|
|
34
35
|
S as SectionTitle,
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
36
|
+
E as SelectInput,
|
|
37
|
+
F as Sidebar,
|
|
38
|
+
G as SidebarContent,
|
|
39
|
+
H as SidebarFooter,
|
|
40
|
+
I as SidebarGroup,
|
|
41
|
+
J as SidebarGroupContent,
|
|
42
|
+
K as SidebarGroupLabel,
|
|
43
|
+
L as SidebarHeader,
|
|
44
|
+
M as SidebarInset,
|
|
45
|
+
N as SidebarMenu,
|
|
46
|
+
O as SidebarMenuButton,
|
|
47
|
+
P as SidebarMenuItem,
|
|
48
|
+
Q as SidebarProvider,
|
|
49
|
+
R as SidebarTrigger,
|
|
50
|
+
T as SortControls,
|
|
51
|
+
U as TableList,
|
|
52
|
+
V as TableListForm,
|
|
53
|
+
W as TableSearch,
|
|
54
|
+
X as TextArea,
|
|
55
|
+
Y as TextInput,
|
|
56
|
+
Z as ThSortable,
|
|
57
|
+
$ as TinyEditor,
|
|
58
|
+
a0 as Toast,
|
|
59
|
+
a1 as ToastContainer,
|
|
60
|
+
a2 as ToggleInput,
|
|
61
|
+
a3 as useSidebar
|
|
61
62
|
};
|
|
62
63
|
//# sourceMappingURL=index.js.map
|
package/dist/index.node.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _, a, b, c, d, e, f, g, h, i, j, k, D, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z, A, B, S,
|
|
1
|
+
import { _, a, b, c, d, e, f, g, h, i, C, j, k, D, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z, A, B, S, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, T, U, V, W, X, Y, Z, $, a0, a1, a2, a3 } from "./plugin-DYTVm2W1.js";
|
|
2
2
|
export {
|
|
3
3
|
_ as ActionCard,
|
|
4
4
|
a as ActionMessage,
|
|
@@ -10,6 +10,7 @@ export {
|
|
|
10
10
|
g as Checkbox,
|
|
11
11
|
h as CheckboxInput,
|
|
12
12
|
i as CheckboxMultipleInput,
|
|
13
|
+
C as ColorPicker,
|
|
13
14
|
j as ConfirmationModal,
|
|
14
15
|
k as CustomSelect,
|
|
15
16
|
D as DateInput,
|
|
@@ -31,31 +32,31 @@ export {
|
|
|
31
32
|
A as RadioMultipleInput,
|
|
32
33
|
B as SectionBorder,
|
|
33
34
|
S as SectionTitle,
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
35
|
+
E as SelectInput,
|
|
36
|
+
F as Sidebar,
|
|
37
|
+
G as SidebarContent,
|
|
38
|
+
H as SidebarFooter,
|
|
39
|
+
I as SidebarGroup,
|
|
40
|
+
J as SidebarGroupContent,
|
|
41
|
+
K as SidebarGroupLabel,
|
|
42
|
+
L as SidebarHeader,
|
|
43
|
+
M as SidebarInset,
|
|
44
|
+
N as SidebarMenu,
|
|
45
|
+
O as SidebarMenuButton,
|
|
46
|
+
P as SidebarMenuItem,
|
|
47
|
+
Q as SidebarProvider,
|
|
48
|
+
R as SidebarTrigger,
|
|
49
|
+
T as SortControls,
|
|
50
|
+
U as TableList,
|
|
51
|
+
V as TableListForm,
|
|
52
|
+
W as TableSearch,
|
|
53
|
+
X as TextArea,
|
|
54
|
+
Y as TextInput,
|
|
55
|
+
Z as ThSortable,
|
|
56
|
+
$ as TinyEditor,
|
|
57
|
+
a0 as Toast,
|
|
58
|
+
a1 as ToastContainer,
|
|
59
|
+
a2 as ToggleInput,
|
|
60
|
+
a3 as useSidebar
|
|
60
61
|
};
|
|
61
62
|
//# sourceMappingURL=index.node.js.map
|