@justeattakeaway/pie-form-label 0.18.23 → 0.18.24
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/custom-elements.json +31 -4
- package/dist/index.js +1 -1
- package/package.json +5 -5
- package/src/react.ts +0 -0
package/custom-elements.json
CHANGED
|
@@ -29,7 +29,9 @@
|
|
|
29
29
|
"type": {
|
|
30
30
|
"text": "FormLabelProps['for']"
|
|
31
31
|
},
|
|
32
|
-
"privacy": "public"
|
|
32
|
+
"privacy": "public",
|
|
33
|
+
"attribute": "for",
|
|
34
|
+
"reflects": true
|
|
33
35
|
},
|
|
34
36
|
{
|
|
35
37
|
"kind": "field",
|
|
@@ -37,7 +39,8 @@
|
|
|
37
39
|
"type": {
|
|
38
40
|
"text": "FormLabelProps['optional']"
|
|
39
41
|
},
|
|
40
|
-
"privacy": "public"
|
|
42
|
+
"privacy": "public",
|
|
43
|
+
"attribute": "optional"
|
|
41
44
|
},
|
|
42
45
|
{
|
|
43
46
|
"kind": "field",
|
|
@@ -45,7 +48,8 @@
|
|
|
45
48
|
"type": {
|
|
46
49
|
"text": "FormLabelProps['trailing']"
|
|
47
50
|
},
|
|
48
|
-
"privacy": "public"
|
|
51
|
+
"privacy": "public",
|
|
52
|
+
"attribute": "trailing"
|
|
49
53
|
},
|
|
50
54
|
{
|
|
51
55
|
"kind": "method",
|
|
@@ -63,6 +67,29 @@
|
|
|
63
67
|
"privacy": "private"
|
|
64
68
|
}
|
|
65
69
|
],
|
|
70
|
+
"attributes": [
|
|
71
|
+
{
|
|
72
|
+
"name": "for",
|
|
73
|
+
"type": {
|
|
74
|
+
"text": "FormLabelProps['for']"
|
|
75
|
+
},
|
|
76
|
+
"fieldName": "for"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "optional",
|
|
80
|
+
"type": {
|
|
81
|
+
"text": "FormLabelProps['optional']"
|
|
82
|
+
},
|
|
83
|
+
"fieldName": "optional"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "trailing",
|
|
87
|
+
"type": {
|
|
88
|
+
"text": "FormLabelProps['trailing']"
|
|
89
|
+
},
|
|
90
|
+
"fieldName": "trailing"
|
|
91
|
+
}
|
|
92
|
+
],
|
|
66
93
|
"superclass": {
|
|
67
94
|
"name": "PieElement",
|
|
68
95
|
"package": "@justeattakeaway/pie-webc-core/src/internals/PieElement"
|
|
@@ -77,7 +104,7 @@
|
|
|
77
104
|
"name": "*",
|
|
78
105
|
"declaration": {
|
|
79
106
|
"name": "*",
|
|
80
|
-
"
|
|
107
|
+
"module": "src/defs"
|
|
81
108
|
}
|
|
82
109
|
},
|
|
83
110
|
{
|
package/dist/index.js
CHANGED
|
@@ -7,7 +7,7 @@ const r = class r extends g {
|
|
|
7
7
|
this.getAttribute("v") || this.setAttribute("v", r.v);
|
|
8
8
|
}
|
|
9
9
|
};
|
|
10
|
-
r.v = "0.18.
|
|
10
|
+
r.v = "0.18.24";
|
|
11
11
|
let d = r;
|
|
12
12
|
const y = "*,*:after,*:before{box-sizing:inherit}:host{display:block}.c-formLabel{--form-label-font-family: var(--dt-font-body-strong-s-family);--form-label-font-size: calc(var(--dt-font-body-strong-s-size) * 1px);--form-label-line-height: calc(var(--dt-font-body-strong-s-line-height) * 1px);--form-label-font-weight: var(--dt-font-body-strong-s-weight);--form-label-color: var(--dt-color-content-default-solid);display:flex;justify-content:space-between;align-items:flex-end;gap:var(--dt-spacing-d);color:var(--form-label-color);font-family:var(--form-label-font-family);font-size:var(--form-label-font-size);line-height:var(--form-label-line-height);font-weight:var(--form-label-font-weight);padding-block-end:var(--dt-spacing-a)}.c-formLabel-optional,.c-formLabel-trailing{color:var(--dt-color-content-subdued-solid);font-family:var(--dt-font-body-s-family);font-size:calc(var(--dt-font-body-s-size) * 1px);line-height:calc(var(--dt-font-body-s-line-height) * 1px);font-weight:var(--dt-font-body-s-weight)}.c-formLabel-leading-wrapper{display:flex}.c-formLabel-leading{margin-inline-end:var(--dt-spacing-b)}.c-formLabel-trailing{flex-shrink:0;white-space:var(--dt-spacing-d)}";
|
|
13
13
|
var u = Object.defineProperty, L = Object.getOwnPropertyDescriptor, i = (t, a, n, l) => {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@justeattakeaway/pie-form-label",
|
|
3
3
|
"description": "PIE Design System Form Label built using Web Components",
|
|
4
|
-
"version": "0.18.
|
|
4
|
+
"version": "0.18.24",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/justeattakeaway/pie",
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
"author": "Just Eat Takeaway.com - Design System Team",
|
|
42
42
|
"license": "Apache-2.0",
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@justeattakeaway/pie-components-config": "0.21.
|
|
44
|
+
"@justeattakeaway/pie-components-config": "0.21.2",
|
|
45
45
|
"@justeattakeaway/pie-css": "1.1.1",
|
|
46
|
-
"@justeattakeaway/pie-monorepo-utils": "0.9.
|
|
47
|
-
"@justeattakeaway/pie-switch": "2.3.
|
|
48
|
-
"@justeattakeaway/pie-text-input": "0.29.
|
|
46
|
+
"@justeattakeaway/pie-monorepo-utils": "0.9.1",
|
|
47
|
+
"@justeattakeaway/pie-switch": "2.3.30",
|
|
48
|
+
"@justeattakeaway/pie-text-input": "0.29.32",
|
|
49
49
|
"@justeattakeaway/pie-wrapper-react": "0.14.4"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
package/src/react.ts
CHANGED
|
File without changes
|