@evercam/ui 0.0.18 → 0.0.20
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 +177 -0
- package/dist/index.mjs +188 -156
- 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/ERow.vue.d.ts +6 -0
- package/dist/src/index.d.ts +111 -0
- package/dist/styles.css +128 -0
- package/dist/tags.json +71 -0
- package/dist/web-types.json +479 -0
- package/package.json +10 -3
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
import Vue from "vue";
|
|
2
2
|
import { FlexAlignContent, FlexAlignItems, FlexJustifyContent } from '../types';
|
|
3
3
|
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, unknown, {
|
|
4
|
+
justifyClasses: Record<string, boolean>;
|
|
4
5
|
rowClasses: Record<string, boolean>;
|
|
5
6
|
}, {
|
|
6
7
|
align: FlexAlignItems;
|
|
7
8
|
alignContent: FlexAlignContent;
|
|
8
9
|
justify: FlexJustifyContent;
|
|
10
|
+
justifyXs: FlexJustifyContent;
|
|
11
|
+
justifySm: FlexJustifyContent;
|
|
12
|
+
justifyMd: FlexJustifyContent;
|
|
13
|
+
justifyLg: FlexJustifyContent;
|
|
14
|
+
justifyXl: FlexJustifyContent;
|
|
9
15
|
noGutters: boolean;
|
|
10
16
|
}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin>;
|
|
11
17
|
export default _default;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -5,6 +5,117 @@ 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
|
+
justifyClasses: Record<string, boolean>;
|
|
85
|
+
rowClasses: Record<string, boolean>;
|
|
86
|
+
}, {
|
|
87
|
+
align: import('./types').FlexAlignItems;
|
|
88
|
+
alignContent: import('./types').FlexAlignContent;
|
|
89
|
+
justify: import('./types').FlexJustifyContent;
|
|
90
|
+
justifyXs: import('./types').FlexJustifyContent;
|
|
91
|
+
justifySm: import('./types').FlexJustifyContent;
|
|
92
|
+
justifyMd: import('./types').FlexJustifyContent;
|
|
93
|
+
justifyLg: import('./types').FlexJustifyContent;
|
|
94
|
+
justifyXl: import('./types').FlexJustifyContent;
|
|
95
|
+
noGutters: boolean;
|
|
96
|
+
}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin>;
|
|
97
|
+
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, {
|
|
98
|
+
autoClasses(prefix: string, value: string | number | boolean): string;
|
|
99
|
+
isSizePropAuto(prop: string | number | boolean | undefined, acceptUndefined?: boolean): boolean;
|
|
100
|
+
isSizePropertyNumeric(prop: string | number | boolean | undefined): boolean;
|
|
101
|
+
}, {
|
|
102
|
+
colClasses: Record<string, boolean>;
|
|
103
|
+
}, {
|
|
104
|
+
alignSelf: string;
|
|
105
|
+
cols: string | number | boolean;
|
|
106
|
+
lg: string | number | boolean;
|
|
107
|
+
md: string | number | boolean;
|
|
108
|
+
offset: string | number;
|
|
109
|
+
offsetLg: string | number;
|
|
110
|
+
offsetMd: string | number;
|
|
111
|
+
offsetSm: string | number;
|
|
112
|
+
offsetXs: string | number;
|
|
113
|
+
offsetXl: string | number;
|
|
114
|
+
sm: string | number | boolean;
|
|
115
|
+
xs: string | number | boolean;
|
|
116
|
+
xl: string | number | boolean;
|
|
117
|
+
}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin>;
|
|
118
|
+
};
|
|
8
119
|
declare const _default: {
|
|
9
120
|
install(Vue: VueConstructor): void;
|
|
10
121
|
};
|
package/dist/styles.css
CHANGED
|
@@ -1349,6 +1349,38 @@
|
|
|
1349
1349
|
flex-basis: 100%;
|
|
1350
1350
|
}
|
|
1351
1351
|
|
|
1352
|
+
.sm\:e-justify-normal{
|
|
1353
|
+
justify-content: normal;
|
|
1354
|
+
}
|
|
1355
|
+
|
|
1356
|
+
.sm\:e-justify-start{
|
|
1357
|
+
justify-content: flex-start;
|
|
1358
|
+
}
|
|
1359
|
+
|
|
1360
|
+
.sm\:e-justify-end{
|
|
1361
|
+
justify-content: flex-end;
|
|
1362
|
+
}
|
|
1363
|
+
|
|
1364
|
+
.sm\:e-justify-center{
|
|
1365
|
+
justify-content: center;
|
|
1366
|
+
}
|
|
1367
|
+
|
|
1368
|
+
.sm\:e-justify-between{
|
|
1369
|
+
justify-content: space-between;
|
|
1370
|
+
}
|
|
1371
|
+
|
|
1372
|
+
.sm\:e-justify-around{
|
|
1373
|
+
justify-content: space-around;
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
.sm\:e-justify-evenly{
|
|
1377
|
+
justify-content: space-evenly;
|
|
1378
|
+
}
|
|
1379
|
+
|
|
1380
|
+
.sm\:e-justify-stretch{
|
|
1381
|
+
justify-content: stretch;
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1352
1384
|
.sm\:\!e-underline-offset-1{
|
|
1353
1385
|
text-underline-offset: 1px !important;
|
|
1354
1386
|
}
|
|
@@ -1847,6 +1879,38 @@
|
|
|
1847
1879
|
flex-basis: 100%;
|
|
1848
1880
|
}
|
|
1849
1881
|
|
|
1882
|
+
.md\:e-justify-normal{
|
|
1883
|
+
justify-content: normal;
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1886
|
+
.md\:e-justify-start{
|
|
1887
|
+
justify-content: flex-start;
|
|
1888
|
+
}
|
|
1889
|
+
|
|
1890
|
+
.md\:e-justify-end{
|
|
1891
|
+
justify-content: flex-end;
|
|
1892
|
+
}
|
|
1893
|
+
|
|
1894
|
+
.md\:e-justify-center{
|
|
1895
|
+
justify-content: center;
|
|
1896
|
+
}
|
|
1897
|
+
|
|
1898
|
+
.md\:e-justify-between{
|
|
1899
|
+
justify-content: space-between;
|
|
1900
|
+
}
|
|
1901
|
+
|
|
1902
|
+
.md\:e-justify-around{
|
|
1903
|
+
justify-content: space-around;
|
|
1904
|
+
}
|
|
1905
|
+
|
|
1906
|
+
.md\:e-justify-evenly{
|
|
1907
|
+
justify-content: space-evenly;
|
|
1908
|
+
}
|
|
1909
|
+
|
|
1910
|
+
.md\:e-justify-stretch{
|
|
1911
|
+
justify-content: stretch;
|
|
1912
|
+
}
|
|
1913
|
+
|
|
1850
1914
|
.md\:\!e-underline-offset-1{
|
|
1851
1915
|
text-underline-offset: 1px !important;
|
|
1852
1916
|
}
|
|
@@ -2345,6 +2409,38 @@
|
|
|
2345
2409
|
flex-basis: 100%;
|
|
2346
2410
|
}
|
|
2347
2411
|
|
|
2412
|
+
.lg\:e-justify-normal{
|
|
2413
|
+
justify-content: normal;
|
|
2414
|
+
}
|
|
2415
|
+
|
|
2416
|
+
.lg\:e-justify-start{
|
|
2417
|
+
justify-content: flex-start;
|
|
2418
|
+
}
|
|
2419
|
+
|
|
2420
|
+
.lg\:e-justify-end{
|
|
2421
|
+
justify-content: flex-end;
|
|
2422
|
+
}
|
|
2423
|
+
|
|
2424
|
+
.lg\:e-justify-center{
|
|
2425
|
+
justify-content: center;
|
|
2426
|
+
}
|
|
2427
|
+
|
|
2428
|
+
.lg\:e-justify-between{
|
|
2429
|
+
justify-content: space-between;
|
|
2430
|
+
}
|
|
2431
|
+
|
|
2432
|
+
.lg\:e-justify-around{
|
|
2433
|
+
justify-content: space-around;
|
|
2434
|
+
}
|
|
2435
|
+
|
|
2436
|
+
.lg\:e-justify-evenly{
|
|
2437
|
+
justify-content: space-evenly;
|
|
2438
|
+
}
|
|
2439
|
+
|
|
2440
|
+
.lg\:e-justify-stretch{
|
|
2441
|
+
justify-content: stretch;
|
|
2442
|
+
}
|
|
2443
|
+
|
|
2348
2444
|
.lg\:\!e-underline-offset-1{
|
|
2349
2445
|
text-underline-offset: 1px !important;
|
|
2350
2446
|
}
|
|
@@ -2843,6 +2939,38 @@
|
|
|
2843
2939
|
flex-basis: 100%;
|
|
2844
2940
|
}
|
|
2845
2941
|
|
|
2942
|
+
.xl\:e-justify-normal{
|
|
2943
|
+
justify-content: normal;
|
|
2944
|
+
}
|
|
2945
|
+
|
|
2946
|
+
.xl\:e-justify-start{
|
|
2947
|
+
justify-content: flex-start;
|
|
2948
|
+
}
|
|
2949
|
+
|
|
2950
|
+
.xl\:e-justify-end{
|
|
2951
|
+
justify-content: flex-end;
|
|
2952
|
+
}
|
|
2953
|
+
|
|
2954
|
+
.xl\:e-justify-center{
|
|
2955
|
+
justify-content: center;
|
|
2956
|
+
}
|
|
2957
|
+
|
|
2958
|
+
.xl\:e-justify-between{
|
|
2959
|
+
justify-content: space-between;
|
|
2960
|
+
}
|
|
2961
|
+
|
|
2962
|
+
.xl\:e-justify-around{
|
|
2963
|
+
justify-content: space-around;
|
|
2964
|
+
}
|
|
2965
|
+
|
|
2966
|
+
.xl\:e-justify-evenly{
|
|
2967
|
+
justify-content: space-evenly;
|
|
2968
|
+
}
|
|
2969
|
+
|
|
2970
|
+
.xl\:e-justify-stretch{
|
|
2971
|
+
justify-content: stretch;
|
|
2972
|
+
}
|
|
2973
|
+
|
|
2846
2974
|
.xl\:\!e-underline-offset-1{
|
|
2847
2975
|
text-underline-offset: 1px !important;
|
|
2848
2976
|
}
|
package/dist/tags.json
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
{
|
|
2
|
+
"EAvatar": {
|
|
3
|
+
"attributes": [
|
|
4
|
+
"size",
|
|
5
|
+
"show-badge",
|
|
6
|
+
"badge-color",
|
|
7
|
+
"badge-text",
|
|
8
|
+
"badge-size",
|
|
9
|
+
"image"
|
|
10
|
+
],
|
|
11
|
+
"description": ""
|
|
12
|
+
},
|
|
13
|
+
"EBadge": {
|
|
14
|
+
"attributes": [
|
|
15
|
+
"text",
|
|
16
|
+
"color",
|
|
17
|
+
"size"
|
|
18
|
+
],
|
|
19
|
+
"description": ""
|
|
20
|
+
},
|
|
21
|
+
"EIcon": {
|
|
22
|
+
"attributes": [
|
|
23
|
+
"icon",
|
|
24
|
+
"color",
|
|
25
|
+
"size"
|
|
26
|
+
],
|
|
27
|
+
"description": ""
|
|
28
|
+
},
|
|
29
|
+
"ESpinner": {
|
|
30
|
+
"attributes": [
|
|
31
|
+
"dark",
|
|
32
|
+
"color",
|
|
33
|
+
"animation-duration",
|
|
34
|
+
"size",
|
|
35
|
+
"opacity"
|
|
36
|
+
],
|
|
37
|
+
"description": ""
|
|
38
|
+
},
|
|
39
|
+
"ERow": {
|
|
40
|
+
"attributes": [
|
|
41
|
+
"align",
|
|
42
|
+
"align-content",
|
|
43
|
+
"justify",
|
|
44
|
+
"justify-xs",
|
|
45
|
+
"justify-sm",
|
|
46
|
+
"justify-md",
|
|
47
|
+
"justify-lg",
|
|
48
|
+
"justify-xl",
|
|
49
|
+
"no-gutters"
|
|
50
|
+
],
|
|
51
|
+
"description": ""
|
|
52
|
+
},
|
|
53
|
+
"ECol": {
|
|
54
|
+
"attributes": [
|
|
55
|
+
"align-self",
|
|
56
|
+
"cols",
|
|
57
|
+
"lg",
|
|
58
|
+
"md",
|
|
59
|
+
"offset",
|
|
60
|
+
"offset-lg",
|
|
61
|
+
"offset-md",
|
|
62
|
+
"offset-sm",
|
|
63
|
+
"offset-xs",
|
|
64
|
+
"offset-xl",
|
|
65
|
+
"sm",
|
|
66
|
+
"xs",
|
|
67
|
+
"xl"
|
|
68
|
+
],
|
|
69
|
+
"description": ""
|
|
70
|
+
}
|
|
71
|
+
}
|