@evercam/ui 1.0.0-preview-move-hard-coded-svg-icons-to-EvercamUi-a473fb940 → 1.0.0-preview-compare-xray-976e1847f
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 -0
- package/dist/attributes.json +20 -5
- package/dist/components/ECopyToClipboardBtn.vue.d.ts +2 -2
- package/dist/components/EDialog.vue.d.ts +2 -2
- package/dist/components/EDragResize.vue.d.ts +34 -0
- package/dist/components/EExpandableMenu.vue.d.ts +2 -2
- package/dist/components/EFeedackButton.vue.d.ts +2 -2
- package/dist/components/EGlobalSearch.vue.d.ts +2 -2
- package/dist/components/EImagePlayer.vue.d.ts +2 -2
- package/dist/components/EImagesComparator.vue.d.ts +26 -11
- package/dist/components/EVoiceInput.vue.d.ts +2 -2
- package/dist/components/EZoomableImg.vue.d.ts +2 -2
- package/dist/components/svgIcons/index.d.ts +0 -4
- package/dist/index.d.ts +71 -24
- package/dist/index.mjs +1841 -1720
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +16 -16
- package/dist/index.umd.js.map +1 -1
- package/dist/mixins/event-listeners.d.ts +2 -2
- package/dist/mixins/inactivity-listener.d.ts +2 -2
- package/dist/style.css +1 -1
- package/dist/styles.css +1 -1
- package/dist/tags.json +10 -1
- package/dist/types.d.ts +5 -0
- package/dist/web-types.json +53 -6
- package/package.json +1 -1
- package/dist/components/svgIcons/Back10.vue.d.ts +0 -5
- package/dist/components/svgIcons/Forward10.vue.d.ts +0 -5
package/dist/tags.json
CHANGED
|
@@ -193,11 +193,20 @@
|
|
|
193
193
|
],
|
|
194
194
|
"description": ""
|
|
195
195
|
},
|
|
196
|
+
"EDragResize": {
|
|
197
|
+
"attributes": [
|
|
198
|
+
"bounds",
|
|
199
|
+
"initial"
|
|
200
|
+
],
|
|
201
|
+
"description": ""
|
|
202
|
+
},
|
|
196
203
|
"EImagesComparator": {
|
|
197
204
|
"attributes": [
|
|
198
205
|
"before-image-src",
|
|
199
206
|
"after-image-src",
|
|
200
|
-
"is-loading"
|
|
207
|
+
"is-loading",
|
|
208
|
+
"mode",
|
|
209
|
+
"transparency"
|
|
201
210
|
],
|
|
202
211
|
"description": ""
|
|
203
212
|
},
|
package/dist/types.d.ts
CHANGED
|
@@ -322,5 +322,10 @@ export type ERadioGroupOption = ESelectionGroupOption & {
|
|
|
322
322
|
};
|
|
323
323
|
export type EToggleSwitchOption = ESelectionGroupOption;
|
|
324
324
|
export type CssClassMap = Record<string, boolean>;
|
|
325
|
+
export declare enum CompareMode {
|
|
326
|
+
Window = "window",
|
|
327
|
+
Curtain = "curtain",
|
|
328
|
+
Transparency = "transparency"
|
|
329
|
+
}
|
|
325
330
|
declare const _default: {};
|
|
326
331
|
export default _default;
|
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": "1.0.0-preview-
|
|
5
|
+
"version": "1.0.0-preview-compare-xray-976e1847f",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -1109,7 +1109,7 @@
|
|
|
1109
1109
|
{
|
|
1110
1110
|
"name": "colors",
|
|
1111
1111
|
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
1112
|
-
"default": "() =>
|
|
1112
|
+
"default": "() => xn(\"#ebedf0\", \"#17459e\", 10)",
|
|
1113
1113
|
"value": {
|
|
1114
1114
|
"kind": "expression",
|
|
1115
1115
|
"type": "array"
|
|
@@ -1118,7 +1118,7 @@
|
|
|
1118
1118
|
{
|
|
1119
1119
|
"name": "colors-dark",
|
|
1120
1120
|
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
1121
|
-
"default": "() =>
|
|
1121
|
+
"default": "() => xn(\"rgba(26,53,86,0.49)\", \"#1f65ee\", 10)",
|
|
1122
1122
|
"value": {
|
|
1123
1123
|
"kind": "expression",
|
|
1124
1124
|
"type": "array"
|
|
@@ -1353,6 +1353,35 @@
|
|
|
1353
1353
|
}
|
|
1354
1354
|
]
|
|
1355
1355
|
},
|
|
1356
|
+
{
|
|
1357
|
+
"name": "EDragResize",
|
|
1358
|
+
"source": {
|
|
1359
|
+
"module": "./src/components/EDragResize.vue",
|
|
1360
|
+
"symbol": "EDragResize"
|
|
1361
|
+
},
|
|
1362
|
+
"description": "",
|
|
1363
|
+
"doc-url": "https://ui.evercam.io/",
|
|
1364
|
+
"attributes": [
|
|
1365
|
+
{
|
|
1366
|
+
"name": "bounds",
|
|
1367
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
1368
|
+
"default": "undefined",
|
|
1369
|
+
"value": {
|
|
1370
|
+
"kind": "expression",
|
|
1371
|
+
"type": "object"
|
|
1372
|
+
}
|
|
1373
|
+
},
|
|
1374
|
+
{
|
|
1375
|
+
"name": "initial",
|
|
1376
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
1377
|
+
"default": "() => ({\n x: 0,\n y: 0,\n width: 100,\n height: 100\n })",
|
|
1378
|
+
"value": {
|
|
1379
|
+
"kind": "expression",
|
|
1380
|
+
"type": "object"
|
|
1381
|
+
}
|
|
1382
|
+
}
|
|
1383
|
+
]
|
|
1384
|
+
},
|
|
1356
1385
|
{
|
|
1357
1386
|
"name": "EImagesComparator",
|
|
1358
1387
|
"source": {
|
|
@@ -1365,7 +1394,7 @@
|
|
|
1365
1394
|
{
|
|
1366
1395
|
"name": "before-image-src",
|
|
1367
1396
|
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
1368
|
-
"default": "
|
|
1397
|
+
"default": "undefined",
|
|
1369
1398
|
"value": {
|
|
1370
1399
|
"kind": "expression",
|
|
1371
1400
|
"type": "string"
|
|
@@ -1374,7 +1403,7 @@
|
|
|
1374
1403
|
{
|
|
1375
1404
|
"name": "after-image-src",
|
|
1376
1405
|
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
1377
|
-
"default": "
|
|
1406
|
+
"default": "undefined",
|
|
1378
1407
|
"value": {
|
|
1379
1408
|
"kind": "expression",
|
|
1380
1409
|
"type": "string"
|
|
@@ -1383,11 +1412,29 @@
|
|
|
1383
1412
|
{
|
|
1384
1413
|
"name": "is-loading",
|
|
1385
1414
|
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
1386
|
-
"default": "
|
|
1415
|
+
"default": "undefined",
|
|
1387
1416
|
"value": {
|
|
1388
1417
|
"kind": "expression",
|
|
1389
1418
|
"type": "boolean"
|
|
1390
1419
|
}
|
|
1420
|
+
},
|
|
1421
|
+
{
|
|
1422
|
+
"name": "mode",
|
|
1423
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
1424
|
+
"default": "curtain",
|
|
1425
|
+
"value": {
|
|
1426
|
+
"kind": "expression",
|
|
1427
|
+
"type": "string"
|
|
1428
|
+
}
|
|
1429
|
+
},
|
|
1430
|
+
{
|
|
1431
|
+
"name": "transparency",
|
|
1432
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
1433
|
+
"default": "0.5",
|
|
1434
|
+
"value": {
|
|
1435
|
+
"kind": "expression",
|
|
1436
|
+
"type": "number"
|
|
1437
|
+
}
|
|
1391
1438
|
}
|
|
1392
1439
|
]
|
|
1393
1440
|
},
|
package/package.json
CHANGED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import Vue from "vue";
|
|
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, unknown, unknown, {
|
|
3
|
-
color: string;
|
|
4
|
-
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
5
|
-
export default _default;
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import Vue from "vue";
|
|
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, unknown, unknown, {
|
|
3
|
-
color: string;
|
|
4
|
-
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
5
|
-
export default _default;
|