@sisense/sdk-ui-angular 1.0.0 → 1.1.0
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/esm2020/lib/components/areamap-chart.component.mjs +51 -0
- package/dist/esm2020/lib/components/index.mjs +2 -1
- package/dist/esm2020/lib/sdk-ui.module.mjs +8 -4
- package/dist/esm2020/version.mjs +2 -2
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs +56 -4
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs +56 -4
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/lib/components/areamap-chart.component.d.ts +42 -0
- package/dist/lib/components/index.d.ts +1 -0
- package/dist/lib/sdk-ui.module.d.ts +4 -3
- package/dist/package.json +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -268,7 +268,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
268
268
|
}]
|
|
269
269
|
}], ctorParameters: function () { return [{ type: SisenseContextService }]; } });
|
|
270
270
|
|
|
271
|
-
var packageVersion = '1.
|
|
271
|
+
var packageVersion = '1.1.0';
|
|
272
272
|
|
|
273
273
|
function Trackable(target, propertyKey, descriptor) {
|
|
274
274
|
const originalMethod = descriptor.value;
|
|
@@ -2398,6 +2398,54 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2398
2398
|
type: Input
|
|
2399
2399
|
}] } });
|
|
2400
2400
|
|
|
2401
|
+
/**
|
|
2402
|
+
* An Angular component that allows to visualize geographical data as polygons on a map.
|
|
2403
|
+
* See [Areamap Chart](https://docs.sisense.com/main/SisenseLinux/area-map.htm) for more information.
|
|
2404
|
+
*/
|
|
2405
|
+
class AreamapChartComponent {
|
|
2406
|
+
constructor() {
|
|
2407
|
+
/** @internal */
|
|
2408
|
+
this.chartType = 'areamap';
|
|
2409
|
+
}
|
|
2410
|
+
}
|
|
2411
|
+
AreamapChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AreamapChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2412
|
+
AreamapChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: AreamapChartComponent, selector: "csdk-areamap-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions" }, ngImport: i0, template: `
|
|
2413
|
+
<csdk-chart
|
|
2414
|
+
[chartType]="chartType"
|
|
2415
|
+
[dataSet]="dataSet"
|
|
2416
|
+
[dataOptions]="dataOptions"
|
|
2417
|
+
[filters]="filters"
|
|
2418
|
+
[highlights]="highlights"
|
|
2419
|
+
[styleOptions]="styleOptions"
|
|
2420
|
+
/>
|
|
2421
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
|
|
2422
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AreamapChartComponent, decorators: [{
|
|
2423
|
+
type: Component,
|
|
2424
|
+
args: [{
|
|
2425
|
+
selector: 'csdk-areamap-chart',
|
|
2426
|
+
template: `
|
|
2427
|
+
<csdk-chart
|
|
2428
|
+
[chartType]="chartType"
|
|
2429
|
+
[dataSet]="dataSet"
|
|
2430
|
+
[dataOptions]="dataOptions"
|
|
2431
|
+
[filters]="filters"
|
|
2432
|
+
[highlights]="highlights"
|
|
2433
|
+
[styleOptions]="styleOptions"
|
|
2434
|
+
/>
|
|
2435
|
+
`,
|
|
2436
|
+
}]
|
|
2437
|
+
}], propDecorators: { dataSet: [{
|
|
2438
|
+
type: Input
|
|
2439
|
+
}], dataOptions: [{
|
|
2440
|
+
type: Input
|
|
2441
|
+
}], filters: [{
|
|
2442
|
+
type: Input
|
|
2443
|
+
}], highlights: [{
|
|
2444
|
+
type: Input
|
|
2445
|
+
}], styleOptions: [{
|
|
2446
|
+
type: Input
|
|
2447
|
+
}] } });
|
|
2448
|
+
|
|
2401
2449
|
/**
|
|
2402
2450
|
* SDK UI Module, which is a container for components.
|
|
2403
2451
|
*
|
|
@@ -2450,7 +2498,8 @@ SdkUiModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "1
|
|
|
2450
2498
|
DrilldownBreadcrumbsComponent,
|
|
2451
2499
|
ContextMenuComponent,
|
|
2452
2500
|
BoxplotChartComponent,
|
|
2453
|
-
ScattermapChartComponent
|
|
2501
|
+
ScattermapChartComponent,
|
|
2502
|
+
AreamapChartComponent], imports: [CommonModule, DecoratorsModule], exports: [BasicMemberFilterTileComponent,
|
|
2454
2503
|
ChartComponent,
|
|
2455
2504
|
TableComponent,
|
|
2456
2505
|
ChartWidgetComponent,
|
|
@@ -2473,7 +2522,8 @@ SdkUiModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "1
|
|
|
2473
2522
|
DrilldownBreadcrumbsComponent,
|
|
2474
2523
|
ContextMenuComponent,
|
|
2475
2524
|
BoxplotChartComponent,
|
|
2476
|
-
ScattermapChartComponent
|
|
2525
|
+
ScattermapChartComponent,
|
|
2526
|
+
AreamapChartComponent] });
|
|
2477
2527
|
SdkUiModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SdkUiModule, imports: [CommonModule, DecoratorsModule] });
|
|
2478
2528
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SdkUiModule, decorators: [{
|
|
2479
2529
|
type: NgModule,
|
|
@@ -2503,6 +2553,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2503
2553
|
ContextMenuComponent,
|
|
2504
2554
|
BoxplotChartComponent,
|
|
2505
2555
|
ScattermapChartComponent,
|
|
2556
|
+
AreamapChartComponent,
|
|
2506
2557
|
],
|
|
2507
2558
|
imports: [CommonModule, DecoratorsModule],
|
|
2508
2559
|
exports: [
|
|
@@ -2530,6 +2581,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2530
2581
|
ContextMenuComponent,
|
|
2531
2582
|
BoxplotChartComponent,
|
|
2532
2583
|
ScattermapChartComponent,
|
|
2584
|
+
AreamapChartComponent,
|
|
2533
2585
|
],
|
|
2534
2586
|
providers: [],
|
|
2535
2587
|
}]
|
|
@@ -2543,5 +2595,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2543
2595
|
* Generated bundle index. Do not edit.
|
|
2544
2596
|
*/
|
|
2545
2597
|
|
|
2546
|
-
export { AreaChartComponent, BarChartComponent, BasicMemberFilterTileComponent, BoxplotChartComponent, ChartComponent, ChartWidgetComponent, ColumnChartComponent, ContextMenuComponent, DashboardService, DashboardWidgetComponent, DateRangeFilterTileComponent, DrilldownBreadcrumbsComponent, DrilldownWidgetComponent, FunnelChartComponent, IndicatorChartComponent, LineChartComponent, MemberFilterTileComponent, PieChartComponent, PolarChartComponent, QueryService, SISENSE_CONTEXT_CONFIG_TOKEN, ScatterChartComponent, ScattermapChartComponent, SdkUiModule, SisenseContextService, SunburstChartComponent, THEME_CONFIG_TOKEN, TableComponent, TableWidgetComponent, ThemeService, TreemapChartComponent };
|
|
2598
|
+
export { AreaChartComponent, AreamapChartComponent, BarChartComponent, BasicMemberFilterTileComponent, BoxplotChartComponent, ChartComponent, ChartWidgetComponent, ColumnChartComponent, ContextMenuComponent, DashboardService, DashboardWidgetComponent, DateRangeFilterTileComponent, DrilldownBreadcrumbsComponent, DrilldownWidgetComponent, FunnelChartComponent, IndicatorChartComponent, LineChartComponent, MemberFilterTileComponent, PieChartComponent, PolarChartComponent, QueryService, SISENSE_CONTEXT_CONFIG_TOKEN, ScatterChartComponent, ScattermapChartComponent, SdkUiModule, SisenseContextService, SunburstChartComponent, THEME_CONFIG_TOKEN, TableComponent, TableWidgetComponent, ThemeService, TreemapChartComponent };
|
|
2547
2599
|
//# sourceMappingURL=sisense-sdk-ui-angular.mjs.map
|