@genesislcap/foundation-layout 14.436.0-FUI-2489.3 → 14.436.0-FUI-2489.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/custom-elements.json +942 -942
  2. package/package.json +15 -15
@@ -187,88 +187,47 @@
187
187
  },
188
188
  {
189
189
  "kind": "javascript-module",
190
- "path": "src/styles/constants.ts",
191
- "declarations": [
192
- {
193
- "kind": "function",
194
- "name": "glVisualConfig",
195
- "return": {
196
- "type": {
197
- "text": "Omit<LayoutConfig, 'root'>"
198
- }
199
- }
200
- },
201
- {
202
- "kind": "variable",
203
- "name": "LAYOUT_ICONS",
204
- "type": {
205
- "text": "{\n renameSVG,\n maximiseSVG,\n minimiseSVG,\n closeSVG,\n tabDropdownSVG,\n popoutSVG,\n}"
206
- },
207
- "default": "{\n renameSVG,\n maximiseSVG,\n minimiseSVG,\n closeSVG,\n tabDropdownSVG,\n popoutSVG,\n}",
208
- "description": "A collection of SVG icons in base64 format.",
209
- "privacy": "public"
210
- }
211
- ],
190
+ "path": "src/main/index.ts",
191
+ "declarations": [],
212
192
  "exports": [
213
193
  {
214
194
  "kind": "js",
215
- "name": "glVisualConfig",
195
+ "name": "FoundationLayoutItem",
216
196
  "declaration": {
217
- "name": "glVisualConfig",
218
- "module": "src/styles/constants.ts"
197
+ "name": "FoundationLayoutItem",
198
+ "module": "./layout-item"
219
199
  }
220
200
  },
221
201
  {
222
202
  "kind": "js",
223
- "name": "LAYOUT_ICONS",
203
+ "name": "FoundationLayoutRegion",
224
204
  "declaration": {
225
- "name": "LAYOUT_ICONS",
226
- "module": "src/styles/constants.ts"
205
+ "name": "FoundationLayoutRegion",
206
+ "module": "./layout-region"
227
207
  }
228
- }
229
- ]
230
- },
231
- {
232
- "kind": "javascript-module",
233
- "path": "src/styles/dragging.styles.ts",
234
- "declarations": [
235
- {
236
- "kind": "variable",
237
- "name": "globalDraggingStyles",
238
- "default": "`\n .lm_dragProxy .lm_content {\n box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);\n }\n .lm_dropTargetIndicator {\n outline: 1px dashed #cccccc;\n transition: all 200ms ease;\n }\n .lm_dropTargetIndicator .lm_inner {\n background: var(${neutralFillStealthRest.cssCustomProperty});\n opacity: 0.2;\n }\n .lm_dragProxy.lm_left .lm_header,\n .lm_dragProxy.lm_right .lm_header {\n width: 20px;\n float: left;\n vertical-align: top;\n }\n .lm_dragProxy.lm_left .lm_header .lm_tabs,\n .lm_dragProxy.lm_right .lm_header .lm_tabs {\n transform-origin: left top;\n top: 0;\n width: 1000px;\n }\n .lm_dragProxy.lm_left .lm_header .lm_controls,\n .lm_dragProxy.lm_right .lm_header .lm_controls {\n bottom: 0;\n }\n .lm_dragProxy.lm_left .lm_items,\n .lm_dragProxy.lm_right .lm_items {\n float: left;\n }\n .lm_dragProxy.lm_left .lm_header .lm_tabs {\n transform: rotate(-90deg) scaleX(-1);\n left: 0;\n }\n .lm_dragProxy.lm_left .lm_header .lm_tabs .lm_tab {\n transform: scaleX(-1);\n margin-top: 1px;\n }\n .lm_dragProxy.lm_left .lm_header .lm_tabdropdown_list {\n top: initial;\n right: initial;\n left: 20px;\n }\n .lm_dragProxy.lm_right .lm_content {\n float: left;\n }\n .lm_dragProxy.lm_right .lm_header .lm_tabs {\n transform: rotate(90deg) scaleX(1);\n left: 100%;\n margin-left: 0;\n }\n .lm_dragProxy.lm_right .lm_header .lm_controls {\n left: 3px;\n }\n .lm_dragProxy.lm_right .lm_header .lm_tabdropdown_list {\n top: initial;\n right: 20px;\n }\n .lm_dragProxy.lm_bottom .lm_header .lm_tab {\n margin-top: 0;\n border-top: none;\n }\n .lm_dragProxy.lm_bottom .lm_header .lm_controls,\n .lm_stack.lm_bottom .lm_header .lm_controls {\n top: 3px;\n }\n .lm_dragProxy.lm_bottom .lm_header .lm_tabdropdown_list,\n .lm_stack.lm_bottom .lm_header .lm_tabdropdown_list {\n top: initial;\n bottom: 20px;\n }\n .lm_dragProxy {\n cursor: move;\n position: absolute;\n top: 0;\n left: 0;\n z-index: 30;\n }\n .lm_dragProxy .lm_header {\n background: transparent;\n }\n .lm_dragProxy .lm_title {\n color: white;\n padding-left: 10px;\n }\n .lm_dragProxy .lm_content {\n border-top: none;\n overflow: hidden;\n }\n .lm_dropTargetIndicator {\n display: none;\n position: absolute;\n z-index: 20;\n }\n .lm_dropTargetIndicator .lm_inner {\n width: 100%;\n height: 100%;\n position: relative;\n top: 0;\n left: 0;\n }\n .lm_transition_indicator {\n display: none;\n width: 20px;\n height: 20px;\n position: absolute;\n top: 0;\n left: 0;\n z-index: 20;\n }\n`",
239
- "description": "This is defined as a string rather than a css template\nbecause it is applied to a CSSStyleSheet object rather than\nused as a FAST template"
240
- }
241
- ],
242
- "exports": [
208
+ },
243
209
  {
244
210
  "kind": "js",
245
- "name": "globalDraggingStyles",
211
+ "name": "FoundationLayout",
246
212
  "declaration": {
247
- "name": "globalDraggingStyles",
248
- "module": "src/styles/dragging.styles.ts"
213
+ "name": "FoundationLayout",
214
+ "module": "./layout-main"
249
215
  }
250
- }
251
- ]
252
- },
253
- {
254
- "kind": "javascript-module",
255
- "path": "src/styles/index.ts",
256
- "declarations": [],
257
- "exports": [
216
+ },
258
217
  {
259
218
  "kind": "js",
260
- "name": "*",
219
+ "name": "layoutStyles",
261
220
  "declaration": {
262
- "name": "*",
263
- "package": "./constants"
221
+ "name": "layoutStyles",
222
+ "module": "./layout-main"
264
223
  }
265
224
  },
266
225
  {
267
226
  "kind": "js",
268
- "name": "*",
227
+ "name": "layoutTemplate",
269
228
  "declaration": {
270
- "name": "*",
271
- "package": "./dragging.styles"
229
+ "name": "layoutTemplate",
230
+ "module": "./layout-main"
272
231
  }
273
232
  },
274
233
  {
@@ -276,787 +235,268 @@
276
235
  "name": "*",
277
236
  "declaration": {
278
237
  "name": "*",
279
- "package": "./layout.styles"
280
- }
281
- }
282
- ]
283
- },
284
- {
285
- "kind": "javascript-module",
286
- "path": "src/styles/layout.styles.ts",
287
- "declarations": [
288
- {
289
- "kind": "variable",
290
- "name": "layoutStyles",
291
- "default": "css`\n ${containerStyles}\n ${loadingSpinnerStyles}\n\n :host {\n --foundation-tab-height: calc(\n (((var(--base-height-multiplier) + var(--density)) * var(--design-unit)) - 4) * 1px\n );\n }\n\n .lm_goldenlayout {\n border-radius: calc(var(--control-corner-radius) * 1.5px);\n }\n\n .lm_stack.lm_item {\n background-color: var(--neutral-layer-3);\n border-radius: calc(var(--control-corner-radius) * 1.5px);\n }\n\n .lm_maximised .lm_header {\n background-color: var(--neutral-layer-3);\n border-radius: calc(var(--control-corner-radius) * 1.5px);\n position: unset;\n }\n\n .lm_maximised .lm_header .lm_tabs {\n z-index: 3;\n }\n\n .lm_content {\n background-color: var(--neutral-layer-card-container);\n border-radius: calc(var(--control-corner-radius) * 1.5px);\n border: 1px solid;\n border-color: var(--neutral-stroke-rest);\n box-sizing: border-box;\n color: var(--neutral-foreground-rest);\n }\n\n .lm_header .lm_tabs {\n padding: 0 16px;\n }\n\n .lm_stack > .lm_items {\n box-shadow: 0 -1px 15px rgb(0 0 0 / 15%);\n }\n\n .lm_header .lm_tab.lm_active.lm_focused {\n background-color: var(--neutral-layer-card-container);\n }\n\n .lm_header .lm_tab.lm_active {\n background-color: var(--neutral-layer-card-container);\n border: 1px solid;\n border-color: var(--neutral-stroke-rest);\n border-bottom: 0;\n color: var(--accent-foreground-rest);\n }\n\n .lm_header .lm_tab {\n align-items: center;\n background-color: var(--neutral-layer-4);\n border: 0;\n border-bottom-color: transparent;\n border-bottom: 0 solid;\n border-color: var(--neutral-stroke-rest);\n border-radius: calc(var(--control-corner-radius) * 1.5px)\n calc(var(--control-corner-radius) * 1.5px) 0 0;\n color: var(--accent-foreground-rest);\n display: flex;\n font-family: inherit;\n font-size: 13px;\n font-weight: 400;\n height: calc(var(--foundation-tab-height, ${DEFAULT_TAB_HEIGHT}) - 8px);\n margin-right: 2px;\n margin-top: 3px;\n padding: 2px 16px;\n }\n\n .lm_header .lm_tab:not(.lm_active):hover {\n background-color: var(--neutral-layer-card-container);\n color: var(--accent-foreground-rest);\n }\n\n .lm_header .lm_controls {\n top: 4px;\n display: flex;\n }\n\n .lm_header .lm_controls > * {\n width: calc(var(--foundation-tab-height, ${DEFAULT_TAB_HEIGHT}) - 6px);\n height: calc(var(--foundation-tab-height, ${DEFAULT_TAB_HEIGHT}) - 6px);\n background-repeat: no-repeat;\n background-position: center;\n background-size: calc(var(--foundation-tab-height, ${DEFAULT_TAB_HEIGHT}) * 0.533333);\n background-color: color-mix(in srgb, var(--neutral-fill-strong-rest), transparent 90%);\n border-radius: calc(var(--control-corner-radius) * 1.5px);\n margin-right: 4px;\n top: 3px;\n opacity: 100%;\n }\n\n .lm_header .lm_controls > *:hover {\n background-color: color-mix(in srgb, var(--neutral-fill-strong-hover), transparent 75%);\n cursor: pointer;\n }\n\n .lm_controls .lm_maximise {\n background-image: url('${LAYOUT_ICONS.maximiseSVG}');\n }\n\n .lm_maximised .lm_controls .lm_maximise {\n background-image: url('${LAYOUT_ICONS.minimiseSVG}');\n }\n\n .lm_controls .lm_close {\n background-image: url('${LAYOUT_ICONS.closeSVG}');\n }\n\n .lm_header .lm_tab .lm_close_tab {\n background-image: url('${LAYOUT_ICONS.closeSVG}');\n background-size: calc(var(--foundation-tab-height, ${DEFAULT_TAB_HEIGHT}) * 0.2777);\n background-repeat: no-repeat;\n margin-left: 12px;\n position: relative;\n top: 0;\n right: 0;\n }\n\n .lm_header .lm_tab.lm_active {\n padding: 4px 25px 3px 10px;\n }\n\n .lm_header .lm_tab:not(.lm_active) .lm_title {\n color: var(--neutral-foreground-hint);\n }\n\n .lm_header .lm_controls .lm_tabdropdown::before {\n content: none;\n }\n\n .lm_header .lm_controls .lm_tabdropdown {\n background-image: url('${LAYOUT_ICONS.tabDropdownSVG}');\n }\n\n .lm_header .lm_tabdropdown_list {\n top: var(--foundation-tab-height, ${DEFAULT_TAB_HEIGHT});\n right: 108px;\n background-color: var(--neutral-layer-3);\n border: 1px solid;\n border-color: var(--neutral-stroke-rest);\n border-radius: calc(var(--control-corner-radius) * 1.5px);\n box-shadow: 0 5px 15px rgb(0 0 0 / 35%);\n }\n\n .lm_header .lm_tabdropdown_list > .lm_tab {\n box-shadow: none;\n padding: 0 16px;\n white-space: nowrap;\n background-color: transparent;\n color: var(--neutral-foreground-rest);\n height: var(--foundation-tab-height, ${DEFAULT_TAB_HEIGHT});\n border-radius: 0;\n overflow: visible;\n text-overflow: normal;\n }\n\n .lm_header .lm_tabdropdown_list > .lm_tab:last-child {\n border-bottom: 0;\n }\n\n /* gl base styles start */\n .lm_root {\n position: relative;\n }\n\n .lm_row > .lm_item {\n float: left;\n }\n\n .lm_content {\n overflow: hidden;\n position: relative;\n }\n\n .lm_dragging,\n .lm_dragging * {\n cursor: move !important;\n user-select: none;\n }\n\n .lm_maximised {\n left: 0;\n padding: 1px;\n position: absolute;\n top: 0;\n z-index: 40;\n }\n\n .lm_maximise_placeholder {\n display: none;\n }\n\n .lm_splitter {\n position: relative;\n z-index: 20;\n }\n\n .lm_splitter:hover,\n .lm_splitter.lm_dragging {\n background: var(--accent-fill-rest);\n border-radius: calc(var(--control-corner-radius) * 4px);\n }\n\n .lm_splitter.lm_vertical .lm_drag_handle {\n width: 100%;\n height: 15px;\n position: absolute;\n top: -5px;\n cursor: ns-resize !important;\n }\n\n .lm_splitter.lm_horizontal {\n float: left;\n height: 100%;\n }\n\n .lm_splitter.lm_horizontal .lm_drag_handle {\n width: 15px;\n height: 100%;\n position: absolute;\n left: -5px;\n cursor: ew-resize !important;\n }\n\n .lm_header {\n overflow: visible;\n position: relative;\n }\n\n .lm_header [class^='lm_'] {\n box-sizing: content-box !important;\n }\n\n .lm_header .lm_controls {\n position: absolute;\n right: 3px;\n }\n\n .lm_header .lm_controls > li {\n cursor: pointer;\n float: left;\n width: 18px;\n height: 18px;\n text-align: center;\n }\n\n .lm_header ul {\n margin: 0;\n padding: 0;\n list-style-type: none;\n }\n\n .lm_header .lm_tabs {\n position: absolute;\n }\n\n .lm_header .lm_tab {\n cursor: pointer;\n float: left;\n margin-top: 1px;\n padding: 3px 25px 3px 10px;\n position: relative;\n }\n\n .lm_header .lm_tab i {\n width: 2px;\n height: 19px;\n position: absolute;\n }\n\n .lm_header .lm_tab i.lm_left {\n top: 0;\n left: -2px;\n }\n\n .lm_header .lm_tab i.lm_right {\n top: 0;\n right: -2px;\n }\n\n .lm_header .lm_tab .lm_title {\n display: inline-block;\n overflow: hidden;\n text-overflow: ellipsis;\n user-select: none;\n }\n\n .lm_header .lm_tab .lm_title:only-child {\n padding-left: 10px;\n }\n\n .lm_header .lm_tab .lm_close_tab {\n width: calc(var(--foundation-tab-height, ${DEFAULT_TAB_HEIGHT}) * 0.3888);\n height: calc(var(--foundation-tab-height, ${DEFAULT_TAB_HEIGHT}) * 0.3888);\n top: calc(var(--foundation-tab-height, ${DEFAULT_TAB_HEIGHT}) * 0.3055);\n position: absolute;\n right: 0;\n text-align: center;\n }\n\n .lm_stack.lm_left .lm_header,\n .lm_stack.lm_right .lm_header {\n height: 100%;\n }\n\n .lm_dragProxy.lm_left .lm_header,\n .lm_dragProxy.lm_right .lm_header,\n .lm_stack.lm_left .lm_header,\n .lm_stack.lm_right .lm_header {\n width: 20px;\n float: left;\n vertical-align: top;\n }\n\n .lm_dragProxy.lm_left .lm_header .lm_tabs,\n .lm_dragProxy.lm_right .lm_header .lm_tabs,\n .lm_stack.lm_left .lm_header .lm_tabs,\n .lm_stack.lm_right .lm_header .lm_tabs {\n transform-origin: left top;\n top: 0;\n width: 1000px;\n }\n\n .lm_dragProxy.lm_left .lm_header .lm_controls,\n .lm_dragProxy.lm_right .lm_header .lm_controls,\n .lm_stack.lm_left .lm_header .lm_controls,\n .lm_stack.lm_right .lm_header .lm_controls {\n bottom: 0;\n }\n\n .lm_dragProxy.lm_left .lm_items,\n .lm_dragProxy.lm_right .lm_items,\n .lm_stack.lm_left .lm_items,\n .lm_stack.lm_right .lm_items {\n float: left;\n }\n\n .lm_dragProxy.lm_left .lm_header .lm_tabs,\n .lm_stack.lm_left .lm_header .lm_tabs {\n transform: rotate(-90deg) scaleX(-1);\n left: 0;\n }\n\n .lm_dragProxy.lm_left .lm_header .lm_tabs .lm_tab,\n .lm_stack.lm_left .lm_header .lm_tabs .lm_tab {\n transform: scaleX(-1);\n margin-top: 1px;\n }\n\n .lm_dragProxy.lm_left .lm_header .lm_tabdropdown_list,\n .lm_stack.lm_left .lm_header .lm_tabdropdown_list {\n top: initial;\n right: initial;\n left: 20px;\n }\n\n .lm_dragProxy.lm_right .lm_content {\n float: left;\n }\n\n .lm_dragProxy.lm_right .lm_header .lm_tabs,\n .lm_stack.lm_right .lm_header .lm_tabs {\n transform: rotate(90deg) scaleX(1);\n left: 100%;\n margin-left: 0;\n }\n\n .lm_dragProxy.lm_right .lm_header .lm_controls,\n .lm_stack.lm_right .lm_header .lm_controls {\n left: 3px;\n }\n\n .lm_dragProxy.lm_right .lm_header .lm_tabdropdown_list,\n .lm_stack.lm_right .lm_header .lm_tabdropdown_list {\n top: initial;\n right: 20px;\n }\n\n .lm_dragProxy.lm_bottom .lm_header .lm_tab,\n .lm_stack.lm_bottom .lm_header .lm_tab {\n margin-top: 0;\n border-top: none;\n }\n\n .lm_dragProxy.lm_bottom .lm_header .lm_controls,\n .lm_stack.lm_bottom .lm_header .lm_controls {\n top: 3px;\n }\n\n .lm_dragProxy.lm_bottom .lm_header .lm_tabdropdown_list,\n .lm_stack.lm_bottom .lm_header .lm_tabdropdown_list {\n top: initial;\n bottom: 20px;\n }\n\n .lm_drop_tab_placeholder {\n float: left;\n width: 100px;\n height: 10px;\n visibility: hidden;\n }\n\n .lm_header .lm_tabdropdown_list {\n position: absolute;\n top: 20px;\n right: 0;\n z-index: 5;\n overflow: hidden;\n }\n\n .lm_header .lm_tabdropdown_list .lm_tab {\n clear: both;\n padding-right: 10px;\n margin: 0;\n }\n\n .lm_header .lm_tabdropdown_list .lm_tab .lm_title {\n width: 100px;\n }\n\n .lm_header .lm_tabdropdown_list .lm_close_tab {\n display: none !important;\n }\n\n .lm_dragProxy {\n position: absolute;\n top: 0;\n left: 0;\n z-index: 30;\n }\n\n .lm_dragProxy .lm_header {\n background: transparent;\n }\n\n .lm_dragProxy .lm_content {\n border-top: none;\n overflow: hidden;\n }\n\n .lm_dropTargetIndicator {\n display: none;\n position: absolute;\n z-index: 20;\n box-shadow: none;\n }\n\n .lm_dropTargetIndicator .lm_inner {\n width: 100%;\n height: 100%;\n position: relative;\n top: 0;\n left: 0;\n }\n\n .lm_transition_indicator {\n display: none;\n width: 20px;\n height: 20px;\n position: absolute;\n top: 0;\n left: 0;\n z-index: 20;\n }\n\n .lm_popin {\n width: 20px;\n height: 20px;\n position: absolute;\n bottom: 0;\n right: 0;\n z-index: 9999;\n }\n\n .lm_popin > * {\n width: 100%;\n height: 100%;\n position: absolute;\n top: 0;\n left: 0;\n }\n\n .lm_popin > .lm_bg {\n z-index: 10;\n }\n\n .lm_popin > .lm_icon {\n z-index: 20;\n } /*# sourceMappingURL=goldenlayout-base.css.map */\n`",
292
- "description": "`ElementStyles` which defines the css for FoundationLayout.",
293
- "privacy": "public"
294
- }
295
- ],
296
- "exports": [
297
- {
298
- "kind": "js",
299
- "name": "layoutStyles",
300
- "declaration": {
301
- "name": "layoutStyles",
302
- "module": "src/styles/layout.styles.ts"
238
+ "package": "./layout-components"
303
239
  }
304
240
  }
305
241
  ]
306
242
  },
