@progress/kendo-angular-ripple 16.5.0-develop.6 → 16.6.0-develop.1
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/directives.d.ts +9 -0
- package/esm2020/directives.mjs +9 -0
- package/esm2020/index.mjs +1 -0
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/ripple-container.directive.mjs +3 -2
- package/esm2020/ripple.module.mjs +6 -5
- package/fesm2015/progress-kendo-angular-ripple.mjs +15 -9
- package/fesm2020/progress-kendo-angular-ripple.mjs +15 -9
- package/index.d.ts +1 -0
- package/package.json +3 -3
- package/ripple-container.directive.d.ts +1 -1
- package/ripple.module.d.ts +1 -1
package/directives.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { RippleContainerDirective } from "./ripple-container.directive";
|
|
6
|
+
/**
|
|
7
|
+
* Utility array that contains all `@progress/kendo-angular-ripple` related directives.
|
|
8
|
+
*/
|
|
9
|
+
export declare const KENDO_RIPPLE: readonly [typeof RippleContainerDirective];
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { RippleContainerDirective } from "./ripple-container.directive";
|
|
6
|
+
/**
|
|
7
|
+
* Utility array that contains all `@progress/kendo-angular-ripple` related directives.
|
|
8
|
+
*/
|
|
9
|
+
export const KENDO_RIPPLE = [RippleContainerDirective];
|
package/esm2020/index.mjs
CHANGED
|
@@ -2,5 +2,6 @@
|
|
|
2
2
|
* Copyright © 2024 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
|
+
export * from './directives';
|
|
5
6
|
export { RippleContainerDirective } from './ripple-container.directive';
|
|
6
7
|
export { RippleModule } from './ripple.module';
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-ripple',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '16.
|
|
12
|
+
publishDate: 1721827996,
|
|
13
|
+
version: '16.6.0-develop.1',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -80,11 +80,12 @@ export class RippleContainerDirective {
|
|
|
80
80
|
}
|
|
81
81
|
}
|
|
82
82
|
RippleContainerDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RippleContainerDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
83
|
-
RippleContainerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: RippleContainerDirective, selector: "[kendoRippleContainer]", inputs: { disabled: "disabled" }, host: { properties: { "class.k-ripple-container": "this.containerClass" } }, ngImport: i0 });
|
|
83
|
+
RippleContainerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: RippleContainerDirective, isStandalone: true, selector: "[kendoRippleContainer]", inputs: { disabled: "disabled" }, host: { properties: { "class.k-ripple-container": "this.containerClass" } }, ngImport: i0 });
|
|
84
84
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RippleContainerDirective, decorators: [{
|
|
85
85
|
type: Directive,
|
|
86
86
|
args: [{
|
|
87
|
-
selector: '[kendoRippleContainer]'
|
|
87
|
+
selector: '[kendoRippleContainer]',
|
|
88
|
+
standalone: true
|
|
88
89
|
}]
|
|
89
90
|
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, propDecorators: { disabled: [{
|
|
90
91
|
type: Input
|
|
@@ -3,9 +3,10 @@
|
|
|
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';
|
|
6
|
-
import {
|
|
6
|
+
import { KENDO_RIPPLE } from './directives';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
|
-
|
|
8
|
+
import * as i1 from "./ripple-container.directive";
|
|
9
|
+
//IMPORTANT: NgModule export kept for backwards compatibility
|
|
9
10
|
/**
|
|
10
11
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
11
12
|
* definition for the Ripple directive.
|
|
@@ -40,12 +41,12 @@ const COMPONENT_DIRECTIVES = [RippleContainerDirective];
|
|
|
40
41
|
export class RippleModule {
|
|
41
42
|
}
|
|
42
43
|
RippleModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RippleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
43
|
-
RippleModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: RippleModule,
|
|
44
|
+
RippleModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: RippleModule, imports: [i1.RippleContainerDirective], exports: [i1.RippleContainerDirective] });
|
|
44
45
|
RippleModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RippleModule });
|
|
45
46
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RippleModule, decorators: [{
|
|
46
47
|
type: NgModule,
|
|
47
48
|
args: [{
|
|
48
|
-
|
|
49
|
-
exports: [
|
|
49
|
+
imports: [...KENDO_RIPPLE],
|
|
50
|
+
exports: [...KENDO_RIPPLE]
|
|
50
51
|
}]
|
|
51
52
|
}] });
|
|
@@ -15,8 +15,8 @@ const packageMetadata = {
|
|
|
15
15
|
name: '@progress/kendo-angular-ripple',
|
|
16
16
|
productName: 'Kendo UI for Angular',
|
|
17
17
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
18
|
-
publishDate:
|
|
19
|
-
version: '16.
|
|
18
|
+
publishDate: 1721827996,
|
|
19
|
+
version: '16.6.0-develop.1',
|
|
20
20
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
21
21
|
};
|
|
22
22
|
|
|
@@ -92,11 +92,12 @@ class RippleContainerDirective {
|
|
|
92
92
|
}
|
|
93
93
|
}
|
|
94
94
|
RippleContainerDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RippleContainerDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
95
|
-
RippleContainerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: RippleContainerDirective, selector: "[kendoRippleContainer]", inputs: { disabled: "disabled" }, host: { properties: { "class.k-ripple-container": "this.containerClass" } }, ngImport: i0 });
|
|
95
|
+
RippleContainerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: RippleContainerDirective, isStandalone: true, selector: "[kendoRippleContainer]", inputs: { disabled: "disabled" }, host: { properties: { "class.k-ripple-container": "this.containerClass" } }, ngImport: i0 });
|
|
96
96
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RippleContainerDirective, decorators: [{
|
|
97
97
|
type: Directive,
|
|
98
98
|
args: [{
|
|
99
|
-
selector: '[kendoRippleContainer]'
|
|
99
|
+
selector: '[kendoRippleContainer]',
|
|
100
|
+
standalone: true
|
|
100
101
|
}]
|
|
101
102
|
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, propDecorators: { disabled: [{
|
|
102
103
|
type: Input
|
|
@@ -105,7 +106,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
105
106
|
args: ['class.k-ripple-container']
|
|
106
107
|
}] } });
|
|
107
108
|
|
|
108
|
-
|
|
109
|
+
/**
|
|
110
|
+
* Utility array that contains all `@progress/kendo-angular-ripple` related directives.
|
|
111
|
+
*/
|
|
112
|
+
const KENDO_RIPPLE = [RippleContainerDirective];
|
|
113
|
+
|
|
114
|
+
//IMPORTANT: NgModule export kept for backwards compatibility
|
|
109
115
|
/**
|
|
110
116
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
111
117
|
* definition for the Ripple directive.
|
|
@@ -140,13 +146,13 @@ const COMPONENT_DIRECTIVES = [RippleContainerDirective];
|
|
|
140
146
|
class RippleModule {
|
|
141
147
|
}
|
|
142
148
|
RippleModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RippleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
143
|
-
RippleModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: RippleModule,
|
|
149
|
+
RippleModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: RippleModule, imports: [RippleContainerDirective], exports: [RippleContainerDirective] });
|
|
144
150
|
RippleModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RippleModule });
|
|
145
151
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RippleModule, decorators: [{
|
|
146
152
|
type: NgModule,
|
|
147
153
|
args: [{
|
|
148
|
-
|
|
149
|
-
exports: [
|
|
154
|
+
imports: [...KENDO_RIPPLE],
|
|
155
|
+
exports: [...KENDO_RIPPLE]
|
|
150
156
|
}]
|
|
151
157
|
}] });
|
|
152
158
|
|
|
@@ -154,5 +160,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
154
160
|
* Generated bundle index. Do not edit.
|
|
155
161
|
*/
|
|
156
162
|
|
|
157
|
-
export { RippleContainerDirective, RippleModule };
|
|
163
|
+
export { KENDO_RIPPLE, RippleContainerDirective, RippleModule };
|
|
158
164
|
|
|
@@ -15,8 +15,8 @@ const packageMetadata = {
|
|
|
15
15
|
name: '@progress/kendo-angular-ripple',
|
|
16
16
|
productName: 'Kendo UI for Angular',
|
|
17
17
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
18
|
-
publishDate:
|
|
19
|
-
version: '16.
|
|
18
|
+
publishDate: 1721827996,
|
|
19
|
+
version: '16.6.0-develop.1',
|
|
20
20
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
21
21
|
};
|
|
22
22
|
|
|
@@ -92,11 +92,12 @@ class RippleContainerDirective {
|
|
|
92
92
|
}
|
|
93
93
|
}
|
|
94
94
|
RippleContainerDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RippleContainerDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
95
|
-
RippleContainerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: RippleContainerDirective, selector: "[kendoRippleContainer]", inputs: { disabled: "disabled" }, host: { properties: { "class.k-ripple-container": "this.containerClass" } }, ngImport: i0 });
|
|
95
|
+
RippleContainerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: RippleContainerDirective, isStandalone: true, selector: "[kendoRippleContainer]", inputs: { disabled: "disabled" }, host: { properties: { "class.k-ripple-container": "this.containerClass" } }, ngImport: i0 });
|
|
96
96
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RippleContainerDirective, decorators: [{
|
|
97
97
|
type: Directive,
|
|
98
98
|
args: [{
|
|
99
|
-
selector: '[kendoRippleContainer]'
|
|
99
|
+
selector: '[kendoRippleContainer]',
|
|
100
|
+
standalone: true
|
|
100
101
|
}]
|
|
101
102
|
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, propDecorators: { disabled: [{
|
|
102
103
|
type: Input
|
|
@@ -105,7 +106,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
105
106
|
args: ['class.k-ripple-container']
|
|
106
107
|
}] } });
|
|
107
108
|
|
|
108
|
-
|
|
109
|
+
/**
|
|
110
|
+
* Utility array that contains all `@progress/kendo-angular-ripple` related directives.
|
|
111
|
+
*/
|
|
112
|
+
const KENDO_RIPPLE = [RippleContainerDirective];
|
|
113
|
+
|
|
114
|
+
//IMPORTANT: NgModule export kept for backwards compatibility
|
|
109
115
|
/**
|
|
110
116
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
111
117
|
* definition for the Ripple directive.
|
|
@@ -140,13 +146,13 @@ const COMPONENT_DIRECTIVES = [RippleContainerDirective];
|
|
|
140
146
|
class RippleModule {
|
|
141
147
|
}
|
|
142
148
|
RippleModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RippleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
143
|
-
RippleModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: RippleModule,
|
|
149
|
+
RippleModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: RippleModule, imports: [RippleContainerDirective], exports: [RippleContainerDirective] });
|
|
144
150
|
RippleModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RippleModule });
|
|
145
151
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RippleModule, decorators: [{
|
|
146
152
|
type: NgModule,
|
|
147
153
|
args: [{
|
|
148
|
-
|
|
149
|
-
exports: [
|
|
154
|
+
imports: [...KENDO_RIPPLE],
|
|
155
|
+
exports: [...KENDO_RIPPLE]
|
|
150
156
|
}]
|
|
151
157
|
}] });
|
|
152
158
|
|
|
@@ -154,5 +160,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
154
160
|
* Generated bundle index. Do not edit.
|
|
155
161
|
*/
|
|
156
162
|
|
|
157
|
-
export { RippleContainerDirective, RippleModule };
|
|
163
|
+
export { KENDO_RIPPLE, RippleContainerDirective, RippleModule };
|
|
158
164
|
|
package/index.d.ts
CHANGED
|
@@ -2,5 +2,6 @@
|
|
|
2
2
|
* Copyright © 2024 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
|
+
export * from './directives';
|
|
5
6
|
export { RippleContainerDirective } from './ripple-container.directive';
|
|
6
7
|
export { RippleModule } from './ripple.module';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-ripple",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.6.0-develop.1",
|
|
4
4
|
"description": "Ripple Package for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -24,12 +24,12 @@
|
|
|
24
24
|
"@angular/core": "15 - 18",
|
|
25
25
|
"@angular/platform-browser": "15 - 18",
|
|
26
26
|
"@progress/kendo-licensing": "^1.0.2",
|
|
27
|
-
"@progress/kendo-angular-common": "16.
|
|
27
|
+
"@progress/kendo-angular-common": "16.6.0-develop.1",
|
|
28
28
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"tslib": "^2.3.1",
|
|
32
|
-
"@progress/kendo-angular-schematics": "16.
|
|
32
|
+
"@progress/kendo-angular-schematics": "16.6.0-develop.1",
|
|
33
33
|
"@progress/kendo-ripple": "^1.0.1"
|
|
34
34
|
},
|
|
35
35
|
"schematics": "./schematics/collection.json",
|
|
@@ -39,5 +39,5 @@ export declare class RippleContainerDirective implements AfterViewInit, OnDestro
|
|
|
39
39
|
private removeListeners;
|
|
40
40
|
private registerListeners;
|
|
41
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<RippleContainerDirective, never>;
|
|
42
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<RippleContainerDirective, "[kendoRippleContainer]", never, { "disabled": "disabled"; }, {}, never, never,
|
|
42
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RippleContainerDirective, "[kendoRippleContainer]", never, { "disabled": "disabled"; }, {}, never, never, true, never>;
|
|
43
43
|
}
|
package/ripple.module.d.ts
CHANGED
|
@@ -37,6 +37,6 @@ import * as i1 from "./ripple-container.directive";
|
|
|
37
37
|
*/
|
|
38
38
|
export declare class RippleModule {
|
|
39
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<RippleModule, never>;
|
|
40
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<RippleModule, [typeof i1.RippleContainerDirective],
|
|
40
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<RippleModule, never, [typeof i1.RippleContainerDirective], [typeof i1.RippleContainerDirective]>;
|
|
41
41
|
static ɵinj: i0.ɵɵInjectorDeclaration<RippleModule>;
|
|
42
42
|
}
|