@progress/kendo-angular-utils 18.0.0-develop.9 → 18.0.1-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.
|
@@ -9,12 +9,30 @@ import { AdaptiveSettingsService } from './adaptive-settings.service';
|
|
|
9
9
|
import { AdaptiveSize } from './models/adaptive-size';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
/**
|
|
12
|
-
*
|
|
12
|
+
* The service responsible for handling changes in the adaptive settings. Should be included in the providers array when implementing the functionality in a standalone component.
|
|
13
|
+
*
|
|
14
|
+
* @example
|
|
15
|
+
*
|
|
16
|
+
* ```ts-no-run
|
|
17
|
+
* // Import the AdaptiveService
|
|
18
|
+
* import { AdaptiveService } from '@progress/kendo-angular-utils';
|
|
19
|
+
*
|
|
20
|
+
* // Define a standalone component
|
|
21
|
+
* @Component({
|
|
22
|
+
* selector: my-component,
|
|
23
|
+
* standalone: true,
|
|
24
|
+
* imports: [ ... ],
|
|
25
|
+
* providers: [AdaptiveService, { provide: ADAPTIVE_SETTINGS , useValue: { small: 300 } }],
|
|
26
|
+
* template: ...
|
|
27
|
+
* })
|
|
28
|
+
* export class AppComponent {}
|
|
29
|
+
* ```
|
|
13
30
|
*/
|
|
14
31
|
export declare class AdaptiveService implements OnDestroy {
|
|
15
32
|
private _adaptiveSettings;
|
|
16
33
|
/**
|
|
17
34
|
* Notifies subscribers of the initial adaptive settings, and upon each call to `notify`.
|
|
35
|
+
* @hidden
|
|
18
36
|
*/
|
|
19
37
|
readonly changes: Subject<AdaptiveSettings>;
|
|
20
38
|
private subs;
|
|
@@ -15,12 +15,30 @@ const DEFAULT_ADAPTIVE_SETTINGS = {
|
|
|
15
15
|
medium: 768
|
|
16
16
|
};
|
|
17
17
|
/**
|
|
18
|
-
*
|
|
18
|
+
* The service responsible for handling changes in the adaptive settings. Should be included in the providers array when implementing the functionality in a standalone component.
|
|
19
|
+
*
|
|
20
|
+
* @example
|
|
21
|
+
*
|
|
22
|
+
* ```ts-no-run
|
|
23
|
+
* // Import the AdaptiveService
|
|
24
|
+
* import { AdaptiveService } from '@progress/kendo-angular-utils';
|
|
25
|
+
*
|
|
26
|
+
* // Define a standalone component
|
|
27
|
+
* @Component({
|
|
28
|
+
* selector: my-component,
|
|
29
|
+
* standalone: true,
|
|
30
|
+
* imports: [ ... ],
|
|
31
|
+
* providers: [AdaptiveService, { provide: ADAPTIVE_SETTINGS , useValue: { small: 300 } }],
|
|
32
|
+
* template: ...
|
|
33
|
+
* })
|
|
34
|
+
* export class AppComponent {}
|
|
35
|
+
* ```
|
|
19
36
|
*/
|
|
20
37
|
export class AdaptiveService {
|
|
21
38
|
_adaptiveSettings;
|
|
22
39
|
/**
|
|
23
40
|
* Notifies subscribers of the initial adaptive settings, and upon each call to `notify`.
|
|
41
|
+
* @hidden
|
|
24
42
|
*/
|
|
25
43
|
changes = new BehaviorSubject(this.adaptiveSettings || { small: 500, medium: 700 });
|
|
26
44
|
subs = new Subscription();
|
|
@@ -8,8 +8,9 @@
|
|
|
8
8
|
export const packageMetadata = {
|
|
9
9
|
name: '@progress/kendo-angular-utils',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
productCode: 'KENDOUIANGULAR',
|
|
12
|
+
productCodes: ['KENDOUIANGULAR'],
|
|
13
|
+
publishDate: 1737624664,
|
|
14
|
+
version: '18.0.1-develop.1',
|
|
14
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
16
|
};
|
|
@@ -53,9 +53,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
53
53
|
const packageMetadata = {
|
|
54
54
|
name: '@progress/kendo-angular-utils',
|
|
55
55
|
productName: 'Kendo UI for Angular',
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
56
|
+
productCode: 'KENDOUIANGULAR',
|
|
57
|
+
productCodes: ['KENDOUIANGULAR'],
|
|
58
|
+
publishDate: 1737624664,
|
|
59
|
+
version: '18.0.1-develop.1',
|
|
59
60
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
60
61
|
};
|
|
61
62
|
|
|
@@ -2366,12 +2367,30 @@ const DEFAULT_ADAPTIVE_SETTINGS = {
|
|
|
2366
2367
|
medium: 768
|
|
2367
2368
|
};
|
|
2368
2369
|
/**
|
|
2369
|
-
*
|
|
2370
|
+
* The service responsible for handling changes in the adaptive settings. Should be included in the providers array when implementing the functionality in a standalone component.
|
|
2371
|
+
*
|
|
2372
|
+
* @example
|
|
2373
|
+
*
|
|
2374
|
+
* ```ts-no-run
|
|
2375
|
+
* // Import the AdaptiveService
|
|
2376
|
+
* import { AdaptiveService } from '@progress/kendo-angular-utils';
|
|
2377
|
+
*
|
|
2378
|
+
* // Define a standalone component
|
|
2379
|
+
* @Component({
|
|
2380
|
+
* selector: my-component,
|
|
2381
|
+
* standalone: true,
|
|
2382
|
+
* imports: [ ... ],
|
|
2383
|
+
* providers: [AdaptiveService, { provide: ADAPTIVE_SETTINGS , useValue: { small: 300 } }],
|
|
2384
|
+
* template: ...
|
|
2385
|
+
* })
|
|
2386
|
+
* export class AppComponent {}
|
|
2387
|
+
* ```
|
|
2370
2388
|
*/
|
|
2371
2389
|
class AdaptiveService {
|
|
2372
2390
|
_adaptiveSettings;
|
|
2373
2391
|
/**
|
|
2374
2392
|
* Notifies subscribers of the initial adaptive settings, and upon each call to `notify`.
|
|
2393
|
+
* @hidden
|
|
2375
2394
|
*/
|
|
2376
2395
|
changes = new BehaviorSubject(this.adaptiveSettings || { small: 500, medium: 700 });
|
|
2377
2396
|
subs = new Subscription();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-utils",
|
|
3
|
-
"version": "18.0.
|
|
3
|
+
"version": "18.0.1-develop.1",
|
|
4
4
|
"description": "Kendo UI Angular utils component",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -15,7 +15,13 @@
|
|
|
15
15
|
"Progress"
|
|
16
16
|
],
|
|
17
17
|
"@progress": {
|
|
18
|
-
"friendlyName": "Utils"
|
|
18
|
+
"friendlyName": "Utils",
|
|
19
|
+
"package": {
|
|
20
|
+
"productName": "Kendo UI for Angular",
|
|
21
|
+
"productCode": "KENDOUIANGULAR",
|
|
22
|
+
"publishDate": 1737624664,
|
|
23
|
+
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
24
|
+
}
|
|
19
25
|
},
|
|
20
26
|
"peerDependencies": {
|
|
21
27
|
"@angular/animations": "16 - 19",
|
|
@@ -23,12 +29,12 @@
|
|
|
23
29
|
"@angular/core": "16 - 19",
|
|
24
30
|
"@angular/platform-browser": "16 - 19",
|
|
25
31
|
"@progress/kendo-licensing": "^1.0.2",
|
|
26
|
-
"@progress/kendo-angular-common": "18.0.
|
|
32
|
+
"@progress/kendo-angular-common": "18.0.1-develop.1",
|
|
27
33
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
28
34
|
},
|
|
29
35
|
"dependencies": {
|
|
30
36
|
"tslib": "^2.3.1",
|
|
31
|
-
"@progress/kendo-angular-schematics": "18.0.
|
|
37
|
+
"@progress/kendo-angular-schematics": "18.0.1-develop.1",
|
|
32
38
|
"@progress/kendo-draggable-common": "^0.2.3"
|
|
33
39
|
},
|
|
34
40
|
"schematics": "./schematics/collection.json",
|