eddev 2.0.0-beta.187 → 2.0.0-beta.189

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.
@@ -1 +1 @@
1
- {"version":3,"file":"builtin-blocks.d.ts","sourceRoot":"","sources":["../../../../src/app/lib/blocks/builtin-blocks.tsx"],"names":[],"mappings":"AAEA,wBAAgB,qBAAqB,SA+BpC"}
1
+ {"version":3,"file":"builtin-blocks.d.ts","sourceRoot":"","sources":["../../../../src/app/lib/blocks/builtin-blocks.tsx"],"names":[],"mappings":"AAEA,wBAAgB,qBAAqB,SAqDpC"}
@@ -31,4 +31,25 @@ export function registerBuiltinBlocks() {
31
31
  renaming: false,
32
32
  },
33
33
  });
34
+ // wp.blocks.registerBlockType("core/link", {
35
+ // title: "Link",
36
+ // icon :"admin-links",
37
+ // attributes: {
38
+ // label: { type: "string" },
39
+ // url: { type: "string" },
40
+ // target: { type: "string" },
41
+ // },
42
+ // edit: (props) => {
43
+ // return <div>
44
+ // <InspectorControls>
45
+ // <wp.blockEditor.__experimentalLinkControl
46
+ // onChange={(e) => {
47
+ // console.log(e)
48
+ // // setLink({})
49
+ // }}
50
+ // />
51
+ // </InspectorControls>
52
+ // </div>
53
+ // }
54
+ // })
34
55
  }
@@ -1 +1 @@
1
- {"version":3,"file":"useSearchParams.d.ts","sourceRoot":"","sources":["../../../../../src/app/lib/routing/hooks/useSearchParams.tsx"],"names":[],"mappings":"AAMA;;GAEG;AACH,MAAM,MAAM,cAAc,CAAC,CAAC,IAAI;IAC9B;;;;;;;;;OASG;IACH,GAAG,CAAC,CAAC,SAAS,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,GAAG,SAAS,GAAG,IAAI,CAAA;IACpE;;;;;OAKG;IACH,MAAM,EAAE,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC,CAAC,KAAK,IAAI,CAAA;IACnC;;;;;;;;;;;;OAYG;IACH,MAAM,CAAC,CAAC,SAAS,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC,GAAG,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,GAAG,SAAS,KAAK,IAAI,CAAA;IAC3E;;OAEG;IACH,KAAK,IAAI,IAAI,CAAA;IACb;;OAEG;IACH,GAAG,CAAC,CAAC,SAAS,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAA;CACrC,CAAA;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACH,wBAAgB,eAAe,CAAC,CAAC,SAAS,MAAM,EAAE,YAAY,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,CAAC,CA0DzF"}
1
+ {"version":3,"file":"useSearchParams.d.ts","sourceRoot":"","sources":["../../../../../src/app/lib/routing/hooks/useSearchParams.tsx"],"names":[],"mappings":"AAMA;;GAEG;AACH,MAAM,MAAM,cAAc,CAAC,CAAC,IAAI;IAC9B;;;;;;;;;OASG;IACH,GAAG,CAAC,CAAC,SAAS,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,GAAG,SAAS,GAAG,IAAI,CAAA;IACpE;;;;;OAKG;IACH,MAAM,EAAE,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC,CAAC,KAAK,IAAI,CAAA;IACnC;;;;;;;;;;;;OAYG;IACH,MAAM,CAAC,CAAC,SAAS,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC,GAAG,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,GAAG,SAAS,KAAK,IAAI,CAAA;IAC3E;;OAEG;IACH,KAAK,IAAI,IAAI,CAAA;IACb;;OAEG;IACH,GAAG,CAAC,CAAC,SAAS,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAA;CACrC,CAAA;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACH,wBAAgB,eAAe,CAAC,CAAC,SAAS,MAAM,EAAE,YAAY,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,CAAC,CA2DzF"}
@@ -1,4 +1,4 @@
1
- import { useMemo, useRef } from "react";
1
+ import { useMemo, useRef, useState } from "react";
2
2
  import { useRoute } from "./useRoute.js";
3
3
  import { useRouter } from "./useRouter.js";
4
4
  import { parseQuery } from "../utils.js";
