@genesislcap/foundation-layout 14.32.0 → 14.32.1
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/dist/custom-elements.json +213 -213
- package/package.json +6 -6
|
@@ -111,219 +111,6 @@
|
|
|
111
111
|
}
|
|
112
112
|
]
|
|
113
113
|
},
|
|
114
|
-
{
|
|
115
|
-
"kind": "javascript-module",
|
|
116
|
-
"path": "src/utils/constants.ts",
|
|
117
|
-
"declarations": [
|
|
118
|
-
{
|
|
119
|
-
"kind": "variable",
|
|
120
|
-
"name": "DEFAULT_RELOAD_BUFFER",
|
|
121
|
-
"type": {
|
|
122
|
-
"text": "number"
|
|
123
|
-
},
|
|
124
|
-
"default": "500",
|
|
125
|
-
"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.",
|
|
126
|
-
"privacy": "public"
|
|
127
|
-
}
|
|
128
|
-
],
|
|
129
|
-
"exports": [
|
|
130
|
-
{
|
|
131
|
-
"kind": "js",
|
|
132
|
-
"name": "DEFAULT_RELOAD_BUFFER",
|
|
133
|
-
"declaration": {
|
|
134
|
-
"name": "DEFAULT_RELOAD_BUFFER",
|
|
135
|
-
"module": "src/utils/constants.ts"
|
|
136
|
-
}
|
|
137
|
-
}
|
|
138
|
-
]
|
|
139
|
-
},
|
|
140
|
-
{
|
|
141
|
-
"kind": "javascript-module",
|
|
142
|
-
"path": "src/utils/error.ts",
|
|
143
|
-
"declarations": [
|
|
144
|
-
{
|
|
145
|
-
"kind": "class",
|
|
146
|
-
"description": "",
|
|
147
|
-
"name": "LayoutUsageError",
|
|
148
|
-
"superclass": {
|
|
149
|
-
"name": "Error",
|
|
150
|
-
"module": "src/utils/error.ts"
|
|
151
|
-
}
|
|
152
|
-
},
|
|
153
|
-
{
|
|
154
|
-
"kind": "class",
|
|
155
|
-
"description": "",
|
|
156
|
-
"name": "LayoutRegistrationError",
|
|
157
|
-
"superclass": {
|
|
158
|
-
"name": "Error",
|
|
159
|
-
"module": "src/utils/error.ts"
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
],
|
|
163
|
-
"exports": [
|
|
164
|
-
{
|
|
165
|
-
"kind": "js",
|
|
166
|
-
"name": "LayoutUsageError",
|
|
167
|
-
"declaration": {
|
|
168
|
-
"name": "LayoutUsageError",
|
|
169
|
-
"module": "src/utils/error.ts"
|
|
170
|
-
}
|
|
171
|
-
},
|
|
172
|
-
{
|
|
173
|
-
"kind": "js",
|
|
174
|
-
"name": "LayoutRegistrationError",
|
|
175
|
-
"declaration": {
|
|
176
|
-
"name": "LayoutRegistrationError",
|
|
177
|
-
"module": "src/utils/error.ts"
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
]
|
|
181
|
-
},
|
|
182
|
-
{
|
|
183
|
-
"kind": "javascript-module",
|
|
184
|
-
"path": "src/utils/events.ts",
|
|
185
|
-
"declarations": [
|
|
186
|
-
{
|
|
187
|
-
"kind": "variable",
|
|
188
|
-
"name": "LayoutEmitEvents",
|
|
189
|
-
"type": {
|
|
190
|
-
"text": "{\n firstLoaded: 'first-loaded',\n itemAdded: 'item-added',\n itemRemoved: 'item-removed',\n itemResized: 'item-resized',\n}"
|
|
191
|
-
},
|
|
192
|
-
"default": "{\n firstLoaded: 'first-loaded',\n itemAdded: 'item-added',\n itemRemoved: 'item-removed',\n itemResized: 'item-resized',\n}",
|
|
193
|
-
"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",
|
|
194
|
-
"privacy": "public"
|
|
195
|
-
},
|
|
196
|
-
{
|
|
197
|
-
"kind": "variable",
|
|
198
|
-
"name": "LayoutReceiveEvents",
|
|
199
|
-
"type": {
|
|
200
|
-
"text": "{\n changeTitle: 'change-title',\n}"
|
|
201
|
-
},
|
|
202
|
-
"default": "{\n changeTitle: 'change-title',\n}",
|
|
203
|
-
"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.",
|
|
204
|
-
"privacy": "public"
|
|
205
|
-
}
|
|
206
|
-
],
|
|
207
|
-
"exports": [
|
|
208
|
-
{
|
|
209
|
-
"kind": "js",
|
|
210
|
-
"name": "LayoutEmitEvents",
|
|
211
|
-
"declaration": {
|
|
212
|
-
"name": "LayoutEmitEvents",
|
|
213
|
-
"module": "src/utils/events.ts"
|
|
214
|
-
}
|
|
215
|
-
},
|
|
216
|
-
{
|
|
217
|
-
"kind": "js",
|
|
218
|
-
"name": "LayoutReceiveEvents",
|
|
219
|
-
"declaration": {
|
|
220
|
-
"name": "LayoutReceiveEvents",
|
|
221
|
-
"module": "src/utils/events.ts"
|
|
222
|
-
}
|
|
223
|
-
}
|
|
224
|
-
]
|
|
225
|
-
},
|
|
226
|
-
{
|
|
227
|
-
"kind": "javascript-module",
|
|
228
|
-
"path": "src/utils/index.ts",
|
|
229
|
-
"declarations": [],
|
|
230
|
-
"exports": [
|
|
231
|
-
{
|
|
232
|
-
"kind": "js",
|
|
233
|
-
"name": "*",
|
|
234
|
-
"declaration": {
|
|
235
|
-
"name": "*",
|
|
236
|
-
"package": "./constants"
|
|
237
|
-
}
|
|
238
|
-
},
|
|
239
|
-
{
|
|
240
|
-
"kind": "js",
|
|
241
|
-
"name": "*",
|
|
242
|
-
"declaration": {
|
|
243
|
-
"name": "*",
|
|
244
|
-
"package": "./error"
|
|
245
|
-
}
|
|
246
|
-
},
|
|
247
|
-
{
|
|
248
|
-
"kind": "js",
|
|
249
|
-
"name": "*",
|
|
250
|
-
"declaration": {
|
|
251
|
-
"name": "*",
|
|
252
|
-
"package": "./events"
|
|
253
|
-
}
|
|
254
|
-
},
|
|
255
|
-
{
|
|
256
|
-
"kind": "js",
|
|
257
|
-
"name": "*",
|
|
258
|
-
"declaration": {
|
|
259
|
-
"name": "*",
|
|
260
|
-
"package": "./misc"
|
|
261
|
-
}
|
|
262
|
-
},
|
|
263
|
-
{
|
|
264
|
-
"kind": "js",
|
|
265
|
-
"name": "*",
|
|
266
|
-
"declaration": {
|
|
267
|
-
"name": "*",
|
|
268
|
-
"package": "./templates"
|
|
269
|
-
}
|
|
270
|
-
},
|
|
271
|
-
{
|
|
272
|
-
"kind": "js",
|
|
273
|
-
"name": "*",
|
|
274
|
-
"declaration": {
|
|
275
|
-
"name": "*",
|
|
276
|
-
"package": "./types"
|
|
277
|
-
}
|
|
278
|
-
},
|
|
279
|
-
{
|
|
280
|
-
"kind": "js",
|
|
281
|
-
"name": "*",
|
|
282
|
-
"declaration": {
|
|
283
|
-
"name": "*",
|
|
284
|
-
"package": "./error"
|
|
285
|
-
}
|
|
286
|
-
}
|
|
287
|
-
]
|
|
288
|
-
},
|
|
289
|
-
{
|
|
290
|
-
"kind": "javascript-module",
|
|
291
|
-
"path": "src/utils/logger.ts",
|
|
292
|
-
"declarations": [
|
|
293
|
-
{
|
|
294
|
-
"kind": "variable",
|
|
295
|
-
"name": "logger"
|
|
296
|
-
}
|
|
297
|
-
],
|
|
298
|
-
"exports": [
|
|
299
|
-
{
|
|
300
|
-
"kind": "js",
|
|
301
|
-
"name": "logger",
|
|
302
|
-
"declaration": {
|
|
303
|
-
"name": "logger",
|
|
304
|
-
"module": "src/utils/logger.ts"
|
|
305
|
-
}
|
|
306
|
-
}
|
|
307
|
-
]
|
|
308
|
-
},
|
|
309
|
-
{
|
|
310
|
-
"kind": "javascript-module",
|
|
311
|
-
"path": "src/utils/misc.ts",
|
|
312
|
-
"declarations": [],
|
|
313
|
-
"exports": []
|
|
314
|
-
},
|
|
315
|
-
{
|
|
316
|
-
"kind": "javascript-module",
|
|
317
|
-
"path": "src/utils/templates.ts",
|
|
318
|
-
"declarations": [],
|
|
319
|
-
"exports": []
|
|
320
|
-
},
|
|
321
|
-
{
|
|
322
|
-
"kind": "javascript-module",
|
|
323
|
-
"path": "src/utils/types.ts",
|
|
324
|
-
"declarations": [],
|
|
325
|
-
"exports": []
|
|
326
|
-
},
|
|
327
114
|
{
|
|
328
115
|
"kind": "javascript-module",
|
|
329
116
|
"path": "src/main/index.ts",
|
|
@@ -1008,6 +795,219 @@
|
|
|
1008
795
|
}
|
|
1009
796
|
}
|
|
1010
797
|
]
|
|
798
|
+
},
|
|
799
|
+
{
|
|
800
|
+
"kind": "javascript-module",
|
|
801
|
+
"path": "src/utils/constants.ts",
|
|
802
|
+
"declarations": [
|
|
803
|
+
{
|
|
804
|
+
"kind": "variable",
|
|
805
|
+
"name": "DEFAULT_RELOAD_BUFFER",
|
|
806
|
+
"type": {
|
|
807
|
+
"text": "number"
|
|
808
|
+
},
|
|
809
|
+
"default": "500",
|
|
810
|
+
"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.",
|
|
811
|
+
"privacy": "public"
|
|
812
|
+
}
|
|
813
|
+
],
|
|
814
|
+
"exports": [
|
|
815
|
+
{
|
|
816
|
+
"kind": "js",
|
|
817
|
+
"name": "DEFAULT_RELOAD_BUFFER",
|
|
818
|
+
"declaration": {
|
|
819
|
+
"name": "DEFAULT_RELOAD_BUFFER",
|
|
820
|
+
"module": "src/utils/constants.ts"
|
|
821
|
+
}
|
|
822
|
+
}
|
|
823
|
+
]
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
"kind": "javascript-module",
|
|
827
|
+
"path": "src/utils/error.ts",
|
|
828
|
+
"declarations": [
|
|
829
|
+
{
|
|
830
|
+
"kind": "class",
|
|
831
|
+
"description": "",
|
|
832
|
+
"name": "LayoutUsageError",
|
|
833
|
+
"superclass": {
|
|
834
|
+
"name": "Error",
|
|
835
|
+
"module": "src/utils/error.ts"
|
|
836
|
+
}
|
|
837
|
+
},
|
|
838
|
+
{
|
|
839
|
+
"kind": "class",
|
|
840
|
+
"description": "",
|
|
841
|
+
"name": "LayoutRegistrationError",
|
|
842
|
+
"superclass": {
|
|
843
|
+
"name": "Error",
|
|
844
|
+
"module": "src/utils/error.ts"
|
|
845
|
+
}
|
|
846
|
+
}
|
|
847
|
+
],
|
|
848
|
+
"exports": [
|
|
849
|
+
{
|
|
850
|
+
"kind": "js",
|
|
851
|
+
"name": "LayoutUsageError",
|
|
852
|
+
"declaration": {
|
|
853
|
+
"name": "LayoutUsageError",
|
|
854
|
+
"module": "src/utils/error.ts"
|
|
855
|
+
}
|
|
856
|
+
},
|
|
857
|
+
{
|
|
858
|
+
"kind": "js",
|
|
859
|
+
"name": "LayoutRegistrationError",
|
|
860
|
+
"declaration": {
|
|
861
|
+
"name": "LayoutRegistrationError",
|
|
862
|
+
"module": "src/utils/error.ts"
|
|
863
|
+
}
|
|
864
|
+
}
|
|
865
|
+
]
|
|
866
|
+
},
|
|
867
|
+
{
|
|
868
|
+
"kind": "javascript-module",
|
|
869
|
+
"path": "src/utils/events.ts",
|
|
870
|
+
"declarations": [
|
|
871
|
+
{
|
|
872
|
+
"kind": "variable",
|
|
873
|
+
"name": "LayoutEmitEvents",
|
|
874
|
+
"type": {
|
|
875
|
+
"text": "{\n firstLoaded: 'first-loaded',\n itemAdded: 'item-added',\n itemRemoved: 'item-removed',\n itemResized: 'item-resized',\n}"
|
|
876
|
+
},
|
|
877
|
+
"default": "{\n firstLoaded: 'first-loaded',\n itemAdded: 'item-added',\n itemRemoved: 'item-removed',\n itemResized: 'item-resized',\n}",
|
|
878
|
+
"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",
|
|
879
|
+
"privacy": "public"
|
|
880
|
+
},
|
|
881
|
+
{
|
|
882
|
+
"kind": "variable",
|
|
883
|
+
"name": "LayoutReceiveEvents",
|
|
884
|
+
"type": {
|
|
885
|
+
"text": "{\n changeTitle: 'change-title',\n}"
|
|
886
|
+
},
|
|
887
|
+
"default": "{\n changeTitle: 'change-title',\n}",
|
|
888
|
+
"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.",
|
|
889
|
+
"privacy": "public"
|
|
890
|
+
}
|
|
891
|
+
],
|
|
892
|
+
"exports": [
|
|
893
|
+
{
|
|
894
|
+
"kind": "js",
|
|
895
|
+
"name": "LayoutEmitEvents",
|
|
896
|
+
"declaration": {
|
|
897
|
+
"name": "LayoutEmitEvents",
|
|
898
|
+
"module": "src/utils/events.ts"
|
|
899
|
+
}
|
|
900
|
+
},
|
|
901
|
+
{
|
|
902
|
+
"kind": "js",
|
|
903
|
+
"name": "LayoutReceiveEvents",
|
|
904
|
+
"declaration": {
|
|
905
|
+
"name": "LayoutReceiveEvents",
|
|
906
|
+
"module": "src/utils/events.ts"
|
|
907
|
+
}
|
|
908
|
+
}
|
|
909
|
+
]
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
"kind": "javascript-module",
|
|
913
|
+
"path": "src/utils/index.ts",
|
|
914
|
+
"declarations": [],
|
|
915
|
+
"exports": [
|
|
916
|
+
{
|
|
917
|
+
"kind": "js",
|
|
918
|
+
"name": "*",
|
|
919
|
+
"declaration": {
|
|
920
|
+
"name": "*",
|
|
921
|
+
"package": "./constants"
|
|
922
|
+
}
|
|
923
|
+
},
|
|
924
|
+
{
|
|
925
|
+
"kind": "js",
|
|
926
|
+
"name": "*",
|
|
927
|
+
"declaration": {
|
|
928
|
+
"name": "*",
|
|
929
|
+
"package": "./error"
|
|
930
|
+
}
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
"kind": "js",
|
|
934
|
+
"name": "*",
|
|
935
|
+
"declaration": {
|
|
936
|
+
"name": "*",
|
|
937
|
+
"package": "./events"
|
|
938
|
+
}
|
|
939
|
+
},
|
|
940
|
+
{
|
|
941
|
+
"kind": "js",
|
|
942
|
+
"name": "*",
|
|
943
|
+
"declaration": {
|
|
944
|
+
"name": "*",
|
|
945
|
+
"package": "./misc"
|
|
946
|
+
}
|
|
947
|
+
},
|
|
948
|
+
{
|
|
949
|
+
"kind": "js",
|
|
950
|
+
"name": "*",
|
|
951
|
+
"declaration": {
|
|
952
|
+
"name": "*",
|
|
953
|
+
"package": "./templates"
|
|
954
|
+
}
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
"kind": "js",
|
|
958
|
+
"name": "*",
|
|
959
|
+
"declaration": {
|
|
960
|
+
"name": "*",
|
|
961
|
+
"package": "./types"
|
|
962
|
+
}
|
|
963
|
+
},
|
|
964
|
+
{
|
|
965
|
+
"kind": "js",
|
|
966
|
+
"name": "*",
|
|
967
|
+
"declaration": {
|
|
968
|
+
"name": "*",
|
|
969
|
+
"package": "./error"
|
|
970
|
+
}
|
|
971
|
+
}
|
|
972
|
+
]
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
"kind": "javascript-module",
|
|
976
|
+
"path": "src/utils/logger.ts",
|
|
977
|
+
"declarations": [
|
|
978
|
+
{
|
|
979
|
+
"kind": "variable",
|
|
980
|
+
"name": "logger"
|
|
981
|
+
}
|
|
982
|
+
],
|
|
983
|
+
"exports": [
|
|
984
|
+
{
|
|
985
|
+
"kind": "js",
|
|
986
|
+
"name": "logger",
|
|
987
|
+
"declaration": {
|
|
988
|
+
"name": "logger",
|
|
989
|
+
"module": "src/utils/logger.ts"
|
|
990
|
+
}
|
|
991
|
+
}
|
|
992
|
+
]
|
|
993
|
+
},
|
|
994
|
+
{
|
|
995
|
+
"kind": "javascript-module",
|
|
996
|
+
"path": "src/utils/misc.ts",
|
|
997
|
+
"declarations": [],
|
|
998
|
+
"exports": []
|
|
999
|
+
},
|
|
1000
|
+
{
|
|
1001
|
+
"kind": "javascript-module",
|
|
1002
|
+
"path": "src/utils/templates.ts",
|
|
1003
|
+
"declarations": [],
|
|
1004
|
+
"exports": []
|
|
1005
|
+
},
|
|
1006
|
+
{
|
|
1007
|
+
"kind": "javascript-module",
|
|
1008
|
+
"path": "src/utils/types.ts",
|
|
1009
|
+
"declarations": [],
|
|
1010
|
+
"exports": []
|
|
1011
1011
|
}
|
|
1012
1012
|
]
|
|
1013
1013
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-layout",
|
|
3
3
|
"description": "Genesis Foundation UI App Layout",
|
|
4
|
-
"version": "14.32.
|
|
4
|
+
"version": "14.32.1",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
6
|
"main": "dist/esm/index.js",
|
|
7
7
|
"types": "dist/foundation-layout.d.ts",
|
|
@@ -24,13 +24,13 @@
|
|
|
24
24
|
"test:debug": "genx test --debug"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@genesislcap/foundation-testing": "^14.32.
|
|
28
|
-
"@genesislcap/genx": "^14.32.
|
|
27
|
+
"@genesislcap/foundation-testing": "^14.32.1",
|
|
28
|
+
"@genesislcap/genx": "^14.32.1"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@genesis-community/golden-layout": "^2.9.3",
|
|
32
|
-
"@genesislcap/foundation-comms": "^14.32.
|
|
33
|
-
"@genesislcap/foundation-utils": "^14.32.
|
|
32
|
+
"@genesislcap/foundation-comms": "^14.32.1",
|
|
33
|
+
"@genesislcap/foundation-utils": "^14.32.1",
|
|
34
34
|
"@microsoft/fast-components": "^2.21.3",
|
|
35
35
|
"@microsoft/fast-element": "^1.7.0",
|
|
36
36
|
"@microsoft/fast-foundation": "^2.33.2",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"access": "public"
|
|
46
46
|
},
|
|
47
47
|
"customElements": "dist/custom-elements.json",
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "dfa265faf20864c8fbed12b504afc0fa91a45f5b"
|
|
49
49
|
}
|