@evercam/ui 0.0.55-beta.8 → 0.0.55-beta.9

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.
@@ -138,8 +138,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
138
138
  initCurtains(): void;
139
139
  createCurtains(): void;
140
140
  updateCurtains(): void;
141
- initForbiddenIntervals(): void;
142
- updateForbiddenIntervals(): void;
141
+ updateForbiddenIntervals(reset?: boolean): void;
143
142
  drawEventsGroups(): void;
144
143
  drawLineGraphEventsGroups(): void;
145
144
  drawLineGraph({ events, gElement, color, type, }: {
@@ -301,8 +300,6 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
301
300
  maxZoom: number;
302
301
  minDate: string;
303
302
  maxDate: string;
304
- minVisibleDate: string;
305
- maxVisibleDate: string;
306
303
  cursorTimestamp: string | undefined;
307
304
  selectedClass: string | undefined;
308
305
  panOnDateClick: boolean;
@@ -316,5 +313,10 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
316
313
  zoomToBoundariesTransitionDuration: number;
317
314
  milestoneBulletSize: number;
318
315
  milestonesFirst: boolean;
316
+ forbiddenIntervals: never[] | {
317
+ startDate: Date | string | number;
318
+ endDate: Date | string | number;
319
+ };
320
+ forbiddenIntervalColor: string;
319
321
  }, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
320
322
  export default _default;
@@ -311,8 +311,7 @@ export declare const components: {
311
311
  initCurtains(): void;
312
312
  createCurtains(): void;
313
313
  updateCurtains(): void;
314
- initForbiddenIntervals(): void;
315
- updateForbiddenIntervals(): void;
314
+ updateForbiddenIntervals(reset?: boolean): void;
316
315
  drawEventsGroups(): void;
317
316
  drawLineGraphEventsGroups(): void;
318
317
  drawLineGraph({ events, gElement, color, type, }: {
@@ -474,8 +473,6 @@ export declare const components: {
474
473
  maxZoom: number;
475
474
  minDate: string;
476
475
  maxDate: string;
477
- minVisibleDate: string;
478
- maxVisibleDate: string;
479
476
  cursorTimestamp: string | undefined;
480
477
  selectedClass: string | undefined;
481
478
  panOnDateClick: boolean;
@@ -489,6 +486,11 @@ export declare const components: {
489
486
  zoomToBoundariesTransitionDuration: number;
490
487
  milestoneBulletSize: number;
491
488
  milestonesFirst: boolean;
489
+ forbiddenIntervals: never[] | {
490
+ startDate: string | number | Date;
491
+ endDate: string | number | Date;
492
+ };
493
+ forbiddenIntervalColor: string;
492
494
  }, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
493
495
  EVideoEmbed: import("vue").DefineComponent<{
494
496
  videoUrl: {
@@ -82,7 +82,8 @@ export declare enum TimelineChartType {
82
82
  dots = "dots",
83
83
  lineGraph = "lineGraph",
84
84
  barChart = "barGraph",
85
- milestones = "milestones"
85
+ milestones = "milestones",
86
+ exclusion = "exclusion"
86
87
  }
87
88
  export type TimelineEventsGroup = {
88
89
  events: Array<TimelineEvent>;
package/dist/tags.json CHANGED
@@ -103,8 +103,6 @@
103
103
  "max-zoom",
104
104
  "min-date",
105
105
  "max-date",
106
- "min-visible-date",
107
- "max-visible-date",
108
106
  "cursor-timestamp",
109
107
  "selected-class",
110
108
  "pan-on-date-click",
@@ -117,7 +115,9 @@
117
115
  "fit-markers-transition-duration",
118
116
  "zoom-to-boundaries-transition-duration",
119
117
  "milestone-bullet-size",
120
- "milestones-first"
118
+ "milestones-first",
119
+ "forbidden-intervals",
120
+ "forbidden-interval-color"
121
121
  ],
122
122
  "description": ""
123
123
  }
@@ -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.55-beta.8",
5
+ "version": "0.0.55-beta.9",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "types-syntax": "typescript",
@@ -748,24 +748,6 @@
748
748
  "type": "string"
749
749
  }
750
750
  },
751
- {
752
- "name": "min-visible-date",
753
- "doc-url": "https://www.npmjs.com/package/@evercam/ui",
754
- "default": "undefined",
755
- "value": {
756
- "kind": "expression",
757
- "type": "string"
758
- }
759
- },
760
- {
761
- "name": "max-visible-date",
762
- "doc-url": "https://www.npmjs.com/package/@evercam/ui",
763
- "default": "undefined",
764
- "value": {
765
- "kind": "expression",
766
- "type": "string"
767
- }
768
- },
769
751
  {
770
752
  "name": "cursor-timestamp",
771
753
  "doc-url": "https://www.npmjs.com/package/@evercam/ui",
@@ -888,6 +870,24 @@
888
870
  "kind": "expression",
889
871
  "type": "boolean"
890
872
  }
873
+ },
874
+ {
875
+ "name": "forbidden-intervals",
876
+ "doc-url": "https://www.npmjs.com/package/@evercam/ui",
877
+ "default": "() => []",
878
+ "value": {
879
+ "kind": "expression",
880
+ "type": "array"
881
+ }
882
+ },
883
+ {
884
+ "name": "forbidden-interval-color",
885
+ "doc-url": "https://www.npmjs.com/package/@evercam/ui",
886
+ "default": "#ddd",
887
+ "value": {
888
+ "kind": "expression",
889
+ "type": "string"
890
+ }
891
891
  }
892
892
  ]
893
893
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evercam/ui",
3
- "version": "0.0.55-beta.8",
3
+ "version": "0.0.55-beta.9",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "author": "Evercam - Constuction Cameras.",