@luzmo/analytics-components-kit 1.0.1-alpha.140 → 1.0.1-alpha.142
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 +17 -5
- package/angular/components/ai-interaction-textarea.component.ts +2 -0
- package/angular/components/grid.component.ts +2 -2
- package/angular/esm/components/ai-interaction-textarea.component.d.ts +2 -1
- package/angular/esm/components/ai-interaction-textarea.component.js +7 -2
- package/angular/esm/components/grid.component.d.ts +2 -2
- package/angular/esm/types/ai-chat.types.d.ts +1 -0
- package/angular/types/ai-chat.types.ts +1 -0
- package/components/ai-chat/ai-chat.d.ts +21 -1
- package/components/ai-chat/index.cjs +1 -1
- package/components/ai-chat/index.d.ts +1 -0
- package/components/ai-chat/index.js +3 -3
- package/components/ai-chat/request-contract.d.ts +38 -0
- package/components/{ai-chat-Dg2dvhDq.js → ai-chat-DlUYd_Cf.js} +211 -151
- package/components/ai-chat-rok8ar11.cjs +62 -0
- package/components/ai-interaction-textarea/ai-interaction-textarea.d.ts +6 -0
- package/components/ai-interaction-textarea/index.cjs +1 -1
- package/components/ai-interaction-textarea/index.js +1 -1
- package/components/{ai-interaction-textarea-DDVKMfTQ.cjs → ai-interaction-textarea-BGnQbDpJ.cjs} +2 -2
- package/components/{ai-interaction-textarea-ZDQPVgXC.js → ai-interaction-textarea-EdWcPK0w.js} +6 -3
- package/components/grid/grid.d.ts +4 -9
- package/components/grid/helpers/grid-effects.d.ts +1 -0
- package/components/grid/helpers/grid-events.d.ts +50 -0
- package/components/grid/helpers/grid-interactions.d.ts +91 -0
- package/components/grid/helpers/grid-item-management.d.ts +45 -0
- package/components/grid/helpers/grid-item-popover.d.ts +15 -0
- package/components/grid/helpers/grid-items.d.ts +9 -0
- package/components/grid/helpers/grid-keyboard-updates.d.ts +18 -0
- package/components/grid/helpers/grid-keydown-event.d.ts +18 -0
- package/components/grid/helpers/grid-popover-cleanup.d.ts +4 -0
- package/components/grid/helpers/grid-rendering.d.ts +63 -0
- package/components/grid/helpers/grid-stack-lifecycle.d.ts +26 -0
- package/components/grid/helpers/grid-theme.d.ts +16 -0
- package/components/grid/helpers/grid-update-cycle.d.ts +24 -0
- package/components/grid/index.cjs +1 -1
- package/components/grid/index.js +1 -1
- package/components/grid-BNbbl-9p.cjs +316 -0
- package/components/{grid-BW6LPvCu.js → grid-Ca-fxUK1.js} +2341 -1965
- package/components/index.cjs +1 -1
- package/components/index.js +5 -5
- package/components/item-data-picker-panel/index.cjs +1 -1
- package/components/item-data-picker-panel/index.js +1 -1
- package/components/slot-contents-picker/index.cjs +1 -1
- package/components/slot-contents-picker/index.js +1 -1
- package/components/slot-contents-picker/slot-contents-picker.d.ts +4 -2
- package/components/{slot-contents-picker-HRJuZQq5.cjs → slot-contents-picker-BO5lSTDz.cjs} +4 -4
- package/components/{slot-contents-picker-CgACNIVS.js → slot-contents-picker-Bw_G1BwZ.js} +112 -92
- package/custom-elements.json +1558 -17
- package/package.json +2 -2
- package/types/ai-chat.types.d.ts +1 -0
- package/components/ai-chat-CbqvVZDp.cjs +0 -60
- package/components/grid-xtLaTdhb.cjs +0 -316
package/custom-elements.json
CHANGED
|
@@ -141,6 +141,26 @@
|
|
|
141
141
|
"description": "AI model preference for chart generation",
|
|
142
142
|
"attribute": "model-preference"
|
|
143
143
|
},
|
|
144
|
+
{
|
|
145
|
+
"kind": "field",
|
|
146
|
+
"name": "requestMode",
|
|
147
|
+
"type": {
|
|
148
|
+
"text": "'internal' | 'external'"
|
|
149
|
+
},
|
|
150
|
+
"default": "'internal'",
|
|
151
|
+
"description": "Controls if API calls are handled internally or by the host application.",
|
|
152
|
+
"attribute": "request-mode"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"kind": "field",
|
|
156
|
+
"name": "isGenerating",
|
|
157
|
+
"type": {
|
|
158
|
+
"text": "boolean"
|
|
159
|
+
},
|
|
160
|
+
"default": "false",
|
|
161
|
+
"description": "Used only in external request mode to reflect request lifecycle in the UI.",
|
|
162
|
+
"attribute": "is-generating"
|
|
163
|
+
},
|
|
144
164
|
{
|
|
145
165
|
"kind": "field",
|
|
146
166
|
"name": "conversationId",
|
|
@@ -160,6 +180,16 @@
|
|
|
160
180
|
"default": "null",
|
|
161
181
|
"description": "vizItem",
|
|
162
182
|
"attribute": "chart"
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"kind": "field",
|
|
186
|
+
"name": "apiVersion",
|
|
187
|
+
"type": {
|
|
188
|
+
"text": "string"
|
|
189
|
+
},
|
|
190
|
+
"default": "'0.1.0'",
|
|
191
|
+
"description": "API version",
|
|
192
|
+
"attribute": "api-version"
|
|
163
193
|
}
|
|
164
194
|
],
|
|
165
195
|
"events": [
|
|
@@ -183,6 +213,19 @@
|
|
|
183
213
|
"text": "CustomEvent"
|
|
184
214
|
},
|
|
185
215
|
"description": "Fired when an AI text response is received. For chart responses, this event is only fired if the response includes a `message` field. For error responses, this event is always fired with the error explanation."
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"name": "luzmo-datasets-changed",
|
|
219
|
+
"type": {
|
|
220
|
+
"text": "CustomEvent"
|
|
221
|
+
}
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"name": "luzmo-prompt-submitted",
|
|
225
|
+
"type": {
|
|
226
|
+
"text": "CustomEvent"
|
|
227
|
+
},
|
|
228
|
+
"description": "Fired when request-mode is set to external so the host can execute the API request lifecycle."
|
|
186
229
|
}
|
|
187
230
|
],
|
|
188
231
|
"attributes": [
|
|
@@ -294,6 +337,24 @@
|
|
|
294
337
|
"description": "AI model preference for chart generation",
|
|
295
338
|
"fieldName": "modelPreference"
|
|
296
339
|
},
|
|
340
|
+
{
|
|
341
|
+
"name": "request-mode",
|
|
342
|
+
"type": {
|
|
343
|
+
"text": "'internal' | 'external'"
|
|
344
|
+
},
|
|
345
|
+
"default": "'internal'",
|
|
346
|
+
"description": "Controls if API calls are handled internally or by the host application.",
|
|
347
|
+
"fieldName": "requestMode"
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"name": "is-generating",
|
|
351
|
+
"type": {
|
|
352
|
+
"text": "boolean"
|
|
353
|
+
},
|
|
354
|
+
"default": "false",
|
|
355
|
+
"description": "Used only in external request mode to reflect request lifecycle in the UI.",
|
|
356
|
+
"fieldName": "isGenerating"
|
|
357
|
+
},
|
|
297
358
|
{
|
|
298
359
|
"name": "conversation-id",
|
|
299
360
|
"type": {
|
|
@@ -311,6 +372,15 @@
|
|
|
311
372
|
"default": "null",
|
|
312
373
|
"description": "vizItem",
|
|
313
374
|
"fieldName": "chart"
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"name": "api-version",
|
|
378
|
+
"type": {
|
|
379
|
+
"text": "string"
|
|
380
|
+
},
|
|
381
|
+
"default": "'0.1.0'",
|
|
382
|
+
"description": "API version",
|
|
383
|
+
"fieldName": "apiVersion"
|
|
314
384
|
}
|
|
315
385
|
],
|
|
316
386
|
"superclass": {
|
|
@@ -318,6 +388,19 @@
|
|
|
318
388
|
"package": "@utils/base"
|
|
319
389
|
},
|
|
320
390
|
"summary": "A complete AI chat interface combining messages display and input"
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"kind": "variable",
|
|
394
|
+
"name": "url",
|
|
395
|
+
"default": "`${this.apiUrl}/${this.apiVersion}/aimessage`"
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"kind": "variable",
|
|
399
|
+
"name": "datasetIds"
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"kind": "variable",
|
|
403
|
+
"name": "request"
|
|
321
404
|
}
|
|
322
405
|
],
|
|
323
406
|
"exports": [
|
|
@@ -331,6 +414,39 @@
|
|
|
331
414
|
}
|
|
332
415
|
]
|
|
333
416
|
},
|
|
417
|
+
{
|
|
418
|
+
"kind": "javascript-module",
|
|
419
|
+
"path": "src/components/ai-chat/request-contract.ts",
|
|
420
|
+
"declarations": [
|
|
421
|
+
{
|
|
422
|
+
"kind": "function",
|
|
423
|
+
"name": "buildAiMessageRequest",
|
|
424
|
+
"return": {
|
|
425
|
+
"type": {
|
|
426
|
+
"text": "AiMessageRequestBody"
|
|
427
|
+
}
|
|
428
|
+
},
|
|
429
|
+
"parameters": [
|
|
430
|
+
{
|
|
431
|
+
"name": "options",
|
|
432
|
+
"type": {
|
|
433
|
+
"text": "BuildAiMessageRequestOptions"
|
|
434
|
+
}
|
|
435
|
+
}
|
|
436
|
+
]
|
|
437
|
+
}
|
|
438
|
+
],
|
|
439
|
+
"exports": [
|
|
440
|
+
{
|
|
441
|
+
"kind": "js",
|
|
442
|
+
"name": "buildAiMessageRequest",
|
|
443
|
+
"declaration": {
|
|
444
|
+
"name": "buildAiMessageRequest",
|
|
445
|
+
"module": "src/components/ai-chat/request-contract.ts"
|
|
446
|
+
}
|
|
447
|
+
}
|
|
448
|
+
]
|
|
449
|
+
},
|
|
334
450
|
{
|
|
335
451
|
"kind": "javascript-module",
|
|
336
452
|
"path": "src/components/ai-interaction-textarea/ai-interaction-textarea.ts",
|
|
@@ -470,6 +586,16 @@
|
|
|
470
586
|
"description": "The current value of the textarea (can be controlled from parent to clear or set text)",
|
|
471
587
|
"attribute": "value"
|
|
472
588
|
},
|
|
589
|
+
{
|
|
590
|
+
"kind": "field",
|
|
591
|
+
"name": "retainOnSubmit",
|
|
592
|
+
"type": {
|
|
593
|
+
"text": "boolean"
|
|
594
|
+
},
|
|
595
|
+
"default": "false",
|
|
596
|
+
"description": "When true, retains the input value after submitting a prompt (default: false)\nWhen false (default), clears the textarea value after submission",
|
|
597
|
+
"attribute": "retain-on-submit"
|
|
598
|
+
},
|
|
473
599
|
{
|
|
474
600
|
"type": {
|
|
475
601
|
"text": "boolean"
|
|
@@ -494,6 +620,14 @@
|
|
|
494
620
|
"name": "is-generating",
|
|
495
621
|
"kind": "field"
|
|
496
622
|
},
|
|
623
|
+
{
|
|
624
|
+
"type": {
|
|
625
|
+
"text": "boolean"
|
|
626
|
+
},
|
|
627
|
+
"description": "When true, retains the input value after submission (default: false, clears on submit)",
|
|
628
|
+
"name": "retain-on-submit",
|
|
629
|
+
"kind": "field"
|
|
630
|
+
},
|
|
497
631
|
{
|
|
498
632
|
"type": {
|
|
499
633
|
"text": "string"
|
|
@@ -796,6 +930,15 @@
|
|
|
796
930
|
"default": "''",
|
|
797
931
|
"description": "The current value of the textarea (can be controlled from parent to clear or set text)",
|
|
798
932
|
"fieldName": "value"
|
|
933
|
+
},
|
|
934
|
+
{
|
|
935
|
+
"name": "retain-on-submit",
|
|
936
|
+
"type": {
|
|
937
|
+
"text": "boolean"
|
|
938
|
+
},
|
|
939
|
+
"default": "false",
|
|
940
|
+
"description": "When true, retains the input value after submitting a prompt (default: false)\nWhen false (default), clears the textarea value after submission",
|
|
941
|
+
"fieldName": "retainOnSubmit"
|
|
799
942
|
}
|
|
800
943
|
],
|
|
801
944
|
"superclass": {
|
|
@@ -8669,7 +8812,7 @@
|
|
|
8669
8812
|
"kind": "field",
|
|
8670
8813
|
"name": "theme",
|
|
8671
8814
|
"type": {
|
|
8672
|
-
"text": "
|
|
8815
|
+
"text": "ThemeConfig | undefined"
|
|
8673
8816
|
},
|
|
8674
8817
|
"description": "Grid options configuration",
|
|
8675
8818
|
"attribute": "theme",
|
|
@@ -8698,25 +8841,16 @@
|
|
|
8698
8841
|
],
|
|
8699
8842
|
"events": [
|
|
8700
8843
|
{
|
|
8701
|
-
"
|
|
8702
|
-
"
|
|
8703
|
-
"text": "CustomEvent"
|
|
8704
|
-
},
|
|
8705
|
-
"description": "Fired when an item action is performed"
|
|
8844
|
+
"description": "Fired when an item action is performed",
|
|
8845
|
+
"name": "luzmo-grid-item-action"
|
|
8706
8846
|
},
|
|
8707
8847
|
{
|
|
8708
|
-
"
|
|
8709
|
-
"
|
|
8710
|
-
"text": "CustomEvent"
|
|
8711
|
-
},
|
|
8712
|
-
"description": "Fired when the grid is changed"
|
|
8848
|
+
"description": "Fired when the grid is changed",
|
|
8849
|
+
"name": "luzmo-grid-changed"
|
|
8713
8850
|
},
|
|
8714
8851
|
{
|
|
8715
|
-
"
|
|
8716
|
-
"
|
|
8717
|
-
"text": "CustomEvent"
|
|
8718
|
-
},
|
|
8719
|
-
"description": "Fired when the grid is ready"
|
|
8852
|
+
"description": "Fired when the grid is ready",
|
|
8853
|
+
"name": "luzmo-grid-ready"
|
|
8720
8854
|
}
|
|
8721
8855
|
],
|
|
8722
8856
|
"attributes": [
|
|
@@ -8829,7 +8963,7 @@
|
|
|
8829
8963
|
{
|
|
8830
8964
|
"name": "theme",
|
|
8831
8965
|
"type": {
|
|
8832
|
-
"text": "
|
|
8966
|
+
"text": "ThemeConfig | undefined"
|
|
8833
8967
|
},
|
|
8834
8968
|
"description": "Grid options configuration",
|
|
8835
8969
|
"fieldName": "theme"
|
|
@@ -8878,6 +9012,1413 @@
|
|
|
8878
9012
|
"declarations": [],
|
|
8879
9013
|
"exports": []
|
|
8880
9014
|
},
|
|
9015
|
+
{
|
|
9016
|
+
"kind": "javascript-module",
|
|
9017
|
+
"path": "src/components/grid/helpers/grid-effects.ts",
|
|
9018
|
+
"declarations": [
|
|
9019
|
+
{
|
|
9020
|
+
"kind": "function",
|
|
9021
|
+
"name": "updateLuzmoVizItemsLanguage",
|
|
9022
|
+
"return": {
|
|
9023
|
+
"type": {
|
|
9024
|
+
"text": "void"
|
|
9025
|
+
}
|
|
9026
|
+
},
|
|
9027
|
+
"parameters": [
|
|
9028
|
+
{
|
|
9029
|
+
"name": "gridItemElements",
|
|
9030
|
+
"type": {
|
|
9031
|
+
"text": "NodeListOf<HTMLElement>"
|
|
9032
|
+
}
|
|
9033
|
+
},
|
|
9034
|
+
{
|
|
9035
|
+
"name": "contentLanguage",
|
|
9036
|
+
"type": {
|
|
9037
|
+
"text": "string"
|
|
9038
|
+
}
|
|
9039
|
+
}
|
|
9040
|
+
]
|
|
9041
|
+
}
|
|
9042
|
+
],
|
|
9043
|
+
"exports": [
|
|
9044
|
+
{
|
|
9045
|
+
"kind": "js",
|
|
9046
|
+
"name": "updateLuzmoVizItemsLanguage",
|
|
9047
|
+
"declaration": {
|
|
9048
|
+
"name": "updateLuzmoVizItemsLanguage",
|
|
9049
|
+
"module": "src/components/grid/helpers/grid-effects.ts"
|
|
9050
|
+
}
|
|
9051
|
+
}
|
|
9052
|
+
]
|
|
9053
|
+
},
|
|
9054
|
+
{
|
|
9055
|
+
"kind": "javascript-module",
|
|
9056
|
+
"path": "src/components/grid/helpers/grid-events.ts",
|
|
9057
|
+
"declarations": [
|
|
9058
|
+
{
|
|
9059
|
+
"kind": "function",
|
|
9060
|
+
"name": "createGridItemActionDetail",
|
|
9061
|
+
"return": {
|
|
9062
|
+
"type": {
|
|
9063
|
+
"text": "GridItemActionEventDetail"
|
|
9064
|
+
}
|
|
9065
|
+
},
|
|
9066
|
+
"parameters": [
|
|
9067
|
+
{
|
|
9068
|
+
"name": "{\n action,\n actionType,\n active,\n items,\n element,\n itemId,\n item,\n deletedId,\n originalElement\n}",
|
|
9069
|
+
"type": {
|
|
9070
|
+
"text": "CreateGridItemActionDetailArgs"
|
|
9071
|
+
}
|
|
9072
|
+
}
|
|
9073
|
+
]
|
|
9074
|
+
},
|
|
9075
|
+
{
|
|
9076
|
+
"kind": "function",
|
|
9077
|
+
"name": "dispatchGridItemActionEvent",
|
|
9078
|
+
"return": {
|
|
9079
|
+
"type": {
|
|
9080
|
+
"text": "void"
|
|
9081
|
+
}
|
|
9082
|
+
},
|
|
9083
|
+
"parameters": [
|
|
9084
|
+
{
|
|
9085
|
+
"name": "{\n target,\n action,\n actionType,\n active,\n items,\n element,\n itemId,\n item,\n deletedId,\n originalElement\n}",
|
|
9086
|
+
"type": {
|
|
9087
|
+
"text": "DispatchGridItemActionEventArgs"
|
|
9088
|
+
}
|
|
9089
|
+
}
|
|
9090
|
+
]
|
|
9091
|
+
},
|
|
9092
|
+
{
|
|
9093
|
+
"kind": "function",
|
|
9094
|
+
"name": "dispatchGridLifecycleEvent",
|
|
9095
|
+
"return": {
|
|
9096
|
+
"type": {
|
|
9097
|
+
"text": "void"
|
|
9098
|
+
}
|
|
9099
|
+
},
|
|
9100
|
+
"parameters": [
|
|
9101
|
+
{
|
|
9102
|
+
"name": "{ target, eventName, detail }",
|
|
9103
|
+
"type": {
|
|
9104
|
+
"text": "DispatchGridLifecycleEventArgs"
|
|
9105
|
+
}
|
|
9106
|
+
}
|
|
9107
|
+
]
|
|
9108
|
+
}
|
|
9109
|
+
],
|
|
9110
|
+
"exports": [
|
|
9111
|
+
{
|
|
9112
|
+
"kind": "js",
|
|
9113
|
+
"name": "createGridItemActionDetail",
|
|
9114
|
+
"declaration": {
|
|
9115
|
+
"name": "createGridItemActionDetail",
|
|
9116
|
+
"module": "src/components/grid/helpers/grid-events.ts"
|
|
9117
|
+
}
|
|
9118
|
+
},
|
|
9119
|
+
{
|
|
9120
|
+
"kind": "js",
|
|
9121
|
+
"name": "dispatchGridItemActionEvent",
|
|
9122
|
+
"declaration": {
|
|
9123
|
+
"name": "dispatchGridItemActionEvent",
|
|
9124
|
+
"module": "src/components/grid/helpers/grid-events.ts"
|
|
9125
|
+
}
|
|
9126
|
+
},
|
|
9127
|
+
{
|
|
9128
|
+
"kind": "js",
|
|
9129
|
+
"name": "dispatchGridLifecycleEvent",
|
|
9130
|
+
"declaration": {
|
|
9131
|
+
"name": "dispatchGridLifecycleEvent",
|
|
9132
|
+
"module": "src/components/grid/helpers/grid-events.ts"
|
|
9133
|
+
}
|
|
9134
|
+
}
|
|
9135
|
+
]
|
|
9136
|
+
},
|
|
9137
|
+
{
|
|
9138
|
+
"kind": "javascript-module",
|
|
9139
|
+
"path": "src/components/grid/helpers/grid-interactions.ts",
|
|
9140
|
+
"declarations": [
|
|
9141
|
+
{
|
|
9142
|
+
"kind": "function",
|
|
9143
|
+
"name": "getGridItemElementFromTarget",
|
|
9144
|
+
"return": {
|
|
9145
|
+
"type": {
|
|
9146
|
+
"text": "HTMLElement | undefined"
|
|
9147
|
+
}
|
|
9148
|
+
},
|
|
9149
|
+
"parameters": [
|
|
9150
|
+
{
|
|
9151
|
+
"name": "target",
|
|
9152
|
+
"type": {
|
|
9153
|
+
"text": "EventTarget | null"
|
|
9154
|
+
}
|
|
9155
|
+
}
|
|
9156
|
+
]
|
|
9157
|
+
},
|
|
9158
|
+
{
|
|
9159
|
+
"kind": "function",
|
|
9160
|
+
"name": "shouldRemovePopoverOnMouseout",
|
|
9161
|
+
"return": {
|
|
9162
|
+
"type": {
|
|
9163
|
+
"text": "boolean"
|
|
9164
|
+
}
|
|
9165
|
+
},
|
|
9166
|
+
"parameters": [
|
|
9167
|
+
{
|
|
9168
|
+
"name": "{ event, gridItem }",
|
|
9169
|
+
"type": {
|
|
9170
|
+
"text": "ShouldRemovePopoverOnMouseoutArgs"
|
|
9171
|
+
}
|
|
9172
|
+
}
|
|
9173
|
+
]
|
|
9174
|
+
},
|
|
9175
|
+
{
|
|
9176
|
+
"kind": "function",
|
|
9177
|
+
"name": "applyGridItemFocus",
|
|
9178
|
+
"return": {
|
|
9179
|
+
"type": {
|
|
9180
|
+
"text": "HTMLElement | undefined"
|
|
9181
|
+
}
|
|
9182
|
+
},
|
|
9183
|
+
"parameters": [
|
|
9184
|
+
{
|
|
9185
|
+
"name": "{\n event,\n focusedItemElement,\n removeItemActionsMenuPopover\n}",
|
|
9186
|
+
"type": {
|
|
9187
|
+
"text": "ApplyGridItemFocusArgs"
|
|
9188
|
+
}
|
|
9189
|
+
}
|
|
9190
|
+
]
|
|
9191
|
+
},
|
|
9192
|
+
{
|
|
9193
|
+
"kind": "function",
|
|
9194
|
+
"name": "clearGridItemFocus",
|
|
9195
|
+
"return": {
|
|
9196
|
+
"type": {
|
|
9197
|
+
"text": "ClearGridItemFocusResult"
|
|
9198
|
+
}
|
|
9199
|
+
},
|
|
9200
|
+
"parameters": [
|
|
9201
|
+
{
|
|
9202
|
+
"name": "{\n event,\n focusedItemElement,\n removeItemActionsMenuPopover\n}",
|
|
9203
|
+
"type": {
|
|
9204
|
+
"text": "ClearGridItemFocusArgs"
|
|
9205
|
+
}
|
|
9206
|
+
}
|
|
9207
|
+
]
|
|
9208
|
+
},
|
|
9209
|
+
{
|
|
9210
|
+
"kind": "function",
|
|
9211
|
+
"name": "resolveGridItemForDelete",
|
|
9212
|
+
"return": {
|
|
9213
|
+
"type": {
|
|
9214
|
+
"text": "HTMLElement | undefined"
|
|
9215
|
+
}
|
|
9216
|
+
},
|
|
9217
|
+
"parameters": [
|
|
9218
|
+
{
|
|
9219
|
+
"name": "event",
|
|
9220
|
+
"type": {
|
|
9221
|
+
"text": "Event"
|
|
9222
|
+
}
|
|
9223
|
+
},
|
|
9224
|
+
{
|
|
9225
|
+
"name": "fallback",
|
|
9226
|
+
"optional": true,
|
|
9227
|
+
"type": {
|
|
9228
|
+
"text": "HTMLElement"
|
|
9229
|
+
}
|
|
9230
|
+
}
|
|
9231
|
+
]
|
|
9232
|
+
},
|
|
9233
|
+
{
|
|
9234
|
+
"kind": "function",
|
|
9235
|
+
"name": "cleanupActiveGridItem",
|
|
9236
|
+
"return": {
|
|
9237
|
+
"type": {
|
|
9238
|
+
"text": "HTMLElement | undefined"
|
|
9239
|
+
}
|
|
9240
|
+
},
|
|
9241
|
+
"parameters": [
|
|
9242
|
+
{
|
|
9243
|
+
"name": "{\n item,\n activeItemElement,\n gridElement,\n removeItemActionsMenuPopover\n}",
|
|
9244
|
+
"type": {
|
|
9245
|
+
"text": "CleanupActiveGridItemArgs"
|
|
9246
|
+
}
|
|
9247
|
+
}
|
|
9248
|
+
]
|
|
9249
|
+
},
|
|
9250
|
+
{
|
|
9251
|
+
"kind": "function",
|
|
9252
|
+
"name": "handleGridAction",
|
|
9253
|
+
"return": {
|
|
9254
|
+
"type": {
|
|
9255
|
+
"text": "GridInteractionState"
|
|
9256
|
+
}
|
|
9257
|
+
},
|
|
9258
|
+
"parameters": [
|
|
9259
|
+
{
|
|
9260
|
+
"name": "{\n event,\n gridElement,\n items,\n state,\n cleanupActiveItem,\n dispatchItemActionEvent,\n handleDeleteItem,\n handleCloneItem,\n createItemActionsMenuPopover\n}",
|
|
9261
|
+
"type": {
|
|
9262
|
+
"text": "HandleGridActionArgs"
|
|
9263
|
+
}
|
|
9264
|
+
}
|
|
9265
|
+
]
|
|
9266
|
+
},
|
|
9267
|
+
{
|
|
9268
|
+
"kind": "function",
|
|
9269
|
+
"name": "handleGridClick",
|
|
9270
|
+
"return": {
|
|
9271
|
+
"type": {
|
|
9272
|
+
"text": "GridInteractionState"
|
|
9273
|
+
}
|
|
9274
|
+
},
|
|
9275
|
+
"parameters": [
|
|
9276
|
+
{
|
|
9277
|
+
"name": "{\n event,\n gridElement,\n hostElement,\n items,\n activeItemActionToggle,\n cleanupActiveItem,\n dispatchItemActionEvent\n}",
|
|
9278
|
+
"type": {
|
|
9279
|
+
"text": "HandleGridClickArgs"
|
|
9280
|
+
}
|
|
9281
|
+
}
|
|
9282
|
+
]
|
|
9283
|
+
},
|
|
9284
|
+
{
|
|
9285
|
+
"kind": "function",
|
|
9286
|
+
"name": "triggerGridItemAction",
|
|
9287
|
+
"return": {
|
|
9288
|
+
"type": {
|
|
9289
|
+
"text": "TriggerGridItemActionResult"
|
|
9290
|
+
}
|
|
9291
|
+
},
|
|
9292
|
+
"parameters": [
|
|
9293
|
+
{
|
|
9294
|
+
"name": "{\n gridElement,\n items,\n gridItemData,\n itemId,\n action,\n options,\n state,\n cleanupActiveItem,\n dispatchItemActionEvent,\n createItemActionsMenuPopover\n}",
|
|
9295
|
+
"type": {
|
|
9296
|
+
"text": "TriggerGridItemActionArgs"
|
|
9297
|
+
}
|
|
9298
|
+
}
|
|
9299
|
+
]
|
|
9300
|
+
},
|
|
9301
|
+
{
|
|
9302
|
+
"kind": "function",
|
|
9303
|
+
"name": "deactivateGridItems",
|
|
9304
|
+
"return": {
|
|
9305
|
+
"type": {
|
|
9306
|
+
"text": "DeactivateGridItemsResult"
|
|
9307
|
+
}
|
|
9308
|
+
},
|
|
9309
|
+
"parameters": [
|
|
9310
|
+
{
|
|
9311
|
+
"name": "{\n gridElement,\n items,\n state,\n cleanupActiveItem,\n dispatchItemActionEvent\n}",
|
|
9312
|
+
"type": {
|
|
9313
|
+
"text": "DeactivateGridItemsArgs"
|
|
9314
|
+
}
|
|
9315
|
+
}
|
|
9316
|
+
]
|
|
9317
|
+
}
|
|
9318
|
+
],
|
|
9319
|
+
"exports": [
|
|
9320
|
+
{
|
|
9321
|
+
"kind": "js",
|
|
9322
|
+
"name": "getGridItemElementFromTarget",
|
|
9323
|
+
"declaration": {
|
|
9324
|
+
"name": "getGridItemElementFromTarget",
|
|
9325
|
+
"module": "src/components/grid/helpers/grid-interactions.ts"
|
|
9326
|
+
}
|
|
9327
|
+
},
|
|
9328
|
+
{
|
|
9329
|
+
"kind": "js",
|
|
9330
|
+
"name": "shouldRemovePopoverOnMouseout",
|
|
9331
|
+
"declaration": {
|
|
9332
|
+
"name": "shouldRemovePopoverOnMouseout",
|
|
9333
|
+
"module": "src/components/grid/helpers/grid-interactions.ts"
|
|
9334
|
+
}
|
|
9335
|
+
},
|
|
9336
|
+
{
|
|
9337
|
+
"kind": "js",
|
|
9338
|
+
"name": "applyGridItemFocus",
|
|
9339
|
+
"declaration": {
|
|
9340
|
+
"name": "applyGridItemFocus",
|
|
9341
|
+
"module": "src/components/grid/helpers/grid-interactions.ts"
|
|
9342
|
+
}
|
|
9343
|
+
},
|
|
9344
|
+
{
|
|
9345
|
+
"kind": "js",
|
|
9346
|
+
"name": "clearGridItemFocus",
|
|
9347
|
+
"declaration": {
|
|
9348
|
+
"name": "clearGridItemFocus",
|
|
9349
|
+
"module": "src/components/grid/helpers/grid-interactions.ts"
|
|
9350
|
+
}
|
|
9351
|
+
},
|
|
9352
|
+
{
|
|
9353
|
+
"kind": "js",
|
|
9354
|
+
"name": "resolveGridItemForDelete",
|
|
9355
|
+
"declaration": {
|
|
9356
|
+
"name": "resolveGridItemForDelete",
|
|
9357
|
+
"module": "src/components/grid/helpers/grid-interactions.ts"
|
|
9358
|
+
}
|
|
9359
|
+
},
|
|
9360
|
+
{
|
|
9361
|
+
"kind": "js",
|
|
9362
|
+
"name": "cleanupActiveGridItem",
|
|
9363
|
+
"declaration": {
|
|
9364
|
+
"name": "cleanupActiveGridItem",
|
|
9365
|
+
"module": "src/components/grid/helpers/grid-interactions.ts"
|
|
9366
|
+
}
|
|
9367
|
+
},
|
|
9368
|
+
{
|
|
9369
|
+
"kind": "js",
|
|
9370
|
+
"name": "handleGridAction",
|
|
9371
|
+
"declaration": {
|
|
9372
|
+
"name": "handleGridAction",
|
|
9373
|
+
"module": "src/components/grid/helpers/grid-interactions.ts"
|
|
9374
|
+
}
|
|
9375
|
+
},
|
|
9376
|
+
{
|
|
9377
|
+
"kind": "js",
|
|
9378
|
+
"name": "handleGridClick",
|
|
9379
|
+
"declaration": {
|
|
9380
|
+
"name": "handleGridClick",
|
|
9381
|
+
"module": "src/components/grid/helpers/grid-interactions.ts"
|
|
9382
|
+
}
|
|
9383
|
+
},
|
|
9384
|
+
{
|
|
9385
|
+
"kind": "js",
|
|
9386
|
+
"name": "triggerGridItemAction",
|
|
9387
|
+
"declaration": {
|
|
9388
|
+
"name": "triggerGridItemAction",
|
|
9389
|
+
"module": "src/components/grid/helpers/grid-interactions.ts"
|
|
9390
|
+
}
|
|
9391
|
+
},
|
|
9392
|
+
{
|
|
9393
|
+
"kind": "js",
|
|
9394
|
+
"name": "deactivateGridItems",
|
|
9395
|
+
"declaration": {
|
|
9396
|
+
"name": "deactivateGridItems",
|
|
9397
|
+
"module": "src/components/grid/helpers/grid-interactions.ts"
|
|
9398
|
+
}
|
|
9399
|
+
}
|
|
9400
|
+
]
|
|
9401
|
+
},
|
|
9402
|
+
{
|
|
9403
|
+
"kind": "javascript-module",
|
|
9404
|
+
"path": "src/components/grid/helpers/grid-item-management.ts",
|
|
9405
|
+
"declarations": [
|
|
9406
|
+
{
|
|
9407
|
+
"kind": "function",
|
|
9408
|
+
"name": "mapGridItems",
|
|
9409
|
+
"return": {
|
|
9410
|
+
"type": {
|
|
9411
|
+
"text": "GridItemLookup[]"
|
|
9412
|
+
}
|
|
9413
|
+
},
|
|
9414
|
+
"parameters": [
|
|
9415
|
+
{
|
|
9416
|
+
"name": "items",
|
|
9417
|
+
"type": {
|
|
9418
|
+
"text": "GridItemData[]"
|
|
9419
|
+
}
|
|
9420
|
+
},
|
|
9421
|
+
{
|
|
9422
|
+
"name": "gridElement",
|
|
9423
|
+
"type": {
|
|
9424
|
+
"text": "HTMLElement"
|
|
9425
|
+
}
|
|
9426
|
+
}
|
|
9427
|
+
]
|
|
9428
|
+
},
|
|
9429
|
+
{
|
|
9430
|
+
"kind": "function",
|
|
9431
|
+
"name": "addGridItem",
|
|
9432
|
+
"return": {
|
|
9433
|
+
"type": {
|
|
9434
|
+
"text": "AddGridItemResult"
|
|
9435
|
+
}
|
|
9436
|
+
},
|
|
9437
|
+
"parameters": [
|
|
9438
|
+
{
|
|
9439
|
+
"name": "{ newItem, gridElement, grid, createId }",
|
|
9440
|
+
"type": {
|
|
9441
|
+
"text": "AddGridItemArgs"
|
|
9442
|
+
}
|
|
9443
|
+
}
|
|
9444
|
+
]
|
|
9445
|
+
},
|
|
9446
|
+
{
|
|
9447
|
+
"kind": "variable",
|
|
9448
|
+
"name": "item"
|
|
9449
|
+
},
|
|
9450
|
+
{
|
|
9451
|
+
"kind": "function",
|
|
9452
|
+
"name": "removeGridItemById",
|
|
9453
|
+
"return": {
|
|
9454
|
+
"type": {
|
|
9455
|
+
"text": "RemoveGridItemByIdResult"
|
|
9456
|
+
}
|
|
9457
|
+
},
|
|
9458
|
+
"parameters": [
|
|
9459
|
+
{
|
|
9460
|
+
"name": "{\n id,\n grid,\n items,\n getGridItemById,\n removeItemActionsMenuPopover,\n activeItemElement,\n cleanupActiveItem\n}",
|
|
9461
|
+
"type": {
|
|
9462
|
+
"text": "RemoveGridItemByIdArgs"
|
|
9463
|
+
}
|
|
9464
|
+
}
|
|
9465
|
+
]
|
|
9466
|
+
},
|
|
9467
|
+
{
|
|
9468
|
+
"kind": "function",
|
|
9469
|
+
"name": "handleCloneItem",
|
|
9470
|
+
"return": {
|
|
9471
|
+
"type": {
|
|
9472
|
+
"text": "void"
|
|
9473
|
+
}
|
|
9474
|
+
},
|
|
9475
|
+
"parameters": [
|
|
9476
|
+
{
|
|
9477
|
+
"name": "{\n event,\n hasGrid,\n items,\n createId,\n addGridItem: addGridItemToComponent,\n dispatchItemActionEvent\n}",
|
|
9478
|
+
"type": {
|
|
9479
|
+
"text": "HandleCloneItemArgs"
|
|
9480
|
+
}
|
|
9481
|
+
}
|
|
9482
|
+
]
|
|
9483
|
+
}
|
|
9484
|
+
],
|
|
9485
|
+
"exports": [
|
|
9486
|
+
{
|
|
9487
|
+
"kind": "js",
|
|
9488
|
+
"name": "mapGridItems",
|
|
9489
|
+
"declaration": {
|
|
9490
|
+
"name": "mapGridItems",
|
|
9491
|
+
"module": "src/components/grid/helpers/grid-item-management.ts"
|
|
9492
|
+
}
|
|
9493
|
+
},
|
|
9494
|
+
{
|
|
9495
|
+
"kind": "js",
|
|
9496
|
+
"name": "addGridItem",
|
|
9497
|
+
"declaration": {
|
|
9498
|
+
"name": "addGridItem",
|
|
9499
|
+
"module": "src/components/grid/helpers/grid-item-management.ts"
|
|
9500
|
+
}
|
|
9501
|
+
},
|
|
9502
|
+
{
|
|
9503
|
+
"kind": "js",
|
|
9504
|
+
"name": "removeGridItemById",
|
|
9505
|
+
"declaration": {
|
|
9506
|
+
"name": "removeGridItemById",
|
|
9507
|
+
"module": "src/components/grid/helpers/grid-item-management.ts"
|
|
9508
|
+
}
|
|
9509
|
+
},
|
|
9510
|
+
{
|
|
9511
|
+
"kind": "js",
|
|
9512
|
+
"name": "handleCloneItem",
|
|
9513
|
+
"declaration": {
|
|
9514
|
+
"name": "handleCloneItem",
|
|
9515
|
+
"module": "src/components/grid/helpers/grid-item-management.ts"
|
|
9516
|
+
}
|
|
9517
|
+
}
|
|
9518
|
+
]
|
|
9519
|
+
},
|
|
9520
|
+
{
|
|
9521
|
+
"kind": "javascript-module",
|
|
9522
|
+
"path": "src/components/grid/helpers/grid-item-popover.ts",
|
|
9523
|
+
"declarations": [
|
|
9524
|
+
{
|
|
9525
|
+
"kind": "function",
|
|
9526
|
+
"name": "createItemActionsMenuPopover",
|
|
9527
|
+
"return": {
|
|
9528
|
+
"type": {
|
|
9529
|
+
"text": "void"
|
|
9530
|
+
}
|
|
9531
|
+
},
|
|
9532
|
+
"parameters": [
|
|
9533
|
+
{
|
|
9534
|
+
"name": "{\n element,\n activeAction,\n getGridItemById,\n placementItemActionsMenu,\n renderOverlayContent,\n removeItemActionsMenuPopover\n}",
|
|
9535
|
+
"type": {
|
|
9536
|
+
"text": "CreateItemActionsMenuPopoverArgs"
|
|
9537
|
+
}
|
|
9538
|
+
}
|
|
9539
|
+
]
|
|
9540
|
+
},
|
|
9541
|
+
{
|
|
9542
|
+
"kind": "function",
|
|
9543
|
+
"name": "removeItemActionsMenuPopover",
|
|
9544
|
+
"return": {
|
|
9545
|
+
"type": {
|
|
9546
|
+
"text": "void"
|
|
9547
|
+
}
|
|
9548
|
+
},
|
|
9549
|
+
"parameters": [
|
|
9550
|
+
{
|
|
9551
|
+
"name": "gridItem",
|
|
9552
|
+
"type": {
|
|
9553
|
+
"text": "HTMLElement"
|
|
9554
|
+
}
|
|
9555
|
+
}
|
|
9556
|
+
]
|
|
9557
|
+
}
|
|
9558
|
+
],
|
|
9559
|
+
"exports": [
|
|
9560
|
+
{
|
|
9561
|
+
"kind": "js",
|
|
9562
|
+
"name": "createItemActionsMenuPopover",
|
|
9563
|
+
"declaration": {
|
|
9564
|
+
"name": "createItemActionsMenuPopover",
|
|
9565
|
+
"module": "src/components/grid/helpers/grid-item-popover.ts"
|
|
9566
|
+
}
|
|
9567
|
+
},
|
|
9568
|
+
{
|
|
9569
|
+
"kind": "js",
|
|
9570
|
+
"name": "removeItemActionsMenuPopover",
|
|
9571
|
+
"declaration": {
|
|
9572
|
+
"name": "removeItemActionsMenuPopover",
|
|
9573
|
+
"module": "src/components/grid/helpers/grid-item-popover.ts"
|
|
9574
|
+
}
|
|
9575
|
+
}
|
|
9576
|
+
]
|
|
9577
|
+
},
|
|
9578
|
+
{
|
|
9579
|
+
"kind": "javascript-module",
|
|
9580
|
+
"path": "src/components/grid/helpers/grid-items.ts",
|
|
9581
|
+
"declarations": [
|
|
9582
|
+
{
|
|
9583
|
+
"kind": "function",
|
|
9584
|
+
"name": "normalizeGridItems",
|
|
9585
|
+
"return": {
|
|
9586
|
+
"type": {
|
|
9587
|
+
"text": "void"
|
|
9588
|
+
}
|
|
9589
|
+
},
|
|
9590
|
+
"parameters": [
|
|
9591
|
+
{
|
|
9592
|
+
"name": "items",
|
|
9593
|
+
"type": {
|
|
9594
|
+
"text": "GridItemData[]"
|
|
9595
|
+
}
|
|
9596
|
+
},
|
|
9597
|
+
{
|
|
9598
|
+
"name": "createId",
|
|
9599
|
+
"type": {
|
|
9600
|
+
"text": "() => string"
|
|
9601
|
+
}
|
|
9602
|
+
}
|
|
9603
|
+
]
|
|
9604
|
+
},
|
|
9605
|
+
{
|
|
9606
|
+
"kind": "function",
|
|
9607
|
+
"name": "ensureGridItemId",
|
|
9608
|
+
"return": {
|
|
9609
|
+
"type": {
|
|
9610
|
+
"text": "string"
|
|
9611
|
+
}
|
|
9612
|
+
},
|
|
9613
|
+
"parameters": [
|
|
9614
|
+
{
|
|
9615
|
+
"name": "item",
|
|
9616
|
+
"type": {
|
|
9617
|
+
"text": "GridItemData"
|
|
9618
|
+
}
|
|
9619
|
+
},
|
|
9620
|
+
{
|
|
9621
|
+
"name": "createId",
|
|
9622
|
+
"type": {
|
|
9623
|
+
"text": "() => string"
|
|
9624
|
+
}
|
|
9625
|
+
}
|
|
9626
|
+
]
|
|
9627
|
+
},
|
|
9628
|
+
{
|
|
9629
|
+
"kind": "function",
|
|
9630
|
+
"name": "buildGridWidgetOptions",
|
|
9631
|
+
"return": {
|
|
9632
|
+
"type": {
|
|
9633
|
+
"text": "GridStackWidget"
|
|
9634
|
+
}
|
|
9635
|
+
},
|
|
9636
|
+
"parameters": [
|
|
9637
|
+
{
|
|
9638
|
+
"name": "item",
|
|
9639
|
+
"type": {
|
|
9640
|
+
"text": "GridItemData | undefined"
|
|
9641
|
+
}
|
|
9642
|
+
},
|
|
9643
|
+
{
|
|
9644
|
+
"name": "id",
|
|
9645
|
+
"optional": true,
|
|
9646
|
+
"type": {
|
|
9647
|
+
"text": "string"
|
|
9648
|
+
}
|
|
9649
|
+
}
|
|
9650
|
+
]
|
|
9651
|
+
},
|
|
9652
|
+
{
|
|
9653
|
+
"kind": "function",
|
|
9654
|
+
"name": "createGridItemFromInput",
|
|
9655
|
+
"return": {
|
|
9656
|
+
"type": {
|
|
9657
|
+
"text": "GridItemData"
|
|
9658
|
+
}
|
|
9659
|
+
},
|
|
9660
|
+
"parameters": [
|
|
9661
|
+
{
|
|
9662
|
+
"name": "newItem",
|
|
9663
|
+
"type": {
|
|
9664
|
+
"text": "GridItemData"
|
|
9665
|
+
}
|
|
9666
|
+
},
|
|
9667
|
+
{
|
|
9668
|
+
"name": "id",
|
|
9669
|
+
"type": {
|
|
9670
|
+
"text": "string"
|
|
9671
|
+
}
|
|
9672
|
+
}
|
|
9673
|
+
]
|
|
9674
|
+
},
|
|
9675
|
+
{
|
|
9676
|
+
"kind": "function",
|
|
9677
|
+
"name": "createOrphanGridItemElement",
|
|
9678
|
+
"return": {
|
|
9679
|
+
"type": {
|
|
9680
|
+
"text": "HTMLDivElement"
|
|
9681
|
+
}
|
|
9682
|
+
},
|
|
9683
|
+
"parameters": [
|
|
9684
|
+
{
|
|
9685
|
+
"name": "itemId",
|
|
9686
|
+
"type": {
|
|
9687
|
+
"text": "string"
|
|
9688
|
+
}
|
|
9689
|
+
}
|
|
9690
|
+
]
|
|
9691
|
+
},
|
|
9692
|
+
{
|
|
9693
|
+
"kind": "function",
|
|
9694
|
+
"name": "readGridItemPosition",
|
|
9695
|
+
"return": {
|
|
9696
|
+
"type": {
|
|
9697
|
+
"text": "GridItemData['position']"
|
|
9698
|
+
}
|
|
9699
|
+
},
|
|
9700
|
+
"parameters": [
|
|
9701
|
+
{
|
|
9702
|
+
"name": "gridItemElement",
|
|
9703
|
+
"type": {
|
|
9704
|
+
"text": "HTMLElement"
|
|
9705
|
+
}
|
|
9706
|
+
}
|
|
9707
|
+
]
|
|
9708
|
+
},
|
|
9709
|
+
{
|
|
9710
|
+
"kind": "function",
|
|
9711
|
+
"name": "findGridItemElementById",
|
|
9712
|
+
"return": {
|
|
9713
|
+
"type": {
|
|
9714
|
+
"text": "HTMLElement | undefined"
|
|
9715
|
+
}
|
|
9716
|
+
},
|
|
9717
|
+
"parameters": [
|
|
9718
|
+
{
|
|
9719
|
+
"name": "elements",
|
|
9720
|
+
"type": {
|
|
9721
|
+
"text": "Iterable<HTMLElement>"
|
|
9722
|
+
}
|
|
9723
|
+
},
|
|
9724
|
+
{
|
|
9725
|
+
"name": "id",
|
|
9726
|
+
"type": {
|
|
9727
|
+
"text": "string | undefined"
|
|
9728
|
+
}
|
|
9729
|
+
}
|
|
9730
|
+
]
|
|
9731
|
+
}
|
|
9732
|
+
],
|
|
9733
|
+
"exports": [
|
|
9734
|
+
{
|
|
9735
|
+
"kind": "js",
|
|
9736
|
+
"name": "normalizeGridItems",
|
|
9737
|
+
"declaration": {
|
|
9738
|
+
"name": "normalizeGridItems",
|
|
9739
|
+
"module": "src/components/grid/helpers/grid-items.ts"
|
|
9740
|
+
}
|
|
9741
|
+
},
|
|
9742
|
+
{
|
|
9743
|
+
"kind": "js",
|
|
9744
|
+
"name": "ensureGridItemId",
|
|
9745
|
+
"declaration": {
|
|
9746
|
+
"name": "ensureGridItemId",
|
|
9747
|
+
"module": "src/components/grid/helpers/grid-items.ts"
|
|
9748
|
+
}
|
|
9749
|
+
},
|
|
9750
|
+
{
|
|
9751
|
+
"kind": "js",
|
|
9752
|
+
"name": "buildGridWidgetOptions",
|
|
9753
|
+
"declaration": {
|
|
9754
|
+
"name": "buildGridWidgetOptions",
|
|
9755
|
+
"module": "src/components/grid/helpers/grid-items.ts"
|
|
9756
|
+
}
|
|
9757
|
+
},
|
|
9758
|
+
{
|
|
9759
|
+
"kind": "js",
|
|
9760
|
+
"name": "createGridItemFromInput",
|
|
9761
|
+
"declaration": {
|
|
9762
|
+
"name": "createGridItemFromInput",
|
|
9763
|
+
"module": "src/components/grid/helpers/grid-items.ts"
|
|
9764
|
+
}
|
|
9765
|
+
},
|
|
9766
|
+
{
|
|
9767
|
+
"kind": "js",
|
|
9768
|
+
"name": "createOrphanGridItemElement",
|
|
9769
|
+
"declaration": {
|
|
9770
|
+
"name": "createOrphanGridItemElement",
|
|
9771
|
+
"module": "src/components/grid/helpers/grid-items.ts"
|
|
9772
|
+
}
|
|
9773
|
+
},
|
|
9774
|
+
{
|
|
9775
|
+
"kind": "js",
|
|
9776
|
+
"name": "readGridItemPosition",
|
|
9777
|
+
"declaration": {
|
|
9778
|
+
"name": "readGridItemPosition",
|
|
9779
|
+
"module": "src/components/grid/helpers/grid-items.ts"
|
|
9780
|
+
}
|
|
9781
|
+
},
|
|
9782
|
+
{
|
|
9783
|
+
"kind": "js",
|
|
9784
|
+
"name": "findGridItemElementById",
|
|
9785
|
+
"declaration": {
|
|
9786
|
+
"name": "findGridItemElementById",
|
|
9787
|
+
"module": "src/components/grid/helpers/grid-items.ts"
|
|
9788
|
+
}
|
|
9789
|
+
}
|
|
9790
|
+
]
|
|
9791
|
+
},
|
|
9792
|
+
{
|
|
9793
|
+
"kind": "javascript-module",
|
|
9794
|
+
"path": "src/components/grid/helpers/grid-keyboard-updates.ts",
|
|
9795
|
+
"declarations": [
|
|
9796
|
+
{
|
|
9797
|
+
"kind": "function",
|
|
9798
|
+
"name": "isGridArrowKey",
|
|
9799
|
+
"return": {
|
|
9800
|
+
"type": {
|
|
9801
|
+
"text": "key is GridArrowKey"
|
|
9802
|
+
}
|
|
9803
|
+
},
|
|
9804
|
+
"parameters": [
|
|
9805
|
+
{
|
|
9806
|
+
"name": "key",
|
|
9807
|
+
"type": {
|
|
9808
|
+
"text": "string"
|
|
9809
|
+
}
|
|
9810
|
+
}
|
|
9811
|
+
]
|
|
9812
|
+
},
|
|
9813
|
+
{
|
|
9814
|
+
"kind": "function",
|
|
9815
|
+
"name": "getGridKeyboardUpdate",
|
|
9816
|
+
"return": {
|
|
9817
|
+
"type": {
|
|
9818
|
+
"text": "GridKeyboardUpdate | undefined"
|
|
9819
|
+
}
|
|
9820
|
+
},
|
|
9821
|
+
"parameters": [
|
|
9822
|
+
{
|
|
9823
|
+
"name": "{\n key,\n node,\n maxColumns,\n shiftKey,\n ctrlKey,\n metaKey\n}",
|
|
9824
|
+
"type": {
|
|
9825
|
+
"text": "GridKeyboardUpdateArgs"
|
|
9826
|
+
}
|
|
9827
|
+
}
|
|
9828
|
+
]
|
|
9829
|
+
}
|
|
9830
|
+
],
|
|
9831
|
+
"exports": [
|
|
9832
|
+
{
|
|
9833
|
+
"kind": "js",
|
|
9834
|
+
"name": "isGridArrowKey",
|
|
9835
|
+
"declaration": {
|
|
9836
|
+
"name": "isGridArrowKey",
|
|
9837
|
+
"module": "src/components/grid/helpers/grid-keyboard-updates.ts"
|
|
9838
|
+
}
|
|
9839
|
+
},
|
|
9840
|
+
{
|
|
9841
|
+
"kind": "js",
|
|
9842
|
+
"name": "getGridKeyboardUpdate",
|
|
9843
|
+
"declaration": {
|
|
9844
|
+
"name": "getGridKeyboardUpdate",
|
|
9845
|
+
"module": "src/components/grid/helpers/grid-keyboard-updates.ts"
|
|
9846
|
+
}
|
|
9847
|
+
}
|
|
9848
|
+
]
|
|
9849
|
+
},
|
|
9850
|
+
{
|
|
9851
|
+
"kind": "javascript-module",
|
|
9852
|
+
"path": "src/components/grid/helpers/grid-keydown-event.ts",
|
|
9853
|
+
"declarations": [
|
|
9854
|
+
{
|
|
9855
|
+
"kind": "function",
|
|
9856
|
+
"name": "handleGridKeyDown",
|
|
9857
|
+
"return": {
|
|
9858
|
+
"type": {
|
|
9859
|
+
"text": "HandleGridKeyDownResult"
|
|
9860
|
+
}
|
|
9861
|
+
},
|
|
9862
|
+
"parameters": [
|
|
9863
|
+
{
|
|
9864
|
+
"name": "{\n event,\n viewMode,\n focusedItemElement,\n activeItemElement,\n gridElement,\n grid,\n columns,\n handleDeleteItem,\n removeItemActionsMenuPopover,\n createItemActionsMenuPopover\n}",
|
|
9865
|
+
"type": {
|
|
9866
|
+
"text": "HandleGridKeyDownArgs"
|
|
9867
|
+
}
|
|
9868
|
+
}
|
|
9869
|
+
]
|
|
9870
|
+
}
|
|
9871
|
+
],
|
|
9872
|
+
"exports": [
|
|
9873
|
+
{
|
|
9874
|
+
"kind": "js",
|
|
9875
|
+
"name": "handleGridKeyDown",
|
|
9876
|
+
"declaration": {
|
|
9877
|
+
"name": "handleGridKeyDown",
|
|
9878
|
+
"module": "src/components/grid/helpers/grid-keydown-event.ts"
|
|
9879
|
+
}
|
|
9880
|
+
}
|
|
9881
|
+
]
|
|
9882
|
+
},
|
|
9883
|
+
{
|
|
9884
|
+
"kind": "javascript-module",
|
|
9885
|
+
"path": "src/components/grid/helpers/grid-popover-cleanup.ts",
|
|
9886
|
+
"declarations": [
|
|
9887
|
+
{
|
|
9888
|
+
"kind": "function",
|
|
9889
|
+
"name": "setPopoverCleanup",
|
|
9890
|
+
"return": {
|
|
9891
|
+
"type": {
|
|
9892
|
+
"text": "void"
|
|
9893
|
+
}
|
|
9894
|
+
},
|
|
9895
|
+
"parameters": [
|
|
9896
|
+
{
|
|
9897
|
+
"name": "element",
|
|
9898
|
+
"type": {
|
|
9899
|
+
"text": "HTMLElement"
|
|
9900
|
+
}
|
|
9901
|
+
},
|
|
9902
|
+
{
|
|
9903
|
+
"name": "cleanup",
|
|
9904
|
+
"type": {
|
|
9905
|
+
"text": "CleanupCallback"
|
|
9906
|
+
}
|
|
9907
|
+
}
|
|
9908
|
+
]
|
|
9909
|
+
},
|
|
9910
|
+
{
|
|
9911
|
+
"kind": "function",
|
|
9912
|
+
"name": "clearPopoverCleanup",
|
|
9913
|
+
"return": {
|
|
9914
|
+
"type": {
|
|
9915
|
+
"text": "void"
|
|
9916
|
+
}
|
|
9917
|
+
},
|
|
9918
|
+
"parameters": [
|
|
9919
|
+
{
|
|
9920
|
+
"name": "element",
|
|
9921
|
+
"type": {
|
|
9922
|
+
"text": "HTMLElement"
|
|
9923
|
+
}
|
|
9924
|
+
}
|
|
9925
|
+
]
|
|
9926
|
+
}
|
|
9927
|
+
],
|
|
9928
|
+
"exports": [
|
|
9929
|
+
{
|
|
9930
|
+
"kind": "js",
|
|
9931
|
+
"name": "setPopoverCleanup",
|
|
9932
|
+
"declaration": {
|
|
9933
|
+
"name": "setPopoverCleanup",
|
|
9934
|
+
"module": "src/components/grid/helpers/grid-popover-cleanup.ts"
|
|
9935
|
+
}
|
|
9936
|
+
},
|
|
9937
|
+
{
|
|
9938
|
+
"kind": "js",
|
|
9939
|
+
"name": "clearPopoverCleanup",
|
|
9940
|
+
"declaration": {
|
|
9941
|
+
"name": "clearPopoverCleanup",
|
|
9942
|
+
"module": "src/components/grid/helpers/grid-popover-cleanup.ts"
|
|
9943
|
+
}
|
|
9944
|
+
}
|
|
9945
|
+
]
|
|
9946
|
+
},
|
|
9947
|
+
{
|
|
9948
|
+
"kind": "javascript-module",
|
|
9949
|
+
"path": "src/components/grid/helpers/grid-rendering.ts",
|
|
9950
|
+
"declarations": [
|
|
9951
|
+
{
|
|
9952
|
+
"kind": "function",
|
|
9953
|
+
"name": "renderOverlayContent",
|
|
9954
|
+
"return": {
|
|
9955
|
+
"type": {
|
|
9956
|
+
"text": "TemplateResult"
|
|
9957
|
+
}
|
|
9958
|
+
},
|
|
9959
|
+
"parameters": [
|
|
9960
|
+
{
|
|
9961
|
+
"name": "{\n item,\n activeAction,\n defaultItemActionsMenu,\n placementItemActionsMenu,\n language,\n handleAction\n}",
|
|
9962
|
+
"type": {
|
|
9963
|
+
"text": "RenderOverlayContentArgs"
|
|
9964
|
+
}
|
|
9965
|
+
}
|
|
9966
|
+
]
|
|
9967
|
+
},
|
|
9968
|
+
{
|
|
9969
|
+
"kind": "function",
|
|
9970
|
+
"name": "renderGridItem",
|
|
9971
|
+
"return": {
|
|
9972
|
+
"type": {
|
|
9973
|
+
"text": "TemplateResult"
|
|
9974
|
+
}
|
|
9975
|
+
},
|
|
9976
|
+
"parameters": [
|
|
9977
|
+
{
|
|
9978
|
+
"name": "{\n item,\n index,\n initialized,\n viewMode,\n contentLanguage,\n fullTheme,\n appServer,\n apiHost,\n authKey,\n authToken,\n handleMouseover,\n handleMouseout,\n handleFocus,\n handleBlur\n}",
|
|
9979
|
+
"type": {
|
|
9980
|
+
"text": "RenderGridItemArgs"
|
|
9981
|
+
}
|
|
9982
|
+
}
|
|
9983
|
+
]
|
|
9984
|
+
},
|
|
9985
|
+
{
|
|
9986
|
+
"kind": "function",
|
|
9987
|
+
"name": "renderGridItems",
|
|
9988
|
+
"return": {
|
|
9989
|
+
"type": {
|
|
9990
|
+
"text": "ReturnType<typeof repeat>"
|
|
9991
|
+
}
|
|
9992
|
+
},
|
|
9993
|
+
"parameters": [
|
|
9994
|
+
{
|
|
9995
|
+
"name": "{\n items,\n initialized,\n viewMode,\n contentLanguage,\n fullTheme,\n appServer,\n apiHost,\n authKey,\n authToken,\n renderItem\n}",
|
|
9996
|
+
"type": {
|
|
9997
|
+
"text": "RenderGridItemsArgs"
|
|
9998
|
+
}
|
|
9999
|
+
}
|
|
10000
|
+
]
|
|
10001
|
+
},
|
|
10002
|
+
{
|
|
10003
|
+
"kind": "function",
|
|
10004
|
+
"name": "renderGrid",
|
|
10005
|
+
"return": {
|
|
10006
|
+
"type": {
|
|
10007
|
+
"text": "TemplateResult"
|
|
10008
|
+
}
|
|
10009
|
+
},
|
|
10010
|
+
"parameters": [
|
|
10011
|
+
{
|
|
10012
|
+
"name": "{\n items,\n initialized,\n viewMode,\n contentLanguage,\n fullTheme,\n appServer,\n apiHost,\n authKey,\n authToken,\n columns,\n ensureGridItemId,\n handleMouseover,\n handleMouseout,\n handleFocus,\n handleBlur\n}",
|
|
10013
|
+
"type": {
|
|
10014
|
+
"text": "RenderGridArgs"
|
|
10015
|
+
}
|
|
10016
|
+
}
|
|
10017
|
+
]
|
|
10018
|
+
}
|
|
10019
|
+
],
|
|
10020
|
+
"exports": [
|
|
10021
|
+
{
|
|
10022
|
+
"kind": "js",
|
|
10023
|
+
"name": "renderOverlayContent",
|
|
10024
|
+
"declaration": {
|
|
10025
|
+
"name": "renderOverlayContent",
|
|
10026
|
+
"module": "src/components/grid/helpers/grid-rendering.ts"
|
|
10027
|
+
}
|
|
10028
|
+
},
|
|
10029
|
+
{
|
|
10030
|
+
"kind": "js",
|
|
10031
|
+
"name": "renderGridItem",
|
|
10032
|
+
"declaration": {
|
|
10033
|
+
"name": "renderGridItem",
|
|
10034
|
+
"module": "src/components/grid/helpers/grid-rendering.ts"
|
|
10035
|
+
}
|
|
10036
|
+
},
|
|
10037
|
+
{
|
|
10038
|
+
"kind": "js",
|
|
10039
|
+
"name": "renderGridItems",
|
|
10040
|
+
"declaration": {
|
|
10041
|
+
"name": "renderGridItems",
|
|
10042
|
+
"module": "src/components/grid/helpers/grid-rendering.ts"
|
|
10043
|
+
}
|
|
10044
|
+
},
|
|
10045
|
+
{
|
|
10046
|
+
"kind": "js",
|
|
10047
|
+
"name": "renderGrid",
|
|
10048
|
+
"declaration": {
|
|
10049
|
+
"name": "renderGrid",
|
|
10050
|
+
"module": "src/components/grid/helpers/grid-rendering.ts"
|
|
10051
|
+
}
|
|
10052
|
+
}
|
|
10053
|
+
]
|
|
10054
|
+
},
|
|
10055
|
+
{
|
|
10056
|
+
"kind": "javascript-module",
|
|
10057
|
+
"path": "src/components/grid/helpers/grid-stack-lifecycle.ts",
|
|
10058
|
+
"declarations": [
|
|
10059
|
+
{
|
|
10060
|
+
"kind": "function",
|
|
10061
|
+
"name": "initializeGridStack",
|
|
10062
|
+
"return": {
|
|
10063
|
+
"type": {
|
|
10064
|
+
"text": "GridStack"
|
|
10065
|
+
}
|
|
10066
|
+
},
|
|
10067
|
+
"parameters": [
|
|
10068
|
+
{
|
|
10069
|
+
"name": "{\n gridElement,\n gridItemElements,\n items,\n columns,\n rowHeight,\n viewMode,\n fullTheme,\n onCreateOrUpdateDimensionsHint,\n onRemoveDimensionsHint,\n onChange\n}",
|
|
10070
|
+
"type": {
|
|
10071
|
+
"text": "InitializeGridStackArgs"
|
|
10072
|
+
}
|
|
10073
|
+
}
|
|
10074
|
+
]
|
|
10075
|
+
},
|
|
10076
|
+
{
|
|
10077
|
+
"kind": "function",
|
|
10078
|
+
"name": "applyGridStackChanges",
|
|
10079
|
+
"return": {
|
|
10080
|
+
"type": {
|
|
10081
|
+
"text": "void"
|
|
10082
|
+
}
|
|
10083
|
+
},
|
|
10084
|
+
"parameters": [
|
|
10085
|
+
{
|
|
10086
|
+
"name": "items",
|
|
10087
|
+
"type": {
|
|
10088
|
+
"text": "GridItemData[]"
|
|
10089
|
+
}
|
|
10090
|
+
},
|
|
10091
|
+
{
|
|
10092
|
+
"name": "changedItems",
|
|
10093
|
+
"type": {
|
|
10094
|
+
"text": "GridStackNode[]"
|
|
10095
|
+
}
|
|
10096
|
+
}
|
|
10097
|
+
]
|
|
10098
|
+
},
|
|
10099
|
+
{
|
|
10100
|
+
"kind": "function",
|
|
10101
|
+
"name": "createOrUpdateDimensionsHint",
|
|
10102
|
+
"return": {
|
|
10103
|
+
"type": {
|
|
10104
|
+
"text": "void"
|
|
10105
|
+
}
|
|
10106
|
+
},
|
|
10107
|
+
"parameters": [
|
|
10108
|
+
{
|
|
10109
|
+
"name": "{\n element,\n numberOfColumns,\n numberOfRows,\n offsetHint\n}",
|
|
10110
|
+
"type": {
|
|
10111
|
+
"text": "CreateOrUpdateDimensionsHintArgs"
|
|
10112
|
+
}
|
|
10113
|
+
}
|
|
10114
|
+
]
|
|
10115
|
+
},
|
|
10116
|
+
{
|
|
10117
|
+
"kind": "function",
|
|
10118
|
+
"name": "removeDimensionsHint",
|
|
10119
|
+
"return": {
|
|
10120
|
+
"type": {
|
|
10121
|
+
"text": "void"
|
|
10122
|
+
}
|
|
10123
|
+
},
|
|
10124
|
+
"parameters": [
|
|
10125
|
+
{
|
|
10126
|
+
"name": "element",
|
|
10127
|
+
"type": {
|
|
10128
|
+
"text": "HTMLElement"
|
|
10129
|
+
}
|
|
10130
|
+
}
|
|
10131
|
+
]
|
|
10132
|
+
}
|
|
10133
|
+
],
|
|
10134
|
+
"exports": [
|
|
10135
|
+
{
|
|
10136
|
+
"kind": "js",
|
|
10137
|
+
"name": "initializeGridStack",
|
|
10138
|
+
"declaration": {
|
|
10139
|
+
"name": "initializeGridStack",
|
|
10140
|
+
"module": "src/components/grid/helpers/grid-stack-lifecycle.ts"
|
|
10141
|
+
}
|
|
10142
|
+
},
|
|
10143
|
+
{
|
|
10144
|
+
"kind": "js",
|
|
10145
|
+
"name": "applyGridStackChanges",
|
|
10146
|
+
"declaration": {
|
|
10147
|
+
"name": "applyGridStackChanges",
|
|
10148
|
+
"module": "src/components/grid/helpers/grid-stack-lifecycle.ts"
|
|
10149
|
+
}
|
|
10150
|
+
},
|
|
10151
|
+
{
|
|
10152
|
+
"kind": "js",
|
|
10153
|
+
"name": "createOrUpdateDimensionsHint",
|
|
10154
|
+
"declaration": {
|
|
10155
|
+
"name": "createOrUpdateDimensionsHint",
|
|
10156
|
+
"module": "src/components/grid/helpers/grid-stack-lifecycle.ts"
|
|
10157
|
+
}
|
|
10158
|
+
},
|
|
10159
|
+
{
|
|
10160
|
+
"kind": "js",
|
|
10161
|
+
"name": "removeDimensionsHint",
|
|
10162
|
+
"declaration": {
|
|
10163
|
+
"name": "removeDimensionsHint",
|
|
10164
|
+
"module": "src/components/grid/helpers/grid-stack-lifecycle.ts"
|
|
10165
|
+
}
|
|
10166
|
+
}
|
|
10167
|
+
]
|
|
10168
|
+
},
|
|
10169
|
+
{
|
|
10170
|
+
"kind": "javascript-module",
|
|
10171
|
+
"path": "src/components/grid/helpers/grid-theme.ts",
|
|
10172
|
+
"declarations": [
|
|
10173
|
+
{
|
|
10174
|
+
"kind": "function",
|
|
10175
|
+
"name": "resolveGridTheme",
|
|
10176
|
+
"return": {
|
|
10177
|
+
"type": {
|
|
10178
|
+
"text": "Promise<ThemeConfig | undefined>"
|
|
10179
|
+
}
|
|
10180
|
+
},
|
|
10181
|
+
"parameters": [
|
|
10182
|
+
{
|
|
10183
|
+
"name": "{ theme, currentTheme }",
|
|
10184
|
+
"type": {
|
|
10185
|
+
"text": "GridThemeResolutionArgs"
|
|
10186
|
+
}
|
|
10187
|
+
}
|
|
10188
|
+
]
|
|
10189
|
+
},
|
|
10190
|
+
{
|
|
10191
|
+
"kind": "function",
|
|
10192
|
+
"name": "getGridHalfMargins",
|
|
10193
|
+
"return": {
|
|
10194
|
+
"type": {
|
|
10195
|
+
"text": "[number, number]"
|
|
10196
|
+
}
|
|
10197
|
+
},
|
|
10198
|
+
"parameters": [
|
|
10199
|
+
{
|
|
10200
|
+
"name": "theme",
|
|
10201
|
+
"optional": true,
|
|
10202
|
+
"type": {
|
|
10203
|
+
"text": "{ margins?: number[] }"
|
|
10204
|
+
}
|
|
10205
|
+
}
|
|
10206
|
+
]
|
|
10207
|
+
},
|
|
10208
|
+
{
|
|
10209
|
+
"kind": "function",
|
|
10210
|
+
"name": "getDimensionsHintOffset",
|
|
10211
|
+
"return": {
|
|
10212
|
+
"type": {
|
|
10213
|
+
"text": "number"
|
|
10214
|
+
}
|
|
10215
|
+
},
|
|
10216
|
+
"parameters": [
|
|
10217
|
+
{
|
|
10218
|
+
"name": "theme",
|
|
10219
|
+
"optional": true,
|
|
10220
|
+
"type": {
|
|
10221
|
+
"text": "{ margins?: number[] }"
|
|
10222
|
+
}
|
|
10223
|
+
}
|
|
10224
|
+
]
|
|
10225
|
+
},
|
|
10226
|
+
{
|
|
10227
|
+
"kind": "function",
|
|
10228
|
+
"name": "getGridBoxShadow",
|
|
10229
|
+
"return": {
|
|
10230
|
+
"type": {
|
|
10231
|
+
"text": "string"
|
|
10232
|
+
}
|
|
10233
|
+
},
|
|
10234
|
+
"parameters": [
|
|
10235
|
+
{
|
|
10236
|
+
"name": "theme",
|
|
10237
|
+
"optional": true,
|
|
10238
|
+
"type": {
|
|
10239
|
+
"text": "ThemeConfig"
|
|
10240
|
+
}
|
|
10241
|
+
}
|
|
10242
|
+
]
|
|
10243
|
+
},
|
|
10244
|
+
{
|
|
10245
|
+
"kind": "function",
|
|
10246
|
+
"name": "getGridCssVariables",
|
|
10247
|
+
"return": {
|
|
10248
|
+
"type": {
|
|
10249
|
+
"text": "ReadonlyMap<string, string | undefined>"
|
|
10250
|
+
}
|
|
10251
|
+
},
|
|
10252
|
+
"parameters": [
|
|
10253
|
+
{
|
|
10254
|
+
"name": "theme",
|
|
10255
|
+
"optional": true,
|
|
10256
|
+
"type": {
|
|
10257
|
+
"text": "ThemeConfig"
|
|
10258
|
+
}
|
|
10259
|
+
}
|
|
10260
|
+
]
|
|
10261
|
+
},
|
|
10262
|
+
{
|
|
10263
|
+
"kind": "function",
|
|
10264
|
+
"name": "isGridDarkBackground",
|
|
10265
|
+
"return": {
|
|
10266
|
+
"type": {
|
|
10267
|
+
"text": "boolean"
|
|
10268
|
+
}
|
|
10269
|
+
},
|
|
10270
|
+
"parameters": [
|
|
10271
|
+
{
|
|
10272
|
+
"name": "theme",
|
|
10273
|
+
"optional": true,
|
|
10274
|
+
"type": {
|
|
10275
|
+
"text": "ThemeConfig"
|
|
10276
|
+
}
|
|
10277
|
+
}
|
|
10278
|
+
]
|
|
10279
|
+
},
|
|
10280
|
+
{
|
|
10281
|
+
"kind": "function",
|
|
10282
|
+
"name": "applyThemeProperties",
|
|
10283
|
+
"return": {
|
|
10284
|
+
"type": {
|
|
10285
|
+
"text": "void"
|
|
10286
|
+
}
|
|
10287
|
+
},
|
|
10288
|
+
"parameters": [
|
|
10289
|
+
{
|
|
10290
|
+
"name": "style",
|
|
10291
|
+
"type": {
|
|
10292
|
+
"text": "CSSStyleDeclaration"
|
|
10293
|
+
}
|
|
10294
|
+
},
|
|
10295
|
+
{
|
|
10296
|
+
"name": "fullTheme",
|
|
10297
|
+
"optional": true,
|
|
10298
|
+
"type": {
|
|
10299
|
+
"text": "ThemeConfig"
|
|
10300
|
+
}
|
|
10301
|
+
}
|
|
10302
|
+
]
|
|
10303
|
+
}
|
|
10304
|
+
],
|
|
10305
|
+
"exports": [
|
|
10306
|
+
{
|
|
10307
|
+
"kind": "js",
|
|
10308
|
+
"name": "resolveGridTheme",
|
|
10309
|
+
"declaration": {
|
|
10310
|
+
"name": "resolveGridTheme",
|
|
10311
|
+
"module": "src/components/grid/helpers/grid-theme.ts"
|
|
10312
|
+
}
|
|
10313
|
+
},
|
|
10314
|
+
{
|
|
10315
|
+
"kind": "js",
|
|
10316
|
+
"name": "getGridHalfMargins",
|
|
10317
|
+
"declaration": {
|
|
10318
|
+
"name": "getGridHalfMargins",
|
|
10319
|
+
"module": "src/components/grid/helpers/grid-theme.ts"
|
|
10320
|
+
}
|
|
10321
|
+
},
|
|
10322
|
+
{
|
|
10323
|
+
"kind": "js",
|
|
10324
|
+
"name": "getDimensionsHintOffset",
|
|
10325
|
+
"declaration": {
|
|
10326
|
+
"name": "getDimensionsHintOffset",
|
|
10327
|
+
"module": "src/components/grid/helpers/grid-theme.ts"
|
|
10328
|
+
}
|
|
10329
|
+
},
|
|
10330
|
+
{
|
|
10331
|
+
"kind": "js",
|
|
10332
|
+
"name": "getGridBoxShadow",
|
|
10333
|
+
"declaration": {
|
|
10334
|
+
"name": "getGridBoxShadow",
|
|
10335
|
+
"module": "src/components/grid/helpers/grid-theme.ts"
|
|
10336
|
+
}
|
|
10337
|
+
},
|
|
10338
|
+
{
|
|
10339
|
+
"kind": "js",
|
|
10340
|
+
"name": "getGridCssVariables",
|
|
10341
|
+
"declaration": {
|
|
10342
|
+
"name": "getGridCssVariables",
|
|
10343
|
+
"module": "src/components/grid/helpers/grid-theme.ts"
|
|
10344
|
+
}
|
|
10345
|
+
},
|
|
10346
|
+
{
|
|
10347
|
+
"kind": "js",
|
|
10348
|
+
"name": "isGridDarkBackground",
|
|
10349
|
+
"declaration": {
|
|
10350
|
+
"name": "isGridDarkBackground",
|
|
10351
|
+
"module": "src/components/grid/helpers/grid-theme.ts"
|
|
10352
|
+
}
|
|
10353
|
+
},
|
|
10354
|
+
{
|
|
10355
|
+
"kind": "js",
|
|
10356
|
+
"name": "applyThemeProperties",
|
|
10357
|
+
"declaration": {
|
|
10358
|
+
"name": "applyThemeProperties",
|
|
10359
|
+
"module": "src/components/grid/helpers/grid-theme.ts"
|
|
10360
|
+
}
|
|
10361
|
+
}
|
|
10362
|
+
]
|
|
10363
|
+
},
|
|
10364
|
+
{
|
|
10365
|
+
"kind": "javascript-module",
|
|
10366
|
+
"path": "src/components/grid/helpers/grid-update-cycle.ts",
|
|
10367
|
+
"declarations": [
|
|
10368
|
+
{
|
|
10369
|
+
"kind": "function",
|
|
10370
|
+
"name": "syncGridItems",
|
|
10371
|
+
"return": {
|
|
10372
|
+
"type": {
|
|
10373
|
+
"text": "boolean"
|
|
10374
|
+
}
|
|
10375
|
+
},
|
|
10376
|
+
"parameters": [
|
|
10377
|
+
{
|
|
10378
|
+
"name": "{\n initialized,\n grid,\n hasItemsChanged,\n hasItemAdded,\n gridItemElements,\n items,\n gridElement\n}",
|
|
10379
|
+
"type": {
|
|
10380
|
+
"text": "SyncGridItemsArgs"
|
|
10381
|
+
}
|
|
10382
|
+
}
|
|
10383
|
+
]
|
|
10384
|
+
},
|
|
10385
|
+
{
|
|
10386
|
+
"kind": "function",
|
|
10387
|
+
"name": "applyViewModeChange",
|
|
10388
|
+
"return": {
|
|
10389
|
+
"type": {
|
|
10390
|
+
"text": "HTMLElement | undefined"
|
|
10391
|
+
}
|
|
10392
|
+
},
|
|
10393
|
+
"parameters": [
|
|
10394
|
+
{
|
|
10395
|
+
"name": "{\n initialized,\n grid,\n hasViewModeChanged,\n viewMode,\n previousViewMode,\n activeItemElement,\n gridElement,\n cleanupActiveItem\n}",
|
|
10396
|
+
"type": {
|
|
10397
|
+
"text": "ApplyViewModeChangeArgs"
|
|
10398
|
+
}
|
|
10399
|
+
}
|
|
10400
|
+
]
|
|
10401
|
+
}
|
|
10402
|
+
],
|
|
10403
|
+
"exports": [
|
|
10404
|
+
{
|
|
10405
|
+
"kind": "js",
|
|
10406
|
+
"name": "syncGridItems",
|
|
10407
|
+
"declaration": {
|
|
10408
|
+
"name": "syncGridItems",
|
|
10409
|
+
"module": "src/components/grid/helpers/grid-update-cycle.ts"
|
|
10410
|
+
}
|
|
10411
|
+
},
|
|
10412
|
+
{
|
|
10413
|
+
"kind": "js",
|
|
10414
|
+
"name": "applyViewModeChange",
|
|
10415
|
+
"declaration": {
|
|
10416
|
+
"name": "applyViewModeChange",
|
|
10417
|
+
"module": "src/components/grid/helpers/grid-update-cycle.ts"
|
|
10418
|
+
}
|
|
10419
|
+
}
|
|
10420
|
+
]
|
|
10421
|
+
},
|
|
8881
10422
|
{
|
|
8882
10423
|
"kind": "javascript-module",
|
|
8883
10424
|
"path": "src/components/item-data-drop-panel/item-data-drop-panel.ts",
|