@provoly/dashboard 0.14.8 → 0.14.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.
Files changed (125) hide show
  1. package/admin/components/admin-metadata-user/admin-metadata-user.component.d.ts +1 -1
  2. package/admin/components/admin-metadata-user/store/admin-metadata-user.action.d.ts +0 -11
  3. package/admin/components/admin-metadata-user/store/admin-metadata-user.effects.d.ts +2 -7
  4. package/admin/components/admin-metadata-user/store/admin-metadata-user.reducer.d.ts +1 -3
  5. package/admin/components/admin-metadata-user/store/admin-metadata-user.selector.d.ts +1 -4
  6. package/admin/components/admin-user/store/admin-user.action.d.ts +1 -52
  7. package/admin/components/admin-user/store/admin-user.effects.d.ts +0 -28
  8. package/admin/components/admin-user/store/admin-user.reducer.d.ts +1 -2
  9. package/admin/components/admin-user/store/admin-user.selector.d.ts +0 -1
  10. package/admin/store/admin.service.d.ts +1 -4
  11. package/components/metadata-editor/metadata-editor.component.d.ts +6 -4
  12. package/components/metadata-editor/metadata-editor.module.d.ts +7 -6
  13. package/components/metadata-editor/public-api.d.ts +1 -0
  14. package/components/metadata-editor/store/metadata.action.d.ts +63 -1
  15. package/components/metadata-editor/store/metadata.effects.d.ts +33 -0
  16. package/components/metadata-editor/store/metadata.reducer.d.ts +3 -1
  17. package/components/metadata-editor/store/metadata.selector.d.ts +2 -0
  18. package/components/metadata-editor/store/metadata.service.d.ts +5 -1
  19. package/components/metadata-editor/style/_o-metadata-editor.scss +15 -0
  20. package/components/metadata-editor/style/css.component.d.ts +5 -0
  21. package/esm2022/admin/components/admin-abac-rules/admin-abac-rules-edit/admin-abac-rules-edit.component.mjs +2 -3
  22. package/esm2022/admin/components/admin-abac-rules/admin-abac-rules-new/admin-abac-rules-new.component.mjs +2 -3
  23. package/esm2022/admin/components/admin-abac-rules/components/metadata-condition/metadata-condition.component.mjs +2 -3
  24. package/esm2022/admin/components/admin-classes/admin-classes-view/admin-attributes-edit/admin-attributes-edit.component.mjs +1 -1
  25. package/esm2022/admin/components/admin-classes/admin-classes-view/admin-attributes-form/admin-attributes-form.component.mjs +4 -4
  26. package/esm2022/admin/components/admin-dataset/admin-select-dataset/admin-select-dataset.component.mjs +3 -3
  27. package/esm2022/admin/components/admin-metadata/shared/form-metadata/form-metadata.component.mjs +2 -3
  28. package/esm2022/admin/components/admin-metadata-rules/shared/admin-form-metadata-rules/admin-form-metadata-rules.component.mjs +3 -5
  29. package/esm2022/admin/components/admin-metadata-user/admin-metadata-user.component.mjs +9 -10
  30. package/esm2022/admin/components/admin-metadata-user/admin-user-edit-metadata/admin-user-edit-metadata.component.mjs +4 -4
  31. package/esm2022/admin/components/admin-metadata-user/admin-user-select-metadata/admin-user-select-metadata.component.mjs +7 -3
  32. package/esm2022/admin/components/admin-metadata-user/store/admin-metadata-user.action.mjs +1 -4
  33. package/esm2022/admin/components/admin-metadata-user/store/admin-metadata-user.effects.mjs +4 -4
  34. package/esm2022/admin/components/admin-metadata-user/store/admin-metadata-user.reducer.mjs +8 -28
  35. package/esm2022/admin/components/admin-metadata-user/store/admin-metadata-user.selector.mjs +2 -6
  36. package/esm2022/admin/components/admin-user/admin-user-select/admin-user-select.component.mjs +9 -10
  37. package/esm2022/admin/components/admin-user/admin-user.component.mjs +1 -1
  38. package/esm2022/admin/components/admin-user/store/admin-user.action.mjs +2 -11
  39. package/esm2022/admin/components/admin-user/store/admin-user.effects.mjs +1 -19
  40. package/esm2022/admin/components/admin-user/store/admin-user.reducer.mjs +2 -7
  41. package/esm2022/admin/components/admin-user/store/admin-user.selector.mjs +1 -3
  42. package/esm2022/admin/store/admin.effects.mjs +1 -1
  43. package/esm2022/admin/store/admin.service.mjs +1 -16
  44. package/esm2022/components/metadata-editor/metadata-editor.component.mjs +37 -21
  45. package/esm2022/components/metadata-editor/metadata-editor.module.mjs +5 -4
  46. package/esm2022/components/metadata-editor/public-api.mjs +2 -1
  47. package/esm2022/components/metadata-editor/store/metadata.action.mjs +14 -2
  48. package/esm2022/components/metadata-editor/store/metadata.effects.mjs +21 -1
  49. package/esm2022/components/metadata-editor/store/metadata.reducer.mjs +18 -2
  50. package/esm2022/components/metadata-editor/store/metadata.selector.mjs +6 -2
  51. package/esm2022/components/metadata-editor/store/metadata.service.mjs +21 -1
  52. package/esm2022/components/metadata-editor/style/css.component.mjs +11 -0
  53. package/esm2022/dataset/i18n/fr.translations.mjs +2 -2
  54. package/esm2022/import/i18n/en.translations.mjs +4 -1
  55. package/esm2022/import/i18n/fr.translations.mjs +4 -1
  56. package/esm2022/import/store/import.effects.mjs +8 -1
  57. package/esm2022/lib/core/components/modal-status/modal-status.component.mjs +10 -6
  58. package/esm2022/lib/core/components/snackbar/snackbar.service.mjs +1 -1
  59. package/esm2022/lib/core/i18n/en.translations.mjs +3 -2
  60. package/esm2022/lib/core/i18n/fr.translations.mjs +3 -2
  61. package/esm2022/lib/core/model/display-options.interface.mjs +1 -1
  62. package/esm2022/lib/core/model/manifest.interface.mjs +1 -1
  63. package/esm2022/lib/core/model/public-api.mjs +2 -1
  64. package/esm2022/lib/core/model/widget-vega-manifest.interface.mjs +2 -0
  65. package/esm2022/lib/dashboard/store/dashboard.actions.mjs +2 -2
  66. package/esm2022/lib/dashboard/store/dashboard.effects.mjs +4 -3
  67. package/esm2022/lib/dashboard/store/dashboard.reducers.mjs +4 -2
  68. package/esm2022/lib/dashboard/store/dashboard.selectors.mjs +3 -4
  69. package/esm2022/presentation/components/add-edit-presentation/add-edit-presentation.component.mjs +3 -3
  70. package/esm2022/toolbox/components/save-view/save-view.component.mjs +4 -4
  71. package/esm2022/widgets/widget-map/component/widget-map-layer.service.mjs +3 -1
  72. package/esm2022/widgets/widget-map/component/widget-map.component.mjs +15 -9
  73. package/esm2022/widgets/widget-map/utils/cql-utils.class.mjs +5 -5
  74. package/esm2022/widgets/widget-map/utils/xml-utils.class.mjs +23 -1
  75. package/esm2022/widgets/widget-vega/component/widget-vega.component.mjs +139 -0
  76. package/esm2022/widgets/widget-vega/i18n/en.translations.mjs +11 -0
  77. package/esm2022/widgets/widget-vega/i18n/fr.translations.mjs +11 -0
  78. package/esm2022/widgets/widget-vega/provoly-dashboard-widgets-widget-vega.mjs +5 -0
  79. package/esm2022/widgets/widget-vega/public-api.mjs +3 -0
  80. package/esm2022/widgets/widget-vega/style/css.component.mjs +11 -0
  81. package/esm2022/widgets/widget-vega/widget-vega.module.mjs +68 -0
  82. package/fesm2022/provoly-dashboard-admin.mjs +122 -197
  83. package/fesm2022/provoly-dashboard-admin.mjs.map +1 -1
  84. package/fesm2022/provoly-dashboard-components-metadata-editor.mjs +124 -28
  85. package/fesm2022/provoly-dashboard-components-metadata-editor.mjs.map +1 -1
  86. package/fesm2022/provoly-dashboard-dataset.mjs +1 -1
  87. package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
  88. package/fesm2022/provoly-dashboard-import.mjs +13 -0
  89. package/fesm2022/provoly-dashboard-import.mjs.map +1 -1
  90. package/fesm2022/provoly-dashboard-presentation.mjs +2 -2
  91. package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
  92. package/fesm2022/provoly-dashboard-toolbox.mjs +3 -3
  93. package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
  94. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +42 -13
  95. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
  96. package/fesm2022/provoly-dashboard-widgets-widget-vega.mjs +235 -0
  97. package/fesm2022/provoly-dashboard-widgets-widget-vega.mjs.map +1 -0
  98. package/fesm2022/provoly-dashboard.mjs +23 -14
  99. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  100. package/import/i18n/en.translations.d.ts +3 -0
  101. package/import/i18n/fr.translations.d.ts +3 -0
  102. package/lib/core/i18n/en.translations.d.ts +1 -0
  103. package/lib/core/i18n/fr.translations.d.ts +1 -0
  104. package/lib/core/model/display-options.interface.d.ts +1 -1
  105. package/lib/core/model/manifest.interface.d.ts +2 -1
  106. package/lib/core/model/public-api.d.ts +1 -0
  107. package/lib/core/model/widget-vega-manifest.interface.d.ts +5 -0
  108. package/lib/dashboard/store/dashboard.actions.d.ts +6 -4
  109. package/lib/dashboard/store/dashboard.effects.d.ts +2 -0
  110. package/lib/dashboard/store/dashboard.selectors.d.ts +1 -1
  111. package/package.json +7 -1
  112. package/schematics/ng-add/index.js +7 -1
  113. package/schematics/ng-add/index.js.map +1 -1
  114. package/schematics/ng-add/schema.json +2 -1
  115. package/styles/components/_o-tabs.scss +1 -7
  116. package/widgets/widget-map/component/widget-map.component.d.ts +3 -1
  117. package/widgets/widget-map/utils/xml-utils.class.d.ts +2 -0
  118. package/widgets/widget-vega/component/widget-vega.component.d.ts +37 -0
  119. package/widgets/widget-vega/i18n/en.translations.d.ts +10 -0
  120. package/widgets/widget-vega/i18n/fr.translations.d.ts +10 -0
  121. package/widgets/widget-vega/index.d.ts +5 -0
  122. package/widgets/widget-vega/public-api.d.ts +2 -0
  123. package/widgets/widget-vega/style/_o-widget-vega.scss +6 -0
  124. package/widgets/widget-vega/style/css.component.d.ts +5 -0
  125. package/widgets/widget-vega/widget-vega.module.d.ts +19 -0
