@zywave/zui-formfield 4.0.24-pre.0 → 4.0.24-pre.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.
- package/dist/custom-elements.json +18 -4
- package/package.json +3 -12
|
@@ -17,13 +17,19 @@
|
|
|
17
17
|
"type": {
|
|
18
18
|
"text": "string | undefined"
|
|
19
19
|
},
|
|
20
|
-
"
|
|
20
|
+
"default": "undefined",
|
|
21
|
+
"description": "property to label the control. If provided, can be styled with ::part(label). (optional)",
|
|
22
|
+
"attribute": "label"
|
|
21
23
|
},
|
|
22
24
|
{
|
|
23
25
|
"kind": "field",
|
|
24
26
|
"name": "controlSelector",
|
|
27
|
+
"type": {
|
|
28
|
+
"text": "string"
|
|
29
|
+
},
|
|
30
|
+
"default": "'*'",
|
|
25
31
|
"description": "property to help zui-formfield find the correct form control. Defaults to the first child element. (optional)",
|
|
26
|
-
"
|
|
32
|
+
"attribute": "control-selector"
|
|
27
33
|
},
|
|
28
34
|
{
|
|
29
35
|
"kind": "field",
|
|
@@ -48,18 +54,26 @@
|
|
|
48
54
|
"type": {
|
|
49
55
|
"text": "string | undefined"
|
|
50
56
|
},
|
|
57
|
+
"default": "undefined",
|
|
51
58
|
"description": "property to label the control. If provided, can be styled with ::part(label). (optional)",
|
|
59
|
+
"resolveInitializer": {
|
|
60
|
+
"module": "src/zui-formfield.ts"
|
|
61
|
+
},
|
|
52
62
|
"fieldName": "label"
|
|
53
63
|
},
|
|
54
64
|
{
|
|
55
65
|
"name": "control-selector",
|
|
66
|
+
"type": {
|
|
67
|
+
"text": "string"
|
|
68
|
+
},
|
|
69
|
+
"default": "'*'",
|
|
56
70
|
"description": "property to help zui-formfield find the correct form control. Defaults to the first child element. (optional)",
|
|
57
|
-
"default": "*",
|
|
58
71
|
"fieldName": "controlSelector"
|
|
59
72
|
}
|
|
60
73
|
],
|
|
61
74
|
"superclass": {
|
|
62
|
-
"name": "ZuiBaseElement"
|
|
75
|
+
"name": "ZuiBaseElement",
|
|
76
|
+
"package": "@zywave/zui-base"
|
|
63
77
|
},
|
|
64
78
|
"tagName": "zui-formfield",
|
|
65
79
|
"customElement": true
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zywave/zui-formfield",
|
|
3
|
-
"version": "4.0.24-pre.
|
|
3
|
+
"version": "4.0.24-pre.1",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/index.js",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@zywave/zui-base": "^4.1.19-pre.
|
|
8
|
+
"@zywave/zui-base": "^4.1.19-pre.1"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
11
|
"build": "yarn run build:scss && yarn run build:ts",
|
|
@@ -19,18 +19,9 @@
|
|
|
19
19
|
"watcher:start": "node ../../../scripts/node/watcher.mjs",
|
|
20
20
|
"analyze": "cem analyze --globs src/zui-*.ts --litelement --outdir dist"
|
|
21
21
|
},
|
|
22
|
-
"devDependencies": {
|
|
23
|
-
"autoprefixer": "^9.7.6",
|
|
24
|
-
"browser-sync": "^2.23.7",
|
|
25
|
-
"cssnano": "^4.1.10",
|
|
26
|
-
"del": "^5.1.0",
|
|
27
|
-
"polyserve": "^0.27.8",
|
|
28
|
-
"postcss": "^7.0.27",
|
|
29
|
-
"rollup": "^2.6.1"
|
|
30
|
-
},
|
|
31
22
|
"publishConfig": {
|
|
32
23
|
"access": "public"
|
|
33
24
|
},
|
|
34
25
|
"customElements": "dist/custom-elements.json",
|
|
35
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "f84f16138879b6b119b1198f302646b6e0cc31e2"
|
|
36
27
|
}
|