@v1nt1248/3nclient-lib 0.0.6 → 0.0.8
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/dist/components/index.d.ts +5 -0
- package/dist/components/ui3n-icon.vue.d.ts +16 -0
- package/dist/constants/index.d.ts +3 -0
- package/dist/constants/types.d.ts +31 -0
- package/dist/directives/index.d.ts +1 -0
- package/dist/index.d.ts +5 -18
- package/dist/plugins/index.d.ts +10 -0
- package/dist/plugins/notifications.d.ts +4 -0
- package/dist/plugins/store-vue-bus.d.ts +2 -9
- package/dist/plugins/vue-bus.d.ts +8 -4
- package/dist/style.css +1 -1
- package/dist/tools/index.d.ts +3 -0
- package/dist/types.d.ts +20 -60
- package/dist/ui-3n-lib.js +10676 -11045
- package/package.json +11 -10
- package/src/components/index.ts +13 -0
- package/src/components/ui3n-button.vue +156 -0
- package/src/components/ui3n-drop-files.vue +171 -0
- package/src/components/ui3n-emoji.vue +64 -0
- package/src/components/ui3n-icon.vue +51 -0
- package/src/components/ui3n-input.vue +282 -0
- package/src/components/ui3n-notification.vue +144 -0
- package/src/components/ui3n-table-sort-icon.vue +23 -0
- package/src/components/ui3n-table.vue +318 -0
- package/src/components/ui3n-text.vue +181 -0
- package/dist/components/ui3n-drop-files.vue.d.ts +0 -33
- package/dist/components/ui3n-emoji.vue.d.ts +0 -28
- package/dist/components/ui3n-input.vue.d.ts +0 -96
- package/dist/components/ui3n-table-sort-icon.vue.d.ts +0 -24
- package/dist/components/ui3n-table.vue.d.ts +0 -30
- package/dist/components/ui3n-text.vue.d.ts +0 -62
- package/dist/ui-3n-lib.umd.cjs +0 -72
- /package/dist/{helpers → tools}/common.helpers.d.ts +0 -0
- /package/dist/{helpers → tools}/textarea-max-rows.d.ts +0 -0
- /package/dist/{helpers → tools}/ui.helpers.d.ts +0 -0
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
items: {
|
|
3
|
-
type: import("vue").PropType<ListingEntryTypeExtended[]>;
|
|
4
|
-
required: true;
|
|
5
|
-
};
|
|
6
|
-
textIfEmpty: {
|
|
7
|
-
type: import("vue").PropType<string>;
|
|
8
|
-
};
|
|
9
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
-
go: (name: string) => void;
|
|
11
|
-
action: (value: {
|
|
12
|
-
action: EntityAction;
|
|
13
|
-
entity: ListingEntryTypeExtended;
|
|
14
|
-
}) => void;
|
|
15
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
16
|
-
items: {
|
|
17
|
-
type: import("vue").PropType<ListingEntryTypeExtended[]>;
|
|
18
|
-
required: true;
|
|
19
|
-
};
|
|
20
|
-
textIfEmpty: {
|
|
21
|
-
type: import("vue").PropType<string>;
|
|
22
|
-
};
|
|
23
|
-
}>> & {
|
|
24
|
-
onGo?: ((name: string) => any) | undefined;
|
|
25
|
-
onAction?: ((value: {
|
|
26
|
-
action: EntityAction;
|
|
27
|
-
entity: ListingEntryTypeExtended;
|
|
28
|
-
}) => any) | undefined;
|
|
29
|
-
}, {}, {}>;
|
|
30
|
-
export default _default;
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
text: {
|
|
3
|
-
type: import("vue").PropType<string>;
|
|
4
|
-
required: true;
|
|
5
|
-
};
|
|
6
|
-
rows: {
|
|
7
|
-
type: import("vue").PropType<number>;
|
|
8
|
-
};
|
|
9
|
-
maxRows: {
|
|
10
|
-
type: import("vue").PropType<number>;
|
|
11
|
-
};
|
|
12
|
-
label: {
|
|
13
|
-
type: import("vue").PropType<string>;
|
|
14
|
-
};
|
|
15
|
-
placeholder: {
|
|
16
|
-
type: import("vue").PropType<string>;
|
|
17
|
-
};
|
|
18
|
-
rules: {
|
|
19
|
-
type: import("vue").PropType<((v: string) => any)[]>;
|
|
20
|
-
};
|
|
21
|
-
disabled: {
|
|
22
|
-
type: import("vue").PropType<boolean>;
|
|
23
|
-
};
|
|
24
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25
|
-
init: (value: HTMLTextAreaElement) => void;
|
|
26
|
-
input: (value: string) => void;
|
|
27
|
-
focus: (value: Event) => void;
|
|
28
|
-
blur: (value: Event) => void;
|
|
29
|
-
"update:text": (value: string) => void;
|
|
30
|
-
"update:valid": (value: boolean) => void;
|
|
31
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
32
|
-
text: {
|
|
33
|
-
type: import("vue").PropType<string>;
|
|
34
|
-
required: true;
|
|
35
|
-
};
|
|
36
|
-
rows: {
|
|
37
|
-
type: import("vue").PropType<number>;
|
|
38
|
-
};
|
|
39
|
-
maxRows: {
|
|
40
|
-
type: import("vue").PropType<number>;
|
|
41
|
-
};
|
|
42
|
-
label: {
|
|
43
|
-
type: import("vue").PropType<string>;
|
|
44
|
-
};
|
|
45
|
-
placeholder: {
|
|
46
|
-
type: import("vue").PropType<string>;
|
|
47
|
-
};
|
|
48
|
-
rules: {
|
|
49
|
-
type: import("vue").PropType<((v: string) => any)[]>;
|
|
50
|
-
};
|
|
51
|
-
disabled: {
|
|
52
|
-
type: import("vue").PropType<boolean>;
|
|
53
|
-
};
|
|
54
|
-
}>> & {
|
|
55
|
-
onFocus?: ((value: Event) => any) | undefined;
|
|
56
|
-
onBlur?: ((value: Event) => any) | undefined;
|
|
57
|
-
onInput?: ((value: string) => any) | undefined;
|
|
58
|
-
"onUpdate:valid"?: ((value: boolean) => any) | undefined;
|
|
59
|
-
onInit?: ((value: HTMLTextAreaElement) => any) | undefined;
|
|
60
|
-
"onUpdate:text"?: ((value: string) => any) | undefined;
|
|
61
|
-
}, {}, {}>;
|
|
62
|
-
export default _default;
|