@blinkk/root-cms 2.4.3 → 2.4.6
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/app.js +13 -2
- package/dist/cli.js +630 -40
- package/dist/{client-DYO2WWlf.d.ts → client-DrJWXKxt.d.ts} +3 -1
- package/dist/client.d.ts +1 -1
- package/dist/core.d.ts +3 -3
- package/dist/core.js +18 -1
- package/dist/plugin.d.ts +1 -1
- package/dist/plugin.js +344 -239
- package/dist/project.d.ts +1 -1
- package/dist/{schema-sKTRRRSq.d.ts → schema-Bux4PrV2.d.ts} +14 -0
- package/dist/ui/ui.css +1 -1
- package/dist/ui/ui.js +327 -179
- package/dist/ui/ui.js.LEGAL.txt +186 -191
- package/package.json +13 -3
package/dist/app.js
CHANGED
|
@@ -83,7 +83,7 @@ function convertOneOfTypes(collection) {
|
|
|
83
83
|
// package.json
|
|
84
84
|
var package_default = {
|
|
85
85
|
name: "@blinkk/root-cms",
|
|
86
|
-
version: "2.4.
|
|
86
|
+
version: "2.4.6",
|
|
87
87
|
author: "s@blinkk.com",
|
|
88
88
|
license: "MIT",
|
|
89
89
|
engines: {
|
|
@@ -148,15 +148,23 @@ var package_default = {
|
|
|
148
148
|
"test:watch": "pnpm build && firebase emulators:exec 'vitest'"
|
|
149
149
|
},
|
|
150
150
|
dependencies: {
|
|
151
|
+
"@ag-grid-community/client-side-row-model": "32.3.9",
|
|
152
|
+
"@ag-grid-community/core": "32.3.9",
|
|
153
|
+
"@ag-grid-community/react": "32.3.9",
|
|
154
|
+
"@ag-grid-community/styles": "32.3.9",
|
|
151
155
|
"@genkit-ai/ai": "1.18.0",
|
|
152
156
|
"@genkit-ai/core": "1.18.0",
|
|
153
157
|
"@genkit-ai/vertexai": "1.18.0",
|
|
154
158
|
"@google-cloud/firestore": "7.11.3",
|
|
155
159
|
"@hello-pangea/dnd": "18.0.1",
|
|
160
|
+
"@types/cli-progress": "3.11.6",
|
|
156
161
|
"body-parser": "1.20.2",
|
|
162
|
+
"cli-progress": "3.12.0",
|
|
157
163
|
commander: "11.0.0",
|
|
158
164
|
"csv-parse": "5.5.2",
|
|
159
165
|
"csv-stringify": "6.4.4",
|
|
166
|
+
"date-fns": "4.1.0",
|
|
167
|
+
"date-fns-tz": "3.2.0",
|
|
160
168
|
diff: "8.0.2",
|
|
161
169
|
"dts-dom": "3.7.0",
|
|
162
170
|
"fnv-plus": "1.3.1",
|
|
@@ -201,6 +209,7 @@ var package_default = {
|
|
|
201
209
|
"@preact/compat": "18.3.1",
|
|
202
210
|
"@tabler/icons-preact": "3.35.0",
|
|
203
211
|
"@testing-library/preact": "3.2.4",
|
|
212
|
+
"@testing-library/user-event": "14.6.1",
|
|
204
213
|
"@types/body-parser": "1.19.3",
|
|
205
214
|
"@types/fnv-plus": "1.3.2",
|
|
206
215
|
"@types/gapi": "0.0.47",
|
|
@@ -218,6 +227,7 @@ var package_default = {
|
|
|
218
227
|
"firebase-functions": "6.4.0",
|
|
219
228
|
"firebase-tools": "14.15.2",
|
|
220
229
|
"highlight.js": "11.6.0",
|
|
230
|
+
jsdom: "27.2.0",
|
|
221
231
|
"json-diff-kit": "1.0.29",
|
|
222
232
|
lexical: "0.33.1",
|
|
223
233
|
marked: "9.1.1",
|
|
@@ -238,7 +248,7 @@ var package_default = {
|
|
|
238
248
|
yjs: "13.6.27"
|
|
239
249
|
},
|
|
240
250
|
peerDependencies: {
|
|
241
|
-
"@blinkk/root": "2.4.
|
|
251
|
+
"@blinkk/root": "2.4.6",
|
|
242
252
|
"firebase-admin": ">=11",
|
|
243
253
|
"firebase-functions": ">=4",
|
|
244
254
|
preact: ">=10",
|
|
@@ -381,6 +391,7 @@ function serializeCollection(collection) {
|
|
|
381
391
|
id: collection.id,
|
|
382
392
|
name: collection.name ?? collection.id,
|
|
383
393
|
description: collection.description,
|
|
394
|
+
group: collection.group,
|
|
384
395
|
domain: collection.domain,
|
|
385
396
|
url: collection.url,
|
|
386
397
|
previewUrl: collection.previewUrl,
|