@@ -39,12 +39,13 @@ import { hash } from "object-code";
39
39
  * @returns A tuple of the resolve parameter object, and a {@link SearchParamAPI} object with methods to interact with the query string.
40
40
  */
41
41
  export function useSearchParams(defaultValue) {
42
- const route = useRoute();
43
- const replaceQuery = useRouter((r) => r.replaceQuery);
42
+ const [currentQuery, replaceQuery] = env.admin
43
+ ? useState({})
44
+ : [useRoute().query, useRouter((r) => r.replaceQuery)];
44
45
  const merged = useMemo(() => ({
45
46
  ...defaultValue,
46
- ...route.query,
47
- }), [route.query]);
47
+ ...currentQuery,
48
+ }), [currentQuery]);
48
49
  const values = useRef(merged);
49
50
  values.current = merged;
50
51
  // Memoized setters
@@ -1 +1 @@
1
- {"version":3,"file":"server-context.d.ts","sourceRoot":"","sources":["../../../src/app/server/server-context.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,iCAAiC,CAAA;AAC1D,OAAO,EAAE,cAAc,EAAE,MAAM,YAAY,CAAA;AAC3C,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAA;AAE5D,OAAO,EAAiC,WAAW,EAAE,MAAM,yBAAyB,CAAA;AAEpF,OAAO,EAAqB,eAAe,EAAE,MAAM,yBAAyB,CAAA;AAE5E,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAA;AAKxD,MAAM,MAAM,iBAAiB,GAAG;IAC9B,GAAG,EAAE,OAAO,CAAA;IACZ,MAAM,EAAE,MAAM,CAAA;IACd,WAAW,CAAC,EAAE,eAAe,CAAA;IAC7B,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAA;IACnB,MAAM,EAAE,QAAQ,CAAA;CACjB,CAAA;AAED,MAAM,MAAM,oBAAoB,GAAG;IACjC,WAAW,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,QAAQ,CAAA;CACxC,CAAA;AAkBD;;GAEG;AACH,KAAK,aAAa,GAAG;IACnB,OAAO,EAAE,GAAG,CAAA;IACZ,QAAQ,EAAE,WAAW,CAAA;CACtB,CAAA;AAED,qBAAa,aAAa;IACxB,GAAG,EAAE,OAAO,CAAA;IACZ,MAAM,EAAE,MAAM,CAAA;IACd,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,MAAM,KAAK,MAAM,CAAA;IACxD,QAAQ,EAAE,MAAM,EAAE,CAAK;IACvB,MAAM,EAAE,QAAQ,CAAA;IAEhB,MAAM,CAAC,IAAI,EAAE,aAAa,CAAA;gBAEd,IAAI,EAAE,iBAAiB;IAWnC,WAAW,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,MAAM;IAOzC,IAAI,OAAO,yBAEV;IAED,MAAM,CAAC,UAAU,CAAC,EAAE,EAAE,oBAAoB;IAI1C,YAAY,CAAC,GAAG,EAAE,MAAM;IAQlB,WAAW,CACf,GAAG,EAAE,MAAM,EACX,IAAI,CAAC,EAAE,WAAW,GAAG;QAAE,WAAW,CAAC,EAAE,OAAO,CAAC;QAAC,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE,GACjE,OAAO,CAAC,QAAQ,CAAC;IAmCpB,oBAAoB,CAAC,IAAI,EAAE,OAAO,GAAG,UAAU,GAAG,OAAO,GAAG,KAAK,EAAE,GAAG,EAAE,MAAM,EAAE,OAAO,EAAE,YAAY,CAAC,KAAK,EAAE;IAoFvG,cAAc,CAAC,GAAG,EAAE;QAAE,QAAQ,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,cAAc,CAAC;QAAC,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE;IAwGtF,YAAY,IAAI,OAAO,CAAC,aAAa,CAAC;IAgC5C,qBAAqB,CAAC,GAAG,CAAC,EAAE,cAAc;IAYpC,eAAe,CAAC,GAAG,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,cAAc,CAAA;KAAE;IA4D9E,aAAa,CAAC,GAAG,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,cAAc,CAAA;KAAE;IAehF,IAAI,kBAAkB,aAcrB;IAED,aAAa,CAAC,YAAY,EAAE,MAAM;IAUlC,cAAc,CAAC,MAAM,EAAE,MAAM;;;;;;;;;;;;;CAiD9B"}
1
+ {"version":3,"file":"server-context.d.ts","sourceRoot":"","sources":["../../../src/app/server/server-context.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,iCAAiC,CAAA;AAC1D,OAAO,EAAE,cAAc,EAAE,MAAM,YAAY,CAAA;AAC3C,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAA;AAE5D,OAAO,EAAiC,WAAW,EAAE,MAAM,yBAAyB,CAAA;AAEpF,OAAO,EAAqB,eAAe,EAAE,MAAM,yBAAyB,CAAA;AAE5E,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAA;AAKxD,MAAM,MAAM,iBAAiB,GAAG;IAC9B,GAAG,EAAE,OAAO,CAAA;IACZ,MAAM,EAAE,MAAM,CAAA;IACd,WAAW,CAAC,EAAE,eAAe,CAAA;IAC7B,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAA;IACnB,MAAM,EAAE,QAAQ,CAAA;CACjB,CAAA;AAED,MAAM,MAAM,oBAAoB,GAAG;IACjC,WAAW,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,QAAQ,CAAA;CACxC,CAAA;AAkBD;;GAEG;AACH,KAAK,aAAa,GAAG;IACnB,OAAO,EAAE,GAAG,CAAA;IACZ,QAAQ,EAAE,WAAW,CAAA;CACtB,CAAA;AAED,qBAAa,aAAa;IACxB,GAAG,EAAE,OAAO,CAAA;IACZ,MAAM,EAAE,MAAM,CAAA;IACd,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,MAAM,KAAK,MAAM,CAAA;IACxD,QAAQ,EAAE,MAAM,EAAE,CAAK;IACvB,MAAM,EAAE,QAAQ,CAAA;IAEhB,MAAM,CAAC,IAAI,EAAE,aAAa,CAAA;gBAEd,IAAI,EAAE,iBAAiB;IAWnC,WAAW,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,MAAM;IAOzC,IAAI,OAAO,yBAEV;IAED,MAAM,CAAC,UAAU,CAAC,EAAE,EAAE,oBAAoB;IAI1C,YAAY,CAAC,GAAG,EAAE,MAAM;IAQlB,WAAW,CACf,GAAG,EAAE,MAAM,EACX,IAAI,CAAC,EAAE,WAAW,GAAG;QAAE,WAAW,CAAC,EAAE,OAAO,CAAC;QAAC,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE,GACjE,OAAO,CAAC,QAAQ,CAAC;IAgCpB,oBAAoB,CAAC,IAAI,EAAE,OAAO,GAAG,UAAU,GAAG,OAAO,GAAG,KAAK,EAAE,GAAG,EAAE,MAAM,EAAE,OAAO,EAAE,YAAY,CAAC,KAAK,EAAE;IAmFvG,cAAc,CAAC,GAAG,EAAE;QAAE,QAAQ,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,cAAc,CAAC;QAAC,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE;IAwGtF,YAAY,IAAI,OAAO,CAAC,aAAa,CAAC;IAgC5C,qBAAqB,CAAC,GAAG,CAAC,EAAE,cAAc;IAYpC,eAAe,CAAC,GAAG,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,cAAc,CAAA;KAAE;IA4D9E,aAAa,CAAC,GAAG,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,cAAc,CAAA;KAAE;IAehF,IAAI,kBAAkB,aAcrB;IAED,aAAa,CAAC,YAAY,EAAE,MAAM;IAUlC,cAAc,CAAC,MAAM,EAAE,MAAM;;;;;;;;;;;;;CAiD9B"}
@@ -58,7 +58,6 @@ export class ServerContext {
58
58
  }
59
59
  async fetchOrigin(url, opts) {
60
60
  url = this.getOriginUrl(url);
61
- console.debug("fetching from WP", url, opts);
62
61
  const fetchOps = { ...opts };
63
62
  delete fetchOps.replaceUrls;
64
63
  delete fetchOps.newOrigin;
@@ -66,7 +65,6 @@ export class ServerContext {
66
65
  ...fetchOps,
67
66
  });
68
67
  if (!response.ok) {
69
- console.debug("fetchOrigin NOT OK", response.status, response.statusText);
70
68
  return response;
71
69
  }
72
70
  const headers = {};
@@ -76,7 +74,6 @@ export class ServerContext {
76
74
  }
77
75
  });
