@justeattakeaway/pie-webc 0.0.0-snapshot-release-20251007080755 → 0.0.0-snapshot-release-20251014131309
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/data-table-body.d.ts +1 -0
- package/components/data-table-body.js +1 -0
- package/components/data-table-cell.d.ts +1 -0
- package/components/data-table-cell.js +1 -0
- package/components/data-table-contents.d.ts +1 -0
- package/components/data-table-contents.js +1 -0
- package/components/data-table-head.d.ts +1 -0
- package/components/data-table-head.js +1 -0
- package/components/data-table-header.d.ts +1 -0
- package/components/data-table-header.js +1 -0
- package/components/data-table-row.d.ts +1 -0
- package/components/data-table-row.js +1 -0
- package/package.json +63 -3
- package/react/data-table-header.d.ts +1 -0
- package/react/data-table-header.js +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@justeattakeaway/pie-data-table/dist/pie-data-table-body/index.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@justeattakeaway/pie-data-table/dist/pie-data-table-body/index.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@justeattakeaway/pie-data-table/dist/pie-data-table-cell/index.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@justeattakeaway/pie-data-table/dist/pie-data-table-cell/index.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@justeattakeaway/pie-data-table/dist/pie-data-table-contents/index.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@justeattakeaway/pie-data-table/dist/pie-data-table-contents/index.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@justeattakeaway/pie-data-table/dist/pie-data-table-head/index.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@justeattakeaway/pie-data-table/dist/pie-data-table-head/index.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@justeattakeaway/pie-data-table/dist/pie-data-table-header/index.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@justeattakeaway/pie-data-table/dist/pie-data-table-header/index.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@justeattakeaway/pie-data-table/dist/pie-data-table-row/index.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@justeattakeaway/pie-data-table/dist/pie-data-table-row/index.js';
|
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.0.0-snapshot-release-
|
|
4
|
+
"version": "0.0.0-snapshot-release-20251014131309",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/justeattakeaway/pie",
|
|
@@ -124,6 +124,66 @@
|
|
|
124
124
|
"require": "./react/data-table.js",
|
|
125
125
|
"types": "./react/data-table.d.ts"
|
|
126
126
|
},
|
|
127
|
+
"./components/data-table-header.js": {
|
|
128
|
+
"import": "./components/data-table-header.js",
|
|
129
|
+
"require": "./components/data-table-header.js",
|
|
130
|
+
"types": "./components/data-table-header.d.ts"
|
|
131
|
+
},
|
|
132
|
+
"./react/data-table-header.js": {
|
|
133
|
+
"import": "./react/data-table-header.js",
|
|
134
|
+
"require": "./react/data-table-header.js",
|
|
135
|
+
"types": "./react/data-table-header.d.ts"
|
|
136
|
+
},
|
|
137
|
+
"./components/data-table-row.js": {
|
|
138
|
+
"import": "./components/data-table-row.js",
|
|
139
|
+
"require": "./components/data-table-row.js",
|
|
140
|
+
"types": "./components/data-table-row.d.ts"
|
|
141
|
+
},
|
|
142
|
+
"./react/data-table-row.js": {
|
|
143
|
+
"import": "./react/data-table-row.js",
|
|
144
|
+
"require": "./react/data-table-row.js",
|
|
145
|
+
"types": "./react/data-table-row.d.ts"
|
|
146
|
+
},
|
|
147
|
+
"./components/data-table-body.js": {
|
|
148
|
+
"import": "./components/data-table-body.js",
|
|
149
|
+
"require": "./components/data-table-body.js",
|
|
150
|
+
"types": "./components/data-table-body.d.ts"
|
|
151
|
+
},
|
|
152
|
+
"./react/data-table-body.js": {
|
|
153
|
+
"import": "./react/data-table-body.js",
|
|
154
|
+
"require": "./react/data-table-body.js",
|
|
155
|
+
"types": "./react/data-table-body.d.ts"
|
|
156
|
+
},
|
|
157
|
+
"./components/data-table-cell.js": {
|
|
158
|
+
"import": "./components/data-table-cell.js",
|
|
159
|
+
"require": "./components/data-table-cell.js",
|
|
160
|
+
"types": "./components/data-table-cell.d.ts"
|
|
161
|
+
},
|
|
162
|
+
"./react/data-table-cell.js": {
|
|
163
|
+
"import": "./react/data-table-cell.js",
|
|
164
|
+
"require": "./react/data-table-cell.js",
|
|
165
|
+
"types": "./react/data-table-cell.d.ts"
|
|
166
|
+
},
|
|
167
|
+
"./components/data-table-contents.js": {
|
|
168
|
+
"import": "./components/data-table-contents.js",
|
|
169
|
+
"require": "./components/data-table-contents.js",
|
|
170
|
+
"types": "./components/data-table-contents.d.ts"
|
|
171
|
+
},
|
|
172
|
+
"./react/data-table-contents.js": {
|
|
173
|
+
"import": "./react/data-table-contents.js",
|
|
174
|
+
"require": "./react/data-table-contents.js",
|
|
175
|
+
"types": "./react/data-table-contents.d.ts"
|
|
176
|
+
},
|
|
177
|
+
"./components/data-table-head.js": {
|
|
178
|
+
"import": "./components/data-table-head.js",
|
|
179
|
+
"require": "./components/data-table-head.js",
|
|
180
|
+
"types": "./components/data-table-head.d.ts"
|
|
181
|
+
},
|
|
182
|
+
"./react/data-table-head.js": {
|
|
183
|
+
"import": "./react/data-table-head.js",
|
|
184
|
+
"require": "./react/data-table-head.js",
|
|
185
|
+
"types": "./react/data-table-head.d.ts"
|
|
186
|
+
},
|
|
127
187
|
"./components/divider.js": {
|
|
128
188
|
"import": "./components/divider.js",
|
|
129
189
|
"require": "./components/divider.js",
|
|
@@ -360,7 +420,7 @@
|
|
|
360
420
|
"@justeattakeaway/pie-checkbox-group": "0.9.12",
|
|
361
421
|
"@justeattakeaway/pie-chip": "0.14.0",
|
|
362
422
|
"@justeattakeaway/pie-cookie-banner": "1.6.23",
|
|
363
|
-
"@justeattakeaway/pie-data-table": "0.
|
|
423
|
+
"@justeattakeaway/pie-data-table": "0.0.0-snapshot-release-20251014131309",
|
|
364
424
|
"@justeattakeaway/pie-divider": "1.5.0",
|
|
365
425
|
"@justeattakeaway/pie-form-label": "0.18.0",
|
|
366
426
|
"@justeattakeaway/pie-icon-button": "2.2.0",
|
|
@@ -375,7 +435,7 @@
|
|
|
375
435
|
"@justeattakeaway/pie-spinner": "1.3.0",
|
|
376
436
|
"@justeattakeaway/pie-switch": "2.3.0",
|
|
377
437
|
"@justeattakeaway/pie-tabs": "0.1.1",
|
|
378
|
-
"@justeattakeaway/pie-tag": "0.
|
|
438
|
+
"@justeattakeaway/pie-tag": "0.20.0",
|
|
379
439
|
"@justeattakeaway/pie-text-input": "0.29.0",
|
|
380
440
|
"@justeattakeaway/pie-textarea": "0.17.0",
|
|
381
441
|
"@justeattakeaway/pie-thumbnail": "0.8.6",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@justeattakeaway/pie-data-table/dist/pie-data-table-header/react.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@justeattakeaway/pie-data-table/dist/pie-data-table-header/react.js';
|