@evercam/ui 0.0.47-beta.4 → 0.0.47-beta.5
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/index.mjs +70 -52
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +2 -2
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/ETimeline.vue.d.ts +1 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/src/utils.d.ts +3 -2
- package/dist/web-types.json +2 -2
- package/package.json +1 -1
|
@@ -47,6 +47,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
47
47
|
rightCurtainWidth: number;
|
|
48
48
|
isHoveringCurtain: boolean;
|
|
49
49
|
isDraggingCurtain: boolean;
|
|
50
|
+
debouncedOnResize: Function;
|
|
50
51
|
}, {
|
|
51
52
|
initTimeline(startDate?: string, endDate?: string): void;
|
|
52
53
|
initRefs(): void;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -214,6 +214,7 @@ export declare const components: {
|
|
|
214
214
|
rightCurtainWidth: number;
|
|
215
215
|
isHoveringCurtain: boolean;
|
|
216
216
|
isDraggingCurtain: boolean;
|
|
217
|
+
debouncedOnResize: Function;
|
|
217
218
|
}, {
|
|
218
219
|
initTimeline(startDate?: string | undefined, endDate?: string | undefined): void;
|
|
219
220
|
initRefs(): void;
|
package/dist/src/utils.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
export declare function isFullScreen(): boolean;
|
|
2
|
-
export declare function makeFullScreen(element: HTMLElement):
|
|
3
|
-
export declare function exitFullScreen():
|
|
2
|
+
export declare function makeFullScreen(element: HTMLElement): Promise<unknown> | undefined;
|
|
3
|
+
export declare function exitFullScreen(): Promise<unknown> | undefined;
|
|
4
|
+
export declare function debounce<T extends (...args: any[]) => any>(func: T, wait?: number): (...args: Parameters<T>) => void;
|
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.47-beta.
|
|
5
|
+
"version": "0.0.47-beta.5",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -535,7 +535,7 @@
|
|
|
535
535
|
{
|
|
536
536
|
"name": "x-axes-config",
|
|
537
537
|
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
538
|
-
"default": "() =>
|
|
538
|
+
"default": "() => qt",
|
|
539
539
|
"value": {
|
|
540
540
|
"kind": "expression",
|
|
541
541
|
"type": "object"
|