@ampless/admin 0.2.0-alpha.21 → 0.2.0-alpha.23
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/api/index.d.ts +1 -1
- package/dist/{chunk-W6BXESPW.js → chunk-2U3POKAZ.js} +1 -1
- package/dist/{chunk-5Q6KVRZ2.js → chunk-6NPYUTV6.js} +2 -2
- package/dist/{chunk-CQY55RDG.js → chunk-6SB7YICQ.js} +1 -1
- package/dist/{chunk-JOASK4AM.js → chunk-CFQPS5NT.js} +1 -1
- package/dist/{chunk-S66L5CDS.js → chunk-CTGFMK2J.js} +1 -1
- package/dist/{chunk-A3SWBQA6.js → chunk-F7VFVKY5.js} +1 -1
- package/dist/{chunk-BC4B6DLO.js → chunk-G4IY757H.js} +2 -2
- package/dist/{chunk-QXJIIBUQ.js → chunk-KQOE5CT6.js} +2 -2
- package/dist/{chunk-CVJCMTYB.js → chunk-LITTIDB3.js} +397 -152
- package/dist/{chunk-XY4JWSMS.js → chunk-Q66BLMNJ.js} +1 -1
- package/dist/{chunk-SRNH2IVA.js → chunk-TZ5F24BG.js} +1 -1
- package/dist/{chunk-BWFCQNPU.js → chunk-V5FWGILB.js} +16 -43
- package/dist/{chunk-OSUTPPAU.js → chunk-WL4IBW2D.js} +24 -0
- package/dist/{chunk-5JKOPRCO.js → chunk-WOMPYZNV.js} +2 -2
- package/dist/components/admin-dashboard.js +3 -3
- package/dist/components/edit-post-view.js +5 -5
- package/dist/components/index.d.ts +1 -1
- package/dist/components/index.js +6 -6
- package/dist/components/login-view.js +3 -3
- package/dist/components/mcp-tokens-view.js +3 -3
- package/dist/components/media-view.js +5 -5
- package/dist/components/new-post-view.js +5 -5
- package/dist/components/posts-list-view.js +3 -3
- package/dist/components/users-list-view.js +3 -3
- package/dist/{i18n-MWvAMHzn.d.ts → i18n-BhMBRfio.d.ts} +36 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/metafile-esm.json +1 -1
- package/dist/pages/index.d.ts +1 -1
- package/dist/pages/index.js +14 -14
- package/package.json +19 -10
|
@@ -10,14 +10,14 @@ import {
|
|
|
10
10
|
} from "./chunk-7IR4F7GA.js";
|
|
11
11
|
import {
|
|
12
12
|
setAdminCmsConfigClient
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-CTGFMK2J.js";
|
|
14
14
|
import {
|
|
15
15
|
setAdminMediaContext
|
|
16
16
|
} from "./chunk-2ITWLRYF.js";
|
|
17
17
|
import {
|
|
18
18
|
useLocale,
|
|
19
19
|
useT
|
|
20
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-Q66BLMNJ.js";
|
|
21
21
|
|
|
22
22
|
// src/lib/amplify-client.ts
|
|
23
23
|
import { Amplify } from "aws-amplify";
|
|
@@ -33,31 +33,15 @@ import { generateClient } from "aws-amplify/api";
|
|
|
33
33
|
import {
|
|
34
34
|
setPostsProvider,
|
|
35
35
|
composeSiteIdStatus,
|
|
36
|
-
composeSiteIdSlug
|
|
36
|
+
composeSiteIdSlug,
|
|
37
|
+
decodeAwsJson,
|
|
38
|
+
encodeAwsJson
|
|
37
39
|
} from "ampless";
|
|
38
|
-
function encodeBody(value) {
|
|
39
|
-
return JSON.stringify(value ?? null);
|
|
40
|
-
}
|
|
41
|
-
function decodeBody(value) {
|
|
42
|
-
if (typeof value !== "string") return value;
|
|
43
|
-
try {
|
|
44
|
-
return JSON.parse(value);
|
|
45
|
-
} catch {
|
|
46
|
-
return value;
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
40
|
function decodeMetadata(value) {
|
|
50
41
|
if (value === null || value === void 0) return void 0;
|
|
51
|
-
const parsed =
|
|
42
|
+
const parsed = decodeAwsJson(value);
|
|
52
43
|
return parsed && typeof parsed === "object" && !Array.isArray(parsed) ? parsed : void 0;
|
|
53
44
|
}
|
|
54
|
-
function safeJsonParse(value) {
|
|
55
|
-
try {
|
|
56
|
-
return JSON.parse(value);
|
|
57
|
-
} catch {
|
|
58
|
-
return value;
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
45
|
function toCorePost(p) {
|
|
62
46
|
return {
|
|
63
47
|
postId: p.postId,
|
|
@@ -66,7 +50,7 @@ function toCorePost(p) {
|
|
|
66
50
|
title: p.title,
|
|
67
51
|
excerpt: p.excerpt ?? void 0,
|
|
68
52
|
format: p.format ?? "markdown",
|
|
69
|
-
body:
|
|
53
|
+
body: decodeAwsJson(p.body),
|
|
70
54
|
status: p.status ?? "draft",
|
|
71
55
|
publishedAt: p.publishedAt ?? void 0,
|
|
72
56
|
tags: (p.tags ?? []).filter((t) => typeof t === "string"),
|
|
@@ -163,11 +147,11 @@ function installAdminPostsProvider() {
|
|
|
163
147
|
title: input.title,
|
|
164
148
|
excerpt: input.excerpt,
|
|
165
149
|
format: input.format,
|
|
166
|
-
body:
|
|
150
|
+
body: encodeAwsJson(input.body),
|
|
167
151
|
status: input.status,
|
|
168
152
|
publishedAt: input.publishedAt,
|
|
169
153
|
tags: input.tags,
|
|
170
|
-
...input.metadata !== void 0 && { metadata:
|
|
154
|
+
...input.metadata !== void 0 && { metadata: encodeAwsJson(input.metadata) },
|
|
171
155
|
// Denormalized GSI keys. Must match every change to slug /
|
|
172
156
|
// status — see the update() branch below.
|
|
173
157
|
siteIdStatus: composeSiteIdStatus(input.siteId, input.status),
|
|
@@ -190,11 +174,11 @@ function installAdminPostsProvider() {
|
|
|
190
174
|
...patch.title !== void 0 && { title: patch.title },
|
|
191
175
|
...patch.excerpt !== void 0 && { excerpt: patch.excerpt },
|
|
192
176
|
...patch.format !== void 0 && { format: patch.format },
|
|
193
|
-
...patch.body !== void 0 && { body:
|
|
177
|
+
...patch.body !== void 0 && { body: encodeAwsJson(patch.body) },
|
|
194
178
|
...patch.status !== void 0 && { status: patch.status },
|
|
195
179
|
...patch.publishedAt !== void 0 && { publishedAt: patch.publishedAt },
|
|
196
180
|
...patch.tags !== void 0 && { tags: patch.tags },
|
|
197
|
-
...patch.metadata !== void 0 && { metadata:
|
|
181
|
+
...patch.metadata !== void 0 && { metadata: encodeAwsJson(patch.metadata) },
|
|
198
182
|
...patch.status !== void 0 && nextStatus && { siteIdStatus: composeSiteIdStatus(siteId, nextStatus) },
|
|
199
183
|
...patch.slug !== void 0 && nextSlug && { siteIdSlug: composeSiteIdSlug(siteId, nextSlug) }
|
|
200
184
|
});
|
|
@@ -218,7 +202,7 @@ function installAdminPostsProvider() {
|
|
|
218
202
|
|
|
219
203
|
// src/lib/kv-provider.ts
|
|
220
204
|
import { generateClient as generateClient2 } from "aws-amplify/api";
|
|
221
|
-
import { setKvStore } from "ampless";
|
|
205
|
+
import { decodeAwsJson as decodeAwsJson2, encodeAwsJson as encodeAwsJson2, setKvStore } from "ampless";
|
|
222
206
|
var installed2 = false;
|
|
223
207
|
function installAdminKvProvider() {
|
|
224
208
|
if (installed2) return;
|
|
@@ -233,22 +217,11 @@ function installAdminKvProvider() {
|
|
|
233
217
|
}
|
|
234
218
|
return m;
|
|
235
219
|
}
|
|
236
|
-
function encodeValue(value) {
|
|
237
|
-
return JSON.stringify(value ?? null);
|
|
238
|
-
}
|
|
239
|
-
function decodeValue(raw) {
|
|
240
|
-
if (typeof raw !== "string") return raw;
|
|
241
|
-
try {
|
|
242
|
-
return JSON.parse(raw);
|
|
243
|
-
} catch {
|
|
244
|
-
return raw;
|
|
245
|
-
}
|
|
246
|
-
}
|
|
247
220
|
const store = {
|
|
248
221
|
async get(pk, sk) {
|
|
249
222
|
const model = requireModel();
|
|
250
223
|
const { data } = await model.get({ pk, sk });
|
|
251
|
-
return data ?
|
|
224
|
+
return data ? decodeAwsJson2(data.value) : null;
|
|
252
225
|
},
|
|
253
226
|
async query(pk) {
|
|
254
227
|
const model = requireModel();
|
|
@@ -259,7 +232,7 @@ function installAdminKvProvider() {
|
|
|
259
232
|
return (data ?? []).map((row) => ({
|
|
260
233
|
pk: row.pk,
|
|
261
234
|
sk: row.sk,
|
|
262
|
-
value:
|
|
235
|
+
value: decodeAwsJson2(row.value),
|
|
263
236
|
ttl: row.ttl ?? void 0
|
|
264
237
|
}));
|
|
265
238
|
},
|
|
@@ -271,7 +244,7 @@ function installAdminKvProvider() {
|
|
|
271
244
|
const { errors } = await model.update({
|
|
272
245
|
pk,
|
|
273
246
|
sk,
|
|
274
|
-
value:
|
|
247
|
+
value: encodeAwsJson2(value),
|
|
275
248
|
ttl: ttl ?? null
|
|
276
249
|
});
|
|
277
250
|
if (errors) throw new Error(errors[0]?.message ?? "KvStore.update failed");
|
|
@@ -279,7 +252,7 @@ function installAdminKvProvider() {
|
|
|
279
252
|
const { errors } = await model.create({
|
|
280
253
|
pk,
|
|
281
254
|
sk,
|
|
282
|
-
value:
|
|
255
|
+
value: encodeAwsJson2(value),
|
|
283
256
|
ttl
|
|
284
257
|
});
|
|
285
258
|
if (errors) throw new Error(errors[0]?.message ?? "KvStore.create failed");
|
|
@@ -220,6 +220,18 @@ var en_default = {
|
|
|
220
220
|
lightboxTitle: "Force click-to-enlarge",
|
|
221
221
|
alt: "Alt",
|
|
222
222
|
delete: "Delete"
|
|
223
|
+
},
|
|
224
|
+
table: {
|
|
225
|
+
title: "Table",
|
|
226
|
+
insert: "Insert table (3\xD73)",
|
|
227
|
+
addRowBefore: "Add row above",
|
|
228
|
+
addRowAfter: "Add row below",
|
|
229
|
+
addColumnBefore: "Add column before",
|
|
230
|
+
addColumnAfter: "Add column after",
|
|
231
|
+
deleteRow: "Delete row",
|
|
232
|
+
deleteColumn: "Delete column",
|
|
233
|
+
toggleHeaderRow: "Toggle header row",
|
|
234
|
+
deleteTable: "Delete table"
|
|
223
235
|
}
|
|
224
236
|
},
|
|
225
237
|
auth: {
|
|
@@ -538,6 +550,18 @@ var ja_default = {
|
|
|
538
550
|
lightboxTitle: "\u5F37\u5236\u7684\u306B\u30AF\u30EA\u30C3\u30AF\u3067\u62E1\u5927",
|
|
539
551
|
alt: "\u4EE3\u66FF",
|
|
540
552
|
delete: "\u524A\u9664"
|
|
553
|
+
},
|
|
554
|
+
table: {
|
|
555
|
+
title: "\u30C6\u30FC\u30D6\u30EB",
|
|
556
|
+
insert: "\u30C6\u30FC\u30D6\u30EB\u3092\u633F\u5165 (3\xD73)",
|
|
557
|
+
addRowBefore: "\u4E0A\u306B\u884C\u3092\u8FFD\u52A0",
|
|
558
|
+
addRowAfter: "\u4E0B\u306B\u884C\u3092\u8FFD\u52A0",
|
|
559
|
+
addColumnBefore: "\u5DE6\u306B\u5217\u3092\u8FFD\u52A0",
|
|
560
|
+
addColumnAfter: "\u53F3\u306B\u5217\u3092\u8FFD\u52A0",
|
|
561
|
+
deleteRow: "\u884C\u3092\u524A\u9664",
|
|
562
|
+
deleteColumn: "\u5217\u3092\u524A\u9664",
|
|
563
|
+
toggleHeaderRow: "\u30D8\u30C3\u30C0\u30FC\u884C\u3092\u5207\u66FF",
|
|
564
|
+
deleteTable: "\u30C6\u30FC\u30D6\u30EB\u3092\u524A\u9664"
|
|
541
565
|
}
|
|
542
566
|
},
|
|
543
567
|
auth: {
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
'use client';
|
|
2
2
|
import {
|
|
3
3
|
PostForm
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-LITTIDB3.js";
|
|
5
5
|
import {
|
|
6
6
|
readAdminSiteIdFromCookie
|
|
7
7
|
} from "./chunk-TZWSXAHD.js";
|
|
8
8
|
import {
|
|
9
9
|
useT
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-Q66BLMNJ.js";
|
|
11
11
|
|
|
12
12
|
// src/components/edit-post-view.tsx
|
|
13
13
|
import { useEffect, useState, use } from "react";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
AdminDashboard
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-
|
|
6
|
-
import "../chunk-
|
|
4
|
+
} from "../chunk-6SB7YICQ.js";
|
|
5
|
+
import "../chunk-Q66BLMNJ.js";
|
|
6
|
+
import "../chunk-WL4IBW2D.js";
|
|
7
7
|
export {
|
|
8
8
|
AdminDashboard
|
|
9
9
|
};
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
EditPostPage
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-
|
|
4
|
+
} from "../chunk-WOMPYZNV.js";
|
|
5
|
+
import "../chunk-LITTIDB3.js";
|
|
6
6
|
import "../chunk-TZWSXAHD.js";
|
|
7
7
|
import "../chunk-7IR4F7GA.js";
|
|
8
|
-
import "../chunk-
|
|
8
|
+
import "../chunk-CTGFMK2J.js";
|
|
9
9
|
import "../chunk-2ITWLRYF.js";
|
|
10
|
-
import "../chunk-
|
|
11
|
-
import "../chunk-
|
|
10
|
+
import "../chunk-Q66BLMNJ.js";
|
|
11
|
+
import "../chunk-WL4IBW2D.js";
|
|
12
12
|
export {
|
|
13
13
|
EditPostPage
|
|
14
14
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import { L as Locale, D as Dictionary } from '../i18n-
|
|
2
|
+
import { L as Locale, D as Dictionary } from '../i18n-BhMBRfio.js';
|
|
3
3
|
import { Config, Post, ThemeManifest, LocalizedString, MediaProcessingDefaults } from 'ampless';
|
|
4
4
|
import { AmplessOutputs, ColorScheme } from '@ampless/runtime';
|
|
5
5
|
import { ProcessOptions } from 'ampless/media';
|
package/dist/components/index.js
CHANGED
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
SiteSelector,
|
|
6
6
|
SiteSettingsForm,
|
|
7
7
|
ThemeSettingsForm
|
|
8
|
-
} from "../chunk-
|
|
8
|
+
} from "../chunk-V5FWGILB.js";
|
|
9
9
|
import {
|
|
10
10
|
invalidateSiteSettingsCache
|
|
11
11
|
} from "../chunk-VXEVLHGL.js";
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
PostForm,
|
|
15
15
|
sanitizeName,
|
|
16
16
|
uploadProcessedImage
|
|
17
|
-
} from "../chunk-
|
|
17
|
+
} from "../chunk-LITTIDB3.js";
|
|
18
18
|
import {
|
|
19
19
|
readAdminSiteIdFromCookie,
|
|
20
20
|
setAdminCmsConfig
|
|
@@ -24,10 +24,10 @@ import {
|
|
|
24
24
|
} from "../chunk-7IR4F7GA.js";
|
|
25
25
|
import {
|
|
26
26
|
MediaUploader
|
|
27
|
-
} from "../chunk-
|
|
27
|
+
} from "../chunk-6NPYUTV6.js";
|
|
28
28
|
import {
|
|
29
29
|
ImageUploadDialog
|
|
30
|
-
} from "../chunk-
|
|
30
|
+
} from "../chunk-CTGFMK2J.js";
|
|
31
31
|
import {
|
|
32
32
|
publicMediaUrl,
|
|
33
33
|
setAdminMediaContext
|
|
@@ -36,8 +36,8 @@ import {
|
|
|
36
36
|
I18nProvider,
|
|
37
37
|
useLocale,
|
|
38
38
|
useT
|
|
39
|
-
} from "../chunk-
|
|
40
|
-
import "../chunk-
|
|
39
|
+
} from "../chunk-Q66BLMNJ.js";
|
|
40
|
+
import "../chunk-WL4IBW2D.js";
|
|
41
41
|
export {
|
|
42
42
|
ADMIN_SITE_COOKIE,
|
|
43
43
|
AdminProviders,
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
LoginPage
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-
|
|
6
|
-
import "../chunk-
|
|
4
|
+
} from "../chunk-2U3POKAZ.js";
|
|
5
|
+
import "../chunk-Q66BLMNJ.js";
|
|
6
|
+
import "../chunk-WL4IBW2D.js";
|
|
7
7
|
export {
|
|
8
8
|
LoginPage
|
|
9
9
|
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
McpTokensView
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-
|
|
6
|
-
import "../chunk-
|
|
4
|
+
} from "../chunk-CFQPS5NT.js";
|
|
5
|
+
import "../chunk-Q66BLMNJ.js";
|
|
6
|
+
import "../chunk-WL4IBW2D.js";
|
|
7
7
|
export {
|
|
8
8
|
McpTokensView
|
|
9
9
|
};
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
MediaPage
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-
|
|
6
|
-
import "../chunk-
|
|
4
|
+
} from "../chunk-KQOE5CT6.js";
|
|
5
|
+
import "../chunk-6NPYUTV6.js";
|
|
6
|
+
import "../chunk-CTGFMK2J.js";
|
|
7
7
|
import "../chunk-2ITWLRYF.js";
|
|
8
|
-
import "../chunk-
|
|
9
|
-
import "../chunk-
|
|
8
|
+
import "../chunk-Q66BLMNJ.js";
|
|
9
|
+
import "../chunk-WL4IBW2D.js";
|
|
10
10
|
export {
|
|
11
11
|
MediaPage
|
|
12
12
|
};
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
NewPostPage
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-
|
|
4
|
+
} from "../chunk-G4IY757H.js";
|
|
5
|
+
import "../chunk-LITTIDB3.js";
|
|
6
6
|
import "../chunk-TZWSXAHD.js";
|
|
7
7
|
import "../chunk-7IR4F7GA.js";
|
|
8
|
-
import "../chunk-
|
|
8
|
+
import "../chunk-CTGFMK2J.js";
|
|
9
9
|
import "../chunk-2ITWLRYF.js";
|
|
10
|
-
import "../chunk-
|
|
11
|
-
import "../chunk-
|
|
10
|
+
import "../chunk-Q66BLMNJ.js";
|
|
11
|
+
import "../chunk-WL4IBW2D.js";
|
|
12
12
|
export {
|
|
13
13
|
NewPostPage
|
|
14
14
|
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
PostsList
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-F7VFVKY5.js";
|
|
5
5
|
import "../chunk-TZWSXAHD.js";
|
|
6
6
|
import "../chunk-7IR4F7GA.js";
|
|
7
|
-
import "../chunk-
|
|
8
|
-
import "../chunk-
|
|
7
|
+
import "../chunk-Q66BLMNJ.js";
|
|
8
|
+
import "../chunk-WL4IBW2D.js";
|
|
9
9
|
export {
|
|
10
10
|
PostsList
|
|
11
11
|
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
UsersListView
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-
|
|
6
|
-
import "../chunk-
|
|
4
|
+
} from "../chunk-TZ5F24BG.js";
|
|
5
|
+
import "../chunk-Q66BLMNJ.js";
|
|
6
|
+
import "../chunk-WL4IBW2D.js";
|
|
7
7
|
export {
|
|
8
8
|
UsersListView
|
|
9
9
|
};
|
|
@@ -218,6 +218,18 @@ var editor = {
|
|
|
218
218
|
lightboxTitle: "Force click-to-enlarge",
|
|
219
219
|
alt: "Alt",
|
|
220
220
|
"delete": "Delete"
|
|
221
|
+
},
|
|
222
|
+
table: {
|
|
223
|
+
title: "Table",
|
|
224
|
+
insert: "Insert table (3×3)",
|
|
225
|
+
addRowBefore: "Add row above",
|
|
226
|
+
addRowAfter: "Add row below",
|
|
227
|
+
addColumnBefore: "Add column before",
|
|
228
|
+
addColumnAfter: "Add column after",
|
|
229
|
+
deleteRow: "Delete row",
|
|
230
|
+
deleteColumn: "Delete column",
|
|
231
|
+
toggleHeaderRow: "Toggle header row",
|
|
232
|
+
deleteTable: "Delete table"
|
|
221
233
|
}
|
|
222
234
|
};
|
|
223
235
|
var auth = {
|
|
@@ -550,6 +562,18 @@ declare const dictionaries: {
|
|
|
550
562
|
alt: string;
|
|
551
563
|
delete: string;
|
|
552
564
|
};
|
|
565
|
+
table: {
|
|
566
|
+
title: string;
|
|
567
|
+
insert: string;
|
|
568
|
+
addRowBefore: string;
|
|
569
|
+
addRowAfter: string;
|
|
570
|
+
addColumnBefore: string;
|
|
571
|
+
addColumnAfter: string;
|
|
572
|
+
deleteRow: string;
|
|
573
|
+
deleteColumn: string;
|
|
574
|
+
toggleHeaderRow: string;
|
|
575
|
+
deleteTable: string;
|
|
576
|
+
};
|
|
553
577
|
};
|
|
554
578
|
auth: {
|
|
555
579
|
common: {
|
|
@@ -866,6 +890,18 @@ declare const dictionaries: {
|
|
|
866
890
|
alt: string;
|
|
867
891
|
delete: string;
|
|
868
892
|
};
|
|
893
|
+
table: {
|
|
894
|
+
title: string;
|
|
895
|
+
insert: string;
|
|
896
|
+
addRowBefore: string;
|
|
897
|
+
addRowAfter: string;
|
|
898
|
+
addColumnBefore: string;
|
|
899
|
+
addColumnAfter: string;
|
|
900
|
+
deleteRow: string;
|
|
901
|
+
deleteColumn: string;
|
|
902
|
+
toggleHeaderRow: string;
|
|
903
|
+
deleteTable: string;
|
|
904
|
+
};
|
|
869
905
|
};
|
|
870
906
|
auth: {
|
|
871
907
|
common: {
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Config } from 'ampless';
|
|
2
2
|
import { AmplessOutputs, EffectiveSiteSettings, EffectiveThemeConfig, Ampless } from '@ampless/runtime';
|
|
3
|
-
import { L as Locale, D as Dictionary } from './i18n-
|
|
4
|
-
export { A as AdminLocaleStrings, g as getDictionary, r as resolveLocale, t as translate } from './i18n-
|
|
3
|
+
import { L as Locale, D as Dictionary } from './i18n-BhMBRfio.js';
|
|
4
|
+
export { A as AdminLocaleStrings, g as getDictionary, r as resolveLocale, t as translate } from './i18n-BhMBRfio.js';
|
|
5
5
|
import * as _aws_amplify_adapter_nextjs from '@aws-amplify/adapter-nextjs';
|
|
6
6
|
|
|
7
7
|
/**
|