@evercam/ui 0.0.17 → 0.0.19
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/attributes.json +157 -0
- package/dist/index.mjs +324 -327
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/ECol.vue.d.ts +1 -0
- package/dist/src/index.d.ts +105 -0
- package/dist/style.css +1 -1
- package/dist/styles.css +1266 -18
- package/dist/tags.json +66 -0
- package/dist/web-types.json +434 -0
- package/package.json +10 -3
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import Vue from "vue";
|
|
2
2
|
declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => Vue<Record<string, any>, Record<string, any>, never, never, any>>, unknown, {
|
|
3
|
+
autoClasses(prefix: string, value: boolean | string | number): string;
|
|
3
4
|
isSizePropAuto(prop: boolean | string | number | undefined, acceptUndefined?: boolean): boolean;
|
|
4
5
|
isSizePropertyNumeric(prop: boolean | string | number | undefined): boolean;
|
|
5
6
|
}, {
|
package/dist/src/index.d.ts
CHANGED
|
@@ -5,6 +5,111 @@ import ESpinner from './components/ESpinner.vue';
|
|
|
5
5
|
import ERow from './components/ERow.vue';
|
|
6
6
|
import ECol from './components/ECol.vue';
|
|
7
7
|
import { VueConstructor } from "vue";
|
|
8
|
+
export declare const components: {
|
|
9
|
+
EAvatar: import("vue/types/vue").ExtendedVue<import("vue").default<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => import("vue").default<Record<string, any>, Record<string, any>, never, never, any>>, {
|
|
10
|
+
sizes: {
|
|
11
|
+
xs: string;
|
|
12
|
+
sm: string;
|
|
13
|
+
base: string;
|
|
14
|
+
lg: string;
|
|
15
|
+
xl: string;
|
|
16
|
+
"2xl": string;
|
|
17
|
+
};
|
|
18
|
+
}, unknown, {
|
|
19
|
+
avatarClasses: string[];
|
|
20
|
+
}, {
|
|
21
|
+
size: import('./types').Size;
|
|
22
|
+
showBadge: boolean;
|
|
23
|
+
badgeColor: import('./types').BaseColor;
|
|
24
|
+
badgeText: string;
|
|
25
|
+
badgeSize: import('./types').Size;
|
|
26
|
+
image: string;
|
|
27
|
+
}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin>;
|
|
28
|
+
EBadge: import("vue/types/vue").ExtendedVue<import("vue").default<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => import("vue").default<Record<string, any>, Record<string, any>, never, never, any>>, {
|
|
29
|
+
colors: {
|
|
30
|
+
error: string;
|
|
31
|
+
info: string;
|
|
32
|
+
warning: string;
|
|
33
|
+
primary: string;
|
|
34
|
+
default: string;
|
|
35
|
+
success: string;
|
|
36
|
+
};
|
|
37
|
+
sizes: {
|
|
38
|
+
dot: string;
|
|
39
|
+
xs: string;
|
|
40
|
+
sm: string;
|
|
41
|
+
base: string;
|
|
42
|
+
lg: string;
|
|
43
|
+
xl: string;
|
|
44
|
+
};
|
|
45
|
+
}, unknown, {
|
|
46
|
+
badgeClasses: string[];
|
|
47
|
+
showText: boolean;
|
|
48
|
+
}, {
|
|
49
|
+
text: string;
|
|
50
|
+
color: import('./types').BaseColor;
|
|
51
|
+
size: import('./types').Size;
|
|
52
|
+
}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin>;
|
|
53
|
+
EIcon: import("vue/types/vue").ExtendedVue<import("vue").default<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => import("vue").default<Record<string, any>, Record<string, any>, never, never, any>>, unknown, unknown, {
|
|
54
|
+
sizes: Record<import('./types').Size, string>;
|
|
55
|
+
iconClasses: string[];
|
|
56
|
+
}, {
|
|
57
|
+
icon: string;
|
|
58
|
+
color: string;
|
|
59
|
+
size: import('./types').Size;
|
|
60
|
+
}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin>;
|
|
61
|
+
ESpinner: import("vue/types/vue").ExtendedVue<import("vue").default<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => import("vue").default<Record<string, any>, Record<string, any>, never, never, any>>, {
|
|
62
|
+
sizes: any;
|
|
63
|
+
colors: any;
|
|
64
|
+
}, {
|
|
65
|
+
getNthPathStyle(index: number): {
|
|
66
|
+
animationDuration: string;
|
|
67
|
+
animationDelay: string;
|
|
68
|
+
fill: string;
|
|
69
|
+
};
|
|
70
|
+
}, {
|
|
71
|
+
computedSize: number;
|
|
72
|
+
fill: {
|
|
73
|
+
primary: string;
|
|
74
|
+
secondary: string;
|
|
75
|
+
};
|
|
76
|
+
}, {
|
|
77
|
+
dark: boolean;
|
|
78
|
+
color: boolean;
|
|
79
|
+
animationDuration: string | number;
|
|
80
|
+
size: import('./types').Size;
|
|
81
|
+
opacity: string | number;
|
|
82
|
+
}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin>;
|
|
83
|
+
ERow: import("vue/types/vue").ExtendedVue<import("vue").default<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => import("vue").default<Record<string, any>, Record<string, any>, never, never, any>>, unknown, unknown, {
|
|
84
|
+
rowClasses: Record<string, boolean>;
|
|
85
|
+
}, {
|
|
86
|
+
align: import('./types').FlexAlignItems;
|
|
87
|
+
alignContent: import('./types').FlexAlignContent;
|
|
88
|
+
justify: import('./types').FlexJustifyContent;
|
|
89
|
+
noGutters: boolean;
|
|
90
|
+
}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin>;
|
|
91
|
+
ECol: import("vue/types/vue").ExtendedVue<import("vue").default<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => import("vue").default<Record<string, any>, Record<string, any>, never, never, any>>, unknown, {
|
|
92
|
+
autoClasses(prefix: string, value: string | number | boolean): string;
|
|
93
|
+
isSizePropAuto(prop: string | number | boolean | undefined, acceptUndefined?: boolean): boolean;
|
|
94
|
+
isSizePropertyNumeric(prop: string | number | boolean | undefined): boolean;
|
|
95
|
+
}, {
|
|
96
|
+
colClasses: Record<string, boolean>;
|
|
97
|
+
}, {
|
|
98
|
+
alignSelf: string;
|
|
99
|
+
cols: string | number | boolean;
|
|
100
|
+
lg: string | number | boolean;
|
|
101
|
+
md: string | number | boolean;
|
|
102
|
+
offset: string | number;
|
|
103
|
+
offsetLg: string | number;
|
|
104
|
+
offsetMd: string | number;
|
|
105
|
+
offsetSm: string | number;
|
|
106
|
+
offsetXs: string | number;
|
|
107
|
+
offsetXl: string | number;
|
|
108
|
+
sm: string | number | boolean;
|
|
109
|
+
xs: string | number | boolean;
|
|
110
|
+
xl: string | number | boolean;
|
|
111
|
+
}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin>;
|
|
112
|
+
};
|
|
8
113
|
declare const _default: {
|
|
9
114
|
install(Vue: VueConstructor): void;
|
|
10
115
|
};
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.e-spinner[data-v-29711f67]{vertical-align:center}.e-spinner__primary[data-v-29711f67],.e-spinner__secondary[data-v-29711f67]{stroke-width:0;animation:fade-29711f67;animation-iteration-count:infinite}@keyframes fade-29711f67{0%{fill-opacity:0}50%{fill-opacity:1}to{fill-opacity:0}}.e-row
|
|
1
|
+
.e-spinner[data-v-29711f67]{vertical-align:center}.e-spinner__primary[data-v-29711f67],.e-spinner__secondary[data-v-29711f67]{stroke-width:0;animation:fade-29711f67;animation-iteration-count:infinite}@keyframes fade-29711f67{0%{fill-opacity:0}50%{fill-opacity:1}to{fill-opacity:0}}.e-row.e-row--no-gutters{margin:0}.e-row.e-row--no-gutters>.e-col{padding:0}.e-col{padding:.75rem}
|