307
243
  {
308
244
  "kind": "javascript-module",
309
- "path": "src/utils/constants.ts",
245
+ "path": "src/main/layout-components.ts",
310
246
  "declarations": [
311
247
  {
312
248
  "kind": "variable",
313
- "name": "DEFAULT_RELOAD_BUFFER",
249
+ "name": "foundationLayoutComponents",
314
250
  "type": {
315
- "text": "number"
251
+ "text": "object"
316
252
  },
317
- "default": "500",
318
- "description": "Default time in milliseconds for the layout to buffer calls to reloading\nthe layout while the declarative API is loading.\n\nDuring the first load of the layout, a loading spinner will be shown.",
253
+ "default": "{\n foundationLayout,\n foundationLayoutRegion,\n foundationLayoutItem,\n register(container?: Container, ...rest: any[]) {\n if (!container) {\n // preserve backward compatibility with code that loops through\n // the values of this object and calls them as funcs with no args\n return;\n }\n for (const key in this) {\n if (key === 'register') {\n continue;\n }\n this[key]().register(container, ...rest);\n }\n },\n}",
254
+ "description": "Registration object to register the layout with your design system.",
319
255
  "privacy": "public"
320
- },
321
- {
322
- "kind": "variable",
323
- "name": "LAYOUT_POPOUT_CONTROL_KEY",
324
- "type": {
325
- "text": "string"
326
- },
327
- "default": "'f-layout-key'",
328
- "description": "Key to be used for controlling popout behaviour"
329
- },
330
- {
331
- "kind": "variable",
332
- "name": "POPOUT_GEOMETRY_BROADCAST_INTERVAL",
333
- "type": {
334
- "text": "number"
335
- },
336
- "default": "1000",
337
- "description": "How often a popout window should check to broadcast its\ngeometry"
338
- },
339
- {
340
- "kind": "variable",
341
- "name": "LAYOUT_POPOUT_CONTAINER_CLASS",
342
- "type": {
343
- "text": "string"
344
- },
345
- "default": "'f-layout-popout'",
346
- "description": "Put this classname on an element which is a DOM parent of the layout, and\nif the layout goes into popout mode then it will place itself as the only child\nfor the popout container you set."
347
- },
348
- {
349
- "kind": "variable",
350
- "name": "DEFAULT_TAB_HEIGHT",
351
- "type": {
352
- "text": "string"
353
- },
354
- "default": "'36px'"
355
- },
356
- {
357
- "kind": "function",
358
- "name": "getLayoutHeaderHeight"
359
256
  }
360
257
  ],
361
258
  "exports": [
362
259
  {
363
260
  "kind": "js",
364
- "name": "DEFAULT_RELOAD_BUFFER",
365
- "declaration": {
366
- "name": "DEFAULT_RELOAD_BUFFER",
367
- "module": "src/utils/constants.ts"
368
- }
369
- },
370
- {
371
- "kind": "js",
372
- "name": "LAYOUT_POPOUT_CONTROL_KEY",
373
- "declaration": {
374
- "name": "LAYOUT_POPOUT_CONTROL_KEY",
375
- "module": "src/utils/constants.ts"
376
- }
377
- },
378
- {
379
- "kind": "js",
380
- "name": "POPOUT_GEOMETRY_BROADCAST_INTERVAL",
381
- "declaration": {
382
- "name": "POPOUT_GEOMETRY_BROADCAST_INTERVAL",
383
- "module": "src/utils/constants.ts"
384
- }
385
- },
386
- {
387
- "kind": "js",
388
- "name": "LAYOUT_POPOUT_CONTAINER_CLASS",
389
- "declaration": {
390
- "name": "LAYOUT_POPOUT_CONTAINER_CLASS",
391
- "module": "src/utils/constants.ts"
392
- }
393
- },
394
- {
395
- "kind": "js",
396
- "name": "DEFAULT_TAB_HEIGHT",
397
- "declaration": {
398
- "name": "DEFAULT_TAB_HEIGHT",
399
- "module": "src/utils/constants.ts"
400
- }
401
- },
402
- {
403
- "kind": "js",
404
- "name": "getLayoutHeaderHeight",
261
+ "name": "foundationLayoutComponents",
405
262
  "declaration": {
406
- "name": "getLayoutHeaderHeight",
407
- "module": "src/utils/constants.ts"
263
+ "name": "foundationLayoutComponents",
264
+ "module": "src/main/layout-components.ts"
408
265
  }
409
266
  }
410
267
  ]
411
268
  },
