@stlhorizon/vue-ui 1.2.0 → 1.2.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 -0
- package/dist/index.esm.js +895 -856
- package/dist/index.js +33 -13
- package/dist/src/App.vue.d.ts.map +1 -1
- package/dist/src/components/Accordion.vue.d.ts +2 -2
- package/dist/src/components/AccordionItem.vue.d.ts +2 -2
- package/dist/src/components/Avatar.vue.d.ts +2 -2
- package/dist/src/components/Badge.vue.d.ts +2 -2
- package/dist/src/components/Button.vue.d.ts +4 -4
- package/dist/src/components/ButtonGroup.vue.d.ts +2 -2
- package/dist/src/components/Card.vue.d.ts +2 -2
- package/dist/src/components/Checkbox.vue.d.ts +10 -10
- package/dist/src/components/DataTable.vue.d.ts +2 -2
- package/dist/src/components/DataTableCell.vue.d.ts +2 -2
- package/dist/src/components/DatePicker.vue.d.ts +4 -4
- package/dist/src/components/Divider.vue.d.ts +2 -2
- package/dist/src/components/DropdownItem.vue.d.ts +2 -2
- package/dist/src/components/FormField.vue.d.ts +8 -8
- package/dist/src/components/Icon.vue.d.ts +2 -2
- package/dist/src/components/Input.vue.d.ts +7 -7
- package/dist/src/components/Label.vue.d.ts +2 -2
- package/dist/src/components/Link.vue.d.ts +12 -12
- package/dist/src/components/ListItem.vue.d.ts +4 -4
- package/dist/src/components/Logo.vue.d.ts +2 -2
- package/dist/src/components/MenuItem.vue.d.ts +2 -2
- package/dist/src/components/ProgressBar.vue.d.ts +4 -4
- package/dist/src/components/Radio.vue.d.ts +4 -4
- package/dist/src/components/Search.vue.d.ts +5 -5
- package/dist/src/components/Select.vue.d.ts +2 -2
- package/dist/src/components/Spinner.vue.d.ts +4 -4
- package/dist/src/components/Switch.vue.d.ts +2 -2
- package/dist/src/components/Text.vue.d.ts +4 -4
- package/dist/src/components/Textarea.vue.d.ts +6 -6
- package/dist/src/components/TimelineItem.vue.d.ts +2 -2
- package/dist/src/components/Toast.vue.d.ts.map +1 -1
- package/dist/src/components/Typography.vue.d.ts +6 -6
- package/dist/src/components/icons.d.ts +12 -0
- package/dist/src/components/icons.d.ts.map +1 -1
- package/dist/src/index.d.ts +2 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/layouts/ErrorLayout.vue.d.ts +12 -12
- package/dist/src/lib/toast.d.ts +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/vue-ui.css +1 -1
- package/package.json +1 -1
|
@@ -2,16 +2,16 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
2
2
|
$emit: typeof emit;
|
|
3
3
|
$props: Partial<typeof props>;
|
|
4
4
|
size: string;
|
|
5
|
-
modelValue: boolean;
|
|
6
5
|
disabled: boolean;
|
|
6
|
+
modelValue: boolean;
|
|
7
7
|
class?: string;
|
|
8
8
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
9
9
|
export default _default;
|
|
10
10
|
declare const emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
11
11
|
declare const props: {
|
|
12
12
|
readonly size: string;
|
|
13
|
-
readonly modelValue: boolean;
|
|
14
13
|
readonly disabled: boolean;
|
|
14
|
+
readonly modelValue: boolean;
|
|
15
15
|
readonly class?: string;
|
|
16
16
|
};
|
|
17
17
|
//# sourceMappingURL=Switch.vue.d.ts.map
|
|
@@ -5,22 +5,22 @@ type __VLS_WithSlots<T, S> = T & (new () => {
|
|
|
5
5
|
});
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
7
|
$props: Partial<typeof props>;
|
|
8
|
-
variant: string;
|
|
9
|
-
align: string;
|
|
10
8
|
size: string;
|
|
9
|
+
variant: string;
|
|
11
10
|
as: string;
|
|
12
11
|
weight: string;
|
|
12
|
+
align: string;
|
|
13
13
|
class?: string;
|
|
14
14
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
15
15
|
type __VLS_Slots = {
|
|
16
16
|
default?: (props: {}) => any;
|
|
17
17
|
};
|
|
18
18
|
declare const props: {
|
|
19
|
-
readonly variant: string;
|
|
20
|
-
readonly align: string;
|
|
21
19
|
readonly size: string;
|
|
20
|
+
readonly variant: string;
|
|
22
21
|
readonly as: string;
|
|
23
22
|
readonly weight: string;
|
|
23
|
+
readonly align: string;
|
|
24
24
|
readonly class?: string;
|
|
25
25
|
};
|
|
26
26
|
//# sourceMappingURL=Text.vue.d.ts.map
|
|
@@ -4,12 +4,12 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
4
4
|
select: () => any;
|
|
5
5
|
$emit: typeof emit;
|
|
6
6
|
$props: Partial<typeof props>;
|
|
7
|
-
required: boolean;
|
|
8
|
-
variant: string;
|
|
9
7
|
size: string;
|
|
8
|
+
variant: string;
|
|
9
|
+
required: boolean;
|
|
10
|
+
disabled: boolean;
|
|
10
11
|
placeholder: string;
|
|
11
12
|
modelValue: string;
|
|
12
|
-
disabled: boolean;
|
|
13
13
|
readonly: boolean;
|
|
14
14
|
rows: number;
|
|
15
15
|
resize: string;
|
|
@@ -21,12 +21,12 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
21
21
|
export default _default;
|
|
22
22
|
declare const emit: (event: "update:modelValue" | "blur" | "focus" | "keydown", ...args: any[]) => void;
|
|
23
23
|
declare const props: {
|
|
24
|
-
readonly required: boolean;
|
|
25
|
-
readonly variant: string;
|
|
26
24
|
readonly size: string;
|
|
25
|
+
readonly variant: string;
|
|
26
|
+
readonly required: boolean;
|
|
27
|
+
readonly disabled: boolean;
|
|
27
28
|
readonly placeholder: string;
|
|
28
29
|
readonly modelValue: string;
|
|
29
|
-
readonly disabled: boolean;
|
|
30
30
|
readonly readonly: boolean;
|
|
31
31
|
readonly rows: number;
|
|
32
32
|
readonly resize: string;
|
|
@@ -6,8 +6,8 @@ type __VLS_WithSlots<T, S> = T & (new () => {
|
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
7
|
$props: Partial<typeof props>;
|
|
8
8
|
title: string;
|
|
9
|
-
subtitle: string;
|
|
10
9
|
orientation: string;
|
|
10
|
+
subtitle: string;
|
|
11
11
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12
12
|
type __VLS_Slots = {
|
|
13
13
|
icon?: (props: {}) => any;
|
|
@@ -20,7 +20,7 @@ type __VLS_Slots = {
|
|
|
20
20
|
};
|
|
21
21
|
declare const props: {
|
|
22
22
|
readonly title: string;
|
|
23
|
-
readonly subtitle: string;
|
|
24
23
|
readonly orientation: string;
|
|
24
|
+
readonly subtitle: string;
|
|
25
25
|
};
|
|
26
26
|
//# sourceMappingURL=TimelineItem.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Toast.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Toast.vue"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"Toast.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Toast.vue"],"names":[],"mappings":";YAkgBmB,OAAO,CAAC,OAAO,KAAK,CAAC;;;;;;;;;AAxVxC;;;;;;;EA6BE"}
|
|
@@ -5,11 +5,11 @@ type __VLS_WithSlots<T, S> = T & (new () => {
|
|
|
5
5
|
});
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
7
|
$props: Partial<typeof props>;
|
|
8
|
-
color: string;
|
|
9
8
|
variant: string;
|
|
10
|
-
|
|
11
|
-
align: string;
|
|
9
|
+
color: string;
|
|
12
10
|
underline: boolean;
|
|
11
|
+
align: string;
|
|
12
|
+
italic: boolean;
|
|
13
13
|
truncate: boolean;
|
|
14
14
|
noWrap: boolean;
|
|
15
15
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -17,11 +17,11 @@ type __VLS_Slots = {
|
|
|
17
17
|
default?: (props: {}) => any;
|
|
18
18
|
};
|
|
19
19
|
declare const props: {
|
|
20
|
-
readonly color: string;
|
|
21
20
|
readonly variant: string;
|
|
22
|
-
readonly
|
|
23
|
-
readonly align: string;
|
|
21
|
+
readonly color: string;
|
|
24
22
|
readonly underline: boolean;
|
|
23
|
+
readonly align: string;
|
|
24
|
+
readonly italic: boolean;
|
|
25
25
|
readonly truncate: boolean;
|
|
26
26
|
readonly noWrap: boolean;
|
|
27
27
|
};
|
|
@@ -77,5 +77,17 @@ export const icons: {
|
|
|
77
77
|
x: {
|
|
78
78
|
template: string;
|
|
79
79
|
};
|
|
80
|
+
bell: {
|
|
81
|
+
template: string;
|
|
82
|
+
};
|
|
83
|
+
'alert-triangle': {
|
|
84
|
+
template: string;
|
|
85
|
+
};
|
|
86
|
+
'alert-circle': {
|
|
87
|
+
template: string;
|
|
88
|
+
};
|
|
89
|
+
loader: {
|
|
90
|
+
template: string;
|
|
91
|
+
};
|
|
80
92
|
};
|
|
81
93
|
//# sourceMappingURL=icons.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../../../src/components/icons.js"],"names":[],"mappings":"AACA
|
|
1
|
+
{"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../../../src/components/icons.js"],"names":[],"mappings":"AACA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4HE"}
|
package/dist/src/index.d.ts
CHANGED
|
@@ -72,5 +72,6 @@ import AuthLayout from "./layouts/AuthLayout.vue";
|
|
|
72
72
|
import DefaultLayout from "./layouts/DefaultLayout.vue";
|
|
73
73
|
import ErrorLayout from "./layouts/ErrorLayout.vue";
|
|
74
74
|
import { toast } from './lib/toast';
|
|
75
|
-
|
|
75
|
+
import { useToaster } from './lib/toast';
|
|
76
|
+
export { Avatar, Badge, Button, Checkbox, Divider, Icon, Image, Input, Label, Link, Logo, Option, ProgressBar, Radio, Select, Spinner, Switch, Text, Textarea, Tooltip, Typography, Alert, Breadcrumb, ButtonGroup, Card, CardHeader, CardBody, CardFooter, CardContent, CardTitle, DatePicker, Dropdown, DropdownItem, FileUpload, FormField, InputGroup, ListItem, MenuItem, Modal, ModalHeader, ModalBody, ModalFooter, Notification, Toast, Search, Slider, Stepper, StepperItem, Tab, TabPanel, Accordion, AccordionItem, Calendar, DataTable, DataTableHeader, DataTableRow, DataTableCell, DataTablePagination, DataTableFilters, DataTableToolBar, Footer, Header, Sidebar, Timeline, TimelineItem, AuthLayout, DefaultLayout, ErrorLayout, toast, useToaster };
|
|
76
77
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/src/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.js"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.js"],"names":[],"mappings":";;;IAoKE,+CAUC;;mBAzKgB,yBAAyB;kBAC1B,wBAAwB;mBACvB,yBAAyB;qBACvB,2BAA2B;oBAC5B,0BAA0B;iBAC7B,uBAAuB;kBACtB,wBAAwB;kBACxB,wBAAwB;kBACxB,wBAAwB;iBACzB,uBAAuB;iBACvB,uBAAuB;mBACrB,yBAAyB;wBACpB,8BAA8B;kBACpC,wBAAwB;mBACvB,yBAAyB;oBACxB,0BAA0B;mBAC3B,yBAAyB;iBAC3B,uBAAuB;qBACnB,2BAA2B;oBAC5B,0BAA0B;uBACvB,6BAA6B;kBAElC,wBAAwB;uBACnB,6BAA6B;wBAC5B,8BAA8B;iBACrC,uBAAuB;uBACjB,6BAA6B;qBAC/B,2BAA2B;uBACzB,6BAA6B;wBAC5B,8BAA8B;sBAChC,4BAA4B;uBAC3B,6BAA6B;qBAC/B,2BAA2B;yBACvB,+BAA+B;uBACjC,6BAA6B;sBAC9B,4BAA4B;uBAC3B,6BAA6B;qBAE/B,2BAA2B;qBAC3B,2BAA2B;kBAE9B,wBAAwB;wBAClB,8BAA8B;sBAChC,4BAA4B;wBAC1B,8BAA8B;yBAC7B,+BAA+B;kBACtC,wBAAwB;mBAEvB,yBAAyB;mBAEzB,yBAAyB;oBACxB,0BAA0B;wBACtB,8BAA8B;gBACtC,sBAAsB;qBACjB,2BAA2B;sBAE1B,4BAA4B;0BACxB,gCAAgC;qBACrC,2BAA2B;sBAC1B,4BAA4B;4BACtB,kCAAkC;yBACrC,+BAA+B;0BAC9B,gCAAgC;gCAC1B,sCAAsC;6BACzC,mCAAmC;6BACnC,mCAAmC;mBAE7C,yBAAyB;mBACzB,yBAAyB;oBACxB,0BAA0B;qBACzB,2BAA2B;yBACvB,+BAA+B;uBAEjC,0BAA0B;0BACvB,6BAA6B;wBAC/B,2BAA2B;sBAGjB,aAAa;2BAAb,aAAa"}
|
|
@@ -191,16 +191,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
191
191
|
Button: {
|
|
192
192
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
193
193
|
$props: Partial<{
|
|
194
|
-
readonly variant: string;
|
|
195
194
|
readonly size: string;
|
|
196
|
-
readonly
|
|
195
|
+
readonly variant: string;
|
|
197
196
|
readonly loading: boolean;
|
|
197
|
+
readonly disabled: boolean;
|
|
198
198
|
readonly loadingText?: string;
|
|
199
199
|
}>;
|
|
200
|
-
variant: string;
|
|
201
200
|
size: string;
|
|
202
|
-
|
|
201
|
+
variant: string;
|
|
203
202
|
loading: boolean;
|
|
203
|
+
disabled: boolean;
|
|
204
204
|
loadingText?: string;
|
|
205
205
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
206
206
|
P: {};
|
|
@@ -211,16 +211,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
211
211
|
Defaults: {};
|
|
212
212
|
}, Readonly<{}> & Readonly<{}>, {
|
|
213
213
|
$props: Partial<{
|
|
214
|
-
readonly variant: string;
|
|
215
214
|
readonly size: string;
|
|
216
|
-
readonly
|
|
215
|
+
readonly variant: string;
|
|
217
216
|
readonly loading: boolean;
|
|
217
|
+
readonly disabled: boolean;
|
|
218
218
|
readonly loadingText?: string;
|
|
219
219
|
}>;
|
|
220
|
-
variant: string;
|
|
221
220
|
size: string;
|
|
222
|
-
|
|
221
|
+
variant: string;
|
|
223
222
|
loading: boolean;
|
|
223
|
+
disabled: boolean;
|
|
224
224
|
loadingText?: string;
|
|
225
225
|
}, {}, {}, {}, {}>;
|
|
226
226
|
__isFragment?: never;
|
|
@@ -228,16 +228,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
228
228
|
__isSuspense?: never;
|
|
229
229
|
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
230
230
|
$props: Partial<{
|
|
231
|
-
readonly variant: string;
|
|
232
231
|
readonly size: string;
|
|
233
|
-
readonly
|
|
232
|
+
readonly variant: string;
|
|
234
233
|
readonly loading: boolean;
|
|
234
|
+
readonly disabled: boolean;
|
|
235
235
|
readonly loadingText?: string;
|
|
236
236
|
}>;
|
|
237
|
-
variant: string;
|
|
238
237
|
size: string;
|
|
239
|
-
|
|
238
|
+
variant: string;
|
|
240
239
|
loading: boolean;
|
|
240
|
+
disabled: boolean;
|
|
241
241
|
loadingText?: string;
|
|
242
242
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
243
243
|
$slots: {
|
package/dist/src/lib/toast.d.ts
CHANGED