78
76
  let text = await response.text();
79
- console.debug("fetchOrigin", url, response.status, response.statusText, text);
80
77
  if (opts?.replaceUrls) {
81
78
  text = this.replaceUrls(text, opts.newOrigin);
82
79
  }
@@ -168,7 +165,6 @@ export class ServerContext {
168
165
  for (let entry of monitor) {
169
166
  printEntry(entry);
170
167
  }
171
- console.debug(finalOutput.join("\n"));
172
168
  }
173
169
  async fetchRouteData(req) {
174
170
  /**
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "2.0.0-beta.165";
1
+ export declare const VERSION = "2.0.0-beta.189";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -1 +1 @@
1
- export const VERSION = "2.0.0-beta.165";
1
+ export const VERSION = "2.0.0-beta.189";
@@ -1 +1 @@
1
- {"version":3,"file":"fetch-wp.d.ts","sourceRoot":"","sources":["../../../src/node/utils/fetch-wp.ts"],"names":[],"mappings":"AASA,wBAAsB,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,EAAE,IAAI,GAAE,WAAgB,GAAG,OAAO,CAAC,QAAQ,CAAC,CAsB1F"}
1
+ {"version":3,"file":"fetch-wp.d.ts","sourceRoot":"","sources":["../../../src/node/utils/fetch-wp.ts"],"names":[],"mappings":"AASA,wBAAsB,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,EAAE,IAAI,GAAE,WAAgB,GAAG,OAAO,CAAC,QAAQ,CAAC,CAmB1F"}
@@ -14,13 +14,11 @@ export async function fetchWP(url, args = {}) {
14
14
  }
15
15
  // Allow self-signed certificates when using a local development domain
16
16
  let allowSelfSigned = isDevelopmentDomain(url);
17
- console.debug("fetching from origin", { url, args, allowSelfSigned, headers });
18
17
  const response = (await fetch(url, {
19
18
  ...args,
20
19
  dispatcher: allowSelfSigned ? agent : undefined,
21
20
  headers,
22
21
  }));
23
- console.debug("fetch result", response.status, response.statusText, response.headers, response.ok);
24
22
  return response;
25
23
  }
26
24
  setGlobalDispatcher(agent);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eddev",
3
- "version": "2.0.0-beta.187",
3
+ "version": "2.0.0-beta.189",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "type": "module",
package/types.meta.d.ts CHANGED
@@ -189,165 +189,348 @@ declare global {
189
189
  }
190
190
  }
191
191
  type BlockIcon =
192
- | "menu"
193
- | "admin-site"
194
- | "dashboard"
195
- | "admin-post"
196
- | "admin-media"
192
+ | "admin-appearance"
193
+ | "admin-collapse"
194
+ | "admin-comments"
195
+ | "admin-customizer"
196
+ | "admin-generic"
197
+ | "admin-home"
197
198
  | "admin-links"
199
+ | "admin-media"
200
+ | "admin-multisite"
201
+ | "admin-network"
198
202
  | "admin-page"
199
- | "admin-comments"
200
- | "admin-appearance"
201
203
  | "admin-plugins"
202
- | "admin-users"
203
- | "admin-tools"
204
+ | "admin-post"
204
205
  | "admin-settings"
205
- | "admin-network"
206
- | "admin-home"
207
- | "admin-generic"
208
- | "admin-collapse"
209
- | "welcome-write-blog"
210
- | "welcome-add-page"
211
- | "welcome-view-site"
212
- | "welcome-widgets-menus"
213
- | "welcome-comments"
214
- | "welcome-learn-more"
215
- | "format-aside"
216
- | "format-image"
217
- | "format-gallery"
218
- | "format-video"
219
- | "format-status"
220
- | "format-quote"
221
- | "format-chat"
222
- | "format-audio"
206
+ | "admin-site"
207
+ | "admin-site-alt"
208
+ | "admin-site-alt2"
209
+ | "admin-site-alt3"
210
+ | "admin-tools"
211
+ | "admin-users"
212
+ | "airplane"
213
+ | "album"
214
+ | "align-center"
215
+ | "align-full-width"
216
+ | "align-left"
217
+ | "align-none"
218
+ | "align-pull-left"
219
+ | "align-pull-right"
220
+ | "align-right"
221
+ | "align-wide"
222
+ | "amazon"
223
+ | "analytics"
224
+ | "archive"
225
+ | "arrow-down"
226
+ | "arrow-down-alt"
227
+ | "arrow-down-alt2"
228
+ | "arrow-left"
229
+ | "arrow-left-alt"
230
+ | "arrow-left-alt2"
231
+ | "arrow-right"
232
+ | "arrow-right-alt"
233
+ | "arrow-right-alt2"
234
+ | "arrow-up"
235
+ | "arrow-up-alt"
236
+ | "arrow-up-alt2"
237
+ | "arrow-up-duplicate"
238
+ | "art"
239
+ | "awards"
240
+ | "backup"
241
+ | "bank"
242
+ | "beer"
243
+ | "bell"
244
+ | "block-default"
245
+ | "book"
246
+ | "book-alt"
247
+ | "buddicons-activity"
248
+ | "buddicons-bbpress-logo"
249
+ | "buddicons-buddypress-logo"
250
+ | "buddicons-community"
251
+ | "buddicons-forums"
252
+ | "buddicons-friends"
253
+ | "buddicons-groups"
254
+ | "buddicons-pm"
255
+ | "buddicons-replies"
256
+ | "buddicons-topics"
257
+ | "buddicons-tracking"
258
+ | "building"
259
+ | "businessman"
260
+ | "businessperson"
261
+ | "businesswoman"
262
+ | "button"
263
+ | "calculator"
264
+ | "calendar"
265
+ | "calendar-alt"
223
266
  | "camera"
224
- | "images-alt"
225
- | "images-alt2"
226
- | "video-alt"
227
- | "video-alt2"
228
- | "video-alt3"
229
- | "image-crop"
230
- | "image-rotate-left"
231
- | "image-rotate-right"
232
- | "image-flip-vertical"
233
- | "image-flip-horizontal"
234
- | "undo"
235
- | "redo"
236
- | "editor-bold"
237
- | "editor-italic"
238
- | "editor-ul"
239
- | "editor-ol"
240
- | "editor-quote"
241
- | "editor-alignleft"
267
+ | "camera-alt"
268
+ | "car"
269
+ | "carrot"
270
+ | "cart"
271
+ | "category"
272
+ | "chart-area"
273
+ | "chart-bar"
274
+ | "chart-line"
275
+ | "chart-pie"
276
+ | "clipboard"
277
+ | "clock"
278
+ | "cloud"
279
+ | "cloud-saved"
280
+ | "cloud-upload"
281
+ | "code-standards"
282
+ | "coffee"
283
+ | "color-picker"
284
+ | "columns"
285
+ | "controls-back"
286
+ | "controls-forward"
287
+ | "controls-pause"
288
+ | "controls-play"
289
+ | "controls-repeat"
290
+ | "controls-skipback"
291
+ | "controls-skipforward"
292
+ | "controls-volumeoff"
293
+ | "controls-volumeon"
294
+ | "cover-image"
295
+ | "dashboard"
296
+ | "database"
297
+ | "database-add"
298
+ | "database-export"
299
+ | "database-import"
300
+ | "database-remove"
301
+ | "database-view"
302
+ | "desktop"
303
+ | "dismiss"
304
+ | "download"
305
+ | "drumstick"
306
+ | "edit"
307
+ | "edit-large"
308
+ | "edit-page"
242
309
  | "editor-aligncenter"
310
+ | "editor-alignleft"
243
311
  | "editor-alignright"
312
+ | "editor-bold"
313
+ | "editor-break"
314
+ | "editor-code"
315
+ | "editor-code-duplicate"
316
+ | "editor-contract"
317
+ | "editor-customchar"
318
+ | "editor-expand"
319
+ | "editor-help"
320
+ | "editor-indent"
244
321
  | "editor-insertmore"
245
- | "editor-spellcheck"
246
- | "editor-distractionfree"
247
- | "editor-kitchensink"
248
- | "editor-underline"
322
+ | "editor-italic"
249
323
  | "editor-justify"
250
- | "editor-textcolor"
251
- | "editor-paste-word"
324
+ | "editor-kitchensink"
325
+ | "editor-ltr"
326
+ | "editor-ol"
327
+ | "editor-ol-rtl"
328
+ | "editor-outdent"
329
+ | "editor-paragraph"
252
330
  | "editor-paste-text"
331
+ | "editor-paste-word"
332
+ | "editor-quote"
253
333
  | "editor-removeformatting"
254
- | "editor-video"
255
- | "editor-customchar"
256
- | "editor-outdent"
257
- | "editor-indent"
258
- | "editor-help"
334
+ | "editor-rtl"
335
+ | "editor-spellcheck"
259
336
  | "editor-strikethrough"
337
+ | "editor-table"
338
+ | "editor-textcolor"
339
+ | "editor-ul"
340
+ | "editor-underline"
260
341
  | "editor-unlink"
261
- | "editor-rtl"
262
- | "align-left"
263
- | "align-right"
264
- | "align-center"
265
- | "align-none"
266
- | "lock"
267
- | "calendar"
268
- | "visibility"
269
- | "post-status"
270
- | "edit"
271
- | "trash"
272
- | "arrow-up"
273
- | "arrow-down"
274
- | "arrow-right"
275
- | "arrow-left"
276
- | "arrow-up-alt"
277
- | "arrow-down-alt"
278
- | "arrow-right-alt"
279
- | "arrow-left-alt"
280
- | "arrow-up-alt2"
281
- | "arrow-down-alt2"
282
- | "arrow-right-alt2"
283
- | "arrow-left-alt2"
284
- | "sort"
285
- | "leftright"
286
- | "list-view"
287
- | "exerpt-view"
288
- | "share"
289
- | "share-alt"
290
- | "share-alt2"
291
- | "twitter"
292
- | "rss"
342
+ | "editor-video"
343
+ | "ellipsis"
344
+ | "email"
345
+ | "email-alt"
346
+ | "email-alt2"
347
+ | "embed-audio"
348
+ | "embed-generic"
349
+ | "embed-photo"
350
+ | "embed-post"
351
+ | "embed-video"
352
+ | "excerpt-view"
353
+ | "exit"
354
+ | "external"
293
355
  | "facebook"
294
356
  | "facebook-alt"
357
+ | "feedback"
358
+ | "filter"
359
+ | "flag"
360
+ | "food"
361
+ | "format-aside"
362
+ | "format-audio"
363
+ | "format-chat"
364
+ | "format-gallery"
365
+ | "format-image"
366
+ | "format-quote"
367
+ | "format-status"
368
+ | "format-video"
369
+ | "forms"
370
+ | "fullscreen-alt"
371
+ | "fullscreen-exit-alt"
372
+ | "games"
373
+ | "google"
295
374
  | "googleplus"
296
- | "networking"
375
+ | "grid-view"
376
+ | "groups"
297
377
  | "hammer"
298
- | "art"
299
- | "migrate"
300
- | "performance"
301
- | "wordpress"
302
- | "wordpress-alt"
303
- | "pressthis"
304
- | "update"
305
- | "screenoptions"
378
+ | "heading"
379
+ | "heart"
380
+ | "hidden"
381
+ | "hourglass"
382
+ | "html"
383
+ | "id"
384
+ | "id-alt"
385
+ | "image-crop"
386
+ | "image-filter"
387
+ | "image-flip-horizontal"
388
+ | "image-flip-vertical"
389
+ | "image-rotate"
390
+ | "image-rotate-left"
391
+ | "image-rotate-right"
392
+ | "images-alt"
393
+ | "images-alt2"
394
+ | "index-card"
306
395
  | "info"
307
- | "cart"
308
- | "feedback"
309
- | "cloud"
310
- | "translation"
311
- | "tag"
312
- | "category"
313
- | "yes"
396
+ | "info-outline"
397
+ | "insert"
398
+ | "insert-after"
399
+ | "insert-before"
400
+ | "instagram"
401
+ | "laptop"
402
+ | "layout"
403
+ | "leftright"
404
+ | "lightbulb"
405
+ | "linkedin"
406
+ | "list-view"
407
+ | "location"
408
+ | "location-alt"
409
+ | "lock"
410
+ | "lock-duplicate"
411
+ | "marker"
412
+ | "media-archive"
413
+ | "media-audio"
414
+ | "media-code"
415
+ | "media-default"
416
+ | "media-document"
417
+ | "media-interactive"
418
+ | "media-spreadsheet"
419
+ | "media-text"
420
+ | "media-video"
421
+ | "megaphone"
422
+ | "menu"
423
+ | "menu-alt"
424
+ | "menu-alt2"
425
+ | "menu-alt3"
426
+ | "microphone"
427
+ | "migrate"
428
+ | "minus"
429
+ | "money"
430
+ | "money-alt"
431
+ | "move"
432
+ | "nametag"
433
+ | "networking"
314
434
  | "no"
315
435
  | "no-alt"
436
+ | "open-folder"
437
+ | "palmtree"
438
+ | "paperclip"
439
+ | "pdf"
440
+ | "performance"
441
+ | "pets"
442
+ | "phone"
443
+ | "pinterest"
444
+ | "playlist-audio"
445
+ | "playlist-video"
446
+ | "plugins-checked"
316
447
  | "plus"
317
- | "minus"
318
- | "dismiss"
319
- | "marker"
320
- | "star-filled"
321
- | "star-half"
322
- | "star-empty"
323
- | "flag"
324
- | "location"
325
- | "location-alt"
326
- | "vault"
448
+ | "plus-alt"
449
+ | "plus-alt2"
450
+ | "podio"
451
+ | "portfolio"
452
+ | "post-status"
453
+ | "pressthis"
454
+ | "printer"
455
+ | "privacy"
456
+ | "products"
457
+ | "randomize"
458
+ | "reddit"
459
+ | "redo"
460
+ | "remove"
461
+ | "rest-api"
462
+ | "rss"
463
+ | "saved"
464
+ | "schedule"
465
+ | "screenoptions"
466
+ | "search"
467
+ | "share"
468
+ | "share-alt"
469
+ | "share-alt2"
327
470
  | "shield"
328
471
  | "shield-alt"
329
- | "search"
472
+ | "shortcode"
330
473
  | "slides"
331
- | "analytics"
332
- | "chart-pie"
333
- | "chart-bar"
334
- | "chart-line"
335
- | "chart-area"
336
- | "groups"
337
- | "businessman"
338
- | "id"
339
- | "id-alt"
340
- | "products"
341
- | "awards"
342
- | "forms"
343
- | "portfolio"
344
- | "book"
345
- | "book-alt"
346
- | "download"
347
- | "upload"
348
- | "backup"
349
- | "lightbulb"
474
+ | "smartphone"
350
475
  | "smiley"
476
+ | "sort"
477
+ | "sos"
478
+ | "spotify"
479
+ | "star-empty"
480
+ | "star-filled"
481
+ | "star-half"
482
+ | "sticky"
483
+ | "store"
484
+ | "superhero"
485
+ | "superhero-alt"
486
+ | "table-col-after"
487
+ | "table-col-before"
488
+ | "table-col-delete"
489
+ | "table-row-after"
490
+ | "table-row-before"
491
+ | "table-row-delete"
492
+ | "tablet"
493
+ | "tag"
494
+ | "tagcloud"
495
+ | "testimonial"
496
+ | "text"
497
+ | "text-page"
498
+ | "thumbs-down"
499
+ | "thumbs-up"
500
+ | "tickets"
501
+ | "tickets-alt"
502
+ | "tide"
503
+ | "translation"
504
+ | "trash"
505
+ | "twitch"
506
+ | "twitter"
507
+ | "twitter-alt"
508
+ | "undo"
509
+ | "universal-access"
510
+ | "universal-access-alt"
511
+ | "unlock"
512
+ | "update"
513
+ | "update-alt"
514
+ | "upload"
515
+ | "vault"
516
+ | "video-alt"
517
+ | "video-alt2"
518
+ | "video-alt3"
519
+ | "visibility"
520
+ | "warning"
521
+ | "welcome-add-page"
522
+ | "welcome-comments"
523
+ | "welcome-learn-more"
524
+ | "welcome-view-site"
525
+ | "welcome-widgets-menus"
526
+ | "welcome-write-blog"
527
+ | "whatsapp"
528
+ | "wordpress"
529
+ | "wordpress-alt"
530
+ | "xing"
531
+ | "yes"
532
+ | "yes-alt"
533
+ | "youtube"
351
534
 
352
535
  type TransformRawSchema = {
353
536
  [k in keyof HTMLElementTagNameMap | "#text"]?: {