@progress/kendo-angular-chart-wizard 17.2.0 → 17.2.1-develop.2
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/LICENSE.md +1 -1
- package/README.md +1 -1
- package/chart-wizard-state.d.ts +1 -1
- package/chart-wizard.component.d.ts +1 -1
- package/chart-wizard.module.d.ts +1 -1
- package/common/get-wizard-data-from-data-rows.d.ts +1 -1
- package/common/index.d.ts +1 -1
- package/common/models.d.ts +1 -1
- package/common/window-settings.d.ts +1 -1
- package/directives.d.ts +1 -1
- package/esm2022/chart-wizard-state.mjs +1 -1
- package/esm2022/chart-wizard.component.mjs +1 -1
- package/esm2022/chart-wizard.module.mjs +1 -1
- package/esm2022/common/get-wizard-data-from-data-rows.mjs +1 -1
- package/esm2022/common/index.mjs +1 -1
- package/esm2022/common/models.mjs +1 -1
- package/esm2022/common/window-settings.mjs +1 -1
- package/esm2022/directives.mjs +1 -1
- package/esm2022/events/export-event.mjs +1 -1
- package/esm2022/events/index.mjs +1 -1
- package/esm2022/events/preventable-event.mjs +1 -1
- package/esm2022/grid-integration/get-grid-selected-rows.mjs +1 -1
- package/esm2022/grid-integration/get-wizard-data-from-grid-selection.mjs +1 -1
- package/esm2022/grid-integration/grid-chart-wizard.directive.mjs +1 -1
- package/esm2022/grid-integration/index.mjs +1 -1
- package/esm2022/index.mjs +1 -1
- package/esm2022/localization/chartwizard-localization.service.mjs +1 -1
- package/esm2022/localization/custom-messages.component.mjs +1 -1
- package/esm2022/localization/localized-messages.directive.mjs +1 -1
- package/esm2022/localization/messages.mjs +1 -1
- package/esm2022/package-metadata.mjs +3 -3
- package/esm2022/progress-kendo-angular-chart-wizard.mjs +1 -1
- package/esm2022/property-pane/chart-tab.component.mjs +1 -1
- package/esm2022/property-pane/data-tab.component.mjs +1 -1
- package/esm2022/property-pane/form-field.component.mjs +1 -1
- package/esm2022/property-pane/format-tab.component.mjs +1 -1
- package/esm2022/series-type-button.component.mjs +1 -1
- package/esm2022/state.service.mjs +1 -1
- package/events/export-event.d.ts +1 -1
- package/events/index.d.ts +1 -1
- package/events/preventable-event.d.ts +1 -1
- package/fesm2022/progress-kendo-angular-chart-wizard.mjs +3 -3
- package/grid-integration/get-grid-selected-rows.d.ts +1 -1
- package/grid-integration/get-wizard-data-from-grid-selection.d.ts +1 -1
- package/grid-integration/grid-chart-wizard.directive.d.ts +1 -1
- package/grid-integration/index.d.ts +1 -1
- package/index.d.ts +1 -1
- package/localization/chartwizard-localization.service.d.ts +1 -1
- package/localization/custom-messages.component.d.ts +1 -1
- package/localization/localized-messages.directive.d.ts +1 -1
- package/localization/messages.d.ts +1 -1
- package/package-metadata.d.ts +1 -1
- package/package.json +16 -16
- package/property-pane/chart-tab.component.d.ts +1 -1
- package/property-pane/data-tab.component.d.ts +1 -1
- package/property-pane/form-field.component.d.ts +1 -1
- package/property-pane/format-tab.component.d.ts +1 -1
- package/series-type-button.component.d.ts +1 -1
- package/state.service.d.ts +1 -1
package/LICENSE.md
CHANGED
@@ -8,4 +8,4 @@ This is commercial software. To use it, you need to agree to the [**Telerik End
|
|
8
8
|
|
9
9
|
All available Kendo UI commercial licenses may be obtained at http://www.telerik.com/purchase/kendo-ui.
|
10
10
|
|
11
|
-
*Copyright ©
|
11
|
+
*Copyright © 2025 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved.*
|
package/README.md
CHANGED
@@ -35,6 +35,6 @@ For any issues you might encounter while working with the Kendo UI for Angular C
|
|
35
35
|
* [Blogs](http://www.telerik.com/blogs/kendo-ui)
|
36
36
|
* [Kendo UI for Angular pricing and licensing](https://www.telerik.com/purchase/kendo-ui)
|
37
37
|
|
38
|
-
_Copyright ©
|
38
|
+
_Copyright © 2025 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved._
|
39
39
|
|
40
40
|
_Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries._
|
package/chart-wizard-state.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { type ChartWizardDefaultState } from '@progress/kendo-charts';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { EventEmitter, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
|
package/chart-wizard.module.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import * as i0 from "@angular/core";
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
export { ChartWizardDataCell, ChartWizardDataRow, DataColumn, DataRow } from '@progress/kendo-charts';
|
package/common/index.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
export * from './get-wizard-data-from-data-rows';
|
package/common/models.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { ImageExportOptions } from "@progress/kendo-drawing";
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { WindowState } from '@progress/kendo-angular-dialog';
|
package/directives.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { ChartWizardComponent } from "./chart-wizard.component";
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { ChartWizardCommon } from '@progress/kendo-charts';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { ChangeDetectionStrategy, Component, EventEmitter, HostBinding, Input, Output, ViewChild, } from '@angular/core';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { NgModule } from '@angular/core';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { ChartWizardCommon } from '@progress/kendo-charts';
|
package/esm2022/common/index.mjs
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
export * from './get-wizard-data-from-data-rows';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
/**
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
export {};
|
package/esm2022/directives.mjs
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { ChartWizardComponent } from "./chart-wizard.component";
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { PreventableEvent } from './preventable-event';
|
package/esm2022/events/index.mjs
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
export { ExportEvent } from './export-event';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
/**
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { getter } from "@progress/kendo-common";
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { getWizardDataFromDataRows } from "../common";
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { Directive, EventEmitter, HostListener, Input, Output } from "@angular/core";
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
export { getGridSelectedRows } from './get-grid-selected-rows';
|
package/esm2022/index.mjs
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
export * from './chart-wizard.component';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { Inject, Injectable, Optional } from '@angular/core';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { Component, forwardRef } from '@angular/core';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { Directive, forwardRef } from '@angular/core';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { Directive } from '@angular/core';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
/**
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
9
9
|
name: '@progress/kendo-angular-chart-wizard',
|
10
10
|
productName: 'Kendo UI for Angular',
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
12
|
-
publishDate:
|
13
|
-
version: '17.2.
|
12
|
+
publishDate: 1736177768,
|
13
|
+
version: '17.2.1-develop.2',
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning',
|
15
15
|
};
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
/**
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { ChangeDetectionStrategy, ChangeDetectorRef, Component } from '@angular/core';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, Renderer2, ViewChild, ViewEncapsulation } from '@angular/core';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { Component, HostBinding, Input, Output, ViewChild, EventEmitter, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { ChangeDetectionStrategy, ChangeDetectorRef, Component } from '@angular/core';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { Component, Input } from "@angular/core";
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { Injectable } from "@angular/core";
|
package/events/export-event.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { ChartComponent } from '@progress/kendo-angular-charts';
|
package/events/index.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
export { ExportEvent } from './export-event';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
/**
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import * as i0 from '@angular/core';
|
@@ -36,8 +36,8 @@ const packageMetadata = {
|
|
36
36
|
name: '@progress/kendo-angular-chart-wizard',
|
37
37
|
productName: 'Kendo UI for Angular',
|
38
38
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
39
|
-
publishDate:
|
40
|
-
version: '17.2.
|
39
|
+
publishDate: 1736177768,
|
40
|
+
version: '17.2.1-develop.2',
|
41
41
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning',
|
42
42
|
};
|
43
43
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { GridComponent } from "@progress/kendo-angular-grid";
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { GridComponent } from "@progress/kendo-angular-grid";
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { EventEmitter, OnInit } from "@angular/core";
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
export { getGridSelectedRows } from './get-grid-selected-rows';
|
package/index.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
export * from './chart-wizard.component';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { LocalizationService, MessageService } from '@progress/kendo-angular-l10n';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { ComponentMessages } from '@progress/kendo-angular-l10n';
|
package/package-metadata.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { PackageMetadata } from '@progress/kendo-licensing';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/kendo-angular-chart-wizard",
|
3
|
-
"version": "17.2.
|
3
|
+
"version": "17.2.1-develop.2",
|
4
4
|
"description": "Kendo UI Angular Chart Wizard component",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
6
6
|
"author": "Progress",
|
@@ -23,20 +23,20 @@
|
|
23
23
|
"@angular/common": "16 - 19",
|
24
24
|
"@angular/core": "16 - 19",
|
25
25
|
"@angular/platform-browser": "16 - 19",
|
26
|
-
"@progress/kendo-angular-common": "17.2.
|
27
|
-
"@progress/kendo-angular-dialog": "17.2.
|
28
|
-
"@progress/kendo-angular-buttons": "17.2.
|
29
|
-
"@progress/kendo-angular-grid": "17.2.
|
30
|
-
"@progress/kendo-angular-charts": "17.2.
|
31
|
-
"@progress/kendo-angular-dropdowns": "17.2.
|
32
|
-
"@progress/kendo-angular-layout": "17.2.
|
33
|
-
"@progress/kendo-angular-icons": "17.2.
|
34
|
-
"@progress/kendo-angular-inputs": "17.2.
|
35
|
-
"@progress/kendo-angular-label": "17.2.
|
36
|
-
"@progress/kendo-angular-intl": "17.2.
|
37
|
-
"@progress/kendo-angular-l10n": "17.2.
|
38
|
-
"@progress/kendo-angular-navigation": "17.2.
|
39
|
-
"@progress/kendo-angular-popup": "17.2.
|
26
|
+
"@progress/kendo-angular-common": "17.2.1-develop.2",
|
27
|
+
"@progress/kendo-angular-dialog": "17.2.1-develop.2",
|
28
|
+
"@progress/kendo-angular-buttons": "17.2.1-develop.2",
|
29
|
+
"@progress/kendo-angular-grid": "17.2.1-develop.2",
|
30
|
+
"@progress/kendo-angular-charts": "17.2.1-develop.2",
|
31
|
+
"@progress/kendo-angular-dropdowns": "17.2.1-develop.2",
|
32
|
+
"@progress/kendo-angular-layout": "17.2.1-develop.2",
|
33
|
+
"@progress/kendo-angular-icons": "17.2.1-develop.2",
|
34
|
+
"@progress/kendo-angular-inputs": "17.2.1-develop.2",
|
35
|
+
"@progress/kendo-angular-label": "17.2.1-develop.2",
|
36
|
+
"@progress/kendo-angular-intl": "17.2.1-develop.2",
|
37
|
+
"@progress/kendo-angular-l10n": "17.2.1-develop.2",
|
38
|
+
"@progress/kendo-angular-navigation": "17.2.1-develop.2",
|
39
|
+
"@progress/kendo-angular-popup": "17.2.1-develop.2",
|
40
40
|
"@progress/kendo-drawing": "^1.21.0",
|
41
41
|
"@progress/kendo-file-saver": "^1.1.1",
|
42
42
|
"@progress/kendo-licensing": "^1.0.2",
|
@@ -45,7 +45,7 @@
|
|
45
45
|
"dependencies": {
|
46
46
|
"tslib": "^2.3.1",
|
47
47
|
"@progress/kendo-charts": "2.6.2",
|
48
|
-
"@progress/kendo-angular-schematics": "17.2.
|
48
|
+
"@progress/kendo-angular-schematics": "17.2.1-develop.2",
|
49
49
|
"@progress/kendo-common": "^1.0.1"
|
50
50
|
},
|
51
51
|
"schematics": "./schematics/collection.json",
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { AfterViewChecked, ChangeDetectorRef, OnDestroy } from '@angular/core';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { AfterViewInit, ChangeDetectorRef, Renderer2 } from '@angular/core';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { EventEmitter, AfterViewInit, ChangeDetectorRef, AfterViewChecked, OnDestroy } from '@angular/core';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { AfterViewChecked, ChangeDetectorRef, OnDestroy } from '@angular/core';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { SVGIcon } from "@progress/kendo-svg-icons";
|
package/state.service.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright ©
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { ChartWizardState, ChartWizardSeriesType } from "@progress/kendo-charts";
|