From e5e30273e83a5af7a99a448e08f2f31e613dd570 Mon Sep 17 00:00:00 2001 From: Deepak Kharah <42672761+Deepak-Kharah@users.noreply.github.com> Date: Fri, 21 Jul 2023 18:07:15 +0530 Subject: [PATCH 01/13] feat: get hash from sdk --- src/live-preview.ts | 24 ++++++++++++++++++++++++ src/utils/types.ts | 1 + 2 files changed, 25 insertions(+) diff --git a/src/live-preview.ts b/src/live-preview.ts index 969b1d44..fd750844 100644 --- a/src/live-preview.ts +++ b/src/live-preview.ts @@ -21,6 +21,7 @@ export default class LivePreview { enable: true, runScriptsOnUpdate: false, cleanCslpOnProduction: true, + hash: "", stackDetails: { apiKey: "", @@ -235,6 +236,27 @@ export default class LivePreview { this.config.onChange = onChangeCallback; } + get hash(): string { + return this.config.hash; + } + + setConfigFromParams( + params: Partial<{ + live_preview: string; + }> = {} + ): void { + if (typeof params !== "object") + throw new TypeError( + "Live preview SDK: query param must be an object" + ); + + const { live_preview } = params; + + if (live_preview) { + this.config.hash = live_preview; + } + } + private resolveIncomingMessage( e: MessageEvent ) { @@ -247,6 +269,8 @@ export default class LivePreview { const { contentTypeUid, entryUid } = this.config.stackDetails; const { hash } = e.data.data; + this.setConfigFromParams({ live_preview: hash }); + if (this.config.ssr) { // Get the content from the server and replace the body diff --git a/src/utils/types.ts b/src/utils/types.ts index 64b34976..0af67731 100644 --- a/src/utils/types.ts +++ b/src/utils/types.ts @@ -44,6 +44,7 @@ export declare interface IConfig { stackSdk: IStackSdk; onChange: () => void; runScriptsOnUpdate: boolean; + hash: string; } export declare interface IInitData { From 935a4286bd65d9f1f5076c2c9b05bff76858ca35 Mon Sep 17 00:00:00 2001 From: Deepak Kharah <42672761+Deepak-Kharah@users.noreply.github.com> Date: Fri, 21 Jul 2023 18:07:46 +0530 Subject: [PATCH 02/13] test: check set and get hash --- src/__test__/live-preview.test.ts | 45 +++++++++++++++++++++ src/utils/__test__/handleUserConfig.test.ts | 2 + 2 files changed, 47 insertions(+) diff --git a/src/__test__/live-preview.test.ts b/src/__test__/live-preview.test.ts index c2399be5..64f04a5d 100644 --- a/src/__test__/live-preview.test.ts +++ b/src/__test__/live-preview.test.ts @@ -569,3 +569,48 @@ describe("incoming postMessage", () => { expect(window.history.go).toHaveBeenCalled(); }); }); + +describe("live preview hash", () => { + test("should be empty by default", () => { + const livePreview = new LivePreview(); + + expect(livePreview.hash).toBe(""); + }); + + test("should be set when client-data-send event is fired", async () => { + const livePreview = new LivePreview(); + const livePreviewHash = "livePreviewHash1234"; + + await sendPostmessageToWindow("client-data-send", { + hash: livePreviewHash, + content_type_uid: "entryContentTypeUid", + entry_uid: "entryUid", + }); + + expect(livePreview.hash).toBe(livePreviewHash); + }); +}); + +describe("setConfigFromParams()", () => { + test("should set hash if live_preview is present", () => { + const livePreview = new LivePreview(); + const livePreviewHash = "livePreviewHash1234"; + + expect(livePreview.hash).toBe(""); + + livePreview.setConfigFromParams({ + live_preview: livePreviewHash, + }); + + expect(livePreview.hash).toBe(livePreviewHash); + }); + + test("should throw an error if param is not an object", () => { + const livePreview = new LivePreview(); + + expect(() => { + // @ts-ignore + livePreview.setConfigFromParams(""); + }).toThrowError("Live preview SDK: query param must be an object"); + }); +}); diff --git a/src/utils/__test__/handleUserConfig.test.ts b/src/utils/__test__/handleUserConfig.test.ts index 25812c41..c95c1ac3 100644 --- a/src/utils/__test__/handleUserConfig.test.ts +++ b/src/utils/__test__/handleUserConfig.test.ts @@ -44,6 +44,7 @@ describe("handleInitData()", () => { enable: false, cleanCslpOnProduction: true, runScriptsOnUpdate: false, + hash: "", stackDetails: { apiKey: "", @@ -218,6 +219,7 @@ describe("handleClientUrlParams()", () => { enable: true, cleanCslpOnProduction: true, runScriptsOnUpdate: false, + hash: "", stackDetails: { apiKey: "", From f1fc2c71201f1f29689afbd7b2034f704c673825 Mon Sep 17 00:00:00 2001 From: Deepak Kharah <42672761+Deepak-Kharah@users.noreply.github.com> Date: Mon, 24 Jul 2023 13:36:36 +0530 Subject: [PATCH 03/13] feat: live preivew hash is available in HOC --- .../contentstack-live-preview-HOC.test.ts | 79 +++++++++++++++++++ src/contentstack-live-preview-HOC.ts | 51 ++++++++++++ src/live-preview.ts | 9 +++ 3 files changed, 139 insertions(+) diff --git a/src/__test__/contentstack-live-preview-HOC.test.ts b/src/__test__/contentstack-live-preview-HOC.test.ts index 295642be..9d7bc9a8 100644 --- a/src/__test__/contentstack-live-preview-HOC.test.ts +++ b/src/__test__/contentstack-live-preview-HOC.test.ts @@ -297,3 +297,82 @@ describe("Gatsby Data formatter", () => { ]); }); }); + +describe("live preview hash", () => { + afterEach(() => { + ContentstackLivePreview.subscribers = {}; + ContentstackLivePreview.livePreview = null; + }); + test("should be empty by default", () => { + ContentstackLivePreview.init(); + + expect(ContentstackLivePreview.hash).toBe(""); + }); + + test("should be set when client-data-send event is fired", async () => { + ContentstackLivePreview.init(); + const livePreviewHash = "livePreviewHash1234"; + + await sendPostmessageToWindow("client-data-send", { + hash: livePreviewHash, + content_type_uid: "entryContentTypeUid", + entry_uid: "entryUid", + }); + + expect(ContentstackLivePreview.hash).toBe(livePreviewHash); + }); + + test("should throw an error if has is get before init", () => { + expect(() => { + ContentstackLivePreview.hash; + }).toThrowError( + "Live preview SDK must be initialized before getting hash" + ); + }); +}); + +describe("setConfigFromParams()", () => { + afterEach(() => { + ContentstackLivePreview.subscribers = {}; + ContentstackLivePreview.livePreview = null; + }); + test("should set hash if live_preview is present", () => { + ContentstackLivePreview.init(); + const livePreviewHash = "livePreviewHash1234"; + + expect(ContentstackLivePreview.hash).toBe(""); + + ContentstackLivePreview.setConfigFromParams({ + live_preview: livePreviewHash, + }); + + expect(ContentstackLivePreview.hash).toBe(livePreviewHash); + }); + + test("should throw an error if param is not an object", () => { + ContentstackLivePreview.init(); + + expect(() => { + // @ts-ignore + ContentstackLivePreview.setConfigFromParams(""); + }).toThrowError("Live preview SDK: query param must be an object"); + }); + + test("should set the params if it was set before initialization", () => { + const livePreviewHash = "livePreviewHash1234"; + + ContentstackLivePreview.setConfigFromParams({ + live_preview: livePreviewHash, + }); + + expect(() => { + ContentstackLivePreview.hash; + }).toThrowError( + "Live preview SDK must be initialized before getting hash" + ); + + ContentstackLivePreview.init(); + + expect(ContentstackLivePreview.hash).toBe(livePreviewHash); + }); +}); diff --git a/src/contentstack-live-preview-HOC.ts b/src/contentstack-live-preview-HOC.ts index f7a89da4..068765d8 100644 --- a/src/contentstack-live-preview-HOC.ts +++ b/src/contentstack-live-preview-HOC.ts @@ -17,6 +17,13 @@ export class ContentstackLivePreview { static livePreview: LivePreview | null = null; static userConfig: Partial | null = null; static subscribers: { [uid: string]: OnEntryChangeCallback } = {}; + static configs: { + params: Partial<{ + live_preview: string; + }>; + } = { + params: {}, + }; static init( userConfig: Partial = userInitData @@ -34,6 +41,12 @@ export class ContentstackLivePreview { ContentstackLivePreview.livePreview.setOnChangeCallback( ContentstackLivePreview.publish ); + + ContentstackLivePreview.livePreview.setConfigFromParams( + this.configs.params + ); + this.configs.params = {}; + return Promise.resolve(ContentstackLivePreview.livePreview); } } else { @@ -41,6 +54,37 @@ export class ContentstackLivePreview { } } + /** + * It is the live preview hash. + * This hash could be used when data is fetched manually. + */ + static get hash(): string { + if (!this.livePreview) { + throw new Error( + "Live preview SDK must be initialized before getting hash" + ); + } + return this.livePreview.hash; + } + + /** + * Sets the live preview hash from the query param which is + * accessible via `hash` property. + * @param params query param in an object form + */ + static setConfigFromParams( + params: Partial<{ + live_preview: string; + }> = {} + ): void { + if (!this.livePreview) { + this.configs.params = params; + return; + } + + this.livePreview.setConfigFromParams(params); + } + private static publish(): void { Object.values( ContentstackLivePreview.subscribers @@ -74,6 +118,13 @@ export class ContentstackLivePreview { ContentstackLivePreview.livePreview.setOnChangeCallback( ContentstackLivePreview.publish ); + + ContentstackLivePreview.livePreview.setConfigFromParams( + this.configs.params + ); + + this.configs.params = {}; + ContentstackLivePreview.userConfig = null; } const callbackUid = ContentstackLivePreview.subscribe(onChangeCallback); diff --git a/src/live-preview.ts b/src/live-preview.ts index a1c7224f..a7ab4a11 100644 --- a/src/live-preview.ts +++ b/src/live-preview.ts @@ -294,10 +294,19 @@ export default class LivePreview { this.config.onChange = onChangeCallback; } + /** + * It is the live preview hash. + * This hash could be used when data is fetched manually. + */ get hash(): string { return this.config.hash; } + /** + * Sets the live preview hash from the query param which is + * accessible via `hash` property. + * @param params query param in an object form + */ setConfigFromParams( params: Partial<{ live_preview: string; From b41c82c303d86c9a6e3eba54b615a22113443c8c Mon Sep 17 00:00:00 2001 From: Sairaj Chouhan Date: Fri, 25 Aug 2023 16:43:35 +0530 Subject: [PATCH 04/13] chore: reutrn hash from config params for ssr --- src/contentstack-live-preview-HOC.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/contentstack-live-preview-HOC.ts b/src/contentstack-live-preview-HOC.ts index 068765d8..0b4558e3 100644 --- a/src/contentstack-live-preview-HOC.ts +++ b/src/contentstack-live-preview-HOC.ts @@ -58,12 +58,11 @@ export class ContentstackLivePreview { * It is the live preview hash. * This hash could be used when data is fetched manually. */ - static get hash(): string { + static get hash(): string | undefined { if (!this.livePreview) { - throw new Error( - "Live preview SDK must be initialized before getting hash" - ); + return this.configs.params?.live_preview; } + return this.livePreview.hash; } From a310928fbbd9b1e5be6958d1b1498477f6c1c1a6 Mon Sep 17 00:00:00 2001 From: Sairaj Chouhan Date: Fri, 25 Aug 2023 17:13:40 +0530 Subject: [PATCH 05/13] chore: add tests --- .github/workflows/sast-scan.yml | 11 ----------- .github/workflows/secrets-scan.yml | 11 ----------- .../contentstack-live-preview-HOC.test.ts | 16 ++-------------- 3 files changed, 2 insertions(+), 36 deletions(-) delete mode 100644 .github/workflows/sast-scan.yml delete mode 100644 .github/workflows/secrets-scan.yml diff --git a/.github/workflows/sast-scan.yml b/.github/workflows/sast-scan.yml deleted file mode 100644 index f9316303..00000000 --- a/.github/workflows/sast-scan.yml +++ /dev/null @@ -1,11 +0,0 @@ -name: SAST Scan -on: - pull_request: - types: [opened, synchronize, reopened] -jobs: - security: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Horusec Scan - run: docker run -v /var/run/docker.sock:/var/run/docker.sock -v $(pwd):/src horuszup/horusec-cli:latest horusec start -p /src -P $(pwd) \ No newline at end of file diff --git a/.github/workflows/secrets-scan.yml b/.github/workflows/secrets-scan.yml deleted file mode 100644 index 1e8f1761..00000000 --- a/.github/workflows/secrets-scan.yml +++ /dev/null @@ -1,11 +0,0 @@ -name: Secrets Scan -on: - pull_request: - types: [opened, synchronize, reopened] -jobs: - security: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Gittyleaks - uses: gupy-io/gittyleaks-action@v0.1 \ No newline at end of file diff --git a/src/__test__/contentstack-live-preview-HOC.test.ts b/src/__test__/contentstack-live-preview-HOC.test.ts index 9d7bc9a8..405f6266 100644 --- a/src/__test__/contentstack-live-preview-HOC.test.ts +++ b/src/__test__/contentstack-live-preview-HOC.test.ts @@ -322,12 +322,8 @@ describe("live preview hash", () => { expect(ContentstackLivePreview.hash).toBe(livePreviewHash); }); - test("should throw an error if has is get before init", () => { - expect(() => { - ContentstackLivePreview.hash; - }).toThrowError( - "Live preview SDK must be initialized before getting hash" - ); + test("should be undefined before init", () => { + expect(ContentstackLivePreview.hash).toBeUndefined(); }); }); @@ -365,14 +361,6 @@ describe("setConfigFromParams()", () => { live_preview: livePreviewHash, }); - expect(() => { - ContentstackLivePreview.hash; - }).toThrowError( - "Live preview SDK must be initialized before getting hash" - ); - - ContentstackLivePreview.init(); - expect(ContentstackLivePreview.hash).toBe(livePreviewHash); }); }); From c5f809204830c4c47b00d9164db33dc88099589d Mon Sep 17 00:00:00 2001 From: Deepak Kharah <42672761+Deepak-Kharah@users.noreply.github.com> Date: Thu, 31 Aug 2023 15:36:53 +0530 Subject: [PATCH 06/13] chore: add workflow to update copyright date --- .../update-copyright-years-in-license-file.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/update-copyright-years-in-license-file.yml diff --git a/.github/workflows/update-copyright-years-in-license-file.yml b/.github/workflows/update-copyright-years-in-license-file.yml new file mode 100644 index 00000000..3bab84d3 --- /dev/null +++ b/.github/workflows/update-copyright-years-in-license-file.yml @@ -0,0 +1,17 @@ +name: Update copyright year(s) in license file + +on: + schedule: + - cron: "0 3 1 1 *" + workflow_dispatch: + +jobs: + run: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - uses: FantasticFiasco/action-update-license-year@v2 + with: + token: ${{ secrets.GITHUB_TOKEN }} From fe1e1f4c37b6d6931716a85f1c57329f6a844f67 Mon Sep 17 00:00:00 2001 From: Sairaj Chouhan Date: Fri, 1 Sep 2023 19:25:05 +0530 Subject: [PATCH 07/13] change input from string to url params --- src/contentstack-live-preview-HOC.ts | 13 +++++-------- src/live-preview.ts | 7 +++---- 2 files changed, 8 insertions(+), 12 deletions(-) diff --git a/src/contentstack-live-preview-HOC.ts b/src/contentstack-live-preview-HOC.ts index 0b4558e3..8d8daf9b 100644 --- a/src/contentstack-live-preview-HOC.ts +++ b/src/contentstack-live-preview-HOC.ts @@ -18,9 +18,7 @@ export class ContentstackLivePreview { static userConfig: Partial | null = null; static subscribers: { [uid: string]: OnEntryChangeCallback } = {}; static configs: { - params: Partial<{ - live_preview: string; - }>; + params: ConstructorParameters[0]; } = { params: {}, }; @@ -58,9 +56,10 @@ export class ContentstackLivePreview { * It is the live preview hash. * This hash could be used when data is fetched manually. */ - static get hash(): string | undefined { + static get hash(): string { if (!this.livePreview) { - return this.configs.params?.live_preview; + const urlParams = new URLSearchParams(this.configs.params); + return urlParams.get("live_preview") ?? ""; } return this.livePreview.hash; @@ -72,9 +71,7 @@ export class ContentstackLivePreview { * @param params query param in an object form */ static setConfigFromParams( - params: Partial<{ - live_preview: string; - }> = {} + params: ConstructorParameters[0] = {} ): void { if (!this.livePreview) { this.configs.params = params; diff --git a/src/live-preview.ts b/src/live-preview.ts index a7ab4a11..5fc1f5c8 100644 --- a/src/live-preview.ts +++ b/src/live-preview.ts @@ -308,16 +308,15 @@ export default class LivePreview { * @param params query param in an object form */ setConfigFromParams( - params: Partial<{ - live_preview: string; - }> = {} + params: ConstructorParameters[0] = {} ): void { if (typeof params !== "object") throw new TypeError( "Live preview SDK: query param must be an object" ); - const { live_preview } = params; + const urlParams = new URLSearchParams(params); + const live_preview = urlParams.get("live_preview"); if (live_preview) { this.config.hash = live_preview; From 9c8fe23bffd7820f68e5398101d837c9d3bca89f Mon Sep 17 00:00:00 2001 From: Sairaj Chouhan Date: Fri, 1 Sep 2023 19:26:36 +0530 Subject: [PATCH 08/13] test: fix failing tests --- package-lock.json | 16 ++++++++++------ .../contentstack-live-preview-HOC.test.ts | 4 ++-- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/package-lock.json b/package-lock.json index 8e70af1f..7f175c92 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4154,9 +4154,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001332", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001332.tgz", - "integrity": "sha512-10T30NYOEQtN6C11YGg411yebhvpnC6Z102+B95eAsN0oB6KUs01ivE8u+G6FMIRtIrVlYXhL+LUwQ3/hXwDWw==", + "version": "1.0.30001525", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001525.tgz", + "integrity": "sha512-/3z+wB4icFt3r0USMwxujAqRvaD/B7rvGTsKhbhSQErVrJvkZCLhgNLJxU8MevahQVH6hCU9FsHdNUFbiwmE7Q==", "dev": true, "funding": [ { @@ -4166,6 +4166,10 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ] }, @@ -16011,9 +16015,9 @@ "dev": true }, "caniuse-lite": { - "version": "1.0.30001332", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001332.tgz", - "integrity": "sha512-10T30NYOEQtN6C11YGg411yebhvpnC6Z102+B95eAsN0oB6KUs01ivE8u+G6FMIRtIrVlYXhL+LUwQ3/hXwDWw==", + "version": "1.0.30001525", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001525.tgz", + "integrity": "sha512-/3z+wB4icFt3r0USMwxujAqRvaD/B7rvGTsKhbhSQErVrJvkZCLhgNLJxU8MevahQVH6hCU9FsHdNUFbiwmE7Q==", "dev": true }, "chalk": { diff --git a/src/__test__/contentstack-live-preview-HOC.test.ts b/src/__test__/contentstack-live-preview-HOC.test.ts index 405f6266..93bf5d02 100644 --- a/src/__test__/contentstack-live-preview-HOC.test.ts +++ b/src/__test__/contentstack-live-preview-HOC.test.ts @@ -322,8 +322,8 @@ describe("live preview hash", () => { expect(ContentstackLivePreview.hash).toBe(livePreviewHash); }); - test("should be undefined before init", () => { - expect(ContentstackLivePreview.hash).toBeUndefined(); + test("should be empty string before init", () => { + expect(ContentstackLivePreview.hash).toBe(""); }); }); From 112183a0e2c2770e3cbdaf1e2e59f1b9ff89dfca Mon Sep 17 00:00:00 2001 From: Deepak Kharah <42672761+Deepak-Kharah@users.noreply.github.com> Date: Mon, 4 Sep 2023 11:01:58 +0530 Subject: [PATCH 09/13] docs: add hash and setConfigFromParams to docs --- docs/live-preview-configs.md | 69 +++++++++++++++++++++++++----------- 1 file changed, 48 insertions(+), 21 deletions(-) diff --git a/docs/live-preview-configs.md b/docs/live-preview-configs.md index 00dae1cb..cf2e9466 100644 --- a/docs/live-preview-configs.md +++ b/docs/live-preview-configs.md @@ -2,22 +2,24 @@ The init data has following structure -- [Contentstack Live Preview Utils SDK Configs](#contentstack-live-preview-utils-sdk-configs) - - [`init(config: IConfig)`](#initconfig-iconfig) - - [`enable`](#enable) - - [`ssr`](#ssr) - - [`editButton`](#editbutton) - - [`cleanCslpOnProduction`](#cleancslponproduction) - - [`stackDetails`](#stackdetails) - - [`apiKey`](#apikey) - - [`environment`](#environment) - - [`clientUrlParams`](#clienturlparams) - - [NA config](#na-config) - - [EU config](#eu-config) - - [`stackSdk`](#stacksdk) - - [`onLiveEdit(callback: () => void)`](#onliveeditcallback---void) - - [`onEntryChange(callback: () => void)`](#onentrychangecallback---void) - - [`getGatsbyDataFormat(sdkQuery: IStackSdk, prefix: string)`](#getgatsbydataformatsdkquery-istacksdk-prefix-string) +- [Contentstack Live Preview Utils SDK Configs](#contentstack-live-preview-utils-sdk-configs) + - [`init(config: IConfig)`](#initconfig-iconfig) + - [`enable`](#enable) + - [`ssr`](#ssr) + - [`editButton`](#editbutton) + - [`cleanCslpOnProduction`](#cleancslponproduction) + - [`stackDetails`](#stackdetails) + - [`apiKey`](#apikey) + - [`environment`](#environment) + - [`clientUrlParams`](#clienturlparams) + - [NA config](#na-config) + - [EU config](#eu-config) + - [`stackSdk`](#stacksdk) + - [`onLiveEdit(callback: () => void)`](#onliveeditcallback---void) + - [`onEntryChange(callback: () => void)`](#onentrychangecallback---void) + - [hash](#hash) + - [setConfigFromParams(config: ConstructorParameters\[0\])](#setconfigfromparamsconfig-constructorparameters0) + - [`getGatsbyDataFormat(sdkQuery: IStackSdk, prefix: string)`](#getgatsbydataformatsdkquery-istacksdk-prefix-string) ## `init(config: IConfig)` @@ -253,11 +255,36 @@ const Footer = () => { ``` > **Note:** To make the `onEntryChange` method work similarly to the [`onLiveEdit`](#onliveeditcallback---void) method, you can utilize the optional parameter `skipInitialRender:true`. This will enable the function to only call the Contentstack API once. -> ->For example: ->```js ->onEntryChange(fetchData,{skipInitialRender:true}) ->``` + +**For example:** + +```js +onEntryChange(fetchData, { skipInitialRender: true }); +``` + +## hash + +The `hash` property returns the live preview hash of the entry. It returns an empty string if the page is not opened in live preivew pane. + +> **Note:** In the SSR mode, the hash may not be populated automatically and may require you to pass it using the `setConfigFromParams()` method. + +**For example:** + +```js +console.log(ContentstackLivePreview.hash); // "hash" +``` + +## setConfigFromParams(config: ConstructorParameters[0]) + +The `setConfigFromParams` method allows you to set the configuration from the URL parameters. It accepts the URLSearchParams object as a parameter. This method is used in the SSR mode to set the live preview hash received from the URL. + +**For example:** + +```js +console.log(ContentstackLivePreview.hash); // "" +ContentstackLivePreview.setConfigFromParams(window.location.search); // https://example.com?live_preview=hash +console.log(ContentstackLivePreview.hash); // "hash" +``` ## `getGatsbyDataFormat(sdkQuery: IStackSdk, prefix: string)` From 4540dc24db23538f82a6f808b1b180b207e15994 Mon Sep 17 00:00:00 2001 From: Deepak Kharah <42672761+Deepak-Kharah@users.noreply.github.com> Date: Mon, 4 Sep 2023 13:50:31 +0530 Subject: [PATCH 10/13] chore: update deps for node 18 --- package-lock.json | 1132 +++++++++++++++++++++++---------------------- 1 file changed, 580 insertions(+), 552 deletions(-) diff --git a/package-lock.json b/package-lock.json index 7f175c92..faa494dc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2422,9 +2422,9 @@ } }, "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", "dev": true, "dependencies": { "@jridgewell/set-array": "^1.0.1", @@ -2454,9 +2454,9 @@ } }, "node_modules/@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", + "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", "dev": true, "dependencies": { "@jridgewell/gen-mapping": "^0.3.0", @@ -2470,13 +2470,13 @@ "dev": true }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.15", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz", - "integrity": "sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==", + "version": "0.3.19", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz", + "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", "dev": true, "dependencies": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, "node_modules/@nodelib/fs.scandir": { @@ -2743,9 +2743,9 @@ } }, "node_modules/@types/eslint-scope": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.1.tgz", - "integrity": "sha512-SCFeogqiptms4Fg29WpOTk5nHIzfpKCemSN63ksBQYKTcXoJEmJagV+DhVmbapZzY4/5YaOV1nZwrsU79fFm1g==", + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", "dev": true, "dependencies": { "@types/eslint": "*", @@ -2753,9 +2753,9 @@ } }, "node_modules/@types/estree": { - "version": "0.0.50", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.50.tgz", - "integrity": "sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", + "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==", "dev": true }, "node_modules/@types/express": { @@ -2986,9 +2986,9 @@ } }, "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -3127,9 +3127,9 @@ } }, "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -3159,148 +3159,148 @@ } }, "node_modules/@webassemblyjs/ast": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", - "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", "dev": true, "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" } }, "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", - "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", "dev": true }, "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", - "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", "dev": true }, "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", - "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", "dev": true }, "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", - "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", "dev": true, "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", - "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", "dev": true }, "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", - "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" } }, "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", - "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", "dev": true, "dependencies": { "@xtuc/ieee754": "^1.2.0" } }, "node_modules/@webassemblyjs/leb128": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", - "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", "dev": true, "dependencies": { "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/utf8": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", - "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", "dev": true }, "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", - "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", - "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", - "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", - "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", - "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/ast": "1.11.6", "@xtuc/long": "4.2.2" } }, @@ -3427,9 +3427,9 @@ } }, "node_modules/acorn-import-assertions": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.7.6.tgz", - "integrity": "sha512-FlVvVFA1TX6l3lp8VjDnYYq7R1nyW6x3svAt4nDgrWQ9SBaSh9CnbwgSUTasgfNfOG5HlM1ehugCvM+hjo56LA==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", "dev": true, "peerDependencies": { "acorn": "^8" @@ -4058,26 +4058,35 @@ "dev": true }, "node_modules/browserslist": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.17.0.tgz", - "integrity": "sha512-g2BJ2a0nEYvEFQC208q8mVAhfNwpZ5Mu8BwgtCdZKO3qx98HChmeg448fPdUzld8aFmfLgVh7yymqV+q1lJZ5g==", + "version": "4.21.10", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", + "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "dependencies": { - "caniuse-lite": "^1.0.30001254", - "colorette": "^1.3.0", - "electron-to-chromium": "^1.3.830", - "escalade": "^3.1.1", - "node-releases": "^1.1.75" + "caniuse-lite": "^1.0.30001517", + "electron-to-chromium": "^1.4.477", + "node-releases": "^2.0.13", + "update-browserslist-db": "^1.0.11" }, "bin": { "browserslist": "cli.js" }, "engines": { "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" } }, "node_modules/bs-logger": { @@ -4474,28 +4483,18 @@ "dev": true }, "node_modules/core-js-compat": { - "version": "3.17.3", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.17.3.tgz", - "integrity": "sha512-+in61CKYs4hQERiADCJsdgewpdl/X0GhEX77pjKgbeibXviIt2oxEjTc8O2fqHX8mDdBrDvX8MYD/RYsBv4OiA==", + "version": "3.32.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.32.1.tgz", + "integrity": "sha512-GSvKDv4wE0bPnQtjklV101juQ85g6H3rm5PDP20mqlS5j0kXF3pP97YvAu5hl+uFHqMictp3b2VxOHljWMAtuA==", "dev": true, "dependencies": { - "browserslist": "^4.17.0", - "semver": "7.0.0" + "browserslist": "^4.21.10" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/core-js" } }, - "node_modules/core-js-compat/node_modules/semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/core-js-pure": { "version": "3.17.3", "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.17.3.tgz", @@ -4585,9 +4584,9 @@ } }, "node_modules/css-loader/node_modules/loader-utils": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", - "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "dependencies": { "big.js": "^5.2.2", @@ -4617,9 +4616,9 @@ } }, "node_modules/css-loader/node_modules/semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -4700,9 +4699,9 @@ "dev": true }, "node_modules/decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", "dev": true, "engines": { "node": ">=0.10" @@ -4928,9 +4927,9 @@ "dev": true }, "node_modules/electron-to-chromium": { - "version": "1.3.842", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.842.tgz", - "integrity": "sha512-P/nDMPIYdb2PyqCQwhTXNi5JFjX1AsDVR0y6FrHw752izJIAJ+Pn5lugqyBq4tXeRSZBMBb2ZGvRGB1djtELEQ==", + "version": "1.4.508", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.508.tgz", + "integrity": "sha512-FFa8QKjQK/A5QuFr2167myhMesGrhlOBD+3cYNxO9/S4XzHEXesyTD/1/xF644gC8buFPz3ca6G1LOQD0tZrrg==", "dev": true }, "node_modules/emittery": { @@ -4970,9 +4969,9 @@ } }, "node_modules/enhanced-resolve": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", - "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", "dev": true, "dependencies": { "graceful-fs": "^4.2.4", @@ -5007,9 +5006,9 @@ } }, "node_modules/es-module-lexer": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.7.1.tgz", - "integrity": "sha512-MgtWFl5No+4S3TmhDmCz2ObFGm6lEpTnzbQi+Dd+pw4mlTIZTmM2iAs5gRlmx5zS9luzobCSBSI90JM/1/JgOw==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.3.0.tgz", + "integrity": "sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==", "dev": true }, "node_modules/escalade": { @@ -5347,9 +5346,9 @@ } }, "node_modules/eslint/node_modules/semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -6080,9 +6079,9 @@ } }, "node_modules/graceful-fs": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", - "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==", + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "dev": true }, "node_modules/grapheme-splitter": { @@ -8251,9 +8250,9 @@ } }, "node_modules/jest-snapshot/node_modules/semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -8552,9 +8551,9 @@ } }, "node_modules/jest-worker": { - "version": "27.2.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.2.0.tgz", - "integrity": "sha512-laB0ZVIBz+voh/QQy9dmUuuDsadixeerrKqyVpgPz+CCWiOYjOBabUXHIXZhsdvkWbLqSHbgkAHWl5cg24Q6RA==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", "dev": true, "dependencies": { "@types/node": "*", @@ -8734,10 +8733,10 @@ "node": ">=4" } }, - "node_modules/json-parse-better-errors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "dev": true }, "node_modules/json-schema-traverse": { @@ -8753,13 +8752,10 @@ "dev": true }, "node_modules/json5": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", - "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true, - "dependencies": { - "minimist": "^1.2.5" - }, "bin": { "json5": "lib/cli.js" }, @@ -8828,9 +8824,9 @@ } }, "node_modules/loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", "dev": true, "dependencies": { "big.js": "^5.2.2", @@ -8842,9 +8838,9 @@ } }, "node_modules/loader-utils/node_modules/json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dev": true, "dependencies": { "minimist": "^1.2.0" @@ -9365,9 +9361,9 @@ } }, "node_modules/node-releases": { - "version": "1.1.75", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.75.tgz", - "integrity": "sha512-Qe5OUajvqrqDSy6wrWFmMwfJ0jVgwiw4T3KqmbTcZ62qW0gQkheXYhcFM1+lOVcGUoRxcEcfyvFMAnDgaF1VWw==", + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", "dev": true }, "node_modules/normalize-path": { @@ -9685,6 +9681,12 @@ "node": ">=8" } }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, "node_modules/picomatch": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", @@ -10328,9 +10330,9 @@ } }, "node_modules/prettier-eslint/node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -10464,6 +10466,12 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, "node_modules/queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", @@ -10871,9 +10879,9 @@ } }, "node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" @@ -10925,9 +10933,9 @@ "dev": true }, "node_modules/serialize-javascript": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", - "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", "dev": true, "dependencies": { "randombytes": "^2.1.0" @@ -11380,9 +11388,9 @@ } }, "node_modules/style-loader/node_modules/loader-utils": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", - "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "dependencies": { "big.js": "^5.2.2", @@ -11528,13 +11536,13 @@ } }, "node_modules/terser": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.0.tgz", - "integrity": "sha512-L1BJiXVmheAQQy+as0oF3Pwtlo4s3Wi1X2zNZ2NxOB4wx9bdS9Vk67XQENLFdLYGCK/Z2di53mTj/hBafR+dTA==", + "version": "5.19.3", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.19.3.tgz", + "integrity": "sha512-pQzJ9UJzM0IgmT4FAtYI6+VqFf0lj/to58AV0Xfgg0Up37RyPG7Al+1cepC6/BVuAxR9oNb41/DL4DEoHJvTdg==", "dev": true, "dependencies": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, @@ -11546,17 +11554,16 @@ } }, "node_modules/terser-webpack-plugin": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.2.4.tgz", - "integrity": "sha512-E2CkNMN+1cho04YpdANyRrn8CyN4yMy+WdFKZIySFZrGXZxJwJP6PMNGGc/Mcr6qygQHUUqRxnAPmi0M9f00XA==", + "version": "5.3.9", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", + "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", "dev": true, "dependencies": { - "jest-worker": "^27.0.6", - "p-limit": "^3.1.0", + "@jridgewell/trace-mapping": "^0.3.17", + "jest-worker": "^27.4.5", "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.0", - "source-map": "^0.6.1", - "terser": "^5.7.2" + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" }, "engines": { "node": ">= 10.13.0" @@ -11580,25 +11587,10 @@ } } }, - "node_modules/terser-webpack-plugin/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/terser-webpack-plugin/node_modules/schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dev": true, "dependencies": { "@types/json-schema": "^7.0.8", @@ -11613,15 +11605,6 @@ "url": "https://opencollective.com/webpack" } }, - "node_modules/terser-webpack-plugin/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/test-exclude": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", @@ -11691,14 +11674,15 @@ } }, "node_modules/tough-cookie": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz", - "integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==", + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", + "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", "dev": true, "dependencies": { "psl": "^1.1.33", "punycode": "^2.1.1", - "universalify": "^0.1.2" + "universalify": "^0.2.0", + "url-parse": "^1.5.3" }, "engines": { "node": ">=6" @@ -11745,9 +11729,9 @@ } }, "node_modules/ts-jest/node_modules/semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -11837,9 +11821,9 @@ } }, "node_modules/ts-loader/node_modules/semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -12094,9 +12078,9 @@ } }, "node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", "dev": true, "engines": { "node": ">= 4.0.0" @@ -12111,6 +12095,36 @@ "node": ">= 0.8" } }, + "node_modules/update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, "node_modules/uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", @@ -12120,6 +12134,16 @@ "punycode": "^2.1.0" } }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", @@ -12274,9 +12298,9 @@ } }, "node_modules/vue-eslint-parser/node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -12308,9 +12332,9 @@ } }, "node_modules/watchpack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.2.0.tgz", - "integrity": "sha512-up4YAn/XHgZHIxFBVCdlMiWDj6WaLKpwVeGQk2I5thdYxF/KmF0aaz6TfJZ/hfl1h/XlcDr7k1KH7ThDagpFaA==", + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", "dev": true, "dependencies": { "glob-to-regexp": "^0.4.1", @@ -12330,35 +12354,35 @@ } }, "node_modules/webpack": { - "version": "5.53.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.53.0.tgz", - "integrity": "sha512-RZ1Z3z3ni44snoWjfWeHFyzvd9HMVYDYC5VXmlYUT6NWgEOWdCNpad5Fve2CzzHoRED7WtsKe+FCyP5Vk4pWiQ==", - "dev": true, - "dependencies": { - "@types/eslint-scope": "^3.7.0", - "@types/estree": "^0.0.50", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "acorn": "^8.4.1", - "acorn-import-assertions": "^1.7.6", + "version": "5.88.2", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz", + "integrity": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==", + "dev": true, + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.9.0", "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.8.0", - "es-module-lexer": "^0.7.1", + "enhanced-resolve": "^5.15.0", + "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.4", - "json-parse-better-errors": "^1.0.2", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", + "schema-utils": "^3.2.0", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", - "watchpack": "^2.2.0", - "webpack-sources": "^3.2.0" + "terser-webpack-plugin": "^5.3.7", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" }, "bin": { "webpack": "bin/webpack.js" @@ -12662,10 +12686,19 @@ "node": ">=10.0.0" } }, + "node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, "node_modules/webpack/node_modules/schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dev": true, "dependencies": { "@types/json-schema": "^7.0.8", @@ -12680,15 +12713,6 @@ "url": "https://opencollective.com/webpack" } }, - "node_modules/webpack/node_modules/webpack-sources": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.1.tgz", - "integrity": "sha512-t6BMVLQ0AkjBOoRTZgqrWm7xbXMBzD+XDq2EZ96+vMfn3qKgsvdXZhbPZ4ElUOpdv4u+iiGe+w3+J75iy/bYGA==", - "dev": true, - "engines": { - "node": ">=10.13.0" - } - }, "node_modules/websocket-driver": { "version": "0.7.4", "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", @@ -12734,9 +12758,9 @@ "dev": true }, "node_modules/word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", "dev": true, "engines": { "node": ">=0.10.0" @@ -14607,9 +14631,9 @@ } }, "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", "dev": true, "requires": { "@jridgewell/set-array": "^1.0.1", @@ -14630,9 +14654,9 @@ "dev": true }, "@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", + "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", "dev": true, "requires": { "@jridgewell/gen-mapping": "^0.3.0", @@ -14646,13 +14670,13 @@ "dev": true }, "@jridgewell/trace-mapping": { - "version": "0.3.15", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz", - "integrity": "sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==", + "version": "0.3.19", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz", + "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", "dev": true, "requires": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, "@nodelib/fs.scandir": { @@ -14889,9 +14913,9 @@ } }, "@types/eslint-scope": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.1.tgz", - "integrity": "sha512-SCFeogqiptms4Fg29WpOTk5nHIzfpKCemSN63ksBQYKTcXoJEmJagV+DhVmbapZzY4/5YaOV1nZwrsU79fFm1g==", + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", "dev": true, "requires": { "@types/eslint": "*", @@ -14899,9 +14923,9 @@ } }, "@types/estree": { - "version": "0.0.50", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.50.tgz", - "integrity": "sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", + "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==", "dev": true }, "@types/express": { @@ -15116,9 +15140,9 @@ }, "dependencies": { "semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "requires": { "lru-cache": "^6.0.0" @@ -15195,9 +15219,9 @@ }, "dependencies": { "semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "requires": { "lru-cache": "^6.0.0" @@ -15216,148 +15240,148 @@ } }, "@webassemblyjs/ast": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", - "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", "dev": true, "requires": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" } }, "@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", - "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", "dev": true }, "@webassemblyjs/helper-api-error": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", - "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", "dev": true }, "@webassemblyjs/helper-buffer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", - "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", "dev": true }, "@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", - "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", "dev": true, "requires": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", "@xtuc/long": "4.2.2" } }, "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", - "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", "dev": true }, "@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", - "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" } }, "@webassemblyjs/ieee754": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", - "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", "dev": true, "requires": { "@xtuc/ieee754": "^1.2.0" } }, "@webassemblyjs/leb128": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", - "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", "dev": true, "requires": { "@xtuc/long": "4.2.2" } }, "@webassemblyjs/utf8": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", - "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", "dev": true }, "@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", - "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" } }, "@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", - "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", - "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" } }, "@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", - "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "@webassemblyjs/wast-printer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", - "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/ast": "1.11.6", "@xtuc/long": "4.2.2" } }, @@ -15454,9 +15478,9 @@ } }, "acorn-import-assertions": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.7.6.tgz", - "integrity": "sha512-FlVvVFA1TX6l3lp8VjDnYYq7R1nyW6x3svAt4nDgrWQ9SBaSh9CnbwgSUTasgfNfOG5HlM1ehugCvM+hjo56LA==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", "dev": true, "requires": {} }, @@ -15944,16 +15968,15 @@ "dev": true }, "browserslist": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.17.0.tgz", - "integrity": "sha512-g2BJ2a0nEYvEFQC208q8mVAhfNwpZ5Mu8BwgtCdZKO3qx98HChmeg448fPdUzld8aFmfLgVh7yymqV+q1lJZ5g==", + "version": "4.21.10", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", + "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001254", - "colorette": "^1.3.0", - "electron-to-chromium": "^1.3.830", - "escalade": "^3.1.1", - "node-releases": "^1.1.75" + "caniuse-lite": "^1.0.30001517", + "electron-to-chromium": "^1.4.477", + "node-releases": "^2.0.13", + "update-browserslist-db": "^1.0.11" } }, "bs-logger": { @@ -16257,21 +16280,12 @@ "dev": true }, "core-js-compat": { - "version": "3.17.3", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.17.3.tgz", - "integrity": "sha512-+in61CKYs4hQERiADCJsdgewpdl/X0GhEX77pjKgbeibXviIt2oxEjTc8O2fqHX8mDdBrDvX8MYD/RYsBv4OiA==", + "version": "3.32.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.32.1.tgz", + "integrity": "sha512-GSvKDv4wE0bPnQtjklV101juQ85g6H3rm5PDP20mqlS5j0kXF3pP97YvAu5hl+uFHqMictp3b2VxOHljWMAtuA==", "dev": true, "requires": { - "browserslist": "^4.17.0", - "semver": "7.0.0" - }, - "dependencies": { - "semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", - "dev": true - } + "browserslist": "^4.21.10" } }, "core-js-pure": { @@ -16352,9 +16366,9 @@ }, "dependencies": { "loader-utils": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", - "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "requires": { "big.js": "^5.2.2", @@ -16374,9 +16388,9 @@ } }, "semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "requires": { "lru-cache": "^6.0.0" @@ -16429,9 +16443,9 @@ "dev": true }, "decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", "dev": true }, "dedent": { @@ -16612,9 +16626,9 @@ "dev": true }, "electron-to-chromium": { - "version": "1.3.842", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.842.tgz", - "integrity": "sha512-P/nDMPIYdb2PyqCQwhTXNi5JFjX1AsDVR0y6FrHw752izJIAJ+Pn5lugqyBq4tXeRSZBMBb2ZGvRGB1djtELEQ==", + "version": "1.4.508", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.508.tgz", + "integrity": "sha512-FFa8QKjQK/A5QuFr2167myhMesGrhlOBD+3cYNxO9/S4XzHEXesyTD/1/xF644gC8buFPz3ca6G1LOQD0tZrrg==", "dev": true }, "emittery": { @@ -16642,9 +16656,9 @@ "dev": true }, "enhanced-resolve": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", - "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", "dev": true, "requires": { "graceful-fs": "^4.2.4", @@ -16667,9 +16681,9 @@ "dev": true }, "es-module-lexer": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.7.1.tgz", - "integrity": "sha512-MgtWFl5No+4S3TmhDmCz2ObFGm6lEpTnzbQi+Dd+pw4mlTIZTmM2iAs5gRlmx5zS9luzobCSBSI90JM/1/JgOw==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.3.0.tgz", + "integrity": "sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==", "dev": true }, "escalade": { @@ -16876,9 +16890,9 @@ "dev": true }, "semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "requires": { "lru-cache": "^6.0.0" @@ -17470,9 +17484,9 @@ } }, "graceful-fs": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", - "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==", + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "dev": true }, "grapheme-splitter": { @@ -19162,9 +19176,9 @@ "dev": true }, "semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "requires": { "lru-cache": "^6.0.0" @@ -19384,9 +19398,9 @@ } }, "jest-worker": { - "version": "27.2.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.2.0.tgz", - "integrity": "sha512-laB0ZVIBz+voh/QQy9dmUuuDsadixeerrKqyVpgPz+CCWiOYjOBabUXHIXZhsdvkWbLqSHbgkAHWl5cg24Q6RA==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", "dev": true, "requires": { "@types/node": "*", @@ -19439,10 +19453,10 @@ "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", "dev": true }, - "json-parse-better-errors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "dev": true }, "json-schema-traverse": { @@ -19458,13 +19472,10 @@ "dev": true }, "json5": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", - "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", - "dev": true, - "requires": { - "minimist": "^1.2.5" - } + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true }, "jsonc-parser": { "version": "3.2.0", @@ -19512,9 +19523,9 @@ "dev": true }, "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", "dev": true, "requires": { "big.js": "^5.2.2", @@ -19523,9 +19534,9 @@ }, "dependencies": { "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dev": true, "requires": { "minimist": "^1.2.0" @@ -19925,9 +19936,9 @@ "dev": true }, "node-releases": { - "version": "1.1.75", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.75.tgz", - "integrity": "sha512-Qe5OUajvqrqDSy6wrWFmMwfJ0jVgwiw4T3KqmbTcZ62qW0gQkheXYhcFM1+lOVcGUoRxcEcfyvFMAnDgaF1VWw==", + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", "dev": true }, "normalize-path": { @@ -20157,6 +20168,12 @@ "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, "picomatch": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", @@ -20597,9 +20614,9 @@ } }, "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "requires": { "lru-cache": "^6.0.0" @@ -20700,6 +20717,12 @@ "integrity": "sha512-IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw==", "dev": true }, + "querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, "queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", @@ -21000,9 +21023,9 @@ } }, "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true }, "send": { @@ -21052,9 +21075,9 @@ } }, "serialize-javascript": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", - "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", "dev": true, "requires": { "randombytes": "^2.1.0" @@ -21422,9 +21445,9 @@ }, "dependencies": { "loader-utils": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", - "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "requires": { "big.js": "^5.2.2", @@ -21538,56 +21561,40 @@ } }, "terser": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.0.tgz", - "integrity": "sha512-L1BJiXVmheAQQy+as0oF3Pwtlo4s3Wi1X2zNZ2NxOB4wx9bdS9Vk67XQENLFdLYGCK/Z2di53mTj/hBafR+dTA==", + "version": "5.19.3", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.19.3.tgz", + "integrity": "sha512-pQzJ9UJzM0IgmT4FAtYI6+VqFf0lj/to58AV0Xfgg0Up37RyPG7Al+1cepC6/BVuAxR9oNb41/DL4DEoHJvTdg==", "dev": true, "requires": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", "commander": "^2.20.0", "source-map-support": "~0.5.20" } }, "terser-webpack-plugin": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.2.4.tgz", - "integrity": "sha512-E2CkNMN+1cho04YpdANyRrn8CyN4yMy+WdFKZIySFZrGXZxJwJP6PMNGGc/Mcr6qygQHUUqRxnAPmi0M9f00XA==", + "version": "5.3.9", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", + "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", "dev": true, "requires": { - "jest-worker": "^27.0.6", - "p-limit": "^3.1.0", + "@jridgewell/trace-mapping": "^0.3.17", + "jest-worker": "^27.4.5", "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.0", - "source-map": "^0.6.1", - "terser": "^5.7.2" + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" }, "dependencies": { - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, "schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dev": true, "requires": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", "ajv-keywords": "^3.5.2" } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true } } }, @@ -21648,14 +21655,15 @@ "dev": true }, "tough-cookie": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz", - "integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==", + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", + "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", "dev": true, "requires": { "psl": "^1.1.33", "punycode": "^2.1.1", - "universalify": "^0.1.2" + "universalify": "^0.2.0", + "url-parse": "^1.5.3" } }, "ts-jest": { @@ -21675,9 +21683,9 @@ }, "dependencies": { "semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "requires": { "lru-cache": "^6.0.0" @@ -21738,9 +21746,9 @@ "dev": true }, "semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "requires": { "lru-cache": "^6.0.0" @@ -21912,9 +21920,9 @@ "dev": true }, "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", "dev": true }, "unpipe": { @@ -21923,6 +21931,16 @@ "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", "dev": true }, + "update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "dev": true, + "requires": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + } + }, "uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", @@ -21932,6 +21950,16 @@ "punycode": "^2.1.0" } }, + "url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, "util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", @@ -22049,9 +22077,9 @@ "dev": true }, "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "requires": { "lru-cache": "^6.0.0" @@ -22078,9 +22106,9 @@ } }, "watchpack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.2.0.tgz", - "integrity": "sha512-up4YAn/XHgZHIxFBVCdlMiWDj6WaLKpwVeGQk2I5thdYxF/KmF0aaz6TfJZ/hfl1h/XlcDr7k1KH7ThDagpFaA==", + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", "dev": true, "requires": { "glob-to-regexp": "^0.4.1", @@ -22097,53 +22125,47 @@ } }, "webpack": { - "version": "5.53.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.53.0.tgz", - "integrity": "sha512-RZ1Z3z3ni44snoWjfWeHFyzvd9HMVYDYC5VXmlYUT6NWgEOWdCNpad5Fve2CzzHoRED7WtsKe+FCyP5Vk4pWiQ==", - "dev": true, - "requires": { - "@types/eslint-scope": "^3.7.0", - "@types/estree": "^0.0.50", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "acorn": "^8.4.1", - "acorn-import-assertions": "^1.7.6", + "version": "5.88.2", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz", + "integrity": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==", + "dev": true, + "requires": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.9.0", "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.8.0", - "es-module-lexer": "^0.7.1", + "enhanced-resolve": "^5.15.0", + "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.4", - "json-parse-better-errors": "^1.0.2", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", + "schema-utils": "^3.2.0", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", - "watchpack": "^2.2.0", - "webpack-sources": "^3.2.0" + "terser-webpack-plugin": "^5.3.7", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" }, "dependencies": { "schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dev": true, "requires": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", "ajv-keywords": "^3.5.2" } - }, - "webpack-sources": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.1.tgz", - "integrity": "sha512-t6BMVLQ0AkjBOoRTZgqrWm7xbXMBzD+XDq2EZ96+vMfn3qKgsvdXZhbPZ4ElUOpdv4u+iiGe+w3+J75iy/bYGA==", - "dev": true } } }, @@ -22346,6 +22368,12 @@ "wildcard": "^2.0.0" } }, + "webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true + }, "websocket-driver": { "version": "0.7.4", "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", @@ -22379,9 +22407,9 @@ "dev": true }, "word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", "dev": true }, "wrap-ansi": { From 231f8c61de5b9232554cd3532fb96ae835f81ec9 Mon Sep 17 00:00:00 2001 From: Deepak Kharah <42672761+Deepak-Kharah@users.noreply.github.com> Date: Wed, 6 Sep 2023 15:58:49 +0530 Subject: [PATCH 11/13] chore: update package version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 340e1b97..ec5c8d79 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@contentstack/live-preview-utils", - "version": "1.3.2", + "version": "1.4.0", "types": "dist/src/index.d.ts", "description": "Contentstack provides the Live Preview SDK to establish a communication channel between the various Contentstack SDKs and your website, transmitting live changes to the preview pane.", "main": "dist/index.js", From 5743018c71d66706cc76a06c3d7d7ae9d0a00ba5 Mon Sep 17 00:00:00 2001 From: Deepak Kharah <42672761+Deepak-Kharah@users.noreply.github.com> Date: Tue, 9 Jan 2024 12:47:05 +0530 Subject: [PATCH 12/13] test: fix test cases --- src/__test__/contentstack-live-preview-HOC.test.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/__test__/contentstack-live-preview-HOC.test.ts b/src/__test__/contentstack-live-preview-HOC.test.ts index 16ccbbce..3368c224 100644 --- a/src/__test__/contentstack-live-preview-HOC.test.ts +++ b/src/__test__/contentstack-live-preview-HOC.test.ts @@ -3,6 +3,7 @@ import { PublicLogger } from "../utils/public-logger"; import { IInitData } from "../types/types"; import { sendPostmessageToWindow } from "./utils"; import packageJson from "../../package.json"; +import Config from "../utils/configHandler"; describe("Live preview HOC Callback Pub Sub", () => { afterEach(() => { @@ -298,9 +299,13 @@ describe("Gatsby Data formatter", () => { }); describe("live preview hash", () => { + beforeAll(() => { + Config.reset(); + }); afterEach(() => { ContentstackLivePreview.subscribers = {}; ContentstackLivePreview.livePreview = null; + Config.reset(); }); test("should be empty by default", () => { ContentstackLivePreview.init(); From 2974d5151be53b906b6657008ebe1386727b8f99 Mon Sep 17 00:00:00 2001 From: Deepak Kharah <42672761+Deepak-Kharah@users.noreply.github.com> Date: Tue, 9 Jan 2024 12:54:41 +0530 Subject: [PATCH 13/13] chore: remove doc --- docs/.nojekyll | 1 - docs/assets/highlight.css | 92 -- docs/assets/main.js | 58 - docs/assets/search.js | 1 - docs/assets/style.css | 1280 ----------------- ...e_preview_HOC.ContentstackLivePreview.html | 314 ---- docs/classes/liveEditor.VisualEditor.html | 248 ---- ...r_utils_fieldSchemaMap.FieldSchemaMap.html | 231 --- docs/classes/live_preview.default.html | 341 ----- docs/classes/utils_configHandler.default.html | 171 --- .../utils_public_logger.PublicLogger.html | 169 --- ...utils_types_index_types.FieldDataType.html | 223 --- ...age_types.LiveEditorPostMessageEvents.html | 132 -- .../types_types.ILivePreviewModeConfig.html | 104 -- ...ssetButton.generateReplaceAssetButton.html | 111 -- ..._assetButton.removeReplaceAssetButton.html | 94 -- ...s_focusOverlayWrapper.addFocusOverlay.html | 100 -- ..._focusOverlayWrapper.hideFocusOverlay.html | 101 -- ...FieldSchemaMap.generateFieldSchemaMap.html | 89 -- ...tingButton.generateStartEditingButton.html | 95 -- ...lEditorDom.generateVisualEditorCursor.html | 86 -- ...EditorDom.generateVisualEditorOverlay.html | 102 -- ...EditorDom.generateVisualEditorWrapper.html | 96 -- ...getCsDataOfElement.getCsDataOfElement.html | 97 -- ...ditor_utils_getFieldType.getFieldType.html | 89 -- ...handleFieldMouseDown.handleFieldInput.html | 90 -- ...ndleFieldMouseDown.handleFieldKeyDown.html | 90 -- ...alFields.cleanIndividualFieldResidual.html | 97 -- ...dividualFields.handleIndividualFields.html | 103 -- ...anceButtons.generateAddInstanceButton.html | 107 -- ...instanceButtons.getAddInstanceButtons.html | 120 -- ...ElementAddButton.getChildrenDirection.html | 93 -- ...AddButton.handleAddButtonsForMultiple.html | 106 -- ...entAddButton.removeAddInstanceButtons.html | 100 -- .../utils.addLivePreviewQueryTags.html | 96 -- .../utils.createMultipleEditButton.html | 120 -- .../utils.createSingularEditButton.html | 107 -- .../utils.getEditButtonPosition.html | 98 -- docs/functions/utils.hasWindow.html | 91 -- .../utils.shouldRenderEditButton.html | 96 -- ...utils_cslpdata.extractDetailsFromCslp.html | 95 -- .../utils_defaults.getDefaultConfig.html | 85 -- .../utils_defaults.getUserInitData.html | 85 -- ...utils_handleUserConfig.handleInitData.html | 92 -- .../utils_onCookieChange.onCookieChange.html | 113 -- ...utils_replaceHtml.replaceDocumentBody.html | 99 -- ...ls_replaceHtml.rerunScriptsInDocument.html | 86 -- .../utils_replaceHtml.updateDocumentBody.html | 106 -- docs/index.html | 119 -- ...es_index_types.ITraverseSchemaVisitor.html | 147 -- ...chema_types.IBooleanContentTypeSchema.html | 165 --- ...a_types.ICustomFieldContentTypeSchema.html | 179 --- ...peSchema_types.IDateContentTypeSchema.html | 177 --- ...IExperienceContainerContentTypeSchema.html | 174 --- ...peSchema_types.IFileContentTypeSchema.html | 172 --- ...a_types.IGlobalFieldContentTypeSchema.html | 177 --- ...eSchema_types.IGroupContentTypeSchema.html | 172 --- ...chema_types.IHTMLRTEContentTypeSchema.html | 173 --- ...chema_types.IJSONRTEContentTypeSchema.html | 201 --- ...peSchema_types.ILinkContentTypeSchema.html | 170 --- ...hema_types.IMarkdownContentTypeSchema.html | 167 --- ...Schema_types.IModularBlockSingleBlock.html | 115 -- ...types.IModularBlocksContentTypeSchema.html | 172 --- ...es.IMultiLineTextBoxContentTypeSchema.html | 188 --- ...Schema_types.INumberContentTypeSchema.html | 165 --- ...s_contentTypeSchema_types.IPageSchema.html | 166 --- ...ema_types.IReferenceContentTypeSchema.html | 172 --- ...Schema_types.ISelectContentTypeSchema.html | 188 --- ...s.ISingleLineTextBoxContentTypeSchema.html | 186 --- ...eSchema_types.ITitleContentTypeSchema.html | 165 --- ...ypeSchema_types.IURLContentTypeSchema.html | 165 --- .../interfaces/types_cslp_types.CslpData.html | 149 -- ...p_types.CslpDataMultipleFieldMetadata.html | 110 -- ...ypes_cslp_types.CslpDataParentDetails.html | 108 -- ...or_types.VisualEditorCslpEventDetails.html | 115 -- .../types_types.IClientDataMessage.html | 123 -- .../types_types.IClientUrlParams.html | 122 -- docs/interfaces/types_types.IConfig.html | 179 --- .../types_types.IConfigEditButton.html | 122 -- .../types_types.IDocWithScriptMessage.html | 123 -- .../types_types.IEditButtonPosition.html | 108 -- .../types_types.IEditEntrySearchParams.html | 125 -- .../types_types.IHistoryMessage.html | 123 -- .../types_types.IInitAckMessage.html | 125 -- docs/interfaces/types_types.IInitData.html | 157 -- .../types_types.IInitStackDetails.html | 126 -- ...types_types.ILivePreviewMessageCommon.html | 106 -- .../interfaces/types_types.IStackDetails.html | 140 -- docs/interfaces/types_types.IStackSdk.html | 125 -- docs/live-preview-configs.md | 328 +++++ docs/modules.html | 108 -- .../contentstack_live_preview_HOC.html | 98 -- docs/modules/index.html | 98 -- docs/modules/liveEditor.html | 87 -- .../modules/liveEditor_utils_assetButton.html | 89 -- docs/modules/liveEditor_utils_constants.html | 93 -- .../liveEditor_utils_fieldSchemaMap.html | 87 -- .../liveEditor_utils_focusOverlayWrapper.html | 89 -- ...veEditor_utils_generateFieldSchemaMap.html | 87 -- ...itor_utils_generateStartEditingButton.html | 87 -- ...eEditor_utils_generateVisualEditorDom.html | 91 -- .../liveEditor_utils_getCsDataOfElement.html | 87 -- .../liveEditor_utils_getFieldType.html | 87 -- ...liveEditor_utils_handleFieldMouseDown.html | 89 -- ...veEditor_utils_handleIndividualFields.html | 89 -- .../liveEditor_utils_instanceButtons.html | 89 -- ...iveEditor_utils_liveEditorPostMessage.html | 87 -- ...Editor_utils_multipleElementAddButton.html | 91 -- .../liveEditor_utils_types_index_types.html | 99 -- ...eEditor_utils_types_postMessage_types.html | 87 -- docs/modules/live_preview.html | 87 -- .../types_contentTypeSchema_types.html | 134 -- docs/modules/types_cslp_types.html | 91 -- docs/modules/types_liveEditor_types.html | 87 -- docs/modules/types_types.html | 131 -- docs/modules/utils.html | 104 -- docs/modules/utils_configHandler.html | 87 -- docs/modules/utils_cslpdata.html | 87 -- docs/modules/utils_defaults.html | 89 -- docs/modules/utils_handleUserConfig.html | 92 -- docs/modules/utils_onCookieChange.html | 87 -- docs/modules/utils_public_logger.html | 87 -- docs/modules/utils_replaceHtml.html | 91 -- ...ils_types_index_types.ISchemaFieldMap.html | 83 -- ...index_types.ISchemaIndividualFieldMap.html | 83 -- ...Schema_types.IContentTypeCommonBlocks.html | 102 -- ...peSchema_types.IContentTypeRootBlocks.html | 102 -- docs/types/types_types.ILivePreviewMode.html | 99 -- ...types.ILivePreviewReceivePostMessages.html | 99 -- .../types_types.OnEntryChangeCallback.html | 107 -- .../types_types.OnEntryChangeCallbackUID.html | 99 -- .../types_types.OnEntryChangeConfig.html | 104 -- .../index.ContentstackLivePreview.html | 81 -- ...tils_constants.LIVE_EDITOR_CHANNEL_ID.html | 83 -- ....LIVE_EDITOR_FIELD_TYPE_ATTRIBUTE_KEY.html | 83 -- ...ants.LIVE_PREVIEW_OUTLINE_WIDTH_IN_PX.html | 83 -- ...tor_utils_constants.numericInputRegex.html | 83 -- ...r_utils_liveEditorPostMessage.default.html | 80 -- .../utils.tooltipMultipleInnerHtml.html | 87 -- .../utils.tooltipSingularInnerHtml.html | 87 -- ...ils_handleUserConfig.handleUserConfig.html | 99 -- 141 files changed, 328 insertions(+), 17578 deletions(-) delete mode 100644 docs/.nojekyll delete mode 100644 docs/assets/highlight.css delete mode 100644 docs/assets/main.js delete mode 100644 docs/assets/search.js delete mode 100644 docs/assets/style.css delete mode 100644 docs/classes/contentstack_live_preview_HOC.ContentstackLivePreview.html delete mode 100644 docs/classes/liveEditor.VisualEditor.html delete mode 100644 docs/classes/liveEditor_utils_fieldSchemaMap.FieldSchemaMap.html delete mode 100644 docs/classes/live_preview.default.html delete mode 100644 docs/classes/utils_configHandler.default.html delete mode 100644 docs/classes/utils_public_logger.PublicLogger.html delete mode 100644 docs/enums/liveEditor_utils_types_index_types.FieldDataType.html delete mode 100644 docs/enums/liveEditor_utils_types_postMessage_types.LiveEditorPostMessageEvents.html delete mode 100644 docs/enums/types_types.ILivePreviewModeConfig.html delete mode 100644 docs/functions/liveEditor_utils_assetButton.generateReplaceAssetButton.html delete mode 100644 docs/functions/liveEditor_utils_assetButton.removeReplaceAssetButton.html delete mode 100644 docs/functions/liveEditor_utils_focusOverlayWrapper.addFocusOverlay.html delete mode 100644 docs/functions/liveEditor_utils_focusOverlayWrapper.hideFocusOverlay.html delete mode 100644 docs/functions/liveEditor_utils_generateFieldSchemaMap.generateFieldSchemaMap.html delete mode 100644 docs/functions/liveEditor_utils_generateStartEditingButton.generateStartEditingButton.html delete mode 100644 docs/functions/liveEditor_utils_generateVisualEditorDom.generateVisualEditorCursor.html delete mode 100644 docs/functions/liveEditor_utils_generateVisualEditorDom.generateVisualEditorOverlay.html delete mode 100644 docs/functions/liveEditor_utils_generateVisualEditorDom.generateVisualEditorWrapper.html delete mode 100644 docs/functions/liveEditor_utils_getCsDataOfElement.getCsDataOfElement.html delete mode 100644 docs/functions/liveEditor_utils_getFieldType.getFieldType.html delete mode 100644 docs/functions/liveEditor_utils_handleFieldMouseDown.handleFieldInput.html delete mode 100644 docs/functions/liveEditor_utils_handleFieldMouseDown.handleFieldKeyDown.html delete mode 100644 docs/functions/liveEditor_utils_handleIndividualFields.cleanIndividualFieldResidual.html delete mode 100644 docs/functions/liveEditor_utils_handleIndividualFields.handleIndividualFields.html delete mode 100644 docs/functions/liveEditor_utils_instanceButtons.generateAddInstanceButton.html delete mode 100644 docs/functions/liveEditor_utils_instanceButtons.getAddInstanceButtons.html delete mode 100644 docs/functions/liveEditor_utils_multipleElementAddButton.getChildrenDirection.html delete mode 100644 docs/functions/liveEditor_utils_multipleElementAddButton.handleAddButtonsForMultiple.html delete mode 100644 docs/functions/liveEditor_utils_multipleElementAddButton.removeAddInstanceButtons.html delete mode 100644 docs/functions/utils.addLivePreviewQueryTags.html delete mode 100644 docs/functions/utils.createMultipleEditButton.html delete mode 100644 docs/functions/utils.createSingularEditButton.html delete mode 100644 docs/functions/utils.getEditButtonPosition.html delete mode 100644 docs/functions/utils.hasWindow.html delete mode 100644 docs/functions/utils.shouldRenderEditButton.html delete mode 100644 docs/functions/utils_cslpdata.extractDetailsFromCslp.html delete mode 100644 docs/functions/utils_defaults.getDefaultConfig.html delete mode 100644 docs/functions/utils_defaults.getUserInitData.html delete mode 100644 docs/functions/utils_handleUserConfig.handleInitData.html delete mode 100644 docs/functions/utils_onCookieChange.onCookieChange.html delete mode 100644 docs/functions/utils_replaceHtml.replaceDocumentBody.html delete mode 100644 docs/functions/utils_replaceHtml.rerunScriptsInDocument.html delete mode 100644 docs/functions/utils_replaceHtml.updateDocumentBody.html delete mode 100644 docs/index.html delete mode 100644 docs/interfaces/liveEditor_utils_types_index_types.ITraverseSchemaVisitor.html delete mode 100644 docs/interfaces/types_contentTypeSchema_types.IBooleanContentTypeSchema.html delete mode 100644 docs/interfaces/types_contentTypeSchema_types.ICustomFieldContentTypeSchema.html delete mode 100644 docs/interfaces/types_contentTypeSchema_types.IDateContentTypeSchema.html delete mode 100644 docs/interfaces/types_contentTypeSchema_types.IExperienceContainerContentTypeSchema.html delete mode 100644 docs/interfaces/types_contentTypeSchema_types.IFileContentTypeSchema.html delete mode 100644 docs/interfaces/types_contentTypeSchema_types.IGlobalFieldContentTypeSchema.html delete mode 100644 docs/interfaces/types_contentTypeSchema_types.IGroupContentTypeSchema.html delete mode 100644 docs/interfaces/types_contentTypeSchema_types.IHTMLRTEContentTypeSchema.html delete mode 100644 docs/interfaces/types_contentTypeSchema_types.IJSONRTEContentTypeSchema.html delete mode 100644 docs/interfaces/types_contentTypeSchema_types.ILinkContentTypeSchema.html delete mode 100644 docs/interfaces/types_contentTypeSchema_types.IMarkdownContentTypeSchema.html delete mode 100644 docs/interfaces/types_contentTypeSchema_types.IModularBlockSingleBlock.html delete mode 100644 docs/interfaces/types_contentTypeSchema_types.IModularBlocksContentTypeSchema.html delete mode 100644 docs/interfaces/types_contentTypeSchema_types.IMultiLineTextBoxContentTypeSchema.html delete mode 100644 docs/interfaces/types_contentTypeSchema_types.INumberContentTypeSchema.html delete mode 100644 docs/interfaces/types_contentTypeSchema_types.IPageSchema.html delete mode 100644 docs/interfaces/types_contentTypeSchema_types.IReferenceContentTypeSchema.html delete mode 100644 docs/interfaces/types_contentTypeSchema_types.ISelectContentTypeSchema.html delete mode 100644 docs/interfaces/types_contentTypeSchema_types.ISingleLineTextBoxContentTypeSchema.html delete mode 100644 docs/interfaces/types_contentTypeSchema_types.ITitleContentTypeSchema.html delete mode 100644 docs/interfaces/types_contentTypeSchema_types.IURLContentTypeSchema.html delete mode 100644 docs/interfaces/types_cslp_types.CslpData.html delete mode 100644 docs/interfaces/types_cslp_types.CslpDataMultipleFieldMetadata.html delete mode 100644 docs/interfaces/types_cslp_types.CslpDataParentDetails.html delete mode 100644 docs/interfaces/types_liveEditor_types.VisualEditorCslpEventDetails.html delete mode 100644 docs/interfaces/types_types.IClientDataMessage.html delete mode 100644 docs/interfaces/types_types.IClientUrlParams.html delete mode 100644 docs/interfaces/types_types.IConfig.html delete mode 100644 docs/interfaces/types_types.IConfigEditButton.html delete mode 100644 docs/interfaces/types_types.IDocWithScriptMessage.html delete mode 100644 docs/interfaces/types_types.IEditButtonPosition.html delete mode 100644 docs/interfaces/types_types.IEditEntrySearchParams.html delete mode 100644 docs/interfaces/types_types.IHistoryMessage.html delete mode 100644 docs/interfaces/types_types.IInitAckMessage.html delete mode 100644 docs/interfaces/types_types.IInitData.html delete mode 100644 docs/interfaces/types_types.IInitStackDetails.html delete mode 100644 docs/interfaces/types_types.ILivePreviewMessageCommon.html delete mode 100644 docs/interfaces/types_types.IStackDetails.html delete mode 100644 docs/interfaces/types_types.IStackSdk.html create mode 100644 docs/live-preview-configs.md delete mode 100644 docs/modules.html delete mode 100644 docs/modules/contentstack_live_preview_HOC.html delete mode 100644 docs/modules/index.html delete mode 100644 docs/modules/liveEditor.html delete mode 100644 docs/modules/liveEditor_utils_assetButton.html delete mode 100644 docs/modules/liveEditor_utils_constants.html delete mode 100644 docs/modules/liveEditor_utils_fieldSchemaMap.html delete mode 100644 docs/modules/liveEditor_utils_focusOverlayWrapper.html delete mode 100644 docs/modules/liveEditor_utils_generateFieldSchemaMap.html delete mode 100644 docs/modules/liveEditor_utils_generateStartEditingButton.html delete mode 100644 docs/modules/liveEditor_utils_generateVisualEditorDom.html delete mode 100644 docs/modules/liveEditor_utils_getCsDataOfElement.html delete mode 100644 docs/modules/liveEditor_utils_getFieldType.html delete mode 100644 docs/modules/liveEditor_utils_handleFieldMouseDown.html delete mode 100644 docs/modules/liveEditor_utils_handleIndividualFields.html delete mode 100644 docs/modules/liveEditor_utils_instanceButtons.html delete mode 100644 docs/modules/liveEditor_utils_liveEditorPostMessage.html delete mode 100644 docs/modules/liveEditor_utils_multipleElementAddButton.html delete mode 100644 docs/modules/liveEditor_utils_types_index_types.html delete mode 100644 docs/modules/liveEditor_utils_types_postMessage_types.html delete mode 100644 docs/modules/live_preview.html delete mode 100644 docs/modules/types_contentTypeSchema_types.html delete mode 100644 docs/modules/types_cslp_types.html delete mode 100644 docs/modules/types_liveEditor_types.html delete mode 100644 docs/modules/types_types.html delete mode 100644 docs/modules/utils.html delete mode 100644 docs/modules/utils_configHandler.html delete mode 100644 docs/modules/utils_cslpdata.html delete mode 100644 docs/modules/utils_defaults.html delete mode 100644 docs/modules/utils_handleUserConfig.html delete mode 100644 docs/modules/utils_onCookieChange.html delete mode 100644 docs/modules/utils_public_logger.html delete mode 100644 docs/modules/utils_replaceHtml.html delete mode 100644 docs/types/liveEditor_utils_types_index_types.ISchemaFieldMap.html delete mode 100644 docs/types/liveEditor_utils_types_index_types.ISchemaIndividualFieldMap.html delete mode 100644 docs/types/types_contentTypeSchema_types.IContentTypeCommonBlocks.html delete mode 100644 docs/types/types_contentTypeSchema_types.IContentTypeRootBlocks.html delete mode 100644 docs/types/types_types.ILivePreviewMode.html delete mode 100644 docs/types/types_types.ILivePreviewReceivePostMessages.html delete mode 100644 docs/types/types_types.OnEntryChangeCallback.html delete mode 100644 docs/types/types_types.OnEntryChangeCallbackUID.html delete mode 100644 docs/types/types_types.OnEntryChangeConfig.html delete mode 100644 docs/variables/index.ContentstackLivePreview.html delete mode 100644 docs/variables/liveEditor_utils_constants.LIVE_EDITOR_CHANNEL_ID.html delete mode 100644 docs/variables/liveEditor_utils_constants.LIVE_EDITOR_FIELD_TYPE_ATTRIBUTE_KEY.html delete mode 100644 docs/variables/liveEditor_utils_constants.LIVE_PREVIEW_OUTLINE_WIDTH_IN_PX.html delete mode 100644 docs/variables/liveEditor_utils_constants.numericInputRegex.html delete mode 100644 docs/variables/liveEditor_utils_liveEditorPostMessage.default.html delete mode 100644 docs/variables/utils.tooltipMultipleInnerHtml.html delete mode 100644 docs/variables/utils.tooltipSingularInnerHtml.html delete mode 100644 docs/variables/utils_handleUserConfig.handleUserConfig.html diff --git a/docs/.nojekyll b/docs/.nojekyll deleted file mode 100644 index e2ac6616..00000000 --- a/docs/.nojekyll +++ /dev/null @@ -1 +0,0 @@ -TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false. \ No newline at end of file diff --git a/docs/assets/highlight.css b/docs/assets/highlight.css deleted file mode 100644 index f01c1418..00000000 --- a/docs/assets/highlight.css +++ /dev/null @@ -1,92 +0,0 @@ -:root { - --light-hl-0: #000000; - --dark-hl-0: #D4D4D4; - --light-hl-1: #A31515; - --dark-hl-1: #CE9178; - --light-hl-2: #800000; - --dark-hl-2: #808080; - --light-hl-3: #800000; - --dark-hl-3: #569CD6; - --light-hl-4: #000000FF; - --dark-hl-4: #D4D4D4; - --light-hl-5: #E50000; - --dark-hl-5: #9CDCFE; - --light-hl-6: #0000FF; - --dark-hl-6: #CE9178; - --light-hl-7: #AF00DB; - --dark-hl-7: #C586C0; - --light-hl-8: #001080; - --dark-hl-8: #9CDCFE; - --light-hl-9: #795E26; - --dark-hl-9: #DCDCAA; - --light-code-background: #FFFFFF; - --dark-code-background: #1E1E1E; -} - -@media (prefers-color-scheme: light) { :root { - --hl-0: var(--light-hl-0); - --hl-1: var(--light-hl-1); - --hl-2: var(--light-hl-2); - --hl-3: var(--light-hl-3); - --hl-4: var(--light-hl-4); - --hl-5: var(--light-hl-5); - --hl-6: var(--light-hl-6); - --hl-7: var(--light-hl-7); - --hl-8: var(--light-hl-8); - --hl-9: var(--light-hl-9); - --code-background: var(--light-code-background); -} } - -@media (prefers-color-scheme: dark) { :root { - --hl-0: var(--dark-hl-0); - --hl-1: var(--dark-hl-1); - --hl-2: var(--dark-hl-2); - --hl-3: var(--dark-hl-3); - --hl-4: var(--dark-hl-4); - --hl-5: var(--dark-hl-5); - --hl-6: var(--dark-hl-6); - --hl-7: var(--dark-hl-7); - --hl-8: var(--dark-hl-8); - --hl-9: var(--dark-hl-9); - --code-background: var(--dark-code-background); -} } - -:root[data-theme='light'] { - --hl-0: var(--light-hl-0); - --hl-1: var(--light-hl-1); - --hl-2: var(--light-hl-2); - --hl-3: var(--light-hl-3); - --hl-4: var(--light-hl-4); - --hl-5: var(--light-hl-5); - --hl-6: var(--light-hl-6); - --hl-7: var(--light-hl-7); - --hl-8: var(--light-hl-8); - --hl-9: var(--light-hl-9); - --code-background: var(--light-code-background); -} - -:root[data-theme='dark'] { - --hl-0: var(--dark-hl-0); - --hl-1: var(--dark-hl-1); - --hl-2: var(--dark-hl-2); - --hl-3: var(--dark-hl-3); - --hl-4: var(--dark-hl-4); - --hl-5: var(--dark-hl-5); - --hl-6: var(--dark-hl-6); - --hl-7: var(--dark-hl-7); - --hl-8: var(--dark-hl-8); - --hl-9: var(--dark-hl-9); - --code-background: var(--dark-code-background); -} - -.hl-0 { color: var(--hl-0); } -.hl-1 { color: var(--hl-1); } -.hl-2 { color: var(--hl-2); } -.hl-3 { color: var(--hl-3); } -.hl-4 { color: var(--hl-4); } -.hl-5 { color: var(--hl-5); } -.hl-6 { color: var(--hl-6); } -.hl-7 { color: var(--hl-7); } -.hl-8 { color: var(--hl-8); } -.hl-9 { color: var(--hl-9); } -pre, code { background: var(--code-background); } diff --git a/docs/assets/main.js b/docs/assets/main.js deleted file mode 100644 index f7c83669..00000000 --- a/docs/assets/main.js +++ /dev/null @@ -1,58 +0,0 @@ -"use strict"; -"use strict";(()=>{var Qe=Object.create;var ae=Object.defineProperty;var Pe=Object.getOwnPropertyDescriptor;var Ce=Object.getOwnPropertyNames;var Oe=Object.getPrototypeOf,Re=Object.prototype.hasOwnProperty;var _e=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var Me=(t,e,n,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of Ce(e))!Re.call(t,i)&&i!==n&&ae(t,i,{get:()=>e[i],enumerable:!(r=Pe(e,i))||r.enumerable});return t};var De=(t,e,n)=>(n=t!=null?Qe(Oe(t)):{},Me(e||!t||!t.__esModule?ae(n,"default",{value:t,enumerable:!0}):n,t));var de=_e((ce,he)=>{(function(){var t=function(e){var n=new t.Builder;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),n.searchPipeline.add(t.stemmer),e.call(n,n),n.build()};t.version="2.3.9";t.utils={},t.utils.warn=function(e){return function(n){e.console&&console.warn&&console.warn(n)}}(this),t.utils.asString=function(e){return e==null?"":e.toString()},t.utils.clone=function(e){if(e==null)return e;for(var n=Object.create(null),r=Object.keys(e),i=0;i0){var h=t.utils.clone(n)||{};h.position=[a,l],h.index=s.length,s.push(new t.Token(r.slice(a,o),h))}a=o+1}}return s},t.tokenizer.separator=/[\s\-]+/;t.Pipeline=function(){this._stack=[]},t.Pipeline.registeredFunctions=Object.create(null),t.Pipeline.registerFunction=function(e,n){n in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn(`Function is not registered with pipeline. This may cause problems when serialising the index. -`,e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(r){var i=t.Pipeline.registeredFunctions[r];if(i)n.add(i);else throw new Error("Cannot load unregistered function: "+r)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(n){t.Pipeline.warnIfFunctionNotRegistered(n),this._stack.push(n)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var r=this._stack.indexOf(e);if(r==-1)throw new Error("Cannot find existingFn");r=r+1,this._stack.splice(r,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var r=this._stack.indexOf(e);if(r==-1)throw new Error("Cannot find existingFn");this._stack.splice(r,0,n)},t.Pipeline.prototype.remove=function(e){var n=this._stack.indexOf(e);n!=-1&&this._stack.splice(n,1)},t.Pipeline.prototype.run=function(e){for(var n=this._stack.length,r=0;r1&&(oe&&(r=s),o!=e);)i=r-n,s=n+Math.floor(i/2),o=this.elements[s*2];if(o==e||o>e)return s*2;if(ou?h+=2:a==u&&(n+=r[l+1]*i[h+1],l+=2,h+=2);return n},t.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},t.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),n=1,r=0;n0){var o=s.str.charAt(0),a;o in s.node.edges?a=s.node.edges[o]:(a=new t.TokenSet,s.node.edges[o]=a),s.str.length==1&&(a.final=!0),i.push({node:a,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(s.editsRemaining!=0){if("*"in s.node.edges)var u=s.node.edges["*"];else{var u=new t.TokenSet;s.node.edges["*"]=u}if(s.str.length==0&&(u.final=!0),i.push({node:u,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&i.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),s.str.length==1&&(s.node.final=!0),s.str.length>=1){if("*"in s.node.edges)var l=s.node.edges["*"];else{var l=new t.TokenSet;s.node.edges["*"]=l}s.str.length==1&&(l.final=!0),i.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var h=s.str.charAt(0),m=s.str.charAt(1),v;m in s.node.edges?v=s.node.edges[m]:(v=new t.TokenSet,s.node.edges[m]=v),s.str.length==1&&(v.final=!0),i.push({node:v,editsRemaining:s.editsRemaining-1,str:h+s.str.slice(2)})}}}return r},t.TokenSet.fromString=function(e){for(var n=new t.TokenSet,r=n,i=0,s=e.length;i=e;n--){var r=this.uncheckedNodes[n],i=r.child.toString();i in this.minimizedNodes?r.parent.edges[r.char]=this.minimizedNodes[i]:(r.child._str=i,this.minimizedNodes[i]=r.child),this.uncheckedNodes.pop()}};t.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},t.Index.prototype.search=function(e){return this.query(function(n){var r=new t.QueryParser(e,n);r.parse()})},t.Index.prototype.query=function(e){for(var n=new t.Query(this.fields),r=Object.create(null),i=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),u=0;u1?this._b=1:this._b=e},t.Builder.prototype.k1=function(e){this._k1=e},t.Builder.prototype.add=function(e,n){var r=e[this._ref],i=Object.keys(this._fields);this._documents[r]=n||{},this.documentCount+=1;for(var s=0;s=this.length)return t.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},t.QueryLexer.prototype.width=function(){return this.pos-this.start},t.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},t.QueryLexer.prototype.backup=function(){this.pos-=1},t.QueryLexer.prototype.acceptDigitRun=function(){var e,n;do e=this.next(),n=e.charCodeAt(0);while(n>47&&n<58);e!=t.QueryLexer.EOS&&this.backup()},t.QueryLexer.prototype.more=function(){return this.pos1&&(e.backup(),e.emit(t.QueryLexer.TERM)),e.ignore(),e.more())return t.QueryLexer.lexText},t.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.EDIT_DISTANCE),t.QueryLexer.lexText},t.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.BOOST),t.QueryLexer.lexText},t.QueryLexer.lexEOS=function(e){e.width()>0&&e.emit(t.QueryLexer.TERM)},t.QueryLexer.termSeparator=t.tokenizer.separator,t.QueryLexer.lexText=function(e){for(;;){var n=e.next();if(n==t.QueryLexer.EOS)return t.QueryLexer.lexEOS;if(n.charCodeAt(0)==92){e.escapeCharacter();continue}if(n==":")return t.QueryLexer.lexField;if(n=="~")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexEditDistance;if(n=="^")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexBoost;if(n=="+"&&e.width()===1||n=="-"&&e.width()===1)return e.emit(t.QueryLexer.PRESENCE),t.QueryLexer.lexText;if(n.match(t.QueryLexer.termSeparator))return t.QueryLexer.lexTerm}},t.QueryParser=function(e,n){this.lexer=new t.QueryLexer(e),this.query=n,this.currentClause={},this.lexemeIdx=0},t.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=t.QueryParser.parseClause;e;)e=e(this);return this.query},t.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},t.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},t.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},t.QueryParser.parseClause=function(e){var n=e.peekLexeme();if(n!=null)switch(n.type){case t.QueryLexer.PRESENCE:return t.QueryParser.parsePresence;case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var r="expected either a field or a term, found "+n.type;throw n.str.length>=1&&(r+=" with value '"+n.str+"'"),new t.QueryParseError(r,n.start,n.end)}},t.QueryParser.parsePresence=function(e){var n=e.consumeLexeme();if(n!=null){switch(n.str){case"-":e.currentClause.presence=t.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=t.Query.presence.REQUIRED;break;default:var r="unrecognised presence operator'"+n.str+"'";throw new t.QueryParseError(r,n.start,n.end)}var i=e.peekLexeme();if(i==null){var r="expecting term or field, found nothing";throw new t.QueryParseError(r,n.start,n.end)}switch(i.type){case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var r="expecting term or field, found '"+i.type+"'";throw new t.QueryParseError(r,i.start,i.end)}}},t.QueryParser.parseField=function(e){var n=e.consumeLexeme();if(n!=null){if(e.query.allFields.indexOf(n.str)==-1){var r=e.query.allFields.map(function(o){return"'"+o+"'"}).join(", "),i="unrecognised field '"+n.str+"', possible fields: "+r;throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.fields=[n.str];var s=e.peekLexeme();if(s==null){var i="expecting term, found nothing";throw new t.QueryParseError(i,n.start,n.end)}switch(s.type){case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var i="expecting term, found '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseTerm=function(e){var n=e.consumeLexeme();if(n!=null){e.currentClause.term=n.str.toLowerCase(),n.str.indexOf("*")!=-1&&(e.currentClause.usePipeline=!1);var r=e.peekLexeme();if(r==null){e.nextClause();return}switch(r.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+r.type+"'";throw new t.QueryParseError(i,r.start,r.end)}}},t.QueryParser.parseEditDistance=function(e){var n=e.consumeLexeme();if(n!=null){var r=parseInt(n.str,10);if(isNaN(r)){var i="edit distance must be numeric";throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.editDistance=r;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseBoost=function(e){var n=e.consumeLexeme();if(n!=null){var r=parseInt(n.str,10);if(isNaN(r)){var i="boost must be numeric";throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.boost=r;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},function(e,n){typeof define=="function"&&define.amd?define(n):typeof ce=="object"?he.exports=n():e.lunr=n()}(this,function(){return t})})()});var le=[];function B(t,e){le.push({selector:e,constructor:t})}var Y=class{constructor(){this.alwaysVisibleMember=null;this.createComponents(document.body),this.ensureFocusedElementVisible(),window.addEventListener("hashchange",()=>this.ensureFocusedElementVisible())}createComponents(e){le.forEach(n=>{e.querySelectorAll(n.selector).forEach(r=>{r.dataset.hasInstance||(new n.constructor({el:r,app:this}),r.dataset.hasInstance=String(!0))})})}filterChanged(){this.ensureFocusedElementVisible()}ensureFocusedElementVisible(){this.alwaysVisibleMember&&(this.alwaysVisibleMember.classList.remove("always-visible"),this.alwaysVisibleMember.firstElementChild.remove(),this.alwaysVisibleMember=null);let e=document.getElementById(location.hash.substring(1));if(!e)return;let n=e.parentElement;for(;n&&n.tagName!=="SECTION";)n=n.parentElement;if(n&&n.offsetParent==null){this.alwaysVisibleMember=n,n.classList.add("always-visible");let r=document.createElement("p");r.classList.add("warning"),r.textContent="This member is normally hidden due to your filter settings.",n.prepend(r)}}};var I=class{constructor(e){this.el=e.el,this.app=e.app}};var J=class{constructor(){this.listeners={}}addEventListener(e,n){e in this.listeners||(this.listeners[e]=[]),this.listeners[e].push(n)}removeEventListener(e,n){if(!(e in this.listeners))return;let r=this.listeners[e];for(let i=0,s=r.length;i{let n=Date.now();return(...r)=>{n+e-Date.now()<0&&(t(...r),n=Date.now())}};var re=class extends J{constructor(){super();this.scrollTop=0;this.lastY=0;this.width=0;this.height=0;this.showToolbar=!0;this.toolbar=document.querySelector(".tsd-page-toolbar"),this.navigation=document.querySelector(".col-menu"),window.addEventListener("scroll",ne(()=>this.onScroll(),10)),window.addEventListener("resize",ne(()=>this.onResize(),10)),this.searchInput=document.querySelector("#tsd-search input"),this.searchInput&&this.searchInput.addEventListener("focus",()=>{this.hideShowToolbar()}),this.onResize(),this.onScroll()}triggerResize(){let n=new CustomEvent("resize",{detail:{width:this.width,height:this.height}});this.dispatchEvent(n)}onResize(){this.width=window.innerWidth||0,this.height=window.innerHeight||0;let n=new CustomEvent("resize",{detail:{width:this.width,height:this.height}});this.dispatchEvent(n)}onScroll(){this.scrollTop=window.scrollY||0;let n=new CustomEvent("scroll",{detail:{scrollTop:this.scrollTop}});this.dispatchEvent(n),this.hideShowToolbar()}hideShowToolbar(){let n=this.showToolbar;this.showToolbar=this.lastY>=this.scrollTop||this.scrollTop<=0||!!this.searchInput&&this.searchInput===document.activeElement,n!==this.showToolbar&&(this.toolbar.classList.toggle("tsd-page-toolbar--hide"),this.navigation?.classList.toggle("col-menu--hide")),this.lastY=this.scrollTop}},R=re;R.instance=new re;var X=class extends I{constructor(n){super(n);this.anchors=[];this.index=-1;R.instance.addEventListener("resize",()=>this.onResize()),R.instance.addEventListener("scroll",r=>this.onScroll(r)),this.createAnchors()}createAnchors(){let n=window.location.href;n.indexOf("#")!=-1&&(n=n.substring(0,n.indexOf("#"))),this.el.querySelectorAll("a").forEach(r=>{let i=r.href;if(i.indexOf("#")==-1||i.substring(0,n.length)!=n)return;let s=i.substring(i.indexOf("#")+1),o=document.querySelector("a.tsd-anchor[name="+s+"]"),a=r.parentNode;!o||!a||this.anchors.push({link:a,anchor:o,position:0})}),this.onResize()}onResize(){let n;for(let i=0,s=this.anchors.length;ii.position-s.position);let r=new CustomEvent("scroll",{detail:{scrollTop:R.instance.scrollTop}});this.onScroll(r)}onScroll(n){let r=n.detail.scrollTop+5,i=this.anchors,s=i.length-1,o=this.index;for(;o>-1&&i[o].position>r;)o-=1;for(;o-1&&this.anchors[this.index].link.classList.remove("focus"),this.index=o,this.index>-1&&this.anchors[this.index].link.classList.add("focus"))}};var ue=(t,e=100)=>{let n;return()=>{clearTimeout(n),n=setTimeout(()=>t(),e)}};var me=De(de());function ve(){let t=document.getElementById("tsd-search");if(!t)return;let e=document.getElementById("search-script");t.classList.add("loading"),e&&(e.addEventListener("error",()=>{t.classList.remove("loading"),t.classList.add("failure")}),e.addEventListener("load",()=>{t.classList.remove("loading"),t.classList.add("ready")}),window.searchData&&t.classList.remove("loading"));let n=document.querySelector("#tsd-search input"),r=document.querySelector("#tsd-search .results");if(!n||!r)throw new Error("The input field or the result list wrapper was not found");let i=!1;r.addEventListener("mousedown",()=>i=!0),r.addEventListener("mouseup",()=>{i=!1,t.classList.remove("has-focus")}),n.addEventListener("focus",()=>t.classList.add("has-focus")),n.addEventListener("blur",()=>{i||(i=!1,t.classList.remove("has-focus"))});let s={base:t.dataset.base+"/"};Fe(t,r,n,s)}function Fe(t,e,n,r){n.addEventListener("input",ue(()=>{He(t,e,n,r)},200));let i=!1;n.addEventListener("keydown",s=>{i=!0,s.key=="Enter"?Ve(e,n):s.key=="Escape"?n.blur():s.key=="ArrowUp"?pe(e,-1):s.key==="ArrowDown"?pe(e,1):i=!1}),n.addEventListener("keypress",s=>{i&&s.preventDefault()}),document.body.addEventListener("keydown",s=>{s.altKey||s.ctrlKey||s.metaKey||!n.matches(":focus")&&s.key==="/"&&(n.focus(),s.preventDefault())})}function Ae(t,e){t.index||window.searchData&&(e.classList.remove("loading"),e.classList.add("ready"),t.data=window.searchData,t.index=me.Index.load(window.searchData.index))}function He(t,e,n,r){if(Ae(r,t),!r.index||!r.data)return;e.textContent="";let i=n.value.trim(),s=i?r.index.search(`*${i}*`):[];for(let o=0;oa.score-o.score);for(let o=0,a=Math.min(10,s.length);o${fe(u.parent,i)}.${l}`);let h=document.createElement("li");h.classList.value=u.classes??"";let m=document.createElement("a");m.href=r.base+u.url,m.innerHTML=l,h.append(m),e.appendChild(h)}}function pe(t,e){let n=t.querySelector(".current");if(!n)n=t.querySelector(e==1?"li:first-child":"li:last-child"),n&&n.classList.add("current");else{let r=n;if(e===1)do r=r.nextElementSibling??void 0;while(r instanceof HTMLElement&&r.offsetParent==null);else do r=r.previousElementSibling??void 0;while(r instanceof HTMLElement&&r.offsetParent==null);r&&(n.classList.remove("current"),r.classList.add("current"))}}function Ve(t,e){let n=t.querySelector(".current");if(n||(n=t.querySelector("li:first-child")),n){let r=n.querySelector("a");r&&(window.location.href=r.href),e.blur()}}function fe(t,e){if(e==="")return t;let n=t.toLocaleLowerCase(),r=e.toLocaleLowerCase(),i=[],s=0,o=n.indexOf(r);for(;o!=-1;)i.push(ie(t.substring(s,o)),`${ie(t.substring(o,o+r.length))}`),s=o+r.length,o=n.indexOf(r,s);return i.push(ie(t.substring(s))),i.join("")}var Ne={"&":"&","<":"<",">":">","'":"'",'"':"""};function ie(t){return t.replace(/[&<>"'"]/g,e=>Ne[e])}var F="mousedown",ye="mousemove",j="mouseup",Z={x:0,y:0},ge=!1,se=!1,Be=!1,A=!1,xe=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);document.documentElement.classList.add(xe?"is-mobile":"not-mobile");xe&&"ontouchstart"in document.documentElement&&(Be=!0,F="touchstart",ye="touchmove",j="touchend");document.addEventListener(F,t=>{se=!0,A=!1;let e=F=="touchstart"?t.targetTouches[0]:t;Z.y=e.pageY||0,Z.x=e.pageX||0});document.addEventListener(ye,t=>{if(se&&!A){let e=F=="touchstart"?t.targetTouches[0]:t,n=Z.x-(e.pageX||0),r=Z.y-(e.pageY||0);A=Math.sqrt(n*n+r*r)>10}});document.addEventListener(j,()=>{se=!1});document.addEventListener("click",t=>{ge&&(t.preventDefault(),t.stopImmediatePropagation(),ge=!1)});var K=class extends I{constructor(n){super(n);this.className=this.el.dataset.toggle||"",this.el.addEventListener(j,r=>this.onPointerUp(r)),this.el.addEventListener("click",r=>r.preventDefault()),document.addEventListener(F,r=>this.onDocumentPointerDown(r)),document.addEventListener(j,r=>this.onDocumentPointerUp(r))}setActive(n){if(this.active==n)return;this.active=n,document.documentElement.classList.toggle("has-"+this.className,n),this.el.classList.toggle("active",n);let r=(this.active?"to-has-":"from-has-")+this.className;document.documentElement.classList.add(r),setTimeout(()=>document.documentElement.classList.remove(r),500)}onPointerUp(n){A||(this.setActive(!0),n.preventDefault())}onDocumentPointerDown(n){if(this.active){if(n.target.closest(".col-menu, .tsd-filter-group"))return;this.setActive(!1)}}onDocumentPointerUp(n){if(!A&&this.active&&n.target.closest(".col-menu")){let r=n.target.closest("a");if(r){let i=window.location.href;i.indexOf("#")!=-1&&(i=i.substring(0,i.indexOf("#"))),r.href.substring(0,i.length)==i&&setTimeout(()=>this.setActive(!1),250)}}}};var oe;try{oe=localStorage}catch{oe={getItem(){return null},setItem(){}}}var Q=oe;var Le=document.head.appendChild(document.createElement("style"));Le.dataset.for="filters";var ee=class extends I{constructor(n){super(n);this.key=`filter-${this.el.name}`,this.value=this.el.checked,this.el.addEventListener("change",()=>{this.setLocalStorage(this.el.checked)}),this.setLocalStorage(this.fromLocalStorage()),Le.innerHTML+=`html:not(.${this.key}) .tsd-is-${this.el.name} { display: none; } -`}fromLocalStorage(){let n=Q.getItem(this.key);return n?n==="true":this.el.checked}setLocalStorage(n){Q.setItem(this.key,n.toString()),this.value=n,this.handleValueChange()}handleValueChange(){this.el.checked=this.value,document.documentElement.classList.toggle(this.key,this.value),this.app.filterChanged(),document.querySelectorAll(".tsd-index-section").forEach(n=>{n.style.display="block";let r=Array.from(n.querySelectorAll(".tsd-index-link")).every(i=>i.offsetParent==null);n.style.display=r?"none":"block"})}};var te=class extends I{constructor(n){super(n);this.calculateHeights(),this.summary=this.el.querySelector(".tsd-accordion-summary"),this.icon=this.summary.querySelector("svg"),this.key=`tsd-accordion-${this.summary.textContent.replace(/\s+/g,"-").toLowerCase()}`,this.setLocalStorage(this.fromLocalStorage(),!0),this.summary.addEventListener("click",r=>this.toggleVisibility(r)),this.icon.style.transform=this.getIconRotation()}getIconRotation(n=this.el.open){return`rotate(${n?0:-90}deg)`}calculateHeights(){let n=this.el.open,{position:r,left:i}=this.el.style;this.el.style.position="fixed",this.el.style.left="-9999px",this.el.open=!0,this.expandedHeight=this.el.offsetHeight+"px",this.el.open=!1,this.collapsedHeight=this.el.offsetHeight+"px",this.el.open=n,this.el.style.height=n?this.expandedHeight:this.collapsedHeight,this.el.style.position=r,this.el.style.left=i}toggleVisibility(n){n.preventDefault(),this.el.style.overflow="hidden",this.el.open?this.collapse():this.expand()}expand(n=!0){this.el.open=!0,this.animate(this.collapsedHeight,this.expandedHeight,{opening:!0,duration:n?300:0})}collapse(n=!0){this.animate(this.expandedHeight,this.collapsedHeight,{opening:!1,duration:n?300:0})}animate(n,r,{opening:i,duration:s=300}){if(this.animation)return;let o={duration:s,easing:"ease"};this.animation=this.el.animate({height:[n,r]},o),this.icon.animate({transform:[this.icon.style.transform||this.getIconRotation(!i),this.getIconRotation(i)]},o).addEventListener("finish",()=>{this.icon.style.transform=this.getIconRotation(i)}),this.animation.addEventListener("finish",()=>this.animationEnd(i))}animationEnd(n){this.el.open=n,this.animation=void 0,this.el.style.height="auto",this.el.style.overflow="visible",this.setLocalStorage(n)}fromLocalStorage(){let n=Q.getItem(this.key);return n?n==="true":this.el.open}setLocalStorage(n,r=!1){this.fromLocalStorage()===n&&!r||(Q.setItem(this.key,n.toString()),this.el.open=n,this.handleValueChange(r))}handleValueChange(n=!1){this.fromLocalStorage()===this.el.open&&!n||(this.fromLocalStorage()?this.expand(!1):this.collapse(!1))}};function be(t){let e=Q.getItem("tsd-theme")||"os";t.value=e,Ee(e),t.addEventListener("change",()=>{Q.setItem("tsd-theme",t.value),Ee(t.value)})}function Ee(t){document.documentElement.dataset.theme=t}ve();B(X,".menu-highlight");B(K,"a[data-toggle]");B(te,".tsd-index-accordion");B(ee,".tsd-filter-item input[type=checkbox]");var we=document.getElementById("theme");we&&be(we);var je=new Y;Object.defineProperty(window,"app",{value:je});})(); -/*! Bundled license information: - -lunr/lunr.js: - (** - * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9 - * Copyright (C) 2020 Oliver Nightingale - * @license MIT - *) - (*! - * lunr.utils - * Copyright (C) 2020 Oliver Nightingale - *) - (*! - * lunr.Set - * Copyright (C) 2020 Oliver Nightingale - *) - (*! - * lunr.tokenizer - * Copyright (C) 2020 Oliver Nightingale - *) - (*! - * lunr.Pipeline - * Copyright (C) 2020 Oliver Nightingale - *) - (*! - * lunr.Vector - * Copyright (C) 2020 Oliver Nightingale - *) - (*! - * lunr.stemmer - * Copyright (C) 2020 Oliver Nightingale - * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt - *) - (*! - * lunr.stopWordFilter - * Copyright (C) 2020 Oliver Nightingale - *) - (*! - * lunr.trimmer - * Copyright (C) 2020 Oliver Nightingale - *) - (*! - * lunr.TokenSet - * Copyright (C) 2020 Oliver Nightingale - *) - (*! - * lunr.Index - * Copyright (C) 2020 Oliver Nightingale - *) - (*! - * lunr.Builder - * Copyright (C) 2020 Oliver Nightingale - *) -*/ diff --git a/docs/assets/search.js b/docs/assets/search.js deleted file mode 100644 index 121eb6a4..00000000 --- a/docs/assets/search.js +++ /dev/null @@ -1 +0,0 @@ -window.searchData = JSON.parse("{\"kinds\":{\"2\":\"Module\",\"8\":\"Enumeration\",\"16\":\"Enumeration Member\",\"32\":\"Variable\",\"64\":\"Function\",\"128\":\"Class\",\"256\":\"Interface\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\",\"262144\":\"Accessor\",\"4194304\":\"Type alias\",\"8388608\":\"Reference\"},\"rows\":[{\"kind\":2,\"name\":\"contentstack-live-preview-HOC\",\"url\":\"modules/contentstack_live_preview_HOC.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"ContentstackLivePreview\",\"url\":\"classes/contentstack_live_preview_HOC.ContentstackLivePreview.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"contentstack-live-preview-HOC\"},{\"kind\":1024,\"name\":\"livePreview\",\"url\":\"classes/contentstack_live_preview_HOC.ContentstackLivePreview.html#livePreview\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"contentstack-live-preview-HOC.ContentstackLivePreview\"},{\"kind\":1024,\"name\":\"userConfig\",\"url\":\"classes/contentstack_live_preview_HOC.ContentstackLivePreview.html#userConfig\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"contentstack-live-preview-HOC.ContentstackLivePreview\"},{\"kind\":1024,\"name\":\"subscribers\",\"url\":\"classes/contentstack_live_preview_HOC.ContentstackLivePreview.html#subscribers\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"contentstack-live-preview-HOC.ContentstackLivePreview\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/contentstack_live_preview_HOC.ContentstackLivePreview.html#subscribers.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"contentstack-live-preview-HOC.ContentstackLivePreview.subscribers\"},{\"kind\":1024,\"name\":\"configs\",\"url\":\"classes/contentstack_live_preview_HOC.ContentstackLivePreview.html#configs\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"contentstack-live-preview-HOC.ContentstackLivePreview\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/contentstack_live_preview_HOC.ContentstackLivePreview.html#configs.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"contentstack-live-preview-HOC.ContentstackLivePreview.configs\"},{\"kind\":1024,\"name\":\"params\",\"url\":\"classes/contentstack_live_preview_HOC.ContentstackLivePreview.html#configs.__type.params\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"contentstack-live-preview-HOC.ContentstackLivePreview.configs.__type\"},{\"kind\":2048,\"name\":\"init\",\"url\":\"classes/contentstack_live_preview_HOC.ContentstackLivePreview.html#init\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"contentstack-live-preview-HOC.ContentstackLivePreview\"},{\"kind\":262144,\"name\":\"hash\",\"url\":\"classes/contentstack_live_preview_HOC.ContentstackLivePreview.html#hash\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"contentstack-live-preview-HOC.ContentstackLivePreview\"},{\"kind\":2048,\"name\":\"setConfigFromParams\",\"url\":\"classes/contentstack_live_preview_HOC.ContentstackLivePreview.html#setConfigFromParams\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"contentstack-live-preview-HOC.ContentstackLivePreview\"},{\"kind\":2048,\"name\":\"publish\",\"url\":\"classes/contentstack_live_preview_HOC.ContentstackLivePreview.html#publish\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"contentstack-live-preview-HOC.ContentstackLivePreview\"},{\"kind\":2048,\"name\":\"subscribe\",\"url\":\"classes/contentstack_live_preview_HOC.ContentstackLivePreview.html#subscribe\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"contentstack-live-preview-HOC.ContentstackLivePreview\"},{\"kind\":2048,\"name\":\"onEntryChange\",\"url\":\"classes/contentstack_live_preview_HOC.ContentstackLivePreview.html#onEntryChange\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"contentstack-live-preview-HOC.ContentstackLivePreview\"},{\"kind\":2048,\"name\":\"onLiveEdit\",\"url\":\"classes/contentstack_live_preview_HOC.ContentstackLivePreview.html#onLiveEdit\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"contentstack-live-preview-HOC.ContentstackLivePreview\"},{\"kind\":2048,\"name\":\"unsubscribeOnEntryChange\",\"url\":\"classes/contentstack_live_preview_HOC.ContentstackLivePreview.html#unsubscribeOnEntryChange\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"contentstack-live-preview-HOC.ContentstackLivePreview\"},{\"kind\":2048,\"name\":\"getGatsbyDataFormat\",\"url\":\"classes/contentstack_live_preview_HOC.ContentstackLivePreview.html#getGatsbyDataFormat\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"contentstack-live-preview-HOC.ContentstackLivePreview\"},{\"kind\":2048,\"name\":\"getSdkVersion\",\"url\":\"classes/contentstack_live_preview_HOC.ContentstackLivePreview.html#getSdkVersion\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"contentstack-live-preview-HOC.ContentstackLivePreview\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/contentstack_live_preview_HOC.ContentstackLivePreview.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"contentstack-live-preview-HOC.ContentstackLivePreview\"},{\"kind\":8388608,\"name\":\"default\",\"url\":\"modules/contentstack_live_preview_HOC.html#default\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"contentstack-live-preview-HOC\"},{\"kind\":2,\"name\":\"index\",\"url\":\"modules/index.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":32,\"name\":\"ContentstackLivePreview\",\"url\":\"variables/index.ContentstackLivePreview.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"default\",\"url\":\"modules/index.html#default\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"kind\":2,\"name\":\"live-preview\",\"url\":\"modules/live_preview.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"default\",\"url\":\"classes/live_preview.default.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"live-preview\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/live_preview.default.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"live-preview.default\"},{\"kind\":1024,\"name\":\"tooltip\",\"url\":\"classes/live_preview.default.html#tooltip\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"live-preview.default\"},{\"kind\":1024,\"name\":\"currentElementBesideTooltip\",\"url\":\"classes/live_preview.default.html#currentElementBesideTooltip\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"live-preview.default\"},{\"kind\":1024,\"name\":\"tooltipChild\",\"url\":\"classes/live_preview.default.html#tooltipChild\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"live-preview.default\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/live_preview.default.html#tooltipChild.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"live-preview.default.tooltipChild\"},{\"kind\":1024,\"name\":\"singular\",\"url\":\"classes/live_preview.default.html#tooltipChild.__type.singular\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"live-preview.default.tooltipChild.__type\"},{\"kind\":1024,\"name\":\"multiple\",\"url\":\"classes/live_preview.default.html#tooltipChild.__type.multiple\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"live-preview.default.tooltipChild.__type\"},{\"kind\":1024,\"name\":\"tooltipCurrentChild\",\"url\":\"classes/live_preview.default.html#tooltipCurrentChild\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"live-preview.default\"},{\"kind\":2048,\"name\":\"addEditStyleOnHover\",\"url\":\"classes/live_preview.default.html#addEditStyleOnHover\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"live-preview.default\"},{\"kind\":2048,\"name\":\"generateRedirectUrl\",\"url\":\"classes/live_preview.default.html#generateRedirectUrl\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"live-preview.default\"},{\"kind\":2048,\"name\":\"scrollHandler\",\"url\":\"classes/live_preview.default.html#scrollHandler\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"live-preview.default\"},{\"kind\":2048,\"name\":\"linkClickHandler\",\"url\":\"classes/live_preview.default.html#linkClickHandler\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"live-preview.default\"},{\"kind\":2048,\"name\":\"handleUserChange\",\"url\":\"classes/live_preview.default.html#handleUserChange\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"live-preview.default\"},{\"kind\":2048,\"name\":\"setOnChangeCallback\",\"url\":\"classes/live_preview.default.html#setOnChangeCallback\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"live-preview.default\"},{\"kind\":262144,\"name\":\"hash\",\"url\":\"classes/live_preview.default.html#hash\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"live-preview.default\"},{\"kind\":2048,\"name\":\"setConfigFromParams\",\"url\":\"classes/live_preview.default.html#setConfigFromParams\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"live-preview.default\"},{\"kind\":2048,\"name\":\"resolveIncomingMessage\",\"url\":\"classes/live_preview.default.html#resolveIncomingMessage\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"live-preview.default\"},{\"kind\":2048,\"name\":\"createCslpTooltip\",\"url\":\"classes/live_preview.default.html#createCslpTooltip\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"live-preview.default\"},{\"kind\":2048,\"name\":\"requestDataSync\",\"url\":\"classes/live_preview.default.html#requestDataSync\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"live-preview.default\"},{\"kind\":2048,\"name\":\"updateTooltipPosition\",\"url\":\"classes/live_preview.default.html#updateTooltipPosition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"live-preview.default\"},{\"kind\":2048,\"name\":\"removeDataCslp\",\"url\":\"classes/live_preview.default.html#removeDataCslp\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"live-preview.default\"},{\"kind\":2,\"name\":\"liveEditor\",\"url\":\"modules/liveEditor.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"VisualEditor\",\"url\":\"classes/liveEditor.VisualEditor.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"liveEditor\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/liveEditor.VisualEditor.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"liveEditor.VisualEditor\"},{\"kind\":1024,\"name\":\"customCursor\",\"url\":\"classes/liveEditor.VisualEditor.html#customCursor\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"liveEditor.VisualEditor\"},{\"kind\":1024,\"name\":\"overlayWrapper\",\"url\":\"classes/liveEditor.VisualEditor.html#overlayWrapper\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"liveEditor.VisualEditor\"},{\"kind\":1024,\"name\":\"previousSelectedEditableDOM\",\"url\":\"classes/liveEditor.VisualEditor.html#previousSelectedEditableDOM\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"liveEditor.VisualEditor\"},{\"kind\":1024,\"name\":\"visualEditorWrapper\",\"url\":\"classes/liveEditor.VisualEditor.html#visualEditorWrapper\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"liveEditor.VisualEditor\"},{\"kind\":1024,\"name\":\"previousHoveredTargetDOM\",\"url\":\"classes/liveEditor.VisualEditor.html#previousHoveredTargetDOM\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"liveEditor.VisualEditor\"},{\"kind\":1024,\"name\":\"resizeObserver\",\"url\":\"classes/liveEditor.VisualEditor.html#resizeObserver\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"liveEditor.VisualEditor\"},{\"kind\":2048,\"name\":\"addOverlay\",\"url\":\"classes/liveEditor.VisualEditor.html#addOverlay\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"liveEditor.VisualEditor\"},{\"kind\":2048,\"name\":\"hideOverlay\",\"url\":\"classes/liveEditor.VisualEditor.html#hideOverlay\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"liveEditor.VisualEditor\"},{\"kind\":2048,\"name\":\"handleMouseDownForVisualEditing\",\"url\":\"classes/liveEditor.VisualEditor.html#handleMouseDownForVisualEditing\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"liveEditor.VisualEditor\"},{\"kind\":1024,\"name\":\"handleMouseHover\",\"url\":\"classes/liveEditor.VisualEditor.html#handleMouseHover\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"liveEditor.VisualEditor\"},{\"kind\":2048,\"name\":\"appendVisualEditorDOM\",\"url\":\"classes/liveEditor.VisualEditor.html#appendVisualEditorDOM\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"liveEditor.VisualEditor\"},{\"kind\":2048,\"name\":\"hideCustomCursor\",\"url\":\"classes/liveEditor.VisualEditor.html#hideCustomCursor\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"liveEditor.VisualEditor\"},{\"kind\":2048,\"name\":\"removeVisualEditorDOM\",\"url\":\"classes/liveEditor.VisualEditor.html#removeVisualEditorDOM\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"liveEditor.VisualEditor\"},{\"kind\":2048,\"name\":\"destroy\",\"url\":\"classes/liveEditor.VisualEditor.html#destroy\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"liveEditor.VisualEditor\"},{\"kind\":2,\"name\":\"liveEditor/utils/assetButton\",\"url\":\"modules/liveEditor_utils_assetButton.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"removeReplaceAssetButton\",\"url\":\"functions/liveEditor_utils_assetButton.removeReplaceAssetButton.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/assetButton\"},{\"kind\":64,\"name\":\"generateReplaceAssetButton\",\"url\":\"functions/liveEditor_utils_assetButton.generateReplaceAssetButton.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/assetButton\"},{\"kind\":2,\"name\":\"liveEditor/utils/constants\",\"url\":\"modules/liveEditor_utils_constants.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":32,\"name\":\"numericInputRegex\",\"url\":\"variables/liveEditor_utils_constants.numericInputRegex.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/constants\"},{\"kind\":32,\"name\":\"LIVE_EDITOR_FIELD_TYPE_ATTRIBUTE_KEY\",\"url\":\"variables/liveEditor_utils_constants.LIVE_EDITOR_FIELD_TYPE_ATTRIBUTE_KEY.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/constants\"},{\"kind\":32,\"name\":\"LIVE_EDITOR_CHANNEL_ID\",\"url\":\"variables/liveEditor_utils_constants.LIVE_EDITOR_CHANNEL_ID.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/constants\"},{\"kind\":32,\"name\":\"LIVE_PREVIEW_OUTLINE_WIDTH_IN_PX\",\"url\":\"variables/liveEditor_utils_constants.LIVE_PREVIEW_OUTLINE_WIDTH_IN_PX.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/constants\"},{\"kind\":2,\"name\":\"liveEditor/utils/fieldSchemaMap\",\"url\":\"modules/liveEditor_utils_fieldSchemaMap.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"FieldSchemaMap\",\"url\":\"classes/liveEditor_utils_fieldSchemaMap.FieldSchemaMap.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/fieldSchemaMap\"},{\"kind\":1024,\"name\":\"fieldSchema\",\"url\":\"classes/liveEditor_utils_fieldSchemaMap.FieldSchemaMap.html#fieldSchema\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"liveEditor/utils/fieldSchemaMap.FieldSchemaMap\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/liveEditor_utils_fieldSchemaMap.FieldSchemaMap.html#fieldSchema.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"liveEditor/utils/fieldSchemaMap.FieldSchemaMap.fieldSchema\"},{\"kind\":2048,\"name\":\"getFieldSchema\",\"url\":\"classes/liveEditor_utils_fieldSchemaMap.FieldSchemaMap.html#getFieldSchema\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"liveEditor/utils/fieldSchemaMap.FieldSchemaMap\"},{\"kind\":2048,\"name\":\"hasFieldSchema\",\"url\":\"classes/liveEditor_utils_fieldSchemaMap.FieldSchemaMap.html#hasFieldSchema\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"liveEditor/utils/fieldSchemaMap.FieldSchemaMap\"},{\"kind\":2048,\"name\":\"areFieldSchemaEqual\",\"url\":\"classes/liveEditor_utils_fieldSchemaMap.FieldSchemaMap.html#areFieldSchemaEqual\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"liveEditor/utils/fieldSchemaMap.FieldSchemaMap\"},{\"kind\":2048,\"name\":\"setFieldSchema\",\"url\":\"classes/liveEditor_utils_fieldSchemaMap.FieldSchemaMap.html#setFieldSchema\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"liveEditor/utils/fieldSchemaMap.FieldSchemaMap\"},{\"kind\":2048,\"name\":\"clear\",\"url\":\"classes/liveEditor_utils_fieldSchemaMap.FieldSchemaMap.html#clear\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"liveEditor/utils/fieldSchemaMap.FieldSchemaMap\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/liveEditor_utils_fieldSchemaMap.FieldSchemaMap.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"liveEditor/utils/fieldSchemaMap.FieldSchemaMap\"},{\"kind\":2,\"name\":\"liveEditor/utils/focusOverlayWrapper\",\"url\":\"modules/liveEditor_utils_focusOverlayWrapper.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"addFocusOverlay\",\"url\":\"functions/liveEditor_utils_focusOverlayWrapper.addFocusOverlay.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/focusOverlayWrapper\"},{\"kind\":64,\"name\":\"hideFocusOverlay\",\"url\":\"functions/liveEditor_utils_focusOverlayWrapper.hideFocusOverlay.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/focusOverlayWrapper\"},{\"kind\":2,\"name\":\"liveEditor/utils/generateFieldSchemaMap\",\"url\":\"modules/liveEditor_utils_generateFieldSchemaMap.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"generateFieldSchemaMap\",\"url\":\"functions/liveEditor_utils_generateFieldSchemaMap.generateFieldSchemaMap.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/generateFieldSchemaMap\"},{\"kind\":2,\"name\":\"liveEditor/utils/generateStartEditingButton\",\"url\":\"modules/liveEditor_utils_generateStartEditingButton.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"generateStartEditingButton\",\"url\":\"functions/liveEditor_utils_generateStartEditingButton.generateStartEditingButton.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/generateStartEditingButton\"},{\"kind\":2,\"name\":\"liveEditor/utils/generateVisualEditorDom\",\"url\":\"modules/liveEditor_utils_generateVisualEditorDom.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"generateVisualEditorWrapper\",\"url\":\"functions/liveEditor_utils_generateVisualEditorDom.generateVisualEditorWrapper.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/generateVisualEditorDom\"},{\"kind\":64,\"name\":\"generateVisualEditorCursor\",\"url\":\"functions/liveEditor_utils_generateVisualEditorDom.generateVisualEditorCursor.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/generateVisualEditorDom\"},{\"kind\":64,\"name\":\"generateVisualEditorOverlay\",\"url\":\"functions/liveEditor_utils_generateVisualEditorDom.generateVisualEditorOverlay.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/generateVisualEditorDom\"},{\"kind\":2,\"name\":\"liveEditor/utils/getCsDataOfElement\",\"url\":\"modules/liveEditor_utils_getCsDataOfElement.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"getCsDataOfElement\",\"url\":\"functions/liveEditor_utils_getCsDataOfElement.getCsDataOfElement.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/getCsDataOfElement\"},{\"kind\":2,\"name\":\"liveEditor/utils/getFieldType\",\"url\":\"modules/liveEditor_utils_getFieldType.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"getFieldType\",\"url\":\"functions/liveEditor_utils_getFieldType.getFieldType.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/getFieldType\"},{\"kind\":2,\"name\":\"liveEditor/utils/handleFieldMouseDown\",\"url\":\"modules/liveEditor_utils_handleFieldMouseDown.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"handleFieldInput\",\"url\":\"functions/liveEditor_utils_handleFieldMouseDown.handleFieldInput.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/handleFieldMouseDown\"},{\"kind\":64,\"name\":\"handleFieldKeyDown\",\"url\":\"functions/liveEditor_utils_handleFieldMouseDown.handleFieldKeyDown.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/handleFieldMouseDown\"},{\"kind\":2,\"name\":\"liveEditor/utils/handleIndividualFields\",\"url\":\"modules/liveEditor_utils_handleIndividualFields.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"handleIndividualFields\",\"url\":\"functions/liveEditor_utils_handleIndividualFields.handleIndividualFields.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/handleIndividualFields\"},{\"kind\":64,\"name\":\"cleanIndividualFieldResidual\",\"url\":\"functions/liveEditor_utils_handleIndividualFields.cleanIndividualFieldResidual.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/handleIndividualFields\"},{\"kind\":2,\"name\":\"liveEditor/utils/instanceButtons\",\"url\":\"modules/liveEditor_utils_instanceButtons.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"generateAddInstanceButton\",\"url\":\"functions/liveEditor_utils_instanceButtons.generateAddInstanceButton.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/instanceButtons\"},{\"kind\":64,\"name\":\"getAddInstanceButtons\",\"url\":\"functions/liveEditor_utils_instanceButtons.getAddInstanceButtons.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/instanceButtons\"},{\"kind\":2,\"name\":\"liveEditor/utils/liveEditorPostMessage\",\"url\":\"modules/liveEditor_utils_liveEditorPostMessage.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":32,\"name\":\"default\",\"url\":\"variables/liveEditor_utils_liveEditorPostMessage.default.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/liveEditorPostMessage\"},{\"kind\":2,\"name\":\"liveEditor/utils/multipleElementAddButton\",\"url\":\"modules/liveEditor_utils_multipleElementAddButton.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"getChildrenDirection\",\"url\":\"functions/liveEditor_utils_multipleElementAddButton.getChildrenDirection.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/multipleElementAddButton\"},{\"kind\":64,\"name\":\"handleAddButtonsForMultiple\",\"url\":\"functions/liveEditor_utils_multipleElementAddButton.handleAddButtonsForMultiple.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/multipleElementAddButton\"},{\"kind\":64,\"name\":\"removeAddInstanceButtons\",\"url\":\"functions/liveEditor_utils_multipleElementAddButton.removeAddInstanceButtons.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/multipleElementAddButton\"},{\"kind\":2,\"name\":\"liveEditor/utils/types/index.types\",\"url\":\"modules/liveEditor_utils_types_index_types.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"ISchemaIndividualFieldMap\",\"url\":\"types/liveEditor_utils_types_index_types.ISchemaIndividualFieldMap.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/types/index.types\"},{\"kind\":4194304,\"name\":\"ISchemaFieldMap\",\"url\":\"types/liveEditor_utils_types_index_types.ISchemaFieldMap.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/types/index.types\"},{\"kind\":256,\"name\":\"ITraverseSchemaVisitor\",\"url\":\"interfaces/liveEditor_utils_types_index_types.ITraverseSchemaVisitor.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/types/index.types\"},{\"kind\":1024,\"name\":\"should_visit\",\"url\":\"interfaces/liveEditor_utils_types_index_types.ITraverseSchemaVisitor.html#should_visit\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"liveEditor/utils/types/index.types.ITraverseSchemaVisitor\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/liveEditor_utils_types_index_types.ITraverseSchemaVisitor.html#should_visit.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"liveEditor/utils/types/index.types.ITraverseSchemaVisitor.should_visit\"},{\"kind\":1024,\"name\":\"visit\",\"url\":\"interfaces/liveEditor_utils_types_index_types.ITraverseSchemaVisitor.html#visit\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"liveEditor/utils/types/index.types.ITraverseSchemaVisitor\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/liveEditor_utils_types_index_types.ITraverseSchemaVisitor.html#visit.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"liveEditor/utils/types/index.types.ITraverseSchemaVisitor.visit\"},{\"kind\":1024,\"name\":\"fieldMap\",\"url\":\"interfaces/liveEditor_utils_types_index_types.ITraverseSchemaVisitor.html#fieldMap\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"liveEditor/utils/types/index.types.ITraverseSchemaVisitor\"},{\"kind\":8,\"name\":\"FieldDataType\",\"url\":\"enums/liveEditor_utils_types_index_types.FieldDataType.html\",\"classes\":\"tsd-kind-enum tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/types/index.types\"},{\"kind\":16,\"name\":\"CUSTOM_FIELD\",\"url\":\"enums/liveEditor_utils_types_index_types.FieldDataType.html#CUSTOM_FIELD\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"liveEditor/utils/types/index.types.FieldDataType\"},{\"kind\":16,\"name\":\"MULTILINE\",\"url\":\"enums/liveEditor_utils_types_index_types.FieldDataType.html#MULTILINE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"liveEditor/utils/types/index.types.FieldDataType\"},{\"kind\":16,\"name\":\"HTML_RTE\",\"url\":\"enums/liveEditor_utils_types_index_types.FieldDataType.html#HTML_RTE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"liveEditor/utils/types/index.types.FieldDataType\"},{\"kind\":16,\"name\":\"MARKDOWN_RTE\",\"url\":\"enums/liveEditor_utils_types_index_types.FieldDataType.html#MARKDOWN_RTE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"liveEditor/utils/types/index.types.FieldDataType\"},{\"kind\":16,\"name\":\"SELECT\",\"url\":\"enums/liveEditor_utils_types_index_types.FieldDataType.html#SELECT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"liveEditor/utils/types/index.types.FieldDataType\"},{\"kind\":16,\"name\":\"URL\",\"url\":\"enums/liveEditor_utils_types_index_types.FieldDataType.html#URL\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"liveEditor/utils/types/index.types.FieldDataType\"},{\"kind\":16,\"name\":\"SINGLELINE\",\"url\":\"enums/liveEditor_utils_types_index_types.FieldDataType.html#SINGLELINE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"liveEditor/utils/types/index.types.FieldDataType\"},{\"kind\":16,\"name\":\"JSON_RTE\",\"url\":\"enums/liveEditor_utils_types_index_types.FieldDataType.html#JSON_RTE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"liveEditor/utils/types/index.types.FieldDataType\"},{\"kind\":16,\"name\":\"MODULAR_BLOCK\",\"url\":\"enums/liveEditor_utils_types_index_types.FieldDataType.html#MODULAR_BLOCK\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"liveEditor/utils/types/index.types.FieldDataType\"},{\"kind\":16,\"name\":\"LINK\",\"url\":\"enums/liveEditor_utils_types_index_types.FieldDataType.html#LINK\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"liveEditor/utils/types/index.types.FieldDataType\"},{\"kind\":16,\"name\":\"ISODATE\",\"url\":\"enums/liveEditor_utils_types_index_types.FieldDataType.html#ISODATE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"liveEditor/utils/types/index.types.FieldDataType\"},{\"kind\":16,\"name\":\"BOOLEAN\",\"url\":\"enums/liveEditor_utils_types_index_types.FieldDataType.html#BOOLEAN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"liveEditor/utils/types/index.types.FieldDataType\"},{\"kind\":16,\"name\":\"BLOCK\",\"url\":\"enums/liveEditor_utils_types_index_types.FieldDataType.html#BLOCK\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"liveEditor/utils/types/index.types.FieldDataType\"},{\"kind\":16,\"name\":\"NUMBER\",\"url\":\"enums/liveEditor_utils_types_index_types.FieldDataType.html#NUMBER\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"liveEditor/utils/types/index.types.FieldDataType\"},{\"kind\":16,\"name\":\"REFERENCE\",\"url\":\"enums/liveEditor_utils_types_index_types.FieldDataType.html#REFERENCE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"liveEditor/utils/types/index.types.FieldDataType\"},{\"kind\":16,\"name\":\"GROUP\",\"url\":\"enums/liveEditor_utils_types_index_types.FieldDataType.html#GROUP\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"liveEditor/utils/types/index.types.FieldDataType\"},{\"kind\":16,\"name\":\"EXPERIENCE_CONTAINER\",\"url\":\"enums/liveEditor_utils_types_index_types.FieldDataType.html#EXPERIENCE_CONTAINER\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"liveEditor/utils/types/index.types.FieldDataType\"},{\"kind\":16,\"name\":\"FILE\",\"url\":\"enums/liveEditor_utils_types_index_types.FieldDataType.html#FILE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"liveEditor/utils/types/index.types.FieldDataType\"},{\"kind\":16,\"name\":\"GLOBAL_FIELD\",\"url\":\"enums/liveEditor_utils_types_index_types.FieldDataType.html#GLOBAL_FIELD\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"liveEditor/utils/types/index.types.FieldDataType\"},{\"kind\":2,\"name\":\"liveEditor/utils/types/postMessage.types\",\"url\":\"modules/liveEditor_utils_types_postMessage_types.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":8,\"name\":\"LiveEditorPostMessageEvents\",\"url\":\"enums/liveEditor_utils_types_postMessage_types.LiveEditorPostMessageEvents.html\",\"classes\":\"tsd-kind-enum tsd-parent-kind-module\",\"parent\":\"liveEditor/utils/types/postMessage.types\"},{\"kind\":16,\"name\":\"ADD_INSTANCE\",\"url\":\"enums/liveEditor_utils_types_postMessage_types.LiveEditorPostMessageEvents.html#ADD_INSTANCE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"liveEditor/utils/types/postMessage.types.LiveEditorPostMessageEvents\"},{\"kind\":16,\"name\":\"UPDATE_FIELD\",\"url\":\"enums/liveEditor_utils_types_postMessage_types.LiveEditorPostMessageEvents.html#UPDATE_FIELD\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"liveEditor/utils/types/postMessage.types.LiveEditorPostMessageEvents\"},{\"kind\":16,\"name\":\"OPEN_ASSET_MODAL\",\"url\":\"enums/liveEditor_utils_types_postMessage_types.LiveEditorPostMessageEvents.html#OPEN_ASSET_MODAL\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"liveEditor/utils/types/postMessage.types.LiveEditorPostMessageEvents\"},{\"kind\":16,\"name\":\"OPEN_QUICK_FORM\",\"url\":\"enums/liveEditor_utils_types_postMessage_types.LiveEditorPostMessageEvents.html#OPEN_QUICK_FORM\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"liveEditor/utils/types/postMessage.types.LiveEditorPostMessageEvents\"},{\"kind\":16,\"name\":\"GET_FIELD_SCHEMA\",\"url\":\"enums/liveEditor_utils_types_postMessage_types.LiveEditorPostMessageEvents.html#GET_FIELD_SCHEMA\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"liveEditor/utils/types/postMessage.types.LiveEditorPostMessageEvents\"},{\"kind\":16,\"name\":\"FOCUS_FIELD\",\"url\":\"enums/liveEditor_utils_types_postMessage_types.LiveEditorPostMessageEvents.html#FOCUS_FIELD\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"liveEditor/utils/types/postMessage.types.LiveEditorPostMessageEvents\"},{\"kind\":2,\"name\":\"types/contentTypeSchema.types\",\"url\":\"modules/types_contentTypeSchema_types.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":256,\"name\":\"ITitleContentTypeSchema\",\"url\":\"interfaces/types_contentTypeSchema_types.ITitleContentTypeSchema.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/contentTypeSchema.types\"},{\"kind\":1024,\"name\":\"data_type\",\"url\":\"interfaces/types_contentTypeSchema_types.ITitleContentTypeSchema.html#data_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.ITitleContentTypeSchema\"},{\"kind\":1024,\"name\":\"field_metadata\",\"url\":\"interfaces/types_contentTypeSchema_types.ITitleContentTypeSchema.html#field_metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.ITitleContentTypeSchema\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_contentTypeSchema_types.ITitleContentTypeSchema.html#field_metadata.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/contentTypeSchema.types.ITitleContentTypeSchema.field_metadata\"},{\"kind\":1024,\"name\":\"_default\",\"url\":\"interfaces/types_contentTypeSchema_types.ITitleContentTypeSchema.html#field_metadata.__type._default\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.ITitleContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/types_contentTypeSchema_types.ITitleContentTypeSchema.html#field_metadata.__type.version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.ITitleContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"mandatory\",\"url\":\"interfaces/types_contentTypeSchema_types.ITitleContentTypeSchema.html#mandatory\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.ITitleContentTypeSchema\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"interfaces/types_contentTypeSchema_types.ITitleContentTypeSchema.html#unique\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.ITitleContentTypeSchema\"},{\"kind\":1024,\"name\":\"uid\",\"url\":\"interfaces/types_contentTypeSchema_types.ITitleContentTypeSchema.html#uid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.ITitleContentTypeSchema\"},{\"kind\":1024,\"name\":\"display_name\",\"url\":\"interfaces/types_contentTypeSchema_types.ITitleContentTypeSchema.html#display_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.ITitleContentTypeSchema\"},{\"kind\":1024,\"name\":\"multiple\",\"url\":\"interfaces/types_contentTypeSchema_types.ITitleContentTypeSchema.html#multiple\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.ITitleContentTypeSchema\"},{\"kind\":1024,\"name\":\"non_localizable\",\"url\":\"interfaces/types_contentTypeSchema_types.ITitleContentTypeSchema.html#non_localizable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.ITitleContentTypeSchema\"},{\"kind\":256,\"name\":\"ISingleLineTextBoxContentTypeSchema\",\"url\":\"interfaces/types_contentTypeSchema_types.ISingleLineTextBoxContentTypeSchema.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/contentTypeSchema.types\"},{\"kind\":1024,\"name\":\"data_type\",\"url\":\"interfaces/types_contentTypeSchema_types.ISingleLineTextBoxContentTypeSchema.html#data_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.ISingleLineTextBoxContentTypeSchema\"},{\"kind\":1024,\"name\":\"field_metadata\",\"url\":\"interfaces/types_contentTypeSchema_types.ISingleLineTextBoxContentTypeSchema.html#field_metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.ISingleLineTextBoxContentTypeSchema\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_contentTypeSchema_types.ISingleLineTextBoxContentTypeSchema.html#field_metadata.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/contentTypeSchema.types.ISingleLineTextBoxContentTypeSchema.field_metadata\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/types_contentTypeSchema_types.ISingleLineTextBoxContentTypeSchema.html#field_metadata.__type-1.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.ISingleLineTextBoxContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"default_value\",\"url\":\"interfaces/types_contentTypeSchema_types.ISingleLineTextBoxContentTypeSchema.html#field_metadata.__type-1.default_value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.ISingleLineTextBoxContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/types_contentTypeSchema_types.ISingleLineTextBoxContentTypeSchema.html#field_metadata.__type-1.version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.ISingleLineTextBoxContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"format\",\"url\":\"interfaces/types_contentTypeSchema_types.ISingleLineTextBoxContentTypeSchema.html#format-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.ISingleLineTextBoxContentTypeSchema\"},{\"kind\":1024,\"name\":\"error_messages\",\"url\":\"interfaces/types_contentTypeSchema_types.ISingleLineTextBoxContentTypeSchema.html#error_messages\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.ISingleLineTextBoxContentTypeSchema\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_contentTypeSchema_types.ISingleLineTextBoxContentTypeSchema.html#error_messages.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/contentTypeSchema.types.ISingleLineTextBoxContentTypeSchema.error_messages\"},{\"kind\":1024,\"name\":\"format\",\"url\":\"interfaces/types_contentTypeSchema_types.ISingleLineTextBoxContentTypeSchema.html#error_messages.__type.format\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.ISingleLineTextBoxContentTypeSchema.error_messages.__type\"},{\"kind\":1024,\"name\":\"uid\",\"url\":\"interfaces/types_contentTypeSchema_types.ISingleLineTextBoxContentTypeSchema.html#uid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.ISingleLineTextBoxContentTypeSchema\"},{\"kind\":1024,\"name\":\"display_name\",\"url\":\"interfaces/types_contentTypeSchema_types.ISingleLineTextBoxContentTypeSchema.html#display_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.ISingleLineTextBoxContentTypeSchema\"},{\"kind\":1024,\"name\":\"mandatory\",\"url\":\"interfaces/types_contentTypeSchema_types.ISingleLineTextBoxContentTypeSchema.html#mandatory\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.ISingleLineTextBoxContentTypeSchema\"},{\"kind\":1024,\"name\":\"multiple\",\"url\":\"interfaces/types_contentTypeSchema_types.ISingleLineTextBoxContentTypeSchema.html#multiple\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.ISingleLineTextBoxContentTypeSchema\"},{\"kind\":1024,\"name\":\"non_localizable\",\"url\":\"interfaces/types_contentTypeSchema_types.ISingleLineTextBoxContentTypeSchema.html#non_localizable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.ISingleLineTextBoxContentTypeSchema\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"interfaces/types_contentTypeSchema_types.ISingleLineTextBoxContentTypeSchema.html#unique\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.ISingleLineTextBoxContentTypeSchema\"},{\"kind\":256,\"name\":\"IMultiLineTextBoxContentTypeSchema\",\"url\":\"interfaces/types_contentTypeSchema_types.IMultiLineTextBoxContentTypeSchema.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/contentTypeSchema.types\"},{\"kind\":1024,\"name\":\"data_type\",\"url\":\"interfaces/types_contentTypeSchema_types.IMultiLineTextBoxContentTypeSchema.html#data_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IMultiLineTextBoxContentTypeSchema\"},{\"kind\":1024,\"name\":\"field_metadata\",\"url\":\"interfaces/types_contentTypeSchema_types.IMultiLineTextBoxContentTypeSchema.html#field_metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IMultiLineTextBoxContentTypeSchema\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_contentTypeSchema_types.IMultiLineTextBoxContentTypeSchema.html#field_metadata.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/contentTypeSchema.types.IMultiLineTextBoxContentTypeSchema.field_metadata\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/types_contentTypeSchema_types.IMultiLineTextBoxContentTypeSchema.html#field_metadata.__type-1.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IMultiLineTextBoxContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"default_value\",\"url\":\"interfaces/types_contentTypeSchema_types.IMultiLineTextBoxContentTypeSchema.html#field_metadata.__type-1.default_value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IMultiLineTextBoxContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"multiline\",\"url\":\"interfaces/types_contentTypeSchema_types.IMultiLineTextBoxContentTypeSchema.html#field_metadata.__type-1.multiline\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IMultiLineTextBoxContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/types_contentTypeSchema_types.IMultiLineTextBoxContentTypeSchema.html#field_metadata.__type-1.version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IMultiLineTextBoxContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"format\",\"url\":\"interfaces/types_contentTypeSchema_types.IMultiLineTextBoxContentTypeSchema.html#format-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IMultiLineTextBoxContentTypeSchema\"},{\"kind\":1024,\"name\":\"error_messages\",\"url\":\"interfaces/types_contentTypeSchema_types.IMultiLineTextBoxContentTypeSchema.html#error_messages\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IMultiLineTextBoxContentTypeSchema\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_contentTypeSchema_types.IMultiLineTextBoxContentTypeSchema.html#error_messages.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/contentTypeSchema.types.IMultiLineTextBoxContentTypeSchema.error_messages\"},{\"kind\":1024,\"name\":\"format\",\"url\":\"interfaces/types_contentTypeSchema_types.IMultiLineTextBoxContentTypeSchema.html#error_messages.__type.format\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IMultiLineTextBoxContentTypeSchema.error_messages.__type\"},{\"kind\":1024,\"name\":\"uid\",\"url\":\"interfaces/types_contentTypeSchema_types.IMultiLineTextBoxContentTypeSchema.html#uid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IMultiLineTextBoxContentTypeSchema\"},{\"kind\":1024,\"name\":\"display_name\",\"url\":\"interfaces/types_contentTypeSchema_types.IMultiLineTextBoxContentTypeSchema.html#display_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IMultiLineTextBoxContentTypeSchema\"},{\"kind\":1024,\"name\":\"mandatory\",\"url\":\"interfaces/types_contentTypeSchema_types.IMultiLineTextBoxContentTypeSchema.html#mandatory\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IMultiLineTextBoxContentTypeSchema\"},{\"kind\":1024,\"name\":\"multiple\",\"url\":\"interfaces/types_contentTypeSchema_types.IMultiLineTextBoxContentTypeSchema.html#multiple\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IMultiLineTextBoxContentTypeSchema\"},{\"kind\":1024,\"name\":\"non_localizable\",\"url\":\"interfaces/types_contentTypeSchema_types.IMultiLineTextBoxContentTypeSchema.html#non_localizable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IMultiLineTextBoxContentTypeSchema\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"interfaces/types_contentTypeSchema_types.IMultiLineTextBoxContentTypeSchema.html#unique\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IMultiLineTextBoxContentTypeSchema\"},{\"kind\":256,\"name\":\"IHTMLRTEContentTypeSchema\",\"url\":\"interfaces/types_contentTypeSchema_types.IHTMLRTEContentTypeSchema.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/contentTypeSchema.types\"},{\"kind\":1024,\"name\":\"data_type\",\"url\":\"interfaces/types_contentTypeSchema_types.IHTMLRTEContentTypeSchema.html#data_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IHTMLRTEContentTypeSchema\"},{\"kind\":1024,\"name\":\"field_metadata\",\"url\":\"interfaces/types_contentTypeSchema_types.IHTMLRTEContentTypeSchema.html#field_metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IHTMLRTEContentTypeSchema\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_contentTypeSchema_types.IHTMLRTEContentTypeSchema.html#field_metadata.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/contentTypeSchema.types.IHTMLRTEContentTypeSchema.field_metadata\"},{\"kind\":1024,\"name\":\"allow_rich_text\",\"url\":\"interfaces/types_contentTypeSchema_types.IHTMLRTEContentTypeSchema.html#field_metadata.__type.allow_rich_text\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IHTMLRTEContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/types_contentTypeSchema_types.IHTMLRTEContentTypeSchema.html#field_metadata.__type.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IHTMLRTEContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"multiline\",\"url\":\"interfaces/types_contentTypeSchema_types.IHTMLRTEContentTypeSchema.html#field_metadata.__type.multiline\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IHTMLRTEContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"rich_text_type\",\"url\":\"interfaces/types_contentTypeSchema_types.IHTMLRTEContentTypeSchema.html#field_metadata.__type.rich_text_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IHTMLRTEContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/types_contentTypeSchema_types.IHTMLRTEContentTypeSchema.html#field_metadata.__type.options\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IHTMLRTEContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/types_contentTypeSchema_types.IHTMLRTEContentTypeSchema.html#field_metadata.__type.version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IHTMLRTEContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"uid\",\"url\":\"interfaces/types_contentTypeSchema_types.IHTMLRTEContentTypeSchema.html#uid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IHTMLRTEContentTypeSchema\"},{\"kind\":1024,\"name\":\"display_name\",\"url\":\"interfaces/types_contentTypeSchema_types.IHTMLRTEContentTypeSchema.html#display_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IHTMLRTEContentTypeSchema\"},{\"kind\":1024,\"name\":\"mandatory\",\"url\":\"interfaces/types_contentTypeSchema_types.IHTMLRTEContentTypeSchema.html#mandatory\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IHTMLRTEContentTypeSchema\"},{\"kind\":1024,\"name\":\"multiple\",\"url\":\"interfaces/types_contentTypeSchema_types.IHTMLRTEContentTypeSchema.html#multiple\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IHTMLRTEContentTypeSchema\"},{\"kind\":1024,\"name\":\"non_localizable\",\"url\":\"interfaces/types_contentTypeSchema_types.IHTMLRTEContentTypeSchema.html#non_localizable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IHTMLRTEContentTypeSchema\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"interfaces/types_contentTypeSchema_types.IHTMLRTEContentTypeSchema.html#unique\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IHTMLRTEContentTypeSchema\"},{\"kind\":256,\"name\":\"IJSONRTEContentTypeSchema\",\"url\":\"interfaces/types_contentTypeSchema_types.IJSONRTEContentTypeSchema.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/contentTypeSchema.types\"},{\"kind\":1024,\"name\":\"data_type\",\"url\":\"interfaces/types_contentTypeSchema_types.IJSONRTEContentTypeSchema.html#data_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IJSONRTEContentTypeSchema\"},{\"kind\":1024,\"name\":\"field_metadata\",\"url\":\"interfaces/types_contentTypeSchema_types.IJSONRTEContentTypeSchema.html#field_metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IJSONRTEContentTypeSchema\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_contentTypeSchema_types.IJSONRTEContentTypeSchema.html#field_metadata.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/contentTypeSchema.types.IJSONRTEContentTypeSchema.field_metadata\"},{\"kind\":1024,\"name\":\"allow_json_rte\",\"url\":\"interfaces/types_contentTypeSchema_types.IJSONRTEContentTypeSchema.html#field_metadata.__type-1.allow_json_rte\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IJSONRTEContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"embed_entry\",\"url\":\"interfaces/types_contentTypeSchema_types.IJSONRTEContentTypeSchema.html#field_metadata.__type-1.embed_entry\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IJSONRTEContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/types_contentTypeSchema_types.IJSONRTEContentTypeSchema.html#field_metadata.__type-1.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IJSONRTEContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"default_value\",\"url\":\"interfaces/types_contentTypeSchema_types.IJSONRTEContentTypeSchema.html#field_metadata.__type-1.default_value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IJSONRTEContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"multiline\",\"url\":\"interfaces/types_contentTypeSchema_types.IJSONRTEContentTypeSchema.html#field_metadata.__type-1.multiline\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IJSONRTEContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"rich_text_type\",\"url\":\"interfaces/types_contentTypeSchema_types.IJSONRTEContentTypeSchema.html#field_metadata.__type-1.rich_text_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IJSONRTEContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/types_contentTypeSchema_types.IJSONRTEContentTypeSchema.html#field_metadata.__type-1.options\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IJSONRTEContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"format\",\"url\":\"interfaces/types_contentTypeSchema_types.IJSONRTEContentTypeSchema.html#format-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IJSONRTEContentTypeSchema\"},{\"kind\":1024,\"name\":\"error_messages\",\"url\":\"interfaces/types_contentTypeSchema_types.IJSONRTEContentTypeSchema.html#error_messages\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IJSONRTEContentTypeSchema\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_contentTypeSchema_types.IJSONRTEContentTypeSchema.html#error_messages.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/contentTypeSchema.types.IJSONRTEContentTypeSchema.error_messages\"},{\"kind\":1024,\"name\":\"format\",\"url\":\"interfaces/types_contentTypeSchema_types.IJSONRTEContentTypeSchema.html#error_messages.__type.format\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IJSONRTEContentTypeSchema.error_messages.__type\"},{\"kind\":1024,\"name\":\"reference_to\",\"url\":\"interfaces/types_contentTypeSchema_types.IJSONRTEContentTypeSchema.html#reference_to\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IJSONRTEContentTypeSchema\"},{\"kind\":1024,\"name\":\"uid\",\"url\":\"interfaces/types_contentTypeSchema_types.IJSONRTEContentTypeSchema.html#uid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IJSONRTEContentTypeSchema\"},{\"kind\":1024,\"name\":\"display_name\",\"url\":\"interfaces/types_contentTypeSchema_types.IJSONRTEContentTypeSchema.html#display_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IJSONRTEContentTypeSchema\"},{\"kind\":1024,\"name\":\"mandatory\",\"url\":\"interfaces/types_contentTypeSchema_types.IJSONRTEContentTypeSchema.html#mandatory\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IJSONRTEContentTypeSchema\"},{\"kind\":1024,\"name\":\"multiple\",\"url\":\"interfaces/types_contentTypeSchema_types.IJSONRTEContentTypeSchema.html#multiple\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IJSONRTEContentTypeSchema\"},{\"kind\":1024,\"name\":\"non_localizable\",\"url\":\"interfaces/types_contentTypeSchema_types.IJSONRTEContentTypeSchema.html#non_localizable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IJSONRTEContentTypeSchema\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"interfaces/types_contentTypeSchema_types.IJSONRTEContentTypeSchema.html#unique\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IJSONRTEContentTypeSchema\"},{\"kind\":256,\"name\":\"IURLContentTypeSchema\",\"url\":\"interfaces/types_contentTypeSchema_types.IURLContentTypeSchema.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/contentTypeSchema.types\"},{\"kind\":1024,\"name\":\"data_type\",\"url\":\"interfaces/types_contentTypeSchema_types.IURLContentTypeSchema.html#data_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IURLContentTypeSchema\"},{\"kind\":1024,\"name\":\"uid\",\"url\":\"interfaces/types_contentTypeSchema_types.IURLContentTypeSchema.html#uid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IURLContentTypeSchema\"},{\"kind\":1024,\"name\":\"field_metadata\",\"url\":\"interfaces/types_contentTypeSchema_types.IURLContentTypeSchema.html#field_metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IURLContentTypeSchema\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_contentTypeSchema_types.IURLContentTypeSchema.html#field_metadata.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/contentTypeSchema.types.IURLContentTypeSchema.field_metadata\"},{\"kind\":1024,\"name\":\"_default\",\"url\":\"interfaces/types_contentTypeSchema_types.IURLContentTypeSchema.html#field_metadata.__type._default\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IURLContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/types_contentTypeSchema_types.IURLContentTypeSchema.html#field_metadata.__type.version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IURLContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"display_name\",\"url\":\"interfaces/types_contentTypeSchema_types.IURLContentTypeSchema.html#display_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IURLContentTypeSchema\"},{\"kind\":1024,\"name\":\"mandatory\",\"url\":\"interfaces/types_contentTypeSchema_types.IURLContentTypeSchema.html#mandatory\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IURLContentTypeSchema\"},{\"kind\":1024,\"name\":\"multiple\",\"url\":\"interfaces/types_contentTypeSchema_types.IURLContentTypeSchema.html#multiple\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IURLContentTypeSchema\"},{\"kind\":1024,\"name\":\"non_localizable\",\"url\":\"interfaces/types_contentTypeSchema_types.IURLContentTypeSchema.html#non_localizable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IURLContentTypeSchema\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"interfaces/types_contentTypeSchema_types.IURLContentTypeSchema.html#unique\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IURLContentTypeSchema\"},{\"kind\":256,\"name\":\"IMarkdownContentTypeSchema\",\"url\":\"interfaces/types_contentTypeSchema_types.IMarkdownContentTypeSchema.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/contentTypeSchema.types\"},{\"kind\":1024,\"name\":\"data_type\",\"url\":\"interfaces/types_contentTypeSchema_types.IMarkdownContentTypeSchema.html#data_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IMarkdownContentTypeSchema\"},{\"kind\":1024,\"name\":\"field_metadata\",\"url\":\"interfaces/types_contentTypeSchema_types.IMarkdownContentTypeSchema.html#field_metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IMarkdownContentTypeSchema\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_contentTypeSchema_types.IMarkdownContentTypeSchema.html#field_metadata.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/contentTypeSchema.types.IMarkdownContentTypeSchema.field_metadata\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/types_contentTypeSchema_types.IMarkdownContentTypeSchema.html#field_metadata.__type.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IMarkdownContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"markdown\",\"url\":\"interfaces/types_contentTypeSchema_types.IMarkdownContentTypeSchema.html#field_metadata.__type.markdown\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IMarkdownContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/types_contentTypeSchema_types.IMarkdownContentTypeSchema.html#field_metadata.__type.version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IMarkdownContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"uid\",\"url\":\"interfaces/types_contentTypeSchema_types.IMarkdownContentTypeSchema.html#uid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IMarkdownContentTypeSchema\"},{\"kind\":1024,\"name\":\"display_name\",\"url\":\"interfaces/types_contentTypeSchema_types.IMarkdownContentTypeSchema.html#display_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IMarkdownContentTypeSchema\"},{\"kind\":1024,\"name\":\"mandatory\",\"url\":\"interfaces/types_contentTypeSchema_types.IMarkdownContentTypeSchema.html#mandatory\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IMarkdownContentTypeSchema\"},{\"kind\":1024,\"name\":\"multiple\",\"url\":\"interfaces/types_contentTypeSchema_types.IMarkdownContentTypeSchema.html#multiple\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IMarkdownContentTypeSchema\"},{\"kind\":1024,\"name\":\"non_localizable\",\"url\":\"interfaces/types_contentTypeSchema_types.IMarkdownContentTypeSchema.html#non_localizable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IMarkdownContentTypeSchema\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"interfaces/types_contentTypeSchema_types.IMarkdownContentTypeSchema.html#unique\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IMarkdownContentTypeSchema\"},{\"kind\":256,\"name\":\"ICustomFieldContentTypeSchema\",\"url\":\"interfaces/types_contentTypeSchema_types.ICustomFieldContentTypeSchema.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/contentTypeSchema.types\"},{\"kind\":1024,\"name\":\"extension_uid\",\"url\":\"interfaces/types_contentTypeSchema_types.ICustomFieldContentTypeSchema.html#extension_uid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.ICustomFieldContentTypeSchema\"},{\"kind\":1024,\"name\":\"field_metadata\",\"url\":\"interfaces/types_contentTypeSchema_types.ICustomFieldContentTypeSchema.html#field_metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.ICustomFieldContentTypeSchema\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_contentTypeSchema_types.ICustomFieldContentTypeSchema.html#field_metadata.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/contentTypeSchema.types.ICustomFieldContentTypeSchema.field_metadata\"},{\"kind\":1024,\"name\":\"extension\",\"url\":\"interfaces/types_contentTypeSchema_types.ICustomFieldContentTypeSchema.html#field_metadata.__type.extension\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.ICustomFieldContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"is_asset\",\"url\":\"interfaces/types_contentTypeSchema_types.ICustomFieldContentTypeSchema.html#field_metadata.__type.is_asset\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.ICustomFieldContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"config\",\"url\":\"interfaces/types_contentTypeSchema_types.ICustomFieldContentTypeSchema.html#config\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.ICustomFieldContentTypeSchema\"},{\"kind\":1024,\"name\":\"data_type\",\"url\":\"interfaces/types_contentTypeSchema_types.ICustomFieldContentTypeSchema.html#data_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.ICustomFieldContentTypeSchema\"},{\"kind\":1024,\"name\":\"uid\",\"url\":\"interfaces/types_contentTypeSchema_types.ICustomFieldContentTypeSchema.html#uid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.ICustomFieldContentTypeSchema\"},{\"kind\":1024,\"name\":\"display_name\",\"url\":\"interfaces/types_contentTypeSchema_types.ICustomFieldContentTypeSchema.html#display_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.ICustomFieldContentTypeSchema\"},{\"kind\":1024,\"name\":\"mandatory\",\"url\":\"interfaces/types_contentTypeSchema_types.ICustomFieldContentTypeSchema.html#mandatory\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.ICustomFieldContentTypeSchema\"},{\"kind\":1024,\"name\":\"multiple\",\"url\":\"interfaces/types_contentTypeSchema_types.ICustomFieldContentTypeSchema.html#multiple\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.ICustomFieldContentTypeSchema\"},{\"kind\":1024,\"name\":\"non_localizable\",\"url\":\"interfaces/types_contentTypeSchema_types.ICustomFieldContentTypeSchema.html#non_localizable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.ICustomFieldContentTypeSchema\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"interfaces/types_contentTypeSchema_types.ICustomFieldContentTypeSchema.html#unique\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.ICustomFieldContentTypeSchema\"},{\"kind\":256,\"name\":\"ISelectContentTypeSchema\",\"url\":\"interfaces/types_contentTypeSchema_types.ISelectContentTypeSchema.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/contentTypeSchema.types\"},{\"kind\":1024,\"name\":\"data_type\",\"url\":\"interfaces/types_contentTypeSchema_types.ISelectContentTypeSchema.html#data_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.ISelectContentTypeSchema\"},{\"kind\":1024,\"name\":\"display_type\",\"url\":\"interfaces/types_contentTypeSchema_types.ISelectContentTypeSchema.html#display_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.ISelectContentTypeSchema\"},{\"kind\":1024,\"name\":\"enum\",\"url\":\"interfaces/types_contentTypeSchema_types.ISelectContentTypeSchema.html#enum\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.ISelectContentTypeSchema\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_contentTypeSchema_types.ISelectContentTypeSchema.html#enum.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/contentTypeSchema.types.ISelectContentTypeSchema.enum\"},{\"kind\":1024,\"name\":\"advanced\",\"url\":\"interfaces/types_contentTypeSchema_types.ISelectContentTypeSchema.html#enum.__type.advanced\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.ISelectContentTypeSchema.enum.__type\"},{\"kind\":1024,\"name\":\"choices\",\"url\":\"interfaces/types_contentTypeSchema_types.ISelectContentTypeSchema.html#enum.__type.choices\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.ISelectContentTypeSchema.enum.__type\"},{\"kind\":1024,\"name\":\"field_metadata\",\"url\":\"interfaces/types_contentTypeSchema_types.ISelectContentTypeSchema.html#field_metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.ISelectContentTypeSchema\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_contentTypeSchema_types.ISelectContentTypeSchema.html#field_metadata.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/contentTypeSchema.types.ISelectContentTypeSchema.field_metadata\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/types_contentTypeSchema_types.ISelectContentTypeSchema.html#field_metadata.__type-1.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.ISelectContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"default_value\",\"url\":\"interfaces/types_contentTypeSchema_types.ISelectContentTypeSchema.html#field_metadata.__type-1.default_value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.ISelectContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/types_contentTypeSchema_types.ISelectContentTypeSchema.html#field_metadata.__type-1.version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.ISelectContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"uid\",\"url\":\"interfaces/types_contentTypeSchema_types.ISelectContentTypeSchema.html#uid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.ISelectContentTypeSchema\"},{\"kind\":1024,\"name\":\"display_name\",\"url\":\"interfaces/types_contentTypeSchema_types.ISelectContentTypeSchema.html#display_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.ISelectContentTypeSchema\"},{\"kind\":1024,\"name\":\"mandatory\",\"url\":\"interfaces/types_contentTypeSchema_types.ISelectContentTypeSchema.html#mandatory\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.ISelectContentTypeSchema\"},{\"kind\":1024,\"name\":\"multiple\",\"url\":\"interfaces/types_contentTypeSchema_types.ISelectContentTypeSchema.html#multiple\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.ISelectContentTypeSchema\"},{\"kind\":1024,\"name\":\"non_localizable\",\"url\":\"interfaces/types_contentTypeSchema_types.ISelectContentTypeSchema.html#non_localizable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.ISelectContentTypeSchema\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"interfaces/types_contentTypeSchema_types.ISelectContentTypeSchema.html#unique\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.ISelectContentTypeSchema\"},{\"kind\":256,\"name\":\"INumberContentTypeSchema\",\"url\":\"interfaces/types_contentTypeSchema_types.INumberContentTypeSchema.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/contentTypeSchema.types\"},{\"kind\":1024,\"name\":\"data_type\",\"url\":\"interfaces/types_contentTypeSchema_types.INumberContentTypeSchema.html#data_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.INumberContentTypeSchema\"},{\"kind\":1024,\"name\":\"field_metadata\",\"url\":\"interfaces/types_contentTypeSchema_types.INumberContentTypeSchema.html#field_metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.INumberContentTypeSchema\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_contentTypeSchema_types.INumberContentTypeSchema.html#field_metadata.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/contentTypeSchema.types.INumberContentTypeSchema.field_metadata\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/types_contentTypeSchema_types.INumberContentTypeSchema.html#field_metadata.__type.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.INumberContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"default_value\",\"url\":\"interfaces/types_contentTypeSchema_types.INumberContentTypeSchema.html#field_metadata.__type.default_value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.INumberContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"uid\",\"url\":\"interfaces/types_contentTypeSchema_types.INumberContentTypeSchema.html#uid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.INumberContentTypeSchema\"},{\"kind\":1024,\"name\":\"display_name\",\"url\":\"interfaces/types_contentTypeSchema_types.INumberContentTypeSchema.html#display_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.INumberContentTypeSchema\"},{\"kind\":1024,\"name\":\"mandatory\",\"url\":\"interfaces/types_contentTypeSchema_types.INumberContentTypeSchema.html#mandatory\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.INumberContentTypeSchema\"},{\"kind\":1024,\"name\":\"multiple\",\"url\":\"interfaces/types_contentTypeSchema_types.INumberContentTypeSchema.html#multiple\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.INumberContentTypeSchema\"},{\"kind\":1024,\"name\":\"non_localizable\",\"url\":\"interfaces/types_contentTypeSchema_types.INumberContentTypeSchema.html#non_localizable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.INumberContentTypeSchema\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"interfaces/types_contentTypeSchema_types.INumberContentTypeSchema.html#unique\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.INumberContentTypeSchema\"},{\"kind\":256,\"name\":\"IBooleanContentTypeSchema\",\"url\":\"interfaces/types_contentTypeSchema_types.IBooleanContentTypeSchema.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/contentTypeSchema.types\"},{\"kind\":1024,\"name\":\"data_type\",\"url\":\"interfaces/types_contentTypeSchema_types.IBooleanContentTypeSchema.html#data_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IBooleanContentTypeSchema\"},{\"kind\":1024,\"name\":\"field_metadata\",\"url\":\"interfaces/types_contentTypeSchema_types.IBooleanContentTypeSchema.html#field_metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IBooleanContentTypeSchema\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_contentTypeSchema_types.IBooleanContentTypeSchema.html#field_metadata.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/contentTypeSchema.types.IBooleanContentTypeSchema.field_metadata\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/types_contentTypeSchema_types.IBooleanContentTypeSchema.html#field_metadata.__type.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IBooleanContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"default_value\",\"url\":\"interfaces/types_contentTypeSchema_types.IBooleanContentTypeSchema.html#field_metadata.__type.default_value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IBooleanContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"uid\",\"url\":\"interfaces/types_contentTypeSchema_types.IBooleanContentTypeSchema.html#uid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IBooleanContentTypeSchema\"},{\"kind\":1024,\"name\":\"display_name\",\"url\":\"interfaces/types_contentTypeSchema_types.IBooleanContentTypeSchema.html#display_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IBooleanContentTypeSchema\"},{\"kind\":1024,\"name\":\"mandatory\",\"url\":\"interfaces/types_contentTypeSchema_types.IBooleanContentTypeSchema.html#mandatory\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IBooleanContentTypeSchema\"},{\"kind\":1024,\"name\":\"multiple\",\"url\":\"interfaces/types_contentTypeSchema_types.IBooleanContentTypeSchema.html#multiple\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IBooleanContentTypeSchema\"},{\"kind\":1024,\"name\":\"non_localizable\",\"url\":\"interfaces/types_contentTypeSchema_types.IBooleanContentTypeSchema.html#non_localizable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IBooleanContentTypeSchema\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"interfaces/types_contentTypeSchema_types.IBooleanContentTypeSchema.html#unique\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IBooleanContentTypeSchema\"},{\"kind\":256,\"name\":\"IDateContentTypeSchema\",\"url\":\"interfaces/types_contentTypeSchema_types.IDateContentTypeSchema.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/contentTypeSchema.types\"},{\"kind\":1024,\"name\":\"data_type\",\"url\":\"interfaces/types_contentTypeSchema_types.IDateContentTypeSchema.html#data_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IDateContentTypeSchema\"},{\"kind\":1024,\"name\":\"startDate\",\"url\":\"interfaces/types_contentTypeSchema_types.IDateContentTypeSchema.html#startDate\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IDateContentTypeSchema\"},{\"kind\":1024,\"name\":\"endDate\",\"url\":\"interfaces/types_contentTypeSchema_types.IDateContentTypeSchema.html#endDate\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IDateContentTypeSchema\"},{\"kind\":1024,\"name\":\"field_metadata\",\"url\":\"interfaces/types_contentTypeSchema_types.IDateContentTypeSchema.html#field_metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IDateContentTypeSchema\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_contentTypeSchema_types.IDateContentTypeSchema.html#field_metadata.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/contentTypeSchema.types.IDateContentTypeSchema.field_metadata\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/types_contentTypeSchema_types.IDateContentTypeSchema.html#field_metadata.__type.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IDateContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"uid\",\"url\":\"interfaces/types_contentTypeSchema_types.IDateContentTypeSchema.html#uid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IDateContentTypeSchema\"},{\"kind\":1024,\"name\":\"display_name\",\"url\":\"interfaces/types_contentTypeSchema_types.IDateContentTypeSchema.html#display_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IDateContentTypeSchema\"},{\"kind\":1024,\"name\":\"mandatory\",\"url\":\"interfaces/types_contentTypeSchema_types.IDateContentTypeSchema.html#mandatory\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IDateContentTypeSchema\"},{\"kind\":1024,\"name\":\"multiple\",\"url\":\"interfaces/types_contentTypeSchema_types.IDateContentTypeSchema.html#multiple\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IDateContentTypeSchema\"},{\"kind\":1024,\"name\":\"non_localizable\",\"url\":\"interfaces/types_contentTypeSchema_types.IDateContentTypeSchema.html#non_localizable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IDateContentTypeSchema\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"interfaces/types_contentTypeSchema_types.IDateContentTypeSchema.html#unique\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IDateContentTypeSchema\"},{\"kind\":256,\"name\":\"IFileContentTypeSchema\",\"url\":\"interfaces/types_contentTypeSchema_types.IFileContentTypeSchema.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/contentTypeSchema.types\"},{\"kind\":1024,\"name\":\"data_type\",\"url\":\"interfaces/types_contentTypeSchema_types.IFileContentTypeSchema.html#data_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IFileContentTypeSchema\"},{\"kind\":1024,\"name\":\"extensions\",\"url\":\"interfaces/types_contentTypeSchema_types.IFileContentTypeSchema.html#extensions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IFileContentTypeSchema\"},{\"kind\":1024,\"name\":\"field_metadata\",\"url\":\"interfaces/types_contentTypeSchema_types.IFileContentTypeSchema.html#field_metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IFileContentTypeSchema\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_contentTypeSchema_types.IFileContentTypeSchema.html#field_metadata.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/contentTypeSchema.types.IFileContentTypeSchema.field_metadata\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/types_contentTypeSchema_types.IFileContentTypeSchema.html#field_metadata.__type.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IFileContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"rich_text_type\",\"url\":\"interfaces/types_contentTypeSchema_types.IFileContentTypeSchema.html#field_metadata.__type.rich_text_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IFileContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"uid\",\"url\":\"interfaces/types_contentTypeSchema_types.IFileContentTypeSchema.html#uid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IFileContentTypeSchema\"},{\"kind\":1024,\"name\":\"display_name\",\"url\":\"interfaces/types_contentTypeSchema_types.IFileContentTypeSchema.html#display_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IFileContentTypeSchema\"},{\"kind\":1024,\"name\":\"mandatory\",\"url\":\"interfaces/types_contentTypeSchema_types.IFileContentTypeSchema.html#mandatory\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IFileContentTypeSchema\"},{\"kind\":1024,\"name\":\"multiple\",\"url\":\"interfaces/types_contentTypeSchema_types.IFileContentTypeSchema.html#multiple\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IFileContentTypeSchema\"},{\"kind\":1024,\"name\":\"non_localizable\",\"url\":\"interfaces/types_contentTypeSchema_types.IFileContentTypeSchema.html#non_localizable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IFileContentTypeSchema\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"interfaces/types_contentTypeSchema_types.IFileContentTypeSchema.html#unique\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IFileContentTypeSchema\"},{\"kind\":256,\"name\":\"ILinkContentTypeSchema\",\"url\":\"interfaces/types_contentTypeSchema_types.ILinkContentTypeSchema.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/contentTypeSchema.types\"},{\"kind\":1024,\"name\":\"data_type\",\"url\":\"interfaces/types_contentTypeSchema_types.ILinkContentTypeSchema.html#data_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.ILinkContentTypeSchema\"},{\"kind\":1024,\"name\":\"field_metadata\",\"url\":\"interfaces/types_contentTypeSchema_types.ILinkContentTypeSchema.html#field_metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.ILinkContentTypeSchema\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_contentTypeSchema_types.ILinkContentTypeSchema.html#field_metadata.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/contentTypeSchema.types.ILinkContentTypeSchema.field_metadata\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/types_contentTypeSchema_types.ILinkContentTypeSchema.html#field_metadata.__type.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.ILinkContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"default_value\",\"url\":\"interfaces/types_contentTypeSchema_types.ILinkContentTypeSchema.html#field_metadata.__type.default_value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.ILinkContentTypeSchema.field_metadata.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_contentTypeSchema_types.ILinkContentTypeSchema.html#field_metadata.__type.default_value.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/contentTypeSchema.types.ILinkContentTypeSchema.field_metadata.__type.default_value\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/types_contentTypeSchema_types.ILinkContentTypeSchema.html#field_metadata.__type.default_value.__type-1.title\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.ILinkContentTypeSchema.field_metadata.__type.default_value.__type\"},{\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/types_contentTypeSchema_types.ILinkContentTypeSchema.html#field_metadata.__type.default_value.__type-1.url\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.ILinkContentTypeSchema.field_metadata.__type.default_value.__type\"},{\"kind\":1024,\"name\":\"uid\",\"url\":\"interfaces/types_contentTypeSchema_types.ILinkContentTypeSchema.html#uid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.ILinkContentTypeSchema\"},{\"kind\":1024,\"name\":\"display_name\",\"url\":\"interfaces/types_contentTypeSchema_types.ILinkContentTypeSchema.html#display_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.ILinkContentTypeSchema\"},{\"kind\":1024,\"name\":\"mandatory\",\"url\":\"interfaces/types_contentTypeSchema_types.ILinkContentTypeSchema.html#mandatory\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.ILinkContentTypeSchema\"},{\"kind\":1024,\"name\":\"multiple\",\"url\":\"interfaces/types_contentTypeSchema_types.ILinkContentTypeSchema.html#multiple\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.ILinkContentTypeSchema\"},{\"kind\":1024,\"name\":\"non_localizable\",\"url\":\"interfaces/types_contentTypeSchema_types.ILinkContentTypeSchema.html#non_localizable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.ILinkContentTypeSchema\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"interfaces/types_contentTypeSchema_types.ILinkContentTypeSchema.html#unique\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.ILinkContentTypeSchema\"},{\"kind\":256,\"name\":\"IReferenceContentTypeSchema\",\"url\":\"interfaces/types_contentTypeSchema_types.IReferenceContentTypeSchema.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/contentTypeSchema.types\"},{\"kind\":1024,\"name\":\"data_type\",\"url\":\"interfaces/types_contentTypeSchema_types.IReferenceContentTypeSchema.html#data_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IReferenceContentTypeSchema\"},{\"kind\":1024,\"name\":\"reference_to\",\"url\":\"interfaces/types_contentTypeSchema_types.IReferenceContentTypeSchema.html#reference_to\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IReferenceContentTypeSchema\"},{\"kind\":1024,\"name\":\"field_metadata\",\"url\":\"interfaces/types_contentTypeSchema_types.IReferenceContentTypeSchema.html#field_metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IReferenceContentTypeSchema\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_contentTypeSchema_types.IReferenceContentTypeSchema.html#field_metadata.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/contentTypeSchema.types.IReferenceContentTypeSchema.field_metadata\"},{\"kind\":1024,\"name\":\"ref_multiple\",\"url\":\"interfaces/types_contentTypeSchema_types.IReferenceContentTypeSchema.html#field_metadata.__type.ref_multiple\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IReferenceContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"ref_multiple_content_types\",\"url\":\"interfaces/types_contentTypeSchema_types.IReferenceContentTypeSchema.html#field_metadata.__type.ref_multiple_content_types\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IReferenceContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"uid\",\"url\":\"interfaces/types_contentTypeSchema_types.IReferenceContentTypeSchema.html#uid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IReferenceContentTypeSchema\"},{\"kind\":1024,\"name\":\"display_name\",\"url\":\"interfaces/types_contentTypeSchema_types.IReferenceContentTypeSchema.html#display_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IReferenceContentTypeSchema\"},{\"kind\":1024,\"name\":\"mandatory\",\"url\":\"interfaces/types_contentTypeSchema_types.IReferenceContentTypeSchema.html#mandatory\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IReferenceContentTypeSchema\"},{\"kind\":1024,\"name\":\"multiple\",\"url\":\"interfaces/types_contentTypeSchema_types.IReferenceContentTypeSchema.html#multiple\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IReferenceContentTypeSchema\"},{\"kind\":1024,\"name\":\"non_localizable\",\"url\":\"interfaces/types_contentTypeSchema_types.IReferenceContentTypeSchema.html#non_localizable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IReferenceContentTypeSchema\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"interfaces/types_contentTypeSchema_types.IReferenceContentTypeSchema.html#unique\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IReferenceContentTypeSchema\"},{\"kind\":256,\"name\":\"IExperienceContainerContentTypeSchema\",\"url\":\"interfaces/types_contentTypeSchema_types.IExperienceContainerContentTypeSchema.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/contentTypeSchema.types\"},{\"kind\":1024,\"name\":\"data_type\",\"url\":\"interfaces/types_contentTypeSchema_types.IExperienceContainerContentTypeSchema.html#data_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IExperienceContainerContentTypeSchema\"},{\"kind\":1024,\"name\":\"field_metadata\",\"url\":\"interfaces/types_contentTypeSchema_types.IExperienceContainerContentTypeSchema.html#field_metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IExperienceContainerContentTypeSchema\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_contentTypeSchema_types.IExperienceContainerContentTypeSchema.html#field_metadata.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/contentTypeSchema.types.IExperienceContainerContentTypeSchema.field_metadata\"},{\"kind\":1024,\"name\":\"experience_uid\",\"url\":\"interfaces/types_contentTypeSchema_types.IExperienceContainerContentTypeSchema.html#field_metadata.__type.experience_uid\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IExperienceContainerContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"project_uid\",\"url\":\"interfaces/types_contentTypeSchema_types.IExperienceContainerContentTypeSchema.html#field_metadata.__type.project_uid\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IExperienceContainerContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"enableDefaultVariation\",\"url\":\"interfaces/types_contentTypeSchema_types.IExperienceContainerContentTypeSchema.html#field_metadata.__type.enableDefaultVariation\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IExperienceContainerContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"schema\",\"url\":\"interfaces/types_contentTypeSchema_types.IExperienceContainerContentTypeSchema.html#schema\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IExperienceContainerContentTypeSchema\"},{\"kind\":1024,\"name\":\"uid\",\"url\":\"interfaces/types_contentTypeSchema_types.IExperienceContainerContentTypeSchema.html#uid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IExperienceContainerContentTypeSchema\"},{\"kind\":1024,\"name\":\"display_name\",\"url\":\"interfaces/types_contentTypeSchema_types.IExperienceContainerContentTypeSchema.html#display_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IExperienceContainerContentTypeSchema\"},{\"kind\":1024,\"name\":\"mandatory\",\"url\":\"interfaces/types_contentTypeSchema_types.IExperienceContainerContentTypeSchema.html#mandatory\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IExperienceContainerContentTypeSchema\"},{\"kind\":1024,\"name\":\"multiple\",\"url\":\"interfaces/types_contentTypeSchema_types.IExperienceContainerContentTypeSchema.html#multiple\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IExperienceContainerContentTypeSchema\"},{\"kind\":1024,\"name\":\"non_localizable\",\"url\":\"interfaces/types_contentTypeSchema_types.IExperienceContainerContentTypeSchema.html#non_localizable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IExperienceContainerContentTypeSchema\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"interfaces/types_contentTypeSchema_types.IExperienceContainerContentTypeSchema.html#unique\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IExperienceContainerContentTypeSchema\"},{\"kind\":4194304,\"name\":\"IContentTypeCommonBlocks\",\"url\":\"types/types_contentTypeSchema_types.IContentTypeCommonBlocks.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/contentTypeSchema.types\"},{\"kind\":4194304,\"name\":\"IContentTypeRootBlocks\",\"url\":\"types/types_contentTypeSchema_types.IContentTypeRootBlocks.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/contentTypeSchema.types\"},{\"kind\":256,\"name\":\"IModularBlockSingleBlock\",\"url\":\"interfaces/types_contentTypeSchema_types.IModularBlockSingleBlock.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/contentTypeSchema.types\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/types_contentTypeSchema_types.IModularBlockSingleBlock.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IModularBlockSingleBlock\"},{\"kind\":1024,\"name\":\"uid\",\"url\":\"interfaces/types_contentTypeSchema_types.IModularBlockSingleBlock.html#uid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IModularBlockSingleBlock\"},{\"kind\":1024,\"name\":\"schema\",\"url\":\"interfaces/types_contentTypeSchema_types.IModularBlockSingleBlock.html#schema\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IModularBlockSingleBlock\"},{\"kind\":256,\"name\":\"IModularBlocksContentTypeSchema\",\"url\":\"interfaces/types_contentTypeSchema_types.IModularBlocksContentTypeSchema.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/contentTypeSchema.types\"},{\"kind\":1024,\"name\":\"data_type\",\"url\":\"interfaces/types_contentTypeSchema_types.IModularBlocksContentTypeSchema.html#data_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IModularBlocksContentTypeSchema\"},{\"kind\":1024,\"name\":\"blocks\",\"url\":\"interfaces/types_contentTypeSchema_types.IModularBlocksContentTypeSchema.html#blocks\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IModularBlocksContentTypeSchema\"},{\"kind\":1024,\"name\":\"field_metadata\",\"url\":\"interfaces/types_contentTypeSchema_types.IModularBlocksContentTypeSchema.html#field_metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IModularBlocksContentTypeSchema\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_contentTypeSchema_types.IModularBlocksContentTypeSchema.html#field_metadata.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/contentTypeSchema.types.IModularBlocksContentTypeSchema.field_metadata\"},{\"kind\":1024,\"name\":\"instruction\",\"url\":\"interfaces/types_contentTypeSchema_types.IModularBlocksContentTypeSchema.html#field_metadata.__type.instruction\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IModularBlocksContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/types_contentTypeSchema_types.IModularBlocksContentTypeSchema.html#field_metadata.__type.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IModularBlocksContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"uid\",\"url\":\"interfaces/types_contentTypeSchema_types.IModularBlocksContentTypeSchema.html#uid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IModularBlocksContentTypeSchema\"},{\"kind\":1024,\"name\":\"display_name\",\"url\":\"interfaces/types_contentTypeSchema_types.IModularBlocksContentTypeSchema.html#display_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IModularBlocksContentTypeSchema\"},{\"kind\":1024,\"name\":\"mandatory\",\"url\":\"interfaces/types_contentTypeSchema_types.IModularBlocksContentTypeSchema.html#mandatory\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IModularBlocksContentTypeSchema\"},{\"kind\":1024,\"name\":\"multiple\",\"url\":\"interfaces/types_contentTypeSchema_types.IModularBlocksContentTypeSchema.html#multiple\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IModularBlocksContentTypeSchema\"},{\"kind\":1024,\"name\":\"non_localizable\",\"url\":\"interfaces/types_contentTypeSchema_types.IModularBlocksContentTypeSchema.html#non_localizable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IModularBlocksContentTypeSchema\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"interfaces/types_contentTypeSchema_types.IModularBlocksContentTypeSchema.html#unique\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IModularBlocksContentTypeSchema\"},{\"kind\":256,\"name\":\"IGroupContentTypeSchema\",\"url\":\"interfaces/types_contentTypeSchema_types.IGroupContentTypeSchema.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/contentTypeSchema.types\"},{\"kind\":1024,\"name\":\"data_type\",\"url\":\"interfaces/types_contentTypeSchema_types.IGroupContentTypeSchema.html#data_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IGroupContentTypeSchema\"},{\"kind\":1024,\"name\":\"field_metadata\",\"url\":\"interfaces/types_contentTypeSchema_types.IGroupContentTypeSchema.html#field_metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IGroupContentTypeSchema\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_contentTypeSchema_types.IGroupContentTypeSchema.html#field_metadata.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/contentTypeSchema.types.IGroupContentTypeSchema.field_metadata\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/types_contentTypeSchema_types.IGroupContentTypeSchema.html#field_metadata.__type.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IGroupContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"instruction\",\"url\":\"interfaces/types_contentTypeSchema_types.IGroupContentTypeSchema.html#field_metadata.__type.instruction\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IGroupContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"schema\",\"url\":\"interfaces/types_contentTypeSchema_types.IGroupContentTypeSchema.html#schema\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IGroupContentTypeSchema\"},{\"kind\":1024,\"name\":\"uid\",\"url\":\"interfaces/types_contentTypeSchema_types.IGroupContentTypeSchema.html#uid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IGroupContentTypeSchema\"},{\"kind\":1024,\"name\":\"display_name\",\"url\":\"interfaces/types_contentTypeSchema_types.IGroupContentTypeSchema.html#display_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IGroupContentTypeSchema\"},{\"kind\":1024,\"name\":\"mandatory\",\"url\":\"interfaces/types_contentTypeSchema_types.IGroupContentTypeSchema.html#mandatory\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IGroupContentTypeSchema\"},{\"kind\":1024,\"name\":\"multiple\",\"url\":\"interfaces/types_contentTypeSchema_types.IGroupContentTypeSchema.html#multiple\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IGroupContentTypeSchema\"},{\"kind\":1024,\"name\":\"non_localizable\",\"url\":\"interfaces/types_contentTypeSchema_types.IGroupContentTypeSchema.html#non_localizable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IGroupContentTypeSchema\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"interfaces/types_contentTypeSchema_types.IGroupContentTypeSchema.html#unique\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IGroupContentTypeSchema\"},{\"kind\":256,\"name\":\"IGlobalFieldContentTypeSchema\",\"url\":\"interfaces/types_contentTypeSchema_types.IGlobalFieldContentTypeSchema.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/contentTypeSchema.types\"},{\"kind\":1024,\"name\":\"data_type\",\"url\":\"interfaces/types_contentTypeSchema_types.IGlobalFieldContentTypeSchema.html#data_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IGlobalFieldContentTypeSchema\"},{\"kind\":1024,\"name\":\"reference_to\",\"url\":\"interfaces/types_contentTypeSchema_types.IGlobalFieldContentTypeSchema.html#reference_to\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IGlobalFieldContentTypeSchema\"},{\"kind\":1024,\"name\":\"field_metadata\",\"url\":\"interfaces/types_contentTypeSchema_types.IGlobalFieldContentTypeSchema.html#field_metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IGlobalFieldContentTypeSchema\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_contentTypeSchema_types.IGlobalFieldContentTypeSchema.html#field_metadata.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/contentTypeSchema.types.IGlobalFieldContentTypeSchema.field_metadata\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/types_contentTypeSchema_types.IGlobalFieldContentTypeSchema.html#field_metadata.__type.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IGlobalFieldContentTypeSchema.field_metadata.__type\"},{\"kind\":1024,\"name\":\"schema\",\"url\":\"interfaces/types_contentTypeSchema_types.IGlobalFieldContentTypeSchema.html#schema\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IGlobalFieldContentTypeSchema\"},{\"kind\":1024,\"name\":\"uid\",\"url\":\"interfaces/types_contentTypeSchema_types.IGlobalFieldContentTypeSchema.html#uid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IGlobalFieldContentTypeSchema\"},{\"kind\":1024,\"name\":\"display_name\",\"url\":\"interfaces/types_contentTypeSchema_types.IGlobalFieldContentTypeSchema.html#display_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IGlobalFieldContentTypeSchema\"},{\"kind\":1024,\"name\":\"mandatory\",\"url\":\"interfaces/types_contentTypeSchema_types.IGlobalFieldContentTypeSchema.html#mandatory\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IGlobalFieldContentTypeSchema\"},{\"kind\":1024,\"name\":\"multiple\",\"url\":\"interfaces/types_contentTypeSchema_types.IGlobalFieldContentTypeSchema.html#multiple\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IGlobalFieldContentTypeSchema\"},{\"kind\":1024,\"name\":\"non_localizable\",\"url\":\"interfaces/types_contentTypeSchema_types.IGlobalFieldContentTypeSchema.html#non_localizable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IGlobalFieldContentTypeSchema\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"interfaces/types_contentTypeSchema_types.IGlobalFieldContentTypeSchema.html#unique\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/contentTypeSchema.types.IGlobalFieldContentTypeSchema\"},{\"kind\":256,\"name\":\"IPageSchema\",\"url\":\"interfaces/types_contentTypeSchema_types.IPageSchema.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/contentTypeSchema.types\"},{\"kind\":1024,\"name\":\"created_at\",\"url\":\"interfaces/types_contentTypeSchema_types.IPageSchema.html#created_at\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IPageSchema\"},{\"kind\":1024,\"name\":\"updated_at\",\"url\":\"interfaces/types_contentTypeSchema_types.IPageSchema.html#updated_at\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IPageSchema\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/types_contentTypeSchema_types.IPageSchema.html#title-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IPageSchema\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/types_contentTypeSchema_types.IPageSchema.html#description\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IPageSchema\"},{\"kind\":1024,\"name\":\"uid\",\"url\":\"interfaces/types_contentTypeSchema_types.IPageSchema.html#uid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IPageSchema\"},{\"kind\":1024,\"name\":\"_version\",\"url\":\"interfaces/types_contentTypeSchema_types.IPageSchema.html#_version\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IPageSchema\"},{\"kind\":1024,\"name\":\"inbuilt_class\",\"url\":\"interfaces/types_contentTypeSchema_types.IPageSchema.html#inbuilt_class\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IPageSchema\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/types_contentTypeSchema_types.IPageSchema.html#options\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IPageSchema\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_contentTypeSchema_types.IPageSchema.html#options.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/contentTypeSchema.types.IPageSchema.options\"},{\"kind\":1024,\"name\":\"is_page\",\"url\":\"interfaces/types_contentTypeSchema_types.IPageSchema.html#options.__type.is_page\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IPageSchema.options.__type\"},{\"kind\":1024,\"name\":\"singleton\",\"url\":\"interfaces/types_contentTypeSchema_types.IPageSchema.html#options.__type.singleton\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IPageSchema.options.__type\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/types_contentTypeSchema_types.IPageSchema.html#options.__type.title\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/contentTypeSchema.types.IPageSchema.options.__type\"},{\"kind\":1024,\"name\":\"schema\",\"url\":\"interfaces/types_contentTypeSchema_types.IPageSchema.html#schema\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/contentTypeSchema.types.IPageSchema\"},{\"kind\":2,\"name\":\"types/cslp.types\",\"url\":\"modules/types_cslp_types.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":256,\"name\":\"CslpData\",\"url\":\"interfaces/types_cslp_types.CslpData.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/cslp.types\"},{\"kind\":1024,\"name\":\"entry_uid\",\"url\":\"interfaces/types_cslp_types.CslpData.html#entry_uid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/cslp.types.CslpData\"},{\"kind\":1024,\"name\":\"content_type_uid\",\"url\":\"interfaces/types_cslp_types.CslpData.html#content_type_uid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/cslp.types.CslpData\"},{\"kind\":1024,\"name\":\"cslpValue\",\"url\":\"interfaces/types_cslp_types.CslpData.html#cslpValue\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/cslp.types.CslpData\"},{\"kind\":1024,\"name\":\"locale\",\"url\":\"interfaces/types_cslp_types.CslpData.html#locale\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/cslp.types.CslpData\"},{\"kind\":1024,\"name\":\"fieldPath\",\"url\":\"interfaces/types_cslp_types.CslpData.html#fieldPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/cslp.types.CslpData\"},{\"kind\":1024,\"name\":\"fieldPathWithIndex\",\"url\":\"interfaces/types_cslp_types.CslpData.html#fieldPathWithIndex\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/cslp.types.CslpData\"},{\"kind\":1024,\"name\":\"multipleFieldMetadata\",\"url\":\"interfaces/types_cslp_types.CslpData.html#multipleFieldMetadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/cslp.types.CslpData\"},{\"kind\":256,\"name\":\"CslpDataMultipleFieldMetadata\",\"url\":\"interfaces/types_cslp_types.CslpDataMultipleFieldMetadata.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/cslp.types\"},{\"kind\":1024,\"name\":\"index\",\"url\":\"interfaces/types_cslp_types.CslpDataMultipleFieldMetadata.html#index\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/cslp.types.CslpDataMultipleFieldMetadata\"},{\"kind\":1024,\"name\":\"parentDetails\",\"url\":\"interfaces/types_cslp_types.CslpDataMultipleFieldMetadata.html#parentDetails\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/cslp.types.CslpDataMultipleFieldMetadata\"},{\"kind\":256,\"name\":\"CslpDataParentDetails\",\"url\":\"interfaces/types_cslp_types.CslpDataParentDetails.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/cslp.types\"},{\"kind\":1024,\"name\":\"parentPath\",\"url\":\"interfaces/types_cslp_types.CslpDataParentDetails.html#parentPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/cslp.types.CslpDataParentDetails\"},{\"kind\":1024,\"name\":\"parentCslpValue\",\"url\":\"interfaces/types_cslp_types.CslpDataParentDetails.html#parentCslpValue\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/cslp.types.CslpDataParentDetails\"},{\"kind\":2,\"name\":\"types/liveEditor.types\",\"url\":\"modules/types_liveEditor_types.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":256,\"name\":\"VisualEditorCslpEventDetails\",\"url\":\"interfaces/types_liveEditor_types.VisualEditorCslpEventDetails.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/liveEditor.types\"},{\"kind\":1024,\"name\":\"editableElement\",\"url\":\"interfaces/types_liveEditor_types.VisualEditorCslpEventDetails.html#editableElement\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/liveEditor.types.VisualEditorCslpEventDetails\"},{\"kind\":1024,\"name\":\"cslpData\",\"url\":\"interfaces/types_liveEditor_types.VisualEditorCslpEventDetails.html#cslpData\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/liveEditor.types.VisualEditorCslpEventDetails\"},{\"kind\":1024,\"name\":\"fieldMetadata\",\"url\":\"interfaces/types_liveEditor_types.VisualEditorCslpEventDetails.html#fieldMetadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/liveEditor.types.VisualEditorCslpEventDetails\"},{\"kind\":2,\"name\":\"types/types\",\"url\":\"modules/types_types.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":256,\"name\":\"IEditEntrySearchParams\",\"url\":\"interfaces/types_types.IEditEntrySearchParams.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/types\"},{\"kind\":1024,\"name\":\"hash\",\"url\":\"interfaces/types_types.IEditEntrySearchParams.html#hash\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IEditEntrySearchParams\"},{\"kind\":1024,\"name\":\"entry_uid\",\"url\":\"interfaces/types_types.IEditEntrySearchParams.html#entry_uid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IEditEntrySearchParams\"},{\"kind\":1024,\"name\":\"content_type_uid\",\"url\":\"interfaces/types_types.IEditEntrySearchParams.html#content_type_uid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IEditEntrySearchParams\"},{\"kind\":1024,\"name\":\"live_preview\",\"url\":\"interfaces/types_types.IEditEntrySearchParams.html#live_preview\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IEditEntrySearchParams\"},{\"kind\":256,\"name\":\"IClientUrlParams\",\"url\":\"interfaces/types_types.IClientUrlParams.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/types\"},{\"kind\":1024,\"name\":\"protocol\",\"url\":\"interfaces/types_types.IClientUrlParams.html#protocol\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IClientUrlParams\"},{\"kind\":1024,\"name\":\"host\",\"url\":\"interfaces/types_types.IClientUrlParams.html#host\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IClientUrlParams\"},{\"kind\":1024,\"name\":\"port\",\"url\":\"interfaces/types_types.IClientUrlParams.html#port\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IClientUrlParams\"},{\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/types_types.IClientUrlParams.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IClientUrlParams\"},{\"kind\":256,\"name\":\"IStackSdk\",\"url\":\"interfaces/types_types.IStackSdk.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/types\"},{\"kind\":1024,\"name\":\"live_preview\",\"url\":\"interfaces/types_types.IStackSdk.html#live_preview\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IStackSdk\"},{\"kind\":1024,\"name\":\"headers\",\"url\":\"interfaces/types_types.IStackSdk.html#headers\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IStackSdk\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_types.IStackSdk.html#headers.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/types.IStackSdk.headers\"},{\"kind\":1024,\"name\":\"api_key\",\"url\":\"interfaces/types_types.IStackSdk.html#headers.__type.api_key\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/types.IStackSdk.headers.__type\"},{\"kind\":1024,\"name\":\"branch\",\"url\":\"interfaces/types_types.IStackSdk.html#headers.__type.branch\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/types.IStackSdk.headers.__type\"},{\"kind\":1024,\"name\":\"environment\",\"url\":\"interfaces/types_types.IStackSdk.html#environment\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IStackSdk\"},{\"kind\":256,\"name\":\"IStackDetails\",\"url\":\"interfaces/types_types.IStackDetails.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/types\"},{\"kind\":1024,\"name\":\"apiKey\",\"url\":\"interfaces/types_types.IStackDetails.html#apiKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IStackDetails\"},{\"kind\":1024,\"name\":\"environment\",\"url\":\"interfaces/types_types.IStackDetails.html#environment\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IStackDetails\"},{\"kind\":1024,\"name\":\"contentTypeUid\",\"url\":\"interfaces/types_types.IStackDetails.html#contentTypeUid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IStackDetails\"},{\"kind\":1024,\"name\":\"entryUid\",\"url\":\"interfaces/types_types.IStackDetails.html#entryUid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IStackDetails\"},{\"kind\":1024,\"name\":\"branch\",\"url\":\"interfaces/types_types.IStackDetails.html#branch\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IStackDetails\"},{\"kind\":1024,\"name\":\"locale\",\"url\":\"interfaces/types_types.IStackDetails.html#locale\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IStackDetails\"},{\"kind\":256,\"name\":\"IInitStackDetails\",\"url\":\"interfaces/types_types.IInitStackDetails.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/types\"},{\"kind\":1024,\"name\":\"apiKey\",\"url\":\"interfaces/types_types.IInitStackDetails.html#apiKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IInitStackDetails\"},{\"kind\":1024,\"name\":\"environment\",\"url\":\"interfaces/types_types.IInitStackDetails.html#environment\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IInitStackDetails\"},{\"kind\":1024,\"name\":\"branch\",\"url\":\"interfaces/types_types.IInitStackDetails.html#branch\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IInitStackDetails\"},{\"kind\":1024,\"name\":\"locale\",\"url\":\"interfaces/types_types.IInitStackDetails.html#locale\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IInitStackDetails\"},{\"kind\":4194304,\"name\":\"ILivePreviewMode\",\"url\":\"types/types_types.ILivePreviewMode.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/types\"},{\"kind\":8,\"name\":\"ILivePreviewModeConfig\",\"url\":\"enums/types_types.ILivePreviewModeConfig.html\",\"classes\":\"tsd-kind-enum tsd-parent-kind-module\",\"parent\":\"types/types\"},{\"kind\":16,\"name\":\"PREVIEW\",\"url\":\"enums/types_types.ILivePreviewModeConfig.html#PREVIEW\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/types.ILivePreviewModeConfig\"},{\"kind\":16,\"name\":\"EDITOR\",\"url\":\"enums/types_types.ILivePreviewModeConfig.html#EDITOR\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/types.ILivePreviewModeConfig\"},{\"kind\":256,\"name\":\"IConfig\",\"url\":\"interfaces/types_types.IConfig.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/types\"},{\"kind\":1024,\"name\":\"ssr\",\"url\":\"interfaces/types_types.IConfig.html#ssr\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IConfig\"},{\"kind\":1024,\"name\":\"enable\",\"url\":\"interfaces/types_types.IConfig.html#enable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IConfig\"},{\"kind\":1024,\"name\":\"cleanCslpOnProduction\",\"url\":\"interfaces/types_types.IConfig.html#cleanCslpOnProduction\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IConfig\"},{\"kind\":1024,\"name\":\"stackDetails\",\"url\":\"interfaces/types_types.IConfig.html#stackDetails\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IConfig\"},{\"kind\":1024,\"name\":\"clientUrlParams\",\"url\":\"interfaces/types_types.IConfig.html#clientUrlParams\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IConfig\"},{\"kind\":1024,\"name\":\"stackSdk\",\"url\":\"interfaces/types_types.IConfig.html#stackSdk\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IConfig\"},{\"kind\":1024,\"name\":\"onChange\",\"url\":\"interfaces/types_types.IConfig.html#onChange\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IConfig\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_types.IConfig.html#onChange.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/types.IConfig.onChange\"},{\"kind\":1024,\"name\":\"runScriptsOnUpdate\",\"url\":\"interfaces/types_types.IConfig.html#runScriptsOnUpdate\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IConfig\"},{\"kind\":1024,\"name\":\"hash\",\"url\":\"interfaces/types_types.IConfig.html#hash\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IConfig\"},{\"kind\":1024,\"name\":\"editButton\",\"url\":\"interfaces/types_types.IConfig.html#editButton\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IConfig\"},{\"kind\":1024,\"name\":\"mode\",\"url\":\"interfaces/types_types.IConfig.html#mode\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IConfig\"},{\"kind\":256,\"name\":\"IConfigEditButton\",\"url\":\"interfaces/types_types.IConfigEditButton.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/types\"},{\"kind\":1024,\"name\":\"enable\",\"url\":\"interfaces/types_types.IConfigEditButton.html#enable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IConfigEditButton\"},{\"kind\":1024,\"name\":\"exclude\",\"url\":\"interfaces/types_types.IConfigEditButton.html#exclude\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IConfigEditButton\"},{\"kind\":1024,\"name\":\"includeByQueryParameter\",\"url\":\"interfaces/types_types.IConfigEditButton.html#includeByQueryParameter\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IConfigEditButton\"},{\"kind\":1024,\"name\":\"position\",\"url\":\"interfaces/types_types.IConfigEditButton.html#position\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IConfigEditButton\"},{\"kind\":256,\"name\":\"IInitData\",\"url\":\"interfaces/types_types.IInitData.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/types\"},{\"kind\":1024,\"name\":\"ssr\",\"url\":\"interfaces/types_types.IInitData.html#ssr\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IInitData\"},{\"kind\":1024,\"name\":\"runScriptsOnUpdate\",\"url\":\"interfaces/types_types.IInitData.html#runScriptsOnUpdate\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IInitData\"},{\"kind\":1024,\"name\":\"enable\",\"url\":\"interfaces/types_types.IInitData.html#enable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IInitData\"},{\"kind\":1024,\"name\":\"cleanCslpOnProduction\",\"url\":\"interfaces/types_types.IInitData.html#cleanCslpOnProduction\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IInitData\"},{\"kind\":1024,\"name\":\"stackDetails\",\"url\":\"interfaces/types_types.IInitData.html#stackDetails\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IInitData\"},{\"kind\":1024,\"name\":\"clientUrlParams\",\"url\":\"interfaces/types_types.IInitData.html#clientUrlParams\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IInitData\"},{\"kind\":1024,\"name\":\"stackSdk\",\"url\":\"interfaces/types_types.IInitData.html#stackSdk\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IInitData\"},{\"kind\":1024,\"name\":\"editButton\",\"url\":\"interfaces/types_types.IInitData.html#editButton\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IInitData\"},{\"kind\":1024,\"name\":\"mode\",\"url\":\"interfaces/types_types.IInitData.html#mode\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IInitData\"},{\"kind\":256,\"name\":\"ILivePreviewMessageCommon\",\"url\":\"interfaces/types_types.ILivePreviewMessageCommon.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/types\"},{\"kind\":1024,\"name\":\"from\",\"url\":\"interfaces/types_types.ILivePreviewMessageCommon.html#from\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.ILivePreviewMessageCommon\"},{\"kind\":4194304,\"name\":\"ILivePreviewReceivePostMessages\",\"url\":\"types/types_types.ILivePreviewReceivePostMessages.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/types\"},{\"kind\":256,\"name\":\"IClientDataMessage\",\"url\":\"interfaces/types_types.IClientDataMessage.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/types\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/types_types.IClientDataMessage.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IClientDataMessage\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"interfaces/types_types.IClientDataMessage.html#data\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IClientDataMessage\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_types.IClientDataMessage.html#data.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/types.IClientDataMessage.data\"},{\"kind\":1024,\"name\":\"hash\",\"url\":\"interfaces/types_types.IClientDataMessage.html#data.__type.hash\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/types.IClientDataMessage.data.__type\"},{\"kind\":1024,\"name\":\"from\",\"url\":\"interfaces/types_types.IClientDataMessage.html#from\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/types.IClientDataMessage\"},{\"kind\":256,\"name\":\"IInitAckMessage\",\"url\":\"interfaces/types_types.IInitAckMessage.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/types\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/types_types.IInitAckMessage.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IInitAckMessage\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"interfaces/types_types.IInitAckMessage.html#data\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IInitAckMessage\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_types.IInitAckMessage.html#data.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/types.IInitAckMessage.data\"},{\"kind\":1024,\"name\":\"contentTypeUid\",\"url\":\"interfaces/types_types.IInitAckMessage.html#data.__type.contentTypeUid\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/types.IInitAckMessage.data.__type\"},{\"kind\":1024,\"name\":\"entryUid\",\"url\":\"interfaces/types_types.IInitAckMessage.html#data.__type.entryUid\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/types.IInitAckMessage.data.__type\"},{\"kind\":1024,\"name\":\"from\",\"url\":\"interfaces/types_types.IInitAckMessage.html#from\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/types.IInitAckMessage\"},{\"kind\":256,\"name\":\"IHistoryMessage\",\"url\":\"interfaces/types_types.IHistoryMessage.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/types\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/types_types.IHistoryMessage.html#type-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IHistoryMessage\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"interfaces/types_types.IHistoryMessage.html#data\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IHistoryMessage\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_types.IHistoryMessage.html#data.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/types.IHistoryMessage.data\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/types_types.IHistoryMessage.html#data.__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/types.IHistoryMessage.data.__type\"},{\"kind\":1024,\"name\":\"from\",\"url\":\"interfaces/types_types.IHistoryMessage.html#from\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/types.IHistoryMessage\"},{\"kind\":256,\"name\":\"IDocWithScriptMessage\",\"url\":\"interfaces/types_types.IDocWithScriptMessage.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/types\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/types_types.IDocWithScriptMessage.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IDocWithScriptMessage\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"interfaces/types_types.IDocWithScriptMessage.html#data\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IDocWithScriptMessage\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types_types.IDocWithScriptMessage.html#data.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/types.IDocWithScriptMessage.data\"},{\"kind\":1024,\"name\":\"body\",\"url\":\"interfaces/types_types.IDocWithScriptMessage.html#data.__type.body\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/types.IDocWithScriptMessage.data.__type\"},{\"kind\":1024,\"name\":\"from\",\"url\":\"interfaces/types_types.IDocWithScriptMessage.html#from\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types/types.IDocWithScriptMessage\"},{\"kind\":256,\"name\":\"IEditButtonPosition\",\"url\":\"interfaces/types_types.IEditButtonPosition.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types/types\"},{\"kind\":1024,\"name\":\"upperBoundOfTooltip\",\"url\":\"interfaces/types_types.IEditButtonPosition.html#upperBoundOfTooltip\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IEditButtonPosition\"},{\"kind\":1024,\"name\":\"leftBoundOfTooltip\",\"url\":\"interfaces/types_types.IEditButtonPosition.html#leftBoundOfTooltip\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types/types.IEditButtonPosition\"},{\"kind\":4194304,\"name\":\"OnEntryChangeCallback\",\"url\":\"types/types_types.OnEntryChangeCallback.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/types\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_types.OnEntryChangeCallback.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"types/types.OnEntryChangeCallback\"},{\"kind\":4194304,\"name\":\"OnEntryChangeConfig\",\"url\":\"types/types_types.OnEntryChangeConfig.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/types\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_types.OnEntryChangeConfig.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"types/types.OnEntryChangeConfig\"},{\"kind\":1024,\"name\":\"skipInitialRender\",\"url\":\"types/types_types.OnEntryChangeConfig.html#__type.skipInitialRender\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/types.OnEntryChangeConfig.__type\"},{\"kind\":4194304,\"name\":\"OnEntryChangeCallbackUID\",\"url\":\"types/types_types.OnEntryChangeCallbackUID.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/types\"},{\"kind\":2,\"name\":\"utils/configHandler\",\"url\":\"modules/utils_configHandler.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"default\",\"url\":\"classes/utils_configHandler.default.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"utils/configHandler\"},{\"kind\":1024,\"name\":\"config\",\"url\":\"classes/utils_configHandler.default.html#config\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"utils/configHandler.default\"},{\"kind\":2048,\"name\":\"replace\",\"url\":\"classes/utils_configHandler.default.html#replace\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"utils/configHandler.default\"},{\"kind\":2048,\"name\":\"set\",\"url\":\"classes/utils_configHandler.default.html#set\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"utils/configHandler.default\"},{\"kind\":2048,\"name\":\"get\",\"url\":\"classes/utils_configHandler.default.html#get\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"utils/configHandler.default\"},{\"kind\":2048,\"name\":\"reset\",\"url\":\"classes/utils_configHandler.default.html#reset\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"utils/configHandler.default\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/utils_configHandler.default.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"utils/configHandler.default\"},{\"kind\":2,\"name\":\"utils/cslpdata\",\"url\":\"modules/utils_cslpdata.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"extractDetailsFromCslp\",\"url\":\"functions/utils_cslpdata.extractDetailsFromCslp.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"utils/cslpdata\"},{\"kind\":2,\"name\":\"utils/defaults\",\"url\":\"modules/utils_defaults.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"getUserInitData\",\"url\":\"functions/utils_defaults.getUserInitData.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"utils/defaults\"},{\"kind\":64,\"name\":\"getDefaultConfig\",\"url\":\"functions/utils_defaults.getDefaultConfig.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"utils/defaults\"},{\"kind\":2,\"name\":\"utils/handleUserConfig\",\"url\":\"modules/utils_handleUserConfig.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"handleInitData\",\"url\":\"functions/utils_handleUserConfig.handleInitData.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"utils/handleUserConfig\"},{\"kind\":32,\"name\":\"handleUserConfig\",\"url\":\"variables/utils_handleUserConfig.handleUserConfig.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"utils/handleUserConfig\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/utils_handleUserConfig.handleUserConfig.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-variable\",\"parent\":\"utils/handleUserConfig.handleUserConfig\"},{\"kind\":1024,\"name\":\"clientUrlParams\",\"url\":\"variables/utils_handleUserConfig.handleUserConfig.html#__type.clientUrlParams\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"utils/handleUserConfig.handleUserConfig.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/utils_handleUserConfig.handleUserConfig.html#__type.clientUrlParams.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"utils/handleUserConfig.handleUserConfig.__type.clientUrlParams\"},{\"kind\":2,\"name\":\"utils\",\"url\":\"modules/utils.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"hasWindow\",\"url\":\"functions/utils.hasWindow.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"utils\"},{\"kind\":64,\"name\":\"addLivePreviewQueryTags\",\"url\":\"functions/utils.addLivePreviewQueryTags.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"utils\"},{\"kind\":64,\"name\":\"shouldRenderEditButton\",\"url\":\"functions/utils.shouldRenderEditButton.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"utils\"},{\"kind\":64,\"name\":\"getEditButtonPosition\",\"url\":\"functions/utils.getEditButtonPosition.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"utils\"},{\"kind\":32,\"name\":\"tooltipSingularInnerHtml\",\"url\":\"variables/utils.tooltipSingularInnerHtml.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"utils\"},{\"kind\":32,\"name\":\"tooltipMultipleInnerHtml\",\"url\":\"variables/utils.tooltipMultipleInnerHtml.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"utils\"},{\"kind\":64,\"name\":\"createSingularEditButton\",\"url\":\"functions/utils.createSingularEditButton.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"utils\"},{\"kind\":64,\"name\":\"createMultipleEditButton\",\"url\":\"functions/utils.createMultipleEditButton.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"utils\"},{\"kind\":2,\"name\":\"utils/onCookieChange\",\"url\":\"modules/utils_onCookieChange.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"onCookieChange\",\"url\":\"functions/utils_onCookieChange.onCookieChange.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"utils/onCookieChange\"},{\"kind\":2,\"name\":\"utils/public-logger\",\"url\":\"modules/utils_public_logger.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"PublicLogger\",\"url\":\"classes/utils_public_logger.PublicLogger.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"utils/public-logger\"},{\"kind\":2048,\"name\":\"logEvent\",\"url\":\"classes/utils_public_logger.PublicLogger.html#logEvent\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"utils/public-logger.PublicLogger\"},{\"kind\":2048,\"name\":\"error\",\"url\":\"classes/utils_public_logger.PublicLogger.html#error\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"utils/public-logger.PublicLogger\"},{\"kind\":2048,\"name\":\"warn\",\"url\":\"classes/utils_public_logger.PublicLogger.html#warn\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"utils/public-logger.PublicLogger\"},{\"kind\":2048,\"name\":\"debug\",\"url\":\"classes/utils_public_logger.PublicLogger.html#debug\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"utils/public-logger.PublicLogger\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/utils_public_logger.PublicLogger.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"utils/public-logger.PublicLogger\"},{\"kind\":2,\"name\":\"utils/replaceHtml\",\"url\":\"modules/utils_replaceHtml.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"rerunScriptsInDocument\",\"url\":\"functions/utils_replaceHtml.rerunScriptsInDocument.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"utils/replaceHtml\"},{\"kind\":64,\"name\":\"updateDocumentBody\",\"url\":\"functions/utils_replaceHtml.updateDocumentBody.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"utils/replaceHtml\"},{\"kind\":64,\"name\":\"replaceDocumentBody\",\"url\":\"functions/utils_replaceHtml.replaceDocumentBody.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"utils/replaceHtml\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,27.094,1,24.787,2,23.267,3,27.094]],[\"comment/0\",[]],[\"name/1\",[4,55.058]],[\"comment/1\",[]],[\"name/2\",[5,60.184]],[\"comment/2\",[]],[\"name/3\",[6,60.184]],[\"comment/3\",[]],[\"name/4\",[7,60.184]],[\"comment/4\",[]],[\"name/5\",[8,26.869]],[\"comment/5\",[]],[\"name/6\",[9,60.184]],[\"comment/6\",[]],[\"name/7\",[8,26.869]],[\"comment/7\",[]],[\"name/8\",[10,60.184]],[\"comment/8\",[]],[\"name/9\",[11,60.184]],[\"comment/9\",[]],[\"name/10\",[12,47.147]],[\"comment/10\",[]],[\"name/11\",[13,55.058]],[\"comment/11\",[]],[\"name/12\",[14,60.184]],[\"comment/12\",[]],[\"name/13\",[15,60.184]],[\"comment/13\",[]],[\"name/14\",[16,60.184]],[\"comment/14\",[]],[\"name/15\",[17,60.184]],[\"comment/15\",[]],[\"name/16\",[18,60.184]],[\"comment/16\",[]],[\"name/17\",[19,60.184]],[\"comment/17\",[]],[\"name/18\",[20,60.184]],[\"comment/18\",[]],[\"name/19\",[21,45.471]],[\"comment/19\",[]],[\"name/20\",[22,47.147]],[\"comment/20\",[]],[\"name/21\",[23,55.058]],[\"comment/21\",[]],[\"name/22\",[4,55.058]],[\"comment/22\",[]],[\"name/23\",[22,47.147]],[\"comment/23\",[]],[\"name/24\",[1,39.129,2,36.73]],[\"comment/24\",[]],[\"name/25\",[22,47.147]],[\"comment/25\",[]],[\"name/26\",[21,45.471]],[\"comment/26\",[]],[\"name/27\",[24,60.184]],[\"comment/27\",[]],[\"name/28\",[25,60.184]],[\"comment/28\",[]],[\"name/29\",[26,60.184]],[\"comment/29\",[]],[\"name/30\",[8,26.869]],[\"comment/30\",[]],[\"name/31\",[27,60.184]],[\"comment/31\",[]],[\"name/32\",[28,33.946]],[\"comment/32\",[]],[\"name/33\",[29,60.184]],[\"comment/33\",[]],[\"name/34\",[30,60.184]],[\"comment/34\",[]],[\"name/35\",[31,60.184]],[\"comment/35\",[]],[\"name/36\",[32,60.184]],[\"comment/36\",[]],[\"name/37\",[33,60.184]],[\"comment/37\",[]],[\"name/38\",[34,60.184]],[\"comment/38\",[]],[\"name/39\",[35,60.184]],[\"comment/39\",[]],[\"name/40\",[12,47.147]],[\"comment/40\",[]],[\"name/41\",[13,55.058]],[\"comment/41\",[]],[\"name/42\",[36,60.184]],[\"comment/42\",[]],[\"name/43\",[37,60.184]],[\"comment/43\",[]],[\"name/44\",[38,60.184]],[\"comment/44\",[]],[\"name/45\",[39,60.184]],[\"comment/45\",[]],[\"name/46\",[40,60.184]],[\"comment/46\",[]],[\"name/47\",[41,60.184]],[\"comment/47\",[]],[\"name/48\",[42,60.184]],[\"comment/48\",[]],[\"name/49\",[21,45.471]],[\"comment/49\",[]],[\"name/50\",[43,60.184]],[\"comment/50\",[]],[\"name/51\",[44,60.184]],[\"comment/51\",[]],[\"name/52\",[45,60.184]],[\"comment/52\",[]],[\"name/53\",[46,60.184]],[\"comment/53\",[]],[\"name/54\",[47,60.184]],[\"comment/54\",[]],[\"name/55\",[48,60.184]],[\"comment/55\",[]],[\"name/56\",[49,60.184]],[\"comment/56\",[]],[\"name/57\",[50,60.184]],[\"comment/57\",[]],[\"name/58\",[51,60.184]],[\"comment/58\",[]],[\"name/59\",[52,60.184]],[\"comment/59\",[]],[\"name/60\",[53,60.184]],[\"comment/60\",[]],[\"name/61\",[54,60.184]],[\"comment/61\",[]],[\"name/62\",[55,60.184]],[\"comment/62\",[]],[\"name/63\",[56,60.184]],[\"comment/63\",[]],[\"name/64\",[57,60.184]],[\"comment/64\",[]],[\"name/65\",[58,60.184]],[\"comment/65\",[]],[\"name/66\",[59,60.184]],[\"comment/66\",[]],[\"name/67\",[60,60.184]],[\"comment/67\",[]],[\"name/68\",[61,60.184]],[\"comment/68\",[]],[\"name/69\",[62,60.184]],[\"comment/69\",[]],[\"name/70\",[63,60.184]],[\"comment/70\",[]],[\"name/71\",[64,60.184]],[\"comment/71\",[]],[\"name/72\",[65,60.184]],[\"comment/72\",[]],[\"name/73\",[66,60.184]],[\"comment/73\",[]],[\"name/74\",[67,60.184]],[\"comment/74\",[]],[\"name/75\",[8,26.869]],[\"comment/75\",[]],[\"name/76\",[68,60.184]],[\"comment/76\",[]],[\"name/77\",[69,60.184]],[\"comment/77\",[]],[\"name/78\",[70,60.184]],[\"comment/78\",[]],[\"name/79\",[71,60.184]],[\"comment/79\",[]],[\"name/80\",[72,60.184]],[\"comment/80\",[]],[\"name/81\",[21,45.471]],[\"comment/81\",[]],[\"name/82\",[73,60.184]],[\"comment/82\",[]],[\"name/83\",[74,60.184]],[\"comment/83\",[]],[\"name/84\",[75,60.184]],[\"comment/84\",[]],[\"name/85\",[76,60.184]],[\"comment/85\",[]],[\"name/86\",[77,60.184]],[\"comment/86\",[]],[\"name/87\",[78,60.184]],[\"comment/87\",[]],[\"name/88\",[79,60.184]],[\"comment/88\",[]],[\"name/89\",[80,60.184]],[\"comment/89\",[]],[\"name/90\",[81,60.184]],[\"comment/90\",[]],[\"name/91\",[82,60.184]],[\"comment/91\",[]],[\"name/92\",[83,60.184]],[\"comment/92\",[]],[\"name/93\",[84,60.184]],[\"comment/93\",[]],[\"name/94\",[85,60.184]],[\"comment/94\",[]],[\"name/95\",[86,60.184]],[\"comment/95\",[]],[\"name/96\",[87,60.184]],[\"comment/96\",[]],[\"name/97\",[88,60.184]],[\"comment/97\",[]],[\"name/98\",[89,60.184]],[\"comment/98\",[]],[\"name/99\",[90,60.184]],[\"comment/99\",[]],[\"name/100\",[91,60.184]],[\"comment/100\",[]],[\"name/101\",[92,60.184]],[\"comment/101\",[]],[\"name/102\",[93,60.184]],[\"comment/102\",[]],[\"name/103\",[94,60.184]],[\"comment/103\",[]],[\"name/104\",[95,60.184]],[\"comment/104\",[]],[\"name/105\",[96,60.184]],[\"comment/105\",[]],[\"name/106\",[97,60.184]],[\"comment/106\",[]],[\"name/107\",[22,47.147]],[\"comment/107\",[]],[\"name/108\",[98,60.184]],[\"comment/108\",[]],[\"name/109\",[99,60.184]],[\"comment/109\",[]],[\"name/110\",[100,60.184]],[\"comment/110\",[]],[\"name/111\",[101,60.184]],[\"comment/111\",[]],[\"name/112\",[102,60.184]],[\"comment/112\",[]],[\"name/113\",[103,60.184]],[\"comment/113\",[]],[\"name/114\",[104,60.184]],[\"comment/114\",[]],[\"name/115\",[105,60.184]],[\"comment/115\",[]],[\"name/116\",[106,60.184]],[\"comment/116\",[]],[\"name/117\",[8,26.869]],[\"comment/117\",[]],[\"name/118\",[107,60.184]],[\"comment/118\",[]],[\"name/119\",[8,26.869]],[\"comment/119\",[]],[\"name/120\",[108,60.184]],[\"comment/120\",[]],[\"name/121\",[109,60.184]],[\"comment/121\",[]],[\"name/122\",[110,60.184]],[\"comment/122\",[]],[\"name/123\",[111,49.16]],[\"comment/123\",[]],[\"name/124\",[112,60.184]],[\"comment/124\",[]],[\"name/125\",[113,60.184]],[\"comment/125\",[]],[\"name/126\",[114,60.184]],[\"comment/126\",[]],[\"name/127\",[115,51.682]],[\"comment/127\",[]],[\"name/128\",[116,60.184]],[\"comment/128\",[]],[\"name/129\",[117,60.184]],[\"comment/129\",[]],[\"name/130\",[118,60.184]],[\"comment/130\",[]],[\"name/131\",[119,60.184]],[\"comment/131\",[]],[\"name/132\",[120,60.184]],[\"comment/132\",[]],[\"name/133\",[121,60.184]],[\"comment/133\",[]],[\"name/134\",[122,60.184]],[\"comment/134\",[]],[\"name/135\",[123,60.184]],[\"comment/135\",[]],[\"name/136\",[124,60.184]],[\"comment/136\",[]],[\"name/137\",[125,60.184]],[\"comment/137\",[]],[\"name/138\",[126,60.184]],[\"comment/138\",[]],[\"name/139\",[127,60.184]],[\"comment/139\",[]],[\"name/140\",[128,60.184]],[\"comment/140\",[]],[\"name/141\",[129,60.184]],[\"comment/141\",[]],[\"name/142\",[130,60.184]],[\"comment/142\",[]],[\"name/143\",[131,60.184]],[\"comment/143\",[]],[\"name/144\",[132,60.184]],[\"comment/144\",[]],[\"name/145\",[133,60.184]],[\"comment/145\",[]],[\"name/146\",[134,60.184]],[\"comment/146\",[]],[\"name/147\",[135,60.184]],[\"comment/147\",[]],[\"name/148\",[136,60.184]],[\"comment/148\",[]],[\"name/149\",[137,60.184]],[\"comment/149\",[]],[\"name/150\",[138,60.184]],[\"comment/150\",[]],[\"name/151\",[139,34.447]],[\"comment/151\",[]],[\"name/152\",[140,34.447]],[\"comment/152\",[]],[\"name/153\",[8,26.869]],[\"comment/153\",[]],[\"name/154\",[141,55.058]],[\"comment/154\",[]],[\"name/155\",[142,44.035]],[\"comment/155\",[]],[\"name/156\",[143,34.447]],[\"comment/156\",[]],[\"name/157\",[144,34.447]],[\"comment/157\",[]],[\"name/158\",[145,33.468]],[\"comment/158\",[]],[\"name/159\",[146,34.447]],[\"comment/159\",[]],[\"name/160\",[28,33.946]],[\"comment/160\",[]],[\"name/161\",[147,34.447]],[\"comment/161\",[]],[\"name/162\",[148,60.184]],[\"comment/162\",[]],[\"name/163\",[139,34.447]],[\"comment/163\",[]],[\"name/164\",[140,34.447]],[\"comment/164\",[]],[\"name/165\",[8,26.869]],[\"comment/165\",[]],[\"name/166\",[149,36.751]],[\"comment/166\",[]],[\"name/167\",[150,44.035]],[\"comment/167\",[]],[\"name/168\",[142,44.035]],[\"comment/168\",[]],[\"name/169\",[151,45.471]],[\"comment/169\",[]],[\"name/170\",[152,51.682]],[\"comment/170\",[]],[\"name/171\",[8,26.869]],[\"comment/171\",[]],[\"name/172\",[151,45.471]],[\"comment/172\",[]],[\"name/173\",[145,33.468]],[\"comment/173\",[]],[\"name/174\",[146,34.447]],[\"comment/174\",[]],[\"name/175\",[143,34.447]],[\"comment/175\",[]],[\"name/176\",[28,33.946]],[\"comment/176\",[]],[\"name/177\",[147,34.447]],[\"comment/177\",[]],[\"name/178\",[144,34.447]],[\"comment/178\",[]],[\"name/179\",[153,60.184]],[\"comment/179\",[]],[\"name/180\",[139,34.447]],[\"comment/180\",[]],[\"name/181\",[140,34.447]],[\"comment/181\",[]],[\"name/182\",[8,26.869]],[\"comment/182\",[]],[\"name/183\",[149,36.751]],[\"comment/183\",[]],[\"name/184\",[150,44.035]],[\"comment/184\",[]],[\"name/185\",[111,49.16]],[\"comment/185\",[]],[\"name/186\",[142,44.035]],[\"comment/186\",[]],[\"name/187\",[151,45.471]],[\"comment/187\",[]],[\"name/188\",[152,51.682]],[\"comment/188\",[]],[\"name/189\",[8,26.869]],[\"comment/189\",[]],[\"name/190\",[151,45.471]],[\"comment/190\",[]],[\"name/191\",[145,33.468]],[\"comment/191\",[]],[\"name/192\",[146,34.447]],[\"comment/192\",[]],[\"name/193\",[143,34.447]],[\"comment/193\",[]],[\"name/194\",[28,33.946]],[\"comment/194\",[]],[\"name/195\",[147,34.447]],[\"comment/195\",[]],[\"name/196\",[144,34.447]],[\"comment/196\",[]],[\"name/197\",[154,60.184]],[\"comment/197\",[]],[\"name/198\",[139,34.447]],[\"comment/198\",[]],[\"name/199\",[140,34.447]],[\"comment/199\",[]],[\"name/200\",[8,26.869]],[\"comment/200\",[]],[\"name/201\",[155,60.184]],[\"comment/201\",[]],[\"name/202\",[149,36.751]],[\"comment/202\",[]],[\"name/203\",[111,49.16]],[\"comment/203\",[]],[\"name/204\",[156,51.682]],[\"comment/204\",[]],[\"name/205\",[157,51.682]],[\"comment/205\",[]],[\"name/206\",[142,44.035]],[\"comment/206\",[]],[\"name/207\",[145,33.468]],[\"comment/207\",[]],[\"name/208\",[146,34.447]],[\"comment/208\",[]],[\"name/209\",[143,34.447]],[\"comment/209\",[]],[\"name/210\",[28,33.946]],[\"comment/210\",[]],[\"name/211\",[147,34.447]],[\"comment/211\",[]],[\"name/212\",[144,34.447]],[\"comment/212\",[]],[\"name/213\",[158,60.184]],[\"comment/213\",[]],[\"name/214\",[139,34.447]],[\"comment/214\",[]],[\"name/215\",[140,34.447]],[\"comment/215\",[]],[\"name/216\",[8,26.869]],[\"comment/216\",[]],[\"name/217\",[159,60.184]],[\"comment/217\",[]],[\"name/218\",[160,60.184]],[\"comment/218\",[]],[\"name/219\",[149,36.751]],[\"comment/219\",[]],[\"name/220\",[150,44.035]],[\"comment/220\",[]],[\"name/221\",[111,49.16]],[\"comment/221\",[]],[\"name/222\",[156,51.682]],[\"comment/222\",[]],[\"name/223\",[157,51.682]],[\"comment/223\",[]],[\"name/224\",[151,45.471]],[\"comment/224\",[]],[\"name/225\",[152,51.682]],[\"comment/225\",[]],[\"name/226\",[8,26.869]],[\"comment/226\",[]],[\"name/227\",[151,45.471]],[\"comment/227\",[]],[\"name/228\",[161,51.682]],[\"comment/228\",[]],[\"name/229\",[145,33.468]],[\"comment/229\",[]],[\"name/230\",[146,34.447]],[\"comment/230\",[]],[\"name/231\",[143,34.447]],[\"comment/231\",[]],[\"name/232\",[28,33.946]],[\"comment/232\",[]],[\"name/233\",[147,34.447]],[\"comment/233\",[]],[\"name/234\",[144,34.447]],[\"comment/234\",[]],[\"name/235\",[162,60.184]],[\"comment/235\",[]],[\"name/236\",[139,34.447]],[\"comment/236\",[]],[\"name/237\",[145,33.468]],[\"comment/237\",[]],[\"name/238\",[140,34.447]],[\"comment/238\",[]],[\"name/239\",[8,26.869]],[\"comment/239\",[]],[\"name/240\",[141,55.058]],[\"comment/240\",[]],[\"name/241\",[142,44.035]],[\"comment/241\",[]],[\"name/242\",[146,34.447]],[\"comment/242\",[]],[\"name/243\",[143,34.447]],[\"comment/243\",[]],[\"name/244\",[28,33.946]],[\"comment/244\",[]],[\"name/245\",[147,34.447]],[\"comment/245\",[]],[\"name/246\",[144,34.447]],[\"comment/246\",[]],[\"name/247\",[163,60.184]],[\"comment/247\",[]],[\"name/248\",[139,34.447]],[\"comment/248\",[]],[\"name/249\",[140,34.447]],[\"comment/249\",[]],[\"name/250\",[8,26.869]],[\"comment/250\",[]],[\"name/251\",[149,36.751]],[\"comment/251\",[]],[\"name/252\",[164,60.184]],[\"comment/252\",[]],[\"name/253\",[142,44.035]],[\"comment/253\",[]],[\"name/254\",[145,33.468]],[\"comment/254\",[]],[\"name/255\",[146,34.447]],[\"comment/255\",[]],[\"name/256\",[143,34.447]],[\"comment/256\",[]],[\"name/257\",[28,33.946]],[\"comment/257\",[]],[\"name/258\",[147,34.447]],[\"comment/258\",[]],[\"name/259\",[144,34.447]],[\"comment/259\",[]],[\"name/260\",[165,60.184]],[\"comment/260\",[]],[\"name/261\",[166,60.184]],[\"comment/261\",[]],[\"name/262\",[140,34.447]],[\"comment/262\",[]],[\"name/263\",[8,26.869]],[\"comment/263\",[]],[\"name/264\",[167,60.184]],[\"comment/264\",[]],[\"name/265\",[168,60.184]],[\"comment/265\",[]],[\"name/266\",[169,55.058]],[\"comment/266\",[]],[\"name/267\",[139,34.447]],[\"comment/267\",[]],[\"name/268\",[145,33.468]],[\"comment/268\",[]],[\"name/269\",[146,34.447]],[\"comment/269\",[]],[\"name/270\",[143,34.447]],[\"comment/270\",[]],[\"name/271\",[28,33.946]],[\"comment/271\",[]],[\"name/272\",[147,34.447]],[\"comment/272\",[]],[\"name/273\",[144,34.447]],[\"comment/273\",[]],[\"name/274\",[170,60.184]],[\"comment/274\",[]],[\"name/275\",[139,34.447]],[\"comment/275\",[]],[\"name/276\",[171,60.184]],[\"comment/276\",[]],[\"name/277\",[172,60.184]],[\"comment/277\",[]],[\"name/278\",[8,26.869]],[\"comment/278\",[]],[\"name/279\",[173,60.184]],[\"comment/279\",[]],[\"name/280\",[174,60.184]],[\"comment/280\",[]],[\"name/281\",[140,34.447]],[\"comment/281\",[]],[\"name/282\",[8,26.869]],[\"comment/282\",[]],[\"name/283\",[149,36.751]],[\"comment/283\",[]],[\"name/284\",[150,44.035]],[\"comment/284\",[]],[\"name/285\",[142,44.035]],[\"comment/285\",[]],[\"name/286\",[145,33.468]],[\"comment/286\",[]],[\"name/287\",[146,34.447]],[\"comment/287\",[]],[\"name/288\",[143,34.447]],[\"comment/288\",[]],[\"name/289\",[28,33.946]],[\"comment/289\",[]],[\"name/290\",[147,34.447]],[\"comment/290\",[]],[\"name/291\",[144,34.447]],[\"comment/291\",[]],[\"name/292\",[175,60.184]],[\"comment/292\",[]],[\"name/293\",[139,34.447]],[\"comment/293\",[]],[\"name/294\",[140,34.447]],[\"comment/294\",[]],[\"name/295\",[8,26.869]],[\"comment/295\",[]],[\"name/296\",[149,36.751]],[\"comment/296\",[]],[\"name/297\",[150,44.035]],[\"comment/297\",[]],[\"name/298\",[145,33.468]],[\"comment/298\",[]],[\"name/299\",[146,34.447]],[\"comment/299\",[]],[\"name/300\",[143,34.447]],[\"comment/300\",[]],[\"name/301\",[28,33.946]],[\"comment/301\",[]],[\"name/302\",[147,34.447]],[\"comment/302\",[]],[\"name/303\",[144,34.447]],[\"comment/303\",[]],[\"name/304\",[176,60.184]],[\"comment/304\",[]],[\"name/305\",[139,34.447]],[\"comment/305\",[]],[\"name/306\",[140,34.447]],[\"comment/306\",[]],[\"name/307\",[8,26.869]],[\"comment/307\",[]],[\"name/308\",[149,36.751]],[\"comment/308\",[]],[\"name/309\",[150,44.035]],[\"comment/309\",[]],[\"name/310\",[145,33.468]],[\"comment/310\",[]],[\"name/311\",[146,34.447]],[\"comment/311\",[]],[\"name/312\",[143,34.447]],[\"comment/312\",[]],[\"name/313\",[28,33.946]],[\"comment/313\",[]],[\"name/314\",[147,34.447]],[\"comment/314\",[]],[\"name/315\",[144,34.447]],[\"comment/315\",[]],[\"name/316\",[177,60.184]],[\"comment/316\",[]],[\"name/317\",[139,34.447]],[\"comment/317\",[]],[\"name/318\",[178,60.184]],[\"comment/318\",[]],[\"name/319\",[179,60.184]],[\"comment/319\",[]],[\"name/320\",[140,34.447]],[\"comment/320\",[]],[\"name/321\",[8,26.869]],[\"comment/321\",[]],[\"name/322\",[149,36.751]],[\"comment/322\",[]],[\"name/323\",[145,33.468]],[\"comment/323\",[]],[\"name/324\",[146,34.447]],[\"comment/324\",[]],[\"name/325\",[143,34.447]],[\"comment/325\",[]],[\"name/326\",[28,33.946]],[\"comment/326\",[]],[\"name/327\",[147,34.447]],[\"comment/327\",[]],[\"name/328\",[144,34.447]],[\"comment/328\",[]],[\"name/329\",[180,60.184]],[\"comment/329\",[]],[\"name/330\",[139,34.447]],[\"comment/330\",[]],[\"name/331\",[181,60.184]],[\"comment/331\",[]],[\"name/332\",[140,34.447]],[\"comment/332\",[]],[\"name/333\",[8,26.869]],[\"comment/333\",[]],[\"name/334\",[149,36.751]],[\"comment/334\",[]],[\"name/335\",[156,51.682]],[\"comment/335\",[]],[\"name/336\",[145,33.468]],[\"comment/336\",[]],[\"name/337\",[146,34.447]],[\"comment/337\",[]],[\"name/338\",[143,34.447]],[\"comment/338\",[]],[\"name/339\",[28,33.946]],[\"comment/339\",[]],[\"name/340\",[147,34.447]],[\"comment/340\",[]],[\"name/341\",[144,34.447]],[\"comment/341\",[]],[\"name/342\",[182,60.184]],[\"comment/342\",[]],[\"name/343\",[139,34.447]],[\"comment/343\",[]],[\"name/344\",[140,34.447]],[\"comment/344\",[]],[\"name/345\",[8,26.869]],[\"comment/345\",[]],[\"name/346\",[149,36.751]],[\"comment/346\",[]],[\"name/347\",[150,44.035]],[\"comment/347\",[]],[\"name/348\",[8,26.869]],[\"comment/348\",[]],[\"name/349\",[183,49.16]],[\"comment/349\",[]],[\"name/350\",[115,51.682]],[\"comment/350\",[]],[\"name/351\",[145,33.468]],[\"comment/351\",[]],[\"name/352\",[146,34.447]],[\"comment/352\",[]],[\"name/353\",[143,34.447]],[\"comment/353\",[]],[\"name/354\",[28,33.946]],[\"comment/354\",[]],[\"name/355\",[147,34.447]],[\"comment/355\",[]],[\"name/356\",[144,34.447]],[\"comment/356\",[]],[\"name/357\",[184,60.184]],[\"comment/357\",[]],[\"name/358\",[139,34.447]],[\"comment/358\",[]],[\"name/359\",[161,51.682]],[\"comment/359\",[]],[\"name/360\",[140,34.447]],[\"comment/360\",[]],[\"name/361\",[8,26.869]],[\"comment/361\",[]],[\"name/362\",[185,60.184]],[\"comment/362\",[]],[\"name/363\",[186,60.184]],[\"comment/363\",[]],[\"name/364\",[145,33.468]],[\"comment/364\",[]],[\"name/365\",[146,34.447]],[\"comment/365\",[]],[\"name/366\",[143,34.447]],[\"comment/366\",[]],[\"name/367\",[28,33.946]],[\"comment/367\",[]],[\"name/368\",[147,34.447]],[\"comment/368\",[]],[\"name/369\",[144,34.447]],[\"comment/369\",[]],[\"name/370\",[187,60.184]],[\"comment/370\",[]],[\"name/371\",[139,34.447]],[\"comment/371\",[]],[\"name/372\",[140,34.447]],[\"comment/372\",[]],[\"name/373\",[8,26.869]],[\"comment/373\",[]],[\"name/374\",[188,60.184]],[\"comment/374\",[]],[\"name/375\",[189,60.184]],[\"comment/375\",[]],[\"name/376\",[190,60.184]],[\"comment/376\",[]],[\"name/377\",[191,47.147]],[\"comment/377\",[]],[\"name/378\",[145,33.468]],[\"comment/378\",[]],[\"name/379\",[146,34.447]],[\"comment/379\",[]],[\"name/380\",[143,34.447]],[\"comment/380\",[]],[\"name/381\",[28,33.946]],[\"comment/381\",[]],[\"name/382\",[147,34.447]],[\"comment/382\",[]],[\"name/383\",[144,34.447]],[\"comment/383\",[]],[\"name/384\",[192,60.184]],[\"comment/384\",[]],[\"name/385\",[193,60.184]],[\"comment/385\",[]],[\"name/386\",[194,60.184]],[\"comment/386\",[]],[\"name/387\",[183,49.16]],[\"comment/387\",[]],[\"name/388\",[145,33.468]],[\"comment/388\",[]],[\"name/389\",[191,47.147]],[\"comment/389\",[]],[\"name/390\",[195,60.184]],[\"comment/390\",[]],[\"name/391\",[139,34.447]],[\"comment/391\",[]],[\"name/392\",[196,60.184]],[\"comment/392\",[]],[\"name/393\",[140,34.447]],[\"comment/393\",[]],[\"name/394\",[8,26.869]],[\"comment/394\",[]],[\"name/395\",[197,55.058]],[\"comment/395\",[]],[\"name/396\",[149,36.751]],[\"comment/396\",[]],[\"name/397\",[145,33.468]],[\"comment/397\",[]],[\"name/398\",[146,34.447]],[\"comment/398\",[]],[\"name/399\",[143,34.447]],[\"comment/399\",[]],[\"name/400\",[28,33.946]],[\"comment/400\",[]],[\"name/401\",[147,34.447]],[\"comment/401\",[]],[\"name/402\",[144,34.447]],[\"comment/402\",[]],[\"name/403\",[198,60.184]],[\"comment/403\",[]],[\"name/404\",[139,34.447]],[\"comment/404\",[]],[\"name/405\",[140,34.447]],[\"comment/405\",[]],[\"name/406\",[8,26.869]],[\"comment/406\",[]],[\"name/407\",[149,36.751]],[\"comment/407\",[]],[\"name/408\",[197,55.058]],[\"comment/408\",[]],[\"name/409\",[191,47.147]],[\"comment/409\",[]],[\"name/410\",[145,33.468]],[\"comment/410\",[]],[\"name/411\",[146,34.447]],[\"comment/411\",[]],[\"name/412\",[143,34.447]],[\"comment/412\",[]],[\"name/413\",[28,33.946]],[\"comment/413\",[]],[\"name/414\",[147,34.447]],[\"comment/414\",[]],[\"name/415\",[144,34.447]],[\"comment/415\",[]],[\"name/416\",[199,60.184]],[\"comment/416\",[]],[\"name/417\",[139,34.447]],[\"comment/417\",[]],[\"name/418\",[161,51.682]],[\"comment/418\",[]],[\"name/419\",[140,34.447]],[\"comment/419\",[]],[\"name/420\",[8,26.869]],[\"comment/420\",[]],[\"name/421\",[149,36.751]],[\"comment/421\",[]],[\"name/422\",[191,47.147]],[\"comment/422\",[]],[\"name/423\",[145,33.468]],[\"comment/423\",[]],[\"name/424\",[146,34.447]],[\"comment/424\",[]],[\"name/425\",[143,34.447]],[\"comment/425\",[]],[\"name/426\",[28,33.946]],[\"comment/426\",[]],[\"name/427\",[147,34.447]],[\"comment/427\",[]],[\"name/428\",[144,34.447]],[\"comment/428\",[]],[\"name/429\",[200,60.184]],[\"comment/429\",[]],[\"name/430\",[201,60.184]],[\"comment/430\",[]],[\"name/431\",[202,60.184]],[\"comment/431\",[]],[\"name/432\",[183,49.16]],[\"comment/432\",[]],[\"name/433\",[149,36.751]],[\"comment/433\",[]],[\"name/434\",[145,33.468]],[\"comment/434\",[]],[\"name/435\",[203,60.184]],[\"comment/435\",[]],[\"name/436\",[204,60.184]],[\"comment/436\",[]],[\"name/437\",[157,51.682]],[\"comment/437\",[]],[\"name/438\",[8,26.869]],[\"comment/438\",[]],[\"name/439\",[205,60.184]],[\"comment/439\",[]],[\"name/440\",[206,60.184]],[\"comment/440\",[]],[\"name/441\",[183,49.16]],[\"comment/441\",[]],[\"name/442\",[191,47.147]],[\"comment/442\",[]],[\"name/443\",[207,60.184]],[\"comment/443\",[]],[\"name/444\",[208,55.058]],[\"comment/444\",[]],[\"name/445\",[209,55.058]],[\"comment/445\",[]],[\"name/446\",[210,55.058]],[\"comment/446\",[]],[\"name/447\",[211,60.184]],[\"comment/447\",[]],[\"name/448\",[212,51.682]],[\"comment/448\",[]],[\"name/449\",[213,60.184]],[\"comment/449\",[]],[\"name/450\",[214,60.184]],[\"comment/450\",[]],[\"name/451\",[215,60.184]],[\"comment/451\",[]],[\"name/452\",[216,60.184]],[\"comment/452\",[]],[\"name/453\",[23,55.058]],[\"comment/453\",[]],[\"name/454\",[217,60.184]],[\"comment/454\",[]],[\"name/455\",[218,60.184]],[\"comment/455\",[]],[\"name/456\",[219,60.184]],[\"comment/456\",[]],[\"name/457\",[220,60.184]],[\"comment/457\",[]],[\"name/458\",[221,60.184]],[\"comment/458\",[]],[\"name/459\",[222,60.184]],[\"comment/459\",[]],[\"name/460\",[223,60.184]],[\"comment/460\",[]],[\"name/461\",[208,55.058]],[\"comment/461\",[]],[\"name/462\",[224,60.184]],[\"comment/462\",[]],[\"name/463\",[225,60.184]],[\"comment/463\",[]],[\"name/464\",[226,60.184]],[\"comment/464\",[]],[\"name/465\",[12,47.147]],[\"comment/465\",[]],[\"name/466\",[209,55.058]],[\"comment/466\",[]],[\"name/467\",[210,55.058]],[\"comment/467\",[]],[\"name/468\",[227,55.058]],[\"comment/468\",[]],[\"name/469\",[228,60.184]],[\"comment/469\",[]],[\"name/470\",[229,60.184]],[\"comment/470\",[]],[\"name/471\",[230,60.184]],[\"comment/471\",[]],[\"name/472\",[231,60.184]],[\"comment/472\",[]],[\"name/473\",[115,51.682]],[\"comment/473\",[]],[\"name/474\",[232,60.184]],[\"comment/474\",[]],[\"name/475\",[227,55.058]],[\"comment/475\",[]],[\"name/476\",[233,60.184]],[\"comment/476\",[]],[\"name/477\",[8,26.869]],[\"comment/477\",[]],[\"name/478\",[234,60.184]],[\"comment/478\",[]],[\"name/479\",[235,51.682]],[\"comment/479\",[]],[\"name/480\",[236,51.682]],[\"comment/480\",[]],[\"name/481\",[237,60.184]],[\"comment/481\",[]],[\"name/482\",[238,55.058]],[\"comment/482\",[]],[\"name/483\",[236,51.682]],[\"comment/483\",[]],[\"name/484\",[239,55.058]],[\"comment/484\",[]],[\"name/485\",[240,55.058]],[\"comment/485\",[]],[\"name/486\",[235,51.682]],[\"comment/486\",[]],[\"name/487\",[212,51.682]],[\"comment/487\",[]],[\"name/488\",[241,60.184]],[\"comment/488\",[]],[\"name/489\",[238,55.058]],[\"comment/489\",[]],[\"name/490\",[236,51.682]],[\"comment/490\",[]],[\"name/491\",[235,51.682]],[\"comment/491\",[]],[\"name/492\",[212,51.682]],[\"comment/492\",[]],[\"name/493\",[242,60.184]],[\"comment/493\",[]],[\"name/494\",[243,60.184]],[\"comment/494\",[]],[\"name/495\",[2,51.682]],[\"comment/495\",[]],[\"name/496\",[244,60.184]],[\"comment/496\",[]],[\"name/497\",[245,60.184]],[\"comment/497\",[]],[\"name/498\",[246,55.058]],[\"comment/498\",[]],[\"name/499\",[247,51.682]],[\"comment/499\",[]],[\"name/500\",[248,55.058]],[\"comment/500\",[]],[\"name/501\",[249,55.058]],[\"comment/501\",[]],[\"name/502\",[250,51.682]],[\"comment/502\",[]],[\"name/503\",[251,55.058]],[\"comment/503\",[]],[\"name/504\",[252,60.184]],[\"comment/504\",[]],[\"name/505\",[8,26.869]],[\"comment/505\",[]],[\"name/506\",[253,55.058]],[\"comment/506\",[]],[\"name/507\",[12,47.147]],[\"comment/507\",[]],[\"name/508\",[254,55.058]],[\"comment/508\",[]],[\"name/509\",[255,55.058]],[\"comment/509\",[]],[\"name/510\",[256,60.184]],[\"comment/510\",[]],[\"name/511\",[247,51.682]],[\"comment/511\",[]],[\"name/512\",[257,60.184]],[\"comment/512\",[]],[\"name/513\",[258,60.184]],[\"comment/513\",[]],[\"name/514\",[259,60.184]],[\"comment/514\",[]],[\"name/515\",[260,60.184]],[\"comment/515\",[]],[\"name/516\",[246,55.058]],[\"comment/516\",[]],[\"name/517\",[253,55.058]],[\"comment/517\",[]],[\"name/518\",[247,51.682]],[\"comment/518\",[]],[\"name/519\",[248,55.058]],[\"comment/519\",[]],[\"name/520\",[249,55.058]],[\"comment/520\",[]],[\"name/521\",[250,51.682]],[\"comment/521\",[]],[\"name/522\",[251,55.058]],[\"comment/522\",[]],[\"name/523\",[254,55.058]],[\"comment/523\",[]],[\"name/524\",[255,55.058]],[\"comment/524\",[]],[\"name/525\",[261,60.184]],[\"comment/525\",[]],[\"name/526\",[262,47.147]],[\"comment/526\",[]],[\"name/527\",[263,60.184]],[\"comment/527\",[]],[\"name/528\",[264,60.184]],[\"comment/528\",[]],[\"name/529\",[265,47.147]],[\"comment/529\",[]],[\"name/530\",[266,49.16]],[\"comment/530\",[]],[\"name/531\",[8,26.869]],[\"comment/531\",[]],[\"name/532\",[12,47.147]],[\"comment/532\",[]],[\"name/533\",[262,47.147]],[\"comment/533\",[]],[\"name/534\",[267,60.184]],[\"comment/534\",[]],[\"name/535\",[265,47.147]],[\"comment/535\",[]],[\"name/536\",[266,49.16]],[\"comment/536\",[]],[\"name/537\",[8,26.869]],[\"comment/537\",[]],[\"name/538\",[239,55.058]],[\"comment/538\",[]],[\"name/539\",[240,55.058]],[\"comment/539\",[]],[\"name/540\",[262,47.147]],[\"comment/540\",[]],[\"name/541\",[268,60.184]],[\"comment/541\",[]],[\"name/542\",[265,47.147]],[\"comment/542\",[]],[\"name/543\",[266,49.16]],[\"comment/543\",[]],[\"name/544\",[8,26.869]],[\"comment/544\",[]],[\"name/545\",[265,47.147]],[\"comment/545\",[]],[\"name/546\",[262,47.147]],[\"comment/546\",[]],[\"name/547\",[269,60.184]],[\"comment/547\",[]],[\"name/548\",[265,47.147]],[\"comment/548\",[]],[\"name/549\",[266,49.16]],[\"comment/549\",[]],[\"name/550\",[8,26.869]],[\"comment/550\",[]],[\"name/551\",[270,60.184]],[\"comment/551\",[]],[\"name/552\",[262,47.147]],[\"comment/552\",[]],[\"name/553\",[271,60.184]],[\"comment/553\",[]],[\"name/554\",[272,60.184]],[\"comment/554\",[]],[\"name/555\",[273,60.184]],[\"comment/555\",[]],[\"name/556\",[274,60.184]],[\"comment/556\",[]],[\"name/557\",[8,26.869]],[\"comment/557\",[]],[\"name/558\",[275,60.184]],[\"comment/558\",[]],[\"name/559\",[8,26.869]],[\"comment/559\",[]],[\"name/560\",[276,60.184]],[\"comment/560\",[]],[\"name/561\",[277,60.184]],[\"comment/561\",[]],[\"name/562\",[278,60.184]],[\"comment/562\",[]],[\"name/563\",[22,47.147]],[\"comment/563\",[]],[\"name/564\",[169,55.058]],[\"comment/564\",[]],[\"name/565\",[279,60.184]],[\"comment/565\",[]],[\"name/566\",[280,60.184]],[\"comment/566\",[]],[\"name/567\",[281,60.184]],[\"comment/567\",[]],[\"name/568\",[282,60.184]],[\"comment/568\",[]],[\"name/569\",[21,45.471]],[\"comment/569\",[]],[\"name/570\",[283,60.184]],[\"comment/570\",[]],[\"name/571\",[284,60.184]],[\"comment/571\",[]],[\"name/572\",[285,60.184]],[\"comment/572\",[]],[\"name/573\",[286,60.184]],[\"comment/573\",[]],[\"name/574\",[287,60.184]],[\"comment/574\",[]],[\"name/575\",[288,60.184]],[\"comment/575\",[]],[\"name/576\",[289,60.184]],[\"comment/576\",[]],[\"name/577\",[290,60.184]],[\"comment/577\",[]],[\"name/578\",[8,26.869]],[\"comment/578\",[]],[\"name/579\",[250,51.682]],[\"comment/579\",[]],[\"name/580\",[8,26.869]],[\"comment/580\",[]],[\"name/581\",[291,60.184]],[\"comment/581\",[]],[\"name/582\",[292,60.184]],[\"comment/582\",[]],[\"name/583\",[293,60.184]],[\"comment/583\",[]],[\"name/584\",[294,60.184]],[\"comment/584\",[]],[\"name/585\",[295,60.184]],[\"comment/585\",[]],[\"name/586\",[296,60.184]],[\"comment/586\",[]],[\"name/587\",[297,60.184]],[\"comment/587\",[]],[\"name/588\",[298,60.184]],[\"comment/588\",[]],[\"name/589\",[299,60.184]],[\"comment/589\",[]],[\"name/590\",[300,60.184]],[\"comment/590\",[]],[\"name/591\",[301,60.184]],[\"comment/591\",[]],[\"name/592\",[302,42.771,303,42.771]],[\"comment/592\",[]],[\"name/593\",[304,60.184]],[\"comment/593\",[]],[\"name/594\",[305,60.184]],[\"comment/594\",[]],[\"name/595\",[306,60.184]],[\"comment/595\",[]],[\"name/596\",[307,60.184]],[\"comment/596\",[]],[\"name/597\",[308,60.184]],[\"comment/597\",[]],[\"name/598\",[21,45.471]],[\"comment/598\",[]],[\"name/599\",[309,60.184]],[\"comment/599\",[]],[\"name/600\",[310,60.184]],[\"comment/600\",[]],[\"name/601\",[311,60.184]],[\"comment/601\",[]],[\"name/602\",[312,60.184]],[\"comment/602\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":8,\"name\":{\"5\":{},\"7\":{},\"30\":{},\"75\":{},\"117\":{},\"119\":{},\"153\":{},\"165\":{},\"171\":{},\"182\":{},\"189\":{},\"200\":{},\"216\":{},\"226\":{},\"239\":{},\"250\":{},\"263\":{},\"278\":{},\"282\":{},\"295\":{},\"307\":{},\"321\":{},\"333\":{},\"345\":{},\"348\":{},\"361\":{},\"373\":{},\"394\":{},\"406\":{},\"420\":{},\"438\":{},\"477\":{},\"505\":{},\"531\":{},\"537\":{},\"544\":{},\"550\":{},\"557\":{},\"559\":{},\"578\":{},\"580\":{}},\"comment\":{}}],[\"_default\",{\"_index\":141,\"name\":{\"154\":{},\"240\":{}},\"comment\":{}}],[\"_version\",{\"_index\":203,\"name\":{\"435\":{}},\"comment\":{}}],[\"add_instance\",{\"_index\":131,\"name\":{\"143\":{}},\"comment\":{}}],[\"addeditstyleonhover\",{\"_index\":30,\"name\":{\"34\":{}},\"comment\":{}}],[\"addfocusoverlay\",{\"_index\":74,\"name\":{\"83\":{}},\"comment\":{}}],[\"addlivepreviewquerytags\",{\"_index\":293,\"name\":{\"583\":{}},\"comment\":{}}],[\"addoverlay\",{\"_index\":49,\"name\":{\"56\":{}},\"comment\":{}}],[\"advanced\",{\"_index\":173,\"name\":{\"279\":{}},\"comment\":{}}],[\"allow_json_rte\",{\"_index\":159,\"name\":{\"217\":{}},\"comment\":{}}],[\"allow_rich_text\",{\"_index\":155,\"name\":{\"201\":{}},\"comment\":{}}],[\"api_key\",{\"_index\":234,\"name\":{\"478\":{}},\"comment\":{}}],[\"apikey\",{\"_index\":238,\"name\":{\"482\":{},\"489\":{}},\"comment\":{}}],[\"appendvisualeditordom\",{\"_index\":53,\"name\":{\"60\":{}},\"comment\":{}}],[\"arefieldschemaequal\",{\"_index\":70,\"name\":{\"78\":{}},\"comment\":{}}],[\"block\",{\"_index\":122,\"name\":{\"134\":{}},\"comment\":{}}],[\"blocks\",{\"_index\":196,\"name\":{\"392\":{}},\"comment\":{}}],[\"body\",{\"_index\":270,\"name\":{\"551\":{}},\"comment\":{}}],[\"boolean\",{\"_index\":121,\"name\":{\"133\":{}},\"comment\":{}}],[\"branch\",{\"_index\":235,\"name\":{\"479\":{},\"486\":{},\"491\":{}},\"comment\":{}}],[\"choices\",{\"_index\":174,\"name\":{\"280\":{}},\"comment\":{}}],[\"cleancslponproduction\",{\"_index\":248,\"name\":{\"500\":{},\"519\":{}},\"comment\":{}}],[\"cleanindividualfieldresidual\",{\"_index\":93,\"name\":{\"102\":{}},\"comment\":{}}],[\"clear\",{\"_index\":72,\"name\":{\"80\":{}},\"comment\":{}}],[\"clienturlparams\",{\"_index\":250,\"name\":{\"502\":{},\"521\":{},\"579\":{}},\"comment\":{}}],[\"config\",{\"_index\":169,\"name\":{\"266\":{},\"564\":{}},\"comment\":{}}],[\"configs\",{\"_index\":9,\"name\":{\"6\":{}},\"comment\":{}}],[\"constructor\",{\"_index\":21,\"name\":{\"19\":{},\"26\":{},\"49\":{},\"81\":{},\"569\":{},\"598\":{}},\"comment\":{}}],[\"content_type_uid\",{\"_index\":210,\"name\":{\"446\":{},\"467\":{}},\"comment\":{}}],[\"contentstack\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"contentstacklivepreview\",{\"_index\":4,\"name\":{\"1\":{},\"22\":{}},\"comment\":{}}],[\"contenttypeuid\",{\"_index\":239,\"name\":{\"484\":{},\"538\":{}},\"comment\":{}}],[\"createcslptooltip\",{\"_index\":37,\"name\":{\"43\":{}},\"comment\":{}}],[\"created_at\",{\"_index\":201,\"name\":{\"430\":{}},\"comment\":{}}],[\"createmultipleeditbutton\",{\"_index\":299,\"name\":{\"589\":{}},\"comment\":{}}],[\"createsingulareditbutton\",{\"_index\":298,\"name\":{\"588\":{}},\"comment\":{}}],[\"cslpdata\",{\"_index\":208,\"name\":{\"444\":{},\"461\":{}},\"comment\":{}}],[\"cslpdatamultiplefieldmetadata\",{\"_index\":216,\"name\":{\"452\":{}},\"comment\":{}}],[\"cslpdataparentdetails\",{\"_index\":218,\"name\":{\"455\":{}},\"comment\":{}}],[\"cslpvalue\",{\"_index\":211,\"name\":{\"447\":{}},\"comment\":{}}],[\"currentelementbesidetooltip\",{\"_index\":25,\"name\":{\"28\":{}},\"comment\":{}}],[\"custom_field\",{\"_index\":110,\"name\":{\"122\":{}},\"comment\":{}}],[\"customcursor\",{\"_index\":43,\"name\":{\"50\":{}},\"comment\":{}}],[\"data\",{\"_index\":266,\"name\":{\"530\":{},\"536\":{},\"543\":{},\"549\":{}},\"comment\":{}}],[\"data_type\",{\"_index\":139,\"name\":{\"151\":{},\"163\":{},\"180\":{},\"198\":{},\"214\":{},\"236\":{},\"248\":{},\"267\":{},\"275\":{},\"293\":{},\"305\":{},\"317\":{},\"330\":{},\"343\":{},\"358\":{},\"371\":{},\"391\":{},\"404\":{},\"417\":{}},\"comment\":{}}],[\"debug\",{\"_index\":308,\"name\":{\"597\":{}},\"comment\":{}}],[\"default\",{\"_index\":22,\"name\":{\"20\":{},\"23\":{},\"25\":{},\"107\":{},\"563\":{}},\"comment\":{}}],[\"default_value\",{\"_index\":150,\"name\":{\"167\":{},\"184\":{},\"220\":{},\"284\":{},\"297\":{},\"309\":{},\"347\":{}},\"comment\":{}}],[\"description\",{\"_index\":149,\"name\":{\"166\":{},\"183\":{},\"202\":{},\"219\":{},\"251\":{},\"283\":{},\"296\":{},\"308\":{},\"322\":{},\"334\":{},\"346\":{},\"396\":{},\"407\":{},\"421\":{},\"433\":{}},\"comment\":{}}],[\"destroy\",{\"_index\":56,\"name\":{\"63\":{}},\"comment\":{}}],[\"display_name\",{\"_index\":146,\"name\":{\"159\":{},\"174\":{},\"192\":{},\"208\":{},\"230\":{},\"242\":{},\"255\":{},\"269\":{},\"287\":{},\"299\":{},\"311\":{},\"324\":{},\"337\":{},\"352\":{},\"365\":{},\"379\":{},\"398\":{},\"411\":{},\"424\":{}},\"comment\":{}}],[\"display_type\",{\"_index\":171,\"name\":{\"276\":{}},\"comment\":{}}],[\"editableelement\",{\"_index\":223,\"name\":{\"460\":{}},\"comment\":{}}],[\"editbutton\",{\"_index\":254,\"name\":{\"508\":{},\"523\":{}},\"comment\":{}}],[\"editor\",{\"_index\":244,\"name\":{\"496\":{}},\"comment\":{}}],[\"embed_entry\",{\"_index\":160,\"name\":{\"218\":{}},\"comment\":{}}],[\"enable\",{\"_index\":247,\"name\":{\"499\":{},\"511\":{},\"518\":{}},\"comment\":{}}],[\"enabledefaultvariation\",{\"_index\":190,\"name\":{\"376\":{}},\"comment\":{}}],[\"enddate\",{\"_index\":179,\"name\":{\"319\":{}},\"comment\":{}}],[\"entry_uid\",{\"_index\":209,\"name\":{\"445\":{},\"466\":{}},\"comment\":{}}],[\"entryuid\",{\"_index\":240,\"name\":{\"485\":{},\"539\":{}},\"comment\":{}}],[\"enum\",{\"_index\":172,\"name\":{\"277\":{}},\"comment\":{}}],[\"environment\",{\"_index\":236,\"name\":{\"480\":{},\"483\":{},\"490\":{}},\"comment\":{}}],[\"error\",{\"_index\":306,\"name\":{\"595\":{}},\"comment\":{}}],[\"error_messages\",{\"_index\":152,\"name\":{\"170\":{},\"188\":{},\"225\":{}},\"comment\":{}}],[\"exclude\",{\"_index\":257,\"name\":{\"512\":{}},\"comment\":{}}],[\"experience_container\",{\"_index\":126,\"name\":{\"138\":{}},\"comment\":{}}],[\"experience_uid\",{\"_index\":188,\"name\":{\"374\":{}},\"comment\":{}}],[\"extension\",{\"_index\":167,\"name\":{\"264\":{}},\"comment\":{}}],[\"extension_uid\",{\"_index\":166,\"name\":{\"261\":{}},\"comment\":{}}],[\"extensions\",{\"_index\":181,\"name\":{\"331\":{}},\"comment\":{}}],[\"extractdetailsfromcslp\",{\"_index\":284,\"name\":{\"571\":{}},\"comment\":{}}],[\"field_metadata\",{\"_index\":140,\"name\":{\"152\":{},\"164\":{},\"181\":{},\"199\":{},\"215\":{},\"238\":{},\"249\":{},\"262\":{},\"281\":{},\"294\":{},\"306\":{},\"320\":{},\"332\":{},\"344\":{},\"360\":{},\"372\":{},\"393\":{},\"405\":{},\"419\":{}},\"comment\":{}}],[\"fielddatatype\",{\"_index\":109,\"name\":{\"121\":{}},\"comment\":{}}],[\"fieldmap\",{\"_index\":108,\"name\":{\"120\":{}},\"comment\":{}}],[\"fieldmetadata\",{\"_index\":224,\"name\":{\"462\":{}},\"comment\":{}}],[\"fieldpath\",{\"_index\":213,\"name\":{\"449\":{}},\"comment\":{}}],[\"fieldpathwithindex\",{\"_index\":214,\"name\":{\"450\":{}},\"comment\":{}}],[\"fieldschema\",{\"_index\":67,\"name\":{\"74\":{}},\"comment\":{}}],[\"fieldschemamap\",{\"_index\":66,\"name\":{\"73\":{}},\"comment\":{}}],[\"file\",{\"_index\":127,\"name\":{\"139\":{}},\"comment\":{}}],[\"focus_field\",{\"_index\":136,\"name\":{\"148\":{}},\"comment\":{}}],[\"format\",{\"_index\":151,\"name\":{\"169\":{},\"172\":{},\"187\":{},\"190\":{},\"224\":{},\"227\":{}},\"comment\":{}}],[\"from\",{\"_index\":262,\"name\":{\"526\":{},\"533\":{},\"540\":{},\"546\":{},\"552\":{}},\"comment\":{}}],[\"generateaddinstancebutton\",{\"_index\":95,\"name\":{\"104\":{}},\"comment\":{}}],[\"generatefieldschemamap\",{\"_index\":77,\"name\":{\"86\":{}},\"comment\":{}}],[\"generateredirecturl\",{\"_index\":31,\"name\":{\"35\":{}},\"comment\":{}}],[\"generatereplaceassetbutton\",{\"_index\":59,\"name\":{\"66\":{}},\"comment\":{}}],[\"generatestarteditingbutton\",{\"_index\":79,\"name\":{\"88\":{}},\"comment\":{}}],[\"generatevisualeditorcursor\",{\"_index\":82,\"name\":{\"91\":{}},\"comment\":{}}],[\"generatevisualeditoroverlay\",{\"_index\":83,\"name\":{\"92\":{}},\"comment\":{}}],[\"generatevisualeditorwrapper\",{\"_index\":81,\"name\":{\"90\":{}},\"comment\":{}}],[\"get\",{\"_index\":281,\"name\":{\"567\":{}},\"comment\":{}}],[\"get_field_schema\",{\"_index\":135,\"name\":{\"147\":{}},\"comment\":{}}],[\"getaddinstancebuttons\",{\"_index\":96,\"name\":{\"105\":{}},\"comment\":{}}],[\"getchildrendirection\",{\"_index\":99,\"name\":{\"109\":{}},\"comment\":{}}],[\"getcsdataofelement\",{\"_index\":85,\"name\":{\"94\":{}},\"comment\":{}}],[\"getdefaultconfig\",{\"_index\":287,\"name\":{\"574\":{}},\"comment\":{}}],[\"geteditbuttonposition\",{\"_index\":295,\"name\":{\"585\":{}},\"comment\":{}}],[\"getfieldschema\",{\"_index\":68,\"name\":{\"76\":{}},\"comment\":{}}],[\"getfieldtype\",{\"_index\":87,\"name\":{\"96\":{}},\"comment\":{}}],[\"getgatsbydataformat\",{\"_index\":19,\"name\":{\"17\":{}},\"comment\":{}}],[\"getsdkversion\",{\"_index\":20,\"name\":{\"18\":{}},\"comment\":{}}],[\"getuserinitdata\",{\"_index\":286,\"name\":{\"573\":{}},\"comment\":{}}],[\"global_field\",{\"_index\":128,\"name\":{\"140\":{}},\"comment\":{}}],[\"group\",{\"_index\":125,\"name\":{\"137\":{}},\"comment\":{}}],[\"handleaddbuttonsformultiple\",{\"_index\":100,\"name\":{\"110\":{}},\"comment\":{}}],[\"handlefieldinput\",{\"_index\":89,\"name\":{\"98\":{}},\"comment\":{}}],[\"handlefieldkeydown\",{\"_index\":90,\"name\":{\"99\":{}},\"comment\":{}}],[\"handleindividualfields\",{\"_index\":92,\"name\":{\"101\":{}},\"comment\":{}}],[\"handleinitdata\",{\"_index\":289,\"name\":{\"576\":{}},\"comment\":{}}],[\"handlemousedownforvisualediting\",{\"_index\":51,\"name\":{\"58\":{}},\"comment\":{}}],[\"handlemousehover\",{\"_index\":52,\"name\":{\"59\":{}},\"comment\":{}}],[\"handleuserchange\",{\"_index\":34,\"name\":{\"38\":{}},\"comment\":{}}],[\"handleuserconfig\",{\"_index\":290,\"name\":{\"577\":{}},\"comment\":{}}],[\"hasfieldschema\",{\"_index\":69,\"name\":{\"77\":{}},\"comment\":{}}],[\"hash\",{\"_index\":12,\"name\":{\"10\":{},\"40\":{},\"465\":{},\"507\":{},\"532\":{}},\"comment\":{}}],[\"haswindow\",{\"_index\":292,\"name\":{\"582\":{}},\"comment\":{}}],[\"headers\",{\"_index\":233,\"name\":{\"476\":{}},\"comment\":{}}],[\"hidecustomcursor\",{\"_index\":54,\"name\":{\"61\":{}},\"comment\":{}}],[\"hidefocusoverlay\",{\"_index\":75,\"name\":{\"84\":{}},\"comment\":{}}],[\"hideoverlay\",{\"_index\":50,\"name\":{\"57\":{}},\"comment\":{}}],[\"hoc\",{\"_index\":3,\"name\":{\"0\":{}},\"comment\":{}}],[\"host\",{\"_index\":230,\"name\":{\"471\":{}},\"comment\":{}}],[\"html_rte\",{\"_index\":112,\"name\":{\"124\":{}},\"comment\":{}}],[\"ibooleancontenttypeschema\",{\"_index\":176,\"name\":{\"304\":{}},\"comment\":{}}],[\"iclientdatamessage\",{\"_index\":264,\"name\":{\"528\":{}},\"comment\":{}}],[\"iclienturlparams\",{\"_index\":228,\"name\":{\"469\":{}},\"comment\":{}}],[\"iconfig\",{\"_index\":245,\"name\":{\"497\":{}},\"comment\":{}}],[\"iconfigeditbutton\",{\"_index\":256,\"name\":{\"510\":{}},\"comment\":{}}],[\"icontenttypecommonblocks\",{\"_index\":192,\"name\":{\"384\":{}},\"comment\":{}}],[\"icontenttyperootblocks\",{\"_index\":193,\"name\":{\"385\":{}},\"comment\":{}}],[\"icustomfieldcontenttypeschema\",{\"_index\":165,\"name\":{\"260\":{}},\"comment\":{}}],[\"idatecontenttypeschema\",{\"_index\":177,\"name\":{\"316\":{}},\"comment\":{}}],[\"idocwithscriptmessage\",{\"_index\":269,\"name\":{\"547\":{}},\"comment\":{}}],[\"ieditbuttonposition\",{\"_index\":271,\"name\":{\"553\":{}},\"comment\":{}}],[\"ieditentrysearchparams\",{\"_index\":226,\"name\":{\"464\":{}},\"comment\":{}}],[\"iexperiencecontainercontenttypeschema\",{\"_index\":187,\"name\":{\"370\":{}},\"comment\":{}}],[\"ifilecontenttypeschema\",{\"_index\":180,\"name\":{\"329\":{}},\"comment\":{}}],[\"iglobalfieldcontenttypeschema\",{\"_index\":199,\"name\":{\"416\":{}},\"comment\":{}}],[\"igroupcontenttypeschema\",{\"_index\":198,\"name\":{\"403\":{}},\"comment\":{}}],[\"ihistorymessage\",{\"_index\":268,\"name\":{\"541\":{}},\"comment\":{}}],[\"ihtmlrtecontenttypeschema\",{\"_index\":154,\"name\":{\"197\":{}},\"comment\":{}}],[\"iinitackmessage\",{\"_index\":267,\"name\":{\"534\":{}},\"comment\":{}}],[\"iinitdata\",{\"_index\":260,\"name\":{\"515\":{}},\"comment\":{}}],[\"iinitstackdetails\",{\"_index\":241,\"name\":{\"488\":{}},\"comment\":{}}],[\"ijsonrtecontenttypeschema\",{\"_index\":158,\"name\":{\"213\":{}},\"comment\":{}}],[\"ilinkcontenttypeschema\",{\"_index\":182,\"name\":{\"342\":{}},\"comment\":{}}],[\"ilivepreviewmessagecommon\",{\"_index\":261,\"name\":{\"525\":{}},\"comment\":{}}],[\"ilivepreviewmode\",{\"_index\":242,\"name\":{\"493\":{}},\"comment\":{}}],[\"ilivepreviewmodeconfig\",{\"_index\":243,\"name\":{\"494\":{}},\"comment\":{}}],[\"ilivepreviewreceivepostmessages\",{\"_index\":263,\"name\":{\"527\":{}},\"comment\":{}}],[\"imarkdowncontenttypeschema\",{\"_index\":163,\"name\":{\"247\":{}},\"comment\":{}}],[\"imodularblockscontenttypeschema\",{\"_index\":195,\"name\":{\"390\":{}},\"comment\":{}}],[\"imodularblocksingleblock\",{\"_index\":194,\"name\":{\"386\":{}},\"comment\":{}}],[\"imultilinetextboxcontenttypeschema\",{\"_index\":153,\"name\":{\"179\":{}},\"comment\":{}}],[\"inbuilt_class\",{\"_index\":204,\"name\":{\"436\":{}},\"comment\":{}}],[\"includebyqueryparameter\",{\"_index\":258,\"name\":{\"513\":{}},\"comment\":{}}],[\"index\",{\"_index\":23,\"name\":{\"21\":{},\"453\":{}},\"comment\":{}}],[\"init\",{\"_index\":11,\"name\":{\"9\":{}},\"comment\":{}}],[\"instruction\",{\"_index\":197,\"name\":{\"395\":{},\"408\":{}},\"comment\":{}}],[\"inumbercontenttypeschema\",{\"_index\":175,\"name\":{\"292\":{}},\"comment\":{}}],[\"ipageschema\",{\"_index\":200,\"name\":{\"429\":{}},\"comment\":{}}],[\"ireferencecontenttypeschema\",{\"_index\":184,\"name\":{\"357\":{}},\"comment\":{}}],[\"is_asset\",{\"_index\":168,\"name\":{\"265\":{}},\"comment\":{}}],[\"is_page\",{\"_index\":205,\"name\":{\"439\":{}},\"comment\":{}}],[\"ischemafieldmap\",{\"_index\":104,\"name\":{\"114\":{}},\"comment\":{}}],[\"ischemaindividualfieldmap\",{\"_index\":103,\"name\":{\"113\":{}},\"comment\":{}}],[\"iselectcontenttypeschema\",{\"_index\":170,\"name\":{\"274\":{}},\"comment\":{}}],[\"isinglelinetextboxcontenttypeschema\",{\"_index\":148,\"name\":{\"162\":{}},\"comment\":{}}],[\"isodate\",{\"_index\":120,\"name\":{\"132\":{}},\"comment\":{}}],[\"istackdetails\",{\"_index\":237,\"name\":{\"481\":{}},\"comment\":{}}],[\"istacksdk\",{\"_index\":232,\"name\":{\"474\":{}},\"comment\":{}}],[\"ititlecontenttypeschema\",{\"_index\":138,\"name\":{\"150\":{}},\"comment\":{}}],[\"itraverseschemavisitor\",{\"_index\":105,\"name\":{\"115\":{}},\"comment\":{}}],[\"iurlcontenttypeschema\",{\"_index\":162,\"name\":{\"235\":{}},\"comment\":{}}],[\"json_rte\",{\"_index\":117,\"name\":{\"129\":{}},\"comment\":{}}],[\"leftboundoftooltip\",{\"_index\":273,\"name\":{\"555\":{}},\"comment\":{}}],[\"link\",{\"_index\":119,\"name\":{\"131\":{}},\"comment\":{}}],[\"linkclickhandler\",{\"_index\":33,\"name\":{\"37\":{}},\"comment\":{}}],[\"live\",{\"_index\":1,\"name\":{\"0\":{},\"24\":{}},\"comment\":{}}],[\"live_editor_channel_id\",{\"_index\":63,\"name\":{\"70\":{}},\"comment\":{}}],[\"live_editor_field_type_attribute_key\",{\"_index\":62,\"name\":{\"69\":{}},\"comment\":{}}],[\"live_preview\",{\"_index\":227,\"name\":{\"468\":{},\"475\":{}},\"comment\":{}}],[\"live_preview_outline_width_in_px\",{\"_index\":64,\"name\":{\"71\":{}},\"comment\":{}}],[\"liveeditor\",{\"_index\":41,\"name\":{\"47\":{}},\"comment\":{}}],[\"liveeditor/utils/assetbutton\",{\"_index\":57,\"name\":{\"64\":{}},\"comment\":{}}],[\"liveeditor/utils/constants\",{\"_index\":60,\"name\":{\"67\":{}},\"comment\":{}}],[\"liveeditor/utils/fieldschemamap\",{\"_index\":65,\"name\":{\"72\":{}},\"comment\":{}}],[\"liveeditor/utils/focusoverlaywrapper\",{\"_index\":73,\"name\":{\"82\":{}},\"comment\":{}}],[\"liveeditor/utils/generatefieldschemamap\",{\"_index\":76,\"name\":{\"85\":{}},\"comment\":{}}],[\"liveeditor/utils/generatestarteditingbutton\",{\"_index\":78,\"name\":{\"87\":{}},\"comment\":{}}],[\"liveeditor/utils/generatevisualeditordom\",{\"_index\":80,\"name\":{\"89\":{}},\"comment\":{}}],[\"liveeditor/utils/getcsdataofelement\",{\"_index\":84,\"name\":{\"93\":{}},\"comment\":{}}],[\"liveeditor/utils/getfieldtype\",{\"_index\":86,\"name\":{\"95\":{}},\"comment\":{}}],[\"liveeditor/utils/handlefieldmousedown\",{\"_index\":88,\"name\":{\"97\":{}},\"comment\":{}}],[\"liveeditor/utils/handleindividualfields\",{\"_index\":91,\"name\":{\"100\":{}},\"comment\":{}}],[\"liveeditor/utils/instancebuttons\",{\"_index\":94,\"name\":{\"103\":{}},\"comment\":{}}],[\"liveeditor/utils/liveeditorpostmessage\",{\"_index\":97,\"name\":{\"106\":{}},\"comment\":{}}],[\"liveeditor/utils/multipleelementaddbutton\",{\"_index\":98,\"name\":{\"108\":{}},\"comment\":{}}],[\"liveeditor/utils/types/index.types\",{\"_index\":102,\"name\":{\"112\":{}},\"comment\":{}}],[\"liveeditor/utils/types/postmessage.types\",{\"_index\":129,\"name\":{\"141\":{}},\"comment\":{}}],[\"liveeditorpostmessageevents\",{\"_index\":130,\"name\":{\"142\":{}},\"comment\":{}}],[\"livepreview\",{\"_index\":5,\"name\":{\"2\":{}},\"comment\":{}}],[\"locale\",{\"_index\":212,\"name\":{\"448\":{},\"487\":{},\"492\":{}},\"comment\":{}}],[\"logevent\",{\"_index\":305,\"name\":{\"594\":{}},\"comment\":{}}],[\"logger\",{\"_index\":303,\"name\":{\"592\":{}},\"comment\":{}}],[\"mandatory\",{\"_index\":143,\"name\":{\"156\":{},\"175\":{},\"193\":{},\"209\":{},\"231\":{},\"243\":{},\"256\":{},\"270\":{},\"288\":{},\"300\":{},\"312\":{},\"325\":{},\"338\":{},\"353\":{},\"366\":{},\"380\":{},\"399\":{},\"412\":{},\"425\":{}},\"comment\":{}}],[\"markdown\",{\"_index\":164,\"name\":{\"252\":{}},\"comment\":{}}],[\"markdown_rte\",{\"_index\":113,\"name\":{\"125\":{}},\"comment\":{}}],[\"mode\",{\"_index\":255,\"name\":{\"509\":{},\"524\":{}},\"comment\":{}}],[\"modular_block\",{\"_index\":118,\"name\":{\"130\":{}},\"comment\":{}}],[\"multiline\",{\"_index\":111,\"name\":{\"123\":{},\"185\":{},\"203\":{},\"221\":{}},\"comment\":{}}],[\"multiple\",{\"_index\":28,\"name\":{\"32\":{},\"160\":{},\"176\":{},\"194\":{},\"210\":{},\"232\":{},\"244\":{},\"257\":{},\"271\":{},\"289\":{},\"301\":{},\"313\":{},\"326\":{},\"339\":{},\"354\":{},\"367\":{},\"381\":{},\"400\":{},\"413\":{},\"426\":{}},\"comment\":{}}],[\"multiplefieldmetadata\",{\"_index\":215,\"name\":{\"451\":{}},\"comment\":{}}],[\"non_localizable\",{\"_index\":147,\"name\":{\"161\":{},\"177\":{},\"195\":{},\"211\":{},\"233\":{},\"245\":{},\"258\":{},\"272\":{},\"290\":{},\"302\":{},\"314\":{},\"327\":{},\"340\":{},\"355\":{},\"368\":{},\"382\":{},\"401\":{},\"414\":{},\"427\":{}},\"comment\":{}}],[\"number\",{\"_index\":123,\"name\":{\"135\":{}},\"comment\":{}}],[\"numericinputregex\",{\"_index\":61,\"name\":{\"68\":{}},\"comment\":{}}],[\"onchange\",{\"_index\":252,\"name\":{\"504\":{}},\"comment\":{}}],[\"oncookiechange\",{\"_index\":301,\"name\":{\"591\":{}},\"comment\":{}}],[\"onentrychange\",{\"_index\":16,\"name\":{\"14\":{}},\"comment\":{}}],[\"onentrychangecallback\",{\"_index\":274,\"name\":{\"556\":{}},\"comment\":{}}],[\"onentrychangecallbackuid\",{\"_index\":277,\"name\":{\"561\":{}},\"comment\":{}}],[\"onentrychangeconfig\",{\"_index\":275,\"name\":{\"558\":{}},\"comment\":{}}],[\"onliveedit\",{\"_index\":17,\"name\":{\"15\":{}},\"comment\":{}}],[\"open_asset_modal\",{\"_index\":133,\"name\":{\"145\":{}},\"comment\":{}}],[\"open_quick_form\",{\"_index\":134,\"name\":{\"146\":{}},\"comment\":{}}],[\"options\",{\"_index\":157,\"name\":{\"205\":{},\"223\":{},\"437\":{}},\"comment\":{}}],[\"overlaywrapper\",{\"_index\":44,\"name\":{\"51\":{}},\"comment\":{}}],[\"params\",{\"_index\":10,\"name\":{\"8\":{}},\"comment\":{}}],[\"parentcslpvalue\",{\"_index\":220,\"name\":{\"457\":{}},\"comment\":{}}],[\"parentdetails\",{\"_index\":217,\"name\":{\"454\":{}},\"comment\":{}}],[\"parentpath\",{\"_index\":219,\"name\":{\"456\":{}},\"comment\":{}}],[\"port\",{\"_index\":231,\"name\":{\"472\":{}},\"comment\":{}}],[\"position\",{\"_index\":259,\"name\":{\"514\":{}},\"comment\":{}}],[\"preview\",{\"_index\":2,\"name\":{\"0\":{},\"24\":{},\"495\":{}},\"comment\":{}}],[\"previoushoveredtargetdom\",{\"_index\":47,\"name\":{\"54\":{}},\"comment\":{}}],[\"previousselectededitabledom\",{\"_index\":45,\"name\":{\"52\":{}},\"comment\":{}}],[\"project_uid\",{\"_index\":189,\"name\":{\"375\":{}},\"comment\":{}}],[\"protocol\",{\"_index\":229,\"name\":{\"470\":{}},\"comment\":{}}],[\"publiclogger\",{\"_index\":304,\"name\":{\"593\":{}},\"comment\":{}}],[\"publish\",{\"_index\":14,\"name\":{\"12\":{}},\"comment\":{}}],[\"ref_multiple\",{\"_index\":185,\"name\":{\"362\":{}},\"comment\":{}}],[\"ref_multiple_content_types\",{\"_index\":186,\"name\":{\"363\":{}},\"comment\":{}}],[\"reference\",{\"_index\":124,\"name\":{\"136\":{}},\"comment\":{}}],[\"reference_to\",{\"_index\":161,\"name\":{\"228\":{},\"359\":{},\"418\":{}},\"comment\":{}}],[\"removeaddinstancebuttons\",{\"_index\":101,\"name\":{\"111\":{}},\"comment\":{}}],[\"removedatacslp\",{\"_index\":40,\"name\":{\"46\":{}},\"comment\":{}}],[\"removereplaceassetbutton\",{\"_index\":58,\"name\":{\"65\":{}},\"comment\":{}}],[\"removevisualeditordom\",{\"_index\":55,\"name\":{\"62\":{}},\"comment\":{}}],[\"replace\",{\"_index\":279,\"name\":{\"565\":{}},\"comment\":{}}],[\"replacedocumentbody\",{\"_index\":312,\"name\":{\"602\":{}},\"comment\":{}}],[\"requestdatasync\",{\"_index\":38,\"name\":{\"44\":{}},\"comment\":{}}],[\"rerunscriptsindocument\",{\"_index\":310,\"name\":{\"600\":{}},\"comment\":{}}],[\"reset\",{\"_index\":282,\"name\":{\"568\":{}},\"comment\":{}}],[\"resizeobserver\",{\"_index\":48,\"name\":{\"55\":{}},\"comment\":{}}],[\"resolveincomingmessage\",{\"_index\":36,\"name\":{\"42\":{}},\"comment\":{}}],[\"rich_text_type\",{\"_index\":156,\"name\":{\"204\":{},\"222\":{},\"335\":{}},\"comment\":{}}],[\"runscriptsonupdate\",{\"_index\":253,\"name\":{\"506\":{},\"517\":{}},\"comment\":{}}],[\"schema\",{\"_index\":191,\"name\":{\"377\":{},\"389\":{},\"409\":{},\"422\":{},\"442\":{}},\"comment\":{}}],[\"scrollhandler\",{\"_index\":32,\"name\":{\"36\":{}},\"comment\":{}}],[\"select\",{\"_index\":114,\"name\":{\"126\":{}},\"comment\":{}}],[\"set\",{\"_index\":280,\"name\":{\"566\":{}},\"comment\":{}}],[\"setconfigfromparams\",{\"_index\":13,\"name\":{\"11\":{},\"41\":{}},\"comment\":{}}],[\"setfieldschema\",{\"_index\":71,\"name\":{\"79\":{}},\"comment\":{}}],[\"setonchangecallback\",{\"_index\":35,\"name\":{\"39\":{}},\"comment\":{}}],[\"should_visit\",{\"_index\":106,\"name\":{\"116\":{}},\"comment\":{}}],[\"shouldrendereditbutton\",{\"_index\":294,\"name\":{\"584\":{}},\"comment\":{}}],[\"singleline\",{\"_index\":116,\"name\":{\"128\":{}},\"comment\":{}}],[\"singleton\",{\"_index\":206,\"name\":{\"440\":{}},\"comment\":{}}],[\"singular\",{\"_index\":27,\"name\":{\"31\":{}},\"comment\":{}}],[\"skipinitialrender\",{\"_index\":276,\"name\":{\"560\":{}},\"comment\":{}}],[\"ssr\",{\"_index\":246,\"name\":{\"498\":{},\"516\":{}},\"comment\":{}}],[\"stackdetails\",{\"_index\":249,\"name\":{\"501\":{},\"520\":{}},\"comment\":{}}],[\"stacksdk\",{\"_index\":251,\"name\":{\"503\":{},\"522\":{}},\"comment\":{}}],[\"startdate\",{\"_index\":178,\"name\":{\"318\":{}},\"comment\":{}}],[\"subscribe\",{\"_index\":15,\"name\":{\"13\":{}},\"comment\":{}}],[\"subscribers\",{\"_index\":7,\"name\":{\"4\":{}},\"comment\":{}}],[\"title\",{\"_index\":183,\"name\":{\"349\":{},\"387\":{},\"432\":{},\"441\":{}},\"comment\":{}}],[\"tooltip\",{\"_index\":24,\"name\":{\"27\":{}},\"comment\":{}}],[\"tooltipchild\",{\"_index\":26,\"name\":{\"29\":{}},\"comment\":{}}],[\"tooltipcurrentchild\",{\"_index\":29,\"name\":{\"33\":{}},\"comment\":{}}],[\"tooltipmultipleinnerhtml\",{\"_index\":297,\"name\":{\"587\":{}},\"comment\":{}}],[\"tooltipsingularinnerhtml\",{\"_index\":296,\"name\":{\"586\":{}},\"comment\":{}}],[\"type\",{\"_index\":265,\"name\":{\"529\":{},\"535\":{},\"542\":{},\"545\":{},\"548\":{}},\"comment\":{}}],[\"types/contenttypeschema.types\",{\"_index\":137,\"name\":{\"149\":{}},\"comment\":{}}],[\"types/cslp.types\",{\"_index\":207,\"name\":{\"443\":{}},\"comment\":{}}],[\"types/liveeditor.types\",{\"_index\":221,\"name\":{\"458\":{}},\"comment\":{}}],[\"types/types\",{\"_index\":225,\"name\":{\"463\":{}},\"comment\":{}}],[\"uid\",{\"_index\":145,\"name\":{\"158\":{},\"173\":{},\"191\":{},\"207\":{},\"229\":{},\"237\":{},\"254\":{},\"268\":{},\"286\":{},\"298\":{},\"310\":{},\"323\":{},\"336\":{},\"351\":{},\"364\":{},\"378\":{},\"388\":{},\"397\":{},\"410\":{},\"423\":{},\"434\":{}},\"comment\":{}}],[\"unique\",{\"_index\":144,\"name\":{\"157\":{},\"178\":{},\"196\":{},\"212\":{},\"234\":{},\"246\":{},\"259\":{},\"273\":{},\"291\":{},\"303\":{},\"315\":{},\"328\":{},\"341\":{},\"356\":{},\"369\":{},\"383\":{},\"402\":{},\"415\":{},\"428\":{}},\"comment\":{}}],[\"unsubscribeonentrychange\",{\"_index\":18,\"name\":{\"16\":{}},\"comment\":{}}],[\"update_field\",{\"_index\":132,\"name\":{\"144\":{}},\"comment\":{}}],[\"updated_at\",{\"_index\":202,\"name\":{\"431\":{}},\"comment\":{}}],[\"updatedocumentbody\",{\"_index\":311,\"name\":{\"601\":{}},\"comment\":{}}],[\"updatetooltipposition\",{\"_index\":39,\"name\":{\"45\":{}},\"comment\":{}}],[\"upperboundoftooltip\",{\"_index\":272,\"name\":{\"554\":{}},\"comment\":{}}],[\"url\",{\"_index\":115,\"name\":{\"127\":{},\"350\":{},\"473\":{}},\"comment\":{}}],[\"userconfig\",{\"_index\":6,\"name\":{\"3\":{}},\"comment\":{}}],[\"utils\",{\"_index\":291,\"name\":{\"581\":{}},\"comment\":{}}],[\"utils/confighandler\",{\"_index\":278,\"name\":{\"562\":{}},\"comment\":{}}],[\"utils/cslpdata\",{\"_index\":283,\"name\":{\"570\":{}},\"comment\":{}}],[\"utils/defaults\",{\"_index\":285,\"name\":{\"572\":{}},\"comment\":{}}],[\"utils/handleuserconfig\",{\"_index\":288,\"name\":{\"575\":{}},\"comment\":{}}],[\"utils/oncookiechange\",{\"_index\":300,\"name\":{\"590\":{}},\"comment\":{}}],[\"utils/public\",{\"_index\":302,\"name\":{\"592\":{}},\"comment\":{}}],[\"utils/replacehtml\",{\"_index\":309,\"name\":{\"599\":{}},\"comment\":{}}],[\"version\",{\"_index\":142,\"name\":{\"155\":{},\"168\":{},\"186\":{},\"206\":{},\"241\":{},\"253\":{},\"285\":{}},\"comment\":{}}],[\"visit\",{\"_index\":107,\"name\":{\"118\":{}},\"comment\":{}}],[\"visualeditor\",{\"_index\":42,\"name\":{\"48\":{}},\"comment\":{}}],[\"visualeditorcslpeventdetails\",{\"_index\":222,\"name\":{\"459\":{}},\"comment\":{}}],[\"visualeditorwrapper\",{\"_index\":46,\"name\":{\"53\":{}},\"comment\":{}}],[\"warn\",{\"_index\":307,\"name\":{\"596\":{}},\"comment\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file diff --git a/docs/assets/style.css b/docs/assets/style.css deleted file mode 100644 index 2d02570d..00000000 --- a/docs/assets/style.css +++ /dev/null @@ -1,1280 +0,0 @@ -:root { - /* Light */ - --light-color-background: #f2f4f8; - --light-color-background-secondary: #eff0f1; - --light-color-warning-text: #222; - --light-color-background-warning: #e6e600; - --light-color-icon-background: var(--light-color-background); - --light-color-accent: #c5c7c9; - --light-color-text: #222; - --light-color-text-aside: #707070; - --light-color-link: #4da6ff; - --light-color-ts: #db1373; - --light-color-ts-interface: #139d2c; - --light-color-ts-enum: #9c891a; - --light-color-ts-class: #2484e5; - --light-color-ts-function: #572be7; - --light-color-ts-namespace: #b111c9; - --light-color-ts-private: #707070; - --light-color-ts-variable: #4d68ff; - --light-external-icon: url("data:image/svg+xml;utf8,"); - --light-color-scheme: light; - - /* Dark */ - --dark-color-background: #2b2e33; - --dark-color-background-secondary: #1e2024; - --dark-color-background-warning: #bebe00; - --dark-color-warning-text: #222; - --dark-color-icon-background: var(--dark-color-background-secondary); - --dark-color-accent: #9096a2; - --dark-color-text: #f5f5f5; - --dark-color-text-aside: #dddddd; - --dark-color-link: #00aff4; - --dark-color-ts: #ff6492; - --dark-color-ts-interface: #6cff87; - --dark-color-ts-enum: #f4d93e; - --dark-color-ts-class: #61b0ff; - --dark-color-ts-function: #9772ff; - --dark-color-ts-namespace: #e14dff; - --dark-color-ts-private: #e2e2e2; - --dark-color-ts-variable: #4d68ff; - --dark-external-icon: url("data:image/svg+xml;utf8,"); - --dark-color-scheme: dark; -} - -@media (prefers-color-scheme: light) { - :root { - --color-background: var(--light-color-background); - --color-background-secondary: var(--light-color-background-secondary); - --color-background-warning: var(--light-color-background-warning); - --color-warning-text: var(--light-color-warning-text); - --color-icon-background: var(--light-color-icon-background); - --color-accent: var(--light-color-accent); - --color-text: var(--light-color-text); - --color-text-aside: var(--light-color-text-aside); - --color-link: var(--light-color-link); - --color-ts: var(--light-color-ts); - --color-ts-interface: var(--light-color-ts-interface); - --color-ts-enum: var(--light-color-ts-enum); - --color-ts-class: var(--light-color-ts-class); - --color-ts-function: var(--light-color-ts-function); - --color-ts-namespace: var(--light-color-ts-namespace); - --color-ts-private: var(--light-color-ts-private); - --color-ts-variable: var(--light-color-ts-variable); - --external-icon: var(--light-external-icon); - --color-scheme: var(--light-color-scheme); - } -} - -@media (prefers-color-scheme: dark) { - :root { - --color-background: var(--dark-color-background); - --color-background-secondary: var(--dark-color-background-secondary); - --color-background-warning: var(--dark-color-background-warning); - --color-warning-text: var(--dark-color-warning-text); - --color-icon-background: var(--dark-color-icon-background); - --color-accent: var(--dark-color-accent); - --color-text: var(--dark-color-text); - --color-text-aside: var(--dark-color-text-aside); - --color-link: var(--dark-color-link); - --color-ts: var(--dark-color-ts); - --color-ts-interface: var(--dark-color-ts-interface); - --color-ts-enum: var(--dark-color-ts-enum); - --color-ts-class: var(--dark-color-ts-class); - --color-ts-function: var(--dark-color-ts-function); - --color-ts-namespace: var(--dark-color-ts-namespace); - --color-ts-private: var(--dark-color-ts-private); - --color-ts-variable: var(--dark-color-ts-variable); - --external-icon: var(--dark-external-icon); - --color-scheme: var(--dark-color-scheme); - } -} - -html { - color-scheme: var(--color-scheme); -} - -body { - margin: 0; -} - -:root[data-theme="light"] { - --color-background: var(--light-color-background); - --color-background-secondary: var(--light-color-background-secondary); - --color-background-warning: var(--light-color-background-warning); - --color-warning-text: var(--light-color-warning-text); - --color-icon-background: var(--light-color-icon-background); - --color-accent: var(--light-color-accent); - --color-text: var(--light-color-text); - --color-text-aside: var(--light-color-text-aside); - --color-link: var(--light-color-link); - --color-ts: var(--light-color-ts); - --color-ts-interface: var(--light-color-ts-interface); - --color-ts-enum: var(--light-color-ts-enum); - --color-ts-class: var(--light-color-ts-class); - --color-ts-function: var(--light-color-ts-function); - --color-ts-namespace: var(--light-color-ts-namespace); - --color-ts-private: var(--light-color-ts-private); - --color-ts-variable: var(--light-color-ts-variable); - --external-icon: var(--light-external-icon); - --color-scheme: var(--light-color-scheme); -} - -:root[data-theme="dark"] { - --color-background: var(--dark-color-background); - --color-background-secondary: var(--dark-color-background-secondary); - --color-background-warning: var(--dark-color-background-warning); - --color-warning-text: var(--dark-color-warning-text); - --color-icon-background: var(--dark-color-icon-background); - --color-accent: var(--dark-color-accent); - --color-text: var(--dark-color-text); - --color-text-aside: var(--dark-color-text-aside); - --color-link: var(--dark-color-link); - --color-ts: var(--dark-color-ts); - --color-ts-interface: var(--dark-color-ts-interface); - --color-ts-enum: var(--dark-color-ts-enum); - --color-ts-class: var(--dark-color-ts-class); - --color-ts-function: var(--dark-color-ts-function); - --color-ts-namespace: var(--dark-color-ts-namespace); - --color-ts-private: var(--dark-color-ts-private); - --color-ts-variable: var(--dark-color-ts-variable); - --external-icon: var(--dark-external-icon); - --color-scheme: var(--dark-color-scheme); -} - -.always-visible, -.always-visible .tsd-signatures { - display: inherit !important; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - line-height: 1.2; -} - -h1 { - font-size: 1.875rem; - margin: 0.67rem 0; -} - -h2 { - font-size: 1.5rem; - margin: 0.83rem 0; -} - -h3 { - font-size: 1.25rem; - margin: 1rem 0; -} - -h4 { - font-size: 1.05rem; - margin: 1.33rem 0; -} - -h5 { - font-size: 1rem; - margin: 1.5rem 0; -} - -h6 { - font-size: 0.875rem; - margin: 2.33rem 0; -} - -.uppercase { - text-transform: uppercase; -} - -pre { - white-space: pre; - white-space: pre-wrap; - word-wrap: break-word; -} - -dl, -menu, -ol, -ul { - margin: 1em 0; -} - -dd { - margin: 0 0 0 40px; -} - -.container { - max-width: 1600px; - padding: 0 2rem; -} - -@media (min-width: 640px) { - .container { - padding: 0 4rem; - } -} -@media (min-width: 1200px) { - .container { - padding: 0 8rem; - } -} -@media (min-width: 1600px) { - .container { - padding: 0 12rem; - } -} - -/* Footer */ -.tsd-generator { - border-top: 1px solid var(--color-accent); - padding-top: 1rem; - padding-bottom: 1rem; - max-height: 3.5rem; -} - -.tsd-generator > p { - margin-top: 0; - margin-bottom: 0; - padding: 0 1rem; -} - -.container-main { - display: flex; - justify-content: space-between; - position: relative; - margin: 0 auto; -} - -.col-4, -.col-8 { - box-sizing: border-box; - float: left; - padding: 2rem 1rem; -} - -.col-4 { - flex: 0 0 25%; -} -.col-8 { - flex: 1 0; - flex-wrap: wrap; - padding-left: 0; -} - -@keyframes fade-in { - from { - opacity: 0; - } - to { - opacity: 1; - } -} -@keyframes fade-out { - from { - opacity: 1; - visibility: visible; - } - to { - opacity: 0; - } -} -@keyframes fade-in-delayed { - 0% { - opacity: 0; - } - 33% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -@keyframes fade-out-delayed { - 0% { - opacity: 1; - visibility: visible; - } - 66% { - opacity: 0; - } - 100% { - opacity: 0; - } -} -@keyframes shift-to-left { - from { - transform: translate(0, 0); - } - to { - transform: translate(-25%, 0); - } -} -@keyframes unshift-to-left { - from { - transform: translate(-25%, 0); - } - to { - transform: translate(0, 0); - } -} -@keyframes pop-in-from-right { - from { - transform: translate(100%, 0); - } - to { - transform: translate(0, 0); - } -} -@keyframes pop-out-to-right { - from { - transform: translate(0, 0); - visibility: visible; - } - to { - transform: translate(100%, 0); - } -} -body { - background: var(--color-background); - font-family: "Segoe UI", sans-serif; - font-size: 16px; - color: var(--color-text); -} - -a { - color: var(--color-link); - text-decoration: none; -} -a:hover { - text-decoration: underline; -} -a.external[target="_blank"] { - background-image: var(--external-icon); - background-position: top 3px right; - background-repeat: no-repeat; - padding-right: 13px; -} - -code, -pre { - font-family: Menlo, Monaco, Consolas, "Courier New", monospace; - padding: 0.2em; - margin: 0; - font-size: 0.875rem; - border-radius: 0.8em; -} - -pre { - padding: 10px; - border: 0.1em solid var(--color-accent); -} -pre code { - padding: 0; - font-size: 100%; -} - -blockquote { - margin: 1em 0; - padding-left: 1em; - border-left: 4px solid gray; -} - -.tsd-typography { - line-height: 1.333em; -} -.tsd-typography ul { - list-style: square; - padding: 0 0 0 20px; - margin: 0; -} -.tsd-typography h4, -.tsd-typography .tsd-index-panel h3, -.tsd-index-panel .tsd-typography h3, -.tsd-typography h5, -.tsd-typography h6 { - font-size: 1em; - margin: 0; -} -.tsd-typography h5, -.tsd-typography h6 { - font-weight: normal; -} -.tsd-typography p, -.tsd-typography ul, -.tsd-typography ol { - margin: 1em 0; -} - -@media (max-width: 1024px) { - html .col-content { - float: none; - max-width: 100%; - width: 100%; - padding-top: 3rem; - } - html .col-menu { - position: fixed !important; - overflow-y: auto; - -webkit-overflow-scrolling: touch; - z-index: 1024; - top: 0 !important; - bottom: 0 !important; - left: auto !important; - right: 0 !important; - padding: 1.5rem 1.5rem 0 0; - max-width: 25rem; - visibility: hidden; - background-color: var(--color-background); - transform: translate(100%, 0); - } - html .col-menu > *:last-child { - padding-bottom: 20px; - } - html .overlay { - content: ""; - display: block; - position: fixed; - z-index: 1023; - top: 0; - left: 0; - right: 0; - bottom: 0; - background-color: rgba(0, 0, 0, 0.75); - visibility: hidden; - } - - .to-has-menu .overlay { - animation: fade-in 0.4s; - } - - .to-has-menu :is(header, footer, .col-content) { - animation: shift-to-left 0.4s; - } - - .to-has-menu .col-menu { - animation: pop-in-from-right 0.4s; - } - - .from-has-menu .overlay { - animation: fade-out 0.4s; - } - - .from-has-menu :is(header, footer, .col-content) { - animation: unshift-to-left 0.4s; - } - - .from-has-menu .col-menu { - animation: pop-out-to-right 0.4s; - } - - .has-menu body { - overflow: hidden; - } - .has-menu .overlay { - visibility: visible; - } - .has-menu :is(header, footer, .col-content) { - transform: translate(-25%, 0); - } - .has-menu .col-menu { - visibility: visible; - transform: translate(0, 0); - display: grid; - align-items: center; - grid-template-rows: auto 1fr; - grid-gap: 1.5rem; - max-height: 100vh; - padding: 1rem 2rem; - } - .has-menu .tsd-navigation { - max-height: 100%; - } -} - -.tsd-breadcrumb { - margin: 0; - padding: 0; - color: var(--color-text-aside); -} -.tsd-breadcrumb a { - color: var(--color-text-aside); - text-decoration: none; -} -.tsd-breadcrumb a:hover { - text-decoration: underline; -} -.tsd-breadcrumb li { - display: inline; -} -.tsd-breadcrumb li:after { - content: " / "; -} - -.tsd-comment-tags { - display: flex; - flex-direction: column; -} -dl.tsd-comment-tag-group { - display: flex; - align-items: center; - overflow: hidden; - margin: 0.5em 0; -} -dl.tsd-comment-tag-group dt { - display: flex; - margin-right: 0.5em; - font-size: 0.875em; - font-weight: normal; -} -dl.tsd-comment-tag-group dd { - margin: 0; -} -code.tsd-tag { - padding: 0.25em 0.4em; - border: 0.1em solid var(--color-accent); - margin-right: 0.25em; - font-size: 70%; -} -h1 code.tsd-tag:first-of-type { - margin-left: 0.25em; -} - -dl.tsd-comment-tag-group dd:before, -dl.tsd-comment-tag-group dd:after { - content: " "; -} -dl.tsd-comment-tag-group dd pre, -dl.tsd-comment-tag-group dd:after { - clear: both; -} -dl.tsd-comment-tag-group p { - margin: 0; -} - -.tsd-panel.tsd-comment .lead { - font-size: 1.1em; - line-height: 1.333em; - margin-bottom: 2em; -} -.tsd-panel.tsd-comment .lead:last-child { - margin-bottom: 0; -} - -.tsd-filter-visibility h4 { - font-size: 1rem; - padding-top: 0.75rem; - padding-bottom: 0.5rem; - margin: 0; -} -.tsd-filter-item:not(:last-child) { - margin-bottom: 0.5rem; -} -.tsd-filter-input { - display: flex; - width: fit-content; - width: -moz-fit-content; - align-items: center; - user-select: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - cursor: pointer; -} -.tsd-filter-input input[type="checkbox"] { - cursor: pointer; - position: absolute; - width: 1.5em; - height: 1.5em; - opacity: 0; -} -.tsd-filter-input input[type="checkbox"]:disabled { - pointer-events: none; -} -.tsd-filter-input svg { - cursor: pointer; - width: 1.5em; - height: 1.5em; - margin-right: 0.5em; - border-radius: 0.33em; - /* Leaving this at full opacity breaks event listeners on Firefox. - Don't remove unless you know what you're doing. */ - opacity: 0.99; -} -.tsd-filter-input input[type="checkbox"]:focus + svg { - transform: scale(0.95); -} -.tsd-filter-input input[type="checkbox"]:focus:not(:focus-visible) + svg { - transform: scale(1); -} -.tsd-checkbox-background { - fill: var(--color-accent); -} -input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark { - stroke: var(--color-text); -} -.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-background { - fill: var(--color-background); - stroke: var(--color-accent); - stroke-width: 0.25rem; -} -.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-checkmark { - stroke: var(--color-accent); -} - -.tsd-theme-toggle { - padding-top: 0.75rem; -} -.tsd-theme-toggle > h4 { - display: inline; - vertical-align: middle; - margin-right: 0.75rem; -} - -.tsd-hierarchy { - list-style: square; - margin: 0; -} -.tsd-hierarchy .target { - font-weight: bold; -} - -.tsd-panel-group.tsd-index-group { - margin-bottom: 0; -} -.tsd-index-panel .tsd-index-list { - list-style: none; - line-height: 1.333em; - margin: 0; - padding: 0.25rem 0 0 0; - overflow: hidden; - display: grid; - grid-template-columns: repeat(3, 1fr); - column-gap: 1rem; - grid-template-rows: auto; -} -@media (max-width: 1024px) { - .tsd-index-panel .tsd-index-list { - grid-template-columns: repeat(2, 1fr); - } -} -@media (max-width: 768px) { - .tsd-index-panel .tsd-index-list { - grid-template-columns: repeat(1, 1fr); - } -} -.tsd-index-panel .tsd-index-list li { - -webkit-page-break-inside: avoid; - -moz-page-break-inside: avoid; - -ms-page-break-inside: avoid; - -o-page-break-inside: avoid; - page-break-inside: avoid; -} -.tsd-index-panel a, -.tsd-index-panel a.tsd-parent-kind-module { - color: var(--color-ts); -} -.tsd-index-panel a.tsd-parent-kind-interface { - color: var(--color-ts-interface); -} -.tsd-index-panel a.tsd-parent-kind-enum { - color: var(--color-ts-enum); -} -.tsd-index-panel a.tsd-parent-kind-class { - color: var(--color-ts-class); -} -.tsd-index-panel a.tsd-kind-module { - color: var(--color-ts-namespace); -} -.tsd-index-panel a.tsd-kind-interface { - color: var(--color-ts-interface); -} -.tsd-index-panel a.tsd-kind-enum { - color: var(--color-ts-enum); -} -.tsd-index-panel a.tsd-kind-class { - color: var(--color-ts-class); -} -.tsd-index-panel a.tsd-kind-function { - color: var(--color-ts-function); -} -.tsd-index-panel a.tsd-kind-namespace { - color: var(--color-ts-namespace); -} -.tsd-index-panel a.tsd-kind-variable { - color: var(--color-ts-variable); -} -.tsd-index-panel a.tsd-is-private { - color: var(--color-ts-private); -} - -.tsd-flag { - display: inline-block; - padding: 0.25em 0.4em; - border-radius: 4px; - color: var(--color-comment-tag-text); - background-color: var(--color-comment-tag); - text-indent: 0; - font-size: 75%; - line-height: 1; - font-weight: normal; -} - -.tsd-anchor { - position: absolute; - top: -100px; -} - -.tsd-member { - position: relative; -} -.tsd-member .tsd-anchor + h3 { - display: flex; - align-items: center; - margin-top: 0; - margin-bottom: 0; - border-bottom: none; -} -.tsd-member [data-tsd-kind] { - color: var(--color-ts); -} -.tsd-member [data-tsd-kind="Interface"] { - color: var(--color-ts-interface); -} -.tsd-member [data-tsd-kind="Enum"] { - color: var(--color-ts-enum); -} -.tsd-member [data-tsd-kind="Class"] { - color: var(--color-ts-class); -} -.tsd-member [data-tsd-kind="Private"] { - color: var(--color-ts-private); -} - -.tsd-navigation a { - display: block; - margin: 0.4rem 0; - border-left: 2px solid transparent; - color: var(--color-text); - text-decoration: none; - transition: border-left-color 0.1s; -} -.tsd-navigation a:hover { - text-decoration: underline; -} -.tsd-navigation ul { - margin: 0; - padding: 0; - list-style: none; -} -.tsd-navigation li { - padding: 0; -} - -.tsd-navigation.primary .tsd-accordion-details > ul { - margin-top: 0.75rem; -} -.tsd-navigation.primary a { - padding: 0.75rem 0.5rem; - margin: 0; -} -.tsd-navigation.primary ul li a { - margin-left: 0.5rem; -} -.tsd-navigation.primary ul li li a { - margin-left: 1.5rem; -} -.tsd-navigation.primary ul li li li a { - margin-left: 2.5rem; -} -.tsd-navigation.primary ul li li li li a { - margin-left: 3.5rem; -} -.tsd-navigation.primary ul li li li li li a { - margin-left: 4.5rem; -} -.tsd-navigation.primary ul li li li li li li a { - margin-left: 5.5rem; -} -.tsd-navigation.primary li.current > a { - border-left: 0.15rem var(--color-text) solid; -} -.tsd-navigation.primary li.selected > a { - font-weight: bold; - border-left: 0.2rem var(--color-text) solid; -} -.tsd-navigation.primary ul li a:hover { - border-left: 0.2rem var(--color-text-aside) solid; -} -.tsd-navigation.primary li.globals + li > span, -.tsd-navigation.primary li.globals + li > a { - padding-top: 20px; -} - -.tsd-navigation.secondary.tsd-navigation--toolbar-hide { - max-height: calc(100vh - 1rem); - top: 0.5rem; -} -.tsd-navigation.secondary > ul { - display: inline; - padding-right: 0.5rem; - transition: opacity 0.2s; -} -.tsd-navigation.secondary ul li a { - padding-left: 0; -} -.tsd-navigation.secondary ul li li a { - padding-left: 1.1rem; -} -.tsd-navigation.secondary ul li li li a { - padding-left: 2.2rem; -} -.tsd-navigation.secondary ul li li li li a { - padding-left: 3.3rem; -} -.tsd-navigation.secondary ul li li li li li a { - padding-left: 4.4rem; -} -.tsd-navigation.secondary ul li li li li li li a { - padding-left: 5.5rem; -} - -#tsd-sidebar-links a { - margin-top: 0; - margin-bottom: 0.5rem; - line-height: 1.25rem; -} -#tsd-sidebar-links a:last-of-type { - margin-bottom: 0; -} - -a.tsd-index-link { - margin: 0.25rem 0; - font-size: 1rem; - line-height: 1.25rem; - display: inline-flex; - align-items: center; -} -.tsd-accordion-summary > h1, -.tsd-accordion-summary > h2, -.tsd-accordion-summary > h3, -.tsd-accordion-summary > h4, -.tsd-accordion-summary > h5 { - display: inline-flex; - align-items: center; - vertical-align: middle; - margin-bottom: 0; - user-select: none; - -moz-user-select: none; - -webkit-user-select: none; - -ms-user-select: none; -} -.tsd-accordion-summary { - display: block; - cursor: pointer; -} -.tsd-accordion-summary > * { - margin-top: 0; - margin-bottom: 0; - padding-top: 0; - padding-bottom: 0; -} -.tsd-accordion-summary::-webkit-details-marker { - display: none; -} -.tsd-index-accordion .tsd-accordion-summary svg { - margin-right: 0.25rem; -} -.tsd-index-content > :not(:first-child) { - margin-top: 0.75rem; -} -.tsd-index-heading { - margin-top: 1.5rem; - margin-bottom: 0.75rem; -} - -.tsd-kind-icon { - margin-right: 0.5rem; - width: 1.25rem; - height: 1.25rem; - min-width: 1.25rem; - min-height: 1.25rem; -} -.tsd-kind-icon path { - transform-origin: center; - transform: scale(1.1); -} -.tsd-signature > .tsd-kind-icon { - margin-right: 0.8rem; -} - -@media (min-width: 1024px) { - .col-content { - margin: 2rem auto; - } - - .menu-sticky-wrap { - position: sticky; - height: calc(100vh - 2rem); - top: 4rem; - right: 0; - padding: 0 1.5rem; - padding-top: 1rem; - margin-top: 3rem; - transition: 0.3s ease-in-out; - transition-property: top, padding-top, padding, height; - overflow-y: auto; - } - .col-menu { - border-left: 1px solid var(--color-accent); - } - .col-menu--hide { - top: 1rem; - } - .col-menu .tsd-navigation:not(:last-child) { - padding-bottom: 1.75rem; - } -} - -.tsd-panel { - margin-bottom: 2.5rem; -} -.tsd-panel.tsd-member { - margin-bottom: 4rem; -} -.tsd-panel:empty { - display: none; -} -.tsd-panel > h1, -.tsd-panel > h2, -.tsd-panel > h3 { - margin: 1.5rem -1.5rem 0.75rem -1.5rem; - padding: 0 1.5rem 0.75rem 1.5rem; -} -.tsd-panel > h1.tsd-before-signature, -.tsd-panel > h2.tsd-before-signature, -.tsd-panel > h3.tsd-before-signature { - margin-bottom: 0; - border-bottom: none; -} - -.tsd-panel-group { - margin: 4rem 0; -} -.tsd-panel-group.tsd-index-group { - margin: 2rem 0; -} -.tsd-panel-group.tsd-index-group details { - margin: 2rem 0; -} - -#tsd-search { - transition: background-color 0.2s; -} -#tsd-search .title { - position: relative; - z-index: 2; -} -#tsd-search .field { - position: absolute; - left: 0; - top: 0; - right: 2.5rem; - height: 100%; -} -#tsd-search .field input { - box-sizing: border-box; - position: relative; - top: -50px; - z-index: 1; - width: 100%; - padding: 0 10px; - opacity: 0; - outline: 0; - border: 0; - background: transparent; - color: var(--color-text); -} -#tsd-search .field label { - position: absolute; - overflow: hidden; - right: -40px; -} -#tsd-search .field input, -#tsd-search .title, -#tsd-toolbar-links a { - transition: opacity 0.2s; -} -#tsd-search .results { - position: absolute; - visibility: hidden; - top: 40px; - width: 100%; - margin: 0; - padding: 0; - list-style: none; - box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); -} -#tsd-search .results li { - padding: 0 10px; - background-color: var(--color-background); -} -#tsd-search .results li:nth-child(even) { - background-color: var(--color-background-secondary); -} -#tsd-search .results li.state { - display: none; -} -#tsd-search .results li.current, -#tsd-search .results li:hover { - background-color: var(--color-accent); -} -#tsd-search .results a { - display: block; -} -#tsd-search .results a:before { - top: 10px; -} -#tsd-search .results span.parent { - color: var(--color-text-aside); - font-weight: normal; -} -#tsd-search.has-focus { - background-color: var(--color-accent); -} -#tsd-search.has-focus .field input { - top: 0; - opacity: 1; -} -#tsd-search.has-focus .title, -#tsd-search.has-focus #tsd-toolbar-links a { - z-index: 0; - opacity: 0; -} -#tsd-search.has-focus .results { - visibility: visible; -} -#tsd-search.loading .results li.state.loading { - display: block; -} -#tsd-search.failure .results li.state.failure { - display: block; -} - -#tsd-toolbar-links { - position: absolute; - top: 0; - right: 2rem; - height: 100%; - display: flex; - align-items: center; - justify-content: flex-end; -} -#tsd-toolbar-links a { - margin-left: 1.5rem; -} -#tsd-toolbar-links a:hover { - text-decoration: underline; -} - -.tsd-signature { - margin: 0 0 1rem 0; - padding: 1rem 0.5rem; - border: 1px solid var(--color-accent); - font-family: Menlo, Monaco, Consolas, "Courier New", monospace; - font-size: 14px; - overflow-x: auto; -} - -.tsd-signature-symbol { - color: var(--color-text-aside); - font-weight: normal; -} - -.tsd-signature-type { - font-style: italic; - font-weight: normal; -} - -.tsd-signatures { - padding: 0; - margin: 0 0 1em 0; - list-style-type: none; -} -.tsd-signatures .tsd-signature { - margin: 0; - border-color: var(--color-accent); - border-width: 1px 0; - transition: background-color 0.1s; -} -.tsd-description .tsd-signatures .tsd-signature { - border-width: 1px; -} - -ul.tsd-parameter-list, -ul.tsd-type-parameter-list { - list-style: square; - margin: 0; - padding-left: 20px; -} -ul.tsd-parameter-list > li.tsd-parameter-signature, -ul.tsd-type-parameter-list > li.tsd-parameter-signature { - list-style: none; - margin-left: -20px; -} -ul.tsd-parameter-list h5, -ul.tsd-type-parameter-list h5 { - font-size: 16px; - margin: 1em 0 0.5em 0; -} -.tsd-sources { - margin-top: 1rem; - font-size: 0.875em; -} -.tsd-sources a { - color: var(--color-text-aside); - text-decoration: underline; -} -.tsd-sources ul { - list-style: none; - padding: 0; -} - -.tsd-page-toolbar { - position: fixed; - z-index: 1; - top: 0; - left: 0; - width: 100%; - color: var(--color-text); - background: var(--color-background-secondary); - border-bottom: 1px var(--color-accent) solid; - transition: transform 0.3s ease-in-out; -} -.tsd-page-toolbar a { - color: var(--color-text); - text-decoration: none; -} -.tsd-page-toolbar a.title { - font-weight: bold; -} -.tsd-page-toolbar a.title:hover { - text-decoration: underline; -} -.tsd-page-toolbar .tsd-toolbar-contents { - display: flex; - justify-content: space-between; - height: 2.5rem; - margin: 0 auto; -} -.tsd-page-toolbar .table-cell { - position: relative; - white-space: nowrap; - line-height: 40px; -} -.tsd-page-toolbar .table-cell:first-child { - width: 100%; -} -.tsd-page-toolbar .tsd-toolbar-icon { - box-sizing: border-box; - line-height: 0; - padding: 12px 0; -} - -.tsd-page-toolbar--hide { - transform: translateY(-100%); -} - -.tsd-widget { - display: inline-block; - overflow: hidden; - opacity: 0.8; - height: 40px; - transition: opacity 0.1s, background-color 0.2s; - vertical-align: bottom; - cursor: pointer; -} -.tsd-widget:hover { - opacity: 0.9; -} -.tsd-widget.active { - opacity: 1; - background-color: var(--color-accent); -} -.tsd-widget.no-caption { - width: 40px; -} -.tsd-widget.no-caption:before { - margin: 0; -} - -.tsd-widget.options, -.tsd-widget.menu { - display: none; -} -@media (max-width: 1024px) { - .tsd-widget.options, - .tsd-widget.menu { - display: inline-block; - } -} -input[type="checkbox"] + .tsd-widget:before { - background-position: -120px 0; -} -input[type="checkbox"]:checked + .tsd-widget:before { - background-position: -160px 0; -} - -img { - max-width: 100%; -} - -.tsd-anchor-icon { - display: inline-flex; - align-items: center; - margin-left: 0.5rem; - vertical-align: middle; - color: var(--color-text); -} - -.tsd-anchor-icon svg { - width: 1em; - height: 1em; - visibility: hidden; -} - -.tsd-anchor-link:hover > .tsd-anchor-icon svg { - visibility: visible; -} - -.deprecated { - text-decoration: line-through; -} - -.warning { - padding: 1rem; - color: var(--color-warning-text); - background: var(--color-background-warning); -} - -* { - scrollbar-width: thin; - scrollbar-color: var(--color-accent) var(--color-icon-background); -} - -*::-webkit-scrollbar { - width: 0.75rem; -} - -*::-webkit-scrollbar-track { - background: var(--color-icon-background); -} - -*::-webkit-scrollbar-thumb { - background-color: var(--color-accent); - border-radius: 999rem; - border: 0.25rem solid var(--color-icon-background); -} diff --git a/docs/classes/contentstack_live_preview_HOC.ContentstackLivePreview.html b/docs/classes/contentstack_live_preview_HOC.ContentstackLivePreview.html deleted file mode 100644 index 7fe66456..00000000 --- a/docs/classes/contentstack_live_preview_HOC.ContentstackLivePreview.html +++ /dev/null @@ -1,314 +0,0 @@ -ContentstackLivePreview | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • ContentstackLivePreview
-
-
-
- -
-
-

Constructors

-
- -
-
-

Properties

-
- -
configs: {
    params: undefined | string | URLSearchParams | string[][] | Record<string, string>;
} = ...
-
-

Type declaration

-
    -
  • -
    params: undefined | string | URLSearchParams | string[][] | Record<string, string>
-
- -
livePreview: null | default = null
-
- -
subscribers: {
    [uid: string]: OnEntryChangeCallback;
} = {}
-
-

Type declaration

-
-
- -
userConfig: null | Partial<IInitData> = null
-
-

Accessors

-
- -
-
-

Methods

-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
    - -
  • -

    Sets the live preview hash from the query param which is -accessible via hash property.

    -
    -
    -

    Parameters

    -
      -
    • -
      params: undefined | string | URLSearchParams | string[][] | Record<string, string> = {}
      -

      query param in an object form

      -
    -

    Returns void

-
- -
-
- -
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/classes/liveEditor.VisualEditor.html b/docs/classes/liveEditor.VisualEditor.html deleted file mode 100644 index eb2cc560..00000000 --- a/docs/classes/liveEditor.VisualEditor.html +++ /dev/null @@ -1,248 +0,0 @@ -VisualEditor | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • VisualEditor
-
-
-
- -
-
-

Constructors

-
- -
-
-

Properties

-
- -
customCursor: null | HTMLDivElement = null
-
- -
handleMouseHover: DebouncedFunc<((event: MouseEvent) => Promise<void>)> = ...
-
- -
overlayWrapper: null | HTMLDivElement = null
-
- -
previousHoveredTargetDOM: null | Element = null
-
- -
previousSelectedEditableDOM: null | Element = null
-
- -
resizeObserver: ResizeObserver = ...
-
- -
visualEditorWrapper: null | HTMLDivElement = null
-
-

Methods

-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      editableElement: null | Element
    -

    Returns void

-
- -
-
- -
-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      event: MouseEvent
    -

    Returns Promise<void>

-
- -
-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      visualEditorOverlayWrapper: null | HTMLDivElement = null
    -

    Returns void

-
- -
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/classes/liveEditor_utils_fieldSchemaMap.FieldSchemaMap.html b/docs/classes/liveEditor_utils_fieldSchemaMap.FieldSchemaMap.html deleted file mode 100644 index 7c920d72..00000000 --- a/docs/classes/liveEditor_utils_fieldSchemaMap.FieldSchemaMap.html +++ /dev/null @@ -1,231 +0,0 @@ -FieldSchemaMap | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Represents a cache for field schemas. Field schemas are -used to easily get the field schema based on the field -Cslp.

-
-
-

Hierarchy

-
    -
  • FieldSchemaMap
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
-
-

Properties

-
- -
fieldSchema: {
    [contentTypeUid: string]: ISchemaIndividualFieldMap;
} = {}
-
-

Type declaration

-
-
-

Methods

-
- -
-
- -
-
- -
    - -
  • -

    Retrieves the schema field map for a given content type and field Cslp.

    - -

    Returns

    The schema field map.

    -
    -
    -

    Parameters

    -
      -
    • -
      contentTypeUid: string
      -

      The unique identifier of the content type.

      -
    • -
    • -
      fieldCslp: string
      -

      The Cslp of the field.

      -
    -

    Returns Promise<ISchemaFieldMap>

-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      contentTypeUid: string
    • -
    • -
      fieldCslp: string
    -

    Returns boolean

-
- -
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/classes/live_preview.default.html b/docs/classes/live_preview.default.html deleted file mode 100644 index 979feca0..00000000 --- a/docs/classes/live_preview.default.html +++ /dev/null @@ -1,341 +0,0 @@ -default | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • default
-
-
-
- -
-
-

Constructors

-
- -
-
-

Properties

-
- -
currentElementBesideTooltip: null | HTMLElement = null
-
- -
tooltip: null | HTMLButtonElement = null
-
-

Hideconstructor

-
- -
tooltipChild: {
    multiple: null | HTMLDivElement;
    singular: null | HTMLDivElement;
} = ...
-
-

Type declaration

-
    -
  • -
    multiple: null | HTMLDivElement
  • -
  • -
    singular: null | HTMLDivElement
-
- -
tooltipCurrentChild: "singular" | "multiple" = "singular"
-
-

Accessors

-
- -
    -
  • get hash(): string
  • -
  • -

    It is the live preview hash. -This hash could be used when data is fetched manually.

    -
    -

    Returns string

-
-

Methods

-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      e: MouseEvent
    -

    Returns void

-
- -
-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      content_type_uid: string
    • -
    • -
      locale: string = "en-us"
    • -
    • -
      entry_uid: string
    • -
    • -
      preview_field: string
    -

    Returns string

-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
    - -
  • -

    Sets the live preview hash from the query param which is -accessible via hash property.

    -
    -
    -

    Parameters

    -
      -
    • -
      params: undefined | string | URLSearchParams | string[][] | Record<string, string> = {}
      -

      query param in an object form

      -
    -

    Returns void

-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      onChangeCallback: (() => void)
      -
        -
      • -
          -
        • (): void
        • -
        • -

          Returns void

    -

    Returns void

-
- -
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/classes/utils_configHandler.default.html b/docs/classes/utils_configHandler.default.html deleted file mode 100644 index b11fd46b..00000000 --- a/docs/classes/utils_configHandler.default.html +++ /dev/null @@ -1,171 +0,0 @@ -default | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • default
-
-
-
- -
-
-

Constructors

-
-
-

Properties

-
-
-

Methods

-
-
-

Constructors

-
- -
-
-

Properties

-
- -
config: IConfig = ...
-
-

Methods

-
- -
-
- -
-
- -
-
- -
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/classes/utils_public_logger.PublicLogger.html b/docs/classes/utils_public_logger.PublicLogger.html deleted file mode 100644 index 57506997..00000000 --- a/docs/classes/utils_public_logger.PublicLogger.html +++ /dev/null @@ -1,169 +0,0 @@ -PublicLogger | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • PublicLogger
-
-
-
- -
-
-

Constructors

-
-
-

Methods

-
-
-

Constructors

-
- -
-
-

Methods

-
- -
-
- -
-
- -
    - -
  • -
    -

    Parameters

    -
      -
    • -
      logCallback: {
          (...data: any[]): void;
          (message?: any, ...optionalParams: any[]): void;
      } | {
          (...data: any[]): void;
          (message?: any, ...optionalParams: any[]): void;
      } | {
          (...data: any[]): void;
          (message?: any, ...optionalParams: any[]): void;
      } | {
          (...data: any[]): void;
          (message?: any, ...optionalParams: any[]): void;
      } | {
          (...data: any[]): void;
          (message?: any, ...optionalParams: any[]): void;
      }
    • -
    • -
      message: any[]
    -

    Returns void

-
- -
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/enums/liveEditor_utils_types_index_types.FieldDataType.html b/docs/enums/liveEditor_utils_types_index_types.FieldDataType.html deleted file mode 100644 index 4bf50a07..00000000 --- a/docs/enums/liveEditor_utils_types_index_types.FieldDataType.html +++ /dev/null @@ -1,223 +0,0 @@ -FieldDataType | @contentstack/live-preview-utils
-
- -
-
-
- -
-
-
- -
-
-

Enumeration Members

-
- -
BLOCK: "block"
-
- -
BOOLEAN: "boolean"
-
- -
CUSTOM_FIELD: "custom_field"
-
- -
EXPERIENCE_CONTAINER: "experience_container"
-
- -
FILE: "file"
-
- -
GLOBAL_FIELD: "global_field"
-
- -
GROUP: "group"
-
- -
HTML_RTE: "html_rte"
-
- -
ISODATE: "isodate"
-
- -
JSON_RTE: "json_rte"
-
- -
LINK: "link"
-
- -
MARKDOWN_RTE: "markdown_rte"
-
- -
MODULAR_BLOCK: "modular_block"
-
- -
MULTILINE: "multiline"
-
- -
NUMBER: "number"
-
- -
REFERENCE: "reference"
-
- -
SELECT: "select"
-
- -
SINGLELINE: "singleline"
-
- -
URL: "url"
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/enums/liveEditor_utils_types_postMessage_types.LiveEditorPostMessageEvents.html b/docs/enums/liveEditor_utils_types_postMessage_types.LiveEditorPostMessageEvents.html deleted file mode 100644 index ded962d1..00000000 --- a/docs/enums/liveEditor_utils_types_postMessage_types.LiveEditorPostMessageEvents.html +++ /dev/null @@ -1,132 +0,0 @@ -LiveEditorPostMessageEvents | @contentstack/live-preview-utils
-
- -
-
-
- -
-
-
- -
-
-

Enumeration Members

-
- -
ADD_INSTANCE: "add-instance"
-
- -
FOCUS_FIELD: "focus-field"
-
- -
GET_FIELD_SCHEMA: "get-field-schema"
-
- -
OPEN_ASSET_MODAL: "open-asset-modal"
-
- -
OPEN_QUICK_FORM: "open-quick-form"
-
- -
UPDATE_FIELD: "update-field"
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/enums/types_types.ILivePreviewModeConfig.html b/docs/enums/types_types.ILivePreviewModeConfig.html deleted file mode 100644 index 59541158..00000000 --- a/docs/enums/types_types.ILivePreviewModeConfig.html +++ /dev/null @@ -1,104 +0,0 @@ -ILivePreviewModeConfig | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/liveEditor_utils_assetButton.generateReplaceAssetButton.html b/docs/functions/liveEditor_utils_assetButton.generateReplaceAssetButton.html deleted file mode 100644 index 16dc5317..00000000 --- a/docs/functions/liveEditor_utils_assetButton.generateReplaceAssetButton.html +++ /dev/null @@ -1,111 +0,0 @@ -generateReplaceAssetButton | @contentstack/live-preview-utils
-
- -
-
-
- -
-
    - -
  • -

    Generates a replace asset button element that can be appended to the DOM.

    - -

    Returns

    The generated HTMLButtonElement.

    -
    -
    -

    Parameters

    -
      -
    • -
      targetElement: Element
      -

      The target element to attach the button to.

      -
    • -
    • -
      onClickCallback: ((event: MouseEvent) => void)
      -

      The callback function to execute when the button is clicked.

      -
      -
        -
      • -
          -
        • (event: MouseEvent): void
        • -
        • -
          -

          Parameters

          -
            -
          • -
            event: MouseEvent
          -

          Returns void

    -

    Returns HTMLButtonElement

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/liveEditor_utils_assetButton.removeReplaceAssetButton.html b/docs/functions/liveEditor_utils_assetButton.removeReplaceAssetButton.html deleted file mode 100644 index fdd85cdc..00000000 --- a/docs/functions/liveEditor_utils_assetButton.removeReplaceAssetButton.html +++ /dev/null @@ -1,94 +0,0 @@ -removeReplaceAssetButton | @contentstack/live-preview-utils
-
- -
-
-
- -
-
    - -
  • -

    Removes all existing replace asset buttons from the provided visual editor wrapper element.

    -
    -
    -

    Parameters

    -
      -
    • -
      visualEditorWrapper: null | HTMLDivElement
      -

      The visual editor wrapper element to remove replace asset buttons from.

      -
    -

    Returns void

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/liveEditor_utils_focusOverlayWrapper.addFocusOverlay.html b/docs/functions/liveEditor_utils_focusOverlayWrapper.addFocusOverlay.html deleted file mode 100644 index d8d49106..00000000 --- a/docs/functions/liveEditor_utils_focusOverlayWrapper.addFocusOverlay.html +++ /dev/null @@ -1,100 +0,0 @@ -addFocusOverlay | @contentstack/live-preview-utils
-
- -
-
-
- -
-
    - -
  • -

    Adds a focus overlay to the target element.

    - -

    Returns

    void

    -
    -
    -

    Parameters

    -
      -
    • -
      targetElement: Element
      -

      The element to add the focus overlay to.

      -
    • -
    • -
      focusOverlayWrapper: HTMLDivElement
      -

      The HTMLDivElement that contains the focus overlay.

      -
    -

    Returns void

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/liveEditor_utils_focusOverlayWrapper.hideFocusOverlay.html b/docs/functions/liveEditor_utils_focusOverlayWrapper.hideFocusOverlay.html deleted file mode 100644 index f7ef34e3..00000000 --- a/docs/functions/liveEditor_utils_focusOverlayWrapper.hideFocusOverlay.html +++ /dev/null @@ -1,101 +0,0 @@ -hideFocusOverlay | @contentstack/live-preview-utils
-
- -
-
-
- -
-
    - -
  • -

    Hides the focus overlay and performs necessary cleanup actions when the user clicks outside of the focused element.

    -
    -
    -

    Parameters

    -
      -
    • -
      elements: {
          previousSelectedEditableDOM: null | Element;
          visualEditorOverlayWrapper: null | HTMLDivElement;
          visualEditorWrapper: null | HTMLDivElement;
      }
      -

      An object containing references to the focus overlay wrapper, the previously selected editable DOM element, and the visual editor wrapper.

      -
      -
        -
      • -
        previousSelectedEditableDOM: null | Element
      • -
      • -
        visualEditorOverlayWrapper: null | HTMLDivElement
      • -
      • -
        visualEditorWrapper: null | HTMLDivElement
    -

    Returns void

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/liveEditor_utils_generateFieldSchemaMap.generateFieldSchemaMap.html b/docs/functions/liveEditor_utils_generateFieldSchemaMap.generateFieldSchemaMap.html deleted file mode 100644 index e4b2419e..00000000 --- a/docs/functions/liveEditor_utils_generateFieldSchemaMap.generateFieldSchemaMap.html +++ /dev/null @@ -1,89 +0,0 @@ -generateFieldSchemaMap | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/liveEditor_utils_generateStartEditingButton.generateStartEditingButton.html b/docs/functions/liveEditor_utils_generateStartEditingButton.generateStartEditingButton.html deleted file mode 100644 index fe7c5b22..00000000 --- a/docs/functions/liveEditor_utils_generateStartEditingButton.generateStartEditingButton.html +++ /dev/null @@ -1,95 +0,0 @@ -generateStartEditingButton | @contentstack/live-preview-utils
-
- -
-
-
- -
-
    - -
  • -

    Generates a start editing button for the visual editor.

    - -

    Returns

    The generated HTMLAnchorElement representing the start editing button, or undefined if the visualEditorWrapper is null.

    -
    -
    -

    Parameters

    -
      -
    • -
      visualEditorWrapper: null | HTMLDivElement
      -

      The HTMLDivElement that wraps the visual editor.

      -
    -

    Returns HTMLAnchorElement | undefined

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/liveEditor_utils_generateVisualEditorDom.generateVisualEditorCursor.html b/docs/functions/liveEditor_utils_generateVisualEditorDom.generateVisualEditorCursor.html deleted file mode 100644 index 1e8db0db..00000000 --- a/docs/functions/liveEditor_utils_generateVisualEditorDom.generateVisualEditorCursor.html +++ /dev/null @@ -1,86 +0,0 @@ -generateVisualEditorCursor | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/liveEditor_utils_generateVisualEditorDom.generateVisualEditorOverlay.html b/docs/functions/liveEditor_utils_generateVisualEditorDom.generateVisualEditorOverlay.html deleted file mode 100644 index 1acae9fd..00000000 --- a/docs/functions/liveEditor_utils_generateVisualEditorDom.generateVisualEditorOverlay.html +++ /dev/null @@ -1,102 +0,0 @@ -generateVisualEditorOverlay | @contentstack/live-preview-utils
-
- -
-
-
- -
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      onClick: ((visualEditorOverlayWrapper: null | HTMLDivElement) => void)
      -
        -
      • -
          -
        • (visualEditorOverlayWrapper: null | HTMLDivElement): void
        • -
        • -
          -

          Parameters

          -
            -
          • -
            visualEditorOverlayWrapper: null | HTMLDivElement
          -

          Returns void

    -

    Returns HTMLDivElement

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/liveEditor_utils_generateVisualEditorDom.generateVisualEditorWrapper.html b/docs/functions/liveEditor_utils_generateVisualEditorDom.generateVisualEditorWrapper.html deleted file mode 100644 index eb4b7e53..00000000 --- a/docs/functions/liveEditor_utils_generateVisualEditorDom.generateVisualEditorWrapper.html +++ /dev/null @@ -1,96 +0,0 @@ -generateVisualEditorWrapper | @contentstack/live-preview-utils
-
- -
-
-
- -
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      elements: {
          cursor: HTMLDivElement;
          overlay: HTMLDivElement;
      }
      -
        -
      • -
        cursor: HTMLDivElement
      • -
      • -
        overlay: HTMLDivElement
    -

    Returns HTMLDivElement

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/liveEditor_utils_getCsDataOfElement.getCsDataOfElement.html b/docs/functions/liveEditor_utils_getCsDataOfElement.getCsDataOfElement.html deleted file mode 100644 index 484cbca8..00000000 --- a/docs/functions/liveEditor_utils_getCsDataOfElement.getCsDataOfElement.html +++ /dev/null @@ -1,97 +0,0 @@ -getCsDataOfElement | @contentstack/live-preview-utils
-
- -
-
-
- -
-
    - -
  • -

    Returns the CSLP data of the closest ancestor element with a data-cslp attribute -to the target element of a mouse event.

    - -

    Returns

    The CSLP data of the closest ancestor element with a data-cslp attribute, -along with metadata and schema information for the corresponding field.

    -
    -
    -

    Parameters

    -
      -
    • -
      event: MouseEvent
      -

      The mouse event.

      -
    -

    Returns VisualEditorCslpEventDetails | undefined

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/liveEditor_utils_getFieldType.getFieldType.html b/docs/functions/liveEditor_utils_getFieldType.getFieldType.html deleted file mode 100644 index 2c91eb10..00000000 --- a/docs/functions/liveEditor_utils_getFieldType.getFieldType.html +++ /dev/null @@ -1,89 +0,0 @@ -getFieldType | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/liveEditor_utils_handleFieldMouseDown.handleFieldInput.html b/docs/functions/liveEditor_utils_handleFieldMouseDown.handleFieldInput.html deleted file mode 100644 index 8257adba..00000000 --- a/docs/functions/liveEditor_utils_handleFieldMouseDown.handleFieldInput.html +++ /dev/null @@ -1,90 +0,0 @@ -handleFieldInput | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/liveEditor_utils_handleFieldMouseDown.handleFieldKeyDown.html b/docs/functions/liveEditor_utils_handleFieldMouseDown.handleFieldKeyDown.html deleted file mode 100644 index aa379ce8..00000000 --- a/docs/functions/liveEditor_utils_handleFieldMouseDown.handleFieldKeyDown.html +++ /dev/null @@ -1,90 +0,0 @@ -handleFieldKeyDown | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/liveEditor_utils_handleIndividualFields.cleanIndividualFieldResidual.html b/docs/functions/liveEditor_utils_handleIndividualFields.cleanIndividualFieldResidual.html deleted file mode 100644 index 48373275..00000000 --- a/docs/functions/liveEditor_utils_handleIndividualFields.cleanIndividualFieldResidual.html +++ /dev/null @@ -1,97 +0,0 @@ -cleanIndividualFieldResidual | @contentstack/live-preview-utils
-
- -
-
-
- -
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      elements: {
          overlayWrapper: HTMLDivElement;
          previousSelectedEditableDOM: Element;
          visualEditorWrapper: null | HTMLDivElement;
      }
      -
        -
      • -
        overlayWrapper: HTMLDivElement
      • -
      • -
        previousSelectedEditableDOM: Element
      • -
      • -
        visualEditorWrapper: null | HTMLDivElement
    -

    Returns void

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/liveEditor_utils_handleIndividualFields.handleIndividualFields.html b/docs/functions/liveEditor_utils_handleIndividualFields.handleIndividualFields.html deleted file mode 100644 index 145fe6b5..00000000 --- a/docs/functions/liveEditor_utils_handleIndividualFields.handleIndividualFields.html +++ /dev/null @@ -1,103 +0,0 @@ -handleIndividualFields | @contentstack/live-preview-utils
-
- -
-
-
- -
-
    - -
  • -

    It handles all the fields based on their data type and its "multiple" property.

    -
    -
    -

    Parameters

    -
      -
    • -
      eventDetails: VisualEditorCslpEventDetails
      -

      The event details object that contain cslp and field metadata.

      -
    • -
    • -
      elements: {
          lastEditedField: null | Element;
          visualEditorWrapper: HTMLDivElement;
      }
      -

      The elements object that contain the visual editor wrapper.

      -
      -
        -
      • -
        lastEditedField: null | Element
      • -
      • -
        visualEditorWrapper: HTMLDivElement
    -

    Returns Promise<void>

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/liveEditor_utils_instanceButtons.generateAddInstanceButton.html b/docs/functions/liveEditor_utils_instanceButtons.generateAddInstanceButton.html deleted file mode 100644 index 97f7147f..00000000 --- a/docs/functions/liveEditor_utils_instanceButtons.generateAddInstanceButton.html +++ /dev/null @@ -1,107 +0,0 @@ -generateAddInstanceButton | @contentstack/live-preview-utils
-
- -
-
-
- -
-
    - -
  • -

    Generates a button element, when clicked, triggers the provided callback function.

    - -

    Returns

    The generated button element.

    -
    -
    -

    Parameters

    -
      -
    • -
      onClickCallback: ((event: MouseEvent) => void)
      -

      The function to be called when the button is clicked.

      -
      -
        -
      • -
          -
        • (event: MouseEvent): void
        • -
        • -
          -

          Parameters

          -
            -
          • -
            event: MouseEvent
          -

          Returns void

    -

    Returns HTMLButtonElement

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/liveEditor_utils_instanceButtons.getAddInstanceButtons.html b/docs/functions/liveEditor_utils_instanceButtons.getAddInstanceButtons.html deleted file mode 100644 index a4c8c10c..00000000 --- a/docs/functions/liveEditor_utils_instanceButtons.getAddInstanceButtons.html +++ /dev/null @@ -1,120 +0,0 @@ -getAddInstanceButtons | @contentstack/live-preview-utils
-
- -
-
-
- -
-
    - -
  • -

    Returns an array of HTMLButtonElement instances that can be used to add new instances to the visual editor.

    - -

    Returns

    An array of HTMLButtonElement instances or null if there are less than 2 buttons.

    -
    -
    -

    Parameters

    -
      -
    • -
      visualEditorWrapper: HTMLDivElement
      -

      The HTMLDivElement that contains the visual editor.

      -
    • -
    • -
      getAllButtons: true
      -

      If true, returns all add instance buttons. If false, returns only the previous and next buttons.

      -
    -

    Returns HTMLButtonElement[]

  • - -
  • -

    Returns an array of HTMLButtonElement instances that can be used to add new instances to the visual editor.

    - -

    Returns

    An array of HTMLButtonElement instances or null if there are less than 2 buttons.

    -
    -
    -

    Parameters

    -
      -
    • -
      visualEditorWrapper: HTMLDivElement
      -

      The HTMLDivElement that contains the visual editor.

      -
    • -
    • -
      Optional getAllButtons: false
      -

      If true, returns all add instance buttons. If false, returns only the previous and next buttons.

      -
    -

    Returns [HTMLButtonElement, HTMLButtonElement] | null

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/liveEditor_utils_multipleElementAddButton.getChildrenDirection.html b/docs/functions/liveEditor_utils_multipleElementAddButton.getChildrenDirection.html deleted file mode 100644 index 2b4fb2ec..00000000 --- a/docs/functions/liveEditor_utils_multipleElementAddButton.getChildrenDirection.html +++ /dev/null @@ -1,93 +0,0 @@ -getChildrenDirection | @contentstack/live-preview-utils
-
- -
-
-
- -
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      editableElement: Element
    • -
    • -
      parentCslpValue: string
    -

    Returns "none" | "horizontal" | "vertical"

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/liveEditor_utils_multipleElementAddButton.handleAddButtonsForMultiple.html b/docs/functions/liveEditor_utils_multipleElementAddButton.handleAddButtonsForMultiple.html deleted file mode 100644 index 485933a1..00000000 --- a/docs/functions/liveEditor_utils_multipleElementAddButton.handleAddButtonsForMultiple.html +++ /dev/null @@ -1,106 +0,0 @@ -handleAddButtonsForMultiple | @contentstack/live-preview-utils
-
- -
-
-
- -
-
    - -
  • -

    The function that handles the add instance buttons for multiple fields.

    - -

    Returns

    void

    -
    -
    -

    Parameters

    -
      -
    • -
      eventDetails: VisualEditorCslpEventDetails
      -

      The details containing the field metadata and cslp value.

      -
    • -
    • -
      elements: {
          editableElement: null | Element;
          visualEditorWrapper: null | HTMLDivElement;
      }
      -

      The elements object that contain the editable element and visual editor wrapper.

      -
      -
        -
      • -
        editableElement: null | Element
      • -
      • -
        visualEditorWrapper: null | HTMLDivElement
    -

    Returns void

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/liveEditor_utils_multipleElementAddButton.removeAddInstanceButtons.html b/docs/functions/liveEditor_utils_multipleElementAddButton.removeAddInstanceButtons.html deleted file mode 100644 index b9eb9ce0..00000000 --- a/docs/functions/liveEditor_utils_multipleElementAddButton.removeAddInstanceButtons.html +++ /dev/null @@ -1,100 +0,0 @@ -removeAddInstanceButtons | @contentstack/live-preview-utils
-
- -
-
-
- -
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      elements: {
          eventTarget: null | EventTarget;
          overlayWrapper: null | HTMLDivElement;
          visualEditorWrapper: null | HTMLDivElement;
      }
      -
        -
      • -
        eventTarget: null | EventTarget
      • -
      • -
        overlayWrapper: null | HTMLDivElement
      • -
      • -
        visualEditorWrapper: null | HTMLDivElement
    • -
    • -
      forceRemoveAll: boolean = false
    -

    Returns void

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils.addLivePreviewQueryTags.html b/docs/functions/utils.addLivePreviewQueryTags.html deleted file mode 100644 index 53256814..00000000 --- a/docs/functions/utils.addLivePreviewQueryTags.html +++ /dev/null @@ -1,96 +0,0 @@ -addLivePreviewQueryTags | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils.createMultipleEditButton.html b/docs/functions/utils.createMultipleEditButton.html deleted file mode 100644 index d6960d4b..00000000 --- a/docs/functions/utils.createMultipleEditButton.html +++ /dev/null @@ -1,120 +0,0 @@ -createMultipleEditButton | @contentstack/live-preview-utils
-
- -
-
-
-
- -

Function createMultipleEditButton

-
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      editCallback: ((e: MouseEvent) => void)
      -
        -
      • -
          -
        • (e: MouseEvent): void
        • -
        • -
          -

          Parameters

          -
            -
          • -
            e: MouseEvent
          -

          Returns void

    • -
    • -
      linkCallback: ((e: MouseEvent) => void)
      -
        -
      • -
          -
        • (e: MouseEvent): void
        • -
        • -
          -

          Parameters

          -
            -
          • -
            e: MouseEvent
          -

          Returns void

    -

    Returns HTMLDivElement

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils.createSingularEditButton.html b/docs/functions/utils.createSingularEditButton.html deleted file mode 100644 index 73d51c3d..00000000 --- a/docs/functions/utils.createSingularEditButton.html +++ /dev/null @@ -1,107 +0,0 @@ -createSingularEditButton | @contentstack/live-preview-utils
-
- -
-
-
-
- -

Function createSingularEditButton

-
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      editCallback: ((e: MouseEvent) => void)
      -
        -
      • -
          -
        • (e: MouseEvent): void
        • -
        • -
          -

          Parameters

          -
            -
          • -
            e: MouseEvent
          -

          Returns void

    -

    Returns HTMLDivElement

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils.getEditButtonPosition.html b/docs/functions/utils.getEditButtonPosition.html deleted file mode 100644 index 28445539..00000000 --- a/docs/functions/utils.getEditButtonPosition.html +++ /dev/null @@ -1,98 +0,0 @@ -getEditButtonPosition | @contentstack/live-preview-utils
-
- -
-
-
-
- -

Function getEditButtonPosition

-
-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils.hasWindow.html b/docs/functions/utils.hasWindow.html deleted file mode 100644 index e22faca4..00000000 --- a/docs/functions/utils.hasWindow.html +++ /dev/null @@ -1,91 +0,0 @@ -hasWindow | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils.shouldRenderEditButton.html b/docs/functions/utils.shouldRenderEditButton.html deleted file mode 100644 index 5526f9f4..00000000 --- a/docs/functions/utils.shouldRenderEditButton.html +++ /dev/null @@ -1,96 +0,0 @@ -shouldRenderEditButton | @contentstack/live-preview-utils
-
- -
-
-
-
- -

Function shouldRenderEditButton

-
-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_cslpdata.extractDetailsFromCslp.html b/docs/functions/utils_cslpdata.extractDetailsFromCslp.html deleted file mode 100644 index 6e32e56d..00000000 --- a/docs/functions/utils_cslpdata.extractDetailsFromCslp.html +++ /dev/null @@ -1,95 +0,0 @@ -extractDetailsFromCslp | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_defaults.getDefaultConfig.html b/docs/functions/utils_defaults.getDefaultConfig.html deleted file mode 100644 index 44249cdb..00000000 --- a/docs/functions/utils_defaults.getDefaultConfig.html +++ /dev/null @@ -1,85 +0,0 @@ -getDefaultConfig | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_defaults.getUserInitData.html b/docs/functions/utils_defaults.getUserInitData.html deleted file mode 100644 index ab2197a3..00000000 --- a/docs/functions/utils_defaults.getUserInitData.html +++ /dev/null @@ -1,85 +0,0 @@ -getUserInitData | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_handleUserConfig.handleInitData.html b/docs/functions/utils_handleUserConfig.handleInitData.html deleted file mode 100644 index 501c50a6..00000000 --- a/docs/functions/utils_handleUserConfig.handleInitData.html +++ /dev/null @@ -1,92 +0,0 @@ -handleInitData | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_onCookieChange.onCookieChange.html b/docs/functions/utils_onCookieChange.onCookieChange.html deleted file mode 100644 index e27f8100..00000000 --- a/docs/functions/utils_onCookieChange.onCookieChange.html +++ /dev/null @@ -1,113 +0,0 @@ -onCookieChange | @contentstack/live-preview-utils
-
- -
-
-
- -
-
    - -
  • -

    An event listener for cookie changes.

    -
    -
    -

    Parameters

    -
      -
    • -
      callback: ((event: {
          currentCookies: string;
          previousCookies: string;
      }) => void)
      -

      A callback function to be called when the cookie changes

      -
      -
        -
      • -
          -
        • (event: {
              currentCookies: string;
              previousCookies: string;
          }): void
        • -
        • -
          -

          Parameters

          -
            -
          • -
            event: {
                currentCookies: string;
                previousCookies: string;
            }
            -
              -
            • -
              currentCookies: string
            • -
            • -
              previousCookies: string
          -

          Returns void

    • -
    • -
      interval: number = 1000
      -

      number of milliseconds to wait between each check

      -
    -

    Returns void

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_replaceHtml.replaceDocumentBody.html b/docs/functions/utils_replaceHtml.replaceDocumentBody.html deleted file mode 100644 index bd55ff0c..00000000 --- a/docs/functions/utils_replaceHtml.replaceDocumentBody.html +++ /dev/null @@ -1,99 +0,0 @@ -replaceDocumentBody | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_replaceHtml.rerunScriptsInDocument.html b/docs/functions/utils_replaceHtml.rerunScriptsInDocument.html deleted file mode 100644 index 3cad71a8..00000000 --- a/docs/functions/utils_replaceHtml.rerunScriptsInDocument.html +++ /dev/null @@ -1,86 +0,0 @@ -rerunScriptsInDocument | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/functions/utils_replaceHtml.updateDocumentBody.html b/docs/functions/utils_replaceHtml.updateDocumentBody.html deleted file mode 100644 index 852367ae..00000000 --- a/docs/functions/utils_replaceHtml.updateDocumentBody.html +++ /dev/null @@ -1,106 +0,0 @@ -updateDocumentBody | @contentstack/live-preview-utils
-
- -
-
-
- -
-
    - -
  • -
    -

    Parameters

    -
      -
    • -
      document: Document
    • -
    • -
      receivedHTML: string
    • -
    • -
      options: {
          onPostOperation: (() => void);
          shouldReRunScripts: boolean;
      }
      -
        -
      • -
        onPostOperation: (() => void)
        -
          -
        • -
            -
          • (): void
          • -
          • -

            Returns void

      • -
      • -
        shouldReRunScripts: boolean
    -

    Returns Promise<void>

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/index.html b/docs/index.html deleted file mode 100644 index 7abd3d70..00000000 --- a/docs/index.html +++ /dev/null @@ -1,119 +0,0 @@ -@contentstack/live-preview-utils
-
- -
-
-
-
-

@contentstack/live-preview-utils

-
- -

Contentstack Live Preview Utils SDK

-
-

Contentstack is a headless CMS with an API-first approach. It is a CMS that developers can use to build powerful cross-platform applications in their favorite languages. Build your application frontend, and Contentstack will take care of the rest.

-

Contentstack provides the Live Preview Utils SDK to establish a communication channel between the various Contentstack SDKs and your website, transmitting live changes to the preview pane. Read More.

- - -

Installation

-
-

To install the package via npm, use the following command:

-
npm install @contentstack/live-preview-utils
-
-

Alternatively, if you want to include the package directly in your website HTML code, use the following command:

-
<script src="https://unpkg.com/@contentstack/live-preview-utils@1.3.2/dist/index.js"></script>
-
- - -

Initializing the SDK

-
- - -

Live Preview Utils

-
-

Since the Live Preview Utils SDK is responsible for communication, you need to only initialize it. -Use the following command to initialize the SDK:

-
import ContentstackLivePreview from "@contentstack/live-preview-utils";

ContentstackLivePreview.init({
stackDetails: {
apiKey: "your-stack-api-key",
},
}); -
-

Alternatively, if you want to initialize the SDK directly inside the HTML tag, use the ContentstackLivePreview.init() method as follows:

-
<script>
ContentstackLivePreview.init({
stackDetails: {
apiKey: "your-stack-api-key",
},
});
</script> -
- - -

Live Editing

- -

Live Preview provides edit tags that allow you to edit your content in real-time. Live edit tags are identified as the data-cslp attribute within the HTML tags. The styles for the live edit tags are available in the @contentstack/live-preview-utils/dist/main.css file.

-

To use live edit tags within your stack, you need to include them in your main index.js file as follows:

-
import "@contentstack/live-preview-utils/dist/main.css";
-
- - -

License

-
-

MIT License

-

Copyright © 2021 Contentstack. All Rights Reserved

-

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

-

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

-

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/liveEditor_utils_types_index_types.ITraverseSchemaVisitor.html b/docs/interfaces/liveEditor_utils_types_index_types.ITraverseSchemaVisitor.html deleted file mode 100644 index 8279e990..00000000 --- a/docs/interfaces/liveEditor_utils_types_index_types.ITraverseSchemaVisitor.html +++ /dev/null @@ -1,147 +0,0 @@ -ITraverseSchemaVisitor | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • ITraverseSchemaVisitor
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- - -

A flat list of all the fields with its schema

-
-
- -
should_visit: ((fieldSchema: IContentTypeRootBlocks, path: string) => boolean)
-
-

Type declaration

-
-
- -
visit: ((fieldSchema: IContentTypeRootBlocks, path: string) => void)
-
-

Type declaration

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_contentTypeSchema_types.IBooleanContentTypeSchema.html b/docs/interfaces/types_contentTypeSchema_types.IBooleanContentTypeSchema.html deleted file mode 100644 index 73f98aa5..00000000 --- a/docs/interfaces/types_contentTypeSchema_types.IBooleanContentTypeSchema.html +++ /dev/null @@ -1,165 +0,0 @@ -IBooleanContentTypeSchema | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IContentTypeSchemaCommonData -
      -
    • IBooleanContentTypeSchema
-
-
-
- -
-
-

Properties

-
- -
data_type: "boolean"
-
- -
display_name: string
-
- -
field_metadata: {
    default_value: boolean;
    description: string;
}
-
-

Type declaration

-
    -
  • -
    default_value: boolean
  • -
  • -
    description: string
-
- -
mandatory: boolean
-
- -
multiple: boolean
-
- -
non_localizable: boolean
-
- -
uid: string
-
- -
unique: boolean
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_contentTypeSchema_types.ICustomFieldContentTypeSchema.html b/docs/interfaces/types_contentTypeSchema_types.ICustomFieldContentTypeSchema.html deleted file mode 100644 index a3b6741c..00000000 --- a/docs/interfaces/types_contentTypeSchema_types.ICustomFieldContentTypeSchema.html +++ /dev/null @@ -1,179 +0,0 @@ -ICustomFieldContentTypeSchema | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IContentTypeSchemaCommonData -
      -
    • ICustomFieldContentTypeSchema
-
-
-
- -
-
-

Properties

-
- -
config: Record<string, unknown>
-
- -
data_type: "number" | "boolean" | "text" | "json" | "isodate" | "reference" | "file"
-
- -
display_name: string
-
- -
extension_uid: string
-
- -
field_metadata: {
    extension: true;
    is_asset?: boolean;
}
-
-

Type declaration

-
    -
  • -
    extension: true
  • -
  • -
    Optional is_asset?: boolean
-
- -
mandatory: boolean
-
- -
multiple: boolean
-
- -
non_localizable: boolean
-
- -
uid: string
-
- -
unique: boolean
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_contentTypeSchema_types.IDateContentTypeSchema.html b/docs/interfaces/types_contentTypeSchema_types.IDateContentTypeSchema.html deleted file mode 100644 index 16efecb9..00000000 --- a/docs/interfaces/types_contentTypeSchema_types.IDateContentTypeSchema.html +++ /dev/null @@ -1,177 +0,0 @@ -IDateContentTypeSchema | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IContentTypeSchemaCommonData -
      -
    • IDateContentTypeSchema
-
-
-
- -
-
-

Properties

-
- -
data_type: "isodate"
-
- -
display_name: string
-
- -
endDate: null | string
-
- -
field_metadata: {
    description: string;
}
-
-

Type declaration

-
    -
  • -
    description: string
-
- -
mandatory: boolean
-
- -
multiple: boolean
-
- -
non_localizable: boolean
-
- -
startDate: null | string
-
- -
uid: string
-
- -
unique: boolean
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_contentTypeSchema_types.IExperienceContainerContentTypeSchema.html b/docs/interfaces/types_contentTypeSchema_types.IExperienceContainerContentTypeSchema.html deleted file mode 100644 index 2aff09b0..00000000 --- a/docs/interfaces/types_contentTypeSchema_types.IExperienceContainerContentTypeSchema.html +++ /dev/null @@ -1,174 +0,0 @@ -IExperienceContainerContentTypeSchema | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IContentTypeSchemaCommonData -
      -
    • IExperienceContainerContentTypeSchema
-
-
-
- -
-
-

Properties

-
- -
data_type: "experience_container"
-
- -
display_name: string
-
- -
field_metadata: {
    enableDefaultVariation: boolean;
    experience_uid: string;
    project_uid: string;
}
-
-

Type declaration

-
    -
  • -
    enableDefaultVariation: boolean
  • -
  • -
    experience_uid: string
  • -
  • -
    project_uid: string
-
- -
mandatory: boolean
-
- -
multiple: boolean
-
- -
non_localizable: boolean
-
- -
-
- -
uid: string
-
- -
unique: boolean
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_contentTypeSchema_types.IFileContentTypeSchema.html b/docs/interfaces/types_contentTypeSchema_types.IFileContentTypeSchema.html deleted file mode 100644 index e707c891..00000000 --- a/docs/interfaces/types_contentTypeSchema_types.IFileContentTypeSchema.html +++ /dev/null @@ -1,172 +0,0 @@ -IFileContentTypeSchema | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IContentTypeSchemaCommonData -
      -
    • IFileContentTypeSchema
-
-
-
- -
-
-

Properties

-
- -
data_type: "file"
-
- -
display_name: string
-
- -
extensions: string[]
-
- -
field_metadata: {
    description: string;
    rich_text_type: "standard";
}
-
-

Type declaration

-
    -
  • -
    description: string
  • -
  • -
    rich_text_type: "standard"
-
- -
mandatory: boolean
-
- -
multiple: boolean
-
- -
non_localizable: boolean
-
- -
uid: string
-
- -
unique: boolean
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_contentTypeSchema_types.IGlobalFieldContentTypeSchema.html b/docs/interfaces/types_contentTypeSchema_types.IGlobalFieldContentTypeSchema.html deleted file mode 100644 index 4e290d93..00000000 --- a/docs/interfaces/types_contentTypeSchema_types.IGlobalFieldContentTypeSchema.html +++ /dev/null @@ -1,177 +0,0 @@ -IGlobalFieldContentTypeSchema | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IContentTypeSchemaCommonData -
      -
    • IGlobalFieldContentTypeSchema
-
-
-
- -
-
-

Properties

-
- -
data_type: "global_field"
-
- -
display_name: string
-
- -
field_metadata: {
    description: string;
}
-
-

Type declaration

-
    -
  • -
    description: string
-
- -
mandatory: boolean
-
- -
multiple: boolean
-
- -
non_localizable: boolean
-
- -
reference_to: string
-
- -
-
- -
uid: string
-
- -
unique: boolean
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_contentTypeSchema_types.IGroupContentTypeSchema.html b/docs/interfaces/types_contentTypeSchema_types.IGroupContentTypeSchema.html deleted file mode 100644 index 2696477d..00000000 --- a/docs/interfaces/types_contentTypeSchema_types.IGroupContentTypeSchema.html +++ /dev/null @@ -1,172 +0,0 @@ -IGroupContentTypeSchema | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IContentTypeSchemaCommonData -
      -
    • IGroupContentTypeSchema
-
-
-
- -
-
-

Properties

-
- -
data_type: "group"
-
- -
display_name: string
-
- -
field_metadata: {
    description: string;
    instruction: string;
}
-
-

Type declaration

-
    -
  • -
    description: string
  • -
  • -
    instruction: string
-
- -
mandatory: boolean
-
- -
multiple: boolean
-
- -
non_localizable: boolean
-
- -
-
- -
uid: string
-
- -
unique: boolean
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_contentTypeSchema_types.IHTMLRTEContentTypeSchema.html b/docs/interfaces/types_contentTypeSchema_types.IHTMLRTEContentTypeSchema.html deleted file mode 100644 index 0c3c99d6..00000000 --- a/docs/interfaces/types_contentTypeSchema_types.IHTMLRTEContentTypeSchema.html +++ /dev/null @@ -1,173 +0,0 @@ -IHTMLRTEContentTypeSchema | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IContentTypeSchemaCommonData -
      -
    • IHTMLRTEContentTypeSchema
-
-
-
- -
-
-

Properties

-
- -
data_type: "text"
-
- -
display_name: string
-
- -
field_metadata: {
    allow_rich_text: true;
    description: string;
    multiline: false;
    options: [];
    rich_text_type: "advanced" | "basic" | "custom";
    version: number;
}
-
-

Type declaration

-
    -
  • -
    allow_rich_text: true
  • -
  • -
    description: string
  • -
  • -
    multiline: false
  • -
  • -
    options: []
  • -
  • -
    rich_text_type: "advanced" | "basic" | "custom"
  • -
  • -
    version: number
-
- -
mandatory: boolean
-
- -
multiple: boolean
-
- -
non_localizable: boolean
-
- -
uid: string
-
- -
unique: boolean
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_contentTypeSchema_types.IJSONRTEContentTypeSchema.html b/docs/interfaces/types_contentTypeSchema_types.IJSONRTEContentTypeSchema.html deleted file mode 100644 index d3c1c54e..00000000 --- a/docs/interfaces/types_contentTypeSchema_types.IJSONRTEContentTypeSchema.html +++ /dev/null @@ -1,201 +0,0 @@ -IJSONRTEContentTypeSchema | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IContentTypeSchemaCommonData -
      -
    • IJSONRTEContentTypeSchema
-
-
-
- -
-
-

Properties

-
- -
data_type: "json"
-
- -
display_name: string
-
- -
error_messages: {
    format: string;
}
-
-

Type declaration

-
    -
  • -
    format: string
-
- -
field_metadata: {
    allow_json_rte: true;
    default_value: string;
    description: string;
    embed_entry: boolean;
    multiline: false;
    options: [];
    rich_text_type: "advanced" | "basic" | "custom";
}
-
-

Type declaration

-
    -
  • -
    allow_json_rte: true
  • -
  • -
    default_value: string
  • -
  • -
    description: string
  • -
  • -
    embed_entry: boolean
  • -
  • -
    multiline: false
  • -
  • -
    options: []
  • -
  • -
    rich_text_type: "advanced" | "basic" | "custom"
-
- -
format: string
-
- -
mandatory: boolean
-
- -
multiple: boolean
-
- -
non_localizable: boolean
-
- -
reference_to: ["sys_assets"]
-
- -
uid: string
-
- -
unique: boolean
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_contentTypeSchema_types.ILinkContentTypeSchema.html b/docs/interfaces/types_contentTypeSchema_types.ILinkContentTypeSchema.html deleted file mode 100644 index 17560ace..00000000 --- a/docs/interfaces/types_contentTypeSchema_types.ILinkContentTypeSchema.html +++ /dev/null @@ -1,170 +0,0 @@ -ILinkContentTypeSchema | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IContentTypeSchemaCommonData -
      -
    • ILinkContentTypeSchema
-
-
-
- -
-
-

Properties

-
- -
data_type: "link"
-
- -
display_name: string
-
- -
field_metadata: {
    default_value: {
        title: string;
        url: string;
    };
    description: string;
}
-
-

Type declaration

-
    -
  • -
    default_value: {
        title: string;
        url: string;
    }
    -
      -
    • -
      title: string
    • -
    • -
      url: string
  • -
  • -
    description: string
-
- -
mandatory: boolean
-
- -
multiple: boolean
-
- -
non_localizable: boolean
-
- -
uid: string
-
- -
unique: boolean
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_contentTypeSchema_types.IMarkdownContentTypeSchema.html b/docs/interfaces/types_contentTypeSchema_types.IMarkdownContentTypeSchema.html deleted file mode 100644 index 1b5ae12e..00000000 --- a/docs/interfaces/types_contentTypeSchema_types.IMarkdownContentTypeSchema.html +++ /dev/null @@ -1,167 +0,0 @@ -IMarkdownContentTypeSchema | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IContentTypeSchemaCommonData -
      -
    • IMarkdownContentTypeSchema
-
-
-
- -
-
-

Properties

-
- -
data_type: "text"
-
- -
display_name: string
-
- -
field_metadata: {
    description: string;
    markdown: true;
    version: number;
}
-
-

Type declaration

-
    -
  • -
    description: string
  • -
  • -
    markdown: true
  • -
  • -
    version: number
-
- -
mandatory: boolean
-
- -
multiple: boolean
-
- -
non_localizable: boolean
-
- -
uid: string
-
- -
unique: boolean
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_contentTypeSchema_types.IModularBlockSingleBlock.html b/docs/interfaces/types_contentTypeSchema_types.IModularBlockSingleBlock.html deleted file mode 100644 index 08b5261f..00000000 --- a/docs/interfaces/types_contentTypeSchema_types.IModularBlockSingleBlock.html +++ /dev/null @@ -1,115 +0,0 @@ -IModularBlockSingleBlock | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IModularBlockSingleBlock
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
-
- -
title: string
-
- -
uid: string
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_contentTypeSchema_types.IModularBlocksContentTypeSchema.html b/docs/interfaces/types_contentTypeSchema_types.IModularBlocksContentTypeSchema.html deleted file mode 100644 index c640fd14..00000000 --- a/docs/interfaces/types_contentTypeSchema_types.IModularBlocksContentTypeSchema.html +++ /dev/null @@ -1,172 +0,0 @@ -IModularBlocksContentTypeSchema | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IContentTypeSchemaCommonData -
      -
    • IModularBlocksContentTypeSchema
-
-
-
- -
-
-

Properties

-
- -
-
- -
data_type: "blocks"
-
- -
display_name: string
-
- -
field_metadata: {
    description: string;
    instruction: string;
}
-
-

Type declaration

-
    -
  • -
    description: string
  • -
  • -
    instruction: string
-
- -
mandatory: boolean
-
- -
multiple: boolean
-
- -
non_localizable: boolean
-
- -
uid: string
-
- -
unique: boolean
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_contentTypeSchema_types.IMultiLineTextBoxContentTypeSchema.html b/docs/interfaces/types_contentTypeSchema_types.IMultiLineTextBoxContentTypeSchema.html deleted file mode 100644 index 1a2d62f5..00000000 --- a/docs/interfaces/types_contentTypeSchema_types.IMultiLineTextBoxContentTypeSchema.html +++ /dev/null @@ -1,188 +0,0 @@ -IMultiLineTextBoxContentTypeSchema | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IContentTypeSchemaCommonData -
      -
    • IMultiLineTextBoxContentTypeSchema
-
-
-
- -
-
-

Properties

-
- -
data_type: "text"
-
- -
display_name: string
-
- -
error_messages: {
    format: string;
}
-
-

Type declaration

-
    -
  • -
    format: string
-
- -
field_metadata: {
    default_value: string;
    description: string;
    multiline: true;
    version: number;
}
-
-

Type declaration

-
    -
  • -
    default_value: string
  • -
  • -
    description: string
  • -
  • -
    multiline: true
  • -
  • -
    version: number
-
- -
format: string
-
- -
mandatory: boolean
-
- -
multiple: boolean
-
- -
non_localizable: boolean
-
- -
uid: string
-
- -
unique: boolean
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_contentTypeSchema_types.INumberContentTypeSchema.html b/docs/interfaces/types_contentTypeSchema_types.INumberContentTypeSchema.html deleted file mode 100644 index 5713a9ae..00000000 --- a/docs/interfaces/types_contentTypeSchema_types.INumberContentTypeSchema.html +++ /dev/null @@ -1,165 +0,0 @@ -INumberContentTypeSchema | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IContentTypeSchemaCommonData -
      -
    • INumberContentTypeSchema
-
-
-
- -
-
-

Properties

-
- -
data_type: "number"
-
- -
display_name: string
-
- -
field_metadata: {
    default_value: string;
    description: string;
}
-
-

Type declaration

-
    -
  • -
    default_value: string
  • -
  • -
    description: string
-
- -
mandatory: boolean
-
- -
multiple: boolean
-
- -
non_localizable: boolean
-
- -
uid: string
-
- -
unique: boolean
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_contentTypeSchema_types.IPageSchema.html b/docs/interfaces/types_contentTypeSchema_types.IPageSchema.html deleted file mode 100644 index 6143b84c..00000000 --- a/docs/interfaces/types_contentTypeSchema_types.IPageSchema.html +++ /dev/null @@ -1,166 +0,0 @@ -IPageSchema | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IPageSchema
-
-
-
- -
-
-

Properties

-
- -
_version: number
-
- -
created_at: string
-
- -
description: string
-
- -
inbuilt_class: false
-
- -
options: {
    is_page: boolean;
    singleton: boolean;
    title: string;
}
-
-

Type declaration

-
    -
  • -
    is_page: boolean
  • -
  • -
    singleton: boolean
  • -
  • -
    title: string
-
- -
-
- -
title: string
-
- -
uid: string
-
- -
updated_at: string
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_contentTypeSchema_types.IReferenceContentTypeSchema.html b/docs/interfaces/types_contentTypeSchema_types.IReferenceContentTypeSchema.html deleted file mode 100644 index 691370c7..00000000 --- a/docs/interfaces/types_contentTypeSchema_types.IReferenceContentTypeSchema.html +++ /dev/null @@ -1,172 +0,0 @@ -IReferenceContentTypeSchema | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IContentTypeSchemaCommonData -
      -
    • IReferenceContentTypeSchema
-
-
-
- -
-
-

Properties

-
- -
data_type: "reference"
-
- -
display_name: string
-
- -
field_metadata: {
    ref_multiple: boolean;
    ref_multiple_content_types: boolean;
}
-
-

Type declaration

-
    -
  • -
    ref_multiple: boolean
  • -
  • -
    ref_multiple_content_types: boolean
-
- -
mandatory: boolean
-
- -
multiple: boolean
-
- -
non_localizable: boolean
-
- -
reference_to: string[]
-
- -
uid: string
-
- -
unique: boolean
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_contentTypeSchema_types.ISelectContentTypeSchema.html b/docs/interfaces/types_contentTypeSchema_types.ISelectContentTypeSchema.html deleted file mode 100644 index da464e75..00000000 --- a/docs/interfaces/types_contentTypeSchema_types.ISelectContentTypeSchema.html +++ /dev/null @@ -1,188 +0,0 @@ -ISelectContentTypeSchema | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IContentTypeSchemaCommonData -
      -
    • ISelectContentTypeSchema
-
-
-
- -
-
-

Properties

-
- -
data_type: "text"
-
- -
display_name: string
-
- -
display_type: "dropdown" | "radio"
-
- -
enum: {
    advanced: boolean;
    choices: {
        value: string;
    }[];
}
-
-

Type declaration

-
    -
  • -
    advanced: boolean
  • -
  • -
    choices: {
        value: string;
    }[]
-
- -
field_metadata: {
    default_value: string;
    description: string;
    version: number;
}
-
-

Type declaration

-
    -
  • -
    default_value: string
  • -
  • -
    description: string
  • -
  • -
    version: number
-
- -
mandatory: boolean
-
- -
multiple: boolean
-
- -
non_localizable: boolean
-
- -
uid: string
-
- -
unique: boolean
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_contentTypeSchema_types.ISingleLineTextBoxContentTypeSchema.html b/docs/interfaces/types_contentTypeSchema_types.ISingleLineTextBoxContentTypeSchema.html deleted file mode 100644 index d9076913..00000000 --- a/docs/interfaces/types_contentTypeSchema_types.ISingleLineTextBoxContentTypeSchema.html +++ /dev/null @@ -1,186 +0,0 @@ -ISingleLineTextBoxContentTypeSchema | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IContentTypeSchemaCommonData -
      -
    • ISingleLineTextBoxContentTypeSchema
-
-
-
- -
-
-

Properties

-
- -
data_type: "text"
-
- -
display_name: string
-
- -
error_messages: {
    format: string;
}
-
-

Type declaration

-
    -
  • -
    format: string
-
- -
field_metadata: {
    default_value: string;
    description: string;
    version: number;
}
-
-

Type declaration

-
    -
  • -
    default_value: string
  • -
  • -
    description: string
  • -
  • -
    version: number
-
- -
format: string
-
- -
mandatory: boolean
-
- -
multiple: boolean
-
- -
non_localizable: boolean
-
- -
uid: string
-
- -
unique: boolean
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_contentTypeSchema_types.ITitleContentTypeSchema.html b/docs/interfaces/types_contentTypeSchema_types.ITitleContentTypeSchema.html deleted file mode 100644 index a505fb7c..00000000 --- a/docs/interfaces/types_contentTypeSchema_types.ITitleContentTypeSchema.html +++ /dev/null @@ -1,165 +0,0 @@ -ITitleContentTypeSchema | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IContentTypeSchemaCommonData -
      -
    • ITitleContentTypeSchema
-
-
-
- -
-
-

Properties

-
- -
data_type: "text"
-
- -
display_name: string
-
- -
field_metadata: {
    _default: true;
    version: number;
}
-
-

Type declaration

-
    -
  • -
    _default: true
  • -
  • -
    version: number
-
- -
mandatory: true
-
- -
multiple: boolean
-
- -
non_localizable: boolean
-
- -
uid: string
-
- -
unique: true
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_contentTypeSchema_types.IURLContentTypeSchema.html b/docs/interfaces/types_contentTypeSchema_types.IURLContentTypeSchema.html deleted file mode 100644 index 727a0001..00000000 --- a/docs/interfaces/types_contentTypeSchema_types.IURLContentTypeSchema.html +++ /dev/null @@ -1,165 +0,0 @@ -IURLContentTypeSchema | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IContentTypeSchemaCommonData -
      -
    • IURLContentTypeSchema
-
-
-
- -
-
-

Properties

-
- -
data_type: "text"
-
- -
display_name: string
-
- -
field_metadata: {
    _default: true;
    version: number;
}
-
-

Type declaration

-
    -
  • -
    _default: true
  • -
  • -
    version: number
-
- -
mandatory: boolean
-
- -
multiple: boolean
-
- -
non_localizable: boolean
-
- -
uid: "url"
-
- -
unique: boolean
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_cslp_types.CslpData.html b/docs/interfaces/types_cslp_types.CslpData.html deleted file mode 100644 index 2c615bbd..00000000 --- a/docs/interfaces/types_cslp_types.CslpData.html +++ /dev/null @@ -1,149 +0,0 @@ -CslpData | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • CslpData
-
-
-
- -
-
-

Properties

-
- -
content_type_uid: string
-
- -
cslpValue: string
-
- -
entry_uid: string
-
- -
fieldPath: string
-

This path excludes the indexes in the Group or Modular blocks. -This path could be used to traverse in the content type schema.

-
-
- -
fieldPathWithIndex: string
-

This path includes the indexes in the Group or Modular blocks. -This path could be used to traverse in the entry schema.

-
-
- -
locale: string
-
- -
multipleFieldMetadata: CslpDataMultipleFieldMetadata
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_cslp_types.CslpDataMultipleFieldMetadata.html b/docs/interfaces/types_cslp_types.CslpDataMultipleFieldMetadata.html deleted file mode 100644 index 0d1b70d2..00000000 --- a/docs/interfaces/types_cslp_types.CslpDataMultipleFieldMetadata.html +++ /dev/null @@ -1,110 +0,0 @@ -CslpDataMultipleFieldMetadata | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • CslpDataMultipleFieldMetadata
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
index: number
-
- -
parentDetails: null | CslpDataParentDetails
-

It contains the path of the parent group, modular block, reference, or field.

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_cslp_types.CslpDataParentDetails.html b/docs/interfaces/types_cslp_types.CslpDataParentDetails.html deleted file mode 100644 index 5e9a139a..00000000 --- a/docs/interfaces/types_cslp_types.CslpDataParentDetails.html +++ /dev/null @@ -1,108 +0,0 @@ -CslpDataParentDetails | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • CslpDataParentDetails
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
parentCslpValue: string
-
- -
parentPath: string
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_liveEditor_types.VisualEditorCslpEventDetails.html b/docs/interfaces/types_liveEditor_types.VisualEditorCslpEventDetails.html deleted file mode 100644 index 64544e93..00000000 --- a/docs/interfaces/types_liveEditor_types.VisualEditorCslpEventDetails.html +++ /dev/null @@ -1,115 +0,0 @@ -VisualEditorCslpEventDetails | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • VisualEditorCslpEventDetails
-
-
-
- -
-
-

Properties

-
- -
cslpData: string
-
- -
editableElement: Element
-
- -
fieldMetadata: CslpData
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_types.IClientDataMessage.html b/docs/interfaces/types_types.IClientDataMessage.html deleted file mode 100644 index cbbe9455..00000000 --- a/docs/interfaces/types_types.IClientDataMessage.html +++ /dev/null @@ -1,123 +0,0 @@ -IClientDataMessage | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
data: {
    hash: string;
}
-
-

Type declaration

-
    -
  • -
    hash: string
-
- -
from: "live-preview"
-
- -
type: "client-data-send"
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_types.IClientUrlParams.html b/docs/interfaces/types_types.IClientUrlParams.html deleted file mode 100644 index 348dfc1b..00000000 --- a/docs/interfaces/types_types.IClientUrlParams.html +++ /dev/null @@ -1,122 +0,0 @@ -IClientUrlParams | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IClientUrlParams
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
host: string
-
- -
port: string | number
-
- -
protocol: "http" | "https"
-
- -
url: string
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_types.IConfig.html b/docs/interfaces/types_types.IConfig.html deleted file mode 100644 index 1889a86f..00000000 --- a/docs/interfaces/types_types.IConfig.html +++ /dev/null @@ -1,179 +0,0 @@ -IConfig | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IConfig
-
-
-
- -
-
-

Properties

-
- -
cleanCslpOnProduction: boolean
-
- -
clientUrlParams: IClientUrlParams
-
- -
editButton: IConfigEditButton
-
- -
enable: boolean
-
- -
hash: string
-
- -
-
- -
onChange: (() => void)
-
-

Type declaration

-
    -
  • -
      -
    • (): void
    • -
    • -

      Returns void

-
- -
runScriptsOnUpdate: boolean
-
- -
ssr: boolean
-
- -
stackDetails: IStackDetails
-
- -
stackSdk: IStackSdk
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_types.IConfigEditButton.html b/docs/interfaces/types_types.IConfigEditButton.html deleted file mode 100644 index 26da9d1e..00000000 --- a/docs/interfaces/types_types.IConfigEditButton.html +++ /dev/null @@ -1,122 +0,0 @@ -IConfigEditButton | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IConfigEditButton
-
-
-
- -
-
-

Properties

-
- -
enable: boolean
-
- -
exclude?: ("insideLivePreviewPortal" | "outsideLivePreviewPortal")[]
-
- -
includeByQueryParameter?: boolean
-
- -
position?: "top" | "bottom" | "left" | "right" | "top-left" | "top-right" | "top-center" | "bottom-left" | "bottom-right" | "bottom-center"
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_types.IDocWithScriptMessage.html b/docs/interfaces/types_types.IDocWithScriptMessage.html deleted file mode 100644 index 61ad73ae..00000000 --- a/docs/interfaces/types_types.IDocWithScriptMessage.html +++ /dev/null @@ -1,123 +0,0 @@ -IDocWithScriptMessage | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
data: {
    body: string;
}
-
-

Type declaration

-
    -
  • -
    body: string
-
- -
from: "live-preview"
-
- -
type: "document-body-post-scripts-loaded"
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_types.IEditButtonPosition.html b/docs/interfaces/types_types.IEditButtonPosition.html deleted file mode 100644 index 00e4a1cc..00000000 --- a/docs/interfaces/types_types.IEditButtonPosition.html +++ /dev/null @@ -1,108 +0,0 @@ -IEditButtonPosition | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IEditButtonPosition
-
-
-
- -
-
-

Properties

-
- -
leftBoundOfTooltip: number
-
- -
upperBoundOfTooltip: number
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_types.IEditEntrySearchParams.html b/docs/interfaces/types_types.IEditEntrySearchParams.html deleted file mode 100644 index 0589bcad..00000000 --- a/docs/interfaces/types_types.IEditEntrySearchParams.html +++ /dev/null @@ -1,125 +0,0 @@ -IEditEntrySearchParams | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IEditEntrySearchParams
-
-
-
- -
-
-

Properties

-
- -
content_type_uid?: string
-
- -
entry_uid?: string
-
- -
hash?: string
-
- -
live_preview?: string
-
-

Deprecated

pass this value as hash instead

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_types.IHistoryMessage.html b/docs/interfaces/types_types.IHistoryMessage.html deleted file mode 100644 index ecf6f742..00000000 --- a/docs/interfaces/types_types.IHistoryMessage.html +++ /dev/null @@ -1,123 +0,0 @@ -IHistoryMessage | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
data: {
    type: "forward" | "backward" | "reload";
}
-
-

Type declaration

-
    -
  • -
    type: "forward" | "backward" | "reload"
-
- -
from: "live-preview"
-
- -
type: "history"
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_types.IInitAckMessage.html b/docs/interfaces/types_types.IInitAckMessage.html deleted file mode 100644 index 0b8d546b..00000000 --- a/docs/interfaces/types_types.IInitAckMessage.html +++ /dev/null @@ -1,125 +0,0 @@ -IInitAckMessage | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
data: {
    contentTypeUid: string;
    entryUid: string;
}
-
-

Type declaration

-
    -
  • -
    contentTypeUid: string
  • -
  • -
    entryUid: string
-
- -
from: "live-preview"
-
- -
type: "init-ack"
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_types.IInitData.html b/docs/interfaces/types_types.IInitData.html deleted file mode 100644 index 1611622e..00000000 --- a/docs/interfaces/types_types.IInitData.html +++ /dev/null @@ -1,157 +0,0 @@ -IInitData | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IInitData
-
-
-
- -
-
-

Properties

-
- -
cleanCslpOnProduction: boolean
-
- -
clientUrlParams: Partial<Omit<IClientUrlParams, "url">>
-
- -
editButton: IConfigEditButton
-
- -
enable: boolean
-
- -
-
- -
runScriptsOnUpdate: boolean
-
- -
ssr: boolean
-
- -
stackDetails: Partial<IInitStackDetails>
-
- -
stackSdk: IStackSdk
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_types.IInitStackDetails.html b/docs/interfaces/types_types.IInitStackDetails.html deleted file mode 100644 index 6c577e42..00000000 --- a/docs/interfaces/types_types.IInitStackDetails.html +++ /dev/null @@ -1,126 +0,0 @@ -IInitStackDetails | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IInitStackDetails
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
apiKey: string
-
- -
branch: string
-
- -
environment: string
-
- -
locale: string
-

This locale is currently used by the live editor to -redirect to the correct locale if the no data-cslp tag -is present in the HTML to extract the locale.

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_types.ILivePreviewMessageCommon.html b/docs/interfaces/types_types.ILivePreviewMessageCommon.html deleted file mode 100644 index f3a366a1..00000000 --- a/docs/interfaces/types_types.ILivePreviewMessageCommon.html +++ /dev/null @@ -1,106 +0,0 @@ -ILivePreviewMessageCommon | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_types.IStackDetails.html b/docs/interfaces/types_types.IStackDetails.html deleted file mode 100644 index 9d851cdf..00000000 --- a/docs/interfaces/types_types.IStackDetails.html +++ /dev/null @@ -1,140 +0,0 @@ -IStackDetails | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IStackDetails
-
-
-
- -
-
-

Properties

-
- -
apiKey: string
-
- -
branch: string
-
- -
contentTypeUid: string
-
- -
entryUid: string
-
- -
environment: string
-
- -
locale: string
-

This locale is currently used by the live editor to -redirect to the correct locale if the no data-cslp tag -is present in the HTML to extract the locale.

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/interfaces/types_types.IStackSdk.html b/docs/interfaces/types_types.IStackSdk.html deleted file mode 100644 index 3305970b..00000000 --- a/docs/interfaces/types_types.IStackSdk.html +++ /dev/null @@ -1,125 +0,0 @@ -IStackSdk | @contentstack/live-preview-utils
-
- -
-
-
- -
-

Hierarchy

-
    -
  • IStackSdk
-
-

Indexable

-
[key: string]: any
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
environment: string
-
- -
headers: {
    api_key: string;
    branch?: string;
}
-
-

Type declaration

-
    -
  • -
    api_key: string
  • -
  • -
    Optional branch?: string
-
- -
live_preview: {
    [key: string]: any;
} & Partial<IConfig>
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/live-preview-configs.md b/docs/live-preview-configs.md new file mode 100644 index 00000000..cf2e9466 --- /dev/null +++ b/docs/live-preview-configs.md @@ -0,0 +1,328 @@ +# Contentstack Live Preview Utils SDK Configs + +The init data has following structure + +- [Contentstack Live Preview Utils SDK Configs](#contentstack-live-preview-utils-sdk-configs) + - [`init(config: IConfig)`](#initconfig-iconfig) + - [`enable`](#enable) + - [`ssr`](#ssr) + - [`editButton`](#editbutton) + - [`cleanCslpOnProduction`](#cleancslponproduction) + - [`stackDetails`](#stackdetails) + - [`apiKey`](#apikey) + - [`environment`](#environment) + - [`clientUrlParams`](#clienturlparams) + - [NA config](#na-config) + - [EU config](#eu-config) + - [`stackSdk`](#stacksdk) + - [`onLiveEdit(callback: () => void)`](#onliveeditcallback---void) + - [`onEntryChange(callback: () => void)`](#onentrychangecallback---void) + - [hash](#hash) + - [setConfigFromParams(config: ConstructorParameters\[0\])](#setconfigfromparamsconfig-constructorparameters0) + - [`getGatsbyDataFormat(sdkQuery: IStackSdk, prefix: string)`](#getgatsbydataformatsdkquery-istacksdk-prefix-string) + +## `init(config: IConfig)` + +The `init()` method initializes the Live Preview Utils SDK by setting up the necessary event listeners. +​ +The `init()` method accepts a configuration object as a parameter. The following explains all the options available for the configuration. + +### `enable` + +| type | default | optional | +| ------- | ------- | -------- | +| boolean | true | yes | + +​ +The `enable` property determines whether Live Preview communications have been enabled. + +### `ssr` + +| type | default | optional | +| ------- | ------- | -------- | +| boolean | true | yes | + +The ssr property determines the data update strategy for previewed content whenever you make changes to entry content. It depends on whether your app is [SSR](https://www.contentstack.com/docs/developers/set-up-live-preview/set-up-live-preview-for-your-website/#server-side-rendering-ssr-) or [CSR](https://www.contentstack.com/docs/developers/set-up-live-preview/set-up-live-preview-for-your-website/#client-side-rendering-csr-). + +If you set the property to `true`, then your app or website is rendered from the server (SSR) and a request will be sent for a fresh HTML page every time you edit content. + +When you set the property to `false`, then app is rendered from the client side (CSR). Your framework, e.g. React, will fetch the data and reload the existing page. + +> **Note:** For CSR mode, [stackSDK](#stacksdk) is required. Hence, we automatically switch mode to CSR when you pass this object. This config is provided to override the default behavior. + +### `editButton` +The editButton object allows you to manage the "Edit" button both within and outside the Live Preview portal. It offers the following features: +- Enable/disable the "Edit" button +- Include/exclude the "Edit" button from inside/outside the Live Preview panel +- Adjust the position of the "Edit" button using eight over predefined positions + +The editButton object contains four keys: + +1. #### `enable` + | type | default | optional | + | ------- | ------- | -------- | + | boolean | true | no | + + This key lets you specify whether you want to display the “Edit” button or not. It is of type “Boolean” with value true/false. + +2. #### `exclude` + | type | default | optional | + | ------- | ------- | -------- | + | array | [ ] | yes | + + This key provides you with the option to exclude the editButton from either inside or outside the Live Preview portal for certain conditions. It is of type “Array” with any one of the following string values: + + - ##### `insideLivePreviewPortal` + + Used when you want to remove the “Edit” button from within the Live Preview portal. + - ##### `outsideLivePreviewPortal` + + Used when you want to remove the “Edit” button from outside the Live Preview portal. + + > **Note:** Although you have excluded the "Edit" button for Live Preview, you can add the `cslp-buttons` query parameter in your website URL to display the "Edit" button outside of your Live Preview-enabled website. + + +3. #### `includeByQueryParameter` + | type | default | optional | + | ------- | ------- | -------- | + | boolean | true | yes | + + This key is used to override the `cslp-buttons` query parameter. You can set this to true/false to enable/disable the "Edit" button option, respectively. + +4. #### `position` + | type | default | optional | + | ------- | ------- | -------- | + | string | top | yes | + + The user can place the "Edit" button in eight predefined positions within or over the Live Preview portal using these values: left, right, top-left (or top), top-right, top-center, bottom-left (or bottom), bottom-right, and bottom-center. + + > **Note:** The default position of the "Edit" button is set to "top". In a collaborative work environment, you can also manually position the “Edit” button on your website by applying the `data-cslp-button-position` attribute to the HTML tag with one of the position values. + +**For example:** +```ts +ContentstackLivePreview.init({ + ... + editButton: { + enable: true, + exclude: ["outsideLivePreviewPortal"], + includeByQueryParameter: false, + position:'top-right', + } +}); +``` + +### `cleanCslpOnProduction` + +| type | default | optional | +| ------- | ------- | -------- | +| boolean | true | yes | + +When `enable` is set to `false` and cleanCslpOnProduction is set to `true`, the `data-cslp` attributes are removed from the website. + +### `stackDetails` + +The `stackDetails` object contains stack related information that helps in redirecting to the corresponding entry whenever you use [edit tags](https://www.contentstack.com/docs/developers/set-up-live-preview/set-up-live-preview-for-your-website/#live-edit-tags-for-entries-optional-) within your website. + +If you do not use live edit tags, then you don't need to use the `stackDetails` property. + +```ts +stackDetails { + apiKey: string + environment: string +} +``` + +#### `apiKey` + +The API key of the concerned stack. + +> **Note:** This is required if you are using the live edit tags. + +| type | optional | +| ------ | ------------------------------------ | +| string | yes (no, if you are using edit tags) | + +#### `environment` + +The environment name of the concerned stack. + +| type | optional | +| ------ | -------- | +| string | yes | + +### `clientUrlParams` + +The `clientUrlParams` object contains the URL information of the stack that contains your webpage content. By default, the configuration details are set for the NA region. + +#### NA config + +```js +{ + protocol: "https", + host: "app.contentstack.com", + port: 443, +} +``` + +#### EU config + +```js +{ + protocol: "https", + host: "eu-app.contentstack.com", + port: 443, +} +``` + +Pass the `clientUrlParams` object only if you need to modify the URL. +​ + +### `stackSdk` + +The `stackSdk` object represents the `Stack` class that we get by executing the `Contentstack.Stack()` method. It is required for Client-Side Rendering (CSR) as we need to inject the Live Preview hash and content type UID into the Stack class. + +## `onLiveEdit(callback: () => void)` + +The onLiveEdit method modifies or alters the content inside the Live Preview panel as soon as a change is made in the entry. This method runs a single API request to retrieve draft content from the entry and display the changes in the Live Preview panel. + +> **Note:** The onLiveEdit method will not fetch the published content of the entry and is only applicable in the Client-Side Rendering ([CSR](https://www.contentstack.com/docs/developers/set-up-live-preview/set-up-live-preview-for-your-website/#client-side-rendering-csr-)) mode. + +For Client-Side Rendering (CSR), as the framework handles data collection and rendering by itself, we recommend creating a function, say `updateData`, to fetch data and pass it to the `onLiveEdit` method. The `onLiveEdit` method will execute the `updateData` function whenever new data is available. + +For example, in a React application, you can create an `updateData` function that will fetch data from Contentstack and store it in a React state. Inside the `useEffect` function, you need to call the `onLiveEdit` method and pass the `updateData` function to it. +​ + +```js +// utils.js +... +export const onLiveEdit = ContentstackLivePreview.onLiveEdit; +... + +// Footer.js +import React from "react"; +import ContentstackLivePreview from "./utils.js"; + +const Footer = () => { + const [data, setData] = React.useState({}); + + const updateData = () => { + const fetchedData = SomeCallToGetData(); + setData(fetchedData); + }; + + React.useEffect(() => { + ContentstackLivePreview.onLiveEdit(updateData); + }, []); + + return
{data.company_name}
; +}; +``` + +## `onEntryChange(callback: () => void)` + +For Client-Side Rendering (CSR), data collection and rendering is handled by the framework itself. Hence, for CSR, we recommend creating a function responsible for fetching and storing data, for example, `updatePage()`, and passing it to the `onEntryChange()` method. This will execute the updatePage() function whenever new data is available. +​ + +> **Note:** This function only works when [`ssr`](#ssr) is set to `false`, indicating that the application is of type [CSR](https://www.contentstack.com/docs/developers/set-up-live-preview/set-up-live-preview-for-your-website/#client-side-rendering-csr-). + +For example, in a React application, you can create an updateData() function that will fetch data from Contentstack and store it in a React state. Inside the useEffect() function, you need to call the `onEntryChange()` method and pass the updateData() function to it. +​ + +```js +// utils.js +... +export const onEntryChange = ContentstackLivePreview.onEntryChange; +... + +// Footer.js +import React from "react"; +import ContentstackLivePreview from "live-preview-utils"; + +const Footer = () => { + const [data, setData] = React.useState({}); + + const updateData = () => { + const fetchedData = SomeCallToGetData(); + setData(fetchedData); + }; + + React.useEffect(() => { + ContentstackLivePreview.onEntryChange(updateData); + }, []); + + return
{data.company_name}
; +}; +``` + +> **Note:** To make the `onEntryChange` method work similarly to the [`onLiveEdit`](#onliveeditcallback---void) method, you can utilize the optional parameter `skipInitialRender:true`. This will enable the function to only call the Contentstack API once. + +**For example:** + +```js +onEntryChange(fetchData, { skipInitialRender: true }); +``` + +## hash + +The `hash` property returns the live preview hash of the entry. It returns an empty string if the page is not opened in live preivew pane. + +> **Note:** In the SSR mode, the hash may not be populated automatically and may require you to pass it using the `setConfigFromParams()` method. + +**For example:** + +```js +console.log(ContentstackLivePreview.hash); // "hash" +``` + +## setConfigFromParams(config: ConstructorParameters[0]) + +The `setConfigFromParams` method allows you to set the configuration from the URL parameters. It accepts the URLSearchParams object as a parameter. This method is used in the SSR mode to set the live preview hash received from the URL. + +**For example:** + +```js +console.log(ContentstackLivePreview.hash); // "" +ContentstackLivePreview.setConfigFromParams(window.location.search); // https://example.com?live_preview=hash +console.log(ContentstackLivePreview.hash); // "hash" +``` + +## `getGatsbyDataFormat(sdkQuery: IStackSdk, prefix: string)` + +Gatsby primarily fetches data using the [`gatsby-source-contentstack` plugin](https://www.gatsbyjs.com/plugins/gatsby-source-contentstack/). But, Live Preview currently works only on the [contentstack SDK](https://www.npmjs.com/package/contentstack). + +Hence, for Gatsby, we fetch the data from the contentstack SDK and store it in React state. Post that, we re-render the page using the `onEntryChange()` method. As the data format is different for the gatsby-source-contentstack plugin, it returns a prefix and the entry name in Camel case. Hence, we use `getGatsbyDataFormat()` to change the entry's name. +​ +The `getGatsbyDataFormat()` method accepts the Contentstack `Stack` object as the first parameter and the prefix as the second. The prefix is set inside the `gatsby-config.js` file. The default value set for the prefix is `contentstack`. + +**For example:** + +```js +const query = Stack.ContentType("your-contentype").Entry("entry-uid"); + +const formattedData = ContentstackLivePreview.getGatsbyDataFormat( + query, + "contentstack" +); + +setData(formattedData); +``` + +**Difference in data:** + +```js +// not passed to function +{ + "footer_lib": { + "title": "footer", + ... + } +} + +// passed to function with prefix as 'contentstack' +{ + "contentstackFooterLib": { + "title": "footer", + ... + } +} +``` diff --git a/docs/modules.html b/docs/modules.html deleted file mode 100644 index cc2e4eb1..00000000 --- a/docs/modules.html +++ /dev/null @@ -1,108 +0,0 @@ -@contentstack/live-preview-utils
-
- -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/contentstack_live_preview_HOC.html b/docs/modules/contentstack_live_preview_HOC.html deleted file mode 100644 index c03a736c..00000000 --- a/docs/modules/contentstack_live_preview_HOC.html +++ /dev/null @@ -1,98 +0,0 @@ -contentstack-live-preview-HOC | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/index.html b/docs/modules/index.html deleted file mode 100644 index 8630b392..00000000 --- a/docs/modules/index.html +++ /dev/null @@ -1,98 +0,0 @@ -index | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/liveEditor.html b/docs/modules/liveEditor.html deleted file mode 100644 index 3dc2ebee..00000000 --- a/docs/modules/liveEditor.html +++ /dev/null @@ -1,87 +0,0 @@ -liveEditor | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/liveEditor_utils_assetButton.html b/docs/modules/liveEditor_utils_assetButton.html deleted file mode 100644 index f960a646..00000000 --- a/docs/modules/liveEditor_utils_assetButton.html +++ /dev/null @@ -1,89 +0,0 @@ -liveEditor/utils/assetButton | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/liveEditor_utils_constants.html b/docs/modules/liveEditor_utils_constants.html deleted file mode 100644 index f8badfdb..00000000 --- a/docs/modules/liveEditor_utils_constants.html +++ /dev/null @@ -1,93 +0,0 @@ -liveEditor/utils/constants | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/liveEditor_utils_fieldSchemaMap.html b/docs/modules/liveEditor_utils_fieldSchemaMap.html deleted file mode 100644 index 7c6599e3..00000000 --- a/docs/modules/liveEditor_utils_fieldSchemaMap.html +++ /dev/null @@ -1,87 +0,0 @@ -liveEditor/utils/fieldSchemaMap | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/liveEditor_utils_focusOverlayWrapper.html b/docs/modules/liveEditor_utils_focusOverlayWrapper.html deleted file mode 100644 index 1014ae44..00000000 --- a/docs/modules/liveEditor_utils_focusOverlayWrapper.html +++ /dev/null @@ -1,89 +0,0 @@ -liveEditor/utils/focusOverlayWrapper | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/liveEditor_utils_generateFieldSchemaMap.html b/docs/modules/liveEditor_utils_generateFieldSchemaMap.html deleted file mode 100644 index 6bd21999..00000000 --- a/docs/modules/liveEditor_utils_generateFieldSchemaMap.html +++ /dev/null @@ -1,87 +0,0 @@ -liveEditor/utils/generateFieldSchemaMap | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/liveEditor_utils_generateStartEditingButton.html b/docs/modules/liveEditor_utils_generateStartEditingButton.html deleted file mode 100644 index 498f02a3..00000000 --- a/docs/modules/liveEditor_utils_generateStartEditingButton.html +++ /dev/null @@ -1,87 +0,0 @@ -liveEditor/utils/generateStartEditingButton | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/liveEditor_utils_generateVisualEditorDom.html b/docs/modules/liveEditor_utils_generateVisualEditorDom.html deleted file mode 100644 index 913a1f09..00000000 --- a/docs/modules/liveEditor_utils_generateVisualEditorDom.html +++ /dev/null @@ -1,91 +0,0 @@ -liveEditor/utils/generateVisualEditorDom | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/liveEditor_utils_getCsDataOfElement.html b/docs/modules/liveEditor_utils_getCsDataOfElement.html deleted file mode 100644 index fa979b56..00000000 --- a/docs/modules/liveEditor_utils_getCsDataOfElement.html +++ /dev/null @@ -1,87 +0,0 @@ -liveEditor/utils/getCsDataOfElement | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/liveEditor_utils_getFieldType.html b/docs/modules/liveEditor_utils_getFieldType.html deleted file mode 100644 index 65855d89..00000000 --- a/docs/modules/liveEditor_utils_getFieldType.html +++ /dev/null @@ -1,87 +0,0 @@ -liveEditor/utils/getFieldType | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/liveEditor_utils_handleFieldMouseDown.html b/docs/modules/liveEditor_utils_handleFieldMouseDown.html deleted file mode 100644 index 2a4b520f..00000000 --- a/docs/modules/liveEditor_utils_handleFieldMouseDown.html +++ /dev/null @@ -1,89 +0,0 @@ -liveEditor/utils/handleFieldMouseDown | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/liveEditor_utils_handleIndividualFields.html b/docs/modules/liveEditor_utils_handleIndividualFields.html deleted file mode 100644 index 6d5587bb..00000000 --- a/docs/modules/liveEditor_utils_handleIndividualFields.html +++ /dev/null @@ -1,89 +0,0 @@ -liveEditor/utils/handleIndividualFields | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/liveEditor_utils_instanceButtons.html b/docs/modules/liveEditor_utils_instanceButtons.html deleted file mode 100644 index 404f003c..00000000 --- a/docs/modules/liveEditor_utils_instanceButtons.html +++ /dev/null @@ -1,89 +0,0 @@ -liveEditor/utils/instanceButtons | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/liveEditor_utils_liveEditorPostMessage.html b/docs/modules/liveEditor_utils_liveEditorPostMessage.html deleted file mode 100644 index 1bf5c7c3..00000000 --- a/docs/modules/liveEditor_utils_liveEditorPostMessage.html +++ /dev/null @@ -1,87 +0,0 @@ -liveEditor/utils/liveEditorPostMessage | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/liveEditor_utils_multipleElementAddButton.html b/docs/modules/liveEditor_utils_multipleElementAddButton.html deleted file mode 100644 index 6e09b0ec..00000000 --- a/docs/modules/liveEditor_utils_multipleElementAddButton.html +++ /dev/null @@ -1,91 +0,0 @@ -liveEditor/utils/multipleElementAddButton | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/liveEditor_utils_types_index_types.html b/docs/modules/liveEditor_utils_types_index_types.html deleted file mode 100644 index e80590f7..00000000 --- a/docs/modules/liveEditor_utils_types_index_types.html +++ /dev/null @@ -1,99 +0,0 @@ -liveEditor/utils/types/index.types | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/liveEditor_utils_types_postMessage_types.html b/docs/modules/liveEditor_utils_types_postMessage_types.html deleted file mode 100644 index 1a237eea..00000000 --- a/docs/modules/liveEditor_utils_types_postMessage_types.html +++ /dev/null @@ -1,87 +0,0 @@ -liveEditor/utils/types/postMessage.types | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/live_preview.html b/docs/modules/live_preview.html deleted file mode 100644 index 4f314503..00000000 --- a/docs/modules/live_preview.html +++ /dev/null @@ -1,87 +0,0 @@ -live-preview | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/types_contentTypeSchema_types.html b/docs/modules/types_contentTypeSchema_types.html deleted file mode 100644 index 554cb579..00000000 --- a/docs/modules/types_contentTypeSchema_types.html +++ /dev/null @@ -1,134 +0,0 @@ -types/contentTypeSchema.types | @contentstack/live-preview-utils
-
- -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/types_cslp_types.html b/docs/modules/types_cslp_types.html deleted file mode 100644 index 883161cf..00000000 --- a/docs/modules/types_cslp_types.html +++ /dev/null @@ -1,91 +0,0 @@ -types/cslp.types | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/types_liveEditor_types.html b/docs/modules/types_liveEditor_types.html deleted file mode 100644 index 65cf464a..00000000 --- a/docs/modules/types_liveEditor_types.html +++ /dev/null @@ -1,87 +0,0 @@ -types/liveEditor.types | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/types_types.html b/docs/modules/types_types.html deleted file mode 100644 index 31c4457d..00000000 --- a/docs/modules/types_types.html +++ /dev/null @@ -1,131 +0,0 @@ -types/types | @contentstack/live-preview-utils
-
- -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/utils.html b/docs/modules/utils.html deleted file mode 100644 index 57c56017..00000000 --- a/docs/modules/utils.html +++ /dev/null @@ -1,104 +0,0 @@ -utils | @contentstack/live-preview-utils
-
- -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/utils_configHandler.html b/docs/modules/utils_configHandler.html deleted file mode 100644 index 8040ffe2..00000000 --- a/docs/modules/utils_configHandler.html +++ /dev/null @@ -1,87 +0,0 @@ -utils/configHandler | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/utils_cslpdata.html b/docs/modules/utils_cslpdata.html deleted file mode 100644 index 24668f7d..00000000 --- a/docs/modules/utils_cslpdata.html +++ /dev/null @@ -1,87 +0,0 @@ -utils/cslpdata | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/utils_defaults.html b/docs/modules/utils_defaults.html deleted file mode 100644 index b2fc4860..00000000 --- a/docs/modules/utils_defaults.html +++ /dev/null @@ -1,89 +0,0 @@ -utils/defaults | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/utils_handleUserConfig.html b/docs/modules/utils_handleUserConfig.html deleted file mode 100644 index da4435b7..00000000 --- a/docs/modules/utils_handleUserConfig.html +++ /dev/null @@ -1,92 +0,0 @@ -utils/handleUserConfig | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/utils_onCookieChange.html b/docs/modules/utils_onCookieChange.html deleted file mode 100644 index 98494a1f..00000000 --- a/docs/modules/utils_onCookieChange.html +++ /dev/null @@ -1,87 +0,0 @@ -utils/onCookieChange | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/utils_public_logger.html b/docs/modules/utils_public_logger.html deleted file mode 100644 index cf9ddfb2..00000000 --- a/docs/modules/utils_public_logger.html +++ /dev/null @@ -1,87 +0,0 @@ -utils/public-logger | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/modules/utils_replaceHtml.html b/docs/modules/utils_replaceHtml.html deleted file mode 100644 index d4c4dec9..00000000 --- a/docs/modules/utils_replaceHtml.html +++ /dev/null @@ -1,91 +0,0 @@ -utils/replaceHtml | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/types/liveEditor_utils_types_index_types.ISchemaFieldMap.html b/docs/types/liveEditor_utils_types_index_types.ISchemaFieldMap.html deleted file mode 100644 index 01377333..00000000 --- a/docs/types/liveEditor_utils_types_index_types.ISchemaFieldMap.html +++ /dev/null @@ -1,83 +0,0 @@ -ISchemaFieldMap | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/types/liveEditor_utils_types_index_types.ISchemaIndividualFieldMap.html b/docs/types/liveEditor_utils_types_index_types.ISchemaIndividualFieldMap.html deleted file mode 100644 index c5bd3749..00000000 --- a/docs/types/liveEditor_utils_types_index_types.ISchemaIndividualFieldMap.html +++ /dev/null @@ -1,83 +0,0 @@ -ISchemaIndividualFieldMap | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/types/types_contentTypeSchema_types.IContentTypeCommonBlocks.html b/docs/types/types_contentTypeSchema_types.IContentTypeCommonBlocks.html deleted file mode 100644 index c2142c6e..00000000 --- a/docs/types/types_contentTypeSchema_types.IContentTypeCommonBlocks.html +++ /dev/null @@ -1,102 +0,0 @@ -IContentTypeCommonBlocks | @contentstack/live-preview-utils
-
- -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/types/types_contentTypeSchema_types.IContentTypeRootBlocks.html b/docs/types/types_contentTypeSchema_types.IContentTypeRootBlocks.html deleted file mode 100644 index e1156ed3..00000000 --- a/docs/types/types_contentTypeSchema_types.IContentTypeRootBlocks.html +++ /dev/null @@ -1,102 +0,0 @@ -IContentTypeRootBlocks | @contentstack/live-preview-utils
-
- -
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/types/types_types.ILivePreviewMode.html b/docs/types/types_types.ILivePreviewMode.html deleted file mode 100644 index 405514b9..00000000 --- a/docs/types/types_types.ILivePreviewMode.html +++ /dev/null @@ -1,99 +0,0 @@ -ILivePreviewMode | @contentstack/live-preview-utils
-
- -
-
-
- -
ILivePreviewMode: "editor" | "preview"
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/types/types_types.ILivePreviewReceivePostMessages.html b/docs/types/types_types.ILivePreviewReceivePostMessages.html deleted file mode 100644 index 4764dcbb..00000000 --- a/docs/types/types_types.ILivePreviewReceivePostMessages.html +++ /dev/null @@ -1,99 +0,0 @@ -ILivePreviewReceivePostMessages | @contentstack/live-preview-utils
-
- -
-
-
-
- -

Type alias ILivePreviewReceivePostMessages

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/types/types_types.OnEntryChangeCallback.html b/docs/types/types_types.OnEntryChangeCallback.html deleted file mode 100644 index f8c8ba7f..00000000 --- a/docs/types/types_types.OnEntryChangeCallback.html +++ /dev/null @@ -1,107 +0,0 @@ -OnEntryChangeCallback | @contentstack/live-preview-utils
-
- -
-
-
- -
OnEntryChangeCallback: (() => void)
-
-

Type declaration

-
    -
  • -
      -
    • (): void
    • -
    • -

      Returns void

-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/types/types_types.OnEntryChangeCallbackUID.html b/docs/types/types_types.OnEntryChangeCallbackUID.html deleted file mode 100644 index 2e1374ad..00000000 --- a/docs/types/types_types.OnEntryChangeCallbackUID.html +++ /dev/null @@ -1,99 +0,0 @@ -OnEntryChangeCallbackUID | @contentstack/live-preview-utils
-
- -
-
-
-
- -

Type alias OnEntryChangeCallbackUID

-
OnEntryChangeCallbackUID: string
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/types/types_types.OnEntryChangeConfig.html b/docs/types/types_types.OnEntryChangeConfig.html deleted file mode 100644 index 3275528e..00000000 --- a/docs/types/types_types.OnEntryChangeConfig.html +++ /dev/null @@ -1,104 +0,0 @@ -OnEntryChangeConfig | @contentstack/live-preview-utils
-
- -
-
-
- -
OnEntryChangeConfig: {
    skipInitialRender?: boolean;
}
-
-

Type declaration

-
    -
  • -
    Optional skipInitialRender?: boolean
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/variables/index.ContentstackLivePreview.html b/docs/variables/index.ContentstackLivePreview.html deleted file mode 100644 index 9bec2a56..00000000 --- a/docs/variables/index.ContentstackLivePreview.html +++ /dev/null @@ -1,81 +0,0 @@ -ContentstackLivePreview | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/variables/liveEditor_utils_constants.LIVE_EDITOR_CHANNEL_ID.html b/docs/variables/liveEditor_utils_constants.LIVE_EDITOR_CHANNEL_ID.html deleted file mode 100644 index 20829b3e..00000000 --- a/docs/variables/liveEditor_utils_constants.LIVE_EDITOR_CHANNEL_ID.html +++ /dev/null @@ -1,83 +0,0 @@ -LIVE_EDITOR_CHANNEL_ID | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/variables/liveEditor_utils_constants.LIVE_EDITOR_FIELD_TYPE_ATTRIBUTE_KEY.html b/docs/variables/liveEditor_utils_constants.LIVE_EDITOR_FIELD_TYPE_ATTRIBUTE_KEY.html deleted file mode 100644 index d0e5270e..00000000 --- a/docs/variables/liveEditor_utils_constants.LIVE_EDITOR_FIELD_TYPE_ATTRIBUTE_KEY.html +++ /dev/null @@ -1,83 +0,0 @@ -LIVE_EDITOR_FIELD_TYPE_ATTRIBUTE_KEY | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/variables/liveEditor_utils_constants.LIVE_PREVIEW_OUTLINE_WIDTH_IN_PX.html b/docs/variables/liveEditor_utils_constants.LIVE_PREVIEW_OUTLINE_WIDTH_IN_PX.html deleted file mode 100644 index 5fcfa3cd..00000000 --- a/docs/variables/liveEditor_utils_constants.LIVE_PREVIEW_OUTLINE_WIDTH_IN_PX.html +++ /dev/null @@ -1,83 +0,0 @@ -LIVE_PREVIEW_OUTLINE_WIDTH_IN_PX | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/variables/liveEditor_utils_constants.numericInputRegex.html b/docs/variables/liveEditor_utils_constants.numericInputRegex.html deleted file mode 100644 index 0f846713..00000000 --- a/docs/variables/liveEditor_utils_constants.numericInputRegex.html +++ /dev/null @@ -1,83 +0,0 @@ -numericInputRegex | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/variables/liveEditor_utils_liveEditorPostMessage.default.html b/docs/variables/liveEditor_utils_liveEditorPostMessage.default.html deleted file mode 100644 index d12477bb..00000000 --- a/docs/variables/liveEditor_utils_liveEditorPostMessage.default.html +++ /dev/null @@ -1,80 +0,0 @@ -default | @contentstack/live-preview-utils
-
- -
- -
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/variables/utils.tooltipMultipleInnerHtml.html b/docs/variables/utils.tooltipMultipleInnerHtml.html deleted file mode 100644 index 2910a8d3..00000000 --- a/docs/variables/utils.tooltipMultipleInnerHtml.html +++ /dev/null @@ -1,87 +0,0 @@ -tooltipMultipleInnerHtml | @contentstack/live-preview-utils
-
- -
-
-
-
- -

Variable tooltipMultipleInnerHtmlConst

-
tooltipMultipleInnerHtml: "<div class=\"edit-button\" title=\"edit\">\n <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M8.1 3.5L0.3 11.3C0.1 11.5 0 11.7 0 12V15C0 15.6 0.4 16 1 16H4C4.3 16 4.5 15.9 4.7 15.7L12.5 7.9L8.1 3.5Z\" fill=\"#718096\"></path>\n <path d=\"M15.7 3.3L12.7 0.3C12.3 -0.1 11.7 -0.1 11.3 0.3L9.5 2.1L13.9 6.5L15.7 4.7C16.1 4.3 16.1 3.7 15.7 3.3Z\" fill=\"#718096\"></path>\n </svg>\n </div>\n <div title=\"click element\" class=\"external-link-button\">\n <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2.66654 2.66758H13.3332V13.3342H6.66654V16.0009H13.3332C14.0405 16.0009 14.7187 15.72 15.2188 15.2199C15.7189 14.7198 15.9999 14.0415 15.9999 13.3342V2.66758C15.9999 1.96034 15.7189 1.28206 15.2188 0.781964C14.7187 0.281867 14.0405 0.000915527 13.3332 0.000915527H2.66654C1.9593 0.000915527 1.28102 0.281867 0.780927 0.781964C0.280829 1.28206 -0.00012207 1.96034 -0.00012207 2.66758V9.33425H2.66654V2.66758Z\" fill=\"#718096\" />\n <path d=\"M6.94263 7.05734L0.999958 13L2.88529 14.8853L8.82796 8.94267L10.8853 11V5.00001H4.88529L6.94263 7.05734Z\" fill=\"#718096\" />\n </svg>\n </div>" = ...
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/variables/utils.tooltipSingularInnerHtml.html b/docs/variables/utils.tooltipSingularInnerHtml.html deleted file mode 100644 index 48018089..00000000 --- a/docs/variables/utils.tooltipSingularInnerHtml.html +++ /dev/null @@ -1,87 +0,0 @@ -tooltipSingularInnerHtml | @contentstack/live-preview-utils
-
- -
-
-
-
- -

Variable tooltipSingularInnerHtmlConst

-
tooltipSingularInnerHtml: "<div class=\"singular edit-button\">\n <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M8.1 3.5L0.3 11.3C0.1 11.5 0 11.7 0 12V15C0 15.6 0.4 16 1 16H4C4.3 16 4.5 15.9 4.7 15.7L12.5 7.9L8.1 3.5Z\" fill=\"#718096\"></path>\n <path d=\"M15.7 3.3L12.7 0.3C12.3 -0.1 11.7 -0.1 11.3 0.3L9.5 2.1L13.9 6.5L15.7 4.7C16.1 4.3 16.1 3.7 15.7 3.3Z\" fill=\"#718096\"></path>\n </svg>Edit\n </div>" = ...
-
-
-

Generated using TypeDoc

-
\ No newline at end of file diff --git a/docs/variables/utils_handleUserConfig.handleUserConfig.html b/docs/variables/utils_handleUserConfig.handleUserConfig.html deleted file mode 100644 index 2d02f049..00000000 --- a/docs/variables/utils_handleUserConfig.handleUserConfig.html +++ /dev/null @@ -1,99 +0,0 @@ -handleUserConfig | @contentstack/live-preview-utils
-
- -
-
-
- -
handleUserConfig: {
    clientUrlParams: ((existingConfig: IConfig, userConfig: Partial<IClientUrlParams>) => void);
} = ...
-
-

Type declaration

-
-
-
-

Generated using TypeDoc

-
\ No newline at end of file