@genesislcap/foundation-layout 9.0.1-alpha-b5c5eb7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +916 -0
- package/dist/1.0.0.remoteEntry.js +1 -0
- package/dist/191.191.106ece7a41ded6731029.js +2 -0
- package/dist/191.9a61143c2afb6057ad1bae886d5d1a6e.js.map +1 -0
- package/dist/259.09c601e5288d875caab4df1e2354c0ea.js.map +1 -0
- package/dist/259.259.216fcad43e9a38888e08.js +2 -0
- package/dist/415.415.094780a1a1162c7e5f1c.js +3 -0
- package/dist/415.415.094780a1a1162c7e5f1c.js.LICENSE.txt +4 -0
- package/dist/415.fcfb4f02eaecbfa31fc322639f244245.js.map +1 -0
- package/dist/459.459.c9f0bb440eb1f041c99e.js +515 -0
- package/dist/459.cb5f5b49b4e8881992c420f3b1ca863d.js.map +1 -0
- package/dist/623.623.0e7e8f23454ee96ed9c8.js +3 -0
- package/dist/623.623.0e7e8f23454ee96ed9c8.js.LICENSE.txt +4 -0
- package/dist/623.e8f211473f9034c4157d362efb017821.js.map +1 -0
- package/dist/755.718e14af7194fb741f98580b24b2bb8f.js.map +1 -0
- package/dist/755.755.f93ee58c2b836a669ec4.js +2 -0
- package/dist/dashboard.json +1 -0
- package/dist/dts/index.d.ts +3 -0
- package/dist/dts/index.d.ts.map +1 -0
- package/dist/dts/index.federated.d.ts +1 -0
- package/dist/dts/index.federated.d.ts.map +1 -0
- package/dist/dts/main/index.d.ts +6 -0
- package/dist/dts/main/index.d.ts.map +1 -0
- package/dist/dts/main/layout-components.d.ts +42 -0
- package/dist/dts/main/layout-components.d.ts.map +1 -0
- package/dist/dts/main/layout-item.d.ts +70 -0
- package/dist/dts/main/layout-item.d.ts.map +1 -0
- package/dist/dts/main/layout-main.d.ts +186 -0
- package/dist/dts/main/layout-main.d.ts.map +1 -0
- package/dist/dts/main/layout-region.d.ts +70 -0
- package/dist/dts/main/layout-region.d.ts.map +1 -0
- package/dist/dts/styles/constants.d.ts +7 -0
- package/dist/dts/styles/constants.d.ts.map +1 -0
- package/dist/dts/styles/dragging.styles.d.ts +7 -0
- package/dist/dts/styles/dragging.styles.d.ts.map +1 -0
- package/dist/dts/styles/index.d.ts +4 -0
- package/dist/dts/styles/index.d.ts.map +1 -0
- package/dist/dts/styles/layout.styles.d.ts +8 -0
- package/dist/dts/styles/layout.styles.d.ts.map +1 -0
- package/dist/dts/utils/constants.d.ts +14 -0
- package/dist/dts/utils/constants.d.ts.map +1 -0
- package/dist/dts/utils/error.d.ts +13 -0
- package/dist/dts/utils/error.d.ts.map +1 -0
- package/dist/dts/utils/events.d.ts +38 -0
- package/dist/dts/utils/events.d.ts.map +1 -0
- package/dist/dts/utils/index.d.ts +7 -0
- package/dist/dts/utils/index.d.ts.map +1 -0
- package/dist/dts/utils/logger.d.ts +2 -0
- package/dist/dts/utils/logger.d.ts.map +1 -0
- package/dist/dts/utils/misc.d.ts +10 -0
- package/dist/dts/utils/misc.d.ts.map +1 -0
- package/dist/dts/utils/templates.d.ts +6 -0
- package/dist/dts/utils/templates.d.ts.map +1 -0
- package/dist/dts/utils/types.d.ts +63 -0
- package/dist/dts/utils/types.d.ts.map +1 -0
- package/dist/esm/index.federated.js +2 -0
- package/dist/esm/index.federated.js.map +1 -0
- package/dist/esm/index.js +3 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/main/index.js +6 -0
- package/dist/esm/main/index.js.map +1 -0
- package/dist/esm/main/layout-components.js +36 -0
- package/dist/esm/main/layout-components.js.map +1 -0
- package/dist/esm/main/layout-item.js +86 -0
- package/dist/esm/main/layout-item.js.map +1 -0
- package/dist/esm/main/layout-main.js +391 -0
- package/dist/esm/main/layout-main.js.map +1 -0
- package/dist/esm/main/layout-region.js +98 -0
- package/dist/esm/main/layout-region.js.map +1 -0
- package/dist/esm/main/main.css +17 -0
- package/dist/esm/styles/constants.js +16 -0
- package/dist/esm/styles/constants.js.map +1 -0
- package/dist/esm/styles/dragging.styles.js +116 -0
- package/dist/esm/styles/dragging.styles.js.map +1 -0
- package/dist/esm/styles/index.js +4 -0
- package/dist/esm/styles/index.js.map +1 -0
- package/dist/esm/styles/layout.styles.js +530 -0
- package/dist/esm/styles/layout.styles.js.map +1 -0
- package/dist/esm/utils/constants.js +14 -0
- package/dist/esm/utils/constants.js.map +1 -0
- package/dist/esm/utils/error.js +17 -0
- package/dist/esm/utils/error.js.map +1 -0
- package/dist/esm/utils/events.js +26 -0
- package/dist/esm/utils/events.js.map +1 -0
- package/dist/esm/utils/index.js +7 -0
- package/dist/esm/utils/index.js.map +1 -0
- package/dist/esm/utils/logger.js +3 -0
- package/dist/esm/utils/logger.js.map +1 -0
- package/dist/esm/utils/misc.js +24 -0
- package/dist/esm/utils/misc.js.map +1 -0
- package/dist/esm/utils/templates.js +11 -0
- package/dist/esm/utils/templates.js.map +1 -0
- package/dist/esm/utils/types.js +4 -0
- package/dist/esm/utils/types.js.map +1 -0
- package/dist/favicon.ico +0 -0
- package/dist/foundation-layout.api.json +1574 -0
- package/dist/foundation-layout.d.ts +478 -0
- package/dist/foundationLayout.8b94161c9f0d0d475d026a05513893c1.js.map +1 -0
- package/dist/index.ejs +23 -0
- package/dist/index.html +15 -0
- package/dist/info.ejs +13 -0
- package/dist/main.40c13c1585eb6fa5761a17ab29a7851e.js.map +1 -0
- package/dist/main.94f8a6853d484ec34632.js +2 -0
- package/dist/npm.consola.713.b1e4073e73c71572987a.js +2 -0
- package/dist/npm.consola.a0d3324d3e61dcc430c3029da5f4dcc7.js.map +1 -0
- package/dist/npm.genesis-community.248.9c9900001dbc5ba9c3ed.js +2 -0
- package/dist/npm.genesis-community.2e0cc159dabe113d6fb29bb505c1a0d4.js.map +1 -0
- package/dist/npm.microsoft.127.00f16f24d8da8fd89263.js +1469 -0
- package/dist/npm.microsoft.127.00f16f24d8da8fd89263.js.LICENSE.txt +14 -0
- package/dist/npm.microsoft.be43958facd28231e770c1307660f64d.js.map +1 -0
- package/dist/remoteEntry.js +2 -0
- package/dist/serve.json +3 -0
- package/dist/tsdoc-metadata.json +11 -0
- package/docs/.gitattributes +2 -0
- package/docs/api/foundation-layout.default_reload_buffer.md +18 -0
- package/docs/api/foundation-layout.foundationlayout.additem.md +38 -0
- package/docs/api/foundation-layout.foundationlayout.dragging.md +16 -0
- package/docs/api/foundation-layout.foundationlayout.getlayout.md +22 -0
- package/docs/api/foundation-layout.foundationlayout.layoutrequiredregistrations.md +37 -0
- package/docs/api/foundation-layout.foundationlayout.loadlayout.md +37 -0
- package/docs/api/foundation-layout.foundationlayout.md +44 -0
- package/docs/api/foundation-layout.foundationlayout.registereditems.md +26 -0
- package/docs/api/foundation-layout.foundationlayout.registeritem.md +42 -0
- package/docs/api/foundation-layout.foundationlayout.reloadbuffer.md +16 -0
- package/docs/api/foundation-layout.foundationlayoutcomponents.md +50 -0
- package/docs/api/foundation-layout.foundationlayoutitem.closable.md +16 -0
- package/docs/api/foundation-layout.foundationlayoutitem.md +35 -0
- package/docs/api/foundation-layout.foundationlayoutitem.registration.md +21 -0
- package/docs/api/foundation-layout.foundationlayoutitem.size.md +16 -0
- package/docs/api/foundation-layout.foundationlayoutitem.title.md +21 -0
- package/docs/api/foundation-layout.foundationlayoutregion.md +33 -0
- package/docs/api/foundation-layout.foundationlayoutregion.size.md +16 -0
- package/docs/api/foundation-layout.foundationlayoutregion.type.md +16 -0
- package/docs/api/foundation-layout.layoutemitevents.md +22 -0
- package/docs/api/foundation-layout.layoutreceiveevents.md +20 -0
- package/docs/api/foundation-layout.layoutreceiveeventsdetail.md +23 -0
- package/docs/api/foundation-layout.layoutregiontype.md +16 -0
- package/docs/api/foundation-layout.layoutregistrationerror._constructor_.md +23 -0
- package/docs/api/foundation-layout.layoutregistrationerror.md +23 -0
- package/docs/api/foundation-layout.layoutstyles.md +21 -0
- package/docs/api/foundation-layout.layouttemplate.md +21 -0
- package/docs/api/foundation-layout.layoutusageerror._constructor_.md +23 -0
- package/docs/api/foundation-layout.layoutusageerror.md +23 -0
- package/docs/api/foundation-layout.md +42 -0
- package/docs/api/foundation-layout.placement.md +18 -0
- package/docs/api/foundation-layout.registeredelementconfig.closable.md +14 -0
- package/docs/api/foundation-layout.registeredelementconfig.md +30 -0
- package/docs/api/foundation-layout.registeredelementconfig.registration.md +14 -0
- package/docs/api/foundation-layout.registeredelementconfig.size.md +14 -0
- package/docs/api/foundation-layout.registeredelementconfig.title.md +14 -0
- package/docs/api/foundation-layout.serialisedlayout.md +26 -0
- package/docs/api/index.md +12 -0
- package/docs/api-report.md +235 -0
- package/docs/img/foundation-layout-example.png +0 -0
- package/license.txt +46 -0
- package/package.json +80 -0
|
@@ -0,0 +1,1574 @@
|
|
|
1
|
+
{
|
|
2
|
+
"metadata": {
|
|
3
|
+
"toolPackage": "@microsoft/api-extractor",
|
|
4
|
+
"toolVersion": "7.34.4",
|
|
5
|
+
"schemaVersion": 1011,
|
|
6
|
+
"oldestForwardsCompatibleVersion": 1001,
|
|
7
|
+
"tsdocConfig": {
|
|
8
|
+
"$schema": "https://developer.microsoft.com/json-schemas/tsdoc/v0/tsdoc.schema.json",
|
|
9
|
+
"noStandardTags": true,
|
|
10
|
+
"tagDefinitions": [
|
|
11
|
+
{
|
|
12
|
+
"tagName": "@alpha",
|
|
13
|
+
"syntaxKind": "modifier"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"tagName": "@beta",
|
|
17
|
+
"syntaxKind": "modifier"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"tagName": "@defaultValue",
|
|
21
|
+
"syntaxKind": "block"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"tagName": "@decorator",
|
|
25
|
+
"syntaxKind": "block",
|
|
26
|
+
"allowMultiple": true
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"tagName": "@deprecated",
|
|
30
|
+
"syntaxKind": "block"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"tagName": "@eventProperty",
|
|
34
|
+
"syntaxKind": "modifier"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"tagName": "@example",
|
|
38
|
+
"syntaxKind": "block",
|
|
39
|
+
"allowMultiple": true
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"tagName": "@experimental",
|
|
43
|
+
"syntaxKind": "modifier"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"tagName": "@inheritDoc",
|
|
47
|
+
"syntaxKind": "inline"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"tagName": "@internal",
|
|
51
|
+
"syntaxKind": "modifier"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"tagName": "@label",
|
|
55
|
+
"syntaxKind": "inline"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"tagName": "@link",
|
|
59
|
+
"syntaxKind": "inline",
|
|
60
|
+
"allowMultiple": true
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"tagName": "@override",
|
|
64
|
+
"syntaxKind": "modifier"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"tagName": "@packageDocumentation",
|
|
68
|
+
"syntaxKind": "modifier"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"tagName": "@param",
|
|
72
|
+
"syntaxKind": "block",
|
|
73
|
+
"allowMultiple": true
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"tagName": "@privateRemarks",
|
|
77
|
+
"syntaxKind": "block"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"tagName": "@public",
|
|
81
|
+
"syntaxKind": "modifier"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"tagName": "@readonly",
|
|
85
|
+
"syntaxKind": "modifier"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"tagName": "@remarks",
|
|
89
|
+
"syntaxKind": "block"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"tagName": "@returns",
|
|
93
|
+
"syntaxKind": "block"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"tagName": "@sealed",
|
|
97
|
+
"syntaxKind": "modifier"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"tagName": "@see",
|
|
101
|
+
"syntaxKind": "block"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"tagName": "@throws",
|
|
105
|
+
"syntaxKind": "block",
|
|
106
|
+
"allowMultiple": true
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"tagName": "@typeParam",
|
|
110
|
+
"syntaxKind": "block",
|
|
111
|
+
"allowMultiple": true
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"tagName": "@virtual",
|
|
115
|
+
"syntaxKind": "modifier"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"tagName": "@betaDocumentation",
|
|
119
|
+
"syntaxKind": "modifier"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"tagName": "@internalRemarks",
|
|
123
|
+
"syntaxKind": "block"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"tagName": "@preapproved",
|
|
127
|
+
"syntaxKind": "modifier"
|
|
128
|
+
}
|
|
129
|
+
],
|
|
130
|
+
"supportForTags": {
|
|
131
|
+
"@alpha": true,
|
|
132
|
+
"@beta": true,
|
|
133
|
+
"@defaultValue": true,
|
|
134
|
+
"@decorator": true,
|
|
135
|
+
"@deprecated": true,
|
|
136
|
+
"@eventProperty": true,
|
|
137
|
+
"@example": true,
|
|
138
|
+
"@experimental": true,
|
|
139
|
+
"@inheritDoc": true,
|
|
140
|
+
"@internal": true,
|
|
141
|
+
"@label": true,
|
|
142
|
+
"@link": true,
|
|
143
|
+
"@override": true,
|
|
144
|
+
"@packageDocumentation": true,
|
|
145
|
+
"@param": true,
|
|
146
|
+
"@privateRemarks": true,
|
|
147
|
+
"@public": true,
|
|
148
|
+
"@readonly": true,
|
|
149
|
+
"@remarks": true,
|
|
150
|
+
"@returns": true,
|
|
151
|
+
"@sealed": true,
|
|
152
|
+
"@see": true,
|
|
153
|
+
"@throws": true,
|
|
154
|
+
"@typeParam": true,
|
|
155
|
+
"@virtual": true,
|
|
156
|
+
"@betaDocumentation": true,
|
|
157
|
+
"@internalRemarks": true,
|
|
158
|
+
"@preapproved": true
|
|
159
|
+
},
|
|
160
|
+
"reportUnsupportedHtmlElements": false
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
"kind": "Package",
|
|
164
|
+
"canonicalReference": "@genesislcap/foundation-layout!",
|
|
165
|
+
"docComment": "",
|
|
166
|
+
"name": "@genesislcap/foundation-layout",
|
|
167
|
+
"preserveMemberOrder": false,
|
|
168
|
+
"members": [
|
|
169
|
+
{
|
|
170
|
+
"kind": "EntryPoint",
|
|
171
|
+
"canonicalReference": "@genesislcap/foundation-layout!",
|
|
172
|
+
"name": "",
|
|
173
|
+
"preserveMemberOrder": false,
|
|
174
|
+
"members": [
|
|
175
|
+
{
|
|
176
|
+
"kind": "Variable",
|
|
177
|
+
"canonicalReference": "@genesislcap/foundation-layout!DEFAULT_RELOAD_BUFFER:var",
|
|
178
|
+
"docComment": "/**\n * Default time in milliseconds for the layout to buffer calls to reloading the layout while the declarative API is loading.\n *\n * During the first load of the layout, a loading spinner will be shown.\n *\n * @beta\n */\n",
|
|
179
|
+
"excerptTokens": [
|
|
180
|
+
{
|
|
181
|
+
"kind": "Content",
|
|
182
|
+
"text": "DEFAULT_RELOAD_BUFFER = "
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"kind": "Content",
|
|
186
|
+
"text": "500"
|
|
187
|
+
}
|
|
188
|
+
],
|
|
189
|
+
"fileUrlPath": "src/utils/constants.ts",
|
|
190
|
+
"initializerTokenRange": {
|
|
191
|
+
"startIndex": 1,
|
|
192
|
+
"endIndex": 2
|
|
193
|
+
},
|
|
194
|
+
"isReadonly": true,
|
|
195
|
+
"releaseTag": "Beta",
|
|
196
|
+
"name": "DEFAULT_RELOAD_BUFFER",
|
|
197
|
+
"variableTypeTokenRange": {
|
|
198
|
+
"startIndex": 0,
|
|
199
|
+
"endIndex": 0
|
|
200
|
+
}
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"kind": "Class",
|
|
204
|
+
"canonicalReference": "@genesislcap/foundation-layout!FoundationLayout:class",
|
|
205
|
+
"docComment": "/**\n * Top level web component which is used to initialise a custom layout\n *\n * @remarks\n *\n * Can be used in a composition to customise the styles of the layout.\n *\n * The constructor for this class is marked as internal. Third-party code should not call the constructor directly or create subclasses that extend the `FoundationLayout` class.\n *\n * @beta\n */\n",
|
|
206
|
+
"excerptTokens": [
|
|
207
|
+
{
|
|
208
|
+
"kind": "Content",
|
|
209
|
+
"text": "export declare class FoundationLayout extends "
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"kind": "Reference",
|
|
213
|
+
"text": "FoundationElement",
|
|
214
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElement:class"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"kind": "Content",
|
|
218
|
+
"text": " implements "
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"kind": "Reference",
|
|
222
|
+
"text": "LayoutComponent",
|
|
223
|
+
"canonicalReference": "@genesislcap/foundation-layout!LayoutComponent:interface"
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"kind": "Content",
|
|
227
|
+
"text": " "
|
|
228
|
+
}
|
|
229
|
+
],
|
|
230
|
+
"fileUrlPath": "src/main/layout-main.ts",
|
|
231
|
+
"releaseTag": "Beta",
|
|
232
|
+
"isAbstract": false,
|
|
233
|
+
"name": "FoundationLayout",
|
|
234
|
+
"preserveMemberOrder": false,
|
|
235
|
+
"members": [
|
|
236
|
+
{
|
|
237
|
+
"kind": "Method",
|
|
238
|
+
"canonicalReference": "@genesislcap/foundation-layout!FoundationLayout#addItem:member(1)",
|
|
239
|
+
"docComment": "/**\n * Dynamically add a new item to the layout. The user can move the new plane to whenever they want once it has been added.\n *\n * @remarks\n *\n * Adding a new item invokes the registration previously made explicitly via {@link FoundationLayout.registerItem | registerItem()} or implicitly via the html declerative API.\n *\n * The elements added onto the new pane are copies using `element.cloneNode()` of the original element references used during registration.\n *\n * @param config - {@link RegisteredElementConfig} configuration items for the new pane\n *\n * @param placement - where to add the new pane on the layout (defaults to the right hand side)\n *\n * @throws\n *\n * {@link LayoutRegistrationError} if you attempt to add an item before it has been registered\n *\n * @beta\n */\n",
|
|
240
|
+
"excerptTokens": [
|
|
241
|
+
{
|
|
242
|
+
"kind": "Content",
|
|
243
|
+
"text": "addItem(config: "
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"kind": "Reference",
|
|
247
|
+
"text": "RegisteredElementConfig",
|
|
248
|
+
"canonicalReference": "@genesislcap/foundation-layout!RegisteredElementConfig:interface"
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"kind": "Content",
|
|
252
|
+
"text": ", placement?: "
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"kind": "Reference",
|
|
256
|
+
"text": "Placement",
|
|
257
|
+
"canonicalReference": "@genesislcap/foundation-layout!Placement:type"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"kind": "Content",
|
|
261
|
+
"text": "): "
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"kind": "Content",
|
|
265
|
+
"text": "void"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"kind": "Content",
|
|
269
|
+
"text": ";"
|
|
270
|
+
}
|
|
271
|
+
],
|
|
272
|
+
"isStatic": false,
|
|
273
|
+
"returnTypeTokenRange": {
|
|
274
|
+
"startIndex": 5,
|
|
275
|
+
"endIndex": 6
|
|
276
|
+
},
|
|
277
|
+
"releaseTag": "Beta",
|
|
278
|
+
"isProtected": false,
|
|
279
|
+
"overloadIndex": 1,
|
|
280
|
+
"parameters": [
|
|
281
|
+
{
|
|
282
|
+
"parameterName": "config",
|
|
283
|
+
"parameterTypeTokenRange": {
|
|
284
|
+
"startIndex": 1,
|
|
285
|
+
"endIndex": 2
|
|
286
|
+
},
|
|
287
|
+
"isOptional": false
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"parameterName": "placement",
|
|
291
|
+
"parameterTypeTokenRange": {
|
|
292
|
+
"startIndex": 3,
|
|
293
|
+
"endIndex": 4
|
|
294
|
+
},
|
|
295
|
+
"isOptional": true
|
|
296
|
+
}
|
|
297
|
+
],
|
|
298
|
+
"isOptional": false,
|
|
299
|
+
"isAbstract": false,
|
|
300
|
+
"name": "addItem"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"kind": "Property",
|
|
304
|
+
"canonicalReference": "@genesislcap/foundation-layout!FoundationLayout#dragging:member",
|
|
305
|
+
"docComment": "/**\n * Set to true when the user is currently dragging the panes inside of the layout\n *\n * @beta\n */\n",
|
|
306
|
+
"excerptTokens": [
|
|
307
|
+
{
|
|
308
|
+
"kind": "Content",
|
|
309
|
+
"text": "dragging: "
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"kind": "Content",
|
|
313
|
+
"text": "boolean"
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"kind": "Content",
|
|
317
|
+
"text": ";"
|
|
318
|
+
}
|
|
319
|
+
],
|
|
320
|
+
"isReadonly": false,
|
|
321
|
+
"isOptional": false,
|
|
322
|
+
"releaseTag": "Beta",
|
|
323
|
+
"name": "dragging",
|
|
324
|
+
"propertyTypeTokenRange": {
|
|
325
|
+
"startIndex": 1,
|
|
326
|
+
"endIndex": 2
|
|
327
|
+
},
|
|
328
|
+
"isStatic": false,
|
|
329
|
+
"isProtected": false,
|
|
330
|
+
"isAbstract": false
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"kind": "Method",
|
|
334
|
+
"canonicalReference": "@genesislcap/foundation-layout!FoundationLayout#getLayout:member(1)",
|
|
335
|
+
"docComment": "/**\n * Gets a minified string containing the config describing the current layout of the layout object to later restore in {@link FoundationLayout.loadLayout | function}\n *\n * @returns - latest version of {@link SerialisedLayout} describing the layout\n *\n * @beta\n */\n",
|
|
336
|
+
"excerptTokens": [
|
|
337
|
+
{
|
|
338
|
+
"kind": "Content",
|
|
339
|
+
"text": "getLayout(): "
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"kind": "Reference",
|
|
343
|
+
"text": "SerialisedLayout",
|
|
344
|
+
"canonicalReference": "@genesislcap/foundation-layout!SerialisedLayout:type"
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"kind": "Content",
|
|
348
|
+
"text": ";"
|
|
349
|
+
}
|
|
350
|
+
],
|
|
351
|
+
"isStatic": false,
|
|
352
|
+
"returnTypeTokenRange": {
|
|
353
|
+
"startIndex": 1,
|
|
354
|
+
"endIndex": 2
|
|
355
|
+
},
|
|
356
|
+
"releaseTag": "Beta",
|
|
357
|
+
"isProtected": false,
|
|
358
|
+
"overloadIndex": 1,
|
|
359
|
+
"parameters": [],
|
|
360
|
+
"isOptional": false,
|
|
361
|
+
"isAbstract": false,
|
|
362
|
+
"name": "getLayout"
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"kind": "Method",
|
|
366
|
+
"canonicalReference": "@genesislcap/foundation-layout!FoundationLayout.layoutRequiredRegistrations:member(1)",
|
|
367
|
+
"docComment": "/**\n * Gets all of the required registration function names for a set of config\n *\n * @remarks\n *\n * You can use this with {@link FoundationLayout.registeredItems | registeredItems} to work out what items you need to register with {@link FoundationLayout.registerItem | registerItem()} before loading the layout with {@link FoundationLayout.loadLayout | loadLayout()}\n *\n * @param layout - any version of {@link SerialisedLayout} object describing the layout\n *\n * @returns string[] - an item for each registered element in the config. These must all be added before {@link FoundationLayout.loadLayout | function}\n *\n * @throws\n *\n * - various errors if the layout parameter cannot be parsed\n *\n * @beta\n */\n",
|
|
368
|
+
"excerptTokens": [
|
|
369
|
+
{
|
|
370
|
+
"kind": "Content",
|
|
371
|
+
"text": "static layoutRequiredRegistrations(layout: "
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
"kind": "Reference",
|
|
375
|
+
"text": "SerialisedLayout",
|
|
376
|
+
"canonicalReference": "@genesislcap/foundation-layout!SerialisedLayout:type"
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"kind": "Content",
|
|
380
|
+
"text": "): "
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"kind": "Content",
|
|
384
|
+
"text": "string[]"
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"kind": "Content",
|
|
388
|
+
"text": ";"
|
|
389
|
+
}
|
|
390
|
+
],
|
|
391
|
+
"isStatic": true,
|
|
392
|
+
"returnTypeTokenRange": {
|
|
393
|
+
"startIndex": 3,
|
|
394
|
+
"endIndex": 4
|
|
395
|
+
},
|
|
396
|
+
"releaseTag": "Beta",
|
|
397
|
+
"isProtected": false,
|
|
398
|
+
"overloadIndex": 1,
|
|
399
|
+
"parameters": [
|
|
400
|
+
{
|
|
401
|
+
"parameterName": "layout",
|
|
402
|
+
"parameterTypeTokenRange": {
|
|
403
|
+
"startIndex": 1,
|
|
404
|
+
"endIndex": 2
|
|
405
|
+
},
|
|
406
|
+
"isOptional": false
|
|
407
|
+
}
|
|
408
|
+
],
|
|
409
|
+
"isOptional": false,
|
|
410
|
+
"isAbstract": false,
|
|
411
|
+
"name": "layoutRequiredRegistrations"
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"kind": "Method",
|
|
415
|
+
"canonicalReference": "@genesislcap/foundation-layout!FoundationLayout#loadLayout:member(1)",
|
|
416
|
+
"docComment": "/**\n * Restores a layout described in the config from {@link FoundationLayout.getLayout | getLayout()}\n *\n * @remarks\n *\n * In order to restore a layout you must have registered all of the required panes with the layout system before restoring it. If you are just setting the layout using the declarative API then all of the same components will be registered. <br/ >If you have added any elements using {@link FoundationLayout.registerItem} then you must ensure all of the same items have been added again. To make tracking what items are registered easier it is recommended in this case you explicitly name your registrations using the `id` parameter available on the {@link RegisteredElementConfig} and `foundation-layout-item` APIs. <br/> You can use {@link FoundationLayout.layoutRequiredRegistrations} to check which items are registered in a current layout in order to dynamically add any missing items before you can restore the layout\n *\n * @param layout - any version of {@link SerialisedLayout} object describing the layout\n *\n * @throws\n *\n * {@link LayoutUsageError} if you attempt to load a layout with registered items that are not currently registered with the layout system\n *\n * @throws\n *\n * various errors if the layout string is malformed and cannot be parsed\n *\n * @beta\n */\n",
|
|
417
|
+
"excerptTokens": [
|
|
418
|
+
{
|
|
419
|
+
"kind": "Content",
|
|
420
|
+
"text": "loadLayout(layout: "
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"kind": "Reference",
|
|
424
|
+
"text": "SerialisedLayout",
|
|
425
|
+
"canonicalReference": "@genesislcap/foundation-layout!SerialisedLayout:type"
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"kind": "Content",
|
|
429
|
+
"text": "): "
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"kind": "Content",
|
|
433
|
+
"text": "void"
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"kind": "Content",
|
|
437
|
+
"text": ";"
|
|
438
|
+
}
|
|
439
|
+
],
|
|
440
|
+
"isStatic": false,
|
|
441
|
+
"returnTypeTokenRange": {
|
|
442
|
+
"startIndex": 3,
|
|
443
|
+
"endIndex": 4
|
|
444
|
+
},
|
|
445
|
+
"releaseTag": "Beta",
|
|
446
|
+
"isProtected": false,
|
|
447
|
+
"overloadIndex": 1,
|
|
448
|
+
"parameters": [
|
|
449
|
+
{
|
|
450
|
+
"parameterName": "layout",
|
|
451
|
+
"parameterTypeTokenRange": {
|
|
452
|
+
"startIndex": 1,
|
|
453
|
+
"endIndex": 2
|
|
454
|
+
},
|
|
455
|
+
"isOptional": false
|
|
456
|
+
}
|
|
457
|
+
],
|
|
458
|
+
"isOptional": false,
|
|
459
|
+
"isAbstract": false,
|
|
460
|
+
"name": "loadLayout"
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"kind": "Method",
|
|
464
|
+
"canonicalReference": "@genesislcap/foundation-layout!FoundationLayout#registeredItems:member(1)",
|
|
465
|
+
"docComment": "/**\n * Gets all of the currently registered names\n *\n * @remarks\n *\n * You can use this with {@link FoundationLayout.layoutRequiredRegistrations | layoutRequiredRegistrations} to work out what items you need to register with {@link FoundationLayout.registerItem | registerItem()} before loading the layout with {@link FoundationLayout.loadLayout | loadLayout()}\n *\n * @returns string[] - an item for each registered element currently registered with the layout system\n *\n * @beta\n */\n",
|
|
466
|
+
"excerptTokens": [
|
|
467
|
+
{
|
|
468
|
+
"kind": "Content",
|
|
469
|
+
"text": "registeredItems(): "
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
"kind": "Content",
|
|
473
|
+
"text": "string[]"
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
"kind": "Content",
|
|
477
|
+
"text": ";"
|
|
478
|
+
}
|
|
479
|
+
],
|
|
480
|
+
"isStatic": false,
|
|
481
|
+
"returnTypeTokenRange": {
|
|
482
|
+
"startIndex": 1,
|
|
483
|
+
"endIndex": 2
|
|
484
|
+
},
|
|
485
|
+
"releaseTag": "Beta",
|
|
486
|
+
"isProtected": false,
|
|
487
|
+
"overloadIndex": 1,
|
|
488
|
+
"parameters": [],
|
|
489
|
+
"isOptional": false,
|
|
490
|
+
"isAbstract": false,
|
|
491
|
+
"name": "registeredItems"
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
"kind": "Method",
|
|
495
|
+
"canonicalReference": "@genesislcap/foundation-layout!FoundationLayout#registerItem:member(1)",
|
|
496
|
+
"docComment": "/**\n * Register a collection of `Element` and associate them with an `ID` with the layout system for later use.\n *\n * @remarks\n *\n * You would use this to register elements that you later want to load when using {@link FoundationLayout.loadLayout}. Use {@link FoundationLayout.layoutRequiredRegistrations} to see what components need to be registered for a certain config and then register them using this function before calling {@link FoundationLayout.loadLayout}.\n *\n * When registering an element it is moved by reference into the internals of the layout, so if you pass elements already in the DOM then they will disappear. If you want to avoid this you can pass copies using `element.cloneNode(true)`.\n *\n * @param registration - string of the registration ID\n *\n * @param elements - Elements[] containing the reference to the elements to register for later usage\n *\n * @returns - string defining the name of the registered item with the layout system (config.id if set).\n *\n * @throws\n *\n * {@link LayoutUsageError} if you attempt to add an item before the layout has been initialised.\n *\n * @throws\n *\n * {@link LayoutRegistrationError} if you attempt to use a `registration` name which is already in use (declarative html API and JavaScript API registrations use the same \"pool\" of registration names).\n *\n * @beta\n */\n",
|
|
497
|
+
"excerptTokens": [
|
|
498
|
+
{
|
|
499
|
+
"kind": "Content",
|
|
500
|
+
"text": "registerItem(registration: "
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"kind": "Content",
|
|
504
|
+
"text": "string"
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"kind": "Content",
|
|
508
|
+
"text": ", elements: "
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
"kind": "Reference",
|
|
512
|
+
"text": "Element",
|
|
513
|
+
"canonicalReference": "!Element:interface"
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"kind": "Content",
|
|
517
|
+
"text": "[]"
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"kind": "Content",
|
|
521
|
+
"text": "): "
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
"kind": "Content",
|
|
525
|
+
"text": "string"
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
"kind": "Content",
|
|
529
|
+
"text": ";"
|
|
530
|
+
}
|
|
531
|
+
],
|
|
532
|
+
"isStatic": false,
|
|
533
|
+
"returnTypeTokenRange": {
|
|
534
|
+
"startIndex": 6,
|
|
535
|
+
"endIndex": 7
|
|
536
|
+
},
|
|
537
|
+
"releaseTag": "Beta",
|
|
538
|
+
"isProtected": false,
|
|
539
|
+
"overloadIndex": 1,
|
|
540
|
+
"parameters": [
|
|
541
|
+
{
|
|
542
|
+
"parameterName": "registration",
|
|
543
|
+
"parameterTypeTokenRange": {
|
|
544
|
+
"startIndex": 1,
|
|
545
|
+
"endIndex": 2
|
|
546
|
+
},
|
|
547
|
+
"isOptional": false
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
"parameterName": "elements",
|
|
551
|
+
"parameterTypeTokenRange": {
|
|
552
|
+
"startIndex": 3,
|
|
553
|
+
"endIndex": 5
|
|
554
|
+
},
|
|
555
|
+
"isOptional": false
|
|
556
|
+
}
|
|
557
|
+
],
|
|
558
|
+
"isOptional": false,
|
|
559
|
+
"isAbstract": false,
|
|
560
|
+
"name": "registerItem"
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"kind": "Property",
|
|
564
|
+
"canonicalReference": "@genesislcap/foundation-layout!FoundationLayout#reloadBuffer:member",
|
|
565
|
+
"docComment": "/**\n * Number describing how long to wait in ms before reloading the config when adding items declaratively by the html API. Default 500 (ms).\n *\n * @beta\n */\n",
|
|
566
|
+
"excerptTokens": [
|
|
567
|
+
{
|
|
568
|
+
"kind": "Content",
|
|
569
|
+
"text": "reloadBuffer: "
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"kind": "Content",
|
|
573
|
+
"text": "number"
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
"kind": "Content",
|
|
577
|
+
"text": ";"
|
|
578
|
+
}
|
|
579
|
+
],
|
|
580
|
+
"isReadonly": false,
|
|
581
|
+
"isOptional": false,
|
|
582
|
+
"releaseTag": "Beta",
|
|
583
|
+
"name": "reloadBuffer",
|
|
584
|
+
"propertyTypeTokenRange": {
|
|
585
|
+
"startIndex": 1,
|
|
586
|
+
"endIndex": 2
|
|
587
|
+
},
|
|
588
|
+
"isStatic": false,
|
|
589
|
+
"isProtected": false,
|
|
590
|
+
"isAbstract": false
|
|
591
|
+
}
|
|
592
|
+
],
|
|
593
|
+
"extendsTokenRange": {
|
|
594
|
+
"startIndex": 1,
|
|
595
|
+
"endIndex": 2
|
|
596
|
+
},
|
|
597
|
+
"implementsTokenRanges": [
|
|
598
|
+
{
|
|
599
|
+
"startIndex": 3,
|
|
600
|
+
"endIndex": 4
|
|
601
|
+
}
|
|
602
|
+
]
|
|
603
|
+
},
|
|
604
|
+
{
|
|
605
|
+
"kind": "Variable",
|
|
606
|
+
"canonicalReference": "@genesislcap/foundation-layout!foundationLayoutComponents:var",
|
|
607
|
+
"docComment": "/**\n * Registration object to register the layout with your design system.\n *\n * @remarks\n *\n * Registers the three layout component types with the design system. You require to use the prefix of the design system with each tag. If you wish to alternate the styles of the layout you only need to compose your own custom version of {@link FoundationLayout} as this contains the styles for the entire layout.\n *\n * @example\n *\n * `<zero-layout></zero-layout>` if you are using the layout with the `zero` design-system.\n *\n * @beta\n */\n",
|
|
608
|
+
"excerptTokens": [
|
|
609
|
+
{
|
|
610
|
+
"kind": "Content",
|
|
611
|
+
"text": "foundationLayoutComponents: "
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
"kind": "Content",
|
|
615
|
+
"text": "{\n foundationLayout: (overrideDefinition?: import(\"@microsoft/fast-foundation\")."
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
"kind": "Reference",
|
|
619
|
+
"text": "OverrideFoundationElementDefinition",
|
|
620
|
+
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"kind": "Content",
|
|
624
|
+
"text": "<{\n baseName: string;\n styles: import(\"@microsoft/fast-element\")."
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
"kind": "Reference",
|
|
628
|
+
"text": "ElementStyles",
|
|
629
|
+
"canonicalReference": "@microsoft/fast-element!ElementStyles:class"
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
"kind": "Content",
|
|
633
|
+
"text": ";\n template: import(\"@microsoft/fast-element\")."
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"kind": "Reference",
|
|
637
|
+
"text": "ViewTemplate",
|
|
638
|
+
"canonicalReference": "@microsoft/fast-element!ViewTemplate:class"
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
"kind": "Content",
|
|
642
|
+
"text": "<import(\"./layout-main\")."
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
"kind": "Reference",
|
|
646
|
+
"text": "FoundationLayout",
|
|
647
|
+
"canonicalReference": "@genesislcap/foundation-layout!FoundationLayout:class"
|
|
648
|
+
},
|
|
649
|
+
{
|
|
650
|
+
"kind": "Content",
|
|
651
|
+
"text": ", any>;\n }>) => import(\"@microsoft/fast-foundation\")."
|
|
652
|
+
},
|
|
653
|
+
{
|
|
654
|
+
"kind": "Reference",
|
|
655
|
+
"text": "FoundationElementRegistry",
|
|
656
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementRegistry:class"
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"kind": "Content",
|
|
660
|
+
"text": "<{\n baseName: string;\n styles: import(\"@microsoft/fast-element\")."
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"kind": "Reference",
|
|
664
|
+
"text": "ElementStyles",
|
|
665
|
+
"canonicalReference": "@microsoft/fast-element!ElementStyles:class"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"kind": "Content",
|
|
669
|
+
"text": ";\n template: import(\"@microsoft/fast-element\")."
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
"kind": "Reference",
|
|
673
|
+
"text": "ViewTemplate",
|
|
674
|
+
"canonicalReference": "@microsoft/fast-element!ViewTemplate:class"
|
|
675
|
+
},
|
|
676
|
+
{
|
|
677
|
+
"kind": "Content",
|
|
678
|
+
"text": "<import(\"./layout-main\")."
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
"kind": "Reference",
|
|
682
|
+
"text": "FoundationLayout",
|
|
683
|
+
"canonicalReference": "@genesislcap/foundation-layout!FoundationLayout:class"
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
"kind": "Content",
|
|
687
|
+
"text": ", any>;\n }, typeof import(\"./layout-main\")."
|
|
688
|
+
},
|
|
689
|
+
{
|
|
690
|
+
"kind": "Reference",
|
|
691
|
+
"text": "FoundationLayout",
|
|
692
|
+
"canonicalReference": "@genesislcap/foundation-layout!FoundationLayout:class"
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
"kind": "Content",
|
|
696
|
+
"text": ">;\n foundationLayoutRegion: (overrideDefinition?: import(\"@microsoft/fast-foundation\")."
|
|
697
|
+
},
|
|
698
|
+
{
|
|
699
|
+
"kind": "Reference",
|
|
700
|
+
"text": "OverrideFoundationElementDefinition",
|
|
701
|
+
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
702
|
+
},
|
|
703
|
+
{
|
|
704
|
+
"kind": "Content",
|
|
705
|
+
"text": "<{\n baseName: string;\n template: import(\"@microsoft/fast-element\")."
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"kind": "Reference",
|
|
709
|
+
"text": "ViewTemplate",
|
|
710
|
+
"canonicalReference": "@microsoft/fast-element!ViewTemplate:class"
|
|
711
|
+
},
|
|
712
|
+
{
|
|
713
|
+
"kind": "Content",
|
|
714
|
+
"text": "<any, any>;\n }>) => import(\"@microsoft/fast-foundation\")."
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"kind": "Reference",
|
|
718
|
+
"text": "FoundationElementRegistry",
|
|
719
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementRegistry:class"
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
"kind": "Content",
|
|
723
|
+
"text": "<{\n baseName: string;\n template: import(\"@microsoft/fast-element\")."
|
|
724
|
+
},
|
|
725
|
+
{
|
|
726
|
+
"kind": "Reference",
|
|
727
|
+
"text": "ViewTemplate",
|
|
728
|
+
"canonicalReference": "@microsoft/fast-element!ViewTemplate:class"
|
|
729
|
+
},
|
|
730
|
+
{
|
|
731
|
+
"kind": "Content",
|
|
732
|
+
"text": "<any, any>;\n }, typeof import(\"./layout-region\")."
|
|
733
|
+
},
|
|
734
|
+
{
|
|
735
|
+
"kind": "Reference",
|
|
736
|
+
"text": "FoundationLayoutRegion",
|
|
737
|
+
"canonicalReference": "@genesislcap/foundation-layout!FoundationLayoutRegion:class"
|
|
738
|
+
},
|
|
739
|
+
{
|
|
740
|
+
"kind": "Content",
|
|
741
|
+
"text": ">;\n foundationLayoutItem: (overrideDefinition?: import(\"@microsoft/fast-foundation\")."
|
|
742
|
+
},
|
|
743
|
+
{
|
|
744
|
+
"kind": "Reference",
|
|
745
|
+
"text": "OverrideFoundationElementDefinition",
|
|
746
|
+
"canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
|
|
747
|
+
},
|
|
748
|
+
{
|
|
749
|
+
"kind": "Content",
|
|
750
|
+
"text": "<{\n baseName: string;\n template: import(\"@microsoft/fast-element\")."
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
"kind": "Reference",
|
|
754
|
+
"text": "ViewTemplate",
|
|
755
|
+
"canonicalReference": "@microsoft/fast-element!ViewTemplate:class"
|
|
756
|
+
},
|
|
757
|
+
{
|
|
758
|
+
"kind": "Content",
|
|
759
|
+
"text": "<any, any>;\n }>) => import(\"@microsoft/fast-foundation\")."
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
"kind": "Reference",
|
|
763
|
+
"text": "FoundationElementRegistry",
|
|
764
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElementRegistry:class"
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
"kind": "Content",
|
|
768
|
+
"text": "<{\n baseName: string;\n template: import(\"@microsoft/fast-element\")."
|
|
769
|
+
},
|
|
770
|
+
{
|
|
771
|
+
"kind": "Reference",
|
|
772
|
+
"text": "ViewTemplate",
|
|
773
|
+
"canonicalReference": "@microsoft/fast-element!ViewTemplate:class"
|
|
774
|
+
},
|
|
775
|
+
{
|
|
776
|
+
"kind": "Content",
|
|
777
|
+
"text": "<any, any>;\n }, typeof import(\"./layout-item\")."
|
|
778
|
+
},
|
|
779
|
+
{
|
|
780
|
+
"kind": "Reference",
|
|
781
|
+
"text": "FoundationLayoutItem",
|
|
782
|
+
"canonicalReference": "@genesislcap/foundation-layout!FoundationLayoutItem:class"
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
"kind": "Content",
|
|
786
|
+
"text": ">;\n register(container?: "
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
"kind": "Reference",
|
|
790
|
+
"text": "Container",
|
|
791
|
+
"canonicalReference": "@microsoft/fast-foundation!Container:interface"
|
|
792
|
+
},
|
|
793
|
+
{
|
|
794
|
+
"kind": "Content",
|
|
795
|
+
"text": ", ...rest: any[]): void;\n}"
|
|
796
|
+
}
|
|
797
|
+
],
|
|
798
|
+
"fileUrlPath": "src/main/layout-components.ts",
|
|
799
|
+
"isReadonly": true,
|
|
800
|
+
"releaseTag": "Beta",
|
|
801
|
+
"name": "foundationLayoutComponents",
|
|
802
|
+
"variableTypeTokenRange": {
|
|
803
|
+
"startIndex": 1,
|
|
804
|
+
"endIndex": 42
|
|
805
|
+
}
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
"kind": "Class",
|
|
809
|
+
"canonicalReference": "@genesislcap/foundation-layout!FoundationLayoutItem:class",
|
|
810
|
+
"docComment": "/**\n * `FoundationLayoutItem` is a custom element that represents an item in the layout.\n *\n * @remarks\n *\n * This element is used to wrap html elements and configure their layout settings as part of the layout system.\n *\n * This is a simple component which is only used to define the layout splits; any JavaScript API interactions or custom styling is used via {@link FoundationLayout}.\n *\n * @beta\n */\n",
|
|
811
|
+
"excerptTokens": [
|
|
812
|
+
{
|
|
813
|
+
"kind": "Content",
|
|
814
|
+
"text": "export declare class FoundationLayoutItem extends "
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
"kind": "Reference",
|
|
818
|
+
"text": "FoundationElement",
|
|
819
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElement:class"
|
|
820
|
+
},
|
|
821
|
+
{
|
|
822
|
+
"kind": "Content",
|
|
823
|
+
"text": " implements "
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
"kind": "Reference",
|
|
827
|
+
"text": "LayoutComponent",
|
|
828
|
+
"canonicalReference": "@genesislcap/foundation-layout!LayoutComponent:interface"
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
"kind": "Content",
|
|
832
|
+
"text": " "
|
|
833
|
+
}
|
|
834
|
+
],
|
|
835
|
+
"fileUrlPath": "src/main/layout-item.ts",
|
|
836
|
+
"releaseTag": "Beta",
|
|
837
|
+
"isAbstract": false,
|
|
838
|
+
"name": "FoundationLayoutItem",
|
|
839
|
+
"preserveMemberOrder": false,
|
|
840
|
+
"members": [
|
|
841
|
+
{
|
|
842
|
+
"kind": "Property",
|
|
843
|
+
"canonicalReference": "@genesislcap/foundation-layout!FoundationLayoutItem#closable:member",
|
|
844
|
+
"docComment": "/**\n * Boolean attribute controls whether the window can be closed in the GUI. Defaults to `false`.\n *\n * @beta\n */\n",
|
|
845
|
+
"excerptTokens": [
|
|
846
|
+
{
|
|
847
|
+
"kind": "Content",
|
|
848
|
+
"text": "closable: "
|
|
849
|
+
},
|
|
850
|
+
{
|
|
851
|
+
"kind": "Content",
|
|
852
|
+
"text": "boolean"
|
|
853
|
+
},
|
|
854
|
+
{
|
|
855
|
+
"kind": "Content",
|
|
856
|
+
"text": ";"
|
|
857
|
+
}
|
|
858
|
+
],
|
|
859
|
+
"isReadonly": false,
|
|
860
|
+
"isOptional": false,
|
|
861
|
+
"releaseTag": "Beta",
|
|
862
|
+
"name": "closable",
|
|
863
|
+
"propertyTypeTokenRange": {
|
|
864
|
+
"startIndex": 1,
|
|
865
|
+
"endIndex": 2
|
|
866
|
+
},
|
|
867
|
+
"isStatic": false,
|
|
868
|
+
"isProtected": false,
|
|
869
|
+
"isAbstract": false
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
"kind": "Property",
|
|
873
|
+
"canonicalReference": "@genesislcap/foundation-layout!FoundationLayoutItem#registration:member",
|
|
874
|
+
"docComment": "/**\n * Sets the registration name for the item, which can be used later to add the item via the JavaScript API using {@link FoundationLayout.addItem()}.\n *\n * @remarks\n *\n * Items added via the JavaScript API and HTML API share the same pool of registration names. Using a duplicate registration name is a runtime error. This registration name defaults to the number of the window it is. It is highly recommended if you are using the JavaScript API that you set a registration name here manually.\n *\n * @beta\n */\n",
|
|
875
|
+
"excerptTokens": [
|
|
876
|
+
{
|
|
877
|
+
"kind": "Content",
|
|
878
|
+
"text": "registration: "
|
|
879
|
+
},
|
|
880
|
+
{
|
|
881
|
+
"kind": "Content",
|
|
882
|
+
"text": "string"
|
|
883
|
+
},
|
|
884
|
+
{
|
|
885
|
+
"kind": "Content",
|
|
886
|
+
"text": ";"
|
|
887
|
+
}
|
|
888
|
+
],
|
|
889
|
+
"isReadonly": false,
|
|
890
|
+
"isOptional": false,
|
|
891
|
+
"releaseTag": "Beta",
|
|
892
|
+
"name": "registration",
|
|
893
|
+
"propertyTypeTokenRange": {
|
|
894
|
+
"startIndex": 1,
|
|
895
|
+
"endIndex": 2
|
|
896
|
+
},
|
|
897
|
+
"isStatic": false,
|
|
898
|
+
"isProtected": false,
|
|
899
|
+
"isAbstract": false
|
|
900
|
+
},
|
|
901
|
+
{
|
|
902
|
+
"kind": "Property",
|
|
903
|
+
"canonicalReference": "@genesislcap/foundation-layout!FoundationLayoutItem#size:member",
|
|
904
|
+
"docComment": "/**\n * optional string describing the size of the new item (see the written documentation for more info)\n *\n * @beta\n */\n",
|
|
905
|
+
"excerptTokens": [
|
|
906
|
+
{
|
|
907
|
+
"kind": "Content",
|
|
908
|
+
"text": "size: "
|
|
909
|
+
},
|
|
910
|
+
{
|
|
911
|
+
"kind": "Content",
|
|
912
|
+
"text": "string"
|
|
913
|
+
},
|
|
914
|
+
{
|
|
915
|
+
"kind": "Content",
|
|
916
|
+
"text": ";"
|
|
917
|
+
}
|
|
918
|
+
],
|
|
919
|
+
"isReadonly": false,
|
|
920
|
+
"isOptional": false,
|
|
921
|
+
"releaseTag": "Beta",
|
|
922
|
+
"name": "size",
|
|
923
|
+
"propertyTypeTokenRange": {
|
|
924
|
+
"startIndex": 1,
|
|
925
|
+
"endIndex": 2
|
|
926
|
+
},
|
|
927
|
+
"isStatic": false,
|
|
928
|
+
"isProtected": false,
|
|
929
|
+
"isAbstract": false
|
|
930
|
+
},
|
|
931
|
+
{
|
|
932
|
+
"kind": "Property",
|
|
933
|
+
"canonicalReference": "@genesislcap/foundation-layout!FoundationLayoutItem#title:member",
|
|
934
|
+
"docComment": "/**\n * Sets the title of the item which is displayed on the tab.\n *\n * @remarks\n *\n * Defaults to `Item ` + {@link FoundationLayoutItem.registration}\n *\n * @beta\n */\n",
|
|
935
|
+
"excerptTokens": [
|
|
936
|
+
{
|
|
937
|
+
"kind": "Content",
|
|
938
|
+
"text": "title: "
|
|
939
|
+
},
|
|
940
|
+
{
|
|
941
|
+
"kind": "Content",
|
|
942
|
+
"text": "string"
|
|
943
|
+
},
|
|
944
|
+
{
|
|
945
|
+
"kind": "Content",
|
|
946
|
+
"text": ";"
|
|
947
|
+
}
|
|
948
|
+
],
|
|
949
|
+
"isReadonly": false,
|
|
950
|
+
"isOptional": false,
|
|
951
|
+
"releaseTag": "Beta",
|
|
952
|
+
"name": "title",
|
|
953
|
+
"propertyTypeTokenRange": {
|
|
954
|
+
"startIndex": 1,
|
|
955
|
+
"endIndex": 2
|
|
956
|
+
},
|
|
957
|
+
"isStatic": false,
|
|
958
|
+
"isProtected": false,
|
|
959
|
+
"isAbstract": false
|
|
960
|
+
}
|
|
961
|
+
],
|
|
962
|
+
"extendsTokenRange": {
|
|
963
|
+
"startIndex": 1,
|
|
964
|
+
"endIndex": 2
|
|
965
|
+
},
|
|
966
|
+
"implementsTokenRanges": [
|
|
967
|
+
{
|
|
968
|
+
"startIndex": 3,
|
|
969
|
+
"endIndex": 4
|
|
970
|
+
}
|
|
971
|
+
]
|
|
972
|
+
},
|
|
973
|
+
{
|
|
974
|
+
"kind": "Class",
|
|
975
|
+
"canonicalReference": "@genesislcap/foundation-layout!FoundationLayoutRegion:class",
|
|
976
|
+
"docComment": "/**\n * `FoundationLayoutRegion` is a custom element that represents a region in the layout.\n *\n * @remarks\n *\n * This element is used to create a region in the layout. It can be used to create a horizontal or vertical split, or a tabbed region.\n *\n * This is a simple component which is only used to define the layout splits; any JavaScript API interactions or custom styling is used via {@link FoundationLayout}.\n *\n * @beta\n */\n",
|
|
977
|
+
"excerptTokens": [
|
|
978
|
+
{
|
|
979
|
+
"kind": "Content",
|
|
980
|
+
"text": "export declare class FoundationLayoutRegion extends "
|
|
981
|
+
},
|
|
982
|
+
{
|
|
983
|
+
"kind": "Reference",
|
|
984
|
+
"text": "FoundationElement",
|
|
985
|
+
"canonicalReference": "@microsoft/fast-foundation!FoundationElement:class"
|
|
986
|
+
},
|
|
987
|
+
{
|
|
988
|
+
"kind": "Content",
|
|
989
|
+
"text": " implements "
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
"kind": "Reference",
|
|
993
|
+
"text": "LayoutComponent",
|
|
994
|
+
"canonicalReference": "@genesislcap/foundation-layout!LayoutComponent:interface"
|
|
995
|
+
},
|
|
996
|
+
{
|
|
997
|
+
"kind": "Content",
|
|
998
|
+
"text": " "
|
|
999
|
+
}
|
|
1000
|
+
],
|
|
1001
|
+
"fileUrlPath": "src/main/layout-region.ts",
|
|
1002
|
+
"releaseTag": "Beta",
|
|
1003
|
+
"isAbstract": false,
|
|
1004
|
+
"name": "FoundationLayoutRegion",
|
|
1005
|
+
"preserveMemberOrder": false,
|
|
1006
|
+
"members": [
|
|
1007
|
+
{
|
|
1008
|
+
"kind": "Property",
|
|
1009
|
+
"canonicalReference": "@genesislcap/foundation-layout!FoundationLayoutRegion#size:member",
|
|
1010
|
+
"docComment": "/**\n * optional string describing the size of the new item (see the written documentation for more info)\n *\n * @beta\n */\n",
|
|
1011
|
+
"excerptTokens": [
|
|
1012
|
+
{
|
|
1013
|
+
"kind": "Content",
|
|
1014
|
+
"text": "size: "
|
|
1015
|
+
},
|
|
1016
|
+
{
|
|
1017
|
+
"kind": "Content",
|
|
1018
|
+
"text": "string"
|
|
1019
|
+
},
|
|
1020
|
+
{
|
|
1021
|
+
"kind": "Content",
|
|
1022
|
+
"text": ";"
|
|
1023
|
+
}
|
|
1024
|
+
],
|
|
1025
|
+
"isReadonly": false,
|
|
1026
|
+
"isOptional": false,
|
|
1027
|
+
"releaseTag": "Beta",
|
|
1028
|
+
"name": "size",
|
|
1029
|
+
"propertyTypeTokenRange": {
|
|
1030
|
+
"startIndex": 1,
|
|
1031
|
+
"endIndex": 2
|
|
1032
|
+
},
|
|
1033
|
+
"isStatic": false,
|
|
1034
|
+
"isProtected": false,
|
|
1035
|
+
"isAbstract": false
|
|
1036
|
+
},
|
|
1037
|
+
{
|
|
1038
|
+
"kind": "Property",
|
|
1039
|
+
"canonicalReference": "@genesislcap/foundation-layout!FoundationLayoutRegion#type:member",
|
|
1040
|
+
"docComment": "/**\n * Defines the {@link LayoutRegionType | type} of the region. Defaults to `horizontal`.\n *\n * @beta\n */\n",
|
|
1041
|
+
"excerptTokens": [
|
|
1042
|
+
{
|
|
1043
|
+
"kind": "Content",
|
|
1044
|
+
"text": "type: "
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
"kind": "Reference",
|
|
1048
|
+
"text": "LayoutRegionType",
|
|
1049
|
+
"canonicalReference": "@genesislcap/foundation-layout!LayoutRegionType:type"
|
|
1050
|
+
},
|
|
1051
|
+
{
|
|
1052
|
+
"kind": "Content",
|
|
1053
|
+
"text": ";"
|
|
1054
|
+
}
|
|
1055
|
+
],
|
|
1056
|
+
"isReadonly": false,
|
|
1057
|
+
"isOptional": false,
|
|
1058
|
+
"releaseTag": "Beta",
|
|
1059
|
+
"name": "type",
|
|
1060
|
+
"propertyTypeTokenRange": {
|
|
1061
|
+
"startIndex": 1,
|
|
1062
|
+
"endIndex": 2
|
|
1063
|
+
},
|
|
1064
|
+
"isStatic": false,
|
|
1065
|
+
"isProtected": false,
|
|
1066
|
+
"isAbstract": false
|
|
1067
|
+
}
|
|
1068
|
+
],
|
|
1069
|
+
"extendsTokenRange": {
|
|
1070
|
+
"startIndex": 1,
|
|
1071
|
+
"endIndex": 2
|
|
1072
|
+
},
|
|
1073
|
+
"implementsTokenRanges": [
|
|
1074
|
+
{
|
|
1075
|
+
"startIndex": 3,
|
|
1076
|
+
"endIndex": 4
|
|
1077
|
+
}
|
|
1078
|
+
]
|
|
1079
|
+
},
|
|
1080
|
+
{
|
|
1081
|
+
"kind": "Variable",
|
|
1082
|
+
"canonicalReference": "@genesislcap/foundation-layout!LayoutEmitEvents:var",
|
|
1083
|
+
"docComment": "/**\n * Defines events that the layout system emits\n *\n * 'firstLoaded' - emitted when the layout has finished loading the first time using the declarative API after {@link DEFAULT_RELOAD_BUFFER} ms. <br/> 'itemAdded' - emitted when an item is added to the layout' <br/> 'itemRemoved' - emitted when an item is removed from the layout'\n *\n * @beta\n */\n",
|
|
1084
|
+
"excerptTokens": [
|
|
1085
|
+
{
|
|
1086
|
+
"kind": "Content",
|
|
1087
|
+
"text": "LayoutEmitEvents: "
|
|
1088
|
+
},
|
|
1089
|
+
{
|
|
1090
|
+
"kind": "Content",
|
|
1091
|
+
"text": "{\n readonly firstLoaded: \"first-loaded\";\n readonly itemAdded: \"item-added\";\n readonly itemRemoved: \"item-removed\";\n}"
|
|
1092
|
+
}
|
|
1093
|
+
],
|
|
1094
|
+
"fileUrlPath": "src/utils/events.ts",
|
|
1095
|
+
"isReadonly": true,
|
|
1096
|
+
"releaseTag": "Beta",
|
|
1097
|
+
"name": "LayoutEmitEvents",
|
|
1098
|
+
"variableTypeTokenRange": {
|
|
1099
|
+
"startIndex": 1,
|
|
1100
|
+
"endIndex": 2
|
|
1101
|
+
}
|
|
1102
|
+
},
|
|
1103
|
+
{
|
|
1104
|
+
"kind": "Variable",
|
|
1105
|
+
"canonicalReference": "@genesislcap/foundation-layout!LayoutReceiveEvents:var",
|
|
1106
|
+
"docComment": "/**\n * 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 *\n * @beta\n */\n",
|
|
1107
|
+
"excerptTokens": [
|
|
1108
|
+
{
|
|
1109
|
+
"kind": "Content",
|
|
1110
|
+
"text": "LayoutReceiveEvents: "
|
|
1111
|
+
},
|
|
1112
|
+
{
|
|
1113
|
+
"kind": "Content",
|
|
1114
|
+
"text": "{\n readonly changeTitle: \"change-title\";\n}"
|
|
1115
|
+
}
|
|
1116
|
+
],
|
|
1117
|
+
"fileUrlPath": "src/utils/events.ts",
|
|
1118
|
+
"isReadonly": true,
|
|
1119
|
+
"releaseTag": "Beta",
|
|
1120
|
+
"name": "LayoutReceiveEvents",
|
|
1121
|
+
"variableTypeTokenRange": {
|
|
1122
|
+
"startIndex": 1,
|
|
1123
|
+
"endIndex": 2
|
|
1124
|
+
}
|
|
1125
|
+
},
|
|
1126
|
+
{
|
|
1127
|
+
"kind": "TypeAlias",
|
|
1128
|
+
"canonicalReference": "@genesislcap/foundation-layout!LayoutReceiveEventsDetail:type",
|
|
1129
|
+
"docComment": "/**\n * Defines the shape of the detail that the layout listens works with for events it listens on\n *\n * 'changeTitle' - `title` is the string you want to set. For `mode`: `replace` will set the title to be `title`, `suffix` will append `title` to the end of the existing title.\n *\n * @beta\n */\n",
|
|
1130
|
+
"excerptTokens": [
|
|
1131
|
+
{
|
|
1132
|
+
"kind": "Content",
|
|
1133
|
+
"text": "export type LayoutReceiveEventsDetail = "
|
|
1134
|
+
},
|
|
1135
|
+
{
|
|
1136
|
+
"kind": "Content",
|
|
1137
|
+
"text": "{\n changeTitle: {\n title: string;\n mode: 'replace' | 'suffix';\n };\n}"
|
|
1138
|
+
},
|
|
1139
|
+
{
|
|
1140
|
+
"kind": "Content",
|
|
1141
|
+
"text": ";"
|
|
1142
|
+
}
|
|
1143
|
+
],
|
|
1144
|
+
"fileUrlPath": "src/utils/events.ts",
|
|
1145
|
+
"releaseTag": "Beta",
|
|
1146
|
+
"name": "LayoutReceiveEventsDetail",
|
|
1147
|
+
"typeTokenRange": {
|
|
1148
|
+
"startIndex": 1,
|
|
1149
|
+
"endIndex": 2
|
|
1150
|
+
}
|
|
1151
|
+
},
|
|
1152
|
+
{
|
|
1153
|
+
"kind": "TypeAlias",
|
|
1154
|
+
"canonicalReference": "@genesislcap/foundation-layout!LayoutRegionType:type",
|
|
1155
|
+
"docComment": "/**\n * Union type describing the three different types of region splits. Set on the `type` attribute on {@link FoundationLayoutRegion}.\n *\n * @beta\n */\n",
|
|
1156
|
+
"excerptTokens": [
|
|
1157
|
+
{
|
|
1158
|
+
"kind": "Content",
|
|
1159
|
+
"text": "export type LayoutRegionType = "
|
|
1160
|
+
},
|
|
1161
|
+
{
|
|
1162
|
+
"kind": "Content",
|
|
1163
|
+
"text": "(typeof "
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
"kind": "Reference",
|
|
1167
|
+
"text": "layoutRegionValue",
|
|
1168
|
+
"canonicalReference": "@genesislcap/foundation-layout!layoutRegionValue:var"
|
|
1169
|
+
},
|
|
1170
|
+
{
|
|
1171
|
+
"kind": "Content",
|
|
1172
|
+
"text": ")[number]"
|
|
1173
|
+
},
|
|
1174
|
+
{
|
|
1175
|
+
"kind": "Content",
|
|
1176
|
+
"text": ";"
|
|
1177
|
+
}
|
|
1178
|
+
],
|
|
1179
|
+
"fileUrlPath": "src/utils/types.ts",
|
|
1180
|
+
"releaseTag": "Beta",
|
|
1181
|
+
"name": "LayoutRegionType",
|
|
1182
|
+
"typeTokenRange": {
|
|
1183
|
+
"startIndex": 1,
|
|
1184
|
+
"endIndex": 4
|
|
1185
|
+
}
|
|
1186
|
+
},
|
|
1187
|
+
{
|
|
1188
|
+
"kind": "Class",
|
|
1189
|
+
"canonicalReference": "@genesislcap/foundation-layout!LayoutRegistrationError:class",
|
|
1190
|
+
"docComment": "/**\n * @beta\n */\n",
|
|
1191
|
+
"excerptTokens": [
|
|
1192
|
+
{
|
|
1193
|
+
"kind": "Content",
|
|
1194
|
+
"text": "export declare class LayoutRegistrationError extends "
|
|
1195
|
+
},
|
|
1196
|
+
{
|
|
1197
|
+
"kind": "Reference",
|
|
1198
|
+
"text": "Error",
|
|
1199
|
+
"canonicalReference": "!Error:interface"
|
|
1200
|
+
},
|
|
1201
|
+
{
|
|
1202
|
+
"kind": "Content",
|
|
1203
|
+
"text": " "
|
|
1204
|
+
}
|
|
1205
|
+
],
|
|
1206
|
+
"fileUrlPath": "src/utils/error.ts",
|
|
1207
|
+
"releaseTag": "Beta",
|
|
1208
|
+
"isAbstract": false,
|
|
1209
|
+
"name": "LayoutRegistrationError",
|
|
1210
|
+
"preserveMemberOrder": false,
|
|
1211
|
+
"members": [
|
|
1212
|
+
{
|
|
1213
|
+
"kind": "Constructor",
|
|
1214
|
+
"canonicalReference": "@genesislcap/foundation-layout!LayoutRegistrationError:constructor(1)",
|
|
1215
|
+
"docComment": "/**\n * Constructs a new instance of the `LayoutRegistrationError` class\n */\n",
|
|
1216
|
+
"excerptTokens": [
|
|
1217
|
+
{
|
|
1218
|
+
"kind": "Content",
|
|
1219
|
+
"text": "constructor(message: "
|
|
1220
|
+
},
|
|
1221
|
+
{
|
|
1222
|
+
"kind": "Content",
|
|
1223
|
+
"text": "string"
|
|
1224
|
+
},
|
|
1225
|
+
{
|
|
1226
|
+
"kind": "Content",
|
|
1227
|
+
"text": ");"
|
|
1228
|
+
}
|
|
1229
|
+
],
|
|
1230
|
+
"releaseTag": "Beta",
|
|
1231
|
+
"isProtected": false,
|
|
1232
|
+
"overloadIndex": 1,
|
|
1233
|
+
"parameters": [
|
|
1234
|
+
{
|
|
1235
|
+
"parameterName": "message",
|
|
1236
|
+
"parameterTypeTokenRange": {
|
|
1237
|
+
"startIndex": 1,
|
|
1238
|
+
"endIndex": 2
|
|
1239
|
+
},
|
|
1240
|
+
"isOptional": false
|
|
1241
|
+
}
|
|
1242
|
+
]
|
|
1243
|
+
}
|
|
1244
|
+
],
|
|
1245
|
+
"extendsTokenRange": {
|
|
1246
|
+
"startIndex": 1,
|
|
1247
|
+
"endIndex": 2
|
|
1248
|
+
},
|
|
1249
|
+
"implementsTokenRanges": []
|
|
1250
|
+
},
|
|
1251
|
+
{
|
|
1252
|
+
"kind": "Variable",
|
|
1253
|
+
"canonicalReference": "@genesislcap/foundation-layout!layoutStyles:var",
|
|
1254
|
+
"docComment": "/**\n * `ElementStyles` which defines the css for {@link FoundationLayout}.\n *\n * @remarks\n *\n * Can be used in a composition to customise the styles of the layout.\n *\n * @beta\n */\n",
|
|
1255
|
+
"excerptTokens": [
|
|
1256
|
+
{
|
|
1257
|
+
"kind": "Content",
|
|
1258
|
+
"text": "layoutStyles: "
|
|
1259
|
+
},
|
|
1260
|
+
{
|
|
1261
|
+
"kind": "Content",
|
|
1262
|
+
"text": "import(\"@microsoft/fast-element\")."
|
|
1263
|
+
},
|
|
1264
|
+
{
|
|
1265
|
+
"kind": "Reference",
|
|
1266
|
+
"text": "ElementStyles",
|
|
1267
|
+
"canonicalReference": "@microsoft/fast-element!ElementStyles:class"
|
|
1268
|
+
}
|
|
1269
|
+
],
|
|
1270
|
+
"fileUrlPath": "src/styles/layout.styles.ts",
|
|
1271
|
+
"isReadonly": true,
|
|
1272
|
+
"releaseTag": "Beta",
|
|
1273
|
+
"name": "layoutStyles",
|
|
1274
|
+
"variableTypeTokenRange": {
|
|
1275
|
+
"startIndex": 1,
|
|
1276
|
+
"endIndex": 3
|
|
1277
|
+
}
|
|
1278
|
+
},
|
|
1279
|
+
{
|
|
1280
|
+
"kind": "Variable",
|
|
1281
|
+
"canonicalReference": "@genesislcap/foundation-layout!layoutTemplate:var",
|
|
1282
|
+
"docComment": "/**\n * `ViewTemplate` which defines the html for {@link FoundationLayout}.\n *\n * @remarks\n *\n * Can be used in a composition to customise the styles of the layout.\n *\n * @beta\n */\n",
|
|
1283
|
+
"excerptTokens": [
|
|
1284
|
+
{
|
|
1285
|
+
"kind": "Content",
|
|
1286
|
+
"text": "layoutTemplate: "
|
|
1287
|
+
},
|
|
1288
|
+
{
|
|
1289
|
+
"kind": "Content",
|
|
1290
|
+
"text": "import(\"@microsoft/fast-element\")."
|
|
1291
|
+
},
|
|
1292
|
+
{
|
|
1293
|
+
"kind": "Reference",
|
|
1294
|
+
"text": "ViewTemplate",
|
|
1295
|
+
"canonicalReference": "@microsoft/fast-element!ViewTemplate:class"
|
|
1296
|
+
},
|
|
1297
|
+
{
|
|
1298
|
+
"kind": "Content",
|
|
1299
|
+
"text": "<"
|
|
1300
|
+
},
|
|
1301
|
+
{
|
|
1302
|
+
"kind": "Reference",
|
|
1303
|
+
"text": "FoundationLayout",
|
|
1304
|
+
"canonicalReference": "@genesislcap/foundation-layout!FoundationLayout:class"
|
|
1305
|
+
},
|
|
1306
|
+
{
|
|
1307
|
+
"kind": "Content",
|
|
1308
|
+
"text": ", any>"
|
|
1309
|
+
}
|
|
1310
|
+
],
|
|
1311
|
+
"fileUrlPath": "src/main/layout-main.ts",
|
|
1312
|
+
"isReadonly": true,
|
|
1313
|
+
"releaseTag": "Beta",
|
|
1314
|
+
"name": "layoutTemplate",
|
|
1315
|
+
"variableTypeTokenRange": {
|
|
1316
|
+
"startIndex": 1,
|
|
1317
|
+
"endIndex": 6
|
|
1318
|
+
}
|
|
1319
|
+
},
|
|
1320
|
+
{
|
|
1321
|
+
"kind": "Class",
|
|
1322
|
+
"canonicalReference": "@genesislcap/foundation-layout!LayoutUsageError:class",
|
|
1323
|
+
"docComment": "/**\n * @beta\n */\n",
|
|
1324
|
+
"excerptTokens": [
|
|
1325
|
+
{
|
|
1326
|
+
"kind": "Content",
|
|
1327
|
+
"text": "export declare class LayoutUsageError extends "
|
|
1328
|
+
},
|
|
1329
|
+
{
|
|
1330
|
+
"kind": "Reference",
|
|
1331
|
+
"text": "Error",
|
|
1332
|
+
"canonicalReference": "!Error:interface"
|
|
1333
|
+
},
|
|
1334
|
+
{
|
|
1335
|
+
"kind": "Content",
|
|
1336
|
+
"text": " "
|
|
1337
|
+
}
|
|
1338
|
+
],
|
|
1339
|
+
"fileUrlPath": "src/utils/error.ts",
|
|
1340
|
+
"releaseTag": "Beta",
|
|
1341
|
+
"isAbstract": false,
|
|
1342
|
+
"name": "LayoutUsageError",
|
|
1343
|
+
"preserveMemberOrder": false,
|
|
1344
|
+
"members": [
|
|
1345
|
+
{
|
|
1346
|
+
"kind": "Constructor",
|
|
1347
|
+
"canonicalReference": "@genesislcap/foundation-layout!LayoutUsageError:constructor(1)",
|
|
1348
|
+
"docComment": "/**\n * Constructs a new instance of the `LayoutUsageError` class\n */\n",
|
|
1349
|
+
"excerptTokens": [
|
|
1350
|
+
{
|
|
1351
|
+
"kind": "Content",
|
|
1352
|
+
"text": "constructor(message: "
|
|
1353
|
+
},
|
|
1354
|
+
{
|
|
1355
|
+
"kind": "Content",
|
|
1356
|
+
"text": "string"
|
|
1357
|
+
},
|
|
1358
|
+
{
|
|
1359
|
+
"kind": "Content",
|
|
1360
|
+
"text": ");"
|
|
1361
|
+
}
|
|
1362
|
+
],
|
|
1363
|
+
"releaseTag": "Beta",
|
|
1364
|
+
"isProtected": false,
|
|
1365
|
+
"overloadIndex": 1,
|
|
1366
|
+
"parameters": [
|
|
1367
|
+
{
|
|
1368
|
+
"parameterName": "message",
|
|
1369
|
+
"parameterTypeTokenRange": {
|
|
1370
|
+
"startIndex": 1,
|
|
1371
|
+
"endIndex": 2
|
|
1372
|
+
},
|
|
1373
|
+
"isOptional": false
|
|
1374
|
+
}
|
|
1375
|
+
]
|
|
1376
|
+
}
|
|
1377
|
+
],
|
|
1378
|
+
"extendsTokenRange": {
|
|
1379
|
+
"startIndex": 1,
|
|
1380
|
+
"endIndex": 2
|
|
1381
|
+
},
|
|
1382
|
+
"implementsTokenRanges": []
|
|
1383
|
+
},
|
|
1384
|
+
{
|
|
1385
|
+
"kind": "TypeAlias",
|
|
1386
|
+
"canonicalReference": "@genesislcap/foundation-layout!Placement:type",
|
|
1387
|
+
"docComment": "/**\n * Where to add the new item into the layout when using the {@link FoundationLayout.addItem} API\n *\n * @beta\n */\n",
|
|
1388
|
+
"excerptTokens": [
|
|
1389
|
+
{
|
|
1390
|
+
"kind": "Content",
|
|
1391
|
+
"text": "export type Placement = "
|
|
1392
|
+
},
|
|
1393
|
+
{
|
|
1394
|
+
"kind": "Content",
|
|
1395
|
+
"text": "{\n area: 'top' | 'left' | 'bottom' | 'right';\n}"
|
|
1396
|
+
},
|
|
1397
|
+
{
|
|
1398
|
+
"kind": "Content",
|
|
1399
|
+
"text": ";"
|
|
1400
|
+
}
|
|
1401
|
+
],
|
|
1402
|
+
"fileUrlPath": "src/utils/types.ts",
|
|
1403
|
+
"releaseTag": "Beta",
|
|
1404
|
+
"name": "Placement",
|
|
1405
|
+
"typeTokenRange": {
|
|
1406
|
+
"startIndex": 1,
|
|
1407
|
+
"endIndex": 2
|
|
1408
|
+
}
|
|
1409
|
+
},
|
|
1410
|
+
{
|
|
1411
|
+
"kind": "Interface",
|
|
1412
|
+
"canonicalReference": "@genesislcap/foundation-layout!RegisteredElementConfig:interface",
|
|
1413
|
+
"docComment": "/**\n * The parameters that can be set on a new item when being added by the {@link FoundationLayout.addItem} API\n *\n * @remarks\n *\n * `elements` - array of Elements that are the content of the new item `title` - optional string which is used as the new title of the tab (defaults to be the registered name) `closable` - optional boolean which allows the item to be closed with the X button if set and true `size` - optional string describing the size of the new item (see the written documentation for more info) `registration` - optional string configuring the registration ID of the new item (defaults to sequential IDs)\n *\n * @beta\n */\n",
|
|
1414
|
+
"excerptTokens": [
|
|
1415
|
+
{
|
|
1416
|
+
"kind": "Content",
|
|
1417
|
+
"text": "export interface RegisteredElementConfig "
|
|
1418
|
+
}
|
|
1419
|
+
],
|
|
1420
|
+
"fileUrlPath": "src/utils/types.ts",
|
|
1421
|
+
"releaseTag": "Beta",
|
|
1422
|
+
"name": "RegisteredElementConfig",
|
|
1423
|
+
"preserveMemberOrder": false,
|
|
1424
|
+
"members": [
|
|
1425
|
+
{
|
|
1426
|
+
"kind": "PropertySignature",
|
|
1427
|
+
"canonicalReference": "@genesislcap/foundation-layout!RegisteredElementConfig#closable:member",
|
|
1428
|
+
"docComment": "",
|
|
1429
|
+
"excerptTokens": [
|
|
1430
|
+
{
|
|
1431
|
+
"kind": "Content",
|
|
1432
|
+
"text": "closable?: "
|
|
1433
|
+
},
|
|
1434
|
+
{
|
|
1435
|
+
"kind": "Content",
|
|
1436
|
+
"text": "boolean"
|
|
1437
|
+
},
|
|
1438
|
+
{
|
|
1439
|
+
"kind": "Content",
|
|
1440
|
+
"text": ";"
|
|
1441
|
+
}
|
|
1442
|
+
],
|
|
1443
|
+
"isReadonly": false,
|
|
1444
|
+
"isOptional": true,
|
|
1445
|
+
"releaseTag": "Beta",
|
|
1446
|
+
"name": "closable",
|
|
1447
|
+
"propertyTypeTokenRange": {
|
|
1448
|
+
"startIndex": 1,
|
|
1449
|
+
"endIndex": 2
|
|
1450
|
+
}
|
|
1451
|
+
},
|
|
1452
|
+
{
|
|
1453
|
+
"kind": "PropertySignature",
|
|
1454
|
+
"canonicalReference": "@genesislcap/foundation-layout!RegisteredElementConfig#registration:member",
|
|
1455
|
+
"docComment": "",
|
|
1456
|
+
"excerptTokens": [
|
|
1457
|
+
{
|
|
1458
|
+
"kind": "Content",
|
|
1459
|
+
"text": "registration: "
|
|
1460
|
+
},
|
|
1461
|
+
{
|
|
1462
|
+
"kind": "Content",
|
|
1463
|
+
"text": "string"
|
|
1464
|
+
},
|
|
1465
|
+
{
|
|
1466
|
+
"kind": "Content",
|
|
1467
|
+
"text": ";"
|
|
1468
|
+
}
|
|
1469
|
+
],
|
|
1470
|
+
"isReadonly": false,
|
|
1471
|
+
"isOptional": false,
|
|
1472
|
+
"releaseTag": "Beta",
|
|
1473
|
+
"name": "registration",
|
|
1474
|
+
"propertyTypeTokenRange": {
|
|
1475
|
+
"startIndex": 1,
|
|
1476
|
+
"endIndex": 2
|
|
1477
|
+
}
|
|
1478
|
+
},
|
|
1479
|
+
{
|
|
1480
|
+
"kind": "PropertySignature",
|
|
1481
|
+
"canonicalReference": "@genesislcap/foundation-layout!RegisteredElementConfig#size:member",
|
|
1482
|
+
"docComment": "",
|
|
1483
|
+
"excerptTokens": [
|
|
1484
|
+
{
|
|
1485
|
+
"kind": "Content",
|
|
1486
|
+
"text": "size?: "
|
|
1487
|
+
},
|
|
1488
|
+
{
|
|
1489
|
+
"kind": "Content",
|
|
1490
|
+
"text": "string"
|
|
1491
|
+
},
|
|
1492
|
+
{
|
|
1493
|
+
"kind": "Content",
|
|
1494
|
+
"text": ";"
|
|
1495
|
+
}
|
|
1496
|
+
],
|
|
1497
|
+
"isReadonly": false,
|
|
1498
|
+
"isOptional": true,
|
|
1499
|
+
"releaseTag": "Beta",
|
|
1500
|
+
"name": "size",
|
|
1501
|
+
"propertyTypeTokenRange": {
|
|
1502
|
+
"startIndex": 1,
|
|
1503
|
+
"endIndex": 2
|
|
1504
|
+
}
|
|
1505
|
+
},
|
|
1506
|
+
{
|
|
1507
|
+
"kind": "PropertySignature",
|
|
1508
|
+
"canonicalReference": "@genesislcap/foundation-layout!RegisteredElementConfig#title:member",
|
|
1509
|
+
"docComment": "",
|
|
1510
|
+
"excerptTokens": [
|
|
1511
|
+
{
|
|
1512
|
+
"kind": "Content",
|
|
1513
|
+
"text": "title?: "
|
|
1514
|
+
},
|
|
1515
|
+
{
|
|
1516
|
+
"kind": "Content",
|
|
1517
|
+
"text": "string"
|
|
1518
|
+
},
|
|
1519
|
+
{
|
|
1520
|
+
"kind": "Content",
|
|
1521
|
+
"text": ";"
|
|
1522
|
+
}
|
|
1523
|
+
],
|
|
1524
|
+
"isReadonly": false,
|
|
1525
|
+
"isOptional": true,
|
|
1526
|
+
"releaseTag": "Beta",
|
|
1527
|
+
"name": "title",
|
|
1528
|
+
"propertyTypeTokenRange": {
|
|
1529
|
+
"startIndex": 1,
|
|
1530
|
+
"endIndex": 2
|
|
1531
|
+
}
|
|
1532
|
+
}
|
|
1533
|
+
],
|
|
1534
|
+
"extendsTokenRanges": []
|
|
1535
|
+
},
|
|
1536
|
+
{
|
|
1537
|
+
"kind": "TypeAlias",
|
|
1538
|
+
"canonicalReference": "@genesislcap/foundation-layout!SerialisedLayout:type",
|
|
1539
|
+
"docComment": "/**\n * Versioned layout config objects. `v` is the version and `c` contains the layout config.\n *\n * @remarks\n *\n * Versioning the layout config in this way allows changes to the config schema while remaining backwards compatible with any existing client/user configurations. When loading an older version of the configurations the version can be used to lookup and apply transformer functions to get the newest version of the config from it.\n *\n * As more versions of configurations are added this type will have extra union types as part of SerialisedLayout.\n *\n * @beta\n */\n",
|
|
1540
|
+
"excerptTokens": [
|
|
1541
|
+
{
|
|
1542
|
+
"kind": "Content",
|
|
1543
|
+
"text": "export type SerialisedLayout = "
|
|
1544
|
+
},
|
|
1545
|
+
{
|
|
1546
|
+
"kind": "Content",
|
|
1547
|
+
"text": "{\n v: '1';\n c: "
|
|
1548
|
+
},
|
|
1549
|
+
{
|
|
1550
|
+
"kind": "Reference",
|
|
1551
|
+
"text": "ResolvedLayoutConfig",
|
|
1552
|
+
"canonicalReference": "@genesislcap/foundation-layout!~ResolvedLayoutConfig"
|
|
1553
|
+
},
|
|
1554
|
+
{
|
|
1555
|
+
"kind": "Content",
|
|
1556
|
+
"text": ";\n}"
|
|
1557
|
+
},
|
|
1558
|
+
{
|
|
1559
|
+
"kind": "Content",
|
|
1560
|
+
"text": ";"
|
|
1561
|
+
}
|
|
1562
|
+
],
|
|
1563
|
+
"fileUrlPath": "src/utils/types.ts",
|
|
1564
|
+
"releaseTag": "Beta",
|
|
1565
|
+
"name": "SerialisedLayout",
|
|
1566
|
+
"typeTokenRange": {
|
|
1567
|
+
"startIndex": 1,
|
|
1568
|
+
"endIndex": 4
|
|
1569
|
+
}
|
|
1570
|
+
}
|
|
1571
|
+
]
|
|
1572
|
+
}
|
|
1573
|
+
]
|
|
1574
|
+
}
|