412
269
  {
413
270
  "kind": "javascript-module",
414
- "path": "src/utils/error.ts",
271
+ "path": "src/main/layout-item.ts",
415
272
  "declarations": [
416
273
  {
417
274
  "kind": "class",
418
275
  "description": "",
419
- "name": "LayoutUsageError",
420
- "superclass": {
421
- "name": "Error",
422
- "module": "src/utils/error.ts"
423
- }
424
- },
425
- {
426
- "kind": "class",
427
- "description": "",
428
- "name": "LayoutRegistrationError",
429
- "superclass": {
430
- "name": "Error",
431
- "module": "src/utils/error.ts"
432
- }
433
- }
434
- ],
435
- "exports": [
436
- {
437
- "kind": "js",
438
- "name": "LayoutUsageError",
439
- "declaration": {
440
- "name": "LayoutUsageError",
441
- "module": "src/utils/error.ts"
442
- }
443
- },
444
- {
445
- "kind": "js",
446
- "name": "LayoutRegistrationError",
447
- "declaration": {
448
- "name": "LayoutRegistrationError",
449
- "module": "src/utils/error.ts"
450
- }
451
- }
452
- ]
453
- },
454
- {
455
- "kind": "javascript-module",
456
- "path": "src/utils/events.ts",
457
- "declarations": [
458
- {
459
- "kind": "variable",
460
- "name": "LayoutEmitEvents",
461
- "type": {
462
- "text": "{\n firstLoaded: 'first-loaded',\n itemAdded: 'item-added',\n itemRemoved: 'item-removed',\n itemResized: 'item-resized',\n}"
463
- },
464
- "default": "{\n firstLoaded: 'first-loaded',\n itemAdded: 'item-added',\n itemRemoved: 'item-removed',\n itemResized: 'item-resized',\n}",
465
- "description": "Defines events that the layout system emits\n\n'firstLoaded' - emitted when the layout has finished loading the first time\nusing the declarative API after DEFAULT_RELOAD_BUFFER ms.\n<br/>\n'itemAdded' - emitted when an item is added to the layout'\n<br/>\n'itemRemoved' - emitted when an item is removed from the layout'\n<br/>\n'itemResized' - emitted when the user drags the divider to resize elements",
466
- "privacy": "public"
467
- },
468
- {
469
- "kind": "variable",
470
- "name": "LayoutReceiveEvents",
471
- "type": {
472
- "text": "{\n changeTitle: 'change-title',\n autosave: 'autosave',\n}"
473
- },
474
- "default": "{\n changeTitle: 'change-title',\n autosave: 'autosave',\n}",
475
- "description": "Defines events that the layout system listens for\n\n'changeTitle' - emit this from a contained item to update the title of the window that contains it.\n'autosave' - emit this from a contained item to hint to the layout system that it should autosave the layout. A contained item should do this if it has just changed some state it would like to persist. See LayoutComponentWithState.",
476
- "privacy": "public"
477
- }
478
- ],
479
- "exports": [
480
- {
481
- "kind": "js",
482
- "name": "LayoutEmitEvents",
483
- "declaration": {
484
- "name": "LayoutEmitEvents",
485
- "module": "src/utils/events.ts"
486
- }
487
- },
488
- {
489
- "kind": "js",
490
- "name": "LayoutReceiveEvents",
491
- "declaration": {
492
- "name": "LayoutReceiveEvents",
493
- "module": "src/utils/events.ts"
494
- }
495
- }
496
- ]
497
- },
498
- {
499
- "kind": "javascript-module",
500
- "path": "src/utils/factory-registry.ts",
501
- "declarations": [
502
- {
503
- "kind": "function",
504
- "name": "registerFactory",
505
- "return": {
506
- "type": {
507
- "text": "void"
508
- }
509
- },
510
- "parameters": [
276
+ "name": "FoundationLayoutItem",
277
+ "members": [
511
278
  {
512
- "name": "key",
279
+ "kind": "field",
280
+ "name": "title",
513
281
  "type": {
514
282
  "text": "string"
515
283
  },
516
- "description": "Unique identifier for the factory. Should be descriptive and unique across the application."
284
+ "description": "Sets the title of the item which is displayed on the tab.",
285
+ "privacy": "public"
517
286
  },
518
287
  {
519
- "name": "factory",
288
+ "kind": "field",
289
+ "name": "closable",
520
290
  "type": {
521
- "text": "ComponentFactory"
291
+ "text": "boolean"
522
292
  },
523
- "description": "The factory function that creates the component."
524
- }
525
- ],
526
- "description": "Registers a factory function with a unique key.\nThis allows framework components to be used in the declarative layout API\nwithout needing to pass function references through HTML attributes.",
527
- "privacy": "public"
528
- },
529
- {
530
- "kind": "function",
531
- "name": "getFactory",
532
- "return": {
533
- "type": {
534
- "text": ""
535
- }
536
- },
537
- "parameters": [
293
+ "default": "false",
294
+ "description": "Boolean attribute controls whether the window can be closed in the GUI.\nDefaults to `false`.",
295
+ "privacy": "public"
296
+ },
538
297
  {
539
- "name": "key",
298
+ "kind": "field",
299
+ "name": "size",
540
300
  "type": {
541
301
  "text": "string"
542
302
  },
543
- "description": "The unique identifier for the factory."
303
+ "description": "optional string describing the size of the new item (see the written documentation for more info)",
304
+ "privacy": "public"
305
+ },
306
+ {
307
+ "kind": "field",
308
+ "name": "registration",
309
+ "type": {
310
+ "text": "string"
311
+ },
312
+ "description": "Sets the registration name for the item, which can be used later to add the item via the JavaScript API using FoundationLayout.addItem.",
313
+ "privacy": "public"
314
+ },
315
+ {
316
+ "kind": "field",
317
+ "name": "_presentation",
318
+ "type": {
319
+ "text": "ComponentPresentation | null | undefined"
320
+ },
321
+ "privacy": "private",
322
+ "default": "void 0",
323
+ "inheritedFrom": {
324
+ "name": "FoundationElement",
325
+ "module": "src/foundation-element/foundation-element.ts"
326
+ }
327
+ },
328
+ {
329
+ "kind": "field",
330
+ "name": "$presentation",
331
+ "type": {
332
+ "text": "ComponentPresentation | null"
333
+ },
334
+ "privacy": "public",
335
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
336
+ "inheritedFrom": {
337
+ "name": "FoundationElement",
338
+ "module": "src/foundation-element/foundation-element.ts"
339
+ }
340
+ },
341
+ {
342
+ "kind": "field",
343
+ "name": "template",
344
+ "type": {
345
+ "text": "ElementViewTemplate | void | null"
346
+ },
347
+ "privacy": "public",
348
+ "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
349
+ "inheritedFrom": {
350
+ "name": "FoundationElement",
351
+ "module": "src/foundation-element/foundation-element.ts"
352
+ }
353
+ },
354
+ {
355
+ "kind": "method",
356
+ "name": "templateChanged",
357
+ "privacy": "protected",
358
+ "return": {
359
+ "type": {
360
+ "text": "void"
361
+ }
362
+ },
363
+ "inheritedFrom": {
364
+ "name": "FoundationElement",
365
+ "module": "src/foundation-element/foundation-element.ts"
366
+ }
367
+ },
368
+ {
369
+ "kind": "field",
370
+ "name": "styles",
371
+ "type": {
372
+ "text": "ElementStyles | void | null"
373
+ },
374
+ "privacy": "public",
375
+ "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
376
+ "inheritedFrom": {
377
+ "name": "FoundationElement",
378
+ "module": "src/foundation-element/foundation-element.ts"
379
+ }
380
+ },
381
+ {
382
+ "kind": "method",
383
+ "name": "stylesChanged",
384
+ "privacy": "protected",
385
+ "return": {
386
+ "type": {
387
+ "text": "void"
388
+ }
389
+ },
390
+ "inheritedFrom": {
391
+ "name": "FoundationElement",
392
+ "module": "src/foundation-element/foundation-element.ts"
393
+ }
394
+ },
395
+ {
396
+ "kind": "method",
397
+ "name": "compose",
398
+ "privacy": "public",
399
+ "static": true,
400
+ "return": {
401
+ "type": {
402
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
403
+ }
404
+ },
405
+ "parameters": [
406
+ {
407
+ "name": "this",
408
+ "type": {
409
+ "text": "K"
410
+ }
411
+ },
412
+ {
413
+ "name": "elementDefinition",
414
+ "type": {
415
+ "text": "T"
416
+ },
417
+ "description": "The definition of the element to create the registry\nfunction for."
418
+ }
419
+ ],
420
+ "description": "Defines an element registry function with a set of element definition defaults.",
421
+ "inheritedFrom": {
422
+ "name": "FoundationElement",
423
+ "module": "src/foundation-element/foundation-element.ts"
424
+ }
544
425
  }
545
426
  ],
546
- "description": "Retrieves a factory function by its key.",
547
- "privacy": "public"
548
- },
549
- {
550
- "kind": "function",
551
- "name": "unregisterFactory",
552
- "return": {
553
- "type": {
554
- "text": ""
555
- }
556
- },
557
- "parameters": [
427
+ "attributes": [
558
428
  {
559
- "name": "key",
429
+ "name": "title",
560
430
  "type": {
561
431
  "text": "string"
562
432
  },
563
- "description": "The unique identifier for the factory to remove."
433
+ "description": "Sets the title of the item which is displayed on the tab.",
434
+ "fieldName": "title"
435
+ },
436
+ {
437
+ "type": {
438
+ "text": "boolean"
439
+ },
440
+ "default": "false",
441
+ "description": "Boolean attribute controls whether the window can be closed in the GUI.\nDefaults to `false`.",
442
+ "fieldName": "closable"
443
+ },
444
+ {
445
+ "name": "size",
446
+ "type": {
447
+ "text": "string"
448
+ },
449
+ "description": "optional string describing the size of the new item (see the written documentation for more info)",
450
+ "fieldName": "size"
451
+ },
452
+ {
453
+ "name": "registration",
454
+ "type": {
455
+ "text": "string"
456
+ },
457
+ "description": "Sets the registration name for the item, which can be used later to add the item via the JavaScript API using FoundationLayout.addItem.",
458
+ "fieldName": "registration"
564
459
  }
565
460
  ],
566
- "description": "Removes a factory from the registry.\nThis is useful for cleanup when a component is unmounted or no longer needed.",
567
- "privacy": "public"
461
+ "superclass": {
462
+ "name": "FoundationElement",
463
+ "package": "@microsoft/fast-foundation"
464
+ },
465
+ "tagName": "%%prefix%%-layout-item",
466
+ "customElement": true
568
467
  }
569
468
  ],
570
469
  "exports": [
571
470
  {
572
471
  "kind": "js",
573
- "name": "registerFactory",
472
+ "name": "FoundationLayoutItem",
574
473
  "declaration": {
575
- "name": "registerFactory",
576
- "module": "src/utils/factory-registry.ts"
577
- }
578
- },
579
- {
580
- "kind": "js",
581
- "name": "getFactory",
582
- "declaration": {
583
- "name": "getFactory",
584
- "module": "src/utils/factory-registry.ts"
585
- }
586
- },
587
- {
588
- "kind": "js",
589
- "name": "unregisterFactory",
590
- "declaration": {
591
- "name": "unregisterFactory",
592
- "module": "src/utils/factory-registry.ts"
593
- }
594
- }
595
- ]
596
- },
597
- {
598
- "kind": "javascript-module",
599
- "path": "src/utils/index.ts",
600
- "declarations": [],
601
- "exports": [
602
- {
603
- "kind": "js",
604
- "name": "*",
605
- "declaration": {
606
- "name": "*",
607
- "package": "./constants"
608
- }
609
- },
610
- {
611
- "kind": "js",
612
- "name": "*",
613
- "declaration": {
614
- "name": "*",
615
- "package": "./error"
616
- }
617
- },
618
- {
619
- "kind": "js",
620
- "name": "*",
621
- "declaration": {
622
- "name": "*",
623
- "package": "./events"
624
- }
625
- },
626
- {
627
- "kind": "js",
628
- "name": "*",
629
- "declaration": {
630
- "name": "*",
631
- "package": "./factory-registry"
632
- }
633
- },
634
- {
635
- "kind": "js",
636
- "name": "*",
637
- "declaration": {
638
- "name": "*",
639
- "package": "./misc"
640
- }
641
- },
642
- {
643
- "kind": "js",
644
- "name": "*",
645
- "declaration": {
646
- "name": "*",
647
- "package": "./templates"
648
- }
649
- },
650
- {
651
- "kind": "js",
652
- "name": "*",
653
- "declaration": {
654
- "name": "*",
655
- "package": "./popout-events"
656
- }
657
- },
658
- {
659
- "kind": "js",
660
- "name": "*",
661
- "declaration": {
662
- "name": "*",
663
- "package": "./types"
664
- }
665
- },
666
- {
667
- "kind": "js",
668
- "name": "*",
669
- "declaration": {
670
- "name": "*",
671
- "package": "./error"
672
- }
673
- }
674
- ]
675
- },
676
- {
677
- "kind": "javascript-module",
678
- "path": "src/utils/logger.ts",
679
- "declarations": [
680
- {
681
- "kind": "variable",
682
- "name": "logger"
683
- }
684
- ],
685
- "exports": [
686
- {
687
- "kind": "js",
688
- "name": "logger",
689
- "declaration": {
690
- "name": "logger",
691
- "module": "src/utils/logger.ts"
692
- }
693
- }
694
- ]
695
- },
696
- {
697
- "kind": "javascript-module",
698
- "path": "src/utils/misc.ts",
699
- "declarations": [],
700
- "exports": []
701
- },
702
- {
703
- "kind": "javascript-module",
704
- "path": "src/utils/popout-events.ts",
705
- "declarations": [
706
- {
707
- "kind": "variable",
708
- "name": "LAYOUT_POPOUT_CHANNEL_NAME",
709
- "type": {
710
- "text": "string"
711
- },
712
- "default": "'f-layout-popout-channel'",
713
- "description": "Name of the default broadcast channel used for layout popouts",
714
- "privacy": "public"
715
- }
716
- ],
717
- "exports": [
718
- {
719
- "kind": "js",
720
- "name": "LAYOUT_POPOUT_CHANNEL_NAME",
721
- "declaration": {
722
- "name": "LAYOUT_POPOUT_CHANNEL_NAME",
723
- "module": "src/utils/popout-events.ts"
724
- }
725
- },
726
- {
727
- "kind": "js",
728
- "name": "PopoutGeometry",
729
- "declaration": {
730
- "name": "PopoutGeometry",
731
- "module": "src/utils/popout-events.ts"
732
- }
733
- }
734
- ]
735
- },
736
- {
737
- "kind": "javascript-module",
738
- "path": "src/utils/templates.ts",
739
- "declarations": [],
740
- "exports": []
741
- },
742
- {
743
- "kind": "javascript-module",
744
- "path": "src/utils/types.ts",
745
- "declarations": [],
746
- "exports": []
747
- },
748
- {
749
- "kind": "javascript-module",
750
- "path": "src/main/index.ts",
751
- "declarations": [],
752
- "exports": [
753
- {
754
- "kind": "js",
755
- "name": "FoundationLayoutItem",
756
- "declaration": {
757
- "name": "FoundationLayoutItem",
758
- "module": "./layout-item"
759
- }
760
- },
761
- {
762
- "kind": "js",
763
- "name": "FoundationLayoutRegion",
764
- "declaration": {
765
- "name": "FoundationLayoutRegion",
766
- "module": "./layout-region"
767
- }
768
- },
769
- {
770
- "kind": "js",
771
- "name": "FoundationLayout",
772
- "declaration": {
773
- "name": "FoundationLayout",
774
- "module": "./layout-main"
775
- }
776
- },
777
- {
778
- "kind": "js",
779
- "name": "layoutStyles",
780
- "declaration": {
781
- "name": "layoutStyles",
782
- "module": "./layout-main"
783
- }
784
- },
785
- {
786
- "kind": "js",
787
- "name": "layoutTemplate",
788
- "declaration": {
789
- "name": "layoutTemplate",
790
- "module": "./layout-main"
791
- }
792
- },
793
- {
794
- "kind": "js",
795
- "name": "*",
796
- "declaration": {
797
- "name": "*",
798
- "package": "./layout-components"
799
- }
800
- }
801
- ]
802
- },
803
- {
804
- "kind": "javascript-module",
805
- "path": "src/main/layout-components.ts",
806
- "declarations": [
807
- {
808
- "kind": "variable",
809
- "name": "foundationLayoutComponents",
810
- "type": {
811
- "text": "object"
812
- },
813
- "default": "{\n foundationLayout,\n foundationLayoutRegion,\n foundationLayoutItem,\n register(container?: Container, ...rest: any[]) {\n if (!container) {\n // preserve backward compatibility with code that loops through\n // the values of this object and calls them as funcs with no args\n return;\n }\n for (const key in this) {\n if (key === 'register') {\n continue;\n }\n this[key]().register(container, ...rest);\n }\n },\n}",
814
- "description": "Registration object to register the layout with your design system.",
815
- "privacy": "public"
816
- }
817
- ],
818
- "exports": [
819
- {
820
- "kind": "js",
821
- "name": "foundationLayoutComponents",
822
- "declaration": {
823
- "name": "foundationLayoutComponents",
824
- "module": "src/main/layout-components.ts"
474
+ "name": "FoundationLayoutItem",
475
+ "module": "src/main/layout-item.ts"
825
476
  }
826
477
  }
827
478
  ]
828
479
  },
829
480
  {
830
481
  "kind": "javascript-module",
831
- "path": "src/main/layout-item.ts",
482
+ "path": "src/main/layout-main.ts",
832
483
  "declarations": [
833
484
  {
834
485
  "kind": "class",
835
486
  "description": "",
836
- "name": "FoundationLayoutItem",
487
+ "name": "FoundationLayout",
837
488
  "members": [
838
489
  {
839
490
  "kind": "field",
840
- "name": "title",
491
+ "name": "layout",
841
492
  "type": {
842
- "text": "string"
493
+ "text": "GoldenLayout"
843
494
  },
844
- "description": "Sets the title of the item which is displayed on the tab.",
845
- "privacy": "public"
495
+ "privacy": "private"
846
496
  },
847
497
  {
848
498
  "kind": "field",
849
- "name": "closable",
850
- "type": {
851
- "text": "boolean"
852
- },
853
- "default": "false",
854
- "description": "Boolean attribute controls whether the window can be closed in the GUI.\nDefaults to `false`.",
855
- "privacy": "public"
856
- },
857
- {
858
- "kind": "field",
859
- "name": "size",
860
- "type": {
861
- "text": "string"
862
- },
863
- "description": "optional string describing the size of the new item (see the written documentation for more info)",
864
- "privacy": "public"
865
- },
866
- {
867
- "kind": "field",
868
- "name": "registration",
869
- "type": {
870
- "text": "string"
871
- },
872
- "description": "Sets the registration name for the item, which can be used later to add the item via the JavaScript API using FoundationLayout.addItem.",
873
- "privacy": "public"
874
- },
875
- {
876
- "kind": "field",
877
- "name": "_presentation",
878
- "type": {
879
- "text": "ComponentPresentation | null | undefined"
880
- },
881
- "privacy": "private",
882
- "default": "void 0",
883
- "inheritedFrom": {
884
- "name": "FoundationElement",
885
- "module": "src/foundation-element/foundation-element.ts"
886
- }
887
- },
888
- {
889
- "kind": "field",
890
- "name": "$presentation",
891
- "type": {
892
- "text": "ComponentPresentation | null"
893
- },
894
- "privacy": "public",
895
- "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
896
- "inheritedFrom": {
897
- "name": "FoundationElement",
898
- "module": "src/foundation-element/foundation-element.ts"
899
- }
900
- },
901
- {
902
- "kind": "field",
903
- "name": "template",
904
- "type": {
905
- "text": "ElementViewTemplate | void | null"
906
- },
907
- "privacy": "public",
908
- "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
909
- "inheritedFrom": {
910
- "name": "FoundationElement",
911
- "module": "src/foundation-element/foundation-element.ts"
912
- }
913
- },
914
- {
915
- "kind": "method",
916
- "name": "templateChanged",
917
- "privacy": "protected",
918
- "return": {
919
- "type": {
920
- "text": "void"
921
- }
922
- },
923
- "inheritedFrom": {
924
- "name": "FoundationElement",
925
- "module": "src/foundation-element/foundation-element.ts"
926
- }
927
- },
928
- {
929
- "kind": "field",
930
- "name": "styles",
931
- "type": {
932
- "text": "ElementStyles | void | null"
933
- },
934
- "privacy": "public",
935
- "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
936
- "inheritedFrom": {
937
- "name": "FoundationElement",
938
- "module": "src/foundation-element/foundation-element.ts"
939
- }
940
- },
941
- {
942
- "kind": "method",
943
- "name": "stylesChanged",
944
- "privacy": "protected",
945
- "return": {
946
- "type": {
947
- "text": "void"
948
- }
949
- },
950
- "inheritedFrom": {
951
- "name": "FoundationElement",
952
- "module": "src/foundation-element/foundation-element.ts"
953
- }
954
- },
955
- {
956
- "kind": "method",
957
- "name": "compose",
958
- "privacy": "public",
959
- "static": true,
960
- "return": {
961
- "type": {
962
- "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
963
- }
964
- },
965
- "parameters": [
966
- {
967
- "name": "this",
968
- "type": {
969
- "text": "K"
970
- }
971
- },
972
- {
973
- "name": "elementDefinition",
974
- "type": {
975
- "text": "T"
976
- },
977
- "description": "The definition of the element to create the registry\nfunction for."
978
- }
979
- ],
980
- "description": "Defines an element registry function with a set of element definition defaults.",
981
- "inheritedFrom": {
982
- "name": "FoundationElement",
983
- "module": "src/foundation-element/foundation-element.ts"
984
- }
985
- }
986
- ],
987
- "attributes": [
988
- {
989
- "name": "title",
990
- "type": {
991
- "text": "string"
992
- },
993
- "description": "Sets the title of the item which is displayed on the tab.",
994
- "fieldName": "title"
995
- },
996
- {
997
- "type": {
998
- "text": "boolean"
999
- },
1000
- "default": "false",
1001
- "description": "Boolean attribute controls whether the window can be closed in the GUI.\nDefaults to `false`.",
1002
- "fieldName": "closable"
1003
- },
1004
- {
1005
- "name": "size",
1006
- "type": {
1007
- "text": "string"
1008
- },
1009
- "description": "optional string describing the size of the new item (see the written documentation for more info)",
1010
- "fieldName": "size"
1011
- },
1012
- {
1013
- "name": "registration",
1014
- "type": {
1015
- "text": "string"
1016
- },
1017
- "description": "Sets the registration name for the item, which can be used later to add the item via the JavaScript API using FoundationLayout.addItem.",
1018
- "fieldName": "registration"
1019
- }
1020
- ],
1021
- "superclass": {
1022
- "name": "FoundationElement",
1023
- "package": "@microsoft/fast-foundation"
1024
- },
1025
- "tagName": "%%prefix%%-layout-item",
1026
- "customElement": true
1027
- }
1028
- ],
1029
- "exports": [
1030
- {
1031
- "kind": "js",
1032
- "name": "FoundationLayoutItem",
1033
- "declaration": {
1034
- "name": "FoundationLayoutItem",
1035
- "module": "src/main/layout-item.ts"
1036
- }
1037
- }
1038
- ]
1039
- },
1040
- {
1041
- "kind": "javascript-module",
1042
- "path": "src/main/layout-main.ts",
1043
- "declarations": [
1044
- {
1045
- "kind": "class",
1046
- "description": "",
1047
- "name": "FoundationLayout",
1048
- "members": [
1049
- {
1050
- "kind": "field",
1051
- "name": "layout",
1052
- "type": {
1053
- "text": "GoldenLayout"
1054
- },
1055
- "privacy": "private"
1056
- },
1057
- {
1058
- "kind": "field",
1059
- "name": "layoutConfig",
499
+ "name": "layoutConfig",
1060
500
  "type": {
1061
501
  "text": "LayoutConfig"
1062
502
  },
@@ -1817,202 +1257,762 @@
1817
1257
  "exports": [
1818
1258
  {
1819
1259
  "kind": "js",
1820
- "name": "FoundationLayoutPopoutController",
1260
+ "name": "FoundationLayoutPopoutController",
1261
+ "declaration": {
1262
+ "name": "FoundationLayoutPopoutController",
1263
+ "module": "src/main/layout-popout-controller.ts"
1264
+ }
1265
+ },
1266
+ {
1267
+ "kind": "custom-element-definition",
1268
+ "name": "foundation-layout-popout-controller",
1269
+ "declaration": {
1270
+ "name": "FoundationLayoutPopoutController",
1271
+ "module": "src/main/layout-popout-controller.ts"
1272
+ }
1273
+ }
1274
+ ]
1275
+ },
1276
+ {
1277
+ "kind": "javascript-module",
1278
+ "path": "src/main/layout-region.ts",
1279
+ "declarations": [
1280
+ {
1281
+ "kind": "class",
1282
+ "description": "",
1283
+ "name": "FoundationLayoutRegion",
1284
+ "members": [
1285
+ {
1286
+ "kind": "field",
1287
+ "name": "size",
1288
+ "type": {
1289
+ "text": "string"
1290
+ },
1291
+ "description": "optional string describing the size of the new item (see the written documentation for more info)",
1292
+ "privacy": "public"
1293
+ },
1294
+ {
1295
+ "kind": "field",
1296
+ "name": "type",
1297
+ "type": {
1298
+ "text": "LayoutRegionType"
1299
+ },
1300
+ "default": "layoutRegionValue[0]",
1301
+ "description": "Defines the LayoutRegionType| type of the region.\nDefaults to `horizontal`.",
1302
+ "privacy": "public"
1303
+ },
1304
+ {
1305
+ "kind": "field",
1306
+ "name": "_presentation",
1307
+ "type": {
1308
+ "text": "ComponentPresentation | null | undefined"
1309
+ },
1310
+ "privacy": "private",
1311
+ "default": "void 0",
1312
+ "inheritedFrom": {
1313
+ "name": "FoundationElement",
1314
+ "module": "src/foundation-element/foundation-element.ts"
1315
+ }
1316
+ },
1317
+ {
1318
+ "kind": "field",
1319
+ "name": "$presentation",
1320
+ "type": {
1321
+ "text": "ComponentPresentation | null"
1322
+ },
1323
+ "privacy": "public",
1324
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
1325
+ "inheritedFrom": {
1326
+ "name": "FoundationElement",
1327
+ "module": "src/foundation-element/foundation-element.ts"
1328
+ }
1329
+ },
1330
+ {
1331
+ "kind": "field",
1332
+ "name": "template",
1333
+ "type": {
1334
+ "text": "ElementViewTemplate | void | null"
1335
+ },
1336
+ "privacy": "public",
1337
+ "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
1338
+ "inheritedFrom": {
1339
+ "name": "FoundationElement",
1340
+ "module": "src/foundation-element/foundation-element.ts"
1341
+ }
1342
+ },
1343
+ {
1344
+ "kind": "method",
1345
+ "name": "templateChanged",
1346
+ "privacy": "protected",
1347
+ "return": {
1348
+ "type": {
1349
+ "text": "void"
1350
+ }
1351
+ },
1352
+ "inheritedFrom": {
1353
+ "name": "FoundationElement",
1354
+ "module": "src/foundation-element/foundation-element.ts"
1355
+ }
1356
+ },
1357
+ {
1358
+ "kind": "field",
1359
+ "name": "styles",
1360
+ "type": {
1361
+ "text": "ElementStyles | void | null"
1362
+ },
1363
+ "privacy": "public",
1364
+ "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
1365
+ "inheritedFrom": {
1366
+ "name": "FoundationElement",
1367
+ "module": "src/foundation-element/foundation-element.ts"
1368
+ }
1369
+ },
1370
+ {
1371
+ "kind": "method",
1372
+ "name": "stylesChanged",
1373
+ "privacy": "protected",
1374
+ "return": {
1375
+ "type": {
1376
+ "text": "void"
1377
+ }
1378
+ },
1379
+ "inheritedFrom": {
1380
+ "name": "FoundationElement",
1381
+ "module": "src/foundation-element/foundation-element.ts"
1382
+ }
1383
+ },
1384
+ {
1385
+ "kind": "method",
1386
+ "name": "compose",
1387
+ "privacy": "public",
1388
+ "static": true,
1389
+ "return": {
1390
+ "type": {
1391
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
1392
+ }
1393
+ },
1394
+ "parameters": [
1395
+ {
1396
+ "name": "this",
1397
+ "type": {
1398
+ "text": "K"
1399
+ }
1400
+ },
1401
+ {
1402
+ "name": "elementDefinition",
1403
+ "type": {
1404
+ "text": "T"
1405
+ },
1406
+ "description": "The definition of the element to create the registry\nfunction for."
1407
+ }
1408
+ ],
1409
+ "description": "Defines an element registry function with a set of element definition defaults.",
1410
+ "inheritedFrom": {
1411
+ "name": "FoundationElement",
1412
+ "module": "src/foundation-element/foundation-element.ts"
1413
+ }
1414
+ }
1415
+ ],
1416
+ "attributes": [
1417
+ {
1418
+ "name": "size",
1419
+ "type": {
1420
+ "text": "string"
1421
+ },
1422
+ "description": "optional string describing the size of the new item (see the written documentation for more info)",
1423
+ "fieldName": "size"
1424
+ },
1425
+ {
1426
+ "name": "type",
1427
+ "type": {
1428
+ "text": "LayoutRegionType"
1429
+ },
1430
+ "default": "defaultLayoutType",
1431
+ "description": "Defines the LayoutRegionType| type of the region.\nDefaults to `horizontal`.",
1432
+ "resolveInitializer": {
1433
+ "module": "src/main/layout-region.ts"
1434
+ },
1435
+ "fieldName": "type"
1436
+ }
1437
+ ],
1438
+ "superclass": {
1439
+ "name": "FoundationElement",
1440
+ "package": "@microsoft/fast-foundation"
1441
+ },
1442
+ "tagName": "%%prefix%%-layout-region",
1443
+ "customElement": true
1444
+ }
1445
+ ],
1446
+ "exports": [
1447
+ {
1448
+ "kind": "js",
1449
+ "name": "FoundationLayoutRegion",
1450
+ "declaration": {
1451
+ "name": "FoundationLayoutRegion",
1452
+ "module": "src/main/layout-region.ts"
1453
+ }
1454
+ }
1455
+ ]
1456
+ },
1457
+ {
1458
+ "kind": "javascript-module",
1459
+ "path": "src/styles/constants.ts",
1460
+ "declarations": [
1461
+ {
1462
+ "kind": "function",
1463
+ "name": "glVisualConfig",
1464
+ "return": {
1465
+ "type": {
1466
+ "text": "Omit<LayoutConfig, 'root'>"
1467
+ }
1468
+ }
1469
+ },
1470
+ {
1471
+ "kind": "variable",
1472
+ "name": "LAYOUT_ICONS",
1473
+ "type": {
1474
+ "text": "{\n renameSVG,\n maximiseSVG,\n minimiseSVG,\n closeSVG,\n tabDropdownSVG,\n popoutSVG,\n}"
1475
+ },
1476
+ "default": "{\n renameSVG,\n maximiseSVG,\n minimiseSVG,\n closeSVG,\n tabDropdownSVG,\n popoutSVG,\n}",
1477
+ "description": "A collection of SVG icons in base64 format.",
1478
+ "privacy": "public"
1479
+ }
1480
+ ],
1481
+ "exports": [
1482
+ {
1483
+ "kind": "js",
1484
+ "name": "glVisualConfig",
1485
+ "declaration": {
1486
+ "name": "glVisualConfig",
1487
+ "module": "src/styles/constants.ts"
1488
+ }
1489
+ },
1490
+ {
1491
+ "kind": "js",
1492
+ "name": "LAYOUT_ICONS",
1493
+ "declaration": {
1494
+ "name": "LAYOUT_ICONS",
1495
+ "module": "src/styles/constants.ts"
1496
+ }
1497
+ }
1498
+ ]
1499
+ },
1500
+ {
1501
+ "kind": "javascript-module",
1502
+ "path": "src/styles/dragging.styles.ts",
1503
+ "declarations": [
1504
+ {
1505
+ "kind": "variable",
1506
+ "name": "globalDraggingStyles",
1507
+ "default": "`\n .lm_dragProxy .lm_content {\n box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);\n }\n .lm_dropTargetIndicator {\n outline: 1px dashed #cccccc;\n transition: all 200ms ease;\n }\n .lm_dropTargetIndicator .lm_inner {\n background: var(${neutralFillStealthRest.cssCustomProperty});\n opacity: 0.2;\n }\n .lm_dragProxy.lm_left .lm_header,\n .lm_dragProxy.lm_right .lm_header {\n width: 20px;\n float: left;\n vertical-align: top;\n }\n .lm_dragProxy.lm_left .lm_header .lm_tabs,\n .lm_dragProxy.lm_right .lm_header .lm_tabs {\n transform-origin: left top;\n top: 0;\n width: 1000px;\n }\n .lm_dragProxy.lm_left .lm_header .lm_controls,\n .lm_dragProxy.lm_right .lm_header .lm_controls {\n bottom: 0;\n }\n .lm_dragProxy.lm_left .lm_items,\n .lm_dragProxy.lm_right .lm_items {\n float: left;\n }\n .lm_dragProxy.lm_left .lm_header .lm_tabs {\n transform: rotate(-90deg) scaleX(-1);\n left: 0;\n }\n .lm_dragProxy.lm_left .lm_header .lm_tabs .lm_tab {\n transform: scaleX(-1);\n margin-top: 1px;\n }\n .lm_dragProxy.lm_left .lm_header .lm_tabdropdown_list {\n top: initial;\n right: initial;\n left: 20px;\n }\n .lm_dragProxy.lm_right .lm_content {\n float: left;\n }\n .lm_dragProxy.lm_right .lm_header .lm_tabs {\n transform: rotate(90deg) scaleX(1);\n left: 100%;\n margin-left: 0;\n }\n .lm_dragProxy.lm_right .lm_header .lm_controls {\n left: 3px;\n }\n .lm_dragProxy.lm_right .lm_header .lm_tabdropdown_list {\n top: initial;\n right: 20px;\n }\n .lm_dragProxy.lm_bottom .lm_header .lm_tab {\n margin-top: 0;\n border-top: none;\n }\n .lm_dragProxy.lm_bottom .lm_header .lm_controls,\n .lm_stack.lm_bottom .lm_header .lm_controls {\n top: 3px;\n }\n .lm_dragProxy.lm_bottom .lm_header .lm_tabdropdown_list,\n .lm_stack.lm_bottom .lm_header .lm_tabdropdown_list {\n top: initial;\n bottom: 20px;\n }\n .lm_dragProxy {\n cursor: move;\n position: absolute;\n top: 0;\n left: 0;\n z-index: 30;\n }\n .lm_dragProxy .lm_header {\n background: transparent;\n }\n .lm_dragProxy .lm_title {\n color: white;\n padding-left: 10px;\n }\n .lm_dragProxy .lm_content {\n border-top: none;\n overflow: hidden;\n }\n .lm_dropTargetIndicator {\n display: none;\n position: absolute;\n z-index: 20;\n }\n .lm_dropTargetIndicator .lm_inner {\n width: 100%;\n height: 100%;\n position: relative;\n top: 0;\n left: 0;\n }\n .lm_transition_indicator {\n display: none;\n width: 20px;\n height: 20px;\n position: absolute;\n top: 0;\n left: 0;\n z-index: 20;\n }\n`",
1508
+ "description": "This is defined as a string rather than a css template\nbecause it is applied to a CSSStyleSheet object rather than\nused as a FAST template"
1509
+ }
1510
+ ],
1511
+ "exports": [
1512
+ {
1513
+ "kind": "js",
1514
+ "name": "globalDraggingStyles",
1515
+ "declaration": {
1516
+ "name": "globalDraggingStyles",
1517
+ "module": "src/styles/dragging.styles.ts"
1518
+ }
1519
+ }
1520
+ ]
1521
+ },
1522
+ {
1523
+ "kind": "javascript-module",
1524
+ "path": "src/styles/index.ts",
1525
+ "declarations": [],
1526
+ "exports": [
1527
+ {
1528
+ "kind": "js",
1529
+ "name": "*",
1530
+ "declaration": {
1531
+ "name": "*",
1532
+ "package": "./constants"
1533
+ }
1534
+ },
1535
+ {
1536
+ "kind": "js",
1537
+ "name": "*",
1538
+ "declaration": {
1539
+ "name": "*",
1540
+ "package": "./dragging.styles"
1541
+ }
1542
+ },
1543
+ {
1544
+ "kind": "js",
1545
+ "name": "*",
1546
+ "declaration": {
1547
+ "name": "*",
1548
+ "package": "./layout.styles"
1549
+ }
1550
+ }
1551
+ ]
1552
+ },
1553
+ {
1554
+ "kind": "javascript-module",
1555
+ "path": "src/styles/layout.styles.ts",
1556
+ "declarations": [
1557
+ {
1558
+ "kind": "variable",
1559
+ "name": "layoutStyles",
1560
+ "default": "css`\n ${containerStyles}\n ${loadingSpinnerStyles}\n\n :host {\n --foundation-tab-height: calc(\n (((var(--base-height-multiplier) + var(--density)) * var(--design-unit)) - 4) * 1px\n );\n }\n\n .lm_goldenlayout {\n border-radius: calc(var(--control-corner-radius) * 1.5px);\n }\n\n .lm_stack.lm_item {\n background-color: var(--neutral-layer-3);\n border-radius: calc(var(--control-corner-radius) * 1.5px);\n }\n\n .lm_maximised .lm_header {\n background-color: var(--neutral-layer-3);\n border-radius: calc(var(--control-corner-radius) * 1.5px);\n position: unset;\n }\n\n .lm_maximised .lm_header .lm_tabs {\n z-index: 3;\n }\n\n .lm_content {\n background-color: var(--neutral-layer-card-container);\n border-radius: calc(var(--control-corner-radius) * 1.5px);\n border: 1px solid;\n border-color: var(--neutral-stroke-rest);\n box-sizing: border-box;\n color: var(--neutral-foreground-rest);\n }\n\n .lm_header .lm_tabs {\n padding: 0 16px;\n }\n\n .lm_stack > .lm_items {\n box-shadow: 0 -1px 15px rgb(0 0 0 / 15%);\n }\n\n .lm_header .lm_tab.lm_active.lm_focused {\n background-color: var(--neutral-layer-card-container);\n }\n\n .lm_header .lm_tab.lm_active {\n background-color: var(--neutral-layer-card-container);\n border: 1px solid;\n border-color: var(--neutral-stroke-rest);\n border-bottom: 0;\n color: var(--accent-foreground-rest);\n }\n\n .lm_header .lm_tab {\n align-items: center;\n background-color: var(--neutral-layer-4);\n border: 0;\n border-bottom-color: transparent;\n border-bottom: 0 solid;\n border-color: var(--neutral-stroke-rest);\n border-radius: calc(var(--control-corner-radius) * 1.5px)\n calc(var(--control-corner-radius) * 1.5px) 0 0;\n color: var(--accent-foreground-rest);\n display: flex;\n font-family: inherit;\n font-size: 13px;\n font-weight: 400;\n height: calc(var(--foundation-tab-height, ${DEFAULT_TAB_HEIGHT}) - 8px);\n margin-right: 2px;\n margin-top: 3px;\n padding: 2px 16px;\n }\n\n .lm_header .lm_tab:not(.lm_active):hover {\n background-color: var(--neutral-layer-card-container);\n color: var(--accent-foreground-rest);\n }\n\n .lm_header .lm_controls {\n top: 4px;\n display: flex;\n }\n\n .lm_header .lm_controls > * {\n width: calc(var(--foundation-tab-height, ${DEFAULT_TAB_HEIGHT}) - 6px);\n height: calc(var(--foundation-tab-height, ${DEFAULT_TAB_HEIGHT}) - 6px);\n background-repeat: no-repeat;\n background-position: center;\n background-size: calc(var(--foundation-tab-height, ${DEFAULT_TAB_HEIGHT}) * 0.533333);\n background-color: color-mix(in srgb, var(--neutral-fill-strong-rest), transparent 90%);\n border-radius: calc(var(--control-corner-radius) * 1.5px);\n margin-right: 4px;\n top: 3px;\n opacity: 100%;\n }\n\n .lm_header .lm_controls > *:hover {\n background-color: color-mix(in srgb, var(--neutral-fill-strong-hover), transparent 75%);\n cursor: pointer;\n }\n\n .lm_controls .lm_maximise {\n background-image: url('${LAYOUT_ICONS.maximiseSVG}');\n }\n\n .lm_maximised .lm_controls .lm_maximise {\n background-image: url('${LAYOUT_ICONS.minimiseSVG}');\n }\n\n .lm_controls .lm_close {\n background-image: url('${LAYOUT_ICONS.closeSVG}');\n }\n\n .lm_header .lm_tab .lm_close_tab {\n background-image: url('${LAYOUT_ICONS.closeSVG}');\n background-size: calc(var(--foundation-tab-height, ${DEFAULT_TAB_HEIGHT}) * 0.2777);\n background-repeat: no-repeat;\n margin-left: 12px;\n position: relative;\n top: 0;\n right: 0;\n }\n\n .lm_header .lm_tab.lm_active {\n padding: 4px 25px 3px 10px;\n }\n\n .lm_header .lm_tab:not(.lm_active) .lm_title {\n color: var(--neutral-foreground-hint);\n }\n\n .lm_header .lm_controls .lm_tabdropdown::before {\n content: none;\n }\n\n .lm_header .lm_controls .lm_tabdropdown {\n background-image: url('${LAYOUT_ICONS.tabDropdownSVG}');\n }\n\n .lm_header .lm_tabdropdown_list {\n top: var(--foundation-tab-height, ${DEFAULT_TAB_HEIGHT});\n right: 108px;\n background-color: var(--neutral-layer-3);\n border: 1px solid;\n border-color: var(--neutral-stroke-rest);\n border-radius: calc(var(--control-corner-radius) * 1.5px);\n box-shadow: 0 5px 15px rgb(0 0 0 / 35%);\n }\n\n .lm_header .lm_tabdropdown_list > .lm_tab {\n box-shadow: none;\n padding: 0 16px;\n white-space: nowrap;\n background-color: transparent;\n color: var(--neutral-foreground-rest);\n height: var(--foundation-tab-height, ${DEFAULT_TAB_HEIGHT});\n border-radius: 0;\n overflow: visible;\n text-overflow: normal;\n }\n\n .lm_header .lm_tabdropdown_list > .lm_tab:last-child {\n border-bottom: 0;\n }\n\n /* gl base styles start */\n .lm_root {\n position: relative;\n }\n\n .lm_row > .lm_item {\n float: left;\n }\n\n .lm_content {\n overflow: hidden;\n position: relative;\n }\n\n .lm_dragging,\n .lm_dragging * {\n cursor: move !important;\n user-select: none;\n }\n\n .lm_maximised {\n left: 0;\n padding: 1px;\n position: absolute;\n top: 0;\n z-index: 40;\n }\n\n .lm_maximise_placeholder {\n display: none;\n }\n\n .lm_splitter {\n position: relative;\n z-index: 20;\n }\n\n .lm_splitter:hover,\n .lm_splitter.lm_dragging {\n background: var(--accent-fill-rest);\n border-radius: calc(var(--control-corner-radius) * 4px);\n }\n\n .lm_splitter.lm_vertical .lm_drag_handle {\n width: 100%;\n height: 15px;\n position: absolute;\n top: -5px;\n cursor: ns-resize !important;\n }\n\n .lm_splitter.lm_horizontal {\n float: left;\n height: 100%;\n }\n\n .lm_splitter.lm_horizontal .lm_drag_handle {\n width: 15px;\n height: 100%;\n position: absolute;\n left: -5px;\n cursor: ew-resize !important;\n }\n\n .lm_header {\n overflow: visible;\n position: relative;\n }\n\n .lm_header [class^='lm_'] {\n box-sizing: content-box !important;\n }\n\n .lm_header .lm_controls {\n position: absolute;\n right: 3px;\n }\n\n .lm_header .lm_controls > li {\n cursor: pointer;\n float: left;\n width: 18px;\n height: 18px;\n text-align: center;\n }\n\n .lm_header ul {\n margin: 0;\n padding: 0;\n list-style-type: none;\n }\n\n .lm_header .lm_tabs {\n position: absolute;\n }\n\n .lm_header .lm_tab {\n cursor: pointer;\n float: left;\n margin-top: 1px;\n padding: 3px 25px 3px 10px;\n position: relative;\n }\n\n .lm_header .lm_tab i {\n width: 2px;\n height: 19px;\n position: absolute;\n }\n\n .lm_header .lm_tab i.lm_left {\n top: 0;\n left: -2px;\n }\n\n .lm_header .lm_tab i.lm_right {\n top: 0;\n right: -2px;\n }\n\n .lm_header .lm_tab .lm_title {\n display: inline-block;\n overflow: hidden;\n text-overflow: ellipsis;\n user-select: none;\n }\n\n .lm_header .lm_tab .lm_title:only-child {\n padding-left: 10px;\n }\n\n .lm_header .lm_tab .lm_close_tab {\n width: calc(var(--foundation-tab-height, ${DEFAULT_TAB_HEIGHT}) * 0.3888);\n height: calc(var(--foundation-tab-height, ${DEFAULT_TAB_HEIGHT}) * 0.3888);\n top: calc(var(--foundation-tab-height, ${DEFAULT_TAB_HEIGHT}) * 0.3055);\n position: absolute;\n right: 0;\n text-align: center;\n }\n\n .lm_stack.lm_left .lm_header,\n .lm_stack.lm_right .lm_header {\n height: 100%;\n }\n\n .lm_dragProxy.lm_left .lm_header,\n .lm_dragProxy.lm_right .lm_header,\n .lm_stack.lm_left .lm_header,\n .lm_stack.lm_right .lm_header {\n width: 20px;\n float: left;\n vertical-align: top;\n }\n\n .lm_dragProxy.lm_left .lm_header .lm_tabs,\n .lm_dragProxy.lm_right .lm_header .lm_tabs,\n .lm_stack.lm_left .lm_header .lm_tabs,\n .lm_stack.lm_right .lm_header .lm_tabs {\n transform-origin: left top;\n top: 0;\n width: 1000px;\n }\n\n .lm_dragProxy.lm_left .lm_header .lm_controls,\n .lm_dragProxy.lm_right .lm_header .lm_controls,\n .lm_stack.lm_left .lm_header .lm_controls,\n .lm_stack.lm_right .lm_header .lm_controls {\n bottom: 0;\n }\n\n .lm_dragProxy.lm_left .lm_items,\n .lm_dragProxy.lm_right .lm_items,\n .lm_stack.lm_left .lm_items,\n .lm_stack.lm_right .lm_items {\n float: left;\n }\n\n .lm_dragProxy.lm_left .lm_header .lm_tabs,\n .lm_stack.lm_left .lm_header .lm_tabs {\n transform: rotate(-90deg) scaleX(-1);\n left: 0;\n }\n\n .lm_dragProxy.lm_left .lm_header .lm_tabs .lm_tab,\n .lm_stack.lm_left .lm_header .lm_tabs .lm_tab {\n transform: scaleX(-1);\n margin-top: 1px;\n }\n\n .lm_dragProxy.lm_left .lm_header .lm_tabdropdown_list,\n .lm_stack.lm_left .lm_header .lm_tabdropdown_list {\n top: initial;\n right: initial;\n left: 20px;\n }\n\n .lm_dragProxy.lm_right .lm_content {\n float: left;\n }\n\n .lm_dragProxy.lm_right .lm_header .lm_tabs,\n .lm_stack.lm_right .lm_header .lm_tabs {\n transform: rotate(90deg) scaleX(1);\n left: 100%;\n margin-left: 0;\n }\n\n .lm_dragProxy.lm_right .lm_header .lm_controls,\n .lm_stack.lm_right .lm_header .lm_controls {\n left: 3px;\n }\n\n .lm_dragProxy.lm_right .lm_header .lm_tabdropdown_list,\n .lm_stack.lm_right .lm_header .lm_tabdropdown_list {\n top: initial;\n right: 20px;\n }\n\n .lm_dragProxy.lm_bottom .lm_header .lm_tab,\n .lm_stack.lm_bottom .lm_header .lm_tab {\n margin-top: 0;\n border-top: none;\n }\n\n .lm_dragProxy.lm_bottom .lm_header .lm_controls,\n .lm_stack.lm_bottom .lm_header .lm_controls {\n top: 3px;\n }\n\n .lm_dragProxy.lm_bottom .lm_header .lm_tabdropdown_list,\n .lm_stack.lm_bottom .lm_header .lm_tabdropdown_list {\n top: initial;\n bottom: 20px;\n }\n\n .lm_drop_tab_placeholder {\n float: left;\n width: 100px;\n height: 10px;\n visibility: hidden;\n }\n\n .lm_header .lm_tabdropdown_list {\n position: absolute;\n top: 20px;\n right: 0;\n z-index: 5;\n overflow: hidden;\n }\n\n .lm_header .lm_tabdropdown_list .lm_tab {\n clear: both;\n padding-right: 10px;\n margin: 0;\n }\n\n .lm_header .lm_tabdropdown_list .lm_tab .lm_title {\n width: 100px;\n }\n\n .lm_header .lm_tabdropdown_list .lm_close_tab {\n display: none !important;\n }\n\n .lm_dragProxy {\n position: absolute;\n top: 0;\n left: 0;\n z-index: 30;\n }\n\n .lm_dragProxy .lm_header {\n background: transparent;\n }\n\n .lm_dragProxy .lm_content {\n border-top: none;\n overflow: hidden;\n }\n\n .lm_dropTargetIndicator {\n display: none;\n position: absolute;\n z-index: 20;\n box-shadow: none;\n }\n\n .lm_dropTargetIndicator .lm_inner {\n width: 100%;\n height: 100%;\n position: relative;\n top: 0;\n left: 0;\n }\n\n .lm_transition_indicator {\n display: none;\n width: 20px;\n height: 20px;\n position: absolute;\n top: 0;\n left: 0;\n z-index: 20;\n }\n\n .lm_popin {\n width: 20px;\n height: 20px;\n position: absolute;\n bottom: 0;\n right: 0;\n z-index: 9999;\n }\n\n .lm_popin > * {\n width: 100%;\n height: 100%;\n position: absolute;\n top: 0;\n left: 0;\n }\n\n .lm_popin > .lm_bg {\n z-index: 10;\n }\n\n .lm_popin > .lm_icon {\n z-index: 20;\n } /*# sourceMappingURL=goldenlayout-base.css.map */\n`",
1561
+ "description": "`ElementStyles` which defines the css for FoundationLayout.",
1562
+ "privacy": "public"
1563
+ }
1564
+ ],
1565
+ "exports": [
1566
+ {
1567
+ "kind": "js",
1568
+ "name": "layoutStyles",
1569
+ "declaration": {
1570
+ "name": "layoutStyles",
1571
+ "module": "src/styles/layout.styles.ts"
1572
+ }
1573
+ }
1574
+ ]
1575
+ },
1576
+ {
1577
+ "kind": "javascript-module",
1578
+ "path": "src/utils/constants.ts",
1579
+ "declarations": [
1580
+ {
1581
+ "kind": "variable",
1582
+ "name": "DEFAULT_RELOAD_BUFFER",
1583
+ "type": {
1584
+ "text": "number"
1585
+ },
1586
+ "default": "500",
1587
+ "description": "Default time in milliseconds for the layout to buffer calls to reloading\nthe layout while the declarative API is loading.\n\nDuring the first load of the layout, a loading spinner will be shown.",
1588
+ "privacy": "public"
1589
+ },
1590
+ {
1591
+ "kind": "variable",
1592
+ "name": "LAYOUT_POPOUT_CONTROL_KEY",
1593
+ "type": {
1594
+ "text": "string"
1595
+ },
1596
+ "default": "'f-layout-key'",
1597
+ "description": "Key to be used for controlling popout behaviour"
1598
+ },
1599
+ {
1600
+ "kind": "variable",
1601
+ "name": "POPOUT_GEOMETRY_BROADCAST_INTERVAL",
1602
+ "type": {
1603
+ "text": "number"
1604
+ },
1605
+ "default": "1000",
1606
+ "description": "How often a popout window should check to broadcast its\ngeometry"
1607
+ },
1608
+ {
1609
+ "kind": "variable",
1610
+ "name": "LAYOUT_POPOUT_CONTAINER_CLASS",
1611
+ "type": {
1612
+ "text": "string"
1613
+ },
1614
+ "default": "'f-layout-popout'",
1615
+ "description": "Put this classname on an element which is a DOM parent of the layout, and\nif the layout goes into popout mode then it will place itself as the only child\nfor the popout container you set."
1616
+ },
1617
+ {
1618
+ "kind": "variable",
1619
+ "name": "DEFAULT_TAB_HEIGHT",
1620
+ "type": {
1621
+ "text": "string"
1622
+ },
1623
+ "default": "'36px'"
1624
+ },
1625
+ {
1626
+ "kind": "function",
1627
+ "name": "getLayoutHeaderHeight"
1628
+ }
1629
+ ],
1630
+ "exports": [
1631
+ {
1632
+ "kind": "js",
1633
+ "name": "DEFAULT_RELOAD_BUFFER",
1634
+ "declaration": {
1635
+ "name": "DEFAULT_RELOAD_BUFFER",
1636
+ "module": "src/utils/constants.ts"
1637
+ }
1638
+ },
1639
+ {
1640
+ "kind": "js",
1641
+ "name": "LAYOUT_POPOUT_CONTROL_KEY",
1642
+ "declaration": {
1643
+ "name": "LAYOUT_POPOUT_CONTROL_KEY",
1644
+ "module": "src/utils/constants.ts"
1645
+ }
1646
+ },
1647
+ {
1648
+ "kind": "js",
1649
+ "name": "POPOUT_GEOMETRY_BROADCAST_INTERVAL",
1650
+ "declaration": {
1651
+ "name": "POPOUT_GEOMETRY_BROADCAST_INTERVAL",
1652
+ "module": "src/utils/constants.ts"
1653
+ }
1654
+ },
1655
+ {
1656
+ "kind": "js",
1657
+ "name": "LAYOUT_POPOUT_CONTAINER_CLASS",
1658
+ "declaration": {
1659
+ "name": "LAYOUT_POPOUT_CONTAINER_CLASS",
1660
+ "module": "src/utils/constants.ts"
1661
+ }
1662
+ },
1663
+ {
1664
+ "kind": "js",
1665
+ "name": "DEFAULT_TAB_HEIGHT",
1666
+ "declaration": {
1667
+ "name": "DEFAULT_TAB_HEIGHT",
1668
+ "module": "src/utils/constants.ts"
1669
+ }
1670
+ },
1671
+ {
1672
+ "kind": "js",
1673
+ "name": "getLayoutHeaderHeight",
1674
+ "declaration": {
1675
+ "name": "getLayoutHeaderHeight",
1676
+ "module": "src/utils/constants.ts"
1677
+ }
1678
+ }
1679
+ ]
1680
+ },
1681
+ {
1682
+ "kind": "javascript-module",
1683
+ "path": "src/utils/error.ts",
1684
+ "declarations": [
1685
+ {
1686
+ "kind": "class",
1687
+ "description": "",
1688
+ "name": "LayoutUsageError",
1689
+ "superclass": {
1690
+ "name": "Error",
1691
+ "module": "src/utils/error.ts"
1692
+ }
1693
+ },
1694
+ {
1695
+ "kind": "class",
1696
+ "description": "",
1697
+ "name": "LayoutRegistrationError",
1698
+ "superclass": {
1699
+ "name": "Error",
1700
+ "module": "src/utils/error.ts"
1701
+ }
1702
+ }
1703
+ ],
1704
+ "exports": [
1705
+ {
1706
+ "kind": "js",
1707
+ "name": "LayoutUsageError",
1708
+ "declaration": {
1709
+ "name": "LayoutUsageError",
1710
+ "module": "src/utils/error.ts"
1711
+ }
1712
+ },
1713
+ {
1714
+ "kind": "js",
1715
+ "name": "LayoutRegistrationError",
1716
+ "declaration": {
1717
+ "name": "LayoutRegistrationError",
1718
+ "module": "src/utils/error.ts"
1719
+ }
1720
+ }
1721
+ ]
1722
+ },
1723
+ {
1724
+ "kind": "javascript-module",
1725
+ "path": "src/utils/events.ts",
1726
+ "declarations": [
1727
+ {
1728
+ "kind": "variable",
1729
+ "name": "LayoutEmitEvents",
1730
+ "type": {
1731
+ "text": "{\n firstLoaded: 'first-loaded',\n itemAdded: 'item-added',\n itemRemoved: 'item-removed',\n itemResized: 'item-resized',\n}"
1732
+ },
1733
+ "default": "{\n firstLoaded: 'first-loaded',\n itemAdded: 'item-added',\n itemRemoved: 'item-removed',\n itemResized: 'item-resized',\n}",
1734
+ "description": "Defines events that the layout system emits\n\n'firstLoaded' - emitted when the layout has finished loading the first time\nusing the declarative API after DEFAULT_RELOAD_BUFFER ms.\n<br/>\n'itemAdded' - emitted when an item is added to the layout'\n<br/>\n'itemRemoved' - emitted when an item is removed from the layout'\n<br/>\n'itemResized' - emitted when the user drags the divider to resize elements",
1735
+ "privacy": "public"
1736
+ },
1737
+ {
1738
+ "kind": "variable",
1739
+ "name": "LayoutReceiveEvents",
1740
+ "type": {
1741
+ "text": "{\n changeTitle: 'change-title',\n autosave: 'autosave',\n}"
1742
+ },
1743
+ "default": "{\n changeTitle: 'change-title',\n autosave: 'autosave',\n}",
1744
+ "description": "Defines events that the layout system listens for\n\n'changeTitle' - emit this from a contained item to update the title of the window that contains it.\n'autosave' - emit this from a contained item to hint to the layout system that it should autosave the layout. A contained item should do this if it has just changed some state it would like to persist. See LayoutComponentWithState.",
1745
+ "privacy": "public"
1746
+ }
1747
+ ],
1748
+ "exports": [
1749
+ {
1750
+ "kind": "js",
1751
+ "name": "LayoutEmitEvents",
1752
+ "declaration": {
1753
+ "name": "LayoutEmitEvents",
1754
+ "module": "src/utils/events.ts"
1755
+ }
1756
+ },
1757
+ {
1758
+ "kind": "js",
1759
+ "name": "LayoutReceiveEvents",
1760
+ "declaration": {
1761
+ "name": "LayoutReceiveEvents",
1762
+ "module": "src/utils/events.ts"
1763
+ }
1764
+ }
1765
+ ]
1766
+ },
1767
+ {
1768
+ "kind": "javascript-module",
1769
+ "path": "src/utils/factory-registry.ts",
1770
+ "declarations": [
1771
+ {
1772
+ "kind": "function",
1773
+ "name": "registerFactory",
1774
+ "return": {
1775
+ "type": {
1776
+ "text": "void"
1777
+ }
1778
+ },
1779
+ "parameters": [
1780
+ {
1781
+ "name": "key",
1782
+ "type": {
1783
+ "text": "string"
1784
+ },
1785
+ "description": "Unique identifier for the factory. Should be descriptive and unique across the application."
1786
+ },
1787
+ {
1788
+ "name": "factory",
1789
+ "type": {
1790
+ "text": "ComponentFactory"
1791
+ },
1792
+ "description": "The factory function that creates the component."
1793
+ }
1794
+ ],
1795
+ "description": "Registers a factory function with a unique key.\nThis allows framework components to be used in the declarative layout API\nwithout needing to pass function references through HTML attributes.",
1796
+ "privacy": "public"
1797
+ },
1798
+ {
1799
+ "kind": "function",
1800
+ "name": "getFactory",
1801
+ "return": {
1802
+ "type": {
1803
+ "text": ""
1804
+ }
1805
+ },
1806
+ "parameters": [
1807
+ {
1808
+ "name": "key",
1809
+ "type": {
1810
+ "text": "string"
1811
+ },
1812
+ "description": "The unique identifier for the factory."
1813
+ }
1814
+ ],
1815
+ "description": "Retrieves a factory function by its key.",
1816
+ "privacy": "public"
1817
+ },
1818
+ {
1819
+ "kind": "function",
1820
+ "name": "unregisterFactory",
1821
+ "return": {
1822
+ "type": {
1823
+ "text": ""
1824
+ }
1825
+ },
1826
+ "parameters": [
1827
+ {
1828
+ "name": "key",
1829
+ "type": {
1830
+ "text": "string"
1831
+ },
1832
+ "description": "The unique identifier for the factory to remove."
1833
+ }
1834
+ ],
1835
+ "description": "Removes a factory from the registry.\nThis is useful for cleanup when a component is unmounted or no longer needed.",
1836
+ "privacy": "public"
1837
+ }
1838
+ ],
1839
+ "exports": [
1840
+ {
1841
+ "kind": "js",
1842
+ "name": "registerFactory",
1843
+ "declaration": {
1844
+ "name": "registerFactory",
1845
+ "module": "src/utils/factory-registry.ts"
1846
+ }
1847
+ },
1848
+ {
1849
+ "kind": "js",
1850
+ "name": "getFactory",
1851
+ "declaration": {
1852
+ "name": "getFactory",
1853
+ "module": "src/utils/factory-registry.ts"
1854
+ }
1855
+ },
1856
+ {
1857
+ "kind": "js",
1858
+ "name": "unregisterFactory",
1859
+ "declaration": {
1860
+ "name": "unregisterFactory",
1861
+ "module": "src/utils/factory-registry.ts"
1862
+ }
1863
+ }
1864
+ ]
1865
+ },
1866
+ {
1867
+ "kind": "javascript-module",
1868
+ "path": "src/utils/index.ts",
1869
+ "declarations": [],
1870
+ "exports": [
1871
+ {
1872
+ "kind": "js",
1873
+ "name": "*",
1874
+ "declaration": {
1875
+ "name": "*",
1876
+ "package": "./constants"
1877
+ }
1878
+ },
1879
+ {
1880
+ "kind": "js",
1881
+ "name": "*",
1882
+ "declaration": {
1883
+ "name": "*",
1884
+ "package": "./error"
1885
+ }
1886
+ },
1887
+ {
1888
+ "kind": "js",
1889
+ "name": "*",
1890
+ "declaration": {
1891
+ "name": "*",
1892
+ "package": "./events"
1893
+ }
1894
+ },
1895
+ {
1896
+ "kind": "js",
1897
+ "name": "*",
1898
+ "declaration": {
1899
+ "name": "*",
1900
+ "package": "./factory-registry"
1901
+ }
1902
+ },
1903
+ {
1904
+ "kind": "js",
1905
+ "name": "*",
1906
+ "declaration": {
1907
+ "name": "*",
1908
+ "package": "./misc"
1909
+ }
1910
+ },
1911
+ {
1912
+ "kind": "js",
1913
+ "name": "*",
1821
1914
  "declaration": {
1822
- "name": "FoundationLayoutPopoutController",
1823
- "module": "src/main/layout-popout-controller.ts"
1915
+ "name": "*",
1916
+ "package": "./templates"
1824
1917
  }
1825
1918
  },
1826
1919
  {
1827
- "kind": "custom-element-definition",
1828
- "name": "foundation-layout-popout-controller",
1920
+ "kind": "js",
1921
+ "name": "*",
1829
1922
  "declaration": {
1830
- "name": "FoundationLayoutPopoutController",
1831
- "module": "src/main/layout-popout-controller.ts"
1923
+ "name": "*",
1924
+ "package": "./popout-events"
1925
+ }
1926
+ },
1927
+ {
1928
+ "kind": "js",
1929
+ "name": "*",
1930
+ "declaration": {
1931
+ "name": "*",
1932
+ "package": "./types"
1933
+ }
1934
+ },
1935
+ {
1936
+ "kind": "js",
1937
+ "name": "*",
1938
+ "declaration": {
1939
+ "name": "*",
1940
+ "package": "./error"
1832
1941
  }
1833
1942
  }
1834
1943
  ]
1835
1944
  },
1836
1945
  {
1837
1946
  "kind": "javascript-module",
1838
- "path": "src/main/layout-region.ts",
1947
+ "path": "src/utils/logger.ts",
1839
1948
  "declarations": [
1840
1949
  {
1841
- "kind": "class",
1842
- "description": "",
1843
- "name": "FoundationLayoutRegion",
1844
- "members": [
1845
- {
1846
- "kind": "field",
1847
- "name": "size",
1848
- "type": {
1849
- "text": "string"
1850
- },
1851
- "description": "optional string describing the size of the new item (see the written documentation for more info)",
1852
- "privacy": "public"
1853
- },
1854
- {
1855
- "kind": "field",
1856
- "name": "type",
1857
- "type": {
1858
- "text": "LayoutRegionType"
1859
- },
1860
- "default": "layoutRegionValue[0]",
1861
- "description": "Defines the LayoutRegionType| type of the region.\nDefaults to `horizontal`.",
1862
- "privacy": "public"
1863
- },
1864
- {
1865
- "kind": "field",
1866
- "name": "_presentation",
1867
- "type": {
1868
- "text": "ComponentPresentation | null | undefined"
1869
- },
1870
- "privacy": "private",
1871
- "default": "void 0",
1872
- "inheritedFrom": {
1873
- "name": "FoundationElement",
1874
- "module": "src/foundation-element/foundation-element.ts"
1875
- }
1876
- },
1877
- {
1878
- "kind": "field",
1879
- "name": "$presentation",
1880
- "type": {
1881
- "text": "ComponentPresentation | null"
1882
- },
1883
- "privacy": "public",
1884
- "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
1885
- "inheritedFrom": {
1886
- "name": "FoundationElement",
1887
- "module": "src/foundation-element/foundation-element.ts"
1888
- }
1889
- },
1890
- {
1891
- "kind": "field",
1892
- "name": "template",
1893
- "type": {
1894
- "text": "ElementViewTemplate | void | null"
1895
- },
1896
- "privacy": "public",
1897
- "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
1898
- "inheritedFrom": {
1899
- "name": "FoundationElement",
1900
- "module": "src/foundation-element/foundation-element.ts"
1901
- }
1902
- },
1903
- {
1904
- "kind": "method",
1905
- "name": "templateChanged",
1906
- "privacy": "protected",
1907
- "return": {
1908
- "type": {
1909
- "text": "void"
1910
- }
1911
- },
1912
- "inheritedFrom": {
1913
- "name": "FoundationElement",
1914
- "module": "src/foundation-element/foundation-element.ts"
1915
- }
1916
- },
1917
- {
1918
- "kind": "field",
1919
- "name": "styles",
1920
- "type": {
1921
- "text": "ElementStyles | void | null"
1922
- },
1923
- "privacy": "public",
1924
- "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
1925
- "inheritedFrom": {
1926
- "name": "FoundationElement",
1927
- "module": "src/foundation-element/foundation-element.ts"
1928
- }
1929
- },
1930
- {
1931
- "kind": "method",
1932
- "name": "stylesChanged",
1933
- "privacy": "protected",
1934
- "return": {
1935
- "type": {
1936
- "text": "void"
1937
- }
1938
- },
1939
- "inheritedFrom": {
1940
- "name": "FoundationElement",
1941
- "module": "src/foundation-element/foundation-element.ts"
1942
- }
1943
- },
1944
- {
1945
- "kind": "method",
1946
- "name": "compose",
1947
- "privacy": "public",
1948
- "static": true,
1949
- "return": {
1950
- "type": {
1951
- "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
1952
- }
1953
- },
1954
- "parameters": [
1955
- {
1956
- "name": "this",
1957
- "type": {
1958
- "text": "K"
1959
- }
1960
- },
1961
- {
1962
- "name": "elementDefinition",
1963
- "type": {
1964
- "text": "T"
1965
- },
1966
- "description": "The definition of the element to create the registry\nfunction for."
1967
- }
1968
- ],
1969
- "description": "Defines an element registry function with a set of element definition defaults.",
1970
- "inheritedFrom": {
1971
- "name": "FoundationElement",
1972
- "module": "src/foundation-element/foundation-element.ts"
1973
- }
1974
- }
1975
- ],
1976
- "attributes": [
1977
- {
1978
- "name": "size",
1979
- "type": {
1980
- "text": "string"
1981
- },
1982
- "description": "optional string describing the size of the new item (see the written documentation for more info)",
1983
- "fieldName": "size"
1984
- },
1985
- {
1986
- "name": "type",
1987
- "type": {
1988
- "text": "LayoutRegionType"
1989
- },
1990
- "default": "defaultLayoutType",
1991
- "description": "Defines the LayoutRegionType| type of the region.\nDefaults to `horizontal`.",
1992
- "resolveInitializer": {
1993
- "module": "src/main/layout-region.ts"
1994
- },
1995
- "fieldName": "type"
1996
- }
1997
- ],
1998
- "superclass": {
1999
- "name": "FoundationElement",
2000
- "package": "@microsoft/fast-foundation"
1950
+ "kind": "variable",
1951
+ "name": "logger"
1952
+ }
1953
+ ],
1954
+ "exports": [
1955
+ {
1956
+ "kind": "js",
1957
+ "name": "logger",
1958
+ "declaration": {
1959
+ "name": "logger",
1960
+ "module": "src/utils/logger.ts"
1961
+ }
1962
+ }
1963
+ ]
1964
+ },
1965
+ {
1966
+ "kind": "javascript-module",
1967
+ "path": "src/utils/misc.ts",
1968
+ "declarations": [],
1969
+ "exports": []
1970
+ },
1971
+ {
1972
+ "kind": "javascript-module",
1973
+ "path": "src/utils/popout-events.ts",
1974
+ "declarations": [
1975
+ {
1976
+ "kind": "variable",
1977
+ "name": "LAYOUT_POPOUT_CHANNEL_NAME",
1978
+ "type": {
1979
+ "text": "string"
2001
1980
  },
2002
- "tagName": "%%prefix%%-layout-region",
2003
- "customElement": true
1981
+ "default": "'f-layout-popout-channel'",
1982
+ "description": "Name of the default broadcast channel used for layout popouts",
1983
+ "privacy": "public"
2004
1984
  }
2005
1985
  ],
2006
1986
  "exports": [
2007
1987
  {
2008
1988
  "kind": "js",
2009
- "name": "FoundationLayoutRegion",
1989
+ "name": "LAYOUT_POPOUT_CHANNEL_NAME",
2010
1990
  "declaration": {
2011
- "name": "FoundationLayoutRegion",
2012
- "module": "src/main/layout-region.ts"
1991
+ "name": "LAYOUT_POPOUT_CHANNEL_NAME",
1992
+ "module": "src/utils/popout-events.ts"
1993
+ }
1994
+ },
1995
+ {
1996
+ "kind": "js",
1997
+ "name": "PopoutGeometry",
1998
+ "declaration": {
1999
+ "name": "PopoutGeometry",
2000
+ "module": "src/utils/popout-events.ts"
2013
2001
  }
2014
2002
  }
2015
2003
  ]
2004
+ },
2005
+ {
2006
+ "kind": "javascript-module",
2007
+ "path": "src/utils/templates.ts",
2008
+ "declarations": [],
2009
+ "exports": []
2010
+ },
2011
+ {
2012
+ "kind": "javascript-module",
2013
+ "path": "src/utils/types.ts",
2014
+ "declarations": [],
2015
+ "exports": []
2016
2016
  }
2017
2017
  ]
2018
2018
  }