@progress/kendo-angular-toolbar 19.2.0-develop.14 → 19.2.0-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/README.md CHANGED
@@ -4,14 +4,9 @@
4
4
 
5
5
  ## Kendo UI for Angular ToolBar Component
6
6
 
7
- > * This package is part of [Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui/)—a commercial UI library.
8
- > * To use this package, you must install a license key file, whether you are on a paid license or a 30-day free trial. To receive a license key, either [purchase a license](https://www.telerik.com/purchase/kendo-ui) or start a [free trial](https://www.telerik.com/download-login-v2-kendo-angular-ui).
9
- > * Adding a valid license key file ensures a seamless experience during the trial period—no watermarks, no warnings, and full access to all components and features.
10
- > * Trial users can register for a free license key file. Without it, your trial may be interrupted by visual indicators or functionality limitations.
11
- > * Additionally, for the period of your license, you get access to our legendary technical support provided directly by the Kendo UI for Angular team!
12
- > * Learn more: https://www.telerik.com/kendo-angular-ui/components/licensing
13
- >
14
- > [Start using Kendo UI for Angular](https://www.telerik.com/download-login-v2-kendo-angular-ui) and speed up your development process!
7
+ > * This package is part of the [Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui/)—a commercial UI library.
8
+ > * You must [install a license key](https://www.telerik.com/kendo-angular-ui/my-license) when adding the package to your project. To receive a license key, either [purchase a license](https://www.telerik.com/purchase/kendo-ui) or register for a [free trial](https://www.telerik.com/download-login-v2-kendo-angular-ui).
9
+ > * The 30-day free trial gives you access to all the Kendo UI for Angular components and their full functionality. Additionally, for the period of your license, you get access to our legendary technical support provided directly by the Kendo UI for Angular team!
15
10
 
16
11
  The Kendo UI for Angular ToolBar provides a graphical container for holding button elements and allows users to effortlessly structure and access them. The ToolBar is built from the ground up and specifically for Angular, so that you get a high-performance control which integrates tightly with your application and with the rest of the Kendo UI for Angular components.
17
12
 
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1751450425,
14
- version: '19.2.0-develop.14',
13
+ publishDate: 1750841596,
14
+ version: '19.2.0-develop.2',
15
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
16
16
  };
@@ -19,17 +19,16 @@ import * as i8 from "./tools/toolbar-splitbutton.component";
19
19
  import * as i9 from "./tools/toolbar-tool.component";
20
20
  // IMPORTANT: NgModule export kept for backwards compatibility
21
21
  /**
22
- * Represents the [`NgModule`](link:site.data.urls.angular['ngmoduleapi']) definition for the ToolBar component.
22
+ * Defines the [NgModule](link:site.data.urls.angular['ngmoduleapi']) for the ToolBar component.
23
23
  *
24
- * @example
25
- * ```typescript
26
- * import { ToolBarModule } from '@progress/kendo-angular-toolbar';
27
- *
28
- * @NgModule({
29
- * imports: [ToolBarModule]
30
- * })
31
- * export class AppModule {}
32
- * ```
24
+ * The package exports:
25
+ * - `ToolBarComponent`—The ToolBar component class.
26
+ * - `ToolBarToolComponent`—The base Tool component class.
27
+ * - `ToolBarButtonComponent`—The Button Tool component class.
28
+ * - `ToolBarButtonGroupComponent`—The ButtonGroup Tool component class.
29
+ * - `ToolBarDropDownButtonComponent`—The DropDownButton Tool component class.
30
+ * - `ToolBarSplitButtonComponent`—The SplitButton Tool component class.
31
+ * - `ToolBarSeparatorComponent`—The Separator Tool component class.
33
32
  */
34
33
  export class ToolBarModule {
35
34
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToolBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
@@ -26,8 +26,8 @@ const packageMetadata = {
26
26
  productName: 'Kendo UI for Angular',
27
27
  productCode: 'KENDOUIANGULAR',
28
28
  productCodes: ['KENDOUIANGULAR'],
29
- publishDate: 1751450425,
30
- version: '19.2.0-develop.14',
29
+ publishDate: 1750841596,
30
+ version: '19.2.0-develop.2',
31
31
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
32
32
  };
33
33
 
@@ -5050,17 +5050,16 @@ const KENDO_TOOLBAR = [
5050
5050
 
5051
5051
  // IMPORTANT: NgModule export kept for backwards compatibility
5052
5052
  /**
5053
- * Represents the [`NgModule`](link:site.data.urls.angular['ngmoduleapi']) definition for the ToolBar component.
5053
+ * Defines the [NgModule](link:site.data.urls.angular['ngmoduleapi']) for the ToolBar component.
5054
5054
  *
5055
- * @example
5056
- * ```typescript
5057
- * import { ToolBarModule } from '@progress/kendo-angular-toolbar';
5058
- *
5059
- * @NgModule({
5060
- * imports: [ToolBarModule]
5061
- * })
5062
- * export class AppModule {}
5063
- * ```
5055
+ * The package exports:
5056
+ * - `ToolBarComponent`—The ToolBar component class.
5057
+ * - `ToolBarToolComponent`—The base Tool component class.
5058
+ * - `ToolBarButtonComponent`—The Button Tool component class.
5059
+ * - `ToolBarButtonGroupComponent`—The ButtonGroup Tool component class.
5060
+ * - `ToolBarDropDownButtonComponent`—The DropDownButton Tool component class.
5061
+ * - `ToolBarSplitButtonComponent`—The SplitButton Tool component class.
5062
+ * - `ToolBarSeparatorComponent`—The Separator Tool component class.
5064
5063
  */
5065
5064
  class ToolBarModule {
5066
5065
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToolBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-toolbar",
3
- "version": "19.2.0-develop.14",
3
+ "version": "19.2.0-develop.2",
4
4
  "description": "Kendo UI Angular Toolbar component - a single UI element that organizes buttons and other navigation elements",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -45,7 +45,7 @@
45
45
  "package": {
46
46
  "productName": "Kendo UI for Angular",
47
47
  "productCode": "KENDOUIANGULAR",
48
- "publishDate": 1751450425,
48
+ "publishDate": 1750841596,
49
49
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
50
50
  }
51
51
  },
@@ -55,17 +55,17 @@
55
55
  "@angular/core": "16 - 20",
56
56
  "@angular/platform-browser": "16 - 20",
57
57
  "@progress/kendo-licensing": "^1.5.0",
58
- "@progress/kendo-angular-buttons": "19.2.0-develop.14",
59
- "@progress/kendo-angular-common": "19.2.0-develop.14",
60
- "@progress/kendo-angular-l10n": "19.2.0-develop.14",
61
- "@progress/kendo-angular-icons": "19.2.0-develop.14",
62
- "@progress/kendo-angular-indicators": "19.2.0-develop.14",
63
- "@progress/kendo-angular-popup": "19.2.0-develop.14",
58
+ "@progress/kendo-angular-buttons": "19.2.0-develop.2",
59
+ "@progress/kendo-angular-common": "19.2.0-develop.2",
60
+ "@progress/kendo-angular-l10n": "19.2.0-develop.2",
61
+ "@progress/kendo-angular-icons": "19.2.0-develop.2",
62
+ "@progress/kendo-angular-indicators": "19.2.0-develop.2",
63
+ "@progress/kendo-angular-popup": "19.2.0-develop.2",
64
64
  "rxjs": "^6.5.3 || ^7.0.0"
65
65
  },
66
66
  "dependencies": {
67
67
  "tslib": "^2.3.1",
68
- "@progress/kendo-angular-schematics": "19.2.0-develop.14",
68
+ "@progress/kendo-angular-schematics": "19.2.0-develop.2",
69
69
  "node-html-parser": "^7.0.1"
70
70
  },
71
71
  "schematics": "./schematics/collection.json",
@@ -13,17 +13,16 @@ import * as i7 from "./tools/toolbar-spacer.component";
13
13
  import * as i8 from "./tools/toolbar-splitbutton.component";
14
14
  import * as i9 from "./tools/toolbar-tool.component";
15
15
  /**
16
- * Represents the [`NgModule`](link:site.data.urls.angular['ngmoduleapi']) definition for the ToolBar component.
16
+ * Defines the [NgModule](link:site.data.urls.angular['ngmoduleapi']) for the ToolBar component.
17
17
  *
18
- * @example
19
- * ```typescript
20
- * import { ToolBarModule } from '@progress/kendo-angular-toolbar';
21
- *
22
- * @NgModule({
23
- * imports: [ToolBarModule]
24
- * })
25
- * export class AppModule {}
26
- * ```
18
+ * The package exports:
19
+ * - `ToolBarComponent`—The ToolBar component class.
20
+ * - `ToolBarToolComponent`—The base Tool component class.
21
+ * - `ToolBarButtonComponent`—The Button Tool component class.
22
+ * - `ToolBarButtonGroupComponent`—The ButtonGroup Tool component class.
23
+ * - `ToolBarDropDownButtonComponent`—The DropDownButton Tool component class.
24
+ * - `ToolBarSplitButtonComponent`—The SplitButton Tool component class.
25
+ * - `ToolBarSeparatorComponent`—The Separator Tool component class.
27
26
  */
28
27
  export declare class ToolBarModule {
29
28
  static ɵfac: i0.ɵɵFactoryDeclaration<ToolBarModule, never>;