@v1nt1248/3nclient-lib 0.0.41 → 0.0.42
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 +2 -2
- package/dist/components/index.d.ts +20 -37
- package/dist/components/ui3n-badge-simple.vue.d.ts +1 -1
- package/dist/components/ui3n-badge.vue.d.ts +1 -1
- package/dist/components/ui3n-breadcrumb.vue.d.ts +1 -1
- package/dist/components/ui3n-breadcrumbs.vue.d.ts +1 -1
- package/dist/components/ui3n-button.vue.d.ts +1 -1
- package/dist/components/ui3n-checkbox.vue.d.ts +1 -1
- package/dist/components/ui3n-chip.vue.d.ts +1 -1
- package/dist/components/ui3n-dialog.vue.d.ts +3 -2
- package/dist/components/ui3n-drop-files.vue.d.ts +1 -1
- package/dist/components/ui3n-emoji.vue.d.ts +1 -1
- package/dist/components/ui3n-icon.vue.d.ts +1 -1
- package/dist/components/ui3n-input.vue.d.ts +1 -1
- package/dist/components/ui3n-list.vue.d.ts +4 -4
- package/dist/components/ui3n-menu.vue.d.ts +1 -1
- package/dist/components/ui3n-notification.vue.d.ts +3 -2
- package/dist/components/ui3n-table-sort-icon.vue.d.ts +1 -1
- package/dist/components/ui3n-table.vue.d.ts +3 -2
- package/dist/components/ui3n-tabs.vue.d.ts +1 -1
- package/dist/components/ui3n-text.vue.d.ts +1 -1
- package/dist/components/ui3n-virtual-scroll.vue.d.ts +4 -4
- package/dist/directives/index.d.ts +3 -2
- package/dist/directives/ui3n-click-outside.d.ts +2 -1
- package/dist/directives/ui3n-html.d.ts +1 -0
- package/dist/index.d.ts +24 -24
- package/dist/plugins/dialogs.d.ts +3 -3
- package/dist/plugins/i18n.d.ts +2 -2
- package/dist/plugins/icons.d.ts +1 -0
- package/dist/plugins/index.d.ts +9 -12
- package/dist/plugins/notifications.d.ts +2 -2
- package/dist/plugins/store-dialogs.d.ts +2 -1
- package/dist/plugins/store-notifications.d.ts +2 -1
- package/dist/plugins/store-vue-bus.d.ts +2 -1
- package/dist/plugins/vue-bus.d.ts +3 -3
- package/dist/tools/sqlite-on-3nstorage/index.d.ts +2 -1
- package/dist/tools/ui.helpers.d.ts +1 -0
- package/dist/ui-3n-lib.js +1149 -1136
- package/package.json +3 -2
- package/dist/stories/Ui3nBadge.stories.d.ts +0 -124
- package/dist/stories/Ui3nBreadcrumbs.stories.d.ts +0 -252
- package/dist/stories/Ui3nButton.stories.d.ts +0 -152
- package/dist/stories/Ui3nCheckbox.stories.d.ts +0 -186
- package/dist/stories/Ui3nChip.stories.d.ts +0 -562
- package/dist/stories/Ui3nDialog.stories.d.ts +0 -41
- package/dist/stories/Ui3nDropFiles.stories.d.ts +0 -73
- package/dist/stories/Ui3nEmoji.stories.d.ts +0 -39
- package/dist/stories/Ui3nIcon.stories.d.ts +0 -80
- package/dist/stories/Ui3nInput.stories.d.ts +0 -456
- package/dist/stories/Ui3nList.stories.d.ts +0 -54
- package/dist/stories/Ui3nTabs.stories.d.ts +0 -177
- package/dist/stories/data/data-to-list.d.ts +0 -8
- package/dist/stories/data/icons.d.ts +0 -1
|
@@ -1,177 +0,0 @@
|
|
|
1
|
-
import type { Meta, StoryFn } from '@storybook/vue3';
|
|
2
|
-
import Ui3nTabs from '../components/ui3n-tabs.vue';
|
|
3
|
-
declare const meta: Meta<typeof Ui3nTabs>;
|
|
4
|
-
export default meta;
|
|
5
|
-
export declare const Default: StoryFn<{
|
|
6
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
-
modelValue: {
|
|
8
|
-
type: import("vue").PropType<number>;
|
|
9
|
-
required: true;
|
|
10
|
-
default: number;
|
|
11
|
-
};
|
|
12
|
-
itemDirection: {
|
|
13
|
-
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
14
|
-
default: string;
|
|
15
|
-
};
|
|
16
|
-
activeColor: {
|
|
17
|
-
type: import("vue").PropType<string>;
|
|
18
|
-
default: string;
|
|
19
|
-
};
|
|
20
|
-
inactiveColor: {
|
|
21
|
-
type: import("vue").PropType<string>;
|
|
22
|
-
default: string;
|
|
23
|
-
};
|
|
24
|
-
indicatorColor: {
|
|
25
|
-
type: import("vue").PropType<string>;
|
|
26
|
-
default: string;
|
|
27
|
-
};
|
|
28
|
-
indicatorSize: {
|
|
29
|
-
type: import("vue").PropType<string | number>;
|
|
30
|
-
default: number;
|
|
31
|
-
};
|
|
32
|
-
indicatorPosition: {
|
|
33
|
-
type: import("vue").PropType<"reverse" | "normal">;
|
|
34
|
-
default: string;
|
|
35
|
-
};
|
|
36
|
-
}>> & {
|
|
37
|
-
"onUpdate:modelValue"?: ((val: number) => any) | undefined;
|
|
38
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
39
|
-
"update:modelValue": (val: number) => void;
|
|
40
|
-
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
41
|
-
modelValue: {
|
|
42
|
-
type: import("vue").PropType<number>;
|
|
43
|
-
required: true;
|
|
44
|
-
default: number;
|
|
45
|
-
};
|
|
46
|
-
itemDirection: {
|
|
47
|
-
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
48
|
-
default: string;
|
|
49
|
-
};
|
|
50
|
-
activeColor: {
|
|
51
|
-
type: import("vue").PropType<string>;
|
|
52
|
-
default: string;
|
|
53
|
-
};
|
|
54
|
-
inactiveColor: {
|
|
55
|
-
type: import("vue").PropType<string>;
|
|
56
|
-
default: string;
|
|
57
|
-
};
|
|
58
|
-
indicatorColor: {
|
|
59
|
-
type: import("vue").PropType<string>;
|
|
60
|
-
default: string;
|
|
61
|
-
};
|
|
62
|
-
indicatorSize: {
|
|
63
|
-
type: import("vue").PropType<string | number>;
|
|
64
|
-
default: number;
|
|
65
|
-
};
|
|
66
|
-
indicatorPosition: {
|
|
67
|
-
type: import("vue").PropType<"reverse" | "normal">;
|
|
68
|
-
default: string;
|
|
69
|
-
};
|
|
70
|
-
}>> & {
|
|
71
|
-
"onUpdate:modelValue"?: ((val: number) => any) | undefined;
|
|
72
|
-
}, {
|
|
73
|
-
modelValue: number;
|
|
74
|
-
itemDirection: "horizontal" | "vertical";
|
|
75
|
-
activeColor: string;
|
|
76
|
-
inactiveColor: string;
|
|
77
|
-
indicatorColor: string;
|
|
78
|
-
indicatorSize: string | number;
|
|
79
|
-
indicatorPosition: "reverse" | "normal";
|
|
80
|
-
}, true, {}, {}, {
|
|
81
|
-
P: {};
|
|
82
|
-
B: {};
|
|
83
|
-
D: {};
|
|
84
|
-
C: {};
|
|
85
|
-
M: {};
|
|
86
|
-
Defaults: {};
|
|
87
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
|
88
|
-
modelValue: {
|
|
89
|
-
type: import("vue").PropType<number>;
|
|
90
|
-
required: true;
|
|
91
|
-
default: number;
|
|
92
|
-
};
|
|
93
|
-
itemDirection: {
|
|
94
|
-
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
95
|
-
default: string;
|
|
96
|
-
};
|
|
97
|
-
activeColor: {
|
|
98
|
-
type: import("vue").PropType<string>;
|
|
99
|
-
default: string;
|
|
100
|
-
};
|
|
101
|
-
inactiveColor: {
|
|
102
|
-
type: import("vue").PropType<string>;
|
|
103
|
-
default: string;
|
|
104
|
-
};
|
|
105
|
-
indicatorColor: {
|
|
106
|
-
type: import("vue").PropType<string>;
|
|
107
|
-
default: string;
|
|
108
|
-
};
|
|
109
|
-
indicatorSize: {
|
|
110
|
-
type: import("vue").PropType<string | number>;
|
|
111
|
-
default: number;
|
|
112
|
-
};
|
|
113
|
-
indicatorPosition: {
|
|
114
|
-
type: import("vue").PropType<"reverse" | "normal">;
|
|
115
|
-
default: string;
|
|
116
|
-
};
|
|
117
|
-
}>> & {
|
|
118
|
-
"onUpdate:modelValue"?: ((val: number) => any) | undefined;
|
|
119
|
-
}, {}, {}, {}, {}, {
|
|
120
|
-
modelValue: number;
|
|
121
|
-
itemDirection: "horizontal" | "vertical";
|
|
122
|
-
activeColor: string;
|
|
123
|
-
inactiveColor: string;
|
|
124
|
-
indicatorColor: string;
|
|
125
|
-
indicatorSize: string | number;
|
|
126
|
-
indicatorPosition: "reverse" | "normal";
|
|
127
|
-
}>;
|
|
128
|
-
__isFragment?: undefined;
|
|
129
|
-
__isTeleport?: undefined;
|
|
130
|
-
__isSuspense?: undefined;
|
|
131
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
132
|
-
modelValue: {
|
|
133
|
-
type: import("vue").PropType<number>;
|
|
134
|
-
required: true;
|
|
135
|
-
default: number;
|
|
136
|
-
};
|
|
137
|
-
itemDirection: {
|
|
138
|
-
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
139
|
-
default: string;
|
|
140
|
-
};
|
|
141
|
-
activeColor: {
|
|
142
|
-
type: import("vue").PropType<string>;
|
|
143
|
-
default: string;
|
|
144
|
-
};
|
|
145
|
-
inactiveColor: {
|
|
146
|
-
type: import("vue").PropType<string>;
|
|
147
|
-
default: string;
|
|
148
|
-
};
|
|
149
|
-
indicatorColor: {
|
|
150
|
-
type: import("vue").PropType<string>;
|
|
151
|
-
default: string;
|
|
152
|
-
};
|
|
153
|
-
indicatorSize: {
|
|
154
|
-
type: import("vue").PropType<string | number>;
|
|
155
|
-
default: number;
|
|
156
|
-
};
|
|
157
|
-
indicatorPosition: {
|
|
158
|
-
type: import("vue").PropType<"reverse" | "normal">;
|
|
159
|
-
default: string;
|
|
160
|
-
};
|
|
161
|
-
}>> & {
|
|
162
|
-
"onUpdate:modelValue"?: ((val: number) => any) | undefined;
|
|
163
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
164
|
-
"update:modelValue": (val: number) => void;
|
|
165
|
-
}, string, {
|
|
166
|
-
modelValue: number;
|
|
167
|
-
itemDirection: "horizontal" | "vertical";
|
|
168
|
-
activeColor: string;
|
|
169
|
-
inactiveColor: string;
|
|
170
|
-
indicatorColor: string;
|
|
171
|
-
indicatorSize: string | number;
|
|
172
|
-
indicatorPosition: "reverse" | "normal";
|
|
173
|
-
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
174
|
-
$slots: {
|
|
175
|
-
default?(_: {}): any;
|
|
176
|
-
};
|
|
177
|
-
})>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const icons: string[];
|