@dronico/droni-kit 1.17.0 → 1.18.0
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/CHANGELOG.md +7 -0
- package/dist/droni-kit.cjs.js +9 -9
- package/dist/droni-kit.css +1 -1
- package/dist/droni-kit.es.js +1773 -620
- package/dist/index.d.ts +12 -1
- package/package.json +1 -1
- package/dist/stories/Elements/DuiEmptyState.stories.d.ts +0 -99
- package/dist/stories/Elements/DuiEmptyState.vue.d.ts +0 -34
package/dist/index.d.ts
CHANGED
|
@@ -4,11 +4,22 @@ import { default as DuiTextarea } from './stories/Forms/DuiTextarea.vue';
|
|
|
4
4
|
import { default as DuiSelect } from './stories/Forms/DuiSelect.vue';
|
|
5
5
|
import { default as DuiLabel } from './stories/Forms/DuiLabel.vue';
|
|
6
6
|
import { default as DuiCheckbox } from './stories/Forms/DuiCheckbox.vue';
|
|
7
|
+
import { default as DuiRadio } from './stories/Forms/DuiRadio.vue';
|
|
8
|
+
import { default as DuiSwitch } from './stories/Forms/DuiSwitch.vue';
|
|
7
9
|
import { default as DuiAlert } from './stories/Elements/DuiAlert.vue';
|
|
8
10
|
import { default as DuiTable } from './stories/Elements/DuiTable.vue';
|
|
9
11
|
import { default as DuiAction } from './stories/Elements/DuiAction.vue';
|
|
10
12
|
import { default as DuiCard } from './stories/Elements/DuiCard.vue';
|
|
11
13
|
import { default as DuiModal } from './stories/Elements/DuiModal.vue';
|
|
12
14
|
import { default as DuiTooltip } from './stories/Elements/DuiTooltip.vue';
|
|
15
|
+
import { default as DuiAccordion } from './stories/Elements/DuiAccordion.vue';
|
|
16
|
+
import { default as DuiBadge } from './stories/Elements/DuiBadge.vue';
|
|
17
|
+
import { default as DuiDropdown } from './stories/Elements/DuiDropdown.vue';
|
|
18
|
+
import { default as DuiDropdownItem } from './stories/Elements/DuiDropdownItem.vue';
|
|
19
|
+
import { default as DuiDropdownSeparator } from './stories/Elements/DuiDropdownSeparator.vue';
|
|
20
|
+
import { default as DuiPagination } from './stories/Elements/DuiPagination.vue';
|
|
21
|
+
import { default as DuiSkeleton } from './stories/Elements/DuiSkeleton.vue';
|
|
22
|
+
import { default as DuiTabs } from './stories/Elements/DuiTabs.vue';
|
|
23
|
+
import { default as DuiToast } from './stories/Elements/DuiToast.vue';
|
|
13
24
|
import { default as DuiNavbar } from './stories/Widgets/DuiNavbar.vue';
|
|
14
|
-
export { DuiButton, DuiInput, DuiTextarea, DuiAction, DuiCard, DuiSelect, DuiLabel, DuiCheckbox, DuiAlert, DuiTable, DuiModal, DuiTooltip, DuiNavbar };
|
|
25
|
+
export { DuiButton, DuiInput, DuiTextarea, DuiAction, DuiCard, DuiSelect, DuiLabel, DuiCheckbox, DuiRadio, DuiSwitch, DuiAlert, DuiTable, DuiModal, DuiTooltip, DuiAccordion, DuiBadge, DuiDropdown, DuiDropdownItem, DuiDropdownSeparator, DuiPagination, DuiSkeleton, DuiTabs, DuiToast, DuiNavbar };
|
package/package.json
CHANGED
|
@@ -1,99 +0,0 @@
|
|
|
1
|
-
import { StoryObj } from '@storybook/vue3-vite';
|
|
2
|
-
declare const meta: {
|
|
3
|
-
title: string;
|
|
4
|
-
component: {
|
|
5
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./DuiEmptyState.vue').DuiEmptyStateProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
6
|
-
variant: "default" | "bordered" | "dashed";
|
|
7
|
-
size: "sm" | "md" | "lg";
|
|
8
|
-
title: string;
|
|
9
|
-
description: string;
|
|
10
|
-
align: "center" | "left";
|
|
11
|
-
illustration: string;
|
|
12
|
-
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
13
|
-
P: {};
|
|
14
|
-
B: {};
|
|
15
|
-
D: {};
|
|
16
|
-
C: {};
|
|
17
|
-
M: {};
|
|
18
|
-
Defaults: {};
|
|
19
|
-
}, Readonly<import('./DuiEmptyState.vue').DuiEmptyStateProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
20
|
-
variant: "default" | "bordered" | "dashed";
|
|
21
|
-
size: "sm" | "md" | "lg";
|
|
22
|
-
title: string;
|
|
23
|
-
description: string;
|
|
24
|
-
align: "center" | "left";
|
|
25
|
-
illustration: string;
|
|
26
|
-
}>;
|
|
27
|
-
__isFragment?: never;
|
|
28
|
-
__isTeleport?: never;
|
|
29
|
-
__isSuspense?: never;
|
|
30
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('./DuiEmptyState.vue').DuiEmptyStateProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
31
|
-
variant: "default" | "bordered" | "dashed";
|
|
32
|
-
size: "sm" | "md" | "lg";
|
|
33
|
-
title: string;
|
|
34
|
-
description: string;
|
|
35
|
-
align: "center" | "left";
|
|
36
|
-
illustration: string;
|
|
37
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
38
|
-
$slots: {
|
|
39
|
-
illustration?(_: {}): any;
|
|
40
|
-
description?(_: {}): any;
|
|
41
|
-
actions?(_: {}): any;
|
|
42
|
-
};
|
|
43
|
-
});
|
|
44
|
-
tags: string[];
|
|
45
|
-
argTypes: {
|
|
46
|
-
title: {
|
|
47
|
-
control: {
|
|
48
|
-
type: "text";
|
|
49
|
-
};
|
|
50
|
-
description: string;
|
|
51
|
-
};
|
|
52
|
-
description: {
|
|
53
|
-
control: {
|
|
54
|
-
type: "text";
|
|
55
|
-
};
|
|
56
|
-
description: string;
|
|
57
|
-
};
|
|
58
|
-
illustration: {
|
|
59
|
-
control: {
|
|
60
|
-
type: "text";
|
|
61
|
-
};
|
|
62
|
-
description: string;
|
|
63
|
-
};
|
|
64
|
-
variant: {
|
|
65
|
-
control: {
|
|
66
|
-
type: "select";
|
|
67
|
-
};
|
|
68
|
-
options: string[];
|
|
69
|
-
description: string;
|
|
70
|
-
};
|
|
71
|
-
size: {
|
|
72
|
-
control: {
|
|
73
|
-
type: "select";
|
|
74
|
-
};
|
|
75
|
-
options: string[];
|
|
76
|
-
description: string;
|
|
77
|
-
};
|
|
78
|
-
align: {
|
|
79
|
-
control: {
|
|
80
|
-
type: "select";
|
|
81
|
-
};
|
|
82
|
-
options: string[];
|
|
83
|
-
description: string;
|
|
84
|
-
};
|
|
85
|
-
};
|
|
86
|
-
parameters: {
|
|
87
|
-
docs: {
|
|
88
|
-
description: {
|
|
89
|
-
component: string;
|
|
90
|
-
};
|
|
91
|
-
};
|
|
92
|
-
};
|
|
93
|
-
};
|
|
94
|
-
export default meta;
|
|
95
|
-
type Story = StoryObj<typeof meta>;
|
|
96
|
-
export declare const Default: Story;
|
|
97
|
-
export declare const Variants: Story;
|
|
98
|
-
export declare const NoData: Story;
|
|
99
|
-
export declare const Error: Story;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
export interface DuiEmptyStateProps {
|
|
2
|
-
title?: string;
|
|
3
|
-
description?: string;
|
|
4
|
-
illustration?: string;
|
|
5
|
-
variant?: 'default' | 'bordered' | 'dashed';
|
|
6
|
-
size?: 'sm' | 'md' | 'lg';
|
|
7
|
-
align?: 'center' | 'left';
|
|
8
|
-
}
|
|
9
|
-
declare function __VLS_template(): {
|
|
10
|
-
attrs: Partial<{}>;
|
|
11
|
-
slots: {
|
|
12
|
-
illustration?(_: {}): any;
|
|
13
|
-
description?(_: {}): any;
|
|
14
|
-
actions?(_: {}): any;
|
|
15
|
-
};
|
|
16
|
-
refs: {};
|
|
17
|
-
rootEl: HTMLDivElement;
|
|
18
|
-
};
|
|
19
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
20
|
-
declare const __VLS_component: import('vue').DefineComponent<DuiEmptyStateProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<DuiEmptyStateProps> & Readonly<{}>, {
|
|
21
|
-
variant: "default" | "bordered" | "dashed";
|
|
22
|
-
size: "sm" | "md" | "lg";
|
|
23
|
-
title: string;
|
|
24
|
-
description: string;
|
|
25
|
-
align: "center" | "left";
|
|
26
|
-
illustration: string;
|
|
27
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
28
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
29
|
-
export default _default;
|
|
30
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
31
|
-
new (): {
|
|
32
|
-
$slots: S;
|
|
33
|
-
};
|
|
34
|
-
};
|