@evercam/ui 1.0.0-preview-addingZoomButtonsToLiveViewVideo-de40a7d88 → 1.0.0-preview-cameraPowerSchedule-dd6520ae2
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/CHANGELOG.md +2 -1
- package/README.md +0 -2
- package/dist/attributes.json +5 -0
- package/dist/components/ESchedule.vue.d.ts +80 -0
- package/dist/components/ESchedulePicker.vue.d.ts +4 -2
- package/dist/index.d.ts +87 -3
- package/dist/index.mjs +3133 -2768
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +17 -17
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/styles.css +1 -1
- package/dist/tags.json +6 -0
- package/dist/utils.d.ts +1 -1
- package/dist/web-types.json +21 -1
- package/package.json +1 -1
package/dist/tags.json
CHANGED
package/dist/utils.d.ts
CHANGED
|
@@ -17,5 +17,5 @@ export declare const schedules: Record<ScheduleType, Schedule>;
|
|
|
17
17
|
export declare const twentyFourHours: number;
|
|
18
18
|
export declare const hoursMinutesStrToMinutes: (time: string) => number;
|
|
19
19
|
export declare const minutesToHoursMinutesStr: (number: number) => string;
|
|
20
|
-
export declare function toNumericSchedule(schedule: Schedule): Record<string, [
|
|
20
|
+
export declare function toNumericSchedule(schedule: Schedule): Record<string, number[][]>;
|
|
21
21
|
export declare function subtractOneHourFromEndIntervals(schedule: Record<string, string[]>): Record<string, string[]>;
|
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-cameraPowerSchedule-dd6520ae2",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -3331,6 +3331,26 @@
|
|
|
3331
3331
|
}
|
|
3332
3332
|
}
|
|
3333
3333
|
]
|
|
3334
|
+
},
|
|
3335
|
+
{
|
|
3336
|
+
"name": "ESchedule",
|
|
3337
|
+
"source": {
|
|
3338
|
+
"module": "./src/components/ESchedule.vue",
|
|
3339
|
+
"symbol": "ESchedule"
|
|
3340
|
+
},
|
|
3341
|
+
"description": "",
|
|
3342
|
+
"doc-url": "https://ui.evercam.io/",
|
|
3343
|
+
"attributes": [
|
|
3344
|
+
{
|
|
3345
|
+
"name": "schedule",
|
|
3346
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
3347
|
+
"default": "null",
|
|
3348
|
+
"value": {
|
|
3349
|
+
"kind": "expression",
|
|
3350
|
+
"type": "object"
|
|
3351
|
+
}
|
|
3352
|
+
}
|
|
3353
|
+
]
|
|
3334
3354
|
}
|
|
3335
3355
|
],
|
|
3336
3356
|
"attributes": [
|
package/package.json
CHANGED