@@ -13,6 +13,9 @@ export declare const enTranslations: {
13
13
  consultDataset: string;
14
14
  errors: string;
15
15
  error: string;
16
+ errorCode: {
17
+ 409: string;
18
+ };
16
19
  line: string;
17
20
  withoutLine: string;
18
21
  dataset: string;
@@ -14,6 +14,9 @@ export declare const frTranslations: {
14
14
  shapefileState: string;
15
15
  error: string;
16
16
  errors: string;
17
+ errorCode: {
18
+ 409: string;
19
+ };
17
20
  line: string;
18
21
  withoutLine: string;
19
22
  dataset: string;
@@ -215,6 +215,7 @@ export declare const enTranslations: {
215
215
  back: string;
216
216
  filterByType: string;
217
217
  editMetadata: string;
218
+ addMetadata: string;
218
219
  };
219
220
  snack: {
220
221
  default: string;
@@ -215,6 +215,7 @@ export declare const frTranslations: {
215
215
  back: string;
216
216
  filterByType: string;
217
217
  editMetadata: string;
218
+ addMetadata: string;
218
219
  };
219
220
  snack: {
220
221
  default: string;
@@ -22,4 +22,4 @@ export declare enum DisplayMode {
22
22
  SEARCH = "SEARCH",
23
23
  CUSTOM = "CUSTOM"
24
24
  }
25
- export declare function getDisplayOptions(mode: DisplayMode): DisplayOptions;
25
+ export declare function getDisplayOptions(mode?: DisplayMode): DisplayOptions;
@@ -11,6 +11,7 @@ import { MapWidgetOptions } from './widget-map-manifest.interface';
11
11
  import { TableWidgetOptions } from './widget-table-manifest.interface';
12
12
  import { TemplateWidgetOptions } from './widget-template-manifest.interface';
13
13
  import { TileWidgetOptions } from './widget-tile-manifest.interface';
14
+ import { VegaWidgetOptions } from './widget-vega-manifest.interface';
14
15
  export interface ManifestDescription {
15
16
  id: string;
16
17
  name: string;
@@ -84,4 +85,4 @@ export interface WidgetManifest {
84
85
  export interface CustomWidgetOptions {
85
86
  [opt: string]: any;
86
87
  }
87
- export type WidgetOptions = MapWidgetOptions | ImageWidgetOptions | TableWidgetOptions | DetailWidgetOptions | ChartWidgetOptions | ChartAggregatedWidgetOptions | IframeWidgetOptions | GraphWidgetOptions | TemplateWidgetOptions | TileWidgetOptions | CustomWidgetOptions;
88
+ export type WidgetOptions = MapWidgetOptions | ImageWidgetOptions | TableWidgetOptions | DetailWidgetOptions | ChartWidgetOptions | ChartAggregatedWidgetOptions | IframeWidgetOptions | GraphWidgetOptions | TemplateWidgetOptions | TileWidgetOptions | VegaWidgetOptions | CustomWidgetOptions;
@@ -13,6 +13,7 @@ export * from './widget-detail-manifest.interface';
13
13
  export * from './widget-image-manifest.interface';
14
14
  export * from './widget-template-manifest.interface';
15
15
  export * from './widget-tile-manifest.interface';
16
+ export * from './widget-vega-manifest.interface';
16
17
  export * from './manifest.interface';
17
18
  export * from './widget.interface';
18
19
  export * from './mimetype-resultset.constant';
@@ -0,0 +1,5 @@
1
+ export type PlaceExpression = (string | number)[];
2
+ export interface VegaWidgetOptions {
3
+ placeData?: PlaceExpression;
4
+ baseSpec?: any;
5
+ }
@@ -110,6 +110,7 @@ export declare const DashboardActions: {
110
110
  initial?: GlobalManifest | undefined;
111
111
  viewMode?: ViewMode | undefined;
112
112
  } | undefined;
113
+ display?: DisplayOptions | undefined;
113
114
  }) => {
114
115
  tenants?: string[] | undefined;
115
116
  manifest: GlobalManifest;
@@ -122,6 +123,7 @@ export declare const DashboardActions: {
122
123
  initial?: GlobalManifest | undefined;
123
124
  viewMode?: ViewMode | undefined;
124
125
  } | undefined;
126
+ display?: DisplayOptions | undefined;
125
127
  } & import("@ngrx/store/src/models").TypedAction<"[Dashboard] (bus) updating manifest after tenant join">>;
126
128
  updateManifestAfterTenantLeave: import("@ngrx/store").ActionCreator<"[Dashboard] (bus) updating manifest after tenant leave", (props: {
127
129
  tenants?: string[] | undefined;
@@ -140,10 +142,10 @@ export declare const DashboardActions: {
140
142
  } & import("@ngrx/store/src/models").TypedAction<"[Dashboard] (bus) updating manifest after tenant leave">>;
141
143
  selectPresentation: import("@ngrx/store").ActionCreator<"[Dashboard] (bus) selectPresentation", (props: {
142
144
  presentation: ManifestDescription | undefined;
143
- viewMode: ViewMode;
145
+ viewMode?: ViewMode | undefined;
144
146
  }) => {
145
147
  presentation: ManifestDescription | undefined;
146
- viewMode: ViewMode;
148
+ viewMode?: ViewMode | undefined;
147
149
  } & import("@ngrx/store/src/models").TypedAction<"[Dashboard] (bus) selectPresentation">>;
148
150
  setInitialPresentation: import("@ngrx/store").ActionCreator<"[Dashboard] (bus) set initial presentation", (props: {
149
151
  initial: GlobalManifest;
@@ -446,13 +448,13 @@ export declare const DashboardActions: {
446
448
  }) => {
447
449
  features: any;
448
450
  } & import("@ngrx/store/src/models").TypedAction<"[Widget map] Set Wms layer features">>;
449
- updateDisplayOptions: import("@ngrx/store").ActionCreator<"[Dashboard/Display] Update displayed dashboard management features", (props: {
451
+ updateDisplayOptions: import("@ngrx/store").ActionCreator<"[Dashboard/Display] (bus) Update displayed dashboard management features", (props: {
450
452
  mode: DisplayMode;
451
453
  customDisplay?: DisplayOptions | undefined;
452
454
  }) => {
453
455
  mode: DisplayMode;
454
456
  customDisplay?: DisplayOptions | undefined;
455
- } & import("@ngrx/store/src/models").TypedAction<"[Dashboard/Display] Update displayed dashboard management features">>;
457
+ } & import("@ngrx/store/src/models").TypedAction<"[Dashboard/Display] (bus) Update displayed dashboard management features">>;
456
458
  getCapability: import("@ngrx/store").ActionCreator<"[Widget map] Get Wms capability", (props: {
457
459
  url: string;
458
460
  force?: boolean | undefined;
@@ -43,6 +43,7 @@ export declare class DashboardEffects {
43
43
  initial?: GlobalManifest | undefined;
44
44
  viewMode?: import("./dashboard.actions").ViewMode | undefined;
45
45
  } | undefined;
46
+ display?: import("@provoly/dashboard").DisplayOptions | undefined;
46
47
  } & import("@ngrx/store/src/models").TypedAction<"[Dashboard] (bus) updating manifest after tenant join">> & import("@ngrx/effects").CreateEffectMetadata;
47
48
  leave$: import("rxjs").Observable<{
48
49
  tenants?: string[] | undefined;
@@ -135,6 +136,7 @@ export declare class DashboardEffects {
135
136
  initial?: GlobalManifest | undefined;
136
137
  viewMode?: import("./dashboard.actions").ViewMode | undefined;
137
138
  } | undefined;
139
+ display?: import("@provoly/dashboard").DisplayOptions | undefined;
138
140
  } & import("@ngrx/store/src/models").TypedAction<"[Dashboard] (bus) updating manifest after tenant join">) | ({
139
141
  tenants?: string[] | undefined;
140
142
  manifest: GlobalManifest;
@@ -319,6 +319,7 @@ export declare const DashboardSelectors: {
319
319
  viewMode?: ViewMode | undefined;
320
320
  initial: GlobalManifest | undefined;
321
321
  }>;
322
+ filters: MemoizedSelector<object, {}, (s1: DashboardState) => {}>;
322
323
  savePresentationActive: MemoizedSelector<object, boolean, (s1: {
323
324
  current: import("../../core/model/manifest.interface").ManifestDescription | undefined;
324
325
  viewMode?: ViewMode | undefined;
@@ -331,7 +332,6 @@ export declare const DashboardSelectors: {
331
332
  locked?: boolean | undefined;
332
333
  filters?: Filter[] | undefined;
333
334
  }) => boolean>;
334
- filters: MemoizedSelector<object, {}, (s1: DashboardState) => {}>;
335
335
  datasourceFilters: MemoizedSelector<object, {
336
336
  [datasourceId: string]: FilterContext[];
337
337
  }, (s1: DashboardState) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provoly/dashboard",
3
- "version": "0.14.8",
3
+ "version": "0.14.9",
4
4
  "type": "commonjs",
5
5
  "peerDependencies": {
6
6
  "@angular/cdk": "14.x || 15.x || 16.x",
@@ -307,6 +307,12 @@
307
307
  "esm2022": "./esm2022/widgets/widget-tile/provoly-dashboard-widgets-widget-tile.mjs",
308
308
  "esm": "./esm2022/widgets/widget-tile/provoly-dashboard-widgets-widget-tile.mjs",
309
309
  "default": "./fesm2022/provoly-dashboard-widgets-widget-tile.mjs"
310
+ },
311
+ "./widgets/widget-vega": {
312
+ "types": "./widgets/widget-vega/index.d.ts",
313
+ "esm2022": "./esm2022/widgets/widget-vega/provoly-dashboard-widgets-widget-vega.mjs",
314
+ "esm": "./esm2022/widgets/widget-vega/provoly-dashboard-widgets-widget-vega.mjs",
315
+ "default": "./fesm2022/provoly-dashboard-widgets-widget-vega.mjs"
310
316
  }
311
317
  },
312
318
  "schematics": "./schematics/collection.json",
@@ -43,7 +43,7 @@ function addDependencies(tree, options) {
43
43
  dependencies.push({ type: dependencies_1.NodeDependencyType.Dev, version: '^6.5.3', name: '@types/ol' });
44
44
  dependencies.push({ type: dependencies_1.NodeDependencyType.Dev, version: '^2.5.2', name: '@types/proj4' });
45
45
  }
46
- if (options.widgets.includes('widget-aggregated-chart')) {
46
+ if (options.widgets.includes('widget-aggregated-chart') || options.widgets.includes('widget-vega')) {
47
47
  console.log('...Adding provoly dependencies for charts');
48
48
  dependencies.push({ type: dependencies_1.NodeDependencyType.Default, version: '^5.21.0', name: 'vega' });
49
49
  dependencies.push({ type: dependencies_1.NodeDependencyType.Default, version: '^6.20.5', name: 'vega-embed' });
@@ -119,6 +119,12 @@ function widgetImports(options, context, external) {
119
119
  path: '@provoly/dashboard/widgets/widget-tile',
120
120
  moduleName: 'WidgetTileModule',
121
121
  type: 'tile'
122
+ },
123
+ {
124
+ name: 'widget-vega',
125
+ path: '@provoly/dashboard/widgets/widget-vega',
126
+ moduleName: 'WidgetVegaModule',
127
+ type: 'vega'
122
128
  }
123
129
  ];
124
130
  let imports = [];
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../projects/provoly/dashboard/schematics/ng-add/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../projects/provoly/dashboard/schematics/ng-add/index.ts"],"names":[],"mappings":"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"}
@@ -22,7 +22,8 @@
22
22
  "widget-map",
23
23
  "widget-table",
24
24
  "widget-template",
25
- "widget-tile"
25
+ "widget-tile",
26
+ "widget-vega"
26
27
  ]
27
28
  },
28
29
  "default": []
@@ -39,7 +39,7 @@
39
39
 
40
40
  &__panel {
41
41
  height: 100%;
42
- overflow: scroll;
42
+ overflow: auto;
43
43
  @include outlineOnFocus($border-radius: 3px);
44
44
 
45
45
  .a-h4 {
@@ -61,12 +61,6 @@
61
61
  width: 100%;
62
62
  padding: toRem(10) 0;
63
63
 
64
- &:before {
65
- @extend %contentBeforeAbsoluteFull;
66
- left: -10px;
67
- right: -10px;
68
- }
69
-
70
64
  &__text {
71
65
  position: relative;
72
66
  z-index: 1;
@@ -100,7 +100,9 @@ export declare class WidgetMapComponent extends DataWidgetComponent implements A
100
100
  setDefaultLayerTitle(layer: MapWidgetLayerOptions, capabilities: {
101
101
  [p: string]: GetCapabilitiesResponse | null;
102
102
  } | undefined): void;
103
- fitMapForObjects(fit: boolean, selectedIds?: string[]): void;
103
+ fitMapForObjects(fit: boolean, wmsCapabilities?: {
104
+ [p: string]: GetCapabilitiesResponse | null;
105
+ }, selectedIds?: string[]): void;
104
106
  private getAttributesForDrawing;
105
107
  private getIntensityAttribute;
106
108
  private getLocationAttribute;
@@ -1,6 +1,8 @@
1
+ import { Map } from 'ol';
1
2
  export declare class XMLUtils {
2
3
  static find(childs: NodeListOf<ChildNode>, name: string): ChildNode | null;
3
4
  static findAll(childs: NodeListOf<ChildNode>, name: string): ChildNode[];
4
5
  static findWith(childs: NodeListOf<ChildNode>, attribute: string, value: string): ChildNode | null;
5
6
  static getMatchingLayer(paramLayer: string, doc: Document): ChildNode | null;
7
+ static getLayerExtent(paramLayer: string, map: Map, doc?: Document): import("ol/coordinate").Coordinate[] | null;
6
8
  }
@@ -0,0 +1,37 @@
1
+ import { AfterViewInit, ElementRef } from '@angular/core';
2
+ import { Store } from '@ngrx/store';
3
+ import { DataWidgetComponent, Item, PryI18nService, PrySnackbarService, ResultSet, ValueType, VegaWidgetOptions } from '@provoly/dashboard';
4
+ import { Observable, Subject } from 'rxjs';
5
+ import { View } from 'vega';
6
+ import { VisualizationSpec } from 'vega-embed';
7
+ import * as i0 from "@angular/core";
8
+ export declare class WidgetVegaComponent extends DataWidgetComponent implements AfterViewInit {
9
+ private translateService;
10
+ private document;
11
+ private snackService;
12
+ vega: ElementRef;
13
+ view?: View;
14
+ vegaSpec$: Observable<VisualizationSpec>;
15
+ trigger$: Subject<void>;
16
+ options$: Observable<any>;
17
+ optionsCopy: VegaWidgetOptions;
18
+ formattedBaseSpec: string;
19
+ initialFormattedBaseSpec: string;
20
+ constructor(store: Store<any>, translateService: PryI18nService, el: ElementRef, document: Document, snackService: PrySnackbarService);
21
+ static getValues(data: ResultSet): {
22
+ [key: string]: ValueType;
23
+ }[];
24
+ static transformProvolyModelToClassic(values: Item): {
25
+ [key: string]: ValueType;
26
+ };
27
+ static placeData(options: VegaWidgetOptions, baseSpec: any, data: {
28
+ [key: string]: ValueType;
29
+ }[]): any;
30
+ ngAfterViewInit(): void;
31
+ toImage(): Promise<string>;
32
+ emitManifest(): void;
33
+ changePlaceData($event: Event): void;
34
+ changeSpec($event: Event): void;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<WidgetVegaComponent, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<WidgetVegaComponent, "pry-widget-vega", never, {}, {}, never, never, false, never>;
37
+ }
@@ -0,0 +1,10 @@
1
+ export declare const enTranslations: {
2
+ '@pry': {
3
+ widget: {
4
+ vega: {
5
+ placeData: string;
6
+ spec: string;
7
+ };
8
+ };
9
+ };
10
+ };
@@ -0,0 +1,10 @@
1
+ export declare const frTranslations: {
2
+ '@pry': {
3
+ widget: {
4
+ vega: {
5
+ placeData: string;
6
+ spec: string;
7
+ };
8
+ };
9
+ };
10
+ };
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@provoly/dashboard/widgets/widget-vega" />
5
+ export * from './public-api';
@@ -0,0 +1,2 @@
1
+ export * from './component/widget-vega.component';
2
+ export * from './widget-vega.module';
@@ -0,0 +1,6 @@
1
+ @use '../../../styles/abstracts' as *;
2
+
3
+ textarea.a-form-field.a-text-area {
4
+ overflow: unset;
5
+ height: toRem(500);
6
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class PryWidgetVegaCssComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<PryWidgetVegaCssComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<PryWidgetVegaCssComponent, "pry-widget-vega-css", never, {}, {}, never, never, false, never>;
5
+ }
@@ -0,0 +1,19 @@
1
+ import { Type } from '@angular/core';
2
+ import { BaseWidgetComponent, BaseWidgetModule, PryI18nService } from '@provoly/dashboard';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "./component/widget-vega.component";
5
+ import * as i2 from "./style/css.component";
6
+ import * as i3 from "@angular/common";
7
+ import * as i4 from "@angular/forms";
8
+ import * as i5 from "@angular/cdk/overlay";
9
+ import * as i6 from "@provoly/dashboard";
10
+ import * as i7 from "@provoly/dashboard/components/checkbox";
11
+ import * as i8 from "@provoly/dashboard/widgets/widget-map";
12
+ export declare class WidgetVegaModule extends BaseWidgetModule {
13
+ private pryTranslateService;
14
+ constructor(pryTranslateService: PryI18nService);
15
+ getComponent(): Type<BaseWidgetComponent>;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<WidgetVegaModule, never>;
17
+ static ɵmod: i0.ɵɵNgModuleDeclaration<WidgetVegaModule, [typeof i1.WidgetVegaComponent, typeof i2.PryWidgetVegaCssComponent], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i5.OverlayModule, typeof i6.PryCoreModule, typeof i6.PryDashboardModule, typeof i6.PrySelectModule, typeof i6.PryIconModule, typeof i7.PryCheckboxModule, typeof i6.PryToggleModule, typeof i8.WidgetMapModule, typeof i6.PryI18nModule], [typeof i1.WidgetVegaComponent]>;
18
+ static ɵinj: i0.ɵɵInjectorDeclaration<WidgetVegaModule>;
19
+ }