@evercam/ui 0.0.19 → 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 +20 -0
- package/dist/index.mjs +253 -222
- 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 +6 -0
- package/dist/styles.css +128 -0
- package/dist/tags.json +5 -0
- package/dist/web-types.json +46 -1
- package/package.json +1 -1
|
@@ -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
|
@@ -81,11 +81,17 @@ export declare const components: {
|
|
|
81
81
|
opacity: string | number;
|
|
82
82
|
}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin>;
|
|
83
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>;
|
|
84
85
|
rowClasses: Record<string, boolean>;
|
|
85
86
|
}, {
|
|
86
87
|
align: import('./types').FlexAlignItems;
|
|
87
88
|
alignContent: import('./types').FlexAlignContent;
|
|
88
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;
|
|
89
95
|
noGutters: boolean;
|
|
90
96
|
}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin>;
|
|
91
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, {
|
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
CHANGED
package/dist/web-types.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "http://json.schemastore.org/web-types",
|
|
3
3
|
"framework": "vue",
|
|
4
4
|
"name": "@evercam/ui",
|
|
5
|
-
"version": "0.0.
|
|
5
|
+
"version": "0.0.20",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -247,6 +247,51 @@
|
|
|
247
247
|
"type": "string"
|
|
248
248
|
}
|
|
249
249
|
},
|
|
250
|
+
{
|
|
251
|
+
"name": "justify-xs",
|
|
252
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
253
|
+
"default": "undefined",
|
|
254
|
+
"value": {
|
|
255
|
+
"kind": "expression",
|
|
256
|
+
"type": "string"
|
|
257
|
+
}
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"name": "justify-sm",
|
|
261
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
262
|
+
"default": "undefined",
|
|
263
|
+
"value": {
|
|
264
|
+
"kind": "expression",
|
|
265
|
+
"type": "string"
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"name": "justify-md",
|
|
270
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
271
|
+
"default": "undefined",
|
|
272
|
+
"value": {
|
|
273
|
+
"kind": "expression",
|
|
274
|
+
"type": "string"
|
|
275
|
+
}
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"name": "justify-lg",
|
|
279
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
280
|
+
"default": "undefined",
|
|
281
|
+
"value": {
|
|
282
|
+
"kind": "expression",
|
|
283
|
+
"type": "string"
|
|
284
|
+
}
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"name": "justify-xl",
|
|
288
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
289
|
+
"default": "undefined",
|
|
290
|
+
"value": {
|
|
291
|
+
"kind": "expression",
|
|
292
|
+
"type": "string"
|
|
293
|
+
}
|
|
294
|
+
},
|
|
250
295
|
{
|
|
251
296
|
"name": "no-gutters",
|
|
252
297
|
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|