From 93051a2abb1b43e73a33235b14ea34326919258d Mon Sep 17 00:00:00 2001 From: Bryn Ryans Date: Mon, 13 Mar 2023 10:32:30 -0700 Subject: [PATCH] feat: improve tile dialog rendering support (#144) * feat: improve tile dialog rendering support The Embed SDK and Looker now send and receive information that allows dialogs opened from tiles to be rendered in a user friendly manner. 1. The top of tile drilling dialogs is scrolled into view. 2. Alert and download dialogs remain in view. The developer has to make a couple of simple calls to activate this functionality. In addition, a convenience method has been added to simplify IFRAME dynamic height support. --- README.md | 69 +++++++++++++++++- demo/demo.ts | 35 +++------ demo/message_example.ts | 72 +++++++++++++++++-- docs/assets/search.js | 2 +- docs/classes/EmbedBuilder.html | 86 +++++++++++++++-------- docs/classes/EmbedClient.html | 8 +-- docs/index.html | 22 +++++- docs/interfaces/EnvClientDialogEvent.html | 7 ++ docs/interfaces/EnvHostScrollEvent.html | 6 ++ docs/interfaces/LookerEmbedEvent.html | 2 +- docs/interfaces/LookerEmbedEventMap.html | 21 +++--- docs/modules.html | 4 +- package.json | 2 +- src/embed.ts | 56 +++++++++++++++ src/embed_builder.ts | 65 +++++++++++++++++ src/types.ts | 38 ++++++++++ tests/embed_builder.spec.ts | 15 ++++ 17 files changed, 425 insertions(+), 85 deletions(-) create mode 100644 docs/interfaces/EnvClientDialogEvent.html create mode 100644 docs/interfaces/EnvHostScrollEvent.html diff --git a/README.md b/README.md index 8ee4626..21eb497 100644 --- a/README.md +++ b/README.md @@ -594,11 +594,50 @@ Prior to the release of the Embed SDK, Looker exposed an API that utilized JavaS ## Additional Considerations +## Dynamic dashboard height + +The IFRAMEs containing dashboards can be resized to reflect the height of the embedded dashboard. This allows the IFRAME to own the scrollbar rather than the embedded dashboard. To implement dynamic dashboard heights, listen to `page:properties:changed` events and use the height to set the IFRAME height. Example: + +```javascript +const pagePropertiesChangedHandler = ( + { height }: PagePropertiesChangedEvent, + elementId: string +) => { + if (height && height > 100) { + const element = document.querySelector( + `#${elementId} iframe` + ) as HTMLIFrameElement + if (element) { + element.style.height = `${height}px` + } + } +} + + +LookerEmbedSDK.createDashboardWithId(runtimeConfig.dashboardId) + .appendTo('#dashboard') + .on('page:properties:changed', (event: PagePropertiesChangedEvent) => { + pagePropertiesChangedHandler(event, 'dashboard') + }) + .build() + .connect() +``` + +The Embed SDK also contains a convenience method to add this functionality for you. Example: + +```javascript +LookerEmbedSDK.createDashboardWithId(runtimeConfig.dashboardId) + .withDynamicIFrameHeight() + .appendTo('#dashboard') + .build() + .connect() +``` + ### Full screen tile visualizations Looker has the capability to display individual tile visualizations in full screen mode. This feature works for embedded IFRAMEs but the `fullscreen` feature MUST be added to the containing IFRAME. Version 1.8.2 of the Embed SDK was updated to allow features to be added. The following example shows how to enable support for full screen mode. -``` +```javascript LookerEmbedSDK.createDashboardWithId(runtimeConfig.dashboardId) // Allow fullscreen tile visualizations .withAllowAttr('fullscreen') @@ -617,3 +656,31 @@ Looker has the capability to display individual tile visualizations in full scre ... }) ``` + +### Tile dialogs + +Users have the capability of opening dialogs from a dashboard tile. One downside of opening the dialogs is that unexpected scrolling can occur. With Looker 23.6+ it is now possible to mitigate the scrolling using the Embed SDK. Example: + +```javascript +LookerEmbedSDK.createDashboardWithId(runtimeConfig.dashboardId) + // Scrolls the top of the IFRAME into view when drilling + .withDialogScroll() + // Ensures that the tile download and tile alert dialogs remain in view + .withScrollMonitor() + // Append to the #dashboard element + .appendTo('#dashboard') + ... + // Finalize the build + .build() + // Connect to Looker + .connect() + // Finish up setup + .then((dashboard: LookerEmbedDashboard) => { + ... + }) + .catch((error: Error) => { + ... + }) +``` + +Note that this functionality is also available to the javascript API. See [here](demo/message_example.ts) for how to add this functionality. diff --git a/demo/demo.ts b/demo/demo.ts index 8c1157a..77a98a3 100644 --- a/demo/demo.ts +++ b/demo/demo.ts @@ -30,7 +30,6 @@ import type { LookerEmbedLook, LookerEmbedDashboard, LookerEmbedExplore, - PagePropertiesChangedEvent, SessionStatus, } from '../src/index' import { LookerEmbedSDK } from '../src/index' @@ -169,28 +168,6 @@ const preventNavigation = (event: any): any => { return {} } -/** - * A page properties changed handler that can be used to control the height of the - * embedded IFRAME. Different dashboards can be displayed by either calling the - * `loadDashboard` Embed SDK method OR by using the inbuilt embed content navigation - * feature. Whenever, the dashboard changes a `page:properties:changed` event is - * fired and this event contains the height of the dashboard content. - */ -const pagePropertiesChangedHandler = ( - { height }: PagePropertiesChangedEvent, - elementId: string -) => { - const { useDynamicHeights } = getConfiguration() - if (useDynamicHeights && height && height > 100) { - const element = document.querySelector( - `#${elementId} iframe` - ) as HTMLIFrameElement - if (element) { - element.style.height = `${height}px` - } - } -} - /** * Initialize the show dashboard configuration checkbox. */ @@ -378,6 +355,15 @@ const renderDashboard = (runtimeConfig: RuntimeConfig) => { document.querySelector('#demo-dashboard')!.style.display = '' LookerEmbedSDK.createDashboardWithId(runtimeConfig.dashboardId) + // When true scrolls the top of the IFRAME into view + .withDialogScroll(runtimeConfig.useDynamicHeights) + // When true updates the IFRAME height to reflect the height of the + // dashboard + .withDynamicIFrameHeight(runtimeConfig.useDynamicHeights) + // When true monitors the scroll position of the hosting window + // and sends it to the Looker IFRAME. The Looker IFRAME uses the + // information to position dialogs correctly. + .withScrollMonitor(runtimeConfig.useDynamicHeights) // Allow fullscreen tile visualizations .withAllowAttr('fullscreen') // Append to the #dashboard element @@ -403,9 +389,6 @@ const renderDashboard = (runtimeConfig: RuntimeConfig) => { .on('dashboard:delete:complete', () => updateStatus('#dashboard-state', 'Deleted') ) - .on('page:properties:changed', (event: PagePropertiesChangedEvent) => { - pagePropertiesChangedHandler(event, 'dashboard') - }) .on('session:status', (event: SessionStatus) => { processSessionStatus(event, '#dashboard-state') }) diff --git a/demo/message_example.ts b/demo/message_example.ts index a518225..a32a6fa 100644 --- a/demo/message_example.ts +++ b/demo/message_example.ts @@ -29,6 +29,7 @@ import type { LookerEmbedCookielessSessionData, PagePropertiesChangedEvent, + EnvClientDialogEvent, } from '../src/index' import { initSSOEmbed, @@ -212,6 +213,29 @@ const initializePreventNavigationCheckbox = () => { } } +/** + * Get the id of the dashboard IFRAME + */ +const getDashboardFrameId = ({ dashboardId }: RuntimeConfig) => + `embed-dasboard-${dashboardId}` + +/** + * Send scroll data to the Looker client + */ +const sendScrollData = () => { + const runtimeConfig = getConfiguration() + const dashboardFrameId = getDashboardFrameId(runtimeConfig) + const element = document.getElementById(dashboardFrameId) + if (element) { + getEmbedFrame(dashboardFrameId)?.send('env:host:scroll', { + offsetLeft: element.offsetLeft, + offsetTop: element.offsetTop, + screenX: window.scrollX, + scrollY: window.scrollY, + }) + } +} + /** * Initialize the use dynamic heights configuration checkbox. */ @@ -226,6 +250,14 @@ const initializeUseDynamicHeightsCheckbox = () => { updateConfiguration(runtimeConfig) location.reload() }) + if (useDynamicHeights) { + document.addEventListener('scroll', (_event: Event) => { + sendScrollData() + }) + window.addEventListener('resize', (_event: Event) => { + sendScrollData() + }) + } } } @@ -254,12 +286,6 @@ const initializeConfigurationControls = () => { initializeResetConfigButton() } -/** - * Get the id of the dashboard IFRAME - */ -const getDashboardFrameId = ({ dashboardId }: RuntimeConfig) => - `embed-dasboard-${dashboardId}` - /** * Initialize the dashboard controls */ @@ -297,6 +323,36 @@ const initializeDashboardControls = (runtimeConfig: RuntimeConfig) => { } } +/** + * Scroll drilling dialog into view + */ +const envClientDialogEventListener = ({ + open, + placement, +}: EnvClientDialogEvent) => { + const runtimeConfig = getConfiguration() + if (runtimeConfig.useDynamicHeights) { + const dashboardFrameId = getDashboardFrameId(runtimeConfig) + const element = document.getElementById(dashboardFrameId) + if (element) { + // Placement of 'cover' means that the dialog top is close + // to the top of the IFRAME. The top MAY be scrolled out + // of view. The following attempts to scroll the top of the + // dialog into view. + if (open && placement === 'cover') { + // Timeout is a little ugly. Suspect there might be an issue + // with a Looker component where the last row is scrolled + // into view. Normally not an issue because outside of embed + // as the dialog is limited to the viewport. + // Make timeout configurable? + window.setTimeout(() => { + element.scrollIntoView(true) + }, 200) + } + } + } +} + /** * Render a dashboard. When active this sets up listeners * for events that can be sent by the embedded Looker UI. @@ -307,7 +363,7 @@ const renderDashboard = ( recoverableError?: boolean ) => { if (runtimeConfig.showDashboard) { - const { dashboardId } = runtimeConfig + const { dashboardId, useDynamicHeights } = runtimeConfig document.querySelector('#demo-dashboard')!.style.display = '' addEmbedFrame( @@ -334,6 +390,8 @@ const renderDashboard = ( .on('page:properties:changed', (event: PagePropertiesChangedEvent) => { pagePropertiesChangedHandler(event, 'dashboard') }) + // Listen to messages that can scroll drilling dialog into view + .on('env:client:dialog', envClientDialogEventListener) // Listen to messages to prevent the user from navigating away .on('drillmenu:click', embedEventListener) .on('drillmodal:explore', embedEventListener) diff --git a/docs/assets/search.js b/docs/assets/search.js index 882df90..73fda0c 100644 --- a/docs/assets/search.js +++ b/docs/assets/search.js @@ -1 +1 @@ -window.searchData = JSON.parse("{\"kinds\":{\"128\":\"Class\",\"256\":\"Interface\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\",\"262144\":\"Accessor\",\"4194304\":\"Type alias\"},\"rows\":[{\"id\":0,\"kind\":128,\"name\":\"LookerEmbedSDK\",\"url\":\"classes/LookerEmbedSDK.html\",\"classes\":\"tsd-kind-class\"},{\"id\":1,\"kind\":2048,\"name\":\"init\",\"url\":\"classes/LookerEmbedSDK.html#init\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"LookerEmbedSDK\"},{\"id\":2,\"kind\":2048,\"name\":\"initCookieless\",\"url\":\"classes/LookerEmbedSDK.html#initCookieless\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"LookerEmbedSDK\"},{\"id\":3,\"kind\":2048,\"name\":\"createDashboardWithUrl\",\"url\":\"classes/LookerEmbedSDK.html#createDashboardWithUrl\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"LookerEmbedSDK\"},{\"id\":4,\"kind\":2048,\"name\":\"createDashboardWithId\",\"url\":\"classes/LookerEmbedSDK.html#createDashboardWithId\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"LookerEmbedSDK\"},{\"id\":5,\"kind\":2048,\"name\":\"createExploreWithUrl\",\"url\":\"classes/LookerEmbedSDK.html#createExploreWithUrl\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"LookerEmbedSDK\"},{\"id\":6,\"kind\":2048,\"name\":\"createExploreWithId\",\"url\":\"classes/LookerEmbedSDK.html#createExploreWithId\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"LookerEmbedSDK\"},{\"id\":7,\"kind\":2048,\"name\":\"createLookWithUrl\",\"url\":\"classes/LookerEmbedSDK.html#createLookWithUrl\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"LookerEmbedSDK\"},{\"id\":8,\"kind\":2048,\"name\":\"createLookWithId\",\"url\":\"classes/LookerEmbedSDK.html#createLookWithId\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"LookerEmbedSDK\"},{\"id\":9,\"kind\":2048,\"name\":\"createExtensionWithUrl\",\"url\":\"classes/LookerEmbedSDK.html#createExtensionWithUrl\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"LookerEmbedSDK\"},{\"id\":10,\"kind\":2048,\"name\":\"createExtensionWithId\",\"url\":\"classes/LookerEmbedSDK.html#createExtensionWithId\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"LookerEmbedSDK\"},{\"id\":11,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/LookerEmbedSDK.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"LookerEmbedSDK\"},{\"id\":12,\"kind\":128,\"name\":\"LookerEmbedDashboard\",\"url\":\"classes/LookerEmbedDashboard.html\",\"classes\":\"tsd-kind-class\"},{\"id\":13,\"kind\":2048,\"name\":\"run\",\"url\":\"classes/LookerEmbedDashboard.html#run\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LookerEmbedDashboard\"},{\"id\":14,\"kind\":2048,\"name\":\"stop\",\"url\":\"classes/LookerEmbedDashboard.html#stop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LookerEmbedDashboard\"},{\"id\":15,\"kind\":2048,\"name\":\"edit\",\"url\":\"classes/LookerEmbedDashboard.html#edit\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LookerEmbedDashboard\"},{\"id\":16,\"kind\":2048,\"name\":\"updateFilters\",\"url\":\"classes/LookerEmbedDashboard.html#updateFilters\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LookerEmbedDashboard\"},{\"id\":17,\"kind\":2048,\"name\":\"setOptions\",\"url\":\"classes/LookerEmbedDashboard.html#setOptions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LookerEmbedDashboard\"},{\"id\":18,\"kind\":2048,\"name\":\"openScheduleDialog\",\"url\":\"classes/LookerEmbedDashboard.html#openScheduleDialog\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LookerEmbedDashboard\"},{\"id\":19,\"kind\":2048,\"name\":\"loadDashboard\",\"url\":\"classes/LookerEmbedDashboard.html#loadDashboard\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LookerEmbedDashboard\"},{\"id\":20,\"kind\":2048,\"name\":\"send\",\"url\":\"classes/LookerEmbedDashboard.html#send\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"LookerEmbedDashboard\"},{\"id\":21,\"kind\":2048,\"name\":\"sendAndReceive\",\"url\":\"classes/LookerEmbedDashboard.html#sendAndReceive\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"LookerEmbedDashboard\"},{\"id\":22,\"kind\":128,\"name\":\"LookerEmbedExplore\",\"url\":\"classes/LookerEmbedExplore.html\",\"classes\":\"tsd-kind-class\"},{\"id\":23,\"kind\":2048,\"name\":\"run\",\"url\":\"classes/LookerEmbedExplore.html#run\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LookerEmbedExplore\"},{\"id\":24,\"kind\":2048,\"name\":\"updateFilters\",\"url\":\"classes/LookerEmbedExplore.html#updateFilters\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LookerEmbedExplore\"},{\"id\":25,\"kind\":2048,\"name\":\"send\",\"url\":\"classes/LookerEmbedExplore.html#send\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"LookerEmbedExplore\"},{\"id\":26,\"kind\":2048,\"name\":\"sendAndReceive\",\"url\":\"classes/LookerEmbedExplore.html#sendAndReceive\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"LookerEmbedExplore\"},{\"id\":27,\"kind\":128,\"name\":\"LookerEmbedExtension\",\"url\":\"classes/LookerEmbedExtension.html\",\"classes\":\"tsd-kind-class\"},{\"id\":28,\"kind\":2048,\"name\":\"send\",\"url\":\"classes/LookerEmbedExtension.html#send\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"LookerEmbedExtension\"},{\"id\":29,\"kind\":2048,\"name\":\"sendAndReceive\",\"url\":\"classes/LookerEmbedExtension.html#sendAndReceive\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"LookerEmbedExtension\"},{\"id\":30,\"kind\":128,\"name\":\"LookerEmbedLook\",\"url\":\"classes/LookerEmbedLook.html\",\"classes\":\"tsd-kind-class\"},{\"id\":31,\"kind\":2048,\"name\":\"run\",\"url\":\"classes/LookerEmbedLook.html#run\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LookerEmbedLook\"},{\"id\":32,\"kind\":2048,\"name\":\"updateFilters\",\"url\":\"classes/LookerEmbedLook.html#updateFilters\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LookerEmbedLook\"},{\"id\":33,\"kind\":2048,\"name\":\"send\",\"url\":\"classes/LookerEmbedLook.html#send\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"LookerEmbedLook\"},{\"id\":34,\"kind\":2048,\"name\":\"sendAndReceive\",\"url\":\"classes/LookerEmbedLook.html#sendAndReceive\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"LookerEmbedLook\"},{\"id\":35,\"kind\":128,\"name\":\"LookerEmbedBase\",\"url\":\"classes/LookerEmbedBase.html\",\"classes\":\"tsd-kind-class\"},{\"id\":36,\"kind\":2048,\"name\":\"send\",\"url\":\"classes/LookerEmbedBase.html#send\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LookerEmbedBase\"},{\"id\":37,\"kind\":2048,\"name\":\"sendAndReceive\",\"url\":\"classes/LookerEmbedBase.html#sendAndReceive\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LookerEmbedBase\"},{\"id\":38,\"kind\":128,\"name\":\"EmbedBuilder\",\"url\":\"classes/EmbedBuilder.html\",\"classes\":\"tsd-kind-class tsd-has-type-parameter\"},{\"id\":39,\"kind\":1024,\"name\":\"_handlers\",\"url\":\"classes/EmbedBuilder.html#_handlers\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedBuilder\"},{\"id\":40,\"kind\":1024,\"name\":\"_appendTo\",\"url\":\"classes/EmbedBuilder.html#_appendTo\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedBuilder\"},{\"id\":41,\"kind\":1024,\"name\":\"_sandboxAttrs\",\"url\":\"classes/EmbedBuilder.html#_sandboxAttrs\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedBuilder\"},{\"id\":42,\"kind\":1024,\"name\":\"_allowAttrs\",\"url\":\"classes/EmbedBuilder.html#_allowAttrs\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedBuilder\"},{\"id\":43,\"kind\":1024,\"name\":\"_classNames\",\"url\":\"classes/EmbedBuilder.html#_classNames\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedBuilder\"},{\"id\":44,\"kind\":1024,\"name\":\"_frameBorder\",\"url\":\"classes/EmbedBuilder.html#_frameBorder\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedBuilder\"},{\"id\":45,\"kind\":1024,\"name\":\"_id\",\"url\":\"classes/EmbedBuilder.html#_id\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedBuilder\"},{\"id\":46,\"kind\":1024,\"name\":\"_params\",\"url\":\"classes/EmbedBuilder.html#_params\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedBuilder\"},{\"id\":47,\"kind\":1024,\"name\":\"_suffix\",\"url\":\"classes/EmbedBuilder.html#_suffix\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedBuilder\"},{\"id\":48,\"kind\":1024,\"name\":\"_url\",\"url\":\"classes/EmbedBuilder.html#_url\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedBuilder\"},{\"id\":49,\"kind\":1024,\"name\":\"_sandboxedHost\",\"url\":\"classes/EmbedBuilder.html#_sandboxedHost\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedBuilder\"},{\"id\":50,\"kind\":2048,\"name\":\"withFrameBorder\",\"url\":\"classes/EmbedBuilder.html#withFrameBorder\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":51,\"kind\":2048,\"name\":\"withParams\",\"url\":\"classes/EmbedBuilder.html#withParams\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":52,\"kind\":2048,\"name\":\"withFilters\",\"url\":\"classes/EmbedBuilder.html#withFilters\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":53,\"kind\":2048,\"name\":\"withSandboxAttr\",\"url\":\"classes/EmbedBuilder.html#withSandboxAttr\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":54,\"kind\":2048,\"name\":\"withAllowAttr\",\"url\":\"classes/EmbedBuilder.html#withAllowAttr\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":55,\"kind\":2048,\"name\":\"withClassName\",\"url\":\"classes/EmbedBuilder.html#withClassName\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":56,\"kind\":2048,\"name\":\"withNext\",\"url\":\"classes/EmbedBuilder.html#withNext\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":57,\"kind\":2048,\"name\":\"withTheme\",\"url\":\"classes/EmbedBuilder.html#withTheme\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":58,\"kind\":2048,\"name\":\"withApiHost\",\"url\":\"classes/EmbedBuilder.html#withApiHost\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":59,\"kind\":2048,\"name\":\"withAuthUrl\",\"url\":\"classes/EmbedBuilder.html#withAuthUrl\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":60,\"kind\":2048,\"name\":\"withAuth\",\"url\":\"classes/EmbedBuilder.html#withAuth\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":61,\"kind\":262144,\"name\":\"el\",\"url\":\"classes/EmbedBuilder.html#el\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":62,\"kind\":262144,\"name\":\"frameBorder\",\"url\":\"classes/EmbedBuilder.html#frameBorder\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":63,\"kind\":262144,\"name\":\"endpoint\",\"url\":\"classes/EmbedBuilder.html#endpoint\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":64,\"kind\":262144,\"name\":\"type\",\"url\":\"classes/EmbedBuilder.html#type\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":65,\"kind\":262144,\"name\":\"apiHost\",\"url\":\"classes/EmbedBuilder.html#apiHost\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":66,\"kind\":262144,\"name\":\"isCookielessEmbed\",\"url\":\"classes/EmbedBuilder.html#isCookielessEmbed\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":67,\"kind\":262144,\"name\":\"acquireSession\",\"url\":\"classes/EmbedBuilder.html#acquireSession\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":68,\"kind\":262144,\"name\":\"generateTokens\",\"url\":\"classes/EmbedBuilder.html#generateTokens\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":69,\"kind\":262144,\"name\":\"url\",\"url\":\"classes/EmbedBuilder.html#url\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":70,\"kind\":262144,\"name\":\"authUrl\",\"url\":\"classes/EmbedBuilder.html#authUrl\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":71,\"kind\":262144,\"name\":\"auth\",\"url\":\"classes/EmbedBuilder.html#auth\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":72,\"kind\":262144,\"name\":\"sandboxAttrs\",\"url\":\"classes/EmbedBuilder.html#sandboxAttrs\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":73,\"kind\":262144,\"name\":\"allowAttrs\",\"url\":\"classes/EmbedBuilder.html#allowAttrs\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":74,\"kind\":262144,\"name\":\"classNames\",\"url\":\"classes/EmbedBuilder.html#classNames\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":75,\"kind\":262144,\"name\":\"suffix\",\"url\":\"classes/EmbedBuilder.html#suffix\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":76,\"kind\":262144,\"name\":\"id\",\"url\":\"classes/EmbedBuilder.html#id\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":77,\"kind\":2048,\"name\":\"appendTo\",\"url\":\"classes/EmbedBuilder.html#appendTo\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":78,\"kind\":2048,\"name\":\"on\",\"url\":\"classes/EmbedBuilder.html#on\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter\",\"parent\":\"EmbedBuilder\"},{\"id\":79,\"kind\":2048,\"name\":\"build\",\"url\":\"classes/EmbedBuilder.html#build\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":80,\"kind\":256,\"name\":\"UrlParams\",\"url\":\"interfaces/UrlParams.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":81,\"kind\":128,\"name\":\"EmbedClient\",\"url\":\"classes/EmbedClient.html\",\"classes\":\"tsd-kind-class tsd-has-type-parameter\"},{\"id\":82,\"kind\":1024,\"name\":\"sessionAcquired\",\"url\":\"classes/EmbedClient.html#sessionAcquired\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static\",\"parent\":\"EmbedClient\"},{\"id\":83,\"kind\":1024,\"name\":\"acquireSessionPromise\",\"url\":\"classes/EmbedClient.html#acquireSessionPromise\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static\",\"parent\":\"EmbedClient\"},{\"id\":84,\"kind\":1024,\"name\":\"_hostBuilder\",\"url\":\"classes/EmbedClient.html#_hostBuilder\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"EmbedClient\"},{\"id\":85,\"kind\":1024,\"name\":\"_host\",\"url\":\"classes/EmbedClient.html#_host\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"EmbedClient\"},{\"id\":86,\"kind\":1024,\"name\":\"_connection\",\"url\":\"classes/EmbedClient.html#_connection\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"EmbedClient\"},{\"id\":87,\"kind\":1024,\"name\":\"_client\",\"url\":\"classes/EmbedClient.html#_client\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"EmbedClient\"},{\"id\":88,\"kind\":1024,\"name\":\"_cookielessInitialized\",\"url\":\"classes/EmbedClient.html#_cookielessInitialized\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"EmbedClient\"},{\"id\":89,\"kind\":1024,\"name\":\"_cookielessApiToken\",\"url\":\"classes/EmbedClient.html#_cookielessApiToken\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"EmbedClient\"},{\"id\":90,\"kind\":1024,\"name\":\"_cookielessApiTokenTtl\",\"url\":\"classes/EmbedClient.html#_cookielessApiTokenTtl\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"EmbedClient\"},{\"id\":91,\"kind\":1024,\"name\":\"_cookielessNavigationToken\",\"url\":\"classes/EmbedClient.html#_cookielessNavigationToken\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"EmbedClient\"},{\"id\":92,\"kind\":1024,\"name\":\"_cookielessNavigationTokenTtl\",\"url\":\"classes/EmbedClient.html#_cookielessNavigationTokenTtl\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"EmbedClient\"},{\"id\":93,\"kind\":1024,\"name\":\"_cookielessSessionReferenceTokenTtl\",\"url\":\"classes/EmbedClient.html#_cookielessSessionReferenceTokenTtl\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"EmbedClient\"},{\"id\":94,\"kind\":262144,\"name\":\"connection\",\"url\":\"classes/EmbedClient.html#connection\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedClient\"},{\"id\":95,\"kind\":262144,\"name\":\"isConnected\",\"url\":\"classes/EmbedClient.html#isConnected\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedClient\"},{\"id\":96,\"kind\":262144,\"name\":\"targetOrigin\",\"url\":\"classes/EmbedClient.html#targetOrigin\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedClient\"},{\"id\":97,\"kind\":2048,\"name\":\"createIframe\",\"url\":\"classes/EmbedClient.html#createIframe\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedClient\"},{\"id\":98,\"kind\":2048,\"name\":\"createUrl\",\"url\":\"classes/EmbedClient.html#createUrl\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedClient\"},{\"id\":99,\"kind\":2048,\"name\":\"acquireCookielessEmbedSession\",\"url\":\"classes/EmbedClient.html#acquireCookielessEmbedSession\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedClient\"},{\"id\":100,\"kind\":2048,\"name\":\"acquireCookielessEmbedSessionInternal\",\"url\":\"classes/EmbedClient.html#acquireCookielessEmbedSessionInternal\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedClient\"},{\"id\":101,\"kind\":2048,\"name\":\"acquireSession\",\"url\":\"classes/EmbedClient.html#acquireSession\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedClient\"},{\"id\":102,\"kind\":2048,\"name\":\"generateTokens\",\"url\":\"classes/EmbedClient.html#generateTokens\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedClient\"},{\"id\":103,\"kind\":2048,\"name\":\"getResource\",\"url\":\"classes/EmbedClient.html#getResource\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedClient\"},{\"id\":104,\"kind\":2048,\"name\":\"connect\",\"url\":\"classes/EmbedClient.html#connect\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedClient\"},{\"id\":105,\"kind\":256,\"name\":\"LookerAuthConfig\",\"url\":\"interfaces/LookerAuthConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":106,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/LookerAuthConfig.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookerAuthConfig\"},{\"id\":107,\"kind\":1024,\"name\":\"headers\",\"url\":\"interfaces/LookerAuthConfig.html#headers\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookerAuthConfig\"},{\"id\":108,\"kind\":1024,\"name\":\"params\",\"url\":\"interfaces/LookerAuthConfig.html#params\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookerAuthConfig\"},{\"id\":109,\"kind\":1024,\"name\":\"withCredentials\",\"url\":\"interfaces/LookerAuthConfig.html#withCredentials\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookerAuthConfig\"},{\"id\":110,\"kind\":256,\"name\":\"CookielessRequestInit\",\"url\":\"interfaces/CookielessRequestInit.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":111,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/CookielessRequestInit.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"CookielessRequestInit\"},{\"id\":112,\"kind\":4194304,\"name\":\"CookielessCallback\",\"url\":\"modules.html#CookielessCallback\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":113,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#CookielessCallback.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"CookielessCallback\"},{\"id\":114,\"kind\":256,\"name\":\"LookerEmbedCookielessSessionData\",\"url\":\"interfaces/LookerEmbedCookielessSessionData.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":115,\"kind\":1024,\"name\":\"authentication_token\",\"url\":\"interfaces/LookerEmbedCookielessSessionData.html#authentication_token\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookerEmbedCookielessSessionData\"},{\"id\":116,\"kind\":1024,\"name\":\"authentication_token_ttl\",\"url\":\"interfaces/LookerEmbedCookielessSessionData.html#authentication_token_ttl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookerEmbedCookielessSessionData\"},{\"id\":117,\"kind\":1024,\"name\":\"navigation_token\",\"url\":\"interfaces/LookerEmbedCookielessSessionData.html#navigation_token\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookerEmbedCookielessSessionData\"},{\"id\":118,\"kind\":1024,\"name\":\"navigation_token_ttl\",\"url\":\"interfaces/LookerEmbedCookielessSessionData.html#navigation_token_ttl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookerEmbedCookielessSessionData\"},{\"id\":119,\"kind\":1024,\"name\":\"api_token\",\"url\":\"interfaces/LookerEmbedCookielessSessionData.html#api_token\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookerEmbedCookielessSessionData\"},{\"id\":120,\"kind\":1024,\"name\":\"api_token_ttl\",\"url\":\"interfaces/LookerEmbedCookielessSessionData.html#api_token_ttl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookerEmbedCookielessSessionData\"},{\"id\":121,\"kind\":1024,\"name\":\"session_reference_token_ttl\",\"url\":\"interfaces/LookerEmbedCookielessSessionData.html#session_reference_token_ttl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookerEmbedCookielessSessionData\"},{\"id\":122,\"kind\":256,\"name\":\"LookerEmbedFilterParams\",\"url\":\"interfaces/LookerEmbedFilterParams.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":123,\"kind\":256,\"name\":\"DashboardLayout\",\"url\":\"interfaces/DashboardLayout.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":124,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/DashboardLayout.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayout\"},{\"id\":125,\"kind\":1024,\"name\":\"dashboard_id\",\"url\":\"interfaces/DashboardLayout.html#dashboard_id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayout\"},{\"id\":126,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/DashboardLayout.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayout\"},{\"id\":127,\"kind\":1024,\"name\":\"active\",\"url\":\"interfaces/DashboardLayout.html#active\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayout\"},{\"id\":128,\"kind\":1024,\"name\":\"column_width\",\"url\":\"interfaces/DashboardLayout.html#column_width\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayout\"},{\"id\":129,\"kind\":1024,\"name\":\"width\",\"url\":\"interfaces/DashboardLayout.html#width\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayout\"},{\"id\":130,\"kind\":1024,\"name\":\"deleted\",\"url\":\"interfaces/DashboardLayout.html#deleted\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayout\"},{\"id\":131,\"kind\":1024,\"name\":\"dashboard_layout_components\",\"url\":\"interfaces/DashboardLayout.html#dashboard_layout_components\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayout\"},{\"id\":132,\"kind\":256,\"name\":\"DashboardLayoutComponent\",\"url\":\"interfaces/DashboardLayoutComponent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":133,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/DashboardLayoutComponent.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayoutComponent\"},{\"id\":134,\"kind\":1024,\"name\":\"dashboard_layout_id\",\"url\":\"interfaces/DashboardLayoutComponent.html#dashboard_layout_id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayoutComponent\"},{\"id\":135,\"kind\":1024,\"name\":\"dashboard_element_id\",\"url\":\"interfaces/DashboardLayoutComponent.html#dashboard_element_id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayoutComponent\"},{\"id\":136,\"kind\":1024,\"name\":\"row\",\"url\":\"interfaces/DashboardLayoutComponent.html#row\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayoutComponent\"},{\"id\":137,\"kind\":1024,\"name\":\"column\",\"url\":\"interfaces/DashboardLayoutComponent.html#column\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayoutComponent\"},{\"id\":138,\"kind\":1024,\"name\":\"width\",\"url\":\"interfaces/DashboardLayoutComponent.html#width\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayoutComponent\"},{\"id\":139,\"kind\":1024,\"name\":\"height\",\"url\":\"interfaces/DashboardLayoutComponent.html#height\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayoutComponent\"},{\"id\":140,\"kind\":1024,\"name\":\"deleted\",\"url\":\"interfaces/DashboardLayoutComponent.html#deleted\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayoutComponent\"},{\"id\":141,\"kind\":256,\"name\":\"VisConfig\",\"url\":\"interfaces/VisConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":142,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/VisConfig.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"VisConfig\"},{\"id\":143,\"kind\":256,\"name\":\"ElementOptionItems\",\"url\":\"interfaces/ElementOptionItems.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":144,\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/ElementOptionItems.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ElementOptionItems\"},{\"id\":145,\"kind\":1024,\"name\":\"title_hidden\",\"url\":\"interfaces/ElementOptionItems.html#title_hidden\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ElementOptionItems\"},{\"id\":146,\"kind\":1024,\"name\":\"vis_config\",\"url\":\"interfaces/ElementOptionItems.html#vis_config\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ElementOptionItems\"},{\"id\":147,\"kind\":256,\"name\":\"ElementOptions\",\"url\":\"interfaces/ElementOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":148,\"kind\":256,\"name\":\"LookerDashboardOptions\",\"url\":\"interfaces/LookerDashboardOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":149,\"kind\":1024,\"name\":\"elements\",\"url\":\"interfaces/LookerDashboardOptions.html#elements\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookerDashboardOptions\"},{\"id\":150,\"kind\":1024,\"name\":\"layouts\",\"url\":\"interfaces/LookerDashboardOptions.html#layouts\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookerDashboardOptions\"},{\"id\":151,\"kind\":256,\"name\":\"LookerEmbedEvent\",\"url\":\"interfaces/LookerEmbedEvent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":152,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/LookerEmbedEvent.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEvent\"},{\"id\":153,\"kind\":256,\"name\":\"EventDetail\",\"url\":\"interfaces/EventDetail.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":154,\"kind\":4194304,\"name\":\"SessionTokenRequest\",\"url\":\"modules.html#SessionTokenRequest\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":155,\"kind\":256,\"name\":\"SessionStatus\",\"url\":\"interfaces/SessionStatus.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":156,\"kind\":1024,\"name\":\"session_ttl\",\"url\":\"interfaces/SessionStatus.html#session_ttl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"SessionStatus\"},{\"id\":157,\"kind\":1024,\"name\":\"expired\",\"url\":\"interfaces/SessionStatus.html#expired\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"SessionStatus\"},{\"id\":158,\"kind\":1024,\"name\":\"interrupted\",\"url\":\"interfaces/SessionStatus.html#interrupted\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"SessionStatus\"},{\"id\":159,\"kind\":1024,\"name\":\"recoverable\",\"url\":\"interfaces/SessionStatus.html#recoverable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"SessionStatus\"},{\"id\":160,\"kind\":256,\"name\":\"DashboardEventDetail\",\"url\":\"interfaces/DashboardEventDetail.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":161,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/DashboardEventDetail.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardEventDetail\"},{\"id\":162,\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/DashboardEventDetail.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardEventDetail\"},{\"id\":163,\"kind\":1024,\"name\":\"canEdit\",\"url\":\"interfaces/DashboardEventDetail.html#canEdit\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardEventDetail\"},{\"id\":164,\"kind\":1024,\"name\":\"dashboard_filters\",\"url\":\"interfaces/DashboardEventDetail.html#dashboard_filters\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardEventDetail\"},{\"id\":165,\"kind\":1024,\"name\":\"absoluteUrl\",\"url\":\"interfaces/DashboardEventDetail.html#absoluteUrl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardEventDetail\"},{\"id\":166,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/DashboardEventDetail.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardEventDetail\"},{\"id\":167,\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/DashboardEventDetail.html#options\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardEventDetail\"},{\"id\":168,\"kind\":256,\"name\":\"DashboardTileEventDetail\",\"url\":\"interfaces/DashboardTileEventDetail.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":169,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/DashboardTileEventDetail.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardTileEventDetail\"},{\"id\":170,\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/DashboardTileEventDetail.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardTileEventDetail\"},{\"id\":171,\"kind\":1024,\"name\":\"listen\",\"url\":\"interfaces/DashboardTileEventDetail.html#listen\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardTileEventDetail\"},{\"id\":172,\"kind\":256,\"name\":\"TileStatus\",\"url\":\"interfaces/TileStatus.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":173,\"kind\":1024,\"name\":\"tileId\",\"url\":\"interfaces/TileStatus.html#tileId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TileStatus\"},{\"id\":174,\"kind\":1024,\"name\":\"status\",\"url\":\"interfaces/TileStatus.html#status\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TileStatus\"},{\"id\":175,\"kind\":1024,\"name\":\"errors\",\"url\":\"interfaces/TileStatus.html#errors\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TileStatus\"},{\"id\":176,\"kind\":256,\"name\":\"DashboardEvent\",\"url\":\"interfaces/DashboardEvent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":177,\"kind\":1024,\"name\":\"dashboard\",\"url\":\"interfaces/DashboardEvent.html#dashboard\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardEvent\"},{\"id\":178,\"kind\":1024,\"name\":\"status\",\"url\":\"interfaces/DashboardEvent.html#status\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardEvent\"},{\"id\":179,\"kind\":1024,\"name\":\"tileStatuses\",\"url\":\"interfaces/DashboardEvent.html#tileStatuses\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardEvent\"},{\"id\":180,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/DashboardEvent.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardEvent\"},{\"id\":181,\"kind\":256,\"name\":\"QueryError\",\"url\":\"interfaces/QueryError.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":182,\"kind\":1024,\"name\":\"message\",\"url\":\"interfaces/QueryError.html#message\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"QueryError\"},{\"id\":183,\"kind\":1024,\"name\":\"message_details\",\"url\":\"interfaces/QueryError.html#message_details\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"QueryError\"},{\"id\":184,\"kind\":1024,\"name\":\"params\",\"url\":\"interfaces/QueryError.html#params\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"QueryError\"},{\"id\":185,\"kind\":1024,\"name\":\"error_pos\",\"url\":\"interfaces/QueryError.html#error_pos\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"QueryError\"},{\"id\":186,\"kind\":1024,\"name\":\"level\",\"url\":\"interfaces/QueryError.html#level\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"QueryError\"},{\"id\":187,\"kind\":1024,\"name\":\"fatal\",\"url\":\"interfaces/QueryError.html#fatal\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"QueryError\"},{\"id\":188,\"kind\":1024,\"name\":\"sql_error_loc\",\"url\":\"interfaces/QueryError.html#sql_error_loc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"QueryError\"},{\"id\":189,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/QueryError.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"QueryError\"},{\"id\":190,\"kind\":256,\"name\":\"DashboardTileEvent\",\"url\":\"interfaces/DashboardTileEvent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":191,\"kind\":1024,\"name\":\"dashboard\",\"url\":\"interfaces/DashboardTileEvent.html#dashboard\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardTileEvent\"},{\"id\":192,\"kind\":1024,\"name\":\"tile\",\"url\":\"interfaces/DashboardTileEvent.html#tile\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardTileEvent\"},{\"id\":193,\"kind\":1024,\"name\":\"status\",\"url\":\"interfaces/DashboardTileEvent.html#status\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardTileEvent\"},{\"id\":194,\"kind\":1024,\"name\":\"truncated\",\"url\":\"interfaces/DashboardTileEvent.html#truncated\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardTileEvent\"},{\"id\":195,\"kind\":1024,\"name\":\"errors\",\"url\":\"interfaces/DashboardTileEvent.html#errors\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardTileEvent\"},{\"id\":196,\"kind\":256,\"name\":\"DashboardTileDownloadEvent\",\"url\":\"interfaces/DashboardTileDownloadEvent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":197,\"kind\":1024,\"name\":\"fileFormat\",\"url\":\"interfaces/DashboardTileDownloadEvent.html#fileFormat\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardTileDownloadEvent\"},{\"id\":198,\"kind\":1024,\"name\":\"dashboard\",\"url\":\"interfaces/DashboardTileDownloadEvent.html#dashboard\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileDownloadEvent\"},{\"id\":199,\"kind\":1024,\"name\":\"tile\",\"url\":\"interfaces/DashboardTileDownloadEvent.html#tile\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileDownloadEvent\"},{\"id\":200,\"kind\":1024,\"name\":\"status\",\"url\":\"interfaces/DashboardTileDownloadEvent.html#status\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileDownloadEvent\"},{\"id\":201,\"kind\":1024,\"name\":\"truncated\",\"url\":\"interfaces/DashboardTileDownloadEvent.html#truncated\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileDownloadEvent\"},{\"id\":202,\"kind\":1024,\"name\":\"errors\",\"url\":\"interfaces/DashboardTileDownloadEvent.html#errors\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileDownloadEvent\"},{\"id\":203,\"kind\":256,\"name\":\"DashboardTileExploreEvent\",\"url\":\"interfaces/DashboardTileExploreEvent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":204,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/DashboardTileExploreEvent.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardTileExploreEvent\"},{\"id\":205,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/DashboardTileExploreEvent.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardTileExploreEvent\"},{\"id\":206,\"kind\":1024,\"name\":\"dashboard\",\"url\":\"interfaces/DashboardTileExploreEvent.html#dashboard\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileExploreEvent\"},{\"id\":207,\"kind\":1024,\"name\":\"tile\",\"url\":\"interfaces/DashboardTileExploreEvent.html#tile\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileExploreEvent\"},{\"id\":208,\"kind\":1024,\"name\":\"status\",\"url\":\"interfaces/DashboardTileExploreEvent.html#status\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileExploreEvent\"},{\"id\":209,\"kind\":1024,\"name\":\"truncated\",\"url\":\"interfaces/DashboardTileExploreEvent.html#truncated\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileExploreEvent\"},{\"id\":210,\"kind\":1024,\"name\":\"errors\",\"url\":\"interfaces/DashboardTileExploreEvent.html#errors\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileExploreEvent\"},{\"id\":211,\"kind\":256,\"name\":\"DashboardTileViewEvent\",\"url\":\"interfaces/DashboardTileViewEvent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":212,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/DashboardTileViewEvent.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardTileViewEvent\"},{\"id\":213,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/DashboardTileViewEvent.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardTileViewEvent\"},{\"id\":214,\"kind\":1024,\"name\":\"dashboard\",\"url\":\"interfaces/DashboardTileViewEvent.html#dashboard\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileViewEvent\"},{\"id\":215,\"kind\":1024,\"name\":\"tile\",\"url\":\"interfaces/DashboardTileViewEvent.html#tile\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileViewEvent\"},{\"id\":216,\"kind\":1024,\"name\":\"status\",\"url\":\"interfaces/DashboardTileViewEvent.html#status\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileViewEvent\"},{\"id\":217,\"kind\":1024,\"name\":\"truncated\",\"url\":\"interfaces/DashboardTileViewEvent.html#truncated\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileViewEvent\"},{\"id\":218,\"kind\":1024,\"name\":\"errors\",\"url\":\"interfaces/DashboardTileViewEvent.html#errors\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileViewEvent\"},{\"id\":219,\"kind\":256,\"name\":\"AddFilterJson\",\"url\":\"interfaces/AddFilterJson.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":220,\"kind\":1024,\"name\":\"rendered\",\"url\":\"interfaces/AddFilterJson.html#rendered\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AddFilterJson\"},{\"id\":221,\"kind\":1024,\"name\":\"field\",\"url\":\"interfaces/AddFilterJson.html#field\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AddFilterJson\"},{\"id\":222,\"kind\":1024,\"name\":\"add\",\"url\":\"interfaces/AddFilterJson.html#add\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AddFilterJson\"},{\"id\":223,\"kind\":256,\"name\":\"DrillMenuEvent\",\"url\":\"interfaces/DrillMenuEvent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":224,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/DrillMenuEvent.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DrillMenuEvent\"},{\"id\":225,\"kind\":1024,\"name\":\"link_type\",\"url\":\"interfaces/DrillMenuEvent.html#link_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DrillMenuEvent\"},{\"id\":226,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/DrillMenuEvent.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DrillMenuEvent\"},{\"id\":227,\"kind\":1024,\"name\":\"modal\",\"url\":\"interfaces/DrillMenuEvent.html#modal\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DrillMenuEvent\"},{\"id\":228,\"kind\":1024,\"name\":\"context\",\"url\":\"interfaces/DrillMenuEvent.html#context\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DrillMenuEvent\"},{\"id\":229,\"kind\":1024,\"name\":\"addFilterJson\",\"url\":\"interfaces/DrillMenuEvent.html#addFilterJson\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DrillMenuEvent\"},{\"id\":230,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/DrillMenuEvent.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DrillMenuEvent\"},{\"id\":231,\"kind\":256,\"name\":\"DrillModalExploreEvent\",\"url\":\"interfaces/DrillModalExploreEvent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":232,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/DrillModalExploreEvent.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DrillModalExploreEvent\"},{\"id\":233,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/DrillModalExploreEvent.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DrillModalExploreEvent\"},{\"id\":234,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/DrillModalExploreEvent.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DrillModalExploreEvent\"},{\"id\":235,\"kind\":256,\"name\":\"LookEventDetail\",\"url\":\"interfaces/LookEventDetail.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":236,\"kind\":1024,\"name\":\"absoluteUrl\",\"url\":\"interfaces/LookEventDetail.html#absoluteUrl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookEventDetail\"},{\"id\":237,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/LookEventDetail.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookEventDetail\"},{\"id\":238,\"kind\":256,\"name\":\"LookEvent\",\"url\":\"interfaces/LookEvent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":239,\"kind\":1024,\"name\":\"look\",\"url\":\"interfaces/LookEvent.html#look\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookEvent\"},{\"id\":240,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/LookEvent.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"LookEvent\"},{\"id\":241,\"kind\":256,\"name\":\"LookSaveEventDetail\",\"url\":\"interfaces/LookSaveEventDetail.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":242,\"kind\":1024,\"name\":\"spaceId\",\"url\":\"interfaces/LookSaveEventDetail.html#spaceId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookSaveEventDetail\"},{\"id\":243,\"kind\":1024,\"name\":\"absoluteUrl\",\"url\":\"interfaces/LookSaveEventDetail.html#absoluteUrl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"LookSaveEventDetail\"},{\"id\":244,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/LookSaveEventDetail.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"LookSaveEventDetail\"},{\"id\":245,\"kind\":256,\"name\":\"LookSaveEvent\",\"url\":\"interfaces/LookSaveEvent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":246,\"kind\":1024,\"name\":\"look\",\"url\":\"interfaces/LookSaveEvent.html#look\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookSaveEvent\"},{\"id\":247,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/LookSaveEvent.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"LookSaveEvent\"},{\"id\":248,\"kind\":256,\"name\":\"ExploreEventDetail\",\"url\":\"interfaces/ExploreEventDetail.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":249,\"kind\":1024,\"name\":\"absoluteUrl\",\"url\":\"interfaces/ExploreEventDetail.html#absoluteUrl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ExploreEventDetail\"},{\"id\":250,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/ExploreEventDetail.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ExploreEventDetail\"},{\"id\":251,\"kind\":256,\"name\":\"ExploreEvent\",\"url\":\"interfaces/ExploreEvent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":252,\"kind\":1024,\"name\":\"explore\",\"url\":\"interfaces/ExploreEvent.html#explore\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ExploreEvent\"},{\"id\":253,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/ExploreEvent.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ExploreEvent\"},{\"id\":254,\"kind\":256,\"name\":\"PageChangedEventDetail\",\"url\":\"interfaces/PageChangedEventDetail.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":255,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/PageChangedEventDetail.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PageChangedEventDetail\"},{\"id\":256,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/PageChangedEventDetail.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PageChangedEventDetail\"},{\"id\":257,\"kind\":1024,\"name\":\"absoluteUrl\",\"url\":\"interfaces/PageChangedEventDetail.html#absoluteUrl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PageChangedEventDetail\"},{\"id\":258,\"kind\":256,\"name\":\"PageChangedEvent\",\"url\":\"interfaces/PageChangedEvent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":259,\"kind\":1024,\"name\":\"page\",\"url\":\"interfaces/PageChangedEvent.html#page\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PageChangedEvent\"},{\"id\":260,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/PageChangedEvent.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"PageChangedEvent\"},{\"id\":261,\"kind\":256,\"name\":\"PagePropertiesChangedEvent\",\"url\":\"interfaces/PagePropertiesChangedEvent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":262,\"kind\":1024,\"name\":\"height\",\"url\":\"interfaces/PagePropertiesChangedEvent.html#height\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PagePropertiesChangedEvent\"},{\"id\":263,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/PagePropertiesChangedEvent.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"PagePropertiesChangedEvent\"},{\"id\":264,\"kind\":256,\"name\":\"CancellableEventResponse\",\"url\":\"interfaces/CancellableEventResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":265,\"kind\":1024,\"name\":\"cancel\",\"url\":\"interfaces/CancellableEventResponse.html#cancel\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"CancellableEventResponse\"},{\"id\":266,\"kind\":256,\"name\":\"LookerEmbedEventMap\",\"url\":\"interfaces/LookerEmbedEventMap.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":267,\"kind\":2048,\"name\":\"dashboard:run:start\",\"url\":\"interfaces/LookerEmbedEventMap.html#dashboard_run_start\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":268,\"kind\":2048,\"name\":\"dashboard:run:complete\",\"url\":\"interfaces/LookerEmbedEventMap.html#dashboard_run_complete\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":269,\"kind\":2048,\"name\":\"dashboard:filters:changed\",\"url\":\"interfaces/LookerEmbedEventMap.html#dashboard_filters_changed\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":270,\"kind\":2048,\"name\":\"dashboard:edit:start\",\"url\":\"interfaces/LookerEmbedEventMap.html#dashboard_edit_start\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":271,\"kind\":2048,\"name\":\"dashboard:edit:cancel\",\"url\":\"interfaces/LookerEmbedEventMap.html#dashboard_edit_cancel\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":272,\"kind\":2048,\"name\":\"dashboard:save:complete\",\"url\":\"interfaces/LookerEmbedEventMap.html#dashboard_save_complete\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":273,\"kind\":2048,\"name\":\"dashboard:delete:complete\",\"url\":\"interfaces/LookerEmbedEventMap.html#dashboard_delete_complete\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":274,\"kind\":2048,\"name\":\"dashboard:tile:start\",\"url\":\"interfaces/LookerEmbedEventMap.html#dashboard_tile_start\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":275,\"kind\":2048,\"name\":\"dashboard:tile:complete\",\"url\":\"interfaces/LookerEmbedEventMap.html#dashboard_tile_complete\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":276,\"kind\":2048,\"name\":\"dashboard:tile:download\",\"url\":\"interfaces/LookerEmbedEventMap.html#dashboard_tile_download\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":277,\"kind\":2048,\"name\":\"dashboard:tile:explore\",\"url\":\"interfaces/LookerEmbedEventMap.html#dashboard_tile_explore\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":278,\"kind\":2048,\"name\":\"dashboard:tile:view\",\"url\":\"interfaces/LookerEmbedEventMap.html#dashboard_tile_view\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":279,\"kind\":2048,\"name\":\"drillmenu:click\",\"url\":\"interfaces/LookerEmbedEventMap.html#drillmenu_click\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":280,\"kind\":2048,\"name\":\"drillmodal:explore\",\"url\":\"interfaces/LookerEmbedEventMap.html#drillmodal_explore\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":281,\"kind\":2048,\"name\":\"explore:run:start\",\"url\":\"interfaces/LookerEmbedEventMap.html#explore_run_start\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":282,\"kind\":2048,\"name\":\"explore:run:complete\",\"url\":\"interfaces/LookerEmbedEventMap.html#explore_run_complete\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":283,\"kind\":2048,\"name\":\"explore:ready\",\"url\":\"interfaces/LookerEmbedEventMap.html#explore_ready\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":284,\"kind\":2048,\"name\":\"explore:state:changed\",\"url\":\"interfaces/LookerEmbedEventMap.html#explore_state_changed\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":285,\"kind\":2048,\"name\":\"look:run:start\",\"url\":\"interfaces/LookerEmbedEventMap.html#look_run_start\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":286,\"kind\":2048,\"name\":\"look:run:complete\",\"url\":\"interfaces/LookerEmbedEventMap.html#look_run_complete\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":287,\"kind\":2048,\"name\":\"look:save:complete\",\"url\":\"interfaces/LookerEmbedEventMap.html#look_save_complete\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":288,\"kind\":2048,\"name\":\"look:delete:complete\",\"url\":\"interfaces/LookerEmbedEventMap.html#look_delete_complete\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":289,\"kind\":2048,\"name\":\"look:ready\",\"url\":\"interfaces/LookerEmbedEventMap.html#look_ready\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":290,\"kind\":2048,\"name\":\"look:state:changed\",\"url\":\"interfaces/LookerEmbedEventMap.html#look_state_changed\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":291,\"kind\":2048,\"name\":\"page:changed\",\"url\":\"interfaces/LookerEmbedEventMap.html#page_changed\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":292,\"kind\":2048,\"name\":\"page:properties:changed\",\"url\":\"interfaces/LookerEmbedEventMap.html#page_properties_changed\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":293,\"kind\":2048,\"name\":\"session:token:request\",\"url\":\"interfaces/LookerEmbedEventMap.html#session_token_request\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":294,\"kind\":2048,\"name\":\"session:status\",\"url\":\"interfaces/LookerEmbedEventMap.html#session_status\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"parent\"],\"fieldVectors\":[[\"name/0\",[0,31.646]],[\"parent/0\",[]],[\"name/1\",[1,52.849]],[\"parent/1\",[0,2.937]],[\"name/2\",[2,52.849]],[\"parent/2\",[0,2.937]],[\"name/3\",[3,52.849]],[\"parent/3\",[0,2.937]],[\"name/4\",[4,52.849]],[\"parent/4\",[0,2.937]],[\"name/5\",[5,52.849]],[\"parent/5\",[0,2.937]],[\"name/6\",[6,52.849]],[\"parent/6\",[0,2.937]],[\"name/7\",[7,52.849]],[\"parent/7\",[0,2.937]],[\"name/8\",[8,52.849]],[\"parent/8\",[0,2.937]],[\"name/9\",[9,52.849]],[\"parent/9\",[0,2.937]],[\"name/10\",[10,52.849]],[\"parent/10\",[0,2.937]],[\"name/11\",[11,52.849]],[\"parent/11\",[0,2.937]],[\"name/12\",[12,33.39]],[\"parent/12\",[]],[\"name/13\",[13,44.376]],[\"parent/13\",[12,3.099]],[\"name/14\",[14,52.849]],[\"parent/14\",[12,3.099]],[\"name/15\",[15,52.849]],[\"parent/15\",[12,3.099]],[\"name/16\",[16,44.376]],[\"parent/16\",[12,3.099]],[\"name/17\",[17,52.849]],[\"parent/17\",[12,3.099]],[\"name/18\",[18,52.849]],[\"parent/18\",[12,3.099]],[\"name/19\",[19,52.849]],[\"parent/19\",[12,3.099]],[\"name/20\",[20,39.856]],[\"parent/20\",[12,3.099]],[\"name/21\",[21,39.856]],[\"parent/21\",[12,3.099]],[\"name/22\",[22,39.856]],[\"parent/22\",[]],[\"name/23\",[13,44.376]],[\"parent/23\",[22,3.699]],[\"name/24\",[16,44.376]],[\"parent/24\",[22,3.699]],[\"name/25\",[20,39.856]],[\"parent/25\",[22,3.699]],[\"name/26\",[21,39.856]],[\"parent/26\",[22,3.699]],[\"name/27\",[23,44.376]],[\"parent/27\",[]],[\"name/28\",[20,39.856]],[\"parent/28\",[23,4.118]],[\"name/29\",[21,39.856]],[\"parent/29\",[23,4.118]],[\"name/30\",[24,39.856]],[\"parent/30\",[]],[\"name/31\",[13,44.376]],[\"parent/31\",[24,3.699]],[\"name/32\",[16,44.376]],[\"parent/32\",[24,3.699]],[\"name/33\",[20,39.856]],[\"parent/33\",[24,3.699]],[\"name/34\",[21,39.856]],[\"parent/34\",[24,3.699]],[\"name/35\",[25,44.376]],[\"parent/35\",[]],[\"name/36\",[20,39.856]],[\"parent/36\",[25,4.118]],[\"name/37\",[21,39.856]],[\"parent/37\",[25,4.118]],[\"name/38\",[26,19.409]],[\"parent/38\",[]],[\"name/39\",[27,52.849]],[\"parent/39\",[26,1.801]],[\"name/40\",[28,52.849]],[\"parent/40\",[26,1.801]],[\"name/41\",[29,52.849]],[\"parent/41\",[26,1.801]],[\"name/42\",[30,52.849]],[\"parent/42\",[26,1.801]],[\"name/43\",[31,52.849]],[\"parent/43\",[26,1.801]],[\"name/44\",[32,52.849]],[\"parent/44\",[26,1.801]],[\"name/45\",[33,52.849]],[\"parent/45\",[26,1.801]],[\"name/46\",[34,52.849]],[\"parent/46\",[26,1.801]],[\"name/47\",[35,52.849]],[\"parent/47\",[26,1.801]],[\"name/48\",[36,52.849]],[\"parent/48\",[26,1.801]],[\"name/49\",[37,52.849]],[\"parent/49\",[26,1.801]],[\"name/50\",[38,52.849]],[\"parent/50\",[26,1.801]],[\"name/51\",[39,52.849]],[\"parent/51\",[26,1.801]],[\"name/52\",[40,52.849]],[\"parent/52\",[26,1.801]],[\"name/53\",[41,52.849]],[\"parent/53\",[26,1.801]],[\"name/54\",[42,52.849]],[\"parent/54\",[26,1.801]],[\"name/55\",[43,52.849]],[\"parent/55\",[26,1.801]],[\"name/56\",[44,52.849]],[\"parent/56\",[26,1.801]],[\"name/57\",[45,52.849]],[\"parent/57\",[26,1.801]],[\"name/58\",[46,52.849]],[\"parent/58\",[26,1.801]],[\"name/59\",[47,52.849]],[\"parent/59\",[26,1.801]],[\"name/60\",[48,52.849]],[\"parent/60\",[26,1.801]],[\"name/61\",[49,52.849]],[\"parent/61\",[26,1.801]],[\"name/62\",[50,52.849]],[\"parent/62\",[26,1.801]],[\"name/63\",[51,52.849]],[\"parent/63\",[26,1.801]],[\"name/64\",[52,30.877]],[\"parent/64\",[26,1.801]],[\"name/65\",[53,52.849]],[\"parent/65\",[26,1.801]],[\"name/66\",[54,52.849]],[\"parent/66\",[26,1.801]],[\"name/67\",[55,47.741]],[\"parent/67\",[26,1.801]],[\"name/68\",[56,47.741]],[\"parent/68\",[26,1.801]],[\"name/69\",[57,31.646]],[\"parent/69\",[26,1.801]],[\"name/70\",[58,52.849]],[\"parent/70\",[26,1.801]],[\"name/71\",[59,52.849]],[\"parent/71\",[26,1.801]],[\"name/72\",[60,52.849]],[\"parent/72\",[26,1.801]],[\"name/73\",[61,52.849]],[\"parent/73\",[26,1.801]],[\"name/74\",[62,52.849]],[\"parent/74\",[26,1.801]],[\"name/75\",[63,52.849]],[\"parent/75\",[26,1.801]],[\"name/76\",[64,39.856]],[\"parent/76\",[26,1.801]],[\"name/77\",[65,52.849]],[\"parent/77\",[26,1.801]],[\"name/78\",[66,52.849]],[\"parent/78\",[26,1.801]],[\"name/79\",[67,52.849]],[\"parent/79\",[26,1.801]],[\"name/80\",[68,52.849]],[\"parent/80\",[]],[\"name/81\",[69,24.917]],[\"parent/81\",[]],[\"name/82\",[70,52.849]],[\"parent/82\",[69,2.312]],[\"name/83\",[71,52.849]],[\"parent/83\",[69,2.312]],[\"name/84\",[72,52.849]],[\"parent/84\",[69,2.312]],[\"name/85\",[73,52.849]],[\"parent/85\",[69,2.312]],[\"name/86\",[74,52.849]],[\"parent/86\",[69,2.312]],[\"name/87\",[75,52.849]],[\"parent/87\",[69,2.312]],[\"name/88\",[76,52.849]],[\"parent/88\",[69,2.312]],[\"name/89\",[77,52.849]],[\"parent/89\",[69,2.312]],[\"name/90\",[78,52.849]],[\"parent/90\",[69,2.312]],[\"name/91\",[79,52.849]],[\"parent/91\",[69,2.312]],[\"name/92\",[80,52.849]],[\"parent/92\",[69,2.312]],[\"name/93\",[81,52.849]],[\"parent/93\",[69,2.312]],[\"name/94\",[82,52.849]],[\"parent/94\",[69,2.312]],[\"name/95\",[83,52.849]],[\"parent/95\",[69,2.312]],[\"name/96\",[84,52.849]],[\"parent/96\",[69,2.312]],[\"name/97\",[85,52.849]],[\"parent/97\",[69,2.312]],[\"name/98\",[86,52.849]],[\"parent/98\",[69,2.312]],[\"name/99\",[87,52.849]],[\"parent/99\",[69,2.312]],[\"name/100\",[88,52.849]],[\"parent/100\",[69,2.312]],[\"name/101\",[55,47.741]],[\"parent/101\",[69,2.312]],[\"name/102\",[56,47.741]],[\"parent/102\",[69,2.312]],[\"name/103\",[89,52.849]],[\"parent/103\",[69,2.312]],[\"name/104\",[90,52.849]],[\"parent/104\",[69,2.312]],[\"name/105\",[91,39.856]],[\"parent/105\",[]],[\"name/106\",[57,31.646]],[\"parent/106\",[91,3.699]],[\"name/107\",[92,52.849]],[\"parent/107\",[91,3.699]],[\"name/108\",[93,47.741]],[\"parent/108\",[91,3.699]],[\"name/109\",[94,52.849]],[\"parent/109\",[91,3.699]],[\"name/110\",[95,47.741]],[\"parent/110\",[]],[\"name/111\",[57,31.646]],[\"parent/111\",[95,4.431]],[\"name/112\",[96,47.741]],[\"parent/112\",[]],[\"name/113\",[97,47.741]],[\"parent/113\",[96,4.431]],[\"name/114\",[98,35.503]],[\"parent/114\",[]],[\"name/115\",[99,52.849]],[\"parent/115\",[98,3.295]],[\"name/116\",[100,52.849]],[\"parent/116\",[98,3.295]],[\"name/117\",[101,52.849]],[\"parent/117\",[98,3.295]],[\"name/118\",[102,52.849]],[\"parent/118\",[98,3.295]],[\"name/119\",[103,52.849]],[\"parent/119\",[98,3.295]],[\"name/120\",[104,52.849]],[\"parent/120\",[98,3.295]],[\"name/121\",[105,52.849]],[\"parent/121\",[98,3.295]],[\"name/122\",[106,52.849]],[\"parent/122\",[]],[\"name/123\",[107,34.391]],[\"parent/123\",[]],[\"name/124\",[64,39.856]],[\"parent/124\",[107,3.192]],[\"name/125\",[108,52.849]],[\"parent/125\",[107,3.192]],[\"name/126\",[52,30.877]],[\"parent/126\",[107,3.192]],[\"name/127\",[109,52.849]],[\"parent/127\",[107,3.192]],[\"name/128\",[110,52.849]],[\"parent/128\",[107,3.192]],[\"name/129\",[111,47.741]],[\"parent/129\",[107,3.192]],[\"name/130\",[112,47.741]],[\"parent/130\",[107,3.192]],[\"name/131\",[113,52.849]],[\"parent/131\",[107,3.192]],[\"name/132\",[114,34.391]],[\"parent/132\",[]],[\"name/133\",[64,39.856]],[\"parent/133\",[114,3.192]],[\"name/134\",[115,52.849]],[\"parent/134\",[114,3.192]],[\"name/135\",[116,52.849]],[\"parent/135\",[114,3.192]],[\"name/136\",[117,52.849]],[\"parent/136\",[114,3.192]],[\"name/137\",[118,52.849]],[\"parent/137\",[114,3.192]],[\"name/138\",[111,47.741]],[\"parent/138\",[114,3.192]],[\"name/139\",[119,47.741]],[\"parent/139\",[114,3.192]],[\"name/140\",[112,47.741]],[\"parent/140\",[114,3.192]],[\"name/141\",[120,47.741]],[\"parent/141\",[]],[\"name/142\",[52,30.877]],[\"parent/142\",[120,4.431]],[\"name/143\",[121,41.863]],[\"parent/143\",[]],[\"name/144\",[122,44.376]],[\"parent/144\",[121,3.885]],[\"name/145\",[123,52.849]],[\"parent/145\",[121,3.885]],[\"name/146\",[124,52.849]],[\"parent/146\",[121,3.885]],[\"name/147\",[125,52.849]],[\"parent/147\",[]],[\"name/148\",[126,44.376]],[\"parent/148\",[]],[\"name/149\",[127,52.849]],[\"parent/149\",[126,4.118]],[\"name/150\",[128,52.849]],[\"parent/150\",[126,4.118]],[\"name/151\",[129,47.741]],[\"parent/151\",[]],[\"name/152\",[52,30.877]],[\"parent/152\",[129,4.431]],[\"name/153\",[130,52.849]],[\"parent/153\",[]],[\"name/154\",[131,52.849]],[\"parent/154\",[]],[\"name/155\",[132,39.856]],[\"parent/155\",[]],[\"name/156\",[133,52.849]],[\"parent/156\",[132,3.699]],[\"name/157\",[134,52.849]],[\"parent/157\",[132,3.699]],[\"name/158\",[135,52.849]],[\"parent/158\",[132,3.699]],[\"name/159\",[136,52.849]],[\"parent/159\",[132,3.699]],[\"name/160\",[137,35.503]],[\"parent/160\",[]],[\"name/161\",[64,39.856]],[\"parent/161\",[137,3.295]],[\"name/162\",[122,44.376]],[\"parent/162\",[137,3.295]],[\"name/163\",[138,52.849]],[\"parent/163\",[137,3.295]],[\"name/164\",[139,52.849]],[\"parent/164\",[137,3.295]],[\"name/165\",[140,39.856]],[\"parent/165\",[137,3.295]],[\"name/166\",[57,31.646]],[\"parent/166\",[137,3.295]],[\"name/167\",[141,52.849]],[\"parent/167\",[137,3.295]],[\"name/168\",[142,41.863]],[\"parent/168\",[]],[\"name/169\",[64,39.856]],[\"parent/169\",[142,3.885]],[\"name/170\",[122,44.376]],[\"parent/170\",[142,3.885]],[\"name/171\",[143,52.849]],[\"parent/171\",[142,3.885]],[\"name/172\",[144,41.863]],[\"parent/172\",[]],[\"name/173\",[145,52.849]],[\"parent/173\",[144,3.885]],[\"name/174\",[146,38.186]],[\"parent/174\",[144,3.885]],[\"name/175\",[147,39.856]],[\"parent/175\",[144,3.885]],[\"name/176\",[148,39.856]],[\"parent/176\",[]],[\"name/177\",[149,39.856]],[\"parent/177\",[148,3.699]],[\"name/178\",[146,38.186]],[\"parent/178\",[148,3.699]],[\"name/179\",[150,52.849]],[\"parent/179\",[148,3.699]],[\"name/180\",[52,30.877]],[\"parent/180\",[148,3.699]],[\"name/181\",[151,34.391]],[\"parent/181\",[]],[\"name/182\",[152,52.849]],[\"parent/182\",[151,3.192]],[\"name/183\",[153,52.849]],[\"parent/183\",[151,3.192]],[\"name/184\",[93,47.741]],[\"parent/184\",[151,3.192]],[\"name/185\",[154,52.849]],[\"parent/185\",[151,3.192]],[\"name/186\",[155,52.849]],[\"parent/186\",[151,3.192]],[\"name/187\",[156,52.849]],[\"parent/187\",[151,3.192]],[\"name/188\",[157,52.849]],[\"parent/188\",[151,3.192]],[\"name/189\",[97,47.741]],[\"parent/189\",[151,3.192]],[\"name/190\",[158,38.186]],[\"parent/190\",[]],[\"name/191\",[149,39.856]],[\"parent/191\",[158,3.544]],[\"name/192\",[159,41.863]],[\"parent/192\",[158,3.544]],[\"name/193\",[146,38.186]],[\"parent/193\",[158,3.544]],[\"name/194\",[160,41.863]],[\"parent/194\",[158,3.544]],[\"name/195\",[147,39.856]],[\"parent/195\",[158,3.544]],[\"name/196\",[161,36.755]],[\"parent/196\",[]],[\"name/197\",[162,52.849]],[\"parent/197\",[161,3.411]],[\"name/198\",[149,39.856]],[\"parent/198\",[161,3.411]],[\"name/199\",[159,41.863]],[\"parent/199\",[161,3.411]],[\"name/200\",[146,38.186]],[\"parent/200\",[161,3.411]],[\"name/201\",[160,41.863]],[\"parent/201\",[161,3.411]],[\"name/202\",[147,39.856]],[\"parent/202\",[161,3.411]],[\"name/203\",[163,35.503]],[\"parent/203\",[]],[\"name/204\",[164,41.863]],[\"parent/204\",[163,3.295]],[\"name/205\",[57,31.646]],[\"parent/205\",[163,3.295]],[\"name/206\",[149,39.856]],[\"parent/206\",[163,3.295]],[\"name/207\",[159,41.863]],[\"parent/207\",[163,3.295]],[\"name/208\",[146,38.186]],[\"parent/208\",[163,3.295]],[\"name/209\",[160,41.863]],[\"parent/209\",[163,3.295]],[\"name/210\",[147,39.856]],[\"parent/210\",[163,3.295]],[\"name/211\",[165,35.503]],[\"parent/211\",[]],[\"name/212\",[164,41.863]],[\"parent/212\",[165,3.295]],[\"name/213\",[57,31.646]],[\"parent/213\",[165,3.295]],[\"name/214\",[149,39.856]],[\"parent/214\",[165,3.295]],[\"name/215\",[159,41.863]],[\"parent/215\",[165,3.295]],[\"name/216\",[146,38.186]],[\"parent/216\",[165,3.295]],[\"name/217\",[160,41.863]],[\"parent/217\",[165,3.295]],[\"name/218\",[147,39.856]],[\"parent/218\",[165,3.295]],[\"name/219\",[166,39.856]],[\"parent/219\",[]],[\"name/220\",[167,52.849]],[\"parent/220\",[166,3.699]],[\"name/221\",[168,52.849]],[\"parent/221\",[166,3.699]],[\"name/222\",[169,52.849]],[\"parent/222\",[166,3.699]],[\"name/223\",[170,35.503]],[\"parent/223\",[]],[\"name/224\",[164,41.863]],[\"parent/224\",[170,3.295]],[\"name/225\",[171,52.849]],[\"parent/225\",[170,3.295]],[\"name/226\",[57,31.646]],[\"parent/226\",[170,3.295]],[\"name/227\",[172,52.849]],[\"parent/227\",[170,3.295]],[\"name/228\",[173,52.849]],[\"parent/228\",[170,3.295]],[\"name/229\",[166,39.856]],[\"parent/229\",[170,3.295]],[\"name/230\",[52,30.877]],[\"parent/230\",[170,3.295]],[\"name/231\",[174,41.863]],[\"parent/231\",[]],[\"name/232\",[164,41.863]],[\"parent/232\",[174,3.885]],[\"name/233\",[57,31.646]],[\"parent/233\",[174,3.885]],[\"name/234\",[52,30.877]],[\"parent/234\",[174,3.885]],[\"name/235\",[175,44.376]],[\"parent/235\",[]],[\"name/236\",[140,39.856]],[\"parent/236\",[175,4.118]],[\"name/237\",[57,31.646]],[\"parent/237\",[175,4.118]],[\"name/238\",[176,44.376]],[\"parent/238\",[]],[\"name/239\",[177,47.741]],[\"parent/239\",[176,4.118]],[\"name/240\",[52,30.877]],[\"parent/240\",[176,4.118]],[\"name/241\",[178,41.863]],[\"parent/241\",[]],[\"name/242\",[179,52.849]],[\"parent/242\",[178,3.885]],[\"name/243\",[140,39.856]],[\"parent/243\",[178,3.885]],[\"name/244\",[57,31.646]],[\"parent/244\",[178,3.885]],[\"name/245\",[180,44.376]],[\"parent/245\",[]],[\"name/246\",[177,47.741]],[\"parent/246\",[180,4.118]],[\"name/247\",[52,30.877]],[\"parent/247\",[180,4.118]],[\"name/248\",[181,44.376]],[\"parent/248\",[]],[\"name/249\",[140,39.856]],[\"parent/249\",[181,4.118]],[\"name/250\",[57,31.646]],[\"parent/250\",[181,4.118]],[\"name/251\",[182,44.376]],[\"parent/251\",[]],[\"name/252\",[183,52.849]],[\"parent/252\",[182,4.118]],[\"name/253\",[52,30.877]],[\"parent/253\",[182,4.118]],[\"name/254\",[184,41.863]],[\"parent/254\",[]],[\"name/255\",[52,30.877]],[\"parent/255\",[184,3.885]],[\"name/256\",[57,31.646]],[\"parent/256\",[184,3.885]],[\"name/257\",[140,39.856]],[\"parent/257\",[184,3.885]],[\"name/258\",[185,44.376]],[\"parent/258\",[]],[\"name/259\",[186,52.849]],[\"parent/259\",[185,4.118]],[\"name/260\",[52,30.877]],[\"parent/260\",[185,4.118]],[\"name/261\",[187,44.376]],[\"parent/261\",[]],[\"name/262\",[119,47.741]],[\"parent/262\",[187,4.118]],[\"name/263\",[52,30.877]],[\"parent/263\",[187,4.118]],[\"name/264\",[188,47.741]],[\"parent/264\",[]],[\"name/265\",[189,52.849]],[\"parent/265\",[188,4.431]],[\"name/266\",[190,23.06]],[\"parent/266\",[]],[\"name/267\",[191,52.849]],[\"parent/267\",[190,2.14]],[\"name/268\",[192,52.849]],[\"parent/268\",[190,2.14]],[\"name/269\",[193,52.849]],[\"parent/269\",[190,2.14]],[\"name/270\",[194,52.849]],[\"parent/270\",[190,2.14]],[\"name/271\",[195,52.849]],[\"parent/271\",[190,2.14]],[\"name/272\",[196,52.849]],[\"parent/272\",[190,2.14]],[\"name/273\",[197,52.849]],[\"parent/273\",[190,2.14]],[\"name/274\",[198,52.849]],[\"parent/274\",[190,2.14]],[\"name/275\",[199,52.849]],[\"parent/275\",[190,2.14]],[\"name/276\",[200,52.849]],[\"parent/276\",[190,2.14]],[\"name/277\",[201,52.849]],[\"parent/277\",[190,2.14]],[\"name/278\",[202,52.849]],[\"parent/278\",[190,2.14]],[\"name/279\",[203,52.849]],[\"parent/279\",[190,2.14]],[\"name/280\",[204,52.849]],[\"parent/280\",[190,2.14]],[\"name/281\",[205,52.849]],[\"parent/281\",[190,2.14]],[\"name/282\",[206,52.849]],[\"parent/282\",[190,2.14]],[\"name/283\",[207,52.849]],[\"parent/283\",[190,2.14]],[\"name/284\",[208,52.849]],[\"parent/284\",[190,2.14]],[\"name/285\",[209,52.849]],[\"parent/285\",[190,2.14]],[\"name/286\",[210,52.849]],[\"parent/286\",[190,2.14]],[\"name/287\",[211,52.849]],[\"parent/287\",[190,2.14]],[\"name/288\",[212,52.849]],[\"parent/288\",[190,2.14]],[\"name/289\",[213,52.849]],[\"parent/289\",[190,2.14]],[\"name/290\",[214,52.849]],[\"parent/290\",[190,2.14]],[\"name/291\",[215,52.849]],[\"parent/291\",[190,2.14]],[\"name/292\",[216,52.849]],[\"parent/292\",[190,2.14]],[\"name/293\",[217,52.849]],[\"parent/293\",[190,2.14]],[\"name/294\",[218,52.849]],[\"parent/294\",[190,2.14]]],\"invertedIndex\":[[\"__type\",{\"_index\":97,\"name\":{\"113\":{},\"189\":{}},\"parent\":{}}],[\"_allowattrs\",{\"_index\":30,\"name\":{\"42\":{}},\"parent\":{}}],[\"_appendto\",{\"_index\":28,\"name\":{\"40\":{}},\"parent\":{}}],[\"_classnames\",{\"_index\":31,\"name\":{\"43\":{}},\"parent\":{}}],[\"_client\",{\"_index\":75,\"name\":{\"87\":{}},\"parent\":{}}],[\"_connection\",{\"_index\":74,\"name\":{\"86\":{}},\"parent\":{}}],[\"_cookielessapitoken\",{\"_index\":77,\"name\":{\"89\":{}},\"parent\":{}}],[\"_cookielessapitokenttl\",{\"_index\":78,\"name\":{\"90\":{}},\"parent\":{}}],[\"_cookielessinitialized\",{\"_index\":76,\"name\":{\"88\":{}},\"parent\":{}}],[\"_cookielessnavigationtoken\",{\"_index\":79,\"name\":{\"91\":{}},\"parent\":{}}],[\"_cookielessnavigationtokenttl\",{\"_index\":80,\"name\":{\"92\":{}},\"parent\":{}}],[\"_cookielesssessionreferencetokenttl\",{\"_index\":81,\"name\":{\"93\":{}},\"parent\":{}}],[\"_frameborder\",{\"_index\":32,\"name\":{\"44\":{}},\"parent\":{}}],[\"_handlers\",{\"_index\":27,\"name\":{\"39\":{}},\"parent\":{}}],[\"_host\",{\"_index\":73,\"name\":{\"85\":{}},\"parent\":{}}],[\"_hostbuilder\",{\"_index\":72,\"name\":{\"84\":{}},\"parent\":{}}],[\"_id\",{\"_index\":33,\"name\":{\"45\":{}},\"parent\":{}}],[\"_params\",{\"_index\":34,\"name\":{\"46\":{}},\"parent\":{}}],[\"_sandboxattrs\",{\"_index\":29,\"name\":{\"41\":{}},\"parent\":{}}],[\"_sandboxedhost\",{\"_index\":37,\"name\":{\"49\":{}},\"parent\":{}}],[\"_suffix\",{\"_index\":35,\"name\":{\"47\":{}},\"parent\":{}}],[\"_url\",{\"_index\":36,\"name\":{\"48\":{}},\"parent\":{}}],[\"absoluteurl\",{\"_index\":140,\"name\":{\"165\":{},\"236\":{},\"243\":{},\"249\":{},\"257\":{}},\"parent\":{}}],[\"acquirecookielessembedsession\",{\"_index\":87,\"name\":{\"99\":{}},\"parent\":{}}],[\"acquirecookielessembedsessioninternal\",{\"_index\":88,\"name\":{\"100\":{}},\"parent\":{}}],[\"acquiresession\",{\"_index\":55,\"name\":{\"67\":{},\"101\":{}},\"parent\":{}}],[\"acquiresessionpromise\",{\"_index\":71,\"name\":{\"83\":{}},\"parent\":{}}],[\"active\",{\"_index\":109,\"name\":{\"127\":{}},\"parent\":{}}],[\"add\",{\"_index\":169,\"name\":{\"222\":{}},\"parent\":{}}],[\"addfilterjson\",{\"_index\":166,\"name\":{\"219\":{},\"229\":{}},\"parent\":{\"220\":{},\"221\":{},\"222\":{}}}],[\"allowattrs\",{\"_index\":61,\"name\":{\"73\":{}},\"parent\":{}}],[\"api_token\",{\"_index\":103,\"name\":{\"119\":{}},\"parent\":{}}],[\"api_token_ttl\",{\"_index\":104,\"name\":{\"120\":{}},\"parent\":{}}],[\"apihost\",{\"_index\":53,\"name\":{\"65\":{}},\"parent\":{}}],[\"appendto\",{\"_index\":65,\"name\":{\"77\":{}},\"parent\":{}}],[\"auth\",{\"_index\":59,\"name\":{\"71\":{}},\"parent\":{}}],[\"authentication_token\",{\"_index\":99,\"name\":{\"115\":{}},\"parent\":{}}],[\"authentication_token_ttl\",{\"_index\":100,\"name\":{\"116\":{}},\"parent\":{}}],[\"authurl\",{\"_index\":58,\"name\":{\"70\":{}},\"parent\":{}}],[\"build\",{\"_index\":67,\"name\":{\"79\":{}},\"parent\":{}}],[\"cancel\",{\"_index\":189,\"name\":{\"265\":{}},\"parent\":{}}],[\"cancellableeventresponse\",{\"_index\":188,\"name\":{\"264\":{}},\"parent\":{\"265\":{}}}],[\"canedit\",{\"_index\":138,\"name\":{\"163\":{}},\"parent\":{}}],[\"classnames\",{\"_index\":62,\"name\":{\"74\":{}},\"parent\":{}}],[\"column\",{\"_index\":118,\"name\":{\"137\":{}},\"parent\":{}}],[\"column_width\",{\"_index\":110,\"name\":{\"128\":{}},\"parent\":{}}],[\"connect\",{\"_index\":90,\"name\":{\"104\":{}},\"parent\":{}}],[\"connection\",{\"_index\":82,\"name\":{\"94\":{}},\"parent\":{}}],[\"constructor\",{\"_index\":11,\"name\":{\"11\":{}},\"parent\":{}}],[\"context\",{\"_index\":173,\"name\":{\"228\":{}},\"parent\":{}}],[\"cookielesscallback\",{\"_index\":96,\"name\":{\"112\":{}},\"parent\":{\"113\":{}}}],[\"cookielessrequestinit\",{\"_index\":95,\"name\":{\"110\":{}},\"parent\":{\"111\":{}}}],[\"createdashboardwithid\",{\"_index\":4,\"name\":{\"4\":{}},\"parent\":{}}],[\"createdashboardwithurl\",{\"_index\":3,\"name\":{\"3\":{}},\"parent\":{}}],[\"createexplorewithid\",{\"_index\":6,\"name\":{\"6\":{}},\"parent\":{}}],[\"createexplorewithurl\",{\"_index\":5,\"name\":{\"5\":{}},\"parent\":{}}],[\"createextensionwithid\",{\"_index\":10,\"name\":{\"10\":{}},\"parent\":{}}],[\"createextensionwithurl\",{\"_index\":9,\"name\":{\"9\":{}},\"parent\":{}}],[\"createiframe\",{\"_index\":85,\"name\":{\"97\":{}},\"parent\":{}}],[\"createlookwithid\",{\"_index\":8,\"name\":{\"8\":{}},\"parent\":{}}],[\"createlookwithurl\",{\"_index\":7,\"name\":{\"7\":{}},\"parent\":{}}],[\"createurl\",{\"_index\":86,\"name\":{\"98\":{}},\"parent\":{}}],[\"dashboard\",{\"_index\":149,\"name\":{\"177\":{},\"191\":{},\"198\":{},\"206\":{},\"214\":{}},\"parent\":{}}],[\"dashboard:delete:complete\",{\"_index\":197,\"name\":{\"273\":{}},\"parent\":{}}],[\"dashboard:edit:cancel\",{\"_index\":195,\"name\":{\"271\":{}},\"parent\":{}}],[\"dashboard:edit:start\",{\"_index\":194,\"name\":{\"270\":{}},\"parent\":{}}],[\"dashboard:filters:changed\",{\"_index\":193,\"name\":{\"269\":{}},\"parent\":{}}],[\"dashboard:run:complete\",{\"_index\":192,\"name\":{\"268\":{}},\"parent\":{}}],[\"dashboard:run:start\",{\"_index\":191,\"name\":{\"267\":{}},\"parent\":{}}],[\"dashboard:save:complete\",{\"_index\":196,\"name\":{\"272\":{}},\"parent\":{}}],[\"dashboard:tile:complete\",{\"_index\":199,\"name\":{\"275\":{}},\"parent\":{}}],[\"dashboard:tile:download\",{\"_index\":200,\"name\":{\"276\":{}},\"parent\":{}}],[\"dashboard:tile:explore\",{\"_index\":201,\"name\":{\"277\":{}},\"parent\":{}}],[\"dashboard:tile:start\",{\"_index\":198,\"name\":{\"274\":{}},\"parent\":{}}],[\"dashboard:tile:view\",{\"_index\":202,\"name\":{\"278\":{}},\"parent\":{}}],[\"dashboard_element_id\",{\"_index\":116,\"name\":{\"135\":{}},\"parent\":{}}],[\"dashboard_filters\",{\"_index\":139,\"name\":{\"164\":{}},\"parent\":{}}],[\"dashboard_id\",{\"_index\":108,\"name\":{\"125\":{}},\"parent\":{}}],[\"dashboard_layout_components\",{\"_index\":113,\"name\":{\"131\":{}},\"parent\":{}}],[\"dashboard_layout_id\",{\"_index\":115,\"name\":{\"134\":{}},\"parent\":{}}],[\"dashboardevent\",{\"_index\":148,\"name\":{\"176\":{}},\"parent\":{\"177\":{},\"178\":{},\"179\":{},\"180\":{}}}],[\"dashboardeventdetail\",{\"_index\":137,\"name\":{\"160\":{}},\"parent\":{\"161\":{},\"162\":{},\"163\":{},\"164\":{},\"165\":{},\"166\":{},\"167\":{}}}],[\"dashboardlayout\",{\"_index\":107,\"name\":{\"123\":{}},\"parent\":{\"124\":{},\"125\":{},\"126\":{},\"127\":{},\"128\":{},\"129\":{},\"130\":{},\"131\":{}}}],[\"dashboardlayoutcomponent\",{\"_index\":114,\"name\":{\"132\":{}},\"parent\":{\"133\":{},\"134\":{},\"135\":{},\"136\":{},\"137\":{},\"138\":{},\"139\":{},\"140\":{}}}],[\"dashboardtiledownloadevent\",{\"_index\":161,\"name\":{\"196\":{}},\"parent\":{\"197\":{},\"198\":{},\"199\":{},\"200\":{},\"201\":{},\"202\":{}}}],[\"dashboardtileevent\",{\"_index\":158,\"name\":{\"190\":{}},\"parent\":{\"191\":{},\"192\":{},\"193\":{},\"194\":{},\"195\":{}}}],[\"dashboardtileeventdetail\",{\"_index\":142,\"name\":{\"168\":{}},\"parent\":{\"169\":{},\"170\":{},\"171\":{}}}],[\"dashboardtileexploreevent\",{\"_index\":163,\"name\":{\"203\":{}},\"parent\":{\"204\":{},\"205\":{},\"206\":{},\"207\":{},\"208\":{},\"209\":{},\"210\":{}}}],[\"dashboardtileviewevent\",{\"_index\":165,\"name\":{\"211\":{}},\"parent\":{\"212\":{},\"213\":{},\"214\":{},\"215\":{},\"216\":{},\"217\":{},\"218\":{}}}],[\"deleted\",{\"_index\":112,\"name\":{\"130\":{},\"140\":{}},\"parent\":{}}],[\"drillmenu:click\",{\"_index\":203,\"name\":{\"279\":{}},\"parent\":{}}],[\"drillmenuevent\",{\"_index\":170,\"name\":{\"223\":{}},\"parent\":{\"224\":{},\"225\":{},\"226\":{},\"227\":{},\"228\":{},\"229\":{},\"230\":{}}}],[\"drillmodal:explore\",{\"_index\":204,\"name\":{\"280\":{}},\"parent\":{}}],[\"drillmodalexploreevent\",{\"_index\":174,\"name\":{\"231\":{}},\"parent\":{\"232\":{},\"233\":{},\"234\":{}}}],[\"edit\",{\"_index\":15,\"name\":{\"15\":{}},\"parent\":{}}],[\"el\",{\"_index\":49,\"name\":{\"61\":{}},\"parent\":{}}],[\"elementoptionitems\",{\"_index\":121,\"name\":{\"143\":{}},\"parent\":{\"144\":{},\"145\":{},\"146\":{}}}],[\"elementoptions\",{\"_index\":125,\"name\":{\"147\":{}},\"parent\":{}}],[\"elements\",{\"_index\":127,\"name\":{\"149\":{}},\"parent\":{}}],[\"embedbuilder\",{\"_index\":26,\"name\":{\"38\":{}},\"parent\":{\"39\":{},\"40\":{},\"41\":{},\"42\":{},\"43\":{},\"44\":{},\"45\":{},\"46\":{},\"47\":{},\"48\":{},\"49\":{},\"50\":{},\"51\":{},\"52\":{},\"53\":{},\"54\":{},\"55\":{},\"56\":{},\"57\":{},\"58\":{},\"59\":{},\"60\":{},\"61\":{},\"62\":{},\"63\":{},\"64\":{},\"65\":{},\"66\":{},\"67\":{},\"68\":{},\"69\":{},\"70\":{},\"71\":{},\"72\":{},\"73\":{},\"74\":{},\"75\":{},\"76\":{},\"77\":{},\"78\":{},\"79\":{}}}],[\"embedclient\",{\"_index\":69,\"name\":{\"81\":{}},\"parent\":{\"82\":{},\"83\":{},\"84\":{},\"85\":{},\"86\":{},\"87\":{},\"88\":{},\"89\":{},\"90\":{},\"91\":{},\"92\":{},\"93\":{},\"94\":{},\"95\":{},\"96\":{},\"97\":{},\"98\":{},\"99\":{},\"100\":{},\"101\":{},\"102\":{},\"103\":{},\"104\":{}}}],[\"endpoint\",{\"_index\":51,\"name\":{\"63\":{}},\"parent\":{}}],[\"error_pos\",{\"_index\":154,\"name\":{\"185\":{}},\"parent\":{}}],[\"errors\",{\"_index\":147,\"name\":{\"175\":{},\"195\":{},\"202\":{},\"210\":{},\"218\":{}},\"parent\":{}}],[\"eventdetail\",{\"_index\":130,\"name\":{\"153\":{}},\"parent\":{}}],[\"expired\",{\"_index\":134,\"name\":{\"157\":{}},\"parent\":{}}],[\"explore\",{\"_index\":183,\"name\":{\"252\":{}},\"parent\":{}}],[\"explore:ready\",{\"_index\":207,\"name\":{\"283\":{}},\"parent\":{}}],[\"explore:run:complete\",{\"_index\":206,\"name\":{\"282\":{}},\"parent\":{}}],[\"explore:run:start\",{\"_index\":205,\"name\":{\"281\":{}},\"parent\":{}}],[\"explore:state:changed\",{\"_index\":208,\"name\":{\"284\":{}},\"parent\":{}}],[\"exploreevent\",{\"_index\":182,\"name\":{\"251\":{}},\"parent\":{\"252\":{},\"253\":{}}}],[\"exploreeventdetail\",{\"_index\":181,\"name\":{\"248\":{}},\"parent\":{\"249\":{},\"250\":{}}}],[\"fatal\",{\"_index\":156,\"name\":{\"187\":{}},\"parent\":{}}],[\"field\",{\"_index\":168,\"name\":{\"221\":{}},\"parent\":{}}],[\"fileformat\",{\"_index\":162,\"name\":{\"197\":{}},\"parent\":{}}],[\"frameborder\",{\"_index\":50,\"name\":{\"62\":{}},\"parent\":{}}],[\"generatetokens\",{\"_index\":56,\"name\":{\"68\":{},\"102\":{}},\"parent\":{}}],[\"getresource\",{\"_index\":89,\"name\":{\"103\":{}},\"parent\":{}}],[\"headers\",{\"_index\":92,\"name\":{\"107\":{}},\"parent\":{}}],[\"height\",{\"_index\":119,\"name\":{\"139\":{},\"262\":{}},\"parent\":{}}],[\"id\",{\"_index\":64,\"name\":{\"76\":{},\"124\":{},\"133\":{},\"161\":{},\"169\":{}},\"parent\":{}}],[\"init\",{\"_index\":1,\"name\":{\"1\":{}},\"parent\":{}}],[\"initcookieless\",{\"_index\":2,\"name\":{\"2\":{}},\"parent\":{}}],[\"interrupted\",{\"_index\":135,\"name\":{\"158\":{}},\"parent\":{}}],[\"isconnected\",{\"_index\":83,\"name\":{\"95\":{}},\"parent\":{}}],[\"iscookielessembed\",{\"_index\":54,\"name\":{\"66\":{}},\"parent\":{}}],[\"label\",{\"_index\":164,\"name\":{\"204\":{},\"212\":{},\"224\":{},\"232\":{}},\"parent\":{}}],[\"layouts\",{\"_index\":128,\"name\":{\"150\":{}},\"parent\":{}}],[\"level\",{\"_index\":155,\"name\":{\"186\":{}},\"parent\":{}}],[\"link_type\",{\"_index\":171,\"name\":{\"225\":{}},\"parent\":{}}],[\"listen\",{\"_index\":143,\"name\":{\"171\":{}},\"parent\":{}}],[\"loaddashboard\",{\"_index\":19,\"name\":{\"19\":{}},\"parent\":{}}],[\"look\",{\"_index\":177,\"name\":{\"239\":{},\"246\":{}},\"parent\":{}}],[\"look:delete:complete\",{\"_index\":212,\"name\":{\"288\":{}},\"parent\":{}}],[\"look:ready\",{\"_index\":213,\"name\":{\"289\":{}},\"parent\":{}}],[\"look:run:complete\",{\"_index\":210,\"name\":{\"286\":{}},\"parent\":{}}],[\"look:run:start\",{\"_index\":209,\"name\":{\"285\":{}},\"parent\":{}}],[\"look:save:complete\",{\"_index\":211,\"name\":{\"287\":{}},\"parent\":{}}],[\"look:state:changed\",{\"_index\":214,\"name\":{\"290\":{}},\"parent\":{}}],[\"lookerauthconfig\",{\"_index\":91,\"name\":{\"105\":{}},\"parent\":{\"106\":{},\"107\":{},\"108\":{},\"109\":{}}}],[\"lookerdashboardoptions\",{\"_index\":126,\"name\":{\"148\":{}},\"parent\":{\"149\":{},\"150\":{}}}],[\"lookerembedbase\",{\"_index\":25,\"name\":{\"35\":{}},\"parent\":{\"36\":{},\"37\":{}}}],[\"lookerembedcookielesssessiondata\",{\"_index\":98,\"name\":{\"114\":{}},\"parent\":{\"115\":{},\"116\":{},\"117\":{},\"118\":{},\"119\":{},\"120\":{},\"121\":{}}}],[\"lookerembeddashboard\",{\"_index\":12,\"name\":{\"12\":{}},\"parent\":{\"13\":{},\"14\":{},\"15\":{},\"16\":{},\"17\":{},\"18\":{},\"19\":{},\"20\":{},\"21\":{}}}],[\"lookerembedevent\",{\"_index\":129,\"name\":{\"151\":{}},\"parent\":{\"152\":{}}}],[\"lookerembedeventmap\",{\"_index\":190,\"name\":{\"266\":{}},\"parent\":{\"267\":{},\"268\":{},\"269\":{},\"270\":{},\"271\":{},\"272\":{},\"273\":{},\"274\":{},\"275\":{},\"276\":{},\"277\":{},\"278\":{},\"279\":{},\"280\":{},\"281\":{},\"282\":{},\"283\":{},\"284\":{},\"285\":{},\"286\":{},\"287\":{},\"288\":{},\"289\":{},\"290\":{},\"291\":{},\"292\":{},\"293\":{},\"294\":{}}}],[\"lookerembedexplore\",{\"_index\":22,\"name\":{\"22\":{}},\"parent\":{\"23\":{},\"24\":{},\"25\":{},\"26\":{}}}],[\"lookerembedextension\",{\"_index\":23,\"name\":{\"27\":{}},\"parent\":{\"28\":{},\"29\":{}}}],[\"lookerembedfilterparams\",{\"_index\":106,\"name\":{\"122\":{}},\"parent\":{}}],[\"lookerembedlook\",{\"_index\":24,\"name\":{\"30\":{}},\"parent\":{\"31\":{},\"32\":{},\"33\":{},\"34\":{}}}],[\"lookerembedsdk\",{\"_index\":0,\"name\":{\"0\":{}},\"parent\":{\"1\":{},\"2\":{},\"3\":{},\"4\":{},\"5\":{},\"6\":{},\"7\":{},\"8\":{},\"9\":{},\"10\":{},\"11\":{}}}],[\"lookevent\",{\"_index\":176,\"name\":{\"238\":{}},\"parent\":{\"239\":{},\"240\":{}}}],[\"lookeventdetail\",{\"_index\":175,\"name\":{\"235\":{}},\"parent\":{\"236\":{},\"237\":{}}}],[\"looksaveevent\",{\"_index\":180,\"name\":{\"245\":{}},\"parent\":{\"246\":{},\"247\":{}}}],[\"looksaveeventdetail\",{\"_index\":178,\"name\":{\"241\":{}},\"parent\":{\"242\":{},\"243\":{},\"244\":{}}}],[\"message\",{\"_index\":152,\"name\":{\"182\":{}},\"parent\":{}}],[\"message_details\",{\"_index\":153,\"name\":{\"183\":{}},\"parent\":{}}],[\"modal\",{\"_index\":172,\"name\":{\"227\":{}},\"parent\":{}}],[\"navigation_token\",{\"_index\":101,\"name\":{\"117\":{}},\"parent\":{}}],[\"navigation_token_ttl\",{\"_index\":102,\"name\":{\"118\":{}},\"parent\":{}}],[\"on\",{\"_index\":66,\"name\":{\"78\":{}},\"parent\":{}}],[\"openscheduledialog\",{\"_index\":18,\"name\":{\"18\":{}},\"parent\":{}}],[\"options\",{\"_index\":141,\"name\":{\"167\":{}},\"parent\":{}}],[\"page\",{\"_index\":186,\"name\":{\"259\":{}},\"parent\":{}}],[\"page:changed\",{\"_index\":215,\"name\":{\"291\":{}},\"parent\":{}}],[\"page:properties:changed\",{\"_index\":216,\"name\":{\"292\":{}},\"parent\":{}}],[\"pagechangedevent\",{\"_index\":185,\"name\":{\"258\":{}},\"parent\":{\"259\":{},\"260\":{}}}],[\"pagechangedeventdetail\",{\"_index\":184,\"name\":{\"254\":{}},\"parent\":{\"255\":{},\"256\":{},\"257\":{}}}],[\"pagepropertieschangedevent\",{\"_index\":187,\"name\":{\"261\":{}},\"parent\":{\"262\":{},\"263\":{}}}],[\"params\",{\"_index\":93,\"name\":{\"108\":{},\"184\":{}},\"parent\":{}}],[\"queryerror\",{\"_index\":151,\"name\":{\"181\":{}},\"parent\":{\"182\":{},\"183\":{},\"184\":{},\"185\":{},\"186\":{},\"187\":{},\"188\":{},\"189\":{}}}],[\"recoverable\",{\"_index\":136,\"name\":{\"159\":{}},\"parent\":{}}],[\"rendered\",{\"_index\":167,\"name\":{\"220\":{}},\"parent\":{}}],[\"row\",{\"_index\":117,\"name\":{\"136\":{}},\"parent\":{}}],[\"run\",{\"_index\":13,\"name\":{\"13\":{},\"23\":{},\"31\":{}},\"parent\":{}}],[\"sandboxattrs\",{\"_index\":60,\"name\":{\"72\":{}},\"parent\":{}}],[\"send\",{\"_index\":20,\"name\":{\"20\":{},\"25\":{},\"28\":{},\"33\":{},\"36\":{}},\"parent\":{}}],[\"sendandreceive\",{\"_index\":21,\"name\":{\"21\":{},\"26\":{},\"29\":{},\"34\":{},\"37\":{}},\"parent\":{}}],[\"session:status\",{\"_index\":218,\"name\":{\"294\":{}},\"parent\":{}}],[\"session:token:request\",{\"_index\":217,\"name\":{\"293\":{}},\"parent\":{}}],[\"session_reference_token_ttl\",{\"_index\":105,\"name\":{\"121\":{}},\"parent\":{}}],[\"session_ttl\",{\"_index\":133,\"name\":{\"156\":{}},\"parent\":{}}],[\"sessionacquired\",{\"_index\":70,\"name\":{\"82\":{}},\"parent\":{}}],[\"sessionstatus\",{\"_index\":132,\"name\":{\"155\":{}},\"parent\":{\"156\":{},\"157\":{},\"158\":{},\"159\":{}}}],[\"sessiontokenrequest\",{\"_index\":131,\"name\":{\"154\":{}},\"parent\":{}}],[\"setoptions\",{\"_index\":17,\"name\":{\"17\":{}},\"parent\":{}}],[\"spaceid\",{\"_index\":179,\"name\":{\"242\":{}},\"parent\":{}}],[\"sql_error_loc\",{\"_index\":157,\"name\":{\"188\":{}},\"parent\":{}}],[\"status\",{\"_index\":146,\"name\":{\"174\":{},\"178\":{},\"193\":{},\"200\":{},\"208\":{},\"216\":{}},\"parent\":{}}],[\"stop\",{\"_index\":14,\"name\":{\"14\":{}},\"parent\":{}}],[\"suffix\",{\"_index\":63,\"name\":{\"75\":{}},\"parent\":{}}],[\"targetorigin\",{\"_index\":84,\"name\":{\"96\":{}},\"parent\":{}}],[\"tile\",{\"_index\":159,\"name\":{\"192\":{},\"199\":{},\"207\":{},\"215\":{}},\"parent\":{}}],[\"tileid\",{\"_index\":145,\"name\":{\"173\":{}},\"parent\":{}}],[\"tilestatus\",{\"_index\":144,\"name\":{\"172\":{}},\"parent\":{\"173\":{},\"174\":{},\"175\":{}}}],[\"tilestatuses\",{\"_index\":150,\"name\":{\"179\":{}},\"parent\":{}}],[\"title\",{\"_index\":122,\"name\":{\"144\":{},\"162\":{},\"170\":{}},\"parent\":{}}],[\"title_hidden\",{\"_index\":123,\"name\":{\"145\":{}},\"parent\":{}}],[\"truncated\",{\"_index\":160,\"name\":{\"194\":{},\"201\":{},\"209\":{},\"217\":{}},\"parent\":{}}],[\"type\",{\"_index\":52,\"name\":{\"64\":{},\"126\":{},\"142\":{},\"152\":{},\"180\":{},\"230\":{},\"234\":{},\"240\":{},\"247\":{},\"253\":{},\"255\":{},\"260\":{},\"263\":{}},\"parent\":{}}],[\"updatefilters\",{\"_index\":16,\"name\":{\"16\":{},\"24\":{},\"32\":{}},\"parent\":{}}],[\"url\",{\"_index\":57,\"name\":{\"69\":{},\"106\":{},\"111\":{},\"166\":{},\"205\":{},\"213\":{},\"226\":{},\"233\":{},\"237\":{},\"244\":{},\"250\":{},\"256\":{}},\"parent\":{}}],[\"urlparams\",{\"_index\":68,\"name\":{\"80\":{}},\"parent\":{}}],[\"vis_config\",{\"_index\":124,\"name\":{\"146\":{}},\"parent\":{}}],[\"visconfig\",{\"_index\":120,\"name\":{\"141\":{}},\"parent\":{\"142\":{}}}],[\"width\",{\"_index\":111,\"name\":{\"129\":{},\"138\":{}},\"parent\":{}}],[\"withallowattr\",{\"_index\":42,\"name\":{\"54\":{}},\"parent\":{}}],[\"withapihost\",{\"_index\":46,\"name\":{\"58\":{}},\"parent\":{}}],[\"withauth\",{\"_index\":48,\"name\":{\"60\":{}},\"parent\":{}}],[\"withauthurl\",{\"_index\":47,\"name\":{\"59\":{}},\"parent\":{}}],[\"withclassname\",{\"_index\":43,\"name\":{\"55\":{}},\"parent\":{}}],[\"withcredentials\",{\"_index\":94,\"name\":{\"109\":{}},\"parent\":{}}],[\"withfilters\",{\"_index\":40,\"name\":{\"52\":{}},\"parent\":{}}],[\"withframeborder\",{\"_index\":38,\"name\":{\"50\":{}},\"parent\":{}}],[\"withnext\",{\"_index\":44,\"name\":{\"56\":{}},\"parent\":{}}],[\"withparams\",{\"_index\":39,\"name\":{\"51\":{}},\"parent\":{}}],[\"withsandboxattr\",{\"_index\":41,\"name\":{\"53\":{}},\"parent\":{}}],[\"withtheme\",{\"_index\":45,\"name\":{\"57\":{}},\"parent\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file +window.searchData = JSON.parse("{\"kinds\":{\"128\":\"Class\",\"256\":\"Interface\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\",\"262144\":\"Accessor\",\"4194304\":\"Type alias\"},\"rows\":[{\"id\":0,\"kind\":128,\"name\":\"LookerEmbedSDK\",\"url\":\"classes/LookerEmbedSDK.html\",\"classes\":\"tsd-kind-class\"},{\"id\":1,\"kind\":2048,\"name\":\"init\",\"url\":\"classes/LookerEmbedSDK.html#init\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"LookerEmbedSDK\"},{\"id\":2,\"kind\":2048,\"name\":\"initCookieless\",\"url\":\"classes/LookerEmbedSDK.html#initCookieless\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"LookerEmbedSDK\"},{\"id\":3,\"kind\":2048,\"name\":\"createDashboardWithUrl\",\"url\":\"classes/LookerEmbedSDK.html#createDashboardWithUrl\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"LookerEmbedSDK\"},{\"id\":4,\"kind\":2048,\"name\":\"createDashboardWithId\",\"url\":\"classes/LookerEmbedSDK.html#createDashboardWithId\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"LookerEmbedSDK\"},{\"id\":5,\"kind\":2048,\"name\":\"createExploreWithUrl\",\"url\":\"classes/LookerEmbedSDK.html#createExploreWithUrl\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"LookerEmbedSDK\"},{\"id\":6,\"kind\":2048,\"name\":\"createExploreWithId\",\"url\":\"classes/LookerEmbedSDK.html#createExploreWithId\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"LookerEmbedSDK\"},{\"id\":7,\"kind\":2048,\"name\":\"createLookWithUrl\",\"url\":\"classes/LookerEmbedSDK.html#createLookWithUrl\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"LookerEmbedSDK\"},{\"id\":8,\"kind\":2048,\"name\":\"createLookWithId\",\"url\":\"classes/LookerEmbedSDK.html#createLookWithId\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"LookerEmbedSDK\"},{\"id\":9,\"kind\":2048,\"name\":\"createExtensionWithUrl\",\"url\":\"classes/LookerEmbedSDK.html#createExtensionWithUrl\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"LookerEmbedSDK\"},{\"id\":10,\"kind\":2048,\"name\":\"createExtensionWithId\",\"url\":\"classes/LookerEmbedSDK.html#createExtensionWithId\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"LookerEmbedSDK\"},{\"id\":11,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/LookerEmbedSDK.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"LookerEmbedSDK\"},{\"id\":12,\"kind\":128,\"name\":\"LookerEmbedDashboard\",\"url\":\"classes/LookerEmbedDashboard.html\",\"classes\":\"tsd-kind-class\"},{\"id\":13,\"kind\":2048,\"name\":\"run\",\"url\":\"classes/LookerEmbedDashboard.html#run\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LookerEmbedDashboard\"},{\"id\":14,\"kind\":2048,\"name\":\"stop\",\"url\":\"classes/LookerEmbedDashboard.html#stop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LookerEmbedDashboard\"},{\"id\":15,\"kind\":2048,\"name\":\"edit\",\"url\":\"classes/LookerEmbedDashboard.html#edit\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LookerEmbedDashboard\"},{\"id\":16,\"kind\":2048,\"name\":\"updateFilters\",\"url\":\"classes/LookerEmbedDashboard.html#updateFilters\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LookerEmbedDashboard\"},{\"id\":17,\"kind\":2048,\"name\":\"setOptions\",\"url\":\"classes/LookerEmbedDashboard.html#setOptions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LookerEmbedDashboard\"},{\"id\":18,\"kind\":2048,\"name\":\"openScheduleDialog\",\"url\":\"classes/LookerEmbedDashboard.html#openScheduleDialog\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LookerEmbedDashboard\"},{\"id\":19,\"kind\":2048,\"name\":\"loadDashboard\",\"url\":\"classes/LookerEmbedDashboard.html#loadDashboard\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LookerEmbedDashboard\"},{\"id\":20,\"kind\":2048,\"name\":\"send\",\"url\":\"classes/LookerEmbedDashboard.html#send\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"LookerEmbedDashboard\"},{\"id\":21,\"kind\":2048,\"name\":\"sendAndReceive\",\"url\":\"classes/LookerEmbedDashboard.html#sendAndReceive\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"LookerEmbedDashboard\"},{\"id\":22,\"kind\":128,\"name\":\"LookerEmbedExplore\",\"url\":\"classes/LookerEmbedExplore.html\",\"classes\":\"tsd-kind-class\"},{\"id\":23,\"kind\":2048,\"name\":\"run\",\"url\":\"classes/LookerEmbedExplore.html#run\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LookerEmbedExplore\"},{\"id\":24,\"kind\":2048,\"name\":\"updateFilters\",\"url\":\"classes/LookerEmbedExplore.html#updateFilters\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LookerEmbedExplore\"},{\"id\":25,\"kind\":2048,\"name\":\"send\",\"url\":\"classes/LookerEmbedExplore.html#send\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"LookerEmbedExplore\"},{\"id\":26,\"kind\":2048,\"name\":\"sendAndReceive\",\"url\":\"classes/LookerEmbedExplore.html#sendAndReceive\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"LookerEmbedExplore\"},{\"id\":27,\"kind\":128,\"name\":\"LookerEmbedExtension\",\"url\":\"classes/LookerEmbedExtension.html\",\"classes\":\"tsd-kind-class\"},{\"id\":28,\"kind\":2048,\"name\":\"send\",\"url\":\"classes/LookerEmbedExtension.html#send\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"LookerEmbedExtension\"},{\"id\":29,\"kind\":2048,\"name\":\"sendAndReceive\",\"url\":\"classes/LookerEmbedExtension.html#sendAndReceive\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"LookerEmbedExtension\"},{\"id\":30,\"kind\":128,\"name\":\"LookerEmbedLook\",\"url\":\"classes/LookerEmbedLook.html\",\"classes\":\"tsd-kind-class\"},{\"id\":31,\"kind\":2048,\"name\":\"run\",\"url\":\"classes/LookerEmbedLook.html#run\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LookerEmbedLook\"},{\"id\":32,\"kind\":2048,\"name\":\"updateFilters\",\"url\":\"classes/LookerEmbedLook.html#updateFilters\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LookerEmbedLook\"},{\"id\":33,\"kind\":2048,\"name\":\"send\",\"url\":\"classes/LookerEmbedLook.html#send\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"LookerEmbedLook\"},{\"id\":34,\"kind\":2048,\"name\":\"sendAndReceive\",\"url\":\"classes/LookerEmbedLook.html#sendAndReceive\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"LookerEmbedLook\"},{\"id\":35,\"kind\":128,\"name\":\"LookerEmbedBase\",\"url\":\"classes/LookerEmbedBase.html\",\"classes\":\"tsd-kind-class\"},{\"id\":36,\"kind\":2048,\"name\":\"send\",\"url\":\"classes/LookerEmbedBase.html#send\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LookerEmbedBase\"},{\"id\":37,\"kind\":2048,\"name\":\"sendAndReceive\",\"url\":\"classes/LookerEmbedBase.html#sendAndReceive\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LookerEmbedBase\"},{\"id\":38,\"kind\":128,\"name\":\"EmbedBuilder\",\"url\":\"classes/EmbedBuilder.html\",\"classes\":\"tsd-kind-class tsd-has-type-parameter\"},{\"id\":39,\"kind\":1024,\"name\":\"_handlers\",\"url\":\"classes/EmbedBuilder.html#_handlers\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedBuilder\"},{\"id\":40,\"kind\":1024,\"name\":\"_appendTo\",\"url\":\"classes/EmbedBuilder.html#_appendTo\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedBuilder\"},{\"id\":41,\"kind\":1024,\"name\":\"_sandboxAttrs\",\"url\":\"classes/EmbedBuilder.html#_sandboxAttrs\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedBuilder\"},{\"id\":42,\"kind\":1024,\"name\":\"_allowAttrs\",\"url\":\"classes/EmbedBuilder.html#_allowAttrs\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedBuilder\"},{\"id\":43,\"kind\":1024,\"name\":\"_classNames\",\"url\":\"classes/EmbedBuilder.html#_classNames\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedBuilder\"},{\"id\":44,\"kind\":1024,\"name\":\"_frameBorder\",\"url\":\"classes/EmbedBuilder.html#_frameBorder\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedBuilder\"},{\"id\":45,\"kind\":1024,\"name\":\"_id\",\"url\":\"classes/EmbedBuilder.html#_id\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedBuilder\"},{\"id\":46,\"kind\":1024,\"name\":\"_params\",\"url\":\"classes/EmbedBuilder.html#_params\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedBuilder\"},{\"id\":47,\"kind\":1024,\"name\":\"_suffix\",\"url\":\"classes/EmbedBuilder.html#_suffix\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedBuilder\"},{\"id\":48,\"kind\":1024,\"name\":\"_url\",\"url\":\"classes/EmbedBuilder.html#_url\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedBuilder\"},{\"id\":49,\"kind\":1024,\"name\":\"_sandboxedHost\",\"url\":\"classes/EmbedBuilder.html#_sandboxedHost\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedBuilder\"},{\"id\":50,\"kind\":1024,\"name\":\"_scrollMonitor\",\"url\":\"classes/EmbedBuilder.html#_scrollMonitor\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedBuilder\"},{\"id\":51,\"kind\":1024,\"name\":\"_dynamicIFrameHeight\",\"url\":\"classes/EmbedBuilder.html#_dynamicIFrameHeight\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedBuilder\"},{\"id\":52,\"kind\":1024,\"name\":\"_dialogScroll\",\"url\":\"classes/EmbedBuilder.html#_dialogScroll\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedBuilder\"},{\"id\":53,\"kind\":2048,\"name\":\"withFrameBorder\",\"url\":\"classes/EmbedBuilder.html#withFrameBorder\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":54,\"kind\":2048,\"name\":\"withParams\",\"url\":\"classes/EmbedBuilder.html#withParams\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":55,\"kind\":2048,\"name\":\"withFilters\",\"url\":\"classes/EmbedBuilder.html#withFilters\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":56,\"kind\":2048,\"name\":\"withSandboxAttr\",\"url\":\"classes/EmbedBuilder.html#withSandboxAttr\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":57,\"kind\":2048,\"name\":\"withAllowAttr\",\"url\":\"classes/EmbedBuilder.html#withAllowAttr\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":58,\"kind\":2048,\"name\":\"withClassName\",\"url\":\"classes/EmbedBuilder.html#withClassName\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":59,\"kind\":2048,\"name\":\"withNext\",\"url\":\"classes/EmbedBuilder.html#withNext\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":60,\"kind\":2048,\"name\":\"withTheme\",\"url\":\"classes/EmbedBuilder.html#withTheme\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":61,\"kind\":2048,\"name\":\"withScrollMonitor\",\"url\":\"classes/EmbedBuilder.html#withScrollMonitor\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":62,\"kind\":2048,\"name\":\"withDynamicIFrameHeight\",\"url\":\"classes/EmbedBuilder.html#withDynamicIFrameHeight\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":63,\"kind\":2048,\"name\":\"withDialogScroll\",\"url\":\"classes/EmbedBuilder.html#withDialogScroll\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":64,\"kind\":2048,\"name\":\"withApiHost\",\"url\":\"classes/EmbedBuilder.html#withApiHost\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":65,\"kind\":2048,\"name\":\"withAuthUrl\",\"url\":\"classes/EmbedBuilder.html#withAuthUrl\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":66,\"kind\":2048,\"name\":\"withAuth\",\"url\":\"classes/EmbedBuilder.html#withAuth\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":67,\"kind\":262144,\"name\":\"el\",\"url\":\"classes/EmbedBuilder.html#el\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":68,\"kind\":262144,\"name\":\"frameBorder\",\"url\":\"classes/EmbedBuilder.html#frameBorder\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":69,\"kind\":262144,\"name\":\"endpoint\",\"url\":\"classes/EmbedBuilder.html#endpoint\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":70,\"kind\":262144,\"name\":\"type\",\"url\":\"classes/EmbedBuilder.html#type\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":71,\"kind\":262144,\"name\":\"apiHost\",\"url\":\"classes/EmbedBuilder.html#apiHost\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":72,\"kind\":262144,\"name\":\"isCookielessEmbed\",\"url\":\"classes/EmbedBuilder.html#isCookielessEmbed\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":73,\"kind\":262144,\"name\":\"acquireSession\",\"url\":\"classes/EmbedBuilder.html#acquireSession\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":74,\"kind\":262144,\"name\":\"generateTokens\",\"url\":\"classes/EmbedBuilder.html#generateTokens\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":75,\"kind\":262144,\"name\":\"url\",\"url\":\"classes/EmbedBuilder.html#url\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":76,\"kind\":262144,\"name\":\"authUrl\",\"url\":\"classes/EmbedBuilder.html#authUrl\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":77,\"kind\":262144,\"name\":\"auth\",\"url\":\"classes/EmbedBuilder.html#auth\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":78,\"kind\":262144,\"name\":\"sandboxAttrs\",\"url\":\"classes/EmbedBuilder.html#sandboxAttrs\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":79,\"kind\":262144,\"name\":\"allowAttrs\",\"url\":\"classes/EmbedBuilder.html#allowAttrs\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":80,\"kind\":262144,\"name\":\"classNames\",\"url\":\"classes/EmbedBuilder.html#classNames\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":81,\"kind\":262144,\"name\":\"suffix\",\"url\":\"classes/EmbedBuilder.html#suffix\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":82,\"kind\":262144,\"name\":\"id\",\"url\":\"classes/EmbedBuilder.html#id\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":83,\"kind\":262144,\"name\":\"scrollMonitor\",\"url\":\"classes/EmbedBuilder.html#scrollMonitor\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":84,\"kind\":262144,\"name\":\"dynamicIFrameHeight\",\"url\":\"classes/EmbedBuilder.html#dynamicIFrameHeight\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":85,\"kind\":262144,\"name\":\"dialogScroll\",\"url\":\"classes/EmbedBuilder.html#dialogScroll\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":86,\"kind\":2048,\"name\":\"appendTo\",\"url\":\"classes/EmbedBuilder.html#appendTo\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":87,\"kind\":2048,\"name\":\"on\",\"url\":\"classes/EmbedBuilder.html#on\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter\",\"parent\":\"EmbedBuilder\"},{\"id\":88,\"kind\":2048,\"name\":\"build\",\"url\":\"classes/EmbedBuilder.html#build\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedBuilder\"},{\"id\":89,\"kind\":256,\"name\":\"UrlParams\",\"url\":\"interfaces/UrlParams.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":90,\"kind\":128,\"name\":\"EmbedClient\",\"url\":\"classes/EmbedClient.html\",\"classes\":\"tsd-kind-class tsd-has-type-parameter\"},{\"id\":91,\"kind\":1024,\"name\":\"sessionAcquired\",\"url\":\"classes/EmbedClient.html#sessionAcquired\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static\",\"parent\":\"EmbedClient\"},{\"id\":92,\"kind\":1024,\"name\":\"acquireSessionPromise\",\"url\":\"classes/EmbedClient.html#acquireSessionPromise\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static\",\"parent\":\"EmbedClient\"},{\"id\":93,\"kind\":1024,\"name\":\"_hostBuilder\",\"url\":\"classes/EmbedClient.html#_hostBuilder\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"EmbedClient\"},{\"id\":94,\"kind\":1024,\"name\":\"_host\",\"url\":\"classes/EmbedClient.html#_host\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"EmbedClient\"},{\"id\":95,\"kind\":1024,\"name\":\"_connection\",\"url\":\"classes/EmbedClient.html#_connection\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"EmbedClient\"},{\"id\":96,\"kind\":1024,\"name\":\"_client\",\"url\":\"classes/EmbedClient.html#_client\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"EmbedClient\"},{\"id\":97,\"kind\":1024,\"name\":\"_cookielessInitialized\",\"url\":\"classes/EmbedClient.html#_cookielessInitialized\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"EmbedClient\"},{\"id\":98,\"kind\":1024,\"name\":\"_cookielessApiToken\",\"url\":\"classes/EmbedClient.html#_cookielessApiToken\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"EmbedClient\"},{\"id\":99,\"kind\":1024,\"name\":\"_cookielessApiTokenTtl\",\"url\":\"classes/EmbedClient.html#_cookielessApiTokenTtl\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"EmbedClient\"},{\"id\":100,\"kind\":1024,\"name\":\"_cookielessNavigationToken\",\"url\":\"classes/EmbedClient.html#_cookielessNavigationToken\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"EmbedClient\"},{\"id\":101,\"kind\":1024,\"name\":\"_cookielessNavigationTokenTtl\",\"url\":\"classes/EmbedClient.html#_cookielessNavigationTokenTtl\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"EmbedClient\"},{\"id\":102,\"kind\":1024,\"name\":\"_cookielessSessionReferenceTokenTtl\",\"url\":\"classes/EmbedClient.html#_cookielessSessionReferenceTokenTtl\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"EmbedClient\"},{\"id\":103,\"kind\":262144,\"name\":\"connection\",\"url\":\"classes/EmbedClient.html#connection\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedClient\"},{\"id\":104,\"kind\":262144,\"name\":\"isConnected\",\"url\":\"classes/EmbedClient.html#isConnected\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedClient\"},{\"id\":105,\"kind\":262144,\"name\":\"targetOrigin\",\"url\":\"classes/EmbedClient.html#targetOrigin\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"EmbedClient\"},{\"id\":106,\"kind\":2048,\"name\":\"createIframe\",\"url\":\"classes/EmbedClient.html#createIframe\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedClient\"},{\"id\":107,\"kind\":2048,\"name\":\"sendScrollData\",\"url\":\"classes/EmbedClient.html#sendScrollData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedClient\"},{\"id\":108,\"kind\":2048,\"name\":\"addIframeMonitor\",\"url\":\"classes/EmbedClient.html#addIframeMonitor\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedClient\"},{\"id\":109,\"kind\":2048,\"name\":\"createUrl\",\"url\":\"classes/EmbedClient.html#createUrl\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedClient\"},{\"id\":110,\"kind\":2048,\"name\":\"acquireCookielessEmbedSession\",\"url\":\"classes/EmbedClient.html#acquireCookielessEmbedSession\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedClient\"},{\"id\":111,\"kind\":2048,\"name\":\"acquireCookielessEmbedSessionInternal\",\"url\":\"classes/EmbedClient.html#acquireCookielessEmbedSessionInternal\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedClient\"},{\"id\":112,\"kind\":2048,\"name\":\"acquireSession\",\"url\":\"classes/EmbedClient.html#acquireSession\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedClient\"},{\"id\":113,\"kind\":2048,\"name\":\"generateTokens\",\"url\":\"classes/EmbedClient.html#generateTokens\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedClient\"},{\"id\":114,\"kind\":2048,\"name\":\"getResource\",\"url\":\"classes/EmbedClient.html#getResource\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"EmbedClient\"},{\"id\":115,\"kind\":2048,\"name\":\"connect\",\"url\":\"classes/EmbedClient.html#connect\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EmbedClient\"},{\"id\":116,\"kind\":256,\"name\":\"LookerAuthConfig\",\"url\":\"interfaces/LookerAuthConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":117,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/LookerAuthConfig.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookerAuthConfig\"},{\"id\":118,\"kind\":1024,\"name\":\"headers\",\"url\":\"interfaces/LookerAuthConfig.html#headers\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookerAuthConfig\"},{\"id\":119,\"kind\":1024,\"name\":\"params\",\"url\":\"interfaces/LookerAuthConfig.html#params\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookerAuthConfig\"},{\"id\":120,\"kind\":1024,\"name\":\"withCredentials\",\"url\":\"interfaces/LookerAuthConfig.html#withCredentials\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookerAuthConfig\"},{\"id\":121,\"kind\":256,\"name\":\"CookielessRequestInit\",\"url\":\"interfaces/CookielessRequestInit.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":122,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/CookielessRequestInit.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"CookielessRequestInit\"},{\"id\":123,\"kind\":4194304,\"name\":\"CookielessCallback\",\"url\":\"modules.html#CookielessCallback\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":124,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#CookielessCallback.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"CookielessCallback\"},{\"id\":125,\"kind\":256,\"name\":\"LookerEmbedCookielessSessionData\",\"url\":\"interfaces/LookerEmbedCookielessSessionData.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":126,\"kind\":1024,\"name\":\"authentication_token\",\"url\":\"interfaces/LookerEmbedCookielessSessionData.html#authentication_token\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookerEmbedCookielessSessionData\"},{\"id\":127,\"kind\":1024,\"name\":\"authentication_token_ttl\",\"url\":\"interfaces/LookerEmbedCookielessSessionData.html#authentication_token_ttl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookerEmbedCookielessSessionData\"},{\"id\":128,\"kind\":1024,\"name\":\"navigation_token\",\"url\":\"interfaces/LookerEmbedCookielessSessionData.html#navigation_token\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookerEmbedCookielessSessionData\"},{\"id\":129,\"kind\":1024,\"name\":\"navigation_token_ttl\",\"url\":\"interfaces/LookerEmbedCookielessSessionData.html#navigation_token_ttl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookerEmbedCookielessSessionData\"},{\"id\":130,\"kind\":1024,\"name\":\"api_token\",\"url\":\"interfaces/LookerEmbedCookielessSessionData.html#api_token\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookerEmbedCookielessSessionData\"},{\"id\":131,\"kind\":1024,\"name\":\"api_token_ttl\",\"url\":\"interfaces/LookerEmbedCookielessSessionData.html#api_token_ttl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookerEmbedCookielessSessionData\"},{\"id\":132,\"kind\":1024,\"name\":\"session_reference_token_ttl\",\"url\":\"interfaces/LookerEmbedCookielessSessionData.html#session_reference_token_ttl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookerEmbedCookielessSessionData\"},{\"id\":133,\"kind\":256,\"name\":\"LookerEmbedFilterParams\",\"url\":\"interfaces/LookerEmbedFilterParams.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":134,\"kind\":256,\"name\":\"DashboardLayout\",\"url\":\"interfaces/DashboardLayout.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":135,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/DashboardLayout.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayout\"},{\"id\":136,\"kind\":1024,\"name\":\"dashboard_id\",\"url\":\"interfaces/DashboardLayout.html#dashboard_id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayout\"},{\"id\":137,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/DashboardLayout.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayout\"},{\"id\":138,\"kind\":1024,\"name\":\"active\",\"url\":\"interfaces/DashboardLayout.html#active\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayout\"},{\"id\":139,\"kind\":1024,\"name\":\"column_width\",\"url\":\"interfaces/DashboardLayout.html#column_width\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayout\"},{\"id\":140,\"kind\":1024,\"name\":\"width\",\"url\":\"interfaces/DashboardLayout.html#width\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayout\"},{\"id\":141,\"kind\":1024,\"name\":\"deleted\",\"url\":\"interfaces/DashboardLayout.html#deleted\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayout\"},{\"id\":142,\"kind\":1024,\"name\":\"dashboard_layout_components\",\"url\":\"interfaces/DashboardLayout.html#dashboard_layout_components\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayout\"},{\"id\":143,\"kind\":256,\"name\":\"DashboardLayoutComponent\",\"url\":\"interfaces/DashboardLayoutComponent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":144,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/DashboardLayoutComponent.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayoutComponent\"},{\"id\":145,\"kind\":1024,\"name\":\"dashboard_layout_id\",\"url\":\"interfaces/DashboardLayoutComponent.html#dashboard_layout_id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayoutComponent\"},{\"id\":146,\"kind\":1024,\"name\":\"dashboard_element_id\",\"url\":\"interfaces/DashboardLayoutComponent.html#dashboard_element_id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayoutComponent\"},{\"id\":147,\"kind\":1024,\"name\":\"row\",\"url\":\"interfaces/DashboardLayoutComponent.html#row\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayoutComponent\"},{\"id\":148,\"kind\":1024,\"name\":\"column\",\"url\":\"interfaces/DashboardLayoutComponent.html#column\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayoutComponent\"},{\"id\":149,\"kind\":1024,\"name\":\"width\",\"url\":\"interfaces/DashboardLayoutComponent.html#width\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayoutComponent\"},{\"id\":150,\"kind\":1024,\"name\":\"height\",\"url\":\"interfaces/DashboardLayoutComponent.html#height\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayoutComponent\"},{\"id\":151,\"kind\":1024,\"name\":\"deleted\",\"url\":\"interfaces/DashboardLayoutComponent.html#deleted\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardLayoutComponent\"},{\"id\":152,\"kind\":256,\"name\":\"VisConfig\",\"url\":\"interfaces/VisConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":153,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/VisConfig.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"VisConfig\"},{\"id\":154,\"kind\":256,\"name\":\"ElementOptionItems\",\"url\":\"interfaces/ElementOptionItems.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":155,\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/ElementOptionItems.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ElementOptionItems\"},{\"id\":156,\"kind\":1024,\"name\":\"title_hidden\",\"url\":\"interfaces/ElementOptionItems.html#title_hidden\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ElementOptionItems\"},{\"id\":157,\"kind\":1024,\"name\":\"vis_config\",\"url\":\"interfaces/ElementOptionItems.html#vis_config\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ElementOptionItems\"},{\"id\":158,\"kind\":256,\"name\":\"ElementOptions\",\"url\":\"interfaces/ElementOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":159,\"kind\":256,\"name\":\"LookerDashboardOptions\",\"url\":\"interfaces/LookerDashboardOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":160,\"kind\":1024,\"name\":\"elements\",\"url\":\"interfaces/LookerDashboardOptions.html#elements\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookerDashboardOptions\"},{\"id\":161,\"kind\":1024,\"name\":\"layouts\",\"url\":\"interfaces/LookerDashboardOptions.html#layouts\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookerDashboardOptions\"},{\"id\":162,\"kind\":256,\"name\":\"LookerEmbedEvent\",\"url\":\"interfaces/LookerEmbedEvent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":163,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/LookerEmbedEvent.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEvent\"},{\"id\":164,\"kind\":256,\"name\":\"EventDetail\",\"url\":\"interfaces/EventDetail.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":165,\"kind\":4194304,\"name\":\"SessionTokenRequest\",\"url\":\"modules.html#SessionTokenRequest\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":166,\"kind\":256,\"name\":\"SessionStatus\",\"url\":\"interfaces/SessionStatus.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":167,\"kind\":1024,\"name\":\"session_ttl\",\"url\":\"interfaces/SessionStatus.html#session_ttl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"SessionStatus\"},{\"id\":168,\"kind\":1024,\"name\":\"expired\",\"url\":\"interfaces/SessionStatus.html#expired\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"SessionStatus\"},{\"id\":169,\"kind\":1024,\"name\":\"interrupted\",\"url\":\"interfaces/SessionStatus.html#interrupted\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"SessionStatus\"},{\"id\":170,\"kind\":1024,\"name\":\"recoverable\",\"url\":\"interfaces/SessionStatus.html#recoverable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"SessionStatus\"},{\"id\":171,\"kind\":256,\"name\":\"DashboardEventDetail\",\"url\":\"interfaces/DashboardEventDetail.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":172,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/DashboardEventDetail.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardEventDetail\"},{\"id\":173,\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/DashboardEventDetail.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardEventDetail\"},{\"id\":174,\"kind\":1024,\"name\":\"canEdit\",\"url\":\"interfaces/DashboardEventDetail.html#canEdit\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardEventDetail\"},{\"id\":175,\"kind\":1024,\"name\":\"dashboard_filters\",\"url\":\"interfaces/DashboardEventDetail.html#dashboard_filters\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardEventDetail\"},{\"id\":176,\"kind\":1024,\"name\":\"absoluteUrl\",\"url\":\"interfaces/DashboardEventDetail.html#absoluteUrl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardEventDetail\"},{\"id\":177,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/DashboardEventDetail.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardEventDetail\"},{\"id\":178,\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/DashboardEventDetail.html#options\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardEventDetail\"},{\"id\":179,\"kind\":256,\"name\":\"DashboardTileEventDetail\",\"url\":\"interfaces/DashboardTileEventDetail.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":180,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/DashboardTileEventDetail.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardTileEventDetail\"},{\"id\":181,\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/DashboardTileEventDetail.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardTileEventDetail\"},{\"id\":182,\"kind\":1024,\"name\":\"listen\",\"url\":\"interfaces/DashboardTileEventDetail.html#listen\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardTileEventDetail\"},{\"id\":183,\"kind\":256,\"name\":\"TileStatus\",\"url\":\"interfaces/TileStatus.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":184,\"kind\":1024,\"name\":\"tileId\",\"url\":\"interfaces/TileStatus.html#tileId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TileStatus\"},{\"id\":185,\"kind\":1024,\"name\":\"status\",\"url\":\"interfaces/TileStatus.html#status\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TileStatus\"},{\"id\":186,\"kind\":1024,\"name\":\"errors\",\"url\":\"interfaces/TileStatus.html#errors\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TileStatus\"},{\"id\":187,\"kind\":256,\"name\":\"DashboardEvent\",\"url\":\"interfaces/DashboardEvent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":188,\"kind\":1024,\"name\":\"dashboard\",\"url\":\"interfaces/DashboardEvent.html#dashboard\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardEvent\"},{\"id\":189,\"kind\":1024,\"name\":\"status\",\"url\":\"interfaces/DashboardEvent.html#status\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardEvent\"},{\"id\":190,\"kind\":1024,\"name\":\"tileStatuses\",\"url\":\"interfaces/DashboardEvent.html#tileStatuses\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardEvent\"},{\"id\":191,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/DashboardEvent.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardEvent\"},{\"id\":192,\"kind\":256,\"name\":\"QueryError\",\"url\":\"interfaces/QueryError.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":193,\"kind\":1024,\"name\":\"message\",\"url\":\"interfaces/QueryError.html#message\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"QueryError\"},{\"id\":194,\"kind\":1024,\"name\":\"message_details\",\"url\":\"interfaces/QueryError.html#message_details\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"QueryError\"},{\"id\":195,\"kind\":1024,\"name\":\"params\",\"url\":\"interfaces/QueryError.html#params\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"QueryError\"},{\"id\":196,\"kind\":1024,\"name\":\"error_pos\",\"url\":\"interfaces/QueryError.html#error_pos\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"QueryError\"},{\"id\":197,\"kind\":1024,\"name\":\"level\",\"url\":\"interfaces/QueryError.html#level\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"QueryError\"},{\"id\":198,\"kind\":1024,\"name\":\"fatal\",\"url\":\"interfaces/QueryError.html#fatal\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"QueryError\"},{\"id\":199,\"kind\":1024,\"name\":\"sql_error_loc\",\"url\":\"interfaces/QueryError.html#sql_error_loc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"QueryError\"},{\"id\":200,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/QueryError.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"QueryError\"},{\"id\":201,\"kind\":256,\"name\":\"DashboardTileEvent\",\"url\":\"interfaces/DashboardTileEvent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":202,\"kind\":1024,\"name\":\"dashboard\",\"url\":\"interfaces/DashboardTileEvent.html#dashboard\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardTileEvent\"},{\"id\":203,\"kind\":1024,\"name\":\"tile\",\"url\":\"interfaces/DashboardTileEvent.html#tile\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardTileEvent\"},{\"id\":204,\"kind\":1024,\"name\":\"status\",\"url\":\"interfaces/DashboardTileEvent.html#status\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardTileEvent\"},{\"id\":205,\"kind\":1024,\"name\":\"truncated\",\"url\":\"interfaces/DashboardTileEvent.html#truncated\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardTileEvent\"},{\"id\":206,\"kind\":1024,\"name\":\"errors\",\"url\":\"interfaces/DashboardTileEvent.html#errors\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardTileEvent\"},{\"id\":207,\"kind\":256,\"name\":\"DashboardTileDownloadEvent\",\"url\":\"interfaces/DashboardTileDownloadEvent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":208,\"kind\":1024,\"name\":\"fileFormat\",\"url\":\"interfaces/DashboardTileDownloadEvent.html#fileFormat\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardTileDownloadEvent\"},{\"id\":209,\"kind\":1024,\"name\":\"dashboard\",\"url\":\"interfaces/DashboardTileDownloadEvent.html#dashboard\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileDownloadEvent\"},{\"id\":210,\"kind\":1024,\"name\":\"tile\",\"url\":\"interfaces/DashboardTileDownloadEvent.html#tile\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileDownloadEvent\"},{\"id\":211,\"kind\":1024,\"name\":\"status\",\"url\":\"interfaces/DashboardTileDownloadEvent.html#status\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileDownloadEvent\"},{\"id\":212,\"kind\":1024,\"name\":\"truncated\",\"url\":\"interfaces/DashboardTileDownloadEvent.html#truncated\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileDownloadEvent\"},{\"id\":213,\"kind\":1024,\"name\":\"errors\",\"url\":\"interfaces/DashboardTileDownloadEvent.html#errors\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileDownloadEvent\"},{\"id\":214,\"kind\":256,\"name\":\"DashboardTileExploreEvent\",\"url\":\"interfaces/DashboardTileExploreEvent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":215,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/DashboardTileExploreEvent.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardTileExploreEvent\"},{\"id\":216,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/DashboardTileExploreEvent.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardTileExploreEvent\"},{\"id\":217,\"kind\":1024,\"name\":\"dashboard\",\"url\":\"interfaces/DashboardTileExploreEvent.html#dashboard\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileExploreEvent\"},{\"id\":218,\"kind\":1024,\"name\":\"tile\",\"url\":\"interfaces/DashboardTileExploreEvent.html#tile\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileExploreEvent\"},{\"id\":219,\"kind\":1024,\"name\":\"status\",\"url\":\"interfaces/DashboardTileExploreEvent.html#status\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileExploreEvent\"},{\"id\":220,\"kind\":1024,\"name\":\"truncated\",\"url\":\"interfaces/DashboardTileExploreEvent.html#truncated\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileExploreEvent\"},{\"id\":221,\"kind\":1024,\"name\":\"errors\",\"url\":\"interfaces/DashboardTileExploreEvent.html#errors\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileExploreEvent\"},{\"id\":222,\"kind\":256,\"name\":\"DashboardTileViewEvent\",\"url\":\"interfaces/DashboardTileViewEvent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":223,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/DashboardTileViewEvent.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardTileViewEvent\"},{\"id\":224,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/DashboardTileViewEvent.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DashboardTileViewEvent\"},{\"id\":225,\"kind\":1024,\"name\":\"dashboard\",\"url\":\"interfaces/DashboardTileViewEvent.html#dashboard\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileViewEvent\"},{\"id\":226,\"kind\":1024,\"name\":\"tile\",\"url\":\"interfaces/DashboardTileViewEvent.html#tile\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileViewEvent\"},{\"id\":227,\"kind\":1024,\"name\":\"status\",\"url\":\"interfaces/DashboardTileViewEvent.html#status\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileViewEvent\"},{\"id\":228,\"kind\":1024,\"name\":\"truncated\",\"url\":\"interfaces/DashboardTileViewEvent.html#truncated\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileViewEvent\"},{\"id\":229,\"kind\":1024,\"name\":\"errors\",\"url\":\"interfaces/DashboardTileViewEvent.html#errors\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DashboardTileViewEvent\"},{\"id\":230,\"kind\":256,\"name\":\"AddFilterJson\",\"url\":\"interfaces/AddFilterJson.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":231,\"kind\":1024,\"name\":\"rendered\",\"url\":\"interfaces/AddFilterJson.html#rendered\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AddFilterJson\"},{\"id\":232,\"kind\":1024,\"name\":\"field\",\"url\":\"interfaces/AddFilterJson.html#field\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AddFilterJson\"},{\"id\":233,\"kind\":1024,\"name\":\"add\",\"url\":\"interfaces/AddFilterJson.html#add\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AddFilterJson\"},{\"id\":234,\"kind\":256,\"name\":\"DrillMenuEvent\",\"url\":\"interfaces/DrillMenuEvent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":235,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/DrillMenuEvent.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DrillMenuEvent\"},{\"id\":236,\"kind\":1024,\"name\":\"link_type\",\"url\":\"interfaces/DrillMenuEvent.html#link_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DrillMenuEvent\"},{\"id\":237,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/DrillMenuEvent.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DrillMenuEvent\"},{\"id\":238,\"kind\":1024,\"name\":\"modal\",\"url\":\"interfaces/DrillMenuEvent.html#modal\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DrillMenuEvent\"},{\"id\":239,\"kind\":1024,\"name\":\"context\",\"url\":\"interfaces/DrillMenuEvent.html#context\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DrillMenuEvent\"},{\"id\":240,\"kind\":1024,\"name\":\"addFilterJson\",\"url\":\"interfaces/DrillMenuEvent.html#addFilterJson\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DrillMenuEvent\"},{\"id\":241,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/DrillMenuEvent.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DrillMenuEvent\"},{\"id\":242,\"kind\":256,\"name\":\"DrillModalExploreEvent\",\"url\":\"interfaces/DrillModalExploreEvent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":243,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/DrillModalExploreEvent.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DrillModalExploreEvent\"},{\"id\":244,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/DrillModalExploreEvent.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DrillModalExploreEvent\"},{\"id\":245,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/DrillModalExploreEvent.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DrillModalExploreEvent\"},{\"id\":246,\"kind\":256,\"name\":\"LookEventDetail\",\"url\":\"interfaces/LookEventDetail.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":247,\"kind\":1024,\"name\":\"absoluteUrl\",\"url\":\"interfaces/LookEventDetail.html#absoluteUrl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookEventDetail\"},{\"id\":248,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/LookEventDetail.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookEventDetail\"},{\"id\":249,\"kind\":256,\"name\":\"LookEvent\",\"url\":\"interfaces/LookEvent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":250,\"kind\":1024,\"name\":\"look\",\"url\":\"interfaces/LookEvent.html#look\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookEvent\"},{\"id\":251,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/LookEvent.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"LookEvent\"},{\"id\":252,\"kind\":256,\"name\":\"LookSaveEventDetail\",\"url\":\"interfaces/LookSaveEventDetail.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":253,\"kind\":1024,\"name\":\"spaceId\",\"url\":\"interfaces/LookSaveEventDetail.html#spaceId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookSaveEventDetail\"},{\"id\":254,\"kind\":1024,\"name\":\"absoluteUrl\",\"url\":\"interfaces/LookSaveEventDetail.html#absoluteUrl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"LookSaveEventDetail\"},{\"id\":255,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/LookSaveEventDetail.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"LookSaveEventDetail\"},{\"id\":256,\"kind\":256,\"name\":\"LookSaveEvent\",\"url\":\"interfaces/LookSaveEvent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":257,\"kind\":1024,\"name\":\"look\",\"url\":\"interfaces/LookSaveEvent.html#look\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"LookSaveEvent\"},{\"id\":258,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/LookSaveEvent.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"LookSaveEvent\"},{\"id\":259,\"kind\":256,\"name\":\"ExploreEventDetail\",\"url\":\"interfaces/ExploreEventDetail.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":260,\"kind\":1024,\"name\":\"absoluteUrl\",\"url\":\"interfaces/ExploreEventDetail.html#absoluteUrl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ExploreEventDetail\"},{\"id\":261,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/ExploreEventDetail.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ExploreEventDetail\"},{\"id\":262,\"kind\":256,\"name\":\"ExploreEvent\",\"url\":\"interfaces/ExploreEvent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":263,\"kind\":1024,\"name\":\"explore\",\"url\":\"interfaces/ExploreEvent.html#explore\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ExploreEvent\"},{\"id\":264,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/ExploreEvent.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ExploreEvent\"},{\"id\":265,\"kind\":256,\"name\":\"PageChangedEventDetail\",\"url\":\"interfaces/PageChangedEventDetail.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":266,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/PageChangedEventDetail.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PageChangedEventDetail\"},{\"id\":267,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/PageChangedEventDetail.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PageChangedEventDetail\"},{\"id\":268,\"kind\":1024,\"name\":\"absoluteUrl\",\"url\":\"interfaces/PageChangedEventDetail.html#absoluteUrl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PageChangedEventDetail\"},{\"id\":269,\"kind\":256,\"name\":\"PageChangedEvent\",\"url\":\"interfaces/PageChangedEvent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":270,\"kind\":1024,\"name\":\"page\",\"url\":\"interfaces/PageChangedEvent.html#page\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PageChangedEvent\"},{\"id\":271,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/PageChangedEvent.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"PageChangedEvent\"},{\"id\":272,\"kind\":256,\"name\":\"PagePropertiesChangedEvent\",\"url\":\"interfaces/PagePropertiesChangedEvent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":273,\"kind\":1024,\"name\":\"height\",\"url\":\"interfaces/PagePropertiesChangedEvent.html#height\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PagePropertiesChangedEvent\"},{\"id\":274,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/PagePropertiesChangedEvent.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"PagePropertiesChangedEvent\"},{\"id\":275,\"kind\":256,\"name\":\"CancellableEventResponse\",\"url\":\"interfaces/CancellableEventResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":276,\"kind\":1024,\"name\":\"cancel\",\"url\":\"interfaces/CancellableEventResponse.html#cancel\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"CancellableEventResponse\"},{\"id\":277,\"kind\":256,\"name\":\"EnvHostScrollEvent\",\"url\":\"interfaces/EnvHostScrollEvent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":278,\"kind\":1024,\"name\":\"scrollY\",\"url\":\"interfaces/EnvHostScrollEvent.html#scrollY\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"EnvHostScrollEvent\"},{\"id\":279,\"kind\":1024,\"name\":\"screenX\",\"url\":\"interfaces/EnvHostScrollEvent.html#screenX\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"EnvHostScrollEvent\"},{\"id\":280,\"kind\":1024,\"name\":\"offsetTop\",\"url\":\"interfaces/EnvHostScrollEvent.html#offsetTop\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"EnvHostScrollEvent\"},{\"id\":281,\"kind\":1024,\"name\":\"offsetLeft\",\"url\":\"interfaces/EnvHostScrollEvent.html#offsetLeft\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"EnvHostScrollEvent\"},{\"id\":282,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/EnvHostScrollEvent.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"EnvHostScrollEvent\"},{\"id\":283,\"kind\":256,\"name\":\"EnvClientDialogEvent\",\"url\":\"interfaces/EnvClientDialogEvent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":284,\"kind\":1024,\"name\":\"open\",\"url\":\"interfaces/EnvClientDialogEvent.html#open\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"EnvClientDialogEvent\"},{\"id\":285,\"kind\":1024,\"name\":\"placement\",\"url\":\"interfaces/EnvClientDialogEvent.html#placement\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"EnvClientDialogEvent\"},{\"id\":286,\"kind\":1024,\"name\":\"dialogType\",\"url\":\"interfaces/EnvClientDialogEvent.html#dialogType\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"EnvClientDialogEvent\"},{\"id\":287,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/EnvClientDialogEvent.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"EnvClientDialogEvent\"},{\"id\":288,\"kind\":256,\"name\":\"LookerEmbedEventMap\",\"url\":\"interfaces/LookerEmbedEventMap.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":289,\"kind\":2048,\"name\":\"dashboard:run:start\",\"url\":\"interfaces/LookerEmbedEventMap.html#dashboard_run_start\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":290,\"kind\":2048,\"name\":\"dashboard:run:complete\",\"url\":\"interfaces/LookerEmbedEventMap.html#dashboard_run_complete\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":291,\"kind\":2048,\"name\":\"dashboard:filters:changed\",\"url\":\"interfaces/LookerEmbedEventMap.html#dashboard_filters_changed\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":292,\"kind\":2048,\"name\":\"dashboard:edit:start\",\"url\":\"interfaces/LookerEmbedEventMap.html#dashboard_edit_start\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":293,\"kind\":2048,\"name\":\"dashboard:edit:cancel\",\"url\":\"interfaces/LookerEmbedEventMap.html#dashboard_edit_cancel\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":294,\"kind\":2048,\"name\":\"dashboard:save:complete\",\"url\":\"interfaces/LookerEmbedEventMap.html#dashboard_save_complete\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":295,\"kind\":2048,\"name\":\"dashboard:delete:complete\",\"url\":\"interfaces/LookerEmbedEventMap.html#dashboard_delete_complete\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":296,\"kind\":2048,\"name\":\"dashboard:tile:start\",\"url\":\"interfaces/LookerEmbedEventMap.html#dashboard_tile_start\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":297,\"kind\":2048,\"name\":\"dashboard:tile:complete\",\"url\":\"interfaces/LookerEmbedEventMap.html#dashboard_tile_complete\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":298,\"kind\":2048,\"name\":\"dashboard:tile:download\",\"url\":\"interfaces/LookerEmbedEventMap.html#dashboard_tile_download\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":299,\"kind\":2048,\"name\":\"dashboard:tile:explore\",\"url\":\"interfaces/LookerEmbedEventMap.html#dashboard_tile_explore\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":300,\"kind\":2048,\"name\":\"dashboard:tile:view\",\"url\":\"interfaces/LookerEmbedEventMap.html#dashboard_tile_view\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":301,\"kind\":2048,\"name\":\"drillmenu:click\",\"url\":\"interfaces/LookerEmbedEventMap.html#drillmenu_click\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":302,\"kind\":2048,\"name\":\"drillmodal:explore\",\"url\":\"interfaces/LookerEmbedEventMap.html#drillmodal_explore\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":303,\"kind\":2048,\"name\":\"explore:run:start\",\"url\":\"interfaces/LookerEmbedEventMap.html#explore_run_start\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":304,\"kind\":2048,\"name\":\"explore:run:complete\",\"url\":\"interfaces/LookerEmbedEventMap.html#explore_run_complete\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":305,\"kind\":2048,\"name\":\"explore:ready\",\"url\":\"interfaces/LookerEmbedEventMap.html#explore_ready\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":306,\"kind\":2048,\"name\":\"explore:state:changed\",\"url\":\"interfaces/LookerEmbedEventMap.html#explore_state_changed\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":307,\"kind\":2048,\"name\":\"look:run:start\",\"url\":\"interfaces/LookerEmbedEventMap.html#look_run_start\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":308,\"kind\":2048,\"name\":\"look:run:complete\",\"url\":\"interfaces/LookerEmbedEventMap.html#look_run_complete\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":309,\"kind\":2048,\"name\":\"look:save:complete\",\"url\":\"interfaces/LookerEmbedEventMap.html#look_save_complete\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":310,\"kind\":2048,\"name\":\"look:delete:complete\",\"url\":\"interfaces/LookerEmbedEventMap.html#look_delete_complete\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":311,\"kind\":2048,\"name\":\"look:ready\",\"url\":\"interfaces/LookerEmbedEventMap.html#look_ready\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":312,\"kind\":2048,\"name\":\"look:state:changed\",\"url\":\"interfaces/LookerEmbedEventMap.html#look_state_changed\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":313,\"kind\":2048,\"name\":\"page:changed\",\"url\":\"interfaces/LookerEmbedEventMap.html#page_changed\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":314,\"kind\":2048,\"name\":\"page:properties:changed\",\"url\":\"interfaces/LookerEmbedEventMap.html#page_properties_changed\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":315,\"kind\":2048,\"name\":\"session:token:request\",\"url\":\"interfaces/LookerEmbedEventMap.html#session_token_request\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":316,\"kind\":2048,\"name\":\"session:status\",\"url\":\"interfaces/LookerEmbedEventMap.html#session_status\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"},{\"id\":317,\"kind\":2048,\"name\":\"env:client:dialog\",\"url\":\"interfaces/LookerEmbedEventMap.html#env_client_dialog\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"LookerEmbedEventMap\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"parent\"],\"fieldVectors\":[[\"name/0\",[0,32.395]],[\"parent/0\",[]],[\"name/1\",[1,53.597]],[\"parent/1\",[0,3.015]],[\"name/2\",[2,53.597]],[\"parent/2\",[0,3.015]],[\"name/3\",[3,53.597]],[\"parent/3\",[0,3.015]],[\"name/4\",[4,53.597]],[\"parent/4\",[0,3.015]],[\"name/5\",[5,53.597]],[\"parent/5\",[0,3.015]],[\"name/6\",[6,53.597]],[\"parent/6\",[0,3.015]],[\"name/7\",[7,53.597]],[\"parent/7\",[0,3.015]],[\"name/8\",[8,53.597]],[\"parent/8\",[0,3.015]],[\"name/9\",[9,53.597]],[\"parent/9\",[0,3.015]],[\"name/10\",[10,53.597]],[\"parent/10\",[0,3.015]],[\"name/11\",[11,53.597]],[\"parent/11\",[0,3.015]],[\"name/12\",[12,34.138]],[\"parent/12\",[]],[\"name/13\",[13,45.124]],[\"parent/13\",[12,3.177]],[\"name/14\",[14,53.597]],[\"parent/14\",[12,3.177]],[\"name/15\",[15,53.597]],[\"parent/15\",[12,3.177]],[\"name/16\",[16,45.124]],[\"parent/16\",[12,3.177]],[\"name/17\",[17,53.597]],[\"parent/17\",[12,3.177]],[\"name/18\",[18,53.597]],[\"parent/18\",[12,3.177]],[\"name/19\",[19,53.597]],[\"parent/19\",[12,3.177]],[\"name/20\",[20,40.604]],[\"parent/20\",[12,3.177]],[\"name/21\",[21,40.604]],[\"parent/21\",[12,3.177]],[\"name/22\",[22,40.604]],[\"parent/22\",[]],[\"name/23\",[13,45.124]],[\"parent/23\",[22,3.779]],[\"name/24\",[16,45.124]],[\"parent/24\",[22,3.779]],[\"name/25\",[20,40.604]],[\"parent/25\",[22,3.779]],[\"name/26\",[21,40.604]],[\"parent/26\",[22,3.779]],[\"name/27\",[23,45.124]],[\"parent/27\",[]],[\"name/28\",[20,40.604]],[\"parent/28\",[23,4.199]],[\"name/29\",[21,40.604]],[\"parent/29\",[23,4.199]],[\"name/30\",[24,40.604]],[\"parent/30\",[]],[\"name/31\",[13,45.124]],[\"parent/31\",[24,3.779]],[\"name/32\",[16,45.124]],[\"parent/32\",[24,3.779]],[\"name/33\",[20,40.604]],[\"parent/33\",[24,3.779]],[\"name/34\",[21,40.604]],[\"parent/34\",[24,3.779]],[\"name/35\",[25,45.124]],[\"parent/35\",[]],[\"name/36\",[20,40.604]],[\"parent/36\",[25,4.199]],[\"name/37\",[21,40.604]],[\"parent/37\",[25,4.199]],[\"name/38\",[26,18.236]],[\"parent/38\",[]],[\"name/39\",[27,53.597]],[\"parent/39\",[26,1.697]],[\"name/40\",[28,53.597]],[\"parent/40\",[26,1.697]],[\"name/41\",[29,53.597]],[\"parent/41\",[26,1.697]],[\"name/42\",[30,53.597]],[\"parent/42\",[26,1.697]],[\"name/43\",[31,53.597]],[\"parent/43\",[26,1.697]],[\"name/44\",[32,53.597]],[\"parent/44\",[26,1.697]],[\"name/45\",[33,53.597]],[\"parent/45\",[26,1.697]],[\"name/46\",[34,53.597]],[\"parent/46\",[26,1.697]],[\"name/47\",[35,53.597]],[\"parent/47\",[26,1.697]],[\"name/48\",[36,53.597]],[\"parent/48\",[26,1.697]],[\"name/49\",[37,53.597]],[\"parent/49\",[26,1.697]],[\"name/50\",[38,53.597]],[\"parent/50\",[26,1.697]],[\"name/51\",[39,53.597]],[\"parent/51\",[26,1.697]],[\"name/52\",[40,53.597]],[\"parent/52\",[26,1.697]],[\"name/53\",[41,53.597]],[\"parent/53\",[26,1.697]],[\"name/54\",[42,53.597]],[\"parent/54\",[26,1.697]],[\"name/55\",[43,53.597]],[\"parent/55\",[26,1.697]],[\"name/56\",[44,53.597]],[\"parent/56\",[26,1.697]],[\"name/57\",[45,53.597]],[\"parent/57\",[26,1.697]],[\"name/58\",[46,53.597]],[\"parent/58\",[26,1.697]],[\"name/59\",[47,53.597]],[\"parent/59\",[26,1.697]],[\"name/60\",[48,53.597]],[\"parent/60\",[26,1.697]],[\"name/61\",[49,53.597]],[\"parent/61\",[26,1.697]],[\"name/62\",[50,53.597]],[\"parent/62\",[26,1.697]],[\"name/63\",[51,53.597]],[\"parent/63\",[26,1.697]],[\"name/64\",[52,53.597]],[\"parent/64\",[26,1.697]],[\"name/65\",[53,53.597]],[\"parent/65\",[26,1.697]],[\"name/66\",[54,53.597]],[\"parent/66\",[26,1.697]],[\"name/67\",[55,53.597]],[\"parent/67\",[26,1.697]],[\"name/68\",[56,53.597]],[\"parent/68\",[26,1.697]],[\"name/69\",[57,53.597]],[\"parent/69\",[26,1.697]],[\"name/70\",[58,30.244]],[\"parent/70\",[26,1.697]],[\"name/71\",[59,53.597]],[\"parent/71\",[26,1.697]],[\"name/72\",[60,53.597]],[\"parent/72\",[26,1.697]],[\"name/73\",[61,48.489]],[\"parent/73\",[26,1.697]],[\"name/74\",[62,48.489]],[\"parent/74\",[26,1.697]],[\"name/75\",[63,32.395]],[\"parent/75\",[26,1.697]],[\"name/76\",[64,53.597]],[\"parent/76\",[26,1.697]],[\"name/77\",[65,53.597]],[\"parent/77\",[26,1.697]],[\"name/78\",[66,53.597]],[\"parent/78\",[26,1.697]],[\"name/79\",[67,53.597]],[\"parent/79\",[26,1.697]],[\"name/80\",[68,53.597]],[\"parent/80\",[26,1.697]],[\"name/81\",[69,53.597]],[\"parent/81\",[26,1.697]],[\"name/82\",[70,40.604]],[\"parent/82\",[26,1.697]],[\"name/83\",[71,53.597]],[\"parent/83\",[26,1.697]],[\"name/84\",[72,53.597]],[\"parent/84\",[26,1.697]],[\"name/85\",[73,53.597]],[\"parent/85\",[26,1.697]],[\"name/86\",[74,53.597]],[\"parent/86\",[26,1.697]],[\"name/87\",[75,53.597]],[\"parent/87\",[26,1.697]],[\"name/88\",[76,53.597]],[\"parent/88\",[26,1.697]],[\"name/89\",[77,53.597]],[\"parent/89\",[]],[\"name/90\",[78,24.88]],[\"parent/90\",[]],[\"name/91\",[79,53.597]],[\"parent/91\",[78,2.315]],[\"name/92\",[80,53.597]],[\"parent/92\",[78,2.315]],[\"name/93\",[81,53.597]],[\"parent/93\",[78,2.315]],[\"name/94\",[82,53.597]],[\"parent/94\",[78,2.315]],[\"name/95\",[83,53.597]],[\"parent/95\",[78,2.315]],[\"name/96\",[84,53.597]],[\"parent/96\",[78,2.315]],[\"name/97\",[85,53.597]],[\"parent/97\",[78,2.315]],[\"name/98\",[86,53.597]],[\"parent/98\",[78,2.315]],[\"name/99\",[87,53.597]],[\"parent/99\",[78,2.315]],[\"name/100\",[88,53.597]],[\"parent/100\",[78,2.315]],[\"name/101\",[89,53.597]],[\"parent/101\",[78,2.315]],[\"name/102\",[90,53.597]],[\"parent/102\",[78,2.315]],[\"name/103\",[91,53.597]],[\"parent/103\",[78,2.315]],[\"name/104\",[92,53.597]],[\"parent/104\",[78,2.315]],[\"name/105\",[93,53.597]],[\"parent/105\",[78,2.315]],[\"name/106\",[94,53.597]],[\"parent/106\",[78,2.315]],[\"name/107\",[95,53.597]],[\"parent/107\",[78,2.315]],[\"name/108\",[96,53.597]],[\"parent/108\",[78,2.315]],[\"name/109\",[97,53.597]],[\"parent/109\",[78,2.315]],[\"name/110\",[98,53.597]],[\"parent/110\",[78,2.315]],[\"name/111\",[99,53.597]],[\"parent/111\",[78,2.315]],[\"name/112\",[61,48.489]],[\"parent/112\",[78,2.315]],[\"name/113\",[62,48.489]],[\"parent/113\",[78,2.315]],[\"name/114\",[100,53.597]],[\"parent/114\",[78,2.315]],[\"name/115\",[101,53.597]],[\"parent/115\",[78,2.315]],[\"name/116\",[102,40.604]],[\"parent/116\",[]],[\"name/117\",[63,32.395]],[\"parent/117\",[102,3.779]],[\"name/118\",[103,53.597]],[\"parent/118\",[102,3.779]],[\"name/119\",[104,48.489]],[\"parent/119\",[102,3.779]],[\"name/120\",[105,53.597]],[\"parent/120\",[102,3.779]],[\"name/121\",[106,48.489]],[\"parent/121\",[]],[\"name/122\",[63,32.395]],[\"parent/122\",[106,4.513]],[\"name/123\",[107,48.489]],[\"parent/123\",[]],[\"name/124\",[108,48.489]],[\"parent/124\",[107,4.513]],[\"name/125\",[109,36.251]],[\"parent/125\",[]],[\"name/126\",[110,53.597]],[\"parent/126\",[109,3.374]],[\"name/127\",[111,53.597]],[\"parent/127\",[109,3.374]],[\"name/128\",[112,53.597]],[\"parent/128\",[109,3.374]],[\"name/129\",[113,53.597]],[\"parent/129\",[109,3.374]],[\"name/130\",[114,53.597]],[\"parent/130\",[109,3.374]],[\"name/131\",[115,53.597]],[\"parent/131\",[109,3.374]],[\"name/132\",[116,53.597]],[\"parent/132\",[109,3.374]],[\"name/133\",[117,53.597]],[\"parent/133\",[]],[\"name/134\",[118,35.139]],[\"parent/134\",[]],[\"name/135\",[70,40.604]],[\"parent/135\",[118,3.27]],[\"name/136\",[119,53.597]],[\"parent/136\",[118,3.27]],[\"name/137\",[58,30.244]],[\"parent/137\",[118,3.27]],[\"name/138\",[120,53.597]],[\"parent/138\",[118,3.27]],[\"name/139\",[121,53.597]],[\"parent/139\",[118,3.27]],[\"name/140\",[122,48.489]],[\"parent/140\",[118,3.27]],[\"name/141\",[123,48.489]],[\"parent/141\",[118,3.27]],[\"name/142\",[124,53.597]],[\"parent/142\",[118,3.27]],[\"name/143\",[125,35.139]],[\"parent/143\",[]],[\"name/144\",[70,40.604]],[\"parent/144\",[125,3.27]],[\"name/145\",[126,53.597]],[\"parent/145\",[125,3.27]],[\"name/146\",[127,53.597]],[\"parent/146\",[125,3.27]],[\"name/147\",[128,53.597]],[\"parent/147\",[125,3.27]],[\"name/148\",[129,53.597]],[\"parent/148\",[125,3.27]],[\"name/149\",[122,48.489]],[\"parent/149\",[125,3.27]],[\"name/150\",[130,48.489]],[\"parent/150\",[125,3.27]],[\"name/151\",[123,48.489]],[\"parent/151\",[125,3.27]],[\"name/152\",[131,48.489]],[\"parent/152\",[]],[\"name/153\",[58,30.244]],[\"parent/153\",[131,4.513]],[\"name/154\",[132,42.611]],[\"parent/154\",[]],[\"name/155\",[133,45.124]],[\"parent/155\",[132,3.966]],[\"name/156\",[134,53.597]],[\"parent/156\",[132,3.966]],[\"name/157\",[135,53.597]],[\"parent/157\",[132,3.966]],[\"name/158\",[136,53.597]],[\"parent/158\",[]],[\"name/159\",[137,45.124]],[\"parent/159\",[]],[\"name/160\",[138,53.597]],[\"parent/160\",[137,4.199]],[\"name/161\",[139,53.597]],[\"parent/161\",[137,4.199]],[\"name/162\",[140,48.489]],[\"parent/162\",[]],[\"name/163\",[58,30.244]],[\"parent/163\",[140,4.513]],[\"name/164\",[141,53.597]],[\"parent/164\",[]],[\"name/165\",[142,53.597]],[\"parent/165\",[]],[\"name/166\",[143,40.604]],[\"parent/166\",[]],[\"name/167\",[144,53.597]],[\"parent/167\",[143,3.779]],[\"name/168\",[145,53.597]],[\"parent/168\",[143,3.779]],[\"name/169\",[146,53.597]],[\"parent/169\",[143,3.779]],[\"name/170\",[147,53.597]],[\"parent/170\",[143,3.779]],[\"name/171\",[148,36.251]],[\"parent/171\",[]],[\"name/172\",[70,40.604]],[\"parent/172\",[148,3.374]],[\"name/173\",[133,45.124]],[\"parent/173\",[148,3.374]],[\"name/174\",[149,53.597]],[\"parent/174\",[148,3.374]],[\"name/175\",[150,53.597]],[\"parent/175\",[148,3.374]],[\"name/176\",[151,40.604]],[\"parent/176\",[148,3.374]],[\"name/177\",[63,32.395]],[\"parent/177\",[148,3.374]],[\"name/178\",[152,53.597]],[\"parent/178\",[148,3.374]],[\"name/179\",[153,42.611]],[\"parent/179\",[]],[\"name/180\",[70,40.604]],[\"parent/180\",[153,3.966]],[\"name/181\",[133,45.124]],[\"parent/181\",[153,3.966]],[\"name/182\",[154,53.597]],[\"parent/182\",[153,3.966]],[\"name/183\",[155,42.611]],[\"parent/183\",[]],[\"name/184\",[156,53.597]],[\"parent/184\",[155,3.966]],[\"name/185\",[157,38.934]],[\"parent/185\",[155,3.966]],[\"name/186\",[158,40.604]],[\"parent/186\",[155,3.966]],[\"name/187\",[159,40.604]],[\"parent/187\",[]],[\"name/188\",[160,40.604]],[\"parent/188\",[159,3.779]],[\"name/189\",[157,38.934]],[\"parent/189\",[159,3.779]],[\"name/190\",[161,53.597]],[\"parent/190\",[159,3.779]],[\"name/191\",[58,30.244]],[\"parent/191\",[159,3.779]],[\"name/192\",[162,35.139]],[\"parent/192\",[]],[\"name/193\",[163,53.597]],[\"parent/193\",[162,3.27]],[\"name/194\",[164,53.597]],[\"parent/194\",[162,3.27]],[\"name/195\",[104,48.489]],[\"parent/195\",[162,3.27]],[\"name/196\",[165,53.597]],[\"parent/196\",[162,3.27]],[\"name/197\",[166,53.597]],[\"parent/197\",[162,3.27]],[\"name/198\",[167,53.597]],[\"parent/198\",[162,3.27]],[\"name/199\",[168,53.597]],[\"parent/199\",[162,3.27]],[\"name/200\",[108,48.489]],[\"parent/200\",[162,3.27]],[\"name/201\",[169,38.934]],[\"parent/201\",[]],[\"name/202\",[160,40.604]],[\"parent/202\",[169,3.623]],[\"name/203\",[170,42.611]],[\"parent/203\",[169,3.623]],[\"name/204\",[157,38.934]],[\"parent/204\",[169,3.623]],[\"name/205\",[171,42.611]],[\"parent/205\",[169,3.623]],[\"name/206\",[158,40.604]],[\"parent/206\",[169,3.623]],[\"name/207\",[172,37.503]],[\"parent/207\",[]],[\"name/208\",[173,53.597]],[\"parent/208\",[172,3.49]],[\"name/209\",[160,40.604]],[\"parent/209\",[172,3.49]],[\"name/210\",[170,42.611]],[\"parent/210\",[172,3.49]],[\"name/211\",[157,38.934]],[\"parent/211\",[172,3.49]],[\"name/212\",[171,42.611]],[\"parent/212\",[172,3.49]],[\"name/213\",[158,40.604]],[\"parent/213\",[172,3.49]],[\"name/214\",[174,36.251]],[\"parent/214\",[]],[\"name/215\",[175,42.611]],[\"parent/215\",[174,3.374]],[\"name/216\",[63,32.395]],[\"parent/216\",[174,3.374]],[\"name/217\",[160,40.604]],[\"parent/217\",[174,3.374]],[\"name/218\",[170,42.611]],[\"parent/218\",[174,3.374]],[\"name/219\",[157,38.934]],[\"parent/219\",[174,3.374]],[\"name/220\",[171,42.611]],[\"parent/220\",[174,3.374]],[\"name/221\",[158,40.604]],[\"parent/221\",[174,3.374]],[\"name/222\",[176,36.251]],[\"parent/222\",[]],[\"name/223\",[175,42.611]],[\"parent/223\",[176,3.374]],[\"name/224\",[63,32.395]],[\"parent/224\",[176,3.374]],[\"name/225\",[160,40.604]],[\"parent/225\",[176,3.374]],[\"name/226\",[170,42.611]],[\"parent/226\",[176,3.374]],[\"name/227\",[157,38.934]],[\"parent/227\",[176,3.374]],[\"name/228\",[171,42.611]],[\"parent/228\",[176,3.374]],[\"name/229\",[158,40.604]],[\"parent/229\",[176,3.374]],[\"name/230\",[177,40.604]],[\"parent/230\",[]],[\"name/231\",[178,53.597]],[\"parent/231\",[177,3.779]],[\"name/232\",[179,53.597]],[\"parent/232\",[177,3.779]],[\"name/233\",[180,53.597]],[\"parent/233\",[177,3.779]],[\"name/234\",[181,36.251]],[\"parent/234\",[]],[\"name/235\",[175,42.611]],[\"parent/235\",[181,3.374]],[\"name/236\",[182,53.597]],[\"parent/236\",[181,3.374]],[\"name/237\",[63,32.395]],[\"parent/237\",[181,3.374]],[\"name/238\",[183,53.597]],[\"parent/238\",[181,3.374]],[\"name/239\",[184,53.597]],[\"parent/239\",[181,3.374]],[\"name/240\",[177,40.604]],[\"parent/240\",[181,3.374]],[\"name/241\",[58,30.244]],[\"parent/241\",[181,3.374]],[\"name/242\",[185,42.611]],[\"parent/242\",[]],[\"name/243\",[175,42.611]],[\"parent/243\",[185,3.966]],[\"name/244\",[63,32.395]],[\"parent/244\",[185,3.966]],[\"name/245\",[58,30.244]],[\"parent/245\",[185,3.966]],[\"name/246\",[186,45.124]],[\"parent/246\",[]],[\"name/247\",[151,40.604]],[\"parent/247\",[186,4.199]],[\"name/248\",[63,32.395]],[\"parent/248\",[186,4.199]],[\"name/249\",[187,45.124]],[\"parent/249\",[]],[\"name/250\",[188,48.489]],[\"parent/250\",[187,4.199]],[\"name/251\",[58,30.244]],[\"parent/251\",[187,4.199]],[\"name/252\",[189,42.611]],[\"parent/252\",[]],[\"name/253\",[190,53.597]],[\"parent/253\",[189,3.966]],[\"name/254\",[151,40.604]],[\"parent/254\",[189,3.966]],[\"name/255\",[63,32.395]],[\"parent/255\",[189,3.966]],[\"name/256\",[191,45.124]],[\"parent/256\",[]],[\"name/257\",[188,48.489]],[\"parent/257\",[191,4.199]],[\"name/258\",[58,30.244]],[\"parent/258\",[191,4.199]],[\"name/259\",[192,45.124]],[\"parent/259\",[]],[\"name/260\",[151,40.604]],[\"parent/260\",[192,4.199]],[\"name/261\",[63,32.395]],[\"parent/261\",[192,4.199]],[\"name/262\",[193,45.124]],[\"parent/262\",[]],[\"name/263\",[194,53.597]],[\"parent/263\",[193,4.199]],[\"name/264\",[58,30.244]],[\"parent/264\",[193,4.199]],[\"name/265\",[195,42.611]],[\"parent/265\",[]],[\"name/266\",[58,30.244]],[\"parent/266\",[195,3.966]],[\"name/267\",[63,32.395]],[\"parent/267\",[195,3.966]],[\"name/268\",[151,40.604]],[\"parent/268\",[195,3.966]],[\"name/269\",[196,45.124]],[\"parent/269\",[]],[\"name/270\",[197,53.597]],[\"parent/270\",[196,4.199]],[\"name/271\",[58,30.244]],[\"parent/271\",[196,4.199]],[\"name/272\",[198,45.124]],[\"parent/272\",[]],[\"name/273\",[130,48.489]],[\"parent/273\",[198,4.199]],[\"name/274\",[58,30.244]],[\"parent/274\",[198,4.199]],[\"name/275\",[199,48.489]],[\"parent/275\",[]],[\"name/276\",[200,53.597]],[\"parent/276\",[199,4.513]],[\"name/277\",[201,38.934]],[\"parent/277\",[]],[\"name/278\",[202,53.597]],[\"parent/278\",[201,3.623]],[\"name/279\",[203,53.597]],[\"parent/279\",[201,3.623]],[\"name/280\",[204,53.597]],[\"parent/280\",[201,3.623]],[\"name/281\",[205,53.597]],[\"parent/281\",[201,3.623]],[\"name/282\",[58,30.244]],[\"parent/282\",[201,3.623]],[\"name/283\",[206,40.604]],[\"parent/283\",[]],[\"name/284\",[207,53.597]],[\"parent/284\",[206,3.779]],[\"name/285\",[208,53.597]],[\"parent/285\",[206,3.779]],[\"name/286\",[209,53.597]],[\"parent/286\",[206,3.779]],[\"name/287\",[58,30.244]],[\"parent/287\",[206,3.779]],[\"name/288\",[210,23.475]],[\"parent/288\",[]],[\"name/289\",[211,53.597]],[\"parent/289\",[210,2.185]],[\"name/290\",[212,53.597]],[\"parent/290\",[210,2.185]],[\"name/291\",[213,53.597]],[\"parent/291\",[210,2.185]],[\"name/292\",[214,53.597]],[\"parent/292\",[210,2.185]],[\"name/293\",[215,53.597]],[\"parent/293\",[210,2.185]],[\"name/294\",[216,53.597]],[\"parent/294\",[210,2.185]],[\"name/295\",[217,53.597]],[\"parent/295\",[210,2.185]],[\"name/296\",[218,53.597]],[\"parent/296\",[210,2.185]],[\"name/297\",[219,53.597]],[\"parent/297\",[210,2.185]],[\"name/298\",[220,53.597]],[\"parent/298\",[210,2.185]],[\"name/299\",[221,53.597]],[\"parent/299\",[210,2.185]],[\"name/300\",[222,53.597]],[\"parent/300\",[210,2.185]],[\"name/301\",[223,53.597]],[\"parent/301\",[210,2.185]],[\"name/302\",[224,53.597]],[\"parent/302\",[210,2.185]],[\"name/303\",[225,53.597]],[\"parent/303\",[210,2.185]],[\"name/304\",[226,53.597]],[\"parent/304\",[210,2.185]],[\"name/305\",[227,53.597]],[\"parent/305\",[210,2.185]],[\"name/306\",[228,53.597]],[\"parent/306\",[210,2.185]],[\"name/307\",[229,53.597]],[\"parent/307\",[210,2.185]],[\"name/308\",[230,53.597]],[\"parent/308\",[210,2.185]],[\"name/309\",[231,53.597]],[\"parent/309\",[210,2.185]],[\"name/310\",[232,53.597]],[\"parent/310\",[210,2.185]],[\"name/311\",[233,53.597]],[\"parent/311\",[210,2.185]],[\"name/312\",[234,53.597]],[\"parent/312\",[210,2.185]],[\"name/313\",[235,53.597]],[\"parent/313\",[210,2.185]],[\"name/314\",[236,53.597]],[\"parent/314\",[210,2.185]],[\"name/315\",[237,53.597]],[\"parent/315\",[210,2.185]],[\"name/316\",[238,53.597]],[\"parent/316\",[210,2.185]],[\"name/317\",[239,53.597]],[\"parent/317\",[210,2.185]]],\"invertedIndex\":[[\"__type\",{\"_index\":108,\"name\":{\"124\":{},\"200\":{}},\"parent\":{}}],[\"_allowattrs\",{\"_index\":30,\"name\":{\"42\":{}},\"parent\":{}}],[\"_appendto\",{\"_index\":28,\"name\":{\"40\":{}},\"parent\":{}}],[\"_classnames\",{\"_index\":31,\"name\":{\"43\":{}},\"parent\":{}}],[\"_client\",{\"_index\":84,\"name\":{\"96\":{}},\"parent\":{}}],[\"_connection\",{\"_index\":83,\"name\":{\"95\":{}},\"parent\":{}}],[\"_cookielessapitoken\",{\"_index\":86,\"name\":{\"98\":{}},\"parent\":{}}],[\"_cookielessapitokenttl\",{\"_index\":87,\"name\":{\"99\":{}},\"parent\":{}}],[\"_cookielessinitialized\",{\"_index\":85,\"name\":{\"97\":{}},\"parent\":{}}],[\"_cookielessnavigationtoken\",{\"_index\":88,\"name\":{\"100\":{}},\"parent\":{}}],[\"_cookielessnavigationtokenttl\",{\"_index\":89,\"name\":{\"101\":{}},\"parent\":{}}],[\"_cookielesssessionreferencetokenttl\",{\"_index\":90,\"name\":{\"102\":{}},\"parent\":{}}],[\"_dialogscroll\",{\"_index\":40,\"name\":{\"52\":{}},\"parent\":{}}],[\"_dynamiciframeheight\",{\"_index\":39,\"name\":{\"51\":{}},\"parent\":{}}],[\"_frameborder\",{\"_index\":32,\"name\":{\"44\":{}},\"parent\":{}}],[\"_handlers\",{\"_index\":27,\"name\":{\"39\":{}},\"parent\":{}}],[\"_host\",{\"_index\":82,\"name\":{\"94\":{}},\"parent\":{}}],[\"_hostbuilder\",{\"_index\":81,\"name\":{\"93\":{}},\"parent\":{}}],[\"_id\",{\"_index\":33,\"name\":{\"45\":{}},\"parent\":{}}],[\"_params\",{\"_index\":34,\"name\":{\"46\":{}},\"parent\":{}}],[\"_sandboxattrs\",{\"_index\":29,\"name\":{\"41\":{}},\"parent\":{}}],[\"_sandboxedhost\",{\"_index\":37,\"name\":{\"49\":{}},\"parent\":{}}],[\"_scrollmonitor\",{\"_index\":38,\"name\":{\"50\":{}},\"parent\":{}}],[\"_suffix\",{\"_index\":35,\"name\":{\"47\":{}},\"parent\":{}}],[\"_url\",{\"_index\":36,\"name\":{\"48\":{}},\"parent\":{}}],[\"absoluteurl\",{\"_index\":151,\"name\":{\"176\":{},\"247\":{},\"254\":{},\"260\":{},\"268\":{}},\"parent\":{}}],[\"acquirecookielessembedsession\",{\"_index\":98,\"name\":{\"110\":{}},\"parent\":{}}],[\"acquirecookielessembedsessioninternal\",{\"_index\":99,\"name\":{\"111\":{}},\"parent\":{}}],[\"acquiresession\",{\"_index\":61,\"name\":{\"73\":{},\"112\":{}},\"parent\":{}}],[\"acquiresessionpromise\",{\"_index\":80,\"name\":{\"92\":{}},\"parent\":{}}],[\"active\",{\"_index\":120,\"name\":{\"138\":{}},\"parent\":{}}],[\"add\",{\"_index\":180,\"name\":{\"233\":{}},\"parent\":{}}],[\"addfilterjson\",{\"_index\":177,\"name\":{\"230\":{},\"240\":{}},\"parent\":{\"231\":{},\"232\":{},\"233\":{}}}],[\"addiframemonitor\",{\"_index\":96,\"name\":{\"108\":{}},\"parent\":{}}],[\"allowattrs\",{\"_index\":67,\"name\":{\"79\":{}},\"parent\":{}}],[\"api_token\",{\"_index\":114,\"name\":{\"130\":{}},\"parent\":{}}],[\"api_token_ttl\",{\"_index\":115,\"name\":{\"131\":{}},\"parent\":{}}],[\"apihost\",{\"_index\":59,\"name\":{\"71\":{}},\"parent\":{}}],[\"appendto\",{\"_index\":74,\"name\":{\"86\":{}},\"parent\":{}}],[\"auth\",{\"_index\":65,\"name\":{\"77\":{}},\"parent\":{}}],[\"authentication_token\",{\"_index\":110,\"name\":{\"126\":{}},\"parent\":{}}],[\"authentication_token_ttl\",{\"_index\":111,\"name\":{\"127\":{}},\"parent\":{}}],[\"authurl\",{\"_index\":64,\"name\":{\"76\":{}},\"parent\":{}}],[\"build\",{\"_index\":76,\"name\":{\"88\":{}},\"parent\":{}}],[\"cancel\",{\"_index\":200,\"name\":{\"276\":{}},\"parent\":{}}],[\"cancellableeventresponse\",{\"_index\":199,\"name\":{\"275\":{}},\"parent\":{\"276\":{}}}],[\"canedit\",{\"_index\":149,\"name\":{\"174\":{}},\"parent\":{}}],[\"classnames\",{\"_index\":68,\"name\":{\"80\":{}},\"parent\":{}}],[\"column\",{\"_index\":129,\"name\":{\"148\":{}},\"parent\":{}}],[\"column_width\",{\"_index\":121,\"name\":{\"139\":{}},\"parent\":{}}],[\"connect\",{\"_index\":101,\"name\":{\"115\":{}},\"parent\":{}}],[\"connection\",{\"_index\":91,\"name\":{\"103\":{}},\"parent\":{}}],[\"constructor\",{\"_index\":11,\"name\":{\"11\":{}},\"parent\":{}}],[\"context\",{\"_index\":184,\"name\":{\"239\":{}},\"parent\":{}}],[\"cookielesscallback\",{\"_index\":107,\"name\":{\"123\":{}},\"parent\":{\"124\":{}}}],[\"cookielessrequestinit\",{\"_index\":106,\"name\":{\"121\":{}},\"parent\":{\"122\":{}}}],[\"createdashboardwithid\",{\"_index\":4,\"name\":{\"4\":{}},\"parent\":{}}],[\"createdashboardwithurl\",{\"_index\":3,\"name\":{\"3\":{}},\"parent\":{}}],[\"createexplorewithid\",{\"_index\":6,\"name\":{\"6\":{}},\"parent\":{}}],[\"createexplorewithurl\",{\"_index\":5,\"name\":{\"5\":{}},\"parent\":{}}],[\"createextensionwithid\",{\"_index\":10,\"name\":{\"10\":{}},\"parent\":{}}],[\"createextensionwithurl\",{\"_index\":9,\"name\":{\"9\":{}},\"parent\":{}}],[\"createiframe\",{\"_index\":94,\"name\":{\"106\":{}},\"parent\":{}}],[\"createlookwithid\",{\"_index\":8,\"name\":{\"8\":{}},\"parent\":{}}],[\"createlookwithurl\",{\"_index\":7,\"name\":{\"7\":{}},\"parent\":{}}],[\"createurl\",{\"_index\":97,\"name\":{\"109\":{}},\"parent\":{}}],[\"dashboard\",{\"_index\":160,\"name\":{\"188\":{},\"202\":{},\"209\":{},\"217\":{},\"225\":{}},\"parent\":{}}],[\"dashboard:delete:complete\",{\"_index\":217,\"name\":{\"295\":{}},\"parent\":{}}],[\"dashboard:edit:cancel\",{\"_index\":215,\"name\":{\"293\":{}},\"parent\":{}}],[\"dashboard:edit:start\",{\"_index\":214,\"name\":{\"292\":{}},\"parent\":{}}],[\"dashboard:filters:changed\",{\"_index\":213,\"name\":{\"291\":{}},\"parent\":{}}],[\"dashboard:run:complete\",{\"_index\":212,\"name\":{\"290\":{}},\"parent\":{}}],[\"dashboard:run:start\",{\"_index\":211,\"name\":{\"289\":{}},\"parent\":{}}],[\"dashboard:save:complete\",{\"_index\":216,\"name\":{\"294\":{}},\"parent\":{}}],[\"dashboard:tile:complete\",{\"_index\":219,\"name\":{\"297\":{}},\"parent\":{}}],[\"dashboard:tile:download\",{\"_index\":220,\"name\":{\"298\":{}},\"parent\":{}}],[\"dashboard:tile:explore\",{\"_index\":221,\"name\":{\"299\":{}},\"parent\":{}}],[\"dashboard:tile:start\",{\"_index\":218,\"name\":{\"296\":{}},\"parent\":{}}],[\"dashboard:tile:view\",{\"_index\":222,\"name\":{\"300\":{}},\"parent\":{}}],[\"dashboard_element_id\",{\"_index\":127,\"name\":{\"146\":{}},\"parent\":{}}],[\"dashboard_filters\",{\"_index\":150,\"name\":{\"175\":{}},\"parent\":{}}],[\"dashboard_id\",{\"_index\":119,\"name\":{\"136\":{}},\"parent\":{}}],[\"dashboard_layout_components\",{\"_index\":124,\"name\":{\"142\":{}},\"parent\":{}}],[\"dashboard_layout_id\",{\"_index\":126,\"name\":{\"145\":{}},\"parent\":{}}],[\"dashboardevent\",{\"_index\":159,\"name\":{\"187\":{}},\"parent\":{\"188\":{},\"189\":{},\"190\":{},\"191\":{}}}],[\"dashboardeventdetail\",{\"_index\":148,\"name\":{\"171\":{}},\"parent\":{\"172\":{},\"173\":{},\"174\":{},\"175\":{},\"176\":{},\"177\":{},\"178\":{}}}],[\"dashboardlayout\",{\"_index\":118,\"name\":{\"134\":{}},\"parent\":{\"135\":{},\"136\":{},\"137\":{},\"138\":{},\"139\":{},\"140\":{},\"141\":{},\"142\":{}}}],[\"dashboardlayoutcomponent\",{\"_index\":125,\"name\":{\"143\":{}},\"parent\":{\"144\":{},\"145\":{},\"146\":{},\"147\":{},\"148\":{},\"149\":{},\"150\":{},\"151\":{}}}],[\"dashboardtiledownloadevent\",{\"_index\":172,\"name\":{\"207\":{}},\"parent\":{\"208\":{},\"209\":{},\"210\":{},\"211\":{},\"212\":{},\"213\":{}}}],[\"dashboardtileevent\",{\"_index\":169,\"name\":{\"201\":{}},\"parent\":{\"202\":{},\"203\":{},\"204\":{},\"205\":{},\"206\":{}}}],[\"dashboardtileeventdetail\",{\"_index\":153,\"name\":{\"179\":{}},\"parent\":{\"180\":{},\"181\":{},\"182\":{}}}],[\"dashboardtileexploreevent\",{\"_index\":174,\"name\":{\"214\":{}},\"parent\":{\"215\":{},\"216\":{},\"217\":{},\"218\":{},\"219\":{},\"220\":{},\"221\":{}}}],[\"dashboardtileviewevent\",{\"_index\":176,\"name\":{\"222\":{}},\"parent\":{\"223\":{},\"224\":{},\"225\":{},\"226\":{},\"227\":{},\"228\":{},\"229\":{}}}],[\"deleted\",{\"_index\":123,\"name\":{\"141\":{},\"151\":{}},\"parent\":{}}],[\"dialogscroll\",{\"_index\":73,\"name\":{\"85\":{}},\"parent\":{}}],[\"dialogtype\",{\"_index\":209,\"name\":{\"286\":{}},\"parent\":{}}],[\"drillmenu:click\",{\"_index\":223,\"name\":{\"301\":{}},\"parent\":{}}],[\"drillmenuevent\",{\"_index\":181,\"name\":{\"234\":{}},\"parent\":{\"235\":{},\"236\":{},\"237\":{},\"238\":{},\"239\":{},\"240\":{},\"241\":{}}}],[\"drillmodal:explore\",{\"_index\":224,\"name\":{\"302\":{}},\"parent\":{}}],[\"drillmodalexploreevent\",{\"_index\":185,\"name\":{\"242\":{}},\"parent\":{\"243\":{},\"244\":{},\"245\":{}}}],[\"dynamiciframeheight\",{\"_index\":72,\"name\":{\"84\":{}},\"parent\":{}}],[\"edit\",{\"_index\":15,\"name\":{\"15\":{}},\"parent\":{}}],[\"el\",{\"_index\":55,\"name\":{\"67\":{}},\"parent\":{}}],[\"elementoptionitems\",{\"_index\":132,\"name\":{\"154\":{}},\"parent\":{\"155\":{},\"156\":{},\"157\":{}}}],[\"elementoptions\",{\"_index\":136,\"name\":{\"158\":{}},\"parent\":{}}],[\"elements\",{\"_index\":138,\"name\":{\"160\":{}},\"parent\":{}}],[\"embedbuilder\",{\"_index\":26,\"name\":{\"38\":{}},\"parent\":{\"39\":{},\"40\":{},\"41\":{},\"42\":{},\"43\":{},\"44\":{},\"45\":{},\"46\":{},\"47\":{},\"48\":{},\"49\":{},\"50\":{},\"51\":{},\"52\":{},\"53\":{},\"54\":{},\"55\":{},\"56\":{},\"57\":{},\"58\":{},\"59\":{},\"60\":{},\"61\":{},\"62\":{},\"63\":{},\"64\":{},\"65\":{},\"66\":{},\"67\":{},\"68\":{},\"69\":{},\"70\":{},\"71\":{},\"72\":{},\"73\":{},\"74\":{},\"75\":{},\"76\":{},\"77\":{},\"78\":{},\"79\":{},\"80\":{},\"81\":{},\"82\":{},\"83\":{},\"84\":{},\"85\":{},\"86\":{},\"87\":{},\"88\":{}}}],[\"embedclient\",{\"_index\":78,\"name\":{\"90\":{}},\"parent\":{\"91\":{},\"92\":{},\"93\":{},\"94\":{},\"95\":{},\"96\":{},\"97\":{},\"98\":{},\"99\":{},\"100\":{},\"101\":{},\"102\":{},\"103\":{},\"104\":{},\"105\":{},\"106\":{},\"107\":{},\"108\":{},\"109\":{},\"110\":{},\"111\":{},\"112\":{},\"113\":{},\"114\":{},\"115\":{}}}],[\"endpoint\",{\"_index\":57,\"name\":{\"69\":{}},\"parent\":{}}],[\"env:client:dialog\",{\"_index\":239,\"name\":{\"317\":{}},\"parent\":{}}],[\"envclientdialogevent\",{\"_index\":206,\"name\":{\"283\":{}},\"parent\":{\"284\":{},\"285\":{},\"286\":{},\"287\":{}}}],[\"envhostscrollevent\",{\"_index\":201,\"name\":{\"277\":{}},\"parent\":{\"278\":{},\"279\":{},\"280\":{},\"281\":{},\"282\":{}}}],[\"error_pos\",{\"_index\":165,\"name\":{\"196\":{}},\"parent\":{}}],[\"errors\",{\"_index\":158,\"name\":{\"186\":{},\"206\":{},\"213\":{},\"221\":{},\"229\":{}},\"parent\":{}}],[\"eventdetail\",{\"_index\":141,\"name\":{\"164\":{}},\"parent\":{}}],[\"expired\",{\"_index\":145,\"name\":{\"168\":{}},\"parent\":{}}],[\"explore\",{\"_index\":194,\"name\":{\"263\":{}},\"parent\":{}}],[\"explore:ready\",{\"_index\":227,\"name\":{\"305\":{}},\"parent\":{}}],[\"explore:run:complete\",{\"_index\":226,\"name\":{\"304\":{}},\"parent\":{}}],[\"explore:run:start\",{\"_index\":225,\"name\":{\"303\":{}},\"parent\":{}}],[\"explore:state:changed\",{\"_index\":228,\"name\":{\"306\":{}},\"parent\":{}}],[\"exploreevent\",{\"_index\":193,\"name\":{\"262\":{}},\"parent\":{\"263\":{},\"264\":{}}}],[\"exploreeventdetail\",{\"_index\":192,\"name\":{\"259\":{}},\"parent\":{\"260\":{},\"261\":{}}}],[\"fatal\",{\"_index\":167,\"name\":{\"198\":{}},\"parent\":{}}],[\"field\",{\"_index\":179,\"name\":{\"232\":{}},\"parent\":{}}],[\"fileformat\",{\"_index\":173,\"name\":{\"208\":{}},\"parent\":{}}],[\"frameborder\",{\"_index\":56,\"name\":{\"68\":{}},\"parent\":{}}],[\"generatetokens\",{\"_index\":62,\"name\":{\"74\":{},\"113\":{}},\"parent\":{}}],[\"getresource\",{\"_index\":100,\"name\":{\"114\":{}},\"parent\":{}}],[\"headers\",{\"_index\":103,\"name\":{\"118\":{}},\"parent\":{}}],[\"height\",{\"_index\":130,\"name\":{\"150\":{},\"273\":{}},\"parent\":{}}],[\"id\",{\"_index\":70,\"name\":{\"82\":{},\"135\":{},\"144\":{},\"172\":{},\"180\":{}},\"parent\":{}}],[\"init\",{\"_index\":1,\"name\":{\"1\":{}},\"parent\":{}}],[\"initcookieless\",{\"_index\":2,\"name\":{\"2\":{}},\"parent\":{}}],[\"interrupted\",{\"_index\":146,\"name\":{\"169\":{}},\"parent\":{}}],[\"isconnected\",{\"_index\":92,\"name\":{\"104\":{}},\"parent\":{}}],[\"iscookielessembed\",{\"_index\":60,\"name\":{\"72\":{}},\"parent\":{}}],[\"label\",{\"_index\":175,\"name\":{\"215\":{},\"223\":{},\"235\":{},\"243\":{}},\"parent\":{}}],[\"layouts\",{\"_index\":139,\"name\":{\"161\":{}},\"parent\":{}}],[\"level\",{\"_index\":166,\"name\":{\"197\":{}},\"parent\":{}}],[\"link_type\",{\"_index\":182,\"name\":{\"236\":{}},\"parent\":{}}],[\"listen\",{\"_index\":154,\"name\":{\"182\":{}},\"parent\":{}}],[\"loaddashboard\",{\"_index\":19,\"name\":{\"19\":{}},\"parent\":{}}],[\"look\",{\"_index\":188,\"name\":{\"250\":{},\"257\":{}},\"parent\":{}}],[\"look:delete:complete\",{\"_index\":232,\"name\":{\"310\":{}},\"parent\":{}}],[\"look:ready\",{\"_index\":233,\"name\":{\"311\":{}},\"parent\":{}}],[\"look:run:complete\",{\"_index\":230,\"name\":{\"308\":{}},\"parent\":{}}],[\"look:run:start\",{\"_index\":229,\"name\":{\"307\":{}},\"parent\":{}}],[\"look:save:complete\",{\"_index\":231,\"name\":{\"309\":{}},\"parent\":{}}],[\"look:state:changed\",{\"_index\":234,\"name\":{\"312\":{}},\"parent\":{}}],[\"lookerauthconfig\",{\"_index\":102,\"name\":{\"116\":{}},\"parent\":{\"117\":{},\"118\":{},\"119\":{},\"120\":{}}}],[\"lookerdashboardoptions\",{\"_index\":137,\"name\":{\"159\":{}},\"parent\":{\"160\":{},\"161\":{}}}],[\"lookerembedbase\",{\"_index\":25,\"name\":{\"35\":{}},\"parent\":{\"36\":{},\"37\":{}}}],[\"lookerembedcookielesssessiondata\",{\"_index\":109,\"name\":{\"125\":{}},\"parent\":{\"126\":{},\"127\":{},\"128\":{},\"129\":{},\"130\":{},\"131\":{},\"132\":{}}}],[\"lookerembeddashboard\",{\"_index\":12,\"name\":{\"12\":{}},\"parent\":{\"13\":{},\"14\":{},\"15\":{},\"16\":{},\"17\":{},\"18\":{},\"19\":{},\"20\":{},\"21\":{}}}],[\"lookerembedevent\",{\"_index\":140,\"name\":{\"162\":{}},\"parent\":{\"163\":{}}}],[\"lookerembedeventmap\",{\"_index\":210,\"name\":{\"288\":{}},\"parent\":{\"289\":{},\"290\":{},\"291\":{},\"292\":{},\"293\":{},\"294\":{},\"295\":{},\"296\":{},\"297\":{},\"298\":{},\"299\":{},\"300\":{},\"301\":{},\"302\":{},\"303\":{},\"304\":{},\"305\":{},\"306\":{},\"307\":{},\"308\":{},\"309\":{},\"310\":{},\"311\":{},\"312\":{},\"313\":{},\"314\":{},\"315\":{},\"316\":{},\"317\":{}}}],[\"lookerembedexplore\",{\"_index\":22,\"name\":{\"22\":{}},\"parent\":{\"23\":{},\"24\":{},\"25\":{},\"26\":{}}}],[\"lookerembedextension\",{\"_index\":23,\"name\":{\"27\":{}},\"parent\":{\"28\":{},\"29\":{}}}],[\"lookerembedfilterparams\",{\"_index\":117,\"name\":{\"133\":{}},\"parent\":{}}],[\"lookerembedlook\",{\"_index\":24,\"name\":{\"30\":{}},\"parent\":{\"31\":{},\"32\":{},\"33\":{},\"34\":{}}}],[\"lookerembedsdk\",{\"_index\":0,\"name\":{\"0\":{}},\"parent\":{\"1\":{},\"2\":{},\"3\":{},\"4\":{},\"5\":{},\"6\":{},\"7\":{},\"8\":{},\"9\":{},\"10\":{},\"11\":{}}}],[\"lookevent\",{\"_index\":187,\"name\":{\"249\":{}},\"parent\":{\"250\":{},\"251\":{}}}],[\"lookeventdetail\",{\"_index\":186,\"name\":{\"246\":{}},\"parent\":{\"247\":{},\"248\":{}}}],[\"looksaveevent\",{\"_index\":191,\"name\":{\"256\":{}},\"parent\":{\"257\":{},\"258\":{}}}],[\"looksaveeventdetail\",{\"_index\":189,\"name\":{\"252\":{}},\"parent\":{\"253\":{},\"254\":{},\"255\":{}}}],[\"message\",{\"_index\":163,\"name\":{\"193\":{}},\"parent\":{}}],[\"message_details\",{\"_index\":164,\"name\":{\"194\":{}},\"parent\":{}}],[\"modal\",{\"_index\":183,\"name\":{\"238\":{}},\"parent\":{}}],[\"navigation_token\",{\"_index\":112,\"name\":{\"128\":{}},\"parent\":{}}],[\"navigation_token_ttl\",{\"_index\":113,\"name\":{\"129\":{}},\"parent\":{}}],[\"offsetleft\",{\"_index\":205,\"name\":{\"281\":{}},\"parent\":{}}],[\"offsettop\",{\"_index\":204,\"name\":{\"280\":{}},\"parent\":{}}],[\"on\",{\"_index\":75,\"name\":{\"87\":{}},\"parent\":{}}],[\"open\",{\"_index\":207,\"name\":{\"284\":{}},\"parent\":{}}],[\"openscheduledialog\",{\"_index\":18,\"name\":{\"18\":{}},\"parent\":{}}],[\"options\",{\"_index\":152,\"name\":{\"178\":{}},\"parent\":{}}],[\"page\",{\"_index\":197,\"name\":{\"270\":{}},\"parent\":{}}],[\"page:changed\",{\"_index\":235,\"name\":{\"313\":{}},\"parent\":{}}],[\"page:properties:changed\",{\"_index\":236,\"name\":{\"314\":{}},\"parent\":{}}],[\"pagechangedevent\",{\"_index\":196,\"name\":{\"269\":{}},\"parent\":{\"270\":{},\"271\":{}}}],[\"pagechangedeventdetail\",{\"_index\":195,\"name\":{\"265\":{}},\"parent\":{\"266\":{},\"267\":{},\"268\":{}}}],[\"pagepropertieschangedevent\",{\"_index\":198,\"name\":{\"272\":{}},\"parent\":{\"273\":{},\"274\":{}}}],[\"params\",{\"_index\":104,\"name\":{\"119\":{},\"195\":{}},\"parent\":{}}],[\"placement\",{\"_index\":208,\"name\":{\"285\":{}},\"parent\":{}}],[\"queryerror\",{\"_index\":162,\"name\":{\"192\":{}},\"parent\":{\"193\":{},\"194\":{},\"195\":{},\"196\":{},\"197\":{},\"198\":{},\"199\":{},\"200\":{}}}],[\"recoverable\",{\"_index\":147,\"name\":{\"170\":{}},\"parent\":{}}],[\"rendered\",{\"_index\":178,\"name\":{\"231\":{}},\"parent\":{}}],[\"row\",{\"_index\":128,\"name\":{\"147\":{}},\"parent\":{}}],[\"run\",{\"_index\":13,\"name\":{\"13\":{},\"23\":{},\"31\":{}},\"parent\":{}}],[\"sandboxattrs\",{\"_index\":66,\"name\":{\"78\":{}},\"parent\":{}}],[\"screenx\",{\"_index\":203,\"name\":{\"279\":{}},\"parent\":{}}],[\"scrollmonitor\",{\"_index\":71,\"name\":{\"83\":{}},\"parent\":{}}],[\"scrolly\",{\"_index\":202,\"name\":{\"278\":{}},\"parent\":{}}],[\"send\",{\"_index\":20,\"name\":{\"20\":{},\"25\":{},\"28\":{},\"33\":{},\"36\":{}},\"parent\":{}}],[\"sendandreceive\",{\"_index\":21,\"name\":{\"21\":{},\"26\":{},\"29\":{},\"34\":{},\"37\":{}},\"parent\":{}}],[\"sendscrolldata\",{\"_index\":95,\"name\":{\"107\":{}},\"parent\":{}}],[\"session:status\",{\"_index\":238,\"name\":{\"316\":{}},\"parent\":{}}],[\"session:token:request\",{\"_index\":237,\"name\":{\"315\":{}},\"parent\":{}}],[\"session_reference_token_ttl\",{\"_index\":116,\"name\":{\"132\":{}},\"parent\":{}}],[\"session_ttl\",{\"_index\":144,\"name\":{\"167\":{}},\"parent\":{}}],[\"sessionacquired\",{\"_index\":79,\"name\":{\"91\":{}},\"parent\":{}}],[\"sessionstatus\",{\"_index\":143,\"name\":{\"166\":{}},\"parent\":{\"167\":{},\"168\":{},\"169\":{},\"170\":{}}}],[\"sessiontokenrequest\",{\"_index\":142,\"name\":{\"165\":{}},\"parent\":{}}],[\"setoptions\",{\"_index\":17,\"name\":{\"17\":{}},\"parent\":{}}],[\"spaceid\",{\"_index\":190,\"name\":{\"253\":{}},\"parent\":{}}],[\"sql_error_loc\",{\"_index\":168,\"name\":{\"199\":{}},\"parent\":{}}],[\"status\",{\"_index\":157,\"name\":{\"185\":{},\"189\":{},\"204\":{},\"211\":{},\"219\":{},\"227\":{}},\"parent\":{}}],[\"stop\",{\"_index\":14,\"name\":{\"14\":{}},\"parent\":{}}],[\"suffix\",{\"_index\":69,\"name\":{\"81\":{}},\"parent\":{}}],[\"targetorigin\",{\"_index\":93,\"name\":{\"105\":{}},\"parent\":{}}],[\"tile\",{\"_index\":170,\"name\":{\"203\":{},\"210\":{},\"218\":{},\"226\":{}},\"parent\":{}}],[\"tileid\",{\"_index\":156,\"name\":{\"184\":{}},\"parent\":{}}],[\"tilestatus\",{\"_index\":155,\"name\":{\"183\":{}},\"parent\":{\"184\":{},\"185\":{},\"186\":{}}}],[\"tilestatuses\",{\"_index\":161,\"name\":{\"190\":{}},\"parent\":{}}],[\"title\",{\"_index\":133,\"name\":{\"155\":{},\"173\":{},\"181\":{}},\"parent\":{}}],[\"title_hidden\",{\"_index\":134,\"name\":{\"156\":{}},\"parent\":{}}],[\"truncated\",{\"_index\":171,\"name\":{\"205\":{},\"212\":{},\"220\":{},\"228\":{}},\"parent\":{}}],[\"type\",{\"_index\":58,\"name\":{\"70\":{},\"137\":{},\"153\":{},\"163\":{},\"191\":{},\"241\":{},\"245\":{},\"251\":{},\"258\":{},\"264\":{},\"266\":{},\"271\":{},\"274\":{},\"282\":{},\"287\":{}},\"parent\":{}}],[\"updatefilters\",{\"_index\":16,\"name\":{\"16\":{},\"24\":{},\"32\":{}},\"parent\":{}}],[\"url\",{\"_index\":63,\"name\":{\"75\":{},\"117\":{},\"122\":{},\"177\":{},\"216\":{},\"224\":{},\"237\":{},\"244\":{},\"248\":{},\"255\":{},\"261\":{},\"267\":{}},\"parent\":{}}],[\"urlparams\",{\"_index\":77,\"name\":{\"89\":{}},\"parent\":{}}],[\"vis_config\",{\"_index\":135,\"name\":{\"157\":{}},\"parent\":{}}],[\"visconfig\",{\"_index\":131,\"name\":{\"152\":{}},\"parent\":{\"153\":{}}}],[\"width\",{\"_index\":122,\"name\":{\"140\":{},\"149\":{}},\"parent\":{}}],[\"withallowattr\",{\"_index\":45,\"name\":{\"57\":{}},\"parent\":{}}],[\"withapihost\",{\"_index\":52,\"name\":{\"64\":{}},\"parent\":{}}],[\"withauth\",{\"_index\":54,\"name\":{\"66\":{}},\"parent\":{}}],[\"withauthurl\",{\"_index\":53,\"name\":{\"65\":{}},\"parent\":{}}],[\"withclassname\",{\"_index\":46,\"name\":{\"58\":{}},\"parent\":{}}],[\"withcredentials\",{\"_index\":105,\"name\":{\"120\":{}},\"parent\":{}}],[\"withdialogscroll\",{\"_index\":51,\"name\":{\"63\":{}},\"parent\":{}}],[\"withdynamiciframeheight\",{\"_index\":50,\"name\":{\"62\":{}},\"parent\":{}}],[\"withfilters\",{\"_index\":43,\"name\":{\"55\":{}},\"parent\":{}}],[\"withframeborder\",{\"_index\":41,\"name\":{\"53\":{}},\"parent\":{}}],[\"withnext\",{\"_index\":47,\"name\":{\"59\":{}},\"parent\":{}}],[\"withparams\",{\"_index\":42,\"name\":{\"54\":{}},\"parent\":{}}],[\"withsandboxattr\",{\"_index\":44,\"name\":{\"56\":{}},\"parent\":{}}],[\"withscrollmonitor\",{\"_index\":49,\"name\":{\"61\":{}},\"parent\":{}}],[\"withtheme\",{\"_index\":48,\"name\":{\"60\":{}},\"parent\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file diff --git a/docs/classes/EmbedBuilder.html b/docs/classes/EmbedBuilder.html index 1dcaf3f..e468213 100644 --- a/docs/classes/EmbedBuilder.html +++ b/docs/classes/EmbedBuilder.html @@ -1,85 +1,109 @@ EmbedBuilder | @looker/embed-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class EmbedBuilder<T>

The builder class for EmbedClient. Contains methods for defining the properties of embedded Looker content.

-

Type Parameters

  • T

Hierarchy

  • EmbedBuilder

Index

Properties

_allowAttrs: string[] = []
_appendTo: null | HTMLElement = null
_classNames: string[] = []
_frameBorder: string = '0'
_handlers: CallbackStore = {}
_id?: string | number
_params: UrlParams
_sandboxAttrs: string[] = []
_sandboxedHost?: boolean
_suffix: string = ''
_url?: null | string

Accessors

Type Parameters

  • T

Hierarchy

  • EmbedBuilder

Index

Properties

_allowAttrs: string[] = []
_appendTo: null | HTMLElement = null
_classNames: string[] = []
_dialogScroll?: boolean
_dynamicIFrameHeight?: boolean
_frameBorder: string = '0'
_handlers: CallbackStore = {}
_id?: string | number
_params: UrlParams
_sandboxAttrs: string[] = []
_sandboxedHost?: boolean
_scrollMonitor?: boolean
_suffix: string = ''
_url?: null | string

Accessors

  • get allowAttrs(): string[]
  • get allowAttrs(): string[]
  • get apiHost(): string
  • get apiHost(): string
  • get authUrl(): undefined | string
  • get authUrl(): undefined | string
  • The auth URL of this embedded content, if provided

    -
    deprecated

    Returns undefined | string

  • get classNames(): string[]
  • get classNames(): string[]
  • get el(): HTMLElement
  • get dialogScroll(): undefined | boolean
  • +

    Whether cover dialogs tops are to be scrolled into view

    +

    Returns undefined | boolean

  • get dynamicIFrameHeight(): undefined | boolean
  • get el(): HTMLElement
  • get endpoint(): string
  • get endpoint(): string
  • get frameBorder(): string
  • get frameBorder(): string
  • get id(): undefined | string | number
  • get id(): undefined | string | number
  • get isCookielessEmbed(): boolean
  • get isCookielessEmbed(): boolean
  • get sandboxAttrs(): string[]
  • get sandboxAttrs(): string[]
  • get suffix(): string
  • get scrollMonitor(): undefined | boolean
  • get suffix(): string
  • get type(): string
  • get type(): string
  • get url(): undefined | null | string
  • get url(): undefined | null | string
  • The content URL of this embedded content, if provided

    -

    Returns undefined | null | string

Methods

Methods

  • Select an element to append the embedded content to, either a content selector or the DOM element.

    Parameters

    • el: string | HTMLElement
      -

    Returns EmbedBuilder<T>

Returns EmbedBuilder<T>

  • Allows specifying allow attributes (for example fullscreen) for an embedded content iframe.

    Parameters

    • Rest ...attr: string[]

      one or more allow attributes for an embedded content iframe.

      -

    Returns EmbedBuilder<T>

Returns EmbedBuilder<T>

Returns EmbedBuilder<T>

Returns EmbedBuilder<T>

Returns EmbedBuilder<T>

  • Allows specifying classes for an embedded content

    Parameters

    • Rest ...className: string[]

      one or more sandbox attributes for an embedded content.

      -

    Returns EmbedBuilder<T>

Returns EmbedBuilder<T>

  • +

    Listens for covering dialogs being opened in the Looker IFRAME +and scrolls the top of dialog into view.

    +

    Parameters

    • dialogScroll: boolean = true
      +

      defaults to true

      +

    Returns EmbedBuilder<T>

  • withDynamicIFrameHeight(dynamicIFrameHeight?: boolean): EmbedBuilder<T>
  • +

    Listens for page changed events from the embedded Looker IFRAME +and updates the height of the IFRAME.

    +

    Parameters

    • dynamicIFrameHeight: boolean = true
      +

      defaults to true

      +

    Returns EmbedBuilder<T>

  • Allows specifying next generation content

    Parameters

    • suffix: string = '-next'

      Next generation suffix. Defaults to '-next'.

      -

    Returns EmbedBuilder<T>

Returns EmbedBuilder<T>

Returns EmbedBuilder<T>

  • Allows specifying sandbox attributes for an embedded content iframe. Sandbox attributes should include allow-scripts or embedded content will not execute.

    Parameters

    • Rest ...attr: string[]

      one or more sandbox attributes for an embedded content iframe.

      -

    Returns EmbedBuilder<T>

Returns EmbedBuilder<T>

  • +

    Monitors scroll position and informs the embedded Looker IFRAME +of the current scroll position and the offset of the containing +IFRAME within the window. Looker uses this information to position +dialogs within the users viewport.

    +

    Requires Looker >=23.6.0

    +

    Parameters

    • monitor: boolean = true
      +

      defaults to true

      +

    Returns EmbedBuilder<T>

Legend

  • Constructor
  • Property
  • Method
  • Property
  • Method
  • Private property
  • Private method
  • Inherited method
  • Static method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +

Returns EmbedBuilder<T>

Legend

  • Constructor
  • Property
  • Method
  • Property
  • Method
  • Private property
  • Private method
  • Inherited method
  • Static method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/EmbedClient.html b/docs/classes/EmbedClient.html index 4d3fcee..69d243d 100644 --- a/docs/classes/EmbedClient.html +++ b/docs/classes/EmbedClient.html @@ -1,12 +1,12 @@ EmbedClient | @looker/embed-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class EmbedClient<T>

Wrapper for Looker embedded content. Provides a mechanism for creating the embedded content element, and for establishing two-way communication between the parent window and the embedded content.

-

Type Parameters

  • T

Hierarchy

  • EmbedClient

Index

Properties

_client: null | T = null
_connection: null | Promise<T> = null
_cookielessApiToken?: null | string
_cookielessApiTokenTtl?: null | number
_cookielessInitialized: boolean = false
_cookielessNavigationToken?: null | string
_cookielessNavigationTokenTtl?: null | number
_cookielessSessionReferenceTokenTtl?: null | number
_host: null | ChattyHost = null
_hostBuilder: null | ChattyHostBuilder = null
acquireSessionPromise?: Promise<string>
sessionAcquired: boolean = false

Accessors

  • get connection(): null | Promise<T>

Type Parameters

  • T

Hierarchy

  • EmbedClient

Index

Properties

_client: null | T = null
_connection: null | Promise<T> = null
_cookielessApiToken?: null | string
_cookielessApiTokenTtl?: null | number
_cookielessInitialized: boolean = false
_cookielessNavigationToken?: null | string
_cookielessNavigationTokenTtl?: null | number
_cookielessSessionReferenceTokenTtl?: null | number
_host: null | ChattyHost = null
_hostBuilder: null | ChattyHostBuilder = null
acquireSessionPromise?: Promise<string>
sessionAcquired: boolean = false

Accessors

  • get connection(): null | Promise<T>
  • Returns a promise that resolves to a client that can be used to send messages to the embedded content.

    -

    Returns null | Promise<T>

  • get isConnected(): boolean
  • get isConnected(): boolean
  • Indicates whether two way communication has successfully been established with the embedded content.

    -

    Returns boolean

  • get targetOrigin(): string

Methods

  • acquireCookielessEmbedSession(): Promise<string>
  • acquireCookielessEmbedSessionInternal(): Promise<string>
  • connect(): Promise<T>
  • get targetOrigin(): string

Methods

  • acquireCookielessEmbedSession(): Promise<string>
  • acquireCookielessEmbedSessionInternal(): Promise<string>
  • addIframeMonitor(iframe: HTMLIFrameElement): void
  • connect(): Promise<T>
  • Establish two way communication with embedded content. Returns a promise that resolves to a client that can be used to send messages to the embedded content.

    -

    Returns Promise<T>

  • createIframe(url: string): Promise<T>
  • createUrl(): Promise<string>
  • getResource(resource: string | CookielessRequestInit): { init: undefined | { body?: null | BodyInit; cache?: RequestCache; credentials?: RequestCredentials; headers?: HeadersInit; integrity?: string; keepalive?: boolean; method?: string; mode?: RequestMode; redirect?: RequestRedirect; referrer?: string; referrerPolicy?: ReferrerPolicy; signal?: null | AbortSignal; window?: null }; url: string }
  • Parameters

    Returns { init: undefined | { body?: null | BodyInit; cache?: RequestCache; credentials?: RequestCredentials; headers?: HeadersInit; integrity?: string; keepalive?: boolean; method?: string; mode?: RequestMode; redirect?: RequestRedirect; referrer?: string; referrerPolicy?: ReferrerPolicy; signal?: null | AbortSignal; window?: null }; url: string }

    • init: undefined | { body?: null | BodyInit; cache?: RequestCache; credentials?: RequestCredentials; headers?: HeadersInit; integrity?: string; keepalive?: boolean; method?: string; mode?: RequestMode; redirect?: RequestRedirect; referrer?: string; referrerPolicy?: ReferrerPolicy; signal?: null | AbortSignal; window?: null }
    • url: string

Legend

  • Constructor
  • Property
  • Method
  • Property
  • Method
  • Private property
  • Private method
  • Inherited method
  • Static method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +

Returns Promise<T>

  • createIframe(url: string): Promise<T>
  • createUrl(): Promise<string>
  • getResource(resource: string | CookielessRequestInit): { init: undefined | { body?: null | BodyInit; cache?: RequestCache; credentials?: RequestCredentials; headers?: HeadersInit; integrity?: string; keepalive?: boolean; method?: string; mode?: RequestMode; redirect?: RequestRedirect; referrer?: string; referrerPolicy?: ReferrerPolicy; signal?: null | AbortSignal; window?: null }; url: string }
  • Parameters

    Returns { init: undefined | { body?: null | BodyInit; cache?: RequestCache; credentials?: RequestCredentials; headers?: HeadersInit; integrity?: string; keepalive?: boolean; method?: string; mode?: RequestMode; redirect?: RequestRedirect; referrer?: string; referrerPolicy?: ReferrerPolicy; signal?: null | AbortSignal; window?: null }; url: string }

    • init: undefined | { body?: null | BodyInit; cache?: RequestCache; credentials?: RequestCredentials; headers?: HeadersInit; integrity?: string; keepalive?: boolean; method?: string; mode?: RequestMode; redirect?: RequestRedirect; referrer?: string; referrerPolicy?: ReferrerPolicy; signal?: null | AbortSignal; window?: null }
    • url: string
  • sendScrollData(iframe: HTMLIFrameElement): void

Legend

  • Constructor
  • Property
  • Method
  • Property
  • Method
  • Private property
  • Private method
  • Inherited method
  • Static method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/index.html b/docs/index.html index 6c3e79e..54ea39d 100644 --- a/docs/index.html +++ b/docs/index.html @@ -266,10 +266,28 @@

Embedded Javascript Events

Additional Considerations

+ +

Dynamic dashboard height

+
+

The IFRAMEs containing dashboards can be resized to reflect the height of the embedded dashboard. This allows the IFRAME to own the scrollbar rather than the embedded dashboard. To implement dynamic dashboard heights, listen to page:properties:changed events and use the height to set the IFRAME height. Example:

+
const pagePropertiesChangedHandler = (
{ height }: PagePropertiesChangedEvent,
elementId: string
) => {
if (height && height > 100) {
const element = document.querySelector(
`#${elementId} iframe`
) as HTMLIFrameElement
if (element) {
element.style.height = `${height}px`
}
}
}


LookerEmbedSDK.createDashboardWithId(runtimeConfig.dashboardId)
.appendTo('#dashboard')
.on('page:properties:changed', (event: PagePropertiesChangedEvent) => {
pagePropertiesChangedHandler(event, 'dashboard')
})
.build()
.connect() +
+

The Embed SDK also contains a convenience method to add this functionality for you. Example:

+
LookerEmbedSDK.createDashboardWithId(runtimeConfig.dashboardId)
.withDynamicIFrameHeight()
.appendTo('#dashboard')
.build()
.connect() +
+

Full screen tile visualizations

Looker has the capability to display individual tile visualizations in full screen mode. This feature works for embedded IFRAMEs but the fullscreen feature MUST be added to the containing IFRAME. Version 1.8.2 of the Embed SDK was updated to allow features to be added. The following example shows how to enable support for full screen mode.

-
    LookerEmbedSDK.createDashboardWithId(runtimeConfig.dashboardId)
// Allow fullscreen tile visualizations
.withAllowAttr('fullscreen')
// Append to the #dashboard element
.appendTo('#dashboard')
...
// Finalize the build
.build()
// Connect to Looker
.connect()
// Finish up setup
.then((dashboard: LookerEmbedDashboard) => {
...
})
.catch((error: Error) => {
...
}) +
    LookerEmbedSDK.createDashboardWithId(runtimeConfig.dashboardId)
// Allow fullscreen tile visualizations
.withAllowAttr('fullscreen')
// Append to the #dashboard element
.appendTo('#dashboard')
...
// Finalize the build
.build()
// Connect to Looker
.connect()
// Finish up setup
.then((dashboard: LookerEmbedDashboard) => {
...
})
.catch((error: Error) => {
...
}) +
+ + +

Tile dialogs

+
+

Users have the capability of opening dialogs from a dashboard tile. One downside of opening the dialogs is that unexpected scrolling can occur. With Looker 23.6+ it is now possible to mitigate the scrolling using the Embed SDK. Example:

+
LookerEmbedSDK.createDashboardWithId(runtimeConfig.dashboardId)
// Scrolls the top of the IFRAME into view when drilling
.withDialogScroll()
// Ensures that the tile download and tile alert dialogs remain in view
.withScrollMonitor()
// Append to the #dashboard element
.appendTo('#dashboard')
...
// Finalize the build
.build()
// Connect to Looker
.connect()
// Finish up setup
.then((dashboard: LookerEmbedDashboard) => {
...
})
.catch((error: Error) => {
...
})
-

Legend

  • Constructor
  • Property
  • Method
  • Property
  • Method
  • Private property
  • Private method
  • Inherited method
  • Static method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +

Note that this functionality is also available to the javascript API. See here for how to add this functionality.

+

Legend

  • Constructor
  • Property
  • Method
  • Property
  • Method
  • Private property
  • Private method
  • Inherited method
  • Static method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/EnvClientDialogEvent.html b/docs/interfaces/EnvClientDialogEvent.html new file mode 100644 index 0000000..c8eb67f --- /dev/null +++ b/docs/interfaces/EnvClientDialogEvent.html @@ -0,0 +1,7 @@ +EnvClientDialogEvent | @looker/embed-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface EnvClientDialogEvent

+

Client dialog data. Provides information about Looker dialogs that +are being displayed. Information is only provided for those dialogs +that might require some viewport adjustment on the part of the +hosting application.

+

Looker 23.6+

+

Hierarchy

Index

Properties

dialogType: string
open: boolean
placement: "center" | "top" | "cover"
type: string

Legend

  • Constructor
  • Property
  • Method
  • Property
  • Method
  • Private property
  • Private method
  • Inherited method
  • Static method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/EnvHostScrollEvent.html b/docs/interfaces/EnvHostScrollEvent.html new file mode 100644 index 0000000..b9c30a9 --- /dev/null +++ b/docs/interfaces/EnvHostScrollEvent.html @@ -0,0 +1,6 @@ +EnvHostScrollEvent | @looker/embed-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface EnvHostScrollEvent

+

Host scroll event data. Provides information to the Looker client +about the current scroll state. This allows the Looker client to +position dialogs within the users view port.

+

Looker 23.6+

+

Hierarchy

Index

Properties

offsetLeft: number
offsetTop: number
screenX: number
scrollY: number
type: string

Legend

  • Constructor
  • Property
  • Method
  • Property
  • Method
  • Private property
  • Private method
  • Inherited method
  • Static method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/LookerEmbedEvent.html b/docs/interfaces/LookerEmbedEvent.html index 08fc845..d47771f 100644 --- a/docs/interfaces/LookerEmbedEvent.html +++ b/docs/interfaces/LookerEmbedEvent.html @@ -1,3 +1,3 @@ LookerEmbedEvent | @looker/embed-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface LookerEmbedEvent

A generic Looker embed event

-

Hierarchy

Indexable

[key: string]: any

Index

Properties

Properties

type: string

Legend

  • Constructor
  • Property
  • Method
  • Property
  • Method
  • Private property
  • Private method
  • Inherited method
  • Static method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +

Hierarchy

Indexable

[key: string]: any

Index

Properties

Properties

type: string

Legend

  • Constructor
  • Property
  • Method
  • Property
  • Method
  • Private property
  • Private method
  • Inherited method
  • Static method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/LookerEmbedEventMap.html b/docs/interfaces/LookerEmbedEventMap.html index 9f2aba4..8d7ed67 100644 --- a/docs/interfaces/LookerEmbedEventMap.html +++ b/docs/interfaces/LookerEmbedEventMap.html @@ -1,31 +1,34 @@ LookerEmbedEventMap | @looker/embed-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface LookerEmbedEventMap

Current Looker embed events as of version 6.20 (except where stated)

-

Hierarchy

  • LookerEmbedEventMap

Indexable

[key: string]: any

Index

Methods

Hierarchy

  • LookerEmbedEventMap

Indexable

[key: string]: any

Index

Methods

  • Dashboard saved event. Fired when a dashboard being edited is saved. Use in conjunction with dashboard:edit:start and dashboard:edit:save. Looker 21.6+

    -

    Parameters

    Returns void

Legend

  • Constructor
  • Property
  • Method
  • Property
  • Method
  • Private property
  • Private method
  • Inherited method
  • Static method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +

Parameters

Returns void

Legend

  • Constructor
  • Property
  • Method
  • Property
  • Method
  • Private property
  • Private method
  • Inherited method
  • Static method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/modules.html b/docs/modules.html index ad40b61..bee1851 100644 --- a/docs/modules.html +++ b/docs/modules.html @@ -1,7 +1,7 @@ -@looker/embed-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

@looker/embed-sdk

Index

Type Aliases

CookielessCallback: (() => Promise<LookerEmbedCookielessSessionData>)

Type declaration

Legend

  • Constructor
  • Property
  • Method
  • Property
  • Method
  • Private property
  • Private method
  • Inherited method
  • Static method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/package.json b/package.json index 122b037..415e535 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@looker/embed-sdk", - "version": "1.8.2", + "version": "1.8.3", "description": "A toolkit for embedding Looker", "main": "lib/index.js", "typings": "lib/index.d.ts", diff --git a/src/embed.ts b/src/embed.ts index 1aca4fe..09ce48e 100644 --- a/src/embed.ts +++ b/src/embed.ts @@ -30,7 +30,9 @@ import type { LookerEmbedBase } from './embed_base' import type { EmbedBuilder } from './embed_builder' import type { CookielessRequestInit, + EnvClientDialogEvent, LookerEmbedCookielessSessionData, + PagePropertiesChangedEvent, } from './types' const IS_URL = /^https?:\/\// @@ -88,6 +90,37 @@ export class EmbedClient { private async createIframe(url: string) { this._hostBuilder = Chatty.createHost(url) + if (this._builder.dialogScroll) { + this._builder.handlers['env:client:dialog'] = [ + ({ open, placement }: EnvClientDialogEvent) => { + // Placement of 'cover' means that the dialog top is close + // to the top of the IFRAME. The top MAY be scrolled out + // of view. The following attempts to scroll the top of the + // dialog into view. + if (open && placement === 'cover') { + // Timeout is a little ugly. Suspect there might be an issue + // with a Looker component where the last row is scrolled + // into view. Normally not an issue because outside of embed + // as the dialog is limited to the viewport. + // Make timeout configurable? + window.setTimeout(() => { + if (this._host) { + this._host.iframe.scrollIntoView(true) + } + }, 200) + } + }, + ] + } + if (this._builder.dynamicIFrameHeight) { + this._builder.handlers['page:properties:changed'] = [ + ({ height }: PagePropertiesChangedEvent) => { + if (height && height > 100 && this._host) { + this._host.iframe.style.height = `${height}px` + } + }, + ] + } if (this._builder.isCookielessEmbed) { this._builder.handlers['session:tokens:request'] = [ async () => { @@ -151,6 +184,10 @@ export class EmbedClient { this._host.iframe.classList.add(...this._builder.classNames) } + if (this._builder.scrollMonitor) { + this.addIframeMonitor(this._host.iframe) + } + return this._host.connect().then((host) => { // eslint-disable-next-line new-cap this._client = new this._builder.clientConstructor(host) @@ -158,6 +195,25 @@ export class EmbedClient { }) } + private sendScrollData(iframe: HTMLIFrameElement) { + const client = this._client as unknown as LookerEmbedBase + client.send('env:host:scroll', { + offsetLeft: iframe.offsetLeft, + offsetTop: iframe.offsetTop, + screenX: window.scrollX, + scrollY: window.scrollY, + }) + } + + private addIframeMonitor(iframe: HTMLIFrameElement) { + document.addEventListener('scroll', (_event: Event) => { + this.sendScrollData(iframe) + }) + window.addEventListener('resize', (_event: Event) => { + this.sendScrollData(iframe) + }) + } + private async createUrl() { const src = this._builder.embedUrl const auth = this._builder.auth diff --git a/src/embed_builder.ts b/src/embed_builder.ts index a711a57..21c1a0d 100644 --- a/src/embed_builder.ts +++ b/src/embed_builder.ts @@ -76,6 +76,9 @@ export class EmbedBuilder { private _suffix: string = '' private _url?: string | null private _sandboxedHost?: boolean + private _scrollMonitor?: boolean + private _dynamicIFrameHeight?: boolean + private _dialogScroll?: boolean /** * @hidden @@ -213,6 +216,44 @@ export class EmbedBuilder { return this } + /** + * Monitors scroll position and informs the embedded Looker IFRAME + * of the current scroll position and the offset of the containing + * IFRAME within the window. Looker uses this information to position + * dialogs within the users viewport. + * + * Requires Looker >=23.6.0 + * + * @param monitor defaults to true + * + */ + withScrollMonitor(monitor = true) { + this._scrollMonitor = monitor + return this + } + + /** + * Listens for page changed events from the embedded Looker IFRAME + * and updates the height of the IFRAME. + * + * @param dynamicIFrameHeight defaults to true + */ + withDynamicIFrameHeight(dynamicIFrameHeight = true) { + this._dynamicIFrameHeight = dynamicIFrameHeight + return this + } + + /** + * Listens for covering dialogs being opened in the Looker IFRAME + * and scrolls the top of dialog into view. + * + * @param dialogScroll defaults to true + */ + withDialogScroll(dialogScroll = true) { + this._dialogScroll = dialogScroll + return this + } + /** * Allows api host to be specified * @@ -440,6 +481,30 @@ export class EmbedBuilder { return this._id } + /** + * Whether scrolling is monitored + */ + + get scrollMonitor() { + return this._scrollMonitor + } + + /** + * Whether IFRAME height is to be dynamically updated + */ + + get dynamicIFrameHeight() { + return this._dynamicIFrameHeight + } + + /** + * Whether cover dialogs tops are to be scrolled into view + */ + + get dialogScroll() { + return this._dialogScroll + } + /** * @hidden */ diff --git a/src/types.ts b/src/types.ts index 8b9082d..8f2ae8b 100644 --- a/src/types.ts +++ b/src/types.ts @@ -455,6 +455,36 @@ export interface CancellableEventResponse { cancel: boolean } +/** + * Host scroll event data. Provides information to the Looker client + * about the current scroll state. This allows the Looker client to + * position dialogs within the users view port. + * + * Looker 23.6+ + */ + +export interface EnvHostScrollEvent extends LookerEmbedEvent { + scrollY: number + screenX: number + offsetTop: number + offsetLeft: number +} + +/** + * Client dialog data. Provides information about Looker dialogs that + * are being displayed. Information is only provided for those dialogs + * that might require some viewport adjustment on the part of the + * hosting application. + * + * Looker 23.6+ + */ + +export interface EnvClientDialogEvent extends LookerEmbedEvent { + open: boolean + placement: 'cover' | 'top' | 'center' + dialogType: string +} + /** * Current Looker embed events as of version 6.20 (except where stated) */ @@ -576,6 +606,14 @@ export interface LookerEmbedEventMap { * Looker 23.0+ */ 'session:status': (this: LookerEmbedBase, event: SessionStatus) => void + /** + * Environment client dialog event + * Looker 23.6+ + */ + 'env:client:dialog': ( + this: LookerEmbedBase, + event: EnvClientDialogEvent + ) => void [key: string]: any } diff --git a/tests/embed_builder.spec.ts b/tests/embed_builder.spec.ts index 85bea0b..abc1726 100644 --- a/tests/embed_builder.spec.ts +++ b/tests/embed_builder.spec.ts @@ -335,6 +335,21 @@ describe('LookerEmbedBuilder', () => { // tslint:disable-next-line:deprecation expect(builder.auth).toEqual({ url: '/auth' }) }) + + it('should return the scrollMonitor config', () => { + builder.withScrollMonitor() + expect(builder.scrollMonitor).toEqual(true) + }) + + it('should return the dynamicIFrameHeight config', () => { + builder.withDynamicIFrameHeight() + expect(builder.dynamicIFrameHeight).toEqual(true) + }) + + it('should return the dialogScroll config', () => { + builder.withDialogScroll() + expect(builder.dialogScroll).toEqual(true) + }) }) describe('build', () => {