@progress/kendo-angular-webmcp 25.0.0-develop.2 → 25.0.0-develop.21
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/fesm2022/progress-kendo-angular-webmcp.mjs +11 -12
- package/index.d.ts +2 -2
- package/package-metadata.mjs +2 -2
- package/package.json +32 -32
|
@@ -17,8 +17,8 @@ const packageMetadata = {
|
|
|
17
17
|
productName: 'Kendo UI for Angular',
|
|
18
18
|
productCode: 'KENDOUIANGULAR',
|
|
19
19
|
productCodes: ['KENDOUIANGULAR'],
|
|
20
|
-
publishDate:
|
|
21
|
-
version: '25.0.0-develop.
|
|
20
|
+
publishDate: 1785852744,
|
|
21
|
+
version: '25.0.0-develop.21',
|
|
22
22
|
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',
|
|
23
23
|
};
|
|
24
24
|
|
|
@@ -4729,7 +4729,7 @@ class WebMcpDirective {
|
|
|
4729
4729
|
if (!this.isBrowserWithMcp()) {
|
|
4730
4730
|
return;
|
|
4731
4731
|
}
|
|
4732
|
-
this.modelContext =
|
|
4732
|
+
this.modelContext = document.modelContext;
|
|
4733
4733
|
this.registerAll();
|
|
4734
4734
|
}
|
|
4735
4735
|
ngOnChanges(changes) {
|
|
@@ -4782,13 +4782,12 @@ class WebMcpDirective {
|
|
|
4782
4782
|
}
|
|
4783
4783
|
isBrowserWithMcp() {
|
|
4784
4784
|
return isDocumentAvailable()
|
|
4785
|
-
&&
|
|
4786
|
-
&& !!navigator.modelContext;
|
|
4785
|
+
&& !!document.modelContext;
|
|
4787
4786
|
}
|
|
4788
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4789
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
4787
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: WebMcpDirective, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: KENDO_WEBMCP_HOST, host: true, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4788
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.26", type: WebMcpDirective, isStandalone: true, selector: "[kendoWebMcp]", inputs: { config: ["kendoWebMcp", "config"] }, usesOnChanges: true, ngImport: i0 });
|
|
4790
4789
|
}
|
|
4791
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4790
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: WebMcpDirective, decorators: [{
|
|
4792
4791
|
type: Directive,
|
|
4793
4792
|
args: [{
|
|
4794
4793
|
selector: '[kendoWebMcp]',
|
|
@@ -4853,11 +4852,11 @@ const KENDO_WEBMCP = [
|
|
|
4853
4852
|
* ```
|
|
4854
4853
|
*/
|
|
4855
4854
|
class WebMcpModule {
|
|
4856
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4857
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.
|
|
4858
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.
|
|
4855
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: WebMcpModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4856
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.26", ngImport: i0, type: WebMcpModule, imports: [WebMcpDirective], exports: [WebMcpDirective] });
|
|
4857
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: WebMcpModule });
|
|
4859
4858
|
}
|
|
4860
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4859
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImport: i0, type: WebMcpModule, decorators: [{
|
|
4861
4860
|
type: NgModule,
|
|
4862
4861
|
args: [{
|
|
4863
4862
|
imports: [...KENDO_WEBMCP],
|
package/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import { OnInit, OnChanges, OnDestroy, ElementRef, NgZone, SimpleChanges } from
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* Type declarations for the Web Model Context Protocol (MCP) browser API.
|
|
10
|
-
* Available in Chrome
|
|
10
|
+
* Available via `document.modelContext` in Chrome 150+.
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
13
|
* @hidden
|
|
@@ -28,7 +28,7 @@ interface ModelContext {
|
|
|
28
28
|
};
|
|
29
29
|
}
|
|
30
30
|
declare global {
|
|
31
|
-
interface
|
|
31
|
+
interface Document {
|
|
32
32
|
modelContext?: ModelContext;
|
|
33
33
|
}
|
|
34
34
|
}
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "25.0.0-develop.
|
|
10
|
+
"publishDate": 1785852744,
|
|
11
|
+
"version": "25.0.0-develop.21",
|
|
12
12
|
"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"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-webmcp",
|
|
3
|
-
"version": "25.0.0-develop.
|
|
3
|
+
"version": "25.0.0-develop.21",
|
|
4
4
|
"description": "Web MCP Tools for Kendo UI for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"package": {
|
|
22
22
|
"productName": "Kendo UI for Angular",
|
|
23
23
|
"productCode": "KENDOUIANGULAR",
|
|
24
|
-
"publishDate":
|
|
24
|
+
"publishDate": 1785852744,
|
|
25
25
|
"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"
|
|
26
26
|
}
|
|
27
27
|
},
|
|
@@ -29,35 +29,35 @@
|
|
|
29
29
|
"@angular/common": "20 - 22",
|
|
30
30
|
"@angular/core": "20 - 22",
|
|
31
31
|
"@progress/kendo-licensing": "^1.11.0",
|
|
32
|
-
"@progress/kendo-angular-buttons": "25.0.0-develop.
|
|
33
|
-
"@progress/kendo-angular-charts": "25.0.0-develop.
|
|
34
|
-
"@progress/kendo-angular-common": "25.0.0-develop.
|
|
35
|
-
"@progress/kendo-angular-conversational-ui": "25.0.0-develop.
|
|
36
|
-
"@progress/kendo-angular-dateinputs": "25.0.0-develop.
|
|
37
|
-
"@progress/kendo-angular-dialog": "25.0.0-develop.
|
|
38
|
-
"@progress/kendo-angular-dropdowns": "25.0.0-develop.
|
|
39
|
-
"@progress/kendo-angular-editor": "25.0.0-develop.
|
|
40
|
-
"@progress/kendo-angular-gantt": "25.0.0-develop.
|
|
41
|
-
"@progress/kendo-angular-gauges": "25.0.0-develop.
|
|
42
|
-
"@progress/kendo-angular-grid": "25.0.0-develop.
|
|
43
|
-
"@progress/kendo-angular-indicators": "25.0.0-develop.
|
|
44
|
-
"@progress/kendo-angular-inputs": "25.0.0-develop.
|
|
45
|
-
"@progress/kendo-angular-layout": "25.0.0-develop.
|
|
46
|
-
"@progress/kendo-angular-listbox": "25.0.0-develop.
|
|
47
|
-
"@progress/kendo-angular-listview": "25.0.0-develop.
|
|
48
|
-
"@progress/kendo-angular-map": "25.0.0-develop.
|
|
49
|
-
"@progress/kendo-angular-menu": "25.0.0-develop.
|
|
50
|
-
"@progress/kendo-angular-notification": "25.0.0-develop.
|
|
51
|
-
"@progress/kendo-angular-pager": "25.0.0-develop.
|
|
52
|
-
"@progress/kendo-angular-pivotgrid": "25.0.0-develop.
|
|
53
|
-
"@progress/kendo-angular-scheduler": "25.0.0-develop.
|
|
54
|
-
"@progress/kendo-angular-scrollview": "25.0.0-develop.
|
|
55
|
-
"@progress/kendo-angular-sortable": "25.0.0-develop.
|
|
56
|
-
"@progress/kendo-angular-spreadsheet": "25.0.0-develop.
|
|
57
|
-
"@progress/kendo-angular-toolbar": "25.0.0-develop.
|
|
58
|
-
"@progress/kendo-angular-treelist": "25.0.0-develop.
|
|
59
|
-
"@progress/kendo-angular-treeview": "25.0.0-develop.
|
|
60
|
-
"@progress/kendo-angular-upload": "25.0.0-develop.
|
|
32
|
+
"@progress/kendo-angular-buttons": "25.0.0-develop.21",
|
|
33
|
+
"@progress/kendo-angular-charts": "25.0.0-develop.21",
|
|
34
|
+
"@progress/kendo-angular-common": "25.0.0-develop.21",
|
|
35
|
+
"@progress/kendo-angular-conversational-ui": "25.0.0-develop.21",
|
|
36
|
+
"@progress/kendo-angular-dateinputs": "25.0.0-develop.21",
|
|
37
|
+
"@progress/kendo-angular-dialog": "25.0.0-develop.21",
|
|
38
|
+
"@progress/kendo-angular-dropdowns": "25.0.0-develop.21",
|
|
39
|
+
"@progress/kendo-angular-editor": "25.0.0-develop.21",
|
|
40
|
+
"@progress/kendo-angular-gantt": "25.0.0-develop.21",
|
|
41
|
+
"@progress/kendo-angular-gauges": "25.0.0-develop.21",
|
|
42
|
+
"@progress/kendo-angular-grid": "25.0.0-develop.21",
|
|
43
|
+
"@progress/kendo-angular-indicators": "25.0.0-develop.21",
|
|
44
|
+
"@progress/kendo-angular-inputs": "25.0.0-develop.21",
|
|
45
|
+
"@progress/kendo-angular-layout": "25.0.0-develop.21",
|
|
46
|
+
"@progress/kendo-angular-listbox": "25.0.0-develop.21",
|
|
47
|
+
"@progress/kendo-angular-listview": "25.0.0-develop.21",
|
|
48
|
+
"@progress/kendo-angular-map": "25.0.0-develop.21",
|
|
49
|
+
"@progress/kendo-angular-menu": "25.0.0-develop.21",
|
|
50
|
+
"@progress/kendo-angular-notification": "25.0.0-develop.21",
|
|
51
|
+
"@progress/kendo-angular-pager": "25.0.0-develop.21",
|
|
52
|
+
"@progress/kendo-angular-pivotgrid": "25.0.0-develop.21",
|
|
53
|
+
"@progress/kendo-angular-scheduler": "25.0.0-develop.21",
|
|
54
|
+
"@progress/kendo-angular-scrollview": "25.0.0-develop.21",
|
|
55
|
+
"@progress/kendo-angular-sortable": "25.0.0-develop.21",
|
|
56
|
+
"@progress/kendo-angular-spreadsheet": "25.0.0-develop.21",
|
|
57
|
+
"@progress/kendo-angular-toolbar": "25.0.0-develop.21",
|
|
58
|
+
"@progress/kendo-angular-treelist": "25.0.0-develop.21",
|
|
59
|
+
"@progress/kendo-angular-treeview": "25.0.0-develop.21",
|
|
60
|
+
"@progress/kendo-angular-upload": "25.0.0-develop.21",
|
|
61
61
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
62
62
|
},
|
|
63
63
|
"peerDependenciesMeta": {
|
|
@@ -149,7 +149,7 @@
|
|
|
149
149
|
"dependencies": {
|
|
150
150
|
"@progress/kendo-file-saver": "^1.1.1",
|
|
151
151
|
"@progress/kendo-ooxml": "^1.9.0",
|
|
152
|
-
"@progress/kendo-angular-schematics": "25.0.0-develop.
|
|
152
|
+
"@progress/kendo-angular-schematics": "25.0.0-develop.21",
|
|
153
153
|
"tslib": "^2.3.1"
|
|
154
154
|
},
|
|
155
155
|
"schematics": "./schematics/collection.json",
|