@kubex/zinc 1.1.106 → 1.1.108
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/dist/custom-elements.json +102 -75
- package/dist/vscode.html-custom-data.json +11 -11
- package/dist/web-types.json +38 -23
- package/dist/zn.d.ts +13 -0
- package/dist/zn.min.js +216 -216
- package/package.json +1 -1
- package/src/components/data-select/data-select.component.ts +4 -0
- package/src/components/dialog/dialog.scss +11 -2
- package/src/components/linked-select/linked-select.component.ts +4 -0
- package/src/components/page/page.test.ts +27 -0
- package/src/components/priority-list/priority-list.component.ts +17 -12
- package/src/components/priority-list/priority-list.test.ts +43 -0
- package/src/components/rating/rating.component.ts +4 -0
- package/src/components/tabs/tabs.component.ts +5 -0
- package/src/components/tabs/tabs.test.ts +64 -0
- package/src/internal/scroll.ts +25 -0
|
@@ -56,79 +56,6 @@
|
|
|
56
56
|
}
|
|
57
57
|
]
|
|
58
58
|
},
|
|
59
|
-
{
|
|
60
|
-
"kind": "javascript-module",
|
|
61
|
-
"path": "components/action-bar/action-bar.js",
|
|
62
|
-
"declarations": [
|
|
63
|
-
{
|
|
64
|
-
"kind": "class",
|
|
65
|
-
"description": "",
|
|
66
|
-
"name": "ZnActionBar",
|
|
67
|
-
"cssProperties": [
|
|
68
|
-
{
|
|
69
|
-
"description": "An example CSS custom property.",
|
|
70
|
-
"name": "--example"
|
|
71
|
-
}
|
|
72
|
-
],
|
|
73
|
-
"cssParts": [
|
|
74
|
-
{
|
|
75
|
-
"description": "The component's base wrapper.",
|
|
76
|
-
"name": "base"
|
|
77
|
-
}
|
|
78
|
-
],
|
|
79
|
-
"slots": [
|
|
80
|
-
{
|
|
81
|
-
"description": "The default slot.",
|
|
82
|
-
"name": ""
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
"description": "An example slot.",
|
|
86
|
-
"name": "example"
|
|
87
|
-
}
|
|
88
|
-
],
|
|
89
|
-
"members": [
|
|
90
|
-
{
|
|
91
|
-
"kind": "field",
|
|
92
|
-
"name": "localize",
|
|
93
|
-
"privacy": "private",
|
|
94
|
-
"readonly": true,
|
|
95
|
-
"default": "new LocalizeController(this)"
|
|
96
|
-
}
|
|
97
|
-
],
|
|
98
|
-
"events": [
|
|
99
|
-
{
|
|
100
|
-
"description": "Emitted as an example.",
|
|
101
|
-
"name": "zn-event-name"
|
|
102
|
-
}
|
|
103
|
-
],
|
|
104
|
-
"superclass": {
|
|
105
|
-
"name": "ZincElement",
|
|
106
|
-
"module": "/src/internal/zinc-element"
|
|
107
|
-
},
|
|
108
|
-
"summary": "Short summary of the component's intended use.",
|
|
109
|
-
"tagNameWithoutPrefix": "action-bar",
|
|
110
|
-
"tagName": "zn-action-bar",
|
|
111
|
-
"customElement": true,
|
|
112
|
-
"jsDoc": "/**\n * @summary Short summary of the component's intended use.\n * @documentation https://zinc.style/components/action-bar\n * @status experimental\n * @since 1.0\n *\n * @dependency zn-example\n *\n * @event zn-event-name - Emitted as an example.\n *\n * @slot - The default slot.\n * @slot example - An example slot.\n *\n * @csspart base - The component's base wrapper.\n *\n * @cssproperty --example - An example CSS custom property.\n */",
|
|
113
|
-
"documentation": "https://zinc.style/components/action-bar",
|
|
114
|
-
"status": "experimental",
|
|
115
|
-
"since": "1.0",
|
|
116
|
-
"dependencies": [
|
|
117
|
-
"zn-example"
|
|
118
|
-
]
|
|
119
|
-
}
|
|
120
|
-
],
|
|
121
|
-
"exports": [
|
|
122
|
-
{
|
|
123
|
-
"kind": "js",
|
|
124
|
-
"name": "default",
|
|
125
|
-
"declaration": {
|
|
126
|
-
"name": "ZnActionBar",
|
|
127
|
-
"module": "components/action-bar/action-bar.js"
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
]
|
|
131
|
-
},
|
|
132
59
|
{
|
|
133
60
|
"kind": "javascript-module",
|
|
134
61
|
"path": "components/alert/alert.js",
|
|
@@ -323,6 +250,79 @@
|
|
|
323
250
|
}
|
|
324
251
|
]
|
|
325
252
|
},
|
|
253
|
+
{
|
|
254
|
+
"kind": "javascript-module",
|
|
255
|
+
"path": "components/action-bar/action-bar.js",
|
|
256
|
+
"declarations": [
|
|
257
|
+
{
|
|
258
|
+
"kind": "class",
|
|
259
|
+
"description": "",
|
|
260
|
+
"name": "ZnActionBar",
|
|
261
|
+
"cssProperties": [
|
|
262
|
+
{
|
|
263
|
+
"description": "An example CSS custom property.",
|
|
264
|
+
"name": "--example"
|
|
265
|
+
}
|
|
266
|
+
],
|
|
267
|
+
"cssParts": [
|
|
268
|
+
{
|
|
269
|
+
"description": "The component's base wrapper.",
|
|
270
|
+
"name": "base"
|
|
271
|
+
}
|
|
272
|
+
],
|
|
273
|
+
"slots": [
|
|
274
|
+
{
|
|
275
|
+
"description": "The default slot.",
|
|
276
|
+
"name": ""
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"description": "An example slot.",
|
|
280
|
+
"name": "example"
|
|
281
|
+
}
|
|
282
|
+
],
|
|
283
|
+
"members": [
|
|
284
|
+
{
|
|
285
|
+
"kind": "field",
|
|
286
|
+
"name": "localize",
|
|
287
|
+
"privacy": "private",
|
|
288
|
+
"readonly": true,
|
|
289
|
+
"default": "new LocalizeController(this)"
|
|
290
|
+
}
|
|
291
|
+
],
|
|
292
|
+
"events": [
|
|
293
|
+
{
|
|
294
|
+
"description": "Emitted as an example.",
|
|
295
|
+
"name": "zn-event-name"
|
|
296
|
+
}
|
|
297
|
+
],
|
|
298
|
+
"superclass": {
|
|
299
|
+
"name": "ZincElement",
|
|
300
|
+
"module": "/src/internal/zinc-element"
|
|
301
|
+
},
|
|
302
|
+
"summary": "Short summary of the component's intended use.",
|
|
303
|
+
"tagNameWithoutPrefix": "action-bar",
|
|
304
|
+
"tagName": "zn-action-bar",
|
|
305
|
+
"customElement": true,
|
|
306
|
+
"jsDoc": "/**\n * @summary Short summary of the component's intended use.\n * @documentation https://zinc.style/components/action-bar\n * @status experimental\n * @since 1.0\n *\n * @dependency zn-example\n *\n * @event zn-event-name - Emitted as an example.\n *\n * @slot - The default slot.\n * @slot example - An example slot.\n *\n * @csspart base - The component's base wrapper.\n *\n * @cssproperty --example - An example CSS custom property.\n */",
|
|
307
|
+
"documentation": "https://zinc.style/components/action-bar",
|
|
308
|
+
"status": "experimental",
|
|
309
|
+
"since": "1.0",
|
|
310
|
+
"dependencies": [
|
|
311
|
+
"zn-example"
|
|
312
|
+
]
|
|
313
|
+
}
|
|
314
|
+
],
|
|
315
|
+
"exports": [
|
|
316
|
+
{
|
|
317
|
+
"kind": "js",
|
|
318
|
+
"name": "default",
|
|
319
|
+
"declaration": {
|
|
320
|
+
"name": "ZnActionBar",
|
|
321
|
+
"module": "components/action-bar/action-bar.js"
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
]
|
|
325
|
+
},
|
|
326
326
|
{
|
|
327
327
|
"kind": "javascript-module",
|
|
328
328
|
"path": "components/animated-button/animated-button.js",
|
|
@@ -7966,6 +7966,15 @@
|
|
|
7966
7966
|
"description": "The value of the select. Used for form submission. When `multiple` is enabled, this is an array of strings.",
|
|
7967
7967
|
"attribute": "value"
|
|
7968
7968
|
},
|
|
7969
|
+
{
|
|
7970
|
+
"kind": "field",
|
|
7971
|
+
"name": "defaultValue",
|
|
7972
|
+
"type": {
|
|
7973
|
+
"text": "string | string[]"
|
|
7974
|
+
},
|
|
7975
|
+
"default": "''",
|
|
7976
|
+
"description": "The default value of the form control. Primarily used for resetting the form control."
|
|
7977
|
+
},
|
|
7969
7978
|
{
|
|
7970
7979
|
"kind": "field",
|
|
7971
7980
|
"name": "provider",
|
|
@@ -21687,6 +21696,15 @@
|
|
|
21687
21696
|
},
|
|
21688
21697
|
"attribute": "value"
|
|
21689
21698
|
},
|
|
21699
|
+
{
|
|
21700
|
+
"kind": "field",
|
|
21701
|
+
"name": "defaultValue",
|
|
21702
|
+
"type": {
|
|
21703
|
+
"text": "string"
|
|
21704
|
+
},
|
|
21705
|
+
"default": "''",
|
|
21706
|
+
"description": "The default value of the form control. Primarily used for resetting the form control."
|
|
21707
|
+
},
|
|
21690
21708
|
{
|
|
21691
21709
|
"kind": "field",
|
|
21692
21710
|
"name": "checked",
|
|
@@ -31004,7 +31022,7 @@
|
|
|
31004
31022
|
"name": "formControlController",
|
|
31005
31023
|
"privacy": "protected",
|
|
31006
31024
|
"readonly": true,
|
|
31007
|
-
"default": "new FormControlController(this, { value: (control: ZnPriorityList) => { return JSON.stringify(control.getPriorityMap()); }, defaultValue: (control: ZnPriorityList) => control.defaultValue, setValue: (control: ZnPriorityList, value: string) => { if (value)
|
|
31025
|
+
"default": "new FormControlController(this, { value: (control: ZnPriorityList) => { return JSON.stringify(control.getPriorityMap()); }, defaultValue: (control: ZnPriorityList) => control.defaultValue, // A form reset passes defaultValue straight back in, so this has to accept the // key array as well as the serialised value other callers set. setValue: (control: ZnPriorityList, value: string | string[]) => { if (!value || (Array.isArray(value) && value.length === 0)) return; const keys: unknown = Array.isArray(value) ? value : safeParse(value); if (Array.isArray(keys) && keys.every((item: unknown): item is string => typeof item === 'string')) { control.value = keys as string[]; } }, })"
|
|
31008
31026
|
},
|
|
31009
31027
|
{
|
|
31010
31028
|
"kind": "field",
|
|
@@ -33900,6 +33918,15 @@
|
|
|
33900
33918
|
"default": "0",
|
|
33901
33919
|
"attribute": "value"
|
|
33902
33920
|
},
|
|
33921
|
+
{
|
|
33922
|
+
"kind": "field",
|
|
33923
|
+
"name": "defaultValue",
|
|
33924
|
+
"type": {
|
|
33925
|
+
"text": "number"
|
|
33926
|
+
},
|
|
33927
|
+
"default": "0",
|
|
33928
|
+
"description": "The default value of the form control. Primarily used for resetting the form control."
|
|
33929
|
+
},
|
|
33903
33930
|
{
|
|
33904
33931
|
"kind": "field",
|
|
33905
33932
|
"name": "max",
|
|
@@ -50862,7 +50889,7 @@
|
|
|
50862
50889
|
"package": {
|
|
50863
50890
|
"name": "@kubex/zinc",
|
|
50864
50891
|
"description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
|
|
50865
|
-
"version": "1.1.
|
|
50892
|
+
"version": "1.1.108",
|
|
50866
50893
|
"author": "",
|
|
50867
50894
|
"license": "MIT"
|
|
50868
50895
|
}
|
|
@@ -13,17 +13,6 @@
|
|
|
13
13
|
}
|
|
14
14
|
]
|
|
15
15
|
},
|
|
16
|
-
{
|
|
17
|
-
"name": "zn-action-bar",
|
|
18
|
-
"description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Slots:**\n - _default_ - The default slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
|
|
19
|
-
"attributes": [],
|
|
20
|
-
"references": [
|
|
21
|
-
{
|
|
22
|
-
"name": "Documentation",
|
|
23
|
-
"url": "https://zinc.style/components/action-bar"
|
|
24
|
-
}
|
|
25
|
-
]
|
|
26
|
-
},
|
|
27
16
|
{
|
|
28
17
|
"name": "zn-alert",
|
|
29
18
|
"description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Slots:**\n - _default_ - The default slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
|
|
@@ -64,6 +53,17 @@
|
|
|
64
53
|
}
|
|
65
54
|
]
|
|
66
55
|
},
|
|
56
|
+
{
|
|
57
|
+
"name": "zn-action-bar",
|
|
58
|
+
"description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Slots:**\n - _default_ - The default slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
|
|
59
|
+
"attributes": [],
|
|
60
|
+
"references": [
|
|
61
|
+
{
|
|
62
|
+
"name": "Documentation",
|
|
63
|
+
"url": "https://zinc.style/components/action-bar"
|
|
64
|
+
}
|
|
65
|
+
]
|
|
66
|
+
},
|
|
67
67
|
{
|
|
68
68
|
"name": "zn-animated-button",
|
|
69
69
|
"description": "\n---\n\n\n### **Methods:**\n - **purchase(): _void_** - Programmatically trigger the purchase flow\n- **setSuccess(): _void_** - Set the button to success state manually\n- **setFailure(message): _void_** - Set the button to failure state manually with optional error message\n- **reset(): _void_** - Reset the button to idle state",
|
package/dist/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
|
|
3
3
|
"name": "@kubex/zinc",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.108",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -15,28 +15,6 @@
|
|
|
15
15
|
"events": [],
|
|
16
16
|
"js": { "properties": [], "events": [] }
|
|
17
17
|
},
|
|
18
|
-
{
|
|
19
|
-
"name": "zn-action-bar",
|
|
20
|
-
"description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Slots:**\n - _default_ - The default slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
|
|
21
|
-
"doc-url": "",
|
|
22
|
-
"attributes": [],
|
|
23
|
-
"slots": [
|
|
24
|
-
{ "name": "", "description": "The default slot." },
|
|
25
|
-
{ "name": "example", "description": "An example slot." }
|
|
26
|
-
],
|
|
27
|
-
"events": [
|
|
28
|
-
{ "name": "zn-event-name", "description": "Emitted as an example." }
|
|
29
|
-
],
|
|
30
|
-
"js": {
|
|
31
|
-
"properties": [],
|
|
32
|
-
"events": [
|
|
33
|
-
{
|
|
34
|
-
"name": "zn-event-name",
|
|
35
|
-
"description": "Emitted as an example."
|
|
36
|
-
}
|
|
37
|
-
]
|
|
38
|
-
}
|
|
39
|
-
},
|
|
40
18
|
{
|
|
41
19
|
"name": "zn-alert",
|
|
42
20
|
"description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Slots:**\n - _default_ - The default slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
|
|
@@ -105,6 +83,28 @@
|
|
|
105
83
|
]
|
|
106
84
|
}
|
|
107
85
|
},
|
|
86
|
+
{
|
|
87
|
+
"name": "zn-action-bar",
|
|
88
|
+
"description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Slots:**\n - _default_ - The default slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
|
|
89
|
+
"doc-url": "",
|
|
90
|
+
"attributes": [],
|
|
91
|
+
"slots": [
|
|
92
|
+
{ "name": "", "description": "The default slot." },
|
|
93
|
+
{ "name": "example", "description": "An example slot." }
|
|
94
|
+
],
|
|
95
|
+
"events": [
|
|
96
|
+
{ "name": "zn-event-name", "description": "Emitted as an example." }
|
|
97
|
+
],
|
|
98
|
+
"js": {
|
|
99
|
+
"properties": [],
|
|
100
|
+
"events": [
|
|
101
|
+
{
|
|
102
|
+
"name": "zn-event-name",
|
|
103
|
+
"description": "Emitted as an example."
|
|
104
|
+
}
|
|
105
|
+
]
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
108
|
{
|
|
109
109
|
"name": "zn-animated-button",
|
|
110
110
|
"description": "\n---\n\n\n### **Methods:**\n - **purchase(): _void_** - Programmatically trigger the purchase flow\n- **setSuccess(): _void_** - Set the button to success state manually\n- **setFailure(message): _void_** - Set the button to failure state manually with optional error message\n- **reset(): _void_** - Reset the button to idle state",
|
|
@@ -2552,6 +2552,11 @@
|
|
|
2552
2552
|
"description": "The value of the select. Used for form submission. When `multiple` is enabled, this is an array of strings.",
|
|
2553
2553
|
"type": "string | string[]"
|
|
2554
2554
|
},
|
|
2555
|
+
{
|
|
2556
|
+
"name": "defaultValue",
|
|
2557
|
+
"description": "The default value of the form control. Primarily used for resetting the form control.",
|
|
2558
|
+
"type": "string | string[]"
|
|
2559
|
+
},
|
|
2555
2560
|
{
|
|
2556
2561
|
"name": "provider",
|
|
2557
2562
|
"description": "The provider of the select.",
|
|
@@ -6001,6 +6006,11 @@
|
|
|
6001
6006
|
"properties": [
|
|
6002
6007
|
{ "name": "name", "type": "string" },
|
|
6003
6008
|
{ "name": "value", "type": "string" },
|
|
6009
|
+
{
|
|
6010
|
+
"name": "defaultValue",
|
|
6011
|
+
"description": "The default value of the form control. Primarily used for resetting the form control.",
|
|
6012
|
+
"type": "string"
|
|
6013
|
+
},
|
|
6004
6014
|
{ "name": "checked", "type": "boolean" },
|
|
6005
6015
|
{ "name": "options", "type": "linkedSelectOptions" },
|
|
6006
6016
|
{ "name": "linkedSelect", "type": "string" },
|
|
@@ -8398,6 +8408,11 @@
|
|
|
8398
8408
|
},
|
|
8399
8409
|
{ "name": "name", "type": "string" },
|
|
8400
8410
|
{ "name": "value", "type": "number" },
|
|
8411
|
+
{
|
|
8412
|
+
"name": "defaultValue",
|
|
8413
|
+
"description": "The default value of the form control. Primarily used for resetting the form control.",
|
|
8414
|
+
"type": "number"
|
|
8415
|
+
},
|
|
8401
8416
|
{ "name": "max", "type": "number" },
|
|
8402
8417
|
{ "name": "precision", "type": "number" },
|
|
8403
8418
|
{ "name": "readonly", "type": "boolean" },
|
package/dist/zn.d.ts
CHANGED
|
@@ -724,6 +724,13 @@ declare module "internal/scroll" {
|
|
|
724
724
|
export function unlockBodyScrolling(lockingEl: HTMLElement): void;
|
|
725
725
|
/** Scrolls an element into view of its container. If the element is already in view, nothing will happen. */
|
|
726
726
|
export function scrollIntoView(element: HTMLElement, container: HTMLElement, direction?: 'horizontal' | 'vertical' | 'both', behavior?: 'smooth' | 'auto'): void;
|
|
727
|
+
/**
|
|
728
|
+
* Every ancestor of `element`, itself included, that is scrolled away from the top. Shadow
|
|
729
|
+
* boundaries are crossed, so a host's own scroller and the app's outer one are both found.
|
|
730
|
+
*/
|
|
731
|
+
export function getScrolledAncestors(element: Element | null | undefined): Element[];
|
|
732
|
+
/** Returns containers to the top. */
|
|
733
|
+
export function scrollToTop(containers: Iterable<Element>, behavior?: ScrollBehavior): void;
|
|
727
734
|
}
|
|
728
735
|
declare module "components/dialog/dialog.component" {
|
|
729
736
|
import { type CSSResultGroup, type PropertyValues } from 'lit';
|
|
@@ -3138,6 +3145,8 @@ declare module "components/data-select/data-select.component" {
|
|
|
3138
3145
|
name: string;
|
|
3139
3146
|
/** The value of the select. Used for form submission. When `multiple` is enabled, this is an array of strings. */
|
|
3140
3147
|
value: string | string[];
|
|
3148
|
+
/** The default value of the form control. Primarily used for resetting the form control. */
|
|
3149
|
+
defaultValue: string | string[];
|
|
3141
3150
|
/** The provider of the select. */
|
|
3142
3151
|
provider: 'color' | 'currency' | 'country' | 'phone' | 'us-state';
|
|
3143
3152
|
/** The position of the icon. */
|
|
@@ -7390,6 +7399,8 @@ declare module "components/linked-select/linked-select.component" {
|
|
|
7390
7399
|
static styles: CSSResultGroup;
|
|
7391
7400
|
name: string;
|
|
7392
7401
|
value: string;
|
|
7402
|
+
/** The default value of the form control. Primarily used for resetting the form control. */
|
|
7403
|
+
defaultValue: string;
|
|
7393
7404
|
checked: boolean;
|
|
7394
7405
|
options: linkedSelectOptions;
|
|
7395
7406
|
linkedSelect: string;
|
|
@@ -7610,6 +7621,8 @@ declare module "components/rating/rating.component" {
|
|
|
7610
7621
|
helpText: string;
|
|
7611
7622
|
name: string;
|
|
7612
7623
|
value: number;
|
|
7624
|
+
/** The default value of the form control. Primarily used for resetting the form control. */
|
|
7625
|
+
defaultValue: number;
|
|
7613
7626
|
max: number;
|
|
7614
7627
|
precision: number;
|
|
7615
7628
|
readonly: boolean;
|