@justeattakeaway/pie-webc 0.5.30 → 0.5.32
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/components/lottie-player.d.ts +1 -0
- package/components/lottie-player.js +1 -0
- package/components/radio-group.d.ts +1 -0
- package/components/radio-group.js +1 -0
- package/package.json +47 -15
- package/react/lottie-player.d.ts +1 -0
- package/react/lottie-player.js +1 -0
- package/react/radio-group.d.ts +1 -0
- package/react/radio-group.js +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@justeattakeaway/pie-lottie-player';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@justeattakeaway/pie-lottie-player';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@justeattakeaway/pie-radio-group';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@justeattakeaway/pie-radio-group';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@justeattakeaway/pie-webc",
|
|
3
3
|
"description": "Component bundle containing all PIE web components",
|
|
4
|
-
"version": "0.5.
|
|
4
|
+
"version": "0.5.32",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"**/*.js",
|
|
@@ -48,6 +48,16 @@
|
|
|
48
48
|
"require": "./react/checkbox.js",
|
|
49
49
|
"types": "./react/checkbox.d.ts"
|
|
50
50
|
},
|
|
51
|
+
"./components/checkbox-group.js": {
|
|
52
|
+
"import": "./components/checkbox-group.js",
|
|
53
|
+
"require": "./components/checkbox-group.js",
|
|
54
|
+
"types": "./components/checkbox-group.d.ts"
|
|
55
|
+
},
|
|
56
|
+
"./react/checkbox-group.js": {
|
|
57
|
+
"import": "./react/checkbox-group.js",
|
|
58
|
+
"require": "./react/checkbox-group.js",
|
|
59
|
+
"types": "./react/checkbox-group.d.ts"
|
|
60
|
+
},
|
|
51
61
|
"./components/chip.js": {
|
|
52
62
|
"import": "./components/chip.js",
|
|
53
63
|
"require": "./components/chip.js",
|
|
@@ -108,6 +118,16 @@
|
|
|
108
118
|
"require": "./react/link.js",
|
|
109
119
|
"types": "./react/link.d.ts"
|
|
110
120
|
},
|
|
121
|
+
"./components/lottie-player.js": {
|
|
122
|
+
"import": "./components/lottie-player.js",
|
|
123
|
+
"require": "./components/lottie-player.js",
|
|
124
|
+
"types": "./components/lottie-player.d.ts"
|
|
125
|
+
},
|
|
126
|
+
"./react/lottie-player.js": {
|
|
127
|
+
"import": "./react/lottie-player.js",
|
|
128
|
+
"require": "./react/lottie-player.js",
|
|
129
|
+
"types": "./react/lottie-player.d.ts"
|
|
130
|
+
},
|
|
111
131
|
"./components/modal.js": {
|
|
112
132
|
"import": "./components/modal.js",
|
|
113
133
|
"require": "./components/modal.js",
|
|
@@ -128,6 +148,26 @@
|
|
|
128
148
|
"require": "./react/notification.js",
|
|
129
149
|
"types": "./react/notification.d.ts"
|
|
130
150
|
},
|
|
151
|
+
"./components/radio.js": {
|
|
152
|
+
"import": "./components/radio.js",
|
|
153
|
+
"require": "./components/radio.js",
|
|
154
|
+
"types": "./components/radio.d.ts"
|
|
155
|
+
},
|
|
156
|
+
"./react/radio.js": {
|
|
157
|
+
"import": "./react/radio.js",
|
|
158
|
+
"require": "./react/radio.js",
|
|
159
|
+
"types": "./react/radio.d.ts"
|
|
160
|
+
},
|
|
161
|
+
"./components/radio-group.js": {
|
|
162
|
+
"import": "./components/radio-group.js",
|
|
163
|
+
"require": "./components/radio-group.js",
|
|
164
|
+
"types": "./components/radio-group.d.ts"
|
|
165
|
+
},
|
|
166
|
+
"./react/radio-group.js": {
|
|
167
|
+
"import": "./react/radio-group.js",
|
|
168
|
+
"require": "./react/radio-group.js",
|
|
169
|
+
"types": "./react/radio-group.d.ts"
|
|
170
|
+
},
|
|
131
171
|
"./components/spinner.js": {
|
|
132
172
|
"import": "./components/spinner.js",
|
|
133
173
|
"require": "./components/spinner.js",
|
|
@@ -187,16 +227,6 @@
|
|
|
187
227
|
"import": "./react/toast.js",
|
|
188
228
|
"require": "./react/toast.js",
|
|
189
229
|
"types": "./react/toast.d.ts"
|
|
190
|
-
},
|
|
191
|
-
"./components/checkbox-group.js": {
|
|
192
|
-
"import": "./components/checkbox-group.js",
|
|
193
|
-
"require": "./components/checkbox-group.js",
|
|
194
|
-
"types": "./components/checkbox-group.d.ts"
|
|
195
|
-
},
|
|
196
|
-
"./react/checkbox-group.js": {
|
|
197
|
-
"import": "./react/checkbox-group.js",
|
|
198
|
-
"require": "./react/checkbox-group.js",
|
|
199
|
-
"types": "./react/checkbox-group.d.ts"
|
|
200
230
|
}
|
|
201
231
|
},
|
|
202
232
|
"bin": {
|
|
@@ -219,7 +249,7 @@
|
|
|
219
249
|
"dependencies": {
|
|
220
250
|
"@justeattakeaway/pie-assistive-text": "0.7.1",
|
|
221
251
|
"@justeattakeaway/pie-button": "0.49.1",
|
|
222
|
-
"@justeattakeaway/pie-card": "0.
|
|
252
|
+
"@justeattakeaway/pie-card": "0.20.0",
|
|
223
253
|
"@justeattakeaway/pie-checkbox": "0.12.3",
|
|
224
254
|
"@justeattakeaway/pie-checkbox-group": "0.7.0",
|
|
225
255
|
"@justeattakeaway/pie-chip": "0.8.2",
|
|
@@ -228,14 +258,16 @@
|
|
|
228
258
|
"@justeattakeaway/pie-form-label": "0.14.1",
|
|
229
259
|
"@justeattakeaway/pie-icon-button": "0.28.12",
|
|
230
260
|
"@justeattakeaway/pie-link": "0.18.0",
|
|
261
|
+
"@justeattakeaway/pie-lottie-player": "0.0.2",
|
|
231
262
|
"@justeattakeaway/pie-modal": "0.46.2",
|
|
232
|
-
"@justeattakeaway/pie-notification": "0.
|
|
263
|
+
"@justeattakeaway/pie-notification": "0.11.0",
|
|
233
264
|
"@justeattakeaway/pie-radio": "0.0.0",
|
|
265
|
+
"@justeattakeaway/pie-radio-group": "0.1.0",
|
|
234
266
|
"@justeattakeaway/pie-spinner": "0.7.0",
|
|
235
267
|
"@justeattakeaway/pie-switch": "0.30.1",
|
|
236
268
|
"@justeattakeaway/pie-tag": "0.10.0",
|
|
237
|
-
"@justeattakeaway/pie-text-input": "0.
|
|
238
|
-
"@justeattakeaway/pie-textarea": "0.
|
|
269
|
+
"@justeattakeaway/pie-text-input": "0.24.0",
|
|
270
|
+
"@justeattakeaway/pie-textarea": "0.10.0",
|
|
239
271
|
"@justeattakeaway/pie-toast": "0.3.3"
|
|
240
272
|
},
|
|
241
273
|
"volta": {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@justeattakeaway/pie-lottie-player/dist/react.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@justeattakeaway/pie-lottie-player/dist/react.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@justeattakeaway/pie-radio-group/dist/react.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@justeattakeaway/pie-radio-group/dist/react.js';
|