@enos5/enos-vue-default 1.6.10 → 1.7.1

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.
@@ -0,0 +1,97 @@
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: ObjectConstructor;
6
+ default: () => {
7
+ start: string;
8
+ end: string;
9
+ };
10
+ };
11
+ disabled: {
12
+ type: BooleanConstructor;
13
+ default: boolean;
14
+ };
15
+ disabledClass: {
16
+ type: StringConstructor;
17
+ default: string;
18
+ };
19
+ min: {
20
+ type: StringConstructor;
21
+ default: string;
22
+ };
23
+ max: {
24
+ type: StringConstructor;
25
+ default: string;
26
+ };
27
+ minDays: {
28
+ type: NumberConstructor;
29
+ default: number;
30
+ };
31
+ maxDays: {
32
+ type: NumberConstructor;
33
+ default: null;
34
+ };
35
+ label: {
36
+ type: StringConstructor;
37
+ default: string;
38
+ };
39
+ placeholder: {
40
+ type: StringConstructor;
41
+ default: string;
42
+ };
43
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
44
+ "update:modelValue": (...args: any[]) => void;
45
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
46
+ modelValue: {
47
+ type: ObjectConstructor;
48
+ default: () => {
49
+ start: string;
50
+ end: string;
51
+ };
52
+ };
53
+ disabled: {
54
+ type: BooleanConstructor;
55
+ default: boolean;
56
+ };
57
+ disabledClass: {
58
+ type: StringConstructor;
59
+ default: string;
60
+ };
61
+ min: {
62
+ type: StringConstructor;
63
+ default: string;
64
+ };
65
+ max: {
66
+ type: StringConstructor;
67
+ default: string;
68
+ };
69
+ minDays: {
70
+ type: NumberConstructor;
71
+ default: number;
72
+ };
73
+ maxDays: {
74
+ type: NumberConstructor;
75
+ default: null;
76
+ };
77
+ label: {
78
+ type: StringConstructor;
79
+ default: string;
80
+ };
81
+ placeholder: {
82
+ type: StringConstructor;
83
+ default: string;
84
+ };
85
+ }>> & Readonly<{
86
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
87
+ }>, {
88
+ label: string;
89
+ disabled: boolean;
90
+ modelValue: Record<string, any>;
91
+ disabledClass: string;
92
+ placeholder: string;
93
+ max: string;
94
+ min: string;
95
+ minDays: number;
96
+ maxDays: number;
97
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -149,6 +149,30 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
149
149
  type: StringConstructor;
150
150
  default: string;
151
151
  };
152
+ min: {
153
+ type: StringConstructor;
154
+ default: string;
155
+ };
156
+ max: {
157
+ type: StringConstructor;
158
+ default: string;
159
+ };
160
+ minDays: {
161
+ type: NumberConstructor;
162
+ default: number;
163
+ };
164
+ maxDays: {
165
+ type: NumberConstructor;
166
+ default: null;
167
+ };
168
+ startLabel: {
169
+ type: StringConstructor;
170
+ default: string;
171
+ };
172
+ endLabel: {
173
+ type: StringConstructor;
174
+ default: string;
175
+ };
152
176
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
153
177
  "update:modelValue": (...args: any[]) => void;
154
178
  blur: (...args: any[]) => void;
@@ -297,6 +321,30 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
297
321
  type: StringConstructor;
298
322
  default: string;
299
323
  };
