@progress/kendo-angular-utils 18.0.0-develop.11 → 18.0.0-develop.13
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();
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-utils',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '18.0.0-develop.
|
|
12
|
+
publishDate: 1737124904,
|
|
13
|
+
version: '18.0.0-develop.13',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -54,8 +54,8 @@ const packageMetadata = {
|
|
|
54
54
|
name: '@progress/kendo-angular-utils',
|
|
55
55
|
productName: 'Kendo UI for Angular',
|
|
56
56
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
57
|
-
publishDate:
|
|
58
|
-
version: '18.0.0-develop.
|
|
57
|
+
publishDate: 1737124904,
|
|
58
|
+
version: '18.0.0-develop.13',
|
|
59
59
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
60
60
|
};
|
|
61
61
|
|
|
@@ -2366,12 +2366,30 @@ const DEFAULT_ADAPTIVE_SETTINGS = {
|
|
|
2366
2366
|
medium: 768
|
|
2367
2367
|
};
|
|
2368
2368
|
/**
|
|
2369
|
-
*
|
|
2369
|
+
* 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.
|
|
2370
|
+
*
|
|
2371
|
+
* @example
|
|
2372
|
+
*
|
|
2373
|
+
* ```ts-no-run
|
|
2374
|
+
* // Import the AdaptiveService
|
|
2375
|
+
* import { AdaptiveService } from '@progress/kendo-angular-utils';
|
|
2376
|
+
*
|
|
2377
|
+
* // Define a standalone component
|
|
2378
|
+
* @Component({
|
|
2379
|
+
* selector: my-component,
|
|
2380
|
+
* standalone: true,
|
|
2381
|
+
* imports: [ ... ],
|
|
2382
|
+
* providers: [AdaptiveService, { provide: ADAPTIVE_SETTINGS , useValue: { small: 300 } }],
|
|
2383
|
+
* template: ...
|
|
2384
|
+
* })
|
|
2385
|
+
* export class AppComponent {}
|
|
2386
|
+
* ```
|
|
2370
2387
|
*/
|
|
2371
2388
|
class AdaptiveService {
|
|
2372
2389
|
_adaptiveSettings;
|
|
2373
2390
|
/**
|
|
2374
2391
|
* Notifies subscribers of the initial adaptive settings, and upon each call to `notify`.
|
|
2392
|
+
* @hidden
|
|
2375
2393
|
*/
|
|
2376
2394
|
changes = new BehaviorSubject(this.adaptiveSettings || { small: 500, medium: 700 });
|
|
2377
2395
|
subs = new Subscription();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-utils",
|
|
3
|
-
"version": "18.0.0-develop.
|
|
3
|
+
"version": "18.0.0-develop.13",
|
|
4
4
|
"description": "Kendo UI Angular utils component",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"@angular/core": "16 - 19",
|
|
24
24
|
"@angular/platform-browser": "16 - 19",
|
|
25
25
|
"@progress/kendo-licensing": "^1.0.2",
|
|
26
|
-
"@progress/kendo-angular-common": "18.0.0-develop.
|
|
26
|
+
"@progress/kendo-angular-common": "18.0.0-develop.13",
|
|
27
27
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"tslib": "^2.3.1",
|
|
31
|
-
"@progress/kendo-angular-schematics": "18.0.0-develop.
|
|
31
|
+
"@progress/kendo-angular-schematics": "18.0.0-develop.13",
|
|
32
32
|
"@progress/kendo-draggable-common": "^0.2.3"
|
|
33
33
|
},
|
|
34
34
|
"schematics": "./schematics/collection.json",
|