@smart-webcomponents-angular/window 15.0.2 → 16.0.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/esm2020/window/smart.window.mjs +3 -3
- package/fesm2015/smart-webcomponents-angular-window.mjs +2 -2
- package/fesm2015/smart-webcomponents-angular-window.mjs.map +1 -1
- package/fesm2020/smart-webcomponents-angular-window.mjs +2 -2
- package/fesm2020/smart-webcomponents-angular-window.mjs.map +1 -1
- package/index.d.ts +184 -16
- package/package.json +18 -19
- package/source/modules/smart.window.js +1 -1
- package/source/smart.button.js +1 -1
- package/source/smart.combobox.js +1 -1
- package/source/smart.dropdownlist.js +2 -2
- package/source/smart.element.js +2 -2
- package/source/smart.listbox.js +2 -2
- package/source/smart.multilinetextbox.js +1 -1
- package/source/smart.progressbar.js +1 -1
- package/source/smart.scrollbar.js +1 -1
- package/source/smart.textbox.js +1 -1
- package/source/smart.window.js +2 -2
- package/styles/font/smart-icons.eot +0 -0
- package/styles/font/smart-icons.svg +19 -1
- package/styles/font/smart-icons.ttf +0 -0
- package/styles/font/smart-icons.woff +0 -0
- package/styles/font/smart-icons.woff2 +0 -0
- package/styles/smart.base.css +2 -2
- package/styles/smart.common.css +1 -1
- package/styles/smart.window.css +4 -4
- package/window/smart-webcomponents-angular-window.d.ts +1 -1
- package/window/smart.window.d.ts +1 -1
- package/demo/angular.json +0 -127
- package/demo/package.json +0 -53
- package/demo/src/app/app.component.css +0 -21
- package/demo/src/app/app.component.html +0 -34
- package/demo/src/assets/fonts.css +0 -13
- package/demo/src/assets/styles.css +0 -12
- package/demo/src/index.html +0 -42
- package/demo/src/tsconfig.app.json +0 -15
- package/demo/src/tsconfig.json +0 -23
- package/start.js +0 -5
package/window/smart.window.d.ts
CHANGED
|
@@ -363,5 +363,5 @@ export declare class WindowComponent extends BaseElement implements OnInit, Afte
|
|
|
363
363
|
/** @description Remove event listeners. */
|
|
364
364
|
private unlisten;
|
|
365
365
|
static ɵfac: i0.ɵɵFactoryDeclaration<WindowComponent, never>;
|
|
366
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<WindowComponent, "smart-window, [smart-window], smart-tabs-window, smart-prompt-window, smart-
|
|
366
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<WindowComponent, "smart-window, [smart-window], smart-tabs-window, smart-prompt-window, smart-multiline-prompt-window, smart-dialog-window, smart-alert-window, smart-progress-window, smart-wait-window", ["smart-window"], { "addNewTab": "addNewTab"; "animation": "animation"; "autoCapitalize": "autoCapitalize"; "autoExpand": "autoExpand"; "cancelLabel": "cancelLabel"; "completeLabel": "completeLabel"; "confirmLabel": "confirmLabel"; "collapsed": "collapsed"; "closeOnMaskClick": "closeOnMaskClick"; "dataSource": "dataSource"; "disabled": "disabled"; "disableSnap": "disableSnap"; "disableEscape": "disableEscape"; "disableKeyboard": "disableKeyboard"; "displayMode": "displayMode"; "dropPosition": "dropPosition"; "formatFunction": "formatFunction"; "footerPosition": "footerPosition"; "footerTemplate": "footerTemplate"; "headerButtons": "headerButtons"; "headerTemplate": "headerTemplate"; "headerPosition": "headerPosition"; "hint": "hint"; "indeterminate": "indeterminate"; "inverted": "inverted"; "label": "label"; "liveResize": "liveResize"; "layout": "layout"; "locale": "locale"; "locked": "locked"; "localizeFormatFunction": "localizeFormatFunction"; "maximized": "maximized"; "messages": "messages"; "modal": "modal"; "max": "max"; "min": "min"; "minimized": "minimized"; "maxLength": "maxLength"; "minLength": "minLength"; "opened": "opened"; "pinned": "pinned"; "placeholder": "placeholder"; "promptLabel": "promptLabel"; "readonly": "readonly"; "resizeIndicator": "resizeIndicator"; "resizeMode": "resizeMode"; "rightToLeft": "rightToLeft"; "required": "required"; "requiredMessage": "requiredMessage"; "selectAllOnFocus": "selectAllOnFocus"; "selectedIndex": "selectedIndex"; "selectionMode": "selectionMode"; "selectionEnd": "selectionEnd"; "selectionStart": "selectionStart"; "showProgressValue": "showProgressValue"; "siblings": "siblings"; "size": "size"; "spellCheck": "spellCheck"; "tabCloseButtons": "tabCloseButtons"; "tabCloseButtonMode": "tabCloseButtonMode"; "tabOverflow": "tabOverflow"; "tabPosition": "tabPosition"; "tabScrollButtonsPosition": "tabScrollButtonsPosition"; "tabTextOrientation": "tabTextOrientation"; "theme": "theme"; "unfocusable": "unfocusable"; "value": "value"; "windowParent": "windowParent"; "wrap": "wrap"; }, { "onOpening": "onOpening"; "onOpen": "onOpen"; "onClosing": "onClosing"; "onClose": "onClose"; "onCollapse": "onCollapse"; "onDragEnd": "onDragEnd"; "onDragStart": "onDragStart"; "onExpand": "onExpand"; "onMaximize": "onMaximize"; "onMinimize": "onMinimize"; "onResizeEnd": "onResizeEnd"; "onResizeStart": "onResizeStart"; "onRestore": "onRestore"; }, never>;
|
|
367
367
|
}
|
package/demo/angular.json
DELETED
|
@@ -1,127 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
|
3
|
-
"version": 1,
|
|
4
|
-
"newProjectRoot": "projects",
|
|
5
|
-
"projects": {
|
|
6
|
-
"demo": {
|
|
7
|
-
"root": "",
|
|
8
|
-
"sourceRoot": "src",
|
|
9
|
-
"projectType": "application",
|
|
10
|
-
"prefix": "app",
|
|
11
|
-
"schematics": {},
|
|
12
|
-
"architect": {
|
|
13
|
-
"build": {
|
|
14
|
-
"builder": "@angular-devkit/build-angular:browser",
|
|
15
|
-
"options": {
|
|
16
|
-
"outputPath": "dist/demo",
|
|
17
|
-
"index": "src/index.html",
|
|
18
|
-
"main": "src/main.ts",
|
|
19
|
-
"polyfills": "src/polyfills.ts",
|
|
20
|
-
"tsConfig": "src/tsconfig.app.json",
|
|
21
|
-
"assets": [
|
|
22
|
-
"src/assets"
|
|
23
|
-
],
|
|
24
|
-
"styles": [
|
|
25
|
-
"./node_modules/@smart-webcomponents-angular/button/styles/smart.base.css",
|
|
26
|
-
"./node_modules/@smart-webcomponents-angular/button/styles/smart.button.css",
|
|
27
|
-
"./node_modules/@smart-webcomponents-angular/window/styles/smart.window.css",
|
|
28
|
-
"./node_modules/@smart-webcomponents-angular/button/styles/smart.common.css",
|
|
29
|
-
"src/assets/fonts.css",
|
|
30
|
-
"src/assets/styles.css"
|
|
31
|
-
],
|
|
32
|
-
"scripts": []
|
|
33
|
-
},
|
|
34
|
-
"configurations": {
|
|
35
|
-
"production": {
|
|
36
|
-
"fileReplacements": [
|
|
37
|
-
{
|
|
38
|
-
"replace": "src/environments/environment.ts",
|
|
39
|
-
"with": "src/environments/environment.prod.ts"
|
|
40
|
-
}
|
|
41
|
-
],
|
|
42
|
-
"optimization": false,
|
|
43
|
-
"outputHashing": "all",
|
|
44
|
-
"sourceMap": false,
|
|
45
|
-
"extractCss": true,
|
|
46
|
-
"namedChunks": false,
|
|
47
|
-
"aot": true,
|
|
48
|
-
"extractLicenses": true,
|
|
49
|
-
"vendorChunk": false,
|
|
50
|
-
"buildOptimizer": false
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
},
|
|
54
|
-
"serve": {
|
|
55
|
-
"builder": "@angular-devkit/build-angular:dev-server",
|
|
56
|
-
"options": {
|
|
57
|
-
"browserTarget": "demo:build"
|
|
58
|
-
},
|
|
59
|
-
"configurations": {
|
|
60
|
-
"production": {
|
|
61
|
-
"browserTarget": "demo:build:production"
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
},
|
|
65
|
-
"extract-i18n": {
|
|
66
|
-
"builder": "@angular-devkit/build-angular:extract-i18n",
|
|
67
|
-
"options": {
|
|
68
|
-
"browserTarget": "demo:build"
|
|
69
|
-
}
|
|
70
|
-
},
|
|
71
|
-
"test": {
|
|
72
|
-
"builder": "@angular-devkit/build-angular:karma",
|
|
73
|
-
"options": {
|
|
74
|
-
"main": "src/test.ts",
|
|
75
|
-
"polyfills": "src/polyfills.ts",
|
|
76
|
-
"tsConfig": "src/tsconfig.spec.json",
|
|
77
|
-
"karmaConfig": "src/karma.conf.js",
|
|
78
|
-
"styles": [
|
|
79
|
-
"styles.css"
|
|
80
|
-
],
|
|
81
|
-
"scripts": [],
|
|
82
|
-
"assets": [
|
|
83
|
-
"src/favicon.ico",
|
|
84
|
-
"src/assets"
|
|
85
|
-
]
|
|
86
|
-
}
|
|
87
|
-
},
|
|
88
|
-
"lint": {
|
|
89
|
-
"builder": "@angular-devkit/build-angular:tslint",
|
|
90
|
-
"options": {
|
|
91
|
-
"tsConfig": [
|
|
92
|
-
"src/tsconfig.app.json",
|
|
93
|
-
"src/tsconfig.spec.json"
|
|
94
|
-
],
|
|
95
|
-
"exclude": [
|
|
96
|
-
"**/node_modules/**"
|
|
97
|
-
]
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
},
|
|
102
|
-
"demo-e2e": {
|
|
103
|
-
"root": "e2e/",
|
|
104
|
-
"projectType": "application",
|
|
105
|
-
"architect": {
|
|
106
|
-
"e2e": {
|
|
107
|
-
"builder": "@angular-devkit/build-angular:protractor",
|
|
108
|
-
"options": {
|
|
109
|
-
"protractorConfig": "e2e/protractor.conf.js",
|
|
110
|
-
"devServerTarget": "demo:serve"
|
|
111
|
-
}
|
|
112
|
-
},
|
|
113
|
-
"lint": {
|
|
114
|
-
"builder": "@angular-devkit/build-angular:tslint",
|
|
115
|
-
"options": {
|
|
116
|
-
"tsConfig": "e2e/tsconfig.e2e.json",
|
|
117
|
-
"exclude": [
|
|
118
|
-
"**/node_modules/**"
|
|
119
|
-
]
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
},
|
|
125
|
-
"defaultProject": "demo"
|
|
126
|
-
}
|
|
127
|
-
|
package/demo/package.json
DELETED
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "angular-window-basic",
|
|
3
|
-
"description": "Angular window basic example. This example demonstrates commercial components by jQWidgets(https://www.jqwidgets.com/license/)",
|
|
4
|
-
"version": "1.0.0",
|
|
5
|
-
"homepage": "https://www.htmlelements.com/",
|
|
6
|
-
"dependencies": {
|
|
7
|
-
"@angular/animations": "^11.2.3",
|
|
8
|
-
"@angular/elements": "^11.2.3",
|
|
9
|
-
"@angular/common": "^11.2.3",
|
|
10
|
-
"@angular/compiler": "^11.2.3",
|
|
11
|
-
"@angular/core": "^11.2.3",
|
|
12
|
-
"@angular/forms": "^11.2.3",
|
|
13
|
-
"@angular/platform-browser": "^11.2.3",
|
|
14
|
-
"@angular/platform-browser-dynamic": "^11.2.3",
|
|
15
|
-
"@angular/router": "^11.2.3",
|
|
16
|
-
"@types/jasmine": "^3.6.6",
|
|
17
|
-
"@types/jasminewd2": "^2.0.8",
|
|
18
|
-
"@types/node": "^14.14.31",
|
|
19
|
-
"core-js": "3.9.1",
|
|
20
|
-
"moment": "^2.29.1",
|
|
21
|
-
"@smart-webcomponents-angular/button": "9.2.22",
|
|
22
|
-
"@smart-webcomponents-angular/window": "9.2.22",
|
|
23
|
-
"rxjs": "^6.6.6",
|
|
24
|
-
"zone.js": "^0.11.4"
|
|
25
|
-
},
|
|
26
|
-
"scripts": {
|
|
27
|
-
"ng": "ng",
|
|
28
|
-
"start": "ng serve",
|
|
29
|
-
"build": "ng build",
|
|
30
|
-
"test": "ng test",
|
|
31
|
-
"lint": "ng lint",
|
|
32
|
-
"e2e": "ng e2e"
|
|
33
|
-
},
|
|
34
|
-
"devDependencies": {
|
|
35
|
-
"@angular-devkit/build-angular": "~0.901.1",
|
|
36
|
-
"@angular/cli": "~11.2.3",
|
|
37
|
-
"@angular/compiler-cli": "~11.2.3",
|
|
38
|
-
"@angular/language-service": "~11.2.3",
|
|
39
|
-
"@types/node": "^14.14.35",
|
|
40
|
-
"codelyzer": "^5.1.2",
|
|
41
|
-
"jasmine-core": "~3.5.0",
|
|
42
|
-
"jasmine-spec-reporter": "~4.2.1",
|
|
43
|
-
"karma": "~4.4.1",
|
|
44
|
-
"karma-chrome-launcher": "~3.1.0",
|
|
45
|
-
"karma-coverage-istanbul-reporter": "~2.1.0",
|
|
46
|
-
"karma-jasmine": "~3.0.1",
|
|
47
|
-
"karma-jasmine-html-reporter": "^1.4.2",
|
|
48
|
-
"protractor": "~5.4.3",
|
|
49
|
-
"ts-node": "~8.3.0",
|
|
50
|
-
"tslint": "~6.1.0",
|
|
51
|
-
"typescript": "~4.1.5"
|
|
52
|
-
}
|
|
53
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
.smart-window #article {
|
|
2
|
-
overflow: auto;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
@media screen and (max-width: 700px) {
|
|
6
|
-
.smart-window {
|
|
7
|
-
width: 90% !important;
|
|
8
|
-
left: 5% !important;
|
|
9
|
-
top: 5px !important;
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
app-root {
|
|
14
|
-
display: block;
|
|
15
|
-
width: 100vw;
|
|
16
|
-
height: 100vh;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
body {
|
|
20
|
-
margin: 0 auto;
|
|
21
|
-
}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
<smart-button #button (onClick)="onButtonClick($event)" id="openButton">Open/Close</smart-button>
|
|
2
|
-
<smart-window #window [opened]="true" [label]="'Window 1'">
|
|
3
|
-
<div id="article">
|
|
4
|
-
<section>
|
|
5
|
-
<h3>What is Lorem Ipsum?</h3>
|
|
6
|
-
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.
|
|
7
|
-
Lorem Ipsum has been the industry's standard dummy text ever since the
|
|
8
|
-
1500s, when an unknown printer took a galley of type and scrambled it to
|
|
9
|
-
make a type specimen book. It has survived not only five centuries, but
|
|
10
|
-
also the leap into electronic typesetting, remaining essentially unchanged.
|
|
11
|
-
It was popularised in the 1960s with the release of Letraset sheets containing
|
|
12
|
-
Lorem Ipsum passages, and more recently with desktop publishing software
|
|
13
|
-
like Aldus PageMaker including versions of Lorem Ipsum.</p>
|
|
14
|
-
</section>
|
|
15
|
-
<section>
|
|
16
|
-
<h3>Where does it come from?</h3>
|
|
17
|
-
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It
|
|
18
|
-
has roots in a piece of classical Latin literature from 45 BC, making it
|
|
19
|
-
over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney
|
|
20
|
-
College in Virginia, looked up one of the more obscure Latin words, consectetur,
|
|
21
|
-
from a Lorem Ipsum passage, and going through the cites of the word in
|
|
22
|
-
classical literature, discovered the undoubtable source. Lorem Ipsum comes
|
|
23
|
-
from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The
|
|
24
|
-
Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a
|
|
25
|
-
treatise on the theory of ethics, very popular during the Renaissance.
|
|
26
|
-
The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from
|
|
27
|
-
a line in section 1.10.32. The standard chunk of Lorem Ipsum used since
|
|
28
|
-
the 1500s is reproduced below for those interested. Sections 1.10.32 and
|
|
29
|
-
1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced
|
|
30
|
-
in their exact original form, accompanied by English versions from the
|
|
31
|
-
1914 translation by H. Rackham.</p>
|
|
32
|
-
</section>
|
|
33
|
-
</div>
|
|
34
|
-
</smart-window>
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
@font-face {
|
|
2
|
-
font-family: "smart-icons";
|
|
3
|
-
src: url("https://raw.githubusercontent.com/HTMLElements/smart-webcomponents-angular/master/source/styles/font/smart-icons.eot");
|
|
4
|
-
src:
|
|
5
|
-
url("https://raw.githubusercontent.com/HTMLElements/smart-webcomponents-angular/master/source/styles/font/smart-icons.woff2")
|
|
6
|
-
format("woff2"),
|
|
7
|
-
url("https://raw.githubusercontent.com/HTMLElements/smart-webcomponents-angular/master/source/styles/font/smart-icons.woff")
|
|
8
|
-
format("woff"),
|
|
9
|
-
url("https://raw.githubusercontent.com/HTMLElements/smart-webcomponents-angular/master/source/styles/font/smart-icons.ttf")
|
|
10
|
-
format("truetype");
|
|
11
|
-
font-weight: normal;
|
|
12
|
-
font-style: normal;
|
|
13
|
-
}
|
package/demo/src/index.html
DELETED
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
<!doctype html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<title>Angular Window Basic</title>
|
|
6
|
-
<base href="/">
|
|
7
|
-
<link rel="stylesheet" href="https://raw.githubusercontent.com/HTMLElements/smart-webcomponents-angular/master/source/styles/smart.default.css"/>
|
|
8
|
-
<style>
|
|
9
|
-
@font-face {
|
|
10
|
-
font-family: "smart-icons";
|
|
11
|
-
src: url("https://raw.githubusercontent.com/HTMLElements/smart-webcomponents-angular/master/source/styles/font/smart-icons.eot");
|
|
12
|
-
src:
|
|
13
|
-
url("https://raw.githubusercontent.com/HTMLElements/smart-webcomponents-angular/master/source/styles/font/smart-icons.woff2")
|
|
14
|
-
format("woff2"),
|
|
15
|
-
url("https://raw.githubusercontent.com/HTMLElements/smart-webcomponents-angular/master/source/styles/font/smart-icons.woff")
|
|
16
|
-
format("woff"),
|
|
17
|
-
url("https://raw.githubusercontent.com/HTMLElements/smart-webcomponents-angular/master/source/styles/font/smart-icons.ttf")
|
|
18
|
-
format("truetype");
|
|
19
|
-
font-weight: normal;
|
|
20
|
-
font-style: normal;
|
|
21
|
-
}
|
|
22
|
-
</style>
|
|
23
|
-
<script>
|
|
24
|
-
console.log('****************************************************************************************************************');
|
|
25
|
-
console.log('****************************************************************************************************************');
|
|
26
|
-
console.log('****************************************************************************************************************');
|
|
27
|
-
console.log('*jQWidgets License Key Not Found.');
|
|
28
|
-
console.log('*This is an EVALUATION only Version, it is NOT Licensed for software projects intended for PRODUCTION.');
|
|
29
|
-
console.log('*if you want to hide this message, please send an email to: sales@jqwidgets.com for a license.');
|
|
30
|
-
console.log('****************************************************************************************************************');
|
|
31
|
-
console.log('****************************************************************************************************************');
|
|
32
|
-
console.log('****************************************************************************************************************');
|
|
33
|
-
</script>
|
|
34
|
-
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
35
|
-
</head>
|
|
36
|
-
<body>
|
|
37
|
-
<app-root>Loading...</app-root>
|
|
38
|
-
<div style="position: absolute; bottom: 5px; right: 5px;">
|
|
39
|
-
<a href="https://www.jqwidgets.com/" alt="https://www.jqwidgets.com/"><img alt="https://www.jqwidgets.com/" title="https://www.jqwidgets.com/" src="https://www.jqwidgets.com/wp-content/design/i/logo-jqwidgets.png"/></a>
|
|
40
|
-
</div>
|
|
41
|
-
</body>
|
|
42
|
-
</html>
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
|
2
|
-
{
|
|
3
|
-
"extends": "./tsconfig.json",
|
|
4
|
-
"compilerOptions": {
|
|
5
|
-
"outDir": "./out-tsc/app",
|
|
6
|
-
"types": []
|
|
7
|
-
},
|
|
8
|
-
"files": [
|
|
9
|
-
"main.ts",
|
|
10
|
-
"polyfills.ts"
|
|
11
|
-
],
|
|
12
|
-
"include": [
|
|
13
|
-
"src/**/*.d.ts"
|
|
14
|
-
]
|
|
15
|
-
}
|
package/demo/src/tsconfig.json
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
|
2
|
-
{
|
|
3
|
-
"compileOnSave": false,
|
|
4
|
-
"compilerOptions": {
|
|
5
|
-
"baseUrl": "./",
|
|
6
|
-
"outDir": "./dist/out-tsc",
|
|
7
|
-
"sourceMap": true,
|
|
8
|
-
"declaration": false,
|
|
9
|
-
"downlevelIteration": true,
|
|
10
|
-
"experimentalDecorators": true,
|
|
11
|
-
"moduleResolution": "node",
|
|
12
|
-
"importHelpers": true,
|
|
13
|
-
"target": "es2015",
|
|
14
|
-
"module": "es2020",
|
|
15
|
-
"lib": [
|
|
16
|
-
"es2018",
|
|
17
|
-
"dom"
|
|
18
|
-
]
|
|
19
|
-
},
|
|
20
|
-
"angularCompilerOptions": {
|
|
21
|
-
"enableI18nLegacyMessageIdFormat": false
|
|
22
|
-
}
|
|
23
|
-
}
|