324
+ min: {
325
+ type: StringConstructor;
326
+ default: string;
327
+ };
328
+ max: {
329
+ type: StringConstructor;
330
+ default: string;
331
+ };
332
+ minDays: {
333
+ type: NumberConstructor;
334
+ default: number;
335
+ };
336
+ maxDays: {
337
+ type: NumberConstructor;
338
+ default: null;
339
+ };
340
+ startLabel: {
341
+ type: StringConstructor;
342
+ default: string;
343
+ };
344
+ endLabel: {
345
+ type: StringConstructor;
346
+ default: string;
347
+ };
300
348
  }>> & Readonly<{
301
349
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
302
350
  onBlur?: ((...args: any[]) => any) | undefined;
@@ -323,6 +371,10 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
323
371
  deletedOptionClass: string | unknown[] | Record<string, any>;
324
372
  placeholderClass: string | unknown[] | Record<string, any>;
325
373
  withTimestamp: boolean;
374
+ max: string;
375
+ min: string;
376
+ minDays: number;
377
+ maxDays: number;
326
378
  currentImageUrl: string;
327
379
  accept: string;
328
380
  currentLabel: string;
@@ -336,6 +388,8 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
336
388
  init: Record<string, any>;
337
389
  licenseKey: string;
338
390
  outputFormat: string;
391
+ startLabel: string;
392
+ endLabel: string;
339
393
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
340
394
  type __VLS_Slots = {
341
395
  'unsupported-type'?: ((props: {
@@ -82,6 +82,7 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
82
82
  onBlur?: ((...args: any[]) => any) | undefined;
83
83
  }>, {
84
84
  modelValue: string;
85
+ readonly: boolean;
85
86
  height: number;
86
87
  menubar: string | boolean;
87
88
  toolbar: string | unknown[];
@@ -89,5 +90,4 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
89
90
  init: Record<string, any>;
90
91
  licenseKey: string;
91
92
  outputFormat: string;
92
- readonly: boolean;
93
93
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
package/dist/exports.d.ts CHANGED
@@ -11,6 +11,7 @@ export { default as CheckboxMultipleInput } from './components/CheckboxMultipleI
11
11
  export { default as ConfirmationModal } from './components/ConfirmationModal.vue';
12
12
  export { default as CustomSelect } from './components/CustomSelect.vue';
13
13
  export { default as DateInput } from './components/DateInput.vue';
14
+ export { default as DateRangeInput } from './components/DateRangeInput.vue';
14
15
  export { default as DialogModal } from './components/DialogModal.vue';
15
16
  export { default as Divider } from './components/Divider.vue';
16
17
  export { default as Dropdown } from './components/Dropdown.vue';
@@ -11,6 +11,7 @@ export { default as CheckboxMultipleInput } from "./components/CheckboxMultipleI
11
11
  export { default as ConfirmationModal } from "./components/ConfirmationModal.vue";
12
12
  export { default as CustomSelect } from "./components/CustomSelect.vue";
13
13
  export { default as DateInput } from "./components/DateInput.vue";
14
+ export { default as DateRangeInput } from "./components/DateRangeInput.vue";
14
15
  export { default as DialogModal } from "./components/DialogModal.vue";
15
16
  export { default as Divider } from "./components/Divider.vue";
16
17
  export { default as Dropdown } from "./components/Dropdown.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, S, B, C, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, T, U, V, W, X, Y, Z, $, a0, a1 } from "./plugin-CrvKxhz1.js";
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, C, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, T, U, V, W, X, Y, Z, $, a0, a1, a2 } from "./plugin-qr9N0w3u.js";
3
3
  export {
4
4
  _ as ActionCard,
5
5
  a as ActionMessage,
@@ -14,48 +14,49 @@ export {
14
14
  j as ConfirmationModal,
15
15
  k as CustomSelect,
16
16
  D as DateInput,
17
- l as DialogModal,
18
- m as Divider,
19
- n as Dropdown,
20
- o as DropdownLink,
21
- p as EnosVueDefault,
22
- q as FormSection,
23
- r as ImageInput,
24
- s as InputError,
25
- t as InputGroup,
26
- u as InputLabel,
27
- v as LinkButton,
28
- w as Modal,
29
- x as NotationInput,
30
- y as RadioInput,
31
- z as RadioMultipleInput,
32
- A as SectionBorder,
17
+ l as DateRangeInput,
18
+ m as DialogModal,
19
+ n as Divider,
20
+ o as Dropdown,
21
+ p as DropdownLink,
22
+ q as EnosVueDefault,
23
+ r as FormSection,
24
+ s as ImageInput,
25
+ t as InputError,
26
+ u as InputGroup,
27
+ v as InputLabel,
28
+ w as LinkButton,
29
+ x as Modal,
30
+ y as NotationInput,
31
+ z as RadioInput,
32
+ A as RadioMultipleInput,
33
+ B as SectionBorder,
33
34
  S as SectionTitle,
34
- B as SelectInput,
35
- C as Sidebar,
36
- E as SidebarContent,
37
- F as SidebarFooter,
38
- G as SidebarGroup,
39
- H as SidebarGroupContent,
40
- I as SidebarGroupLabel,
41
- J as SidebarHeader,
42
- K as SidebarInset,
43
- L as SidebarMenu,
44
- M as SidebarMenuButton,
45
- N as SidebarMenuItem,
46
- O as SidebarProvider,
47
- P as SidebarTrigger,
48
- Q as SortControls,
49
- R as TableList,
50
- T as TableListForm,
51
- U as TableSearch,
52
- V as TextArea,
53
- W as TextInput,
54
- X as ThSortable,
55
- Y as TinyEditor,
56
- Z as Toast,
57
- $ as ToastContainer,
58
- a0 as ToggleInput,
59
- a1 as useSidebar
35
+ C as SelectInput,
36
+ E as Sidebar,
37
+ F as SidebarContent,
38
+ G as SidebarFooter,
39
+ H as SidebarGroup,
40
+ I as SidebarGroupContent,
41
+ J as SidebarGroupLabel,
42
+ K as SidebarHeader,
43
+ L as SidebarInset,
44
+ M as SidebarMenu,
45
+ N as SidebarMenuButton,
46
+ O as SidebarMenuItem,
47
+ P as SidebarProvider,
48
+ Q as SidebarTrigger,
49
+ R as SortControls,
50
+ T as TableList,
51
+ U as TableListForm,
52
+ V as TableSearch,
53
+ W as TextArea,
54
+ X as TextInput,
55
+ Y as ThSortable,
56
+ Z as TinyEditor,
57
+ $ as Toast,
58
+ a0 as ToastContainer,
59
+ a1 as ToggleInput,
60
+ a2 as useSidebar
60
61
  };
61
62
  //# sourceMappingURL=index.js.map
@@ -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, S, B, C, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, T, U, V, W, X, Y, Z, $, a0, a1 } from "./plugin-CrvKxhz1.js";
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, C, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, T, U, V, W, X, Y, Z, $, a0, a1, a2 } from "./plugin-qr9N0w3u.js";
2
2
  export {
3
3
  _ as ActionCard,
4
4
  a as ActionMessage,
@@ -13,48 +13,49 @@ export {
13
13
  j as ConfirmationModal,
14
14
  k as CustomSelect,
15
15
  D as DateInput,
16
- l as DialogModal,
17
- m as Divider,
18
- n as Dropdown,
19
- o as DropdownLink,
20
- p as EnosVueDefault,
21
- q as FormSection,
22
- r as ImageInput,
23
- s as InputError,
24
- t as InputGroup,
25
- u as InputLabel,
26
- v as LinkButton,
27
- w as Modal,
28
- x as NotationInput,
29
- y as RadioInput,
30
- z as RadioMultipleInput,
31
- A as SectionBorder,
16
+ l as DateRangeInput,
17
+ m as DialogModal,
18
+ n as Divider,
19
+ o as Dropdown,
20
+ p as DropdownLink,
21
+ q as EnosVueDefault,
22
+ r as FormSection,
23
+ s as ImageInput,
24
+ t as InputError,
25
+ u as InputGroup,
26
+ v as InputLabel,
27
+ w as LinkButton,
28
+ x as Modal,
29
+ y as NotationInput,
30
+ z as RadioInput,
31
+ A as RadioMultipleInput,
32
+ B as SectionBorder,
32
33
  S as SectionTitle,
33
- B as SelectInput,
34
- C as Sidebar,
35
- E as SidebarContent,
36
- F as SidebarFooter,
37
- G as SidebarGroup,
38
- H as SidebarGroupContent,
39
- I as SidebarGroupLabel,
40
- J as SidebarHeader,
41
- K as SidebarInset,
42
- L as SidebarMenu,
43
- M as SidebarMenuButton,
44
- N as SidebarMenuItem,
45
- O as SidebarProvider,
46
- P as SidebarTrigger,
47
- Q as SortControls,
48
- R as TableList,
49
- T as TableListForm,
50
- U as TableSearch,
51
- V as TextArea,
52
- W as TextInput,
53
- X as ThSortable,
54
- Y as TinyEditor,
55
- Z as Toast,
56
- $ as ToastContainer,
57
- a0 as ToggleInput,
58
- a1 as useSidebar
34
+ C as SelectInput,
35
+ E as Sidebar,
36
+ F as SidebarContent,
37
+ G as SidebarFooter,
38
+ H as SidebarGroup,
39
+ I as SidebarGroupContent,
40
+ J as SidebarGroupLabel,
41
+ K as SidebarHeader,
42
+ L as SidebarInset,
43
+ M as SidebarMenu,
44
+ N as SidebarMenuButton,
45
+ O as SidebarMenuItem,
46
+ P as SidebarProvider,
47
+ Q as SidebarTrigger,
48
+ R as SortControls,
49
+ T as TableList,
50
+ U as TableListForm,
51
+ V as TableSearch,
52
+ W as TextArea,
53
+ X as TextInput,
54
+ Y as ThSortable,
55
+ Z as TinyEditor,
56
+ $ as Toast,
57
+ a0 as ToastContainer,
58
+ a1 as ToggleInput,
59
+ a2 as useSidebar
59
60
  };
60
61
  //# sourceMappingURL=index.node.js.map