@evercam/ui 0.0.49 → 0.0.50-beta.1
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 +92 -91
- 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 +2 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/web-types.json +1 -1
- package/package.json +1 -1
|
@@ -48,6 +48,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
48
48
|
characterWidth: number;
|
|
49
49
|
textPadding: number;
|
|
50
50
|
debouncedOnResize: Function;
|
|
51
|
+
isFirstPaint: boolean;
|
|
51
52
|
}, {
|
|
52
53
|
initTimeline(startDate?: string, endDate?: string): void;
|
|
53
54
|
initRefs(): void;
|
|
@@ -70,6 +71,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
70
71
|
formatFn: (d: Date) => string;
|
|
71
72
|
interval: any;
|
|
72
73
|
};
|
|
74
|
+
onResize(resizeObserverEntry: ResizeObserverEntry): void;
|
|
73
75
|
handleResize({ contentRect }: ResizeObserverEntry): void;
|
|
74
76
|
handleDarkModeChange(): void;
|
|
75
77
|
handleMouseDown(): void;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -217,6 +217,7 @@ export declare const components: {
|
|
|
217
217
|
characterWidth: number;
|
|
218
218
|
textPadding: number;
|
|
219
219
|
debouncedOnResize: Function;
|
|
220
|
+
isFirstPaint: boolean;
|
|
220
221
|
}, {
|
|
221
222
|
initTimeline(startDate?: string | undefined, endDate?: string | undefined): void;
|
|
222
223
|
initRefs(): void;
|
|
@@ -239,6 +240,7 @@ export declare const components: {
|
|
|
239
240
|
formatFn: (d: Date) => string;
|
|
240
241
|
interval: any;
|
|
241
242
|
};
|
|
243
|
+
onResize(resizeObserverEntry: ResizeObserverEntry): void;
|
|
242
244
|
handleResize({ contentRect }: ResizeObserverEntry): void;
|
|
243
245
|
handleDarkModeChange(): void;
|
|
244
246
|
handleMouseDown(): void;
|
package/dist/web-types.json
CHANGED