react-magma-dom 4.11.0-next.15 → 4.11.0-next.17
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/components/TreeView/TreeItem.d.ts +5 -1
- package/dist/components/TreeView/TreeItemContext.d.ts +0 -1
- package/dist/components/TreeView/TreeItemHierarchyContext.d.ts +14 -0
- package/dist/components/TreeView/TreeView.d.ts +15 -0
- package/dist/components/TreeView/TreeViewConfigContext.d.ts +17 -0
- package/dist/components/TreeView/TreeViewExpansionContext.d.ts +8 -0
- package/dist/components/TreeView/TreeViewSelectionContext.d.ts +25 -0
- package/dist/components/TreeView/index.d.ts +3 -0
- package/dist/components/TreeView/treeViewReducer.d.ts +94 -0
- package/dist/components/TreeView/useTreeItem.d.ts +1 -2
- package/dist/components/TreeView/useTreeView.d.ts +18 -13
- package/dist/components/TreeView/utils.d.ts +5 -4
- package/dist/esm/index.js +1521 -565
- package/dist/esm/index.js.map +1 -1
- package/dist/properties.json +1801 -6
- package/dist/react-magma-dom.cjs.development.js +1096 -555
- package/dist/react-magma-dom.cjs.development.js.map +1 -1
- package/dist/react-magma-dom.cjs.production.min.js +1 -1
- package/dist/react-magma-dom.cjs.production.min.js.map +1 -1
- package/package.json +2 -1
package/dist/properties.json
CHANGED
|
@@ -18489,12 +18489,12 @@
|
|
|
18489
18489
|
"typeArguments": [
|
|
18490
18490
|
{
|
|
18491
18491
|
"type": "reference",
|
|
18492
|
-
"id":
|
|
18492
|
+
"id": 36388,
|
|
18493
18493
|
"name": "ToggleButtonTextProps"
|
|
18494
18494
|
},
|
|
18495
18495
|
{
|
|
18496
18496
|
"type": "reference",
|
|
18497
|
-
"id":
|
|
18497
|
+
"id": 36672,
|
|
18498
18498
|
"name": "ToggleButtonIconProps"
|
|
18499
18499
|
}
|
|
18500
18500
|
],
|
|
@@ -19251,12 +19251,49 @@
|
|
|
19251
19251
|
"name": "number"
|
|
19252
19252
|
},
|
|
19253
19253
|
"deprecated": false
|
|
19254
|
+
}
|
|
19255
|
+
}
|
|
19256
|
+
},
|
|
19257
|
+
{
|
|
19258
|
+
"name": "TreeItemHierarchyContextInterface",
|
|
19259
|
+
"kind": 256,
|
|
19260
|
+
"kindString": "Interface",
|
|
19261
|
+
"flags": {},
|
|
19262
|
+
"comment": {
|
|
19263
|
+
"shortText": "Context for passing hierarchy information to TreeItems without cloneElement\nThis reduces the overhead of React.cloneElement by providing depth and position\ninformation through context instead"
|
|
19264
|
+
},
|
|
19265
|
+
"id": "TreeItemHierarchyContextInterface",
|
|
19266
|
+
"tags": {},
|
|
19267
|
+
"properties": {
|
|
19268
|
+
"depth": {
|
|
19269
|
+
"name": "depth",
|
|
19270
|
+
"required": true,
|
|
19271
|
+
"type": {
|
|
19272
|
+
"name": "number"
|
|
19273
|
+
},
|
|
19274
|
+
"deprecated": false
|
|
19254
19275
|
},
|
|
19255
|
-
"
|
|
19256
|
-
"name": "
|
|
19276
|
+
"index": {
|
|
19277
|
+
"name": "index",
|
|
19257
19278
|
"required": true,
|
|
19258
19279
|
"type": {
|
|
19259
|
-
"name": "
|
|
19280
|
+
"name": "number"
|
|
19281
|
+
},
|
|
19282
|
+
"deprecated": false
|
|
19283
|
+
},
|
|
19284
|
+
"isTopLevel": {
|
|
19285
|
+
"name": "isTopLevel",
|
|
19286
|
+
"required": true,
|
|
19287
|
+
"type": {
|
|
19288
|
+
"name": "boolean"
|
|
19289
|
+
},
|
|
19290
|
+
"deprecated": false
|
|
19291
|
+
},
|
|
19292
|
+
"parentDepth": {
|
|
19293
|
+
"name": "parentDepth",
|
|
19294
|
+
"required": true,
|
|
19295
|
+
"type": {
|
|
19296
|
+
"name": "number"
|
|
19260
19297
|
},
|
|
19261
19298
|
"deprecated": false
|
|
19262
19299
|
}
|
|
@@ -19328,6 +19365,26 @@
|
|
|
19328
19365
|
"description": "The content of the component",
|
|
19329
19366
|
"deprecated": false
|
|
19330
19367
|
},
|
|
19368
|
+
"enableVirtualization": {
|
|
19369
|
+
"name": "enableVirtualization",
|
|
19370
|
+
"required": false,
|
|
19371
|
+
"type": {
|
|
19372
|
+
"name": "boolean"
|
|
19373
|
+
},
|
|
19374
|
+
"description": "Enable virtualization for better performance with large trees.",
|
|
19375
|
+
"defaultValue": "false",
|
|
19376
|
+
"deprecated": false
|
|
19377
|
+
},
|
|
19378
|
+
"estimateSize": {
|
|
19379
|
+
"name": "estimateSize",
|
|
19380
|
+
"required": false,
|
|
19381
|
+
"type": {
|
|
19382
|
+
"name": "number"
|
|
19383
|
+
},
|
|
19384
|
+
"description": "Estimated size of each tree item in pixels (used for virtualization).",
|
|
19385
|
+
"defaultValue": "40",
|
|
19386
|
+
"deprecated": false
|
|
19387
|
+
},
|
|
19331
19388
|
"expandIconStyles": {
|
|
19332
19389
|
"name": "expandIconStyles",
|
|
19333
19390
|
"required": false,
|
|
@@ -19395,6 +19452,16 @@
|
|
|
19395
19452
|
"description": "Action that fires when an item is selected\nReturn an array of objects.\nExample: [ {itemId: 'item0', checkedStatus: IndeterminateCheckboxStatus.indeterminate}, {itemId: 'item0-child', checkedStatus: IndeterminateCheckboxStatus.checked} ]",
|
|
19396
19453
|
"deprecated": false
|
|
19397
19454
|
},
|
|
19455
|
+
"overscan": {
|
|
19456
|
+
"name": "overscan",
|
|
19457
|
+
"required": false,
|
|
19458
|
+
"type": {
|
|
19459
|
+
"name": "number"
|
|
19460
|
+
},
|
|
19461
|
+
"description": "Number of items to render above and below the visible area (overscan).",
|
|
19462
|
+
"defaultValue": "5",
|
|
19463
|
+
"deprecated": false
|
|
19464
|
+
},
|
|
19398
19465
|
"preselectedItems": {
|
|
19399
19466
|
"name": "preselectedItems",
|
|
19400
19467
|
"required": false,
|
|
@@ -19449,6 +19516,115 @@
|
|
|
19449
19516
|
}
|
|
19450
19517
|
}
|
|
19451
19518
|
},
|
|
19519
|
+
{
|
|
19520
|
+
"name": "TreeViewConfigContextInterface",
|
|
19521
|
+
"kind": 256,
|
|
19522
|
+
"kindString": "Interface",
|
|
19523
|
+
"flags": {
|
|
19524
|
+
"isExported": true
|
|
19525
|
+
},
|
|
19526
|
+
"id": "TreeViewConfigContextInterface",
|
|
19527
|
+
"tags": {},
|
|
19528
|
+
"properties": {
|
|
19529
|
+
"checkChildren": {
|
|
19530
|
+
"name": "checkChildren",
|
|
19531
|
+
"required": true,
|
|
19532
|
+
"type": {
|
|
19533
|
+
"name": "boolean"
|
|
19534
|
+
},
|
|
19535
|
+
"deprecated": false
|
|
19536
|
+
},
|
|
19537
|
+
"checkParents": {
|
|
19538
|
+
"name": "checkParents",
|
|
19539
|
+
"required": true,
|
|
19540
|
+
"type": {
|
|
19541
|
+
"name": "boolean"
|
|
19542
|
+
},
|
|
19543
|
+
"deprecated": false
|
|
19544
|
+
},
|
|
19545
|
+
"expandIconStyles": {
|
|
19546
|
+
"name": "expandIconStyles",
|
|
19547
|
+
"required": false,
|
|
19548
|
+
"type": {
|
|
19549
|
+
"name": "ExpandIconInterface"
|
|
19550
|
+
},
|
|
19551
|
+
"deprecated": false
|
|
19552
|
+
},
|
|
19553
|
+
"hasIcons": {
|
|
19554
|
+
"name": "hasIcons",
|
|
19555
|
+
"required": true,
|
|
19556
|
+
"type": {
|
|
19557
|
+
"name": "boolean"
|
|
19558
|
+
},
|
|
19559
|
+
"deprecated": false
|
|
19560
|
+
},
|
|
19561
|
+
"isTopLevelSelectable": {
|
|
19562
|
+
"name": "isTopLevelSelectable",
|
|
19563
|
+
"required": false,
|
|
19564
|
+
"type": {
|
|
19565
|
+
"name": "boolean"
|
|
19566
|
+
},
|
|
19567
|
+
"deprecated": false
|
|
19568
|
+
},
|
|
19569
|
+
"registerTreeItem": {
|
|
19570
|
+
"name": "registerTreeItem",
|
|
19571
|
+
"required": true,
|
|
19572
|
+
"type": {
|
|
19573
|
+
"name": "function"
|
|
19574
|
+
},
|
|
19575
|
+
"deprecated": false
|
|
19576
|
+
},
|
|
19577
|
+
"selectable": {
|
|
19578
|
+
"name": "selectable",
|
|
19579
|
+
"required": true,
|
|
19580
|
+
"type": {
|
|
19581
|
+
"name": "enum",
|
|
19582
|
+
"options": [
|
|
19583
|
+
"TreeViewSelectable.multi",
|
|
19584
|
+
"TreeViewSelectable.off",
|
|
19585
|
+
"TreeViewSelectable.single"
|
|
19586
|
+
]
|
|
19587
|
+
},
|
|
19588
|
+
"deprecated": false
|
|
19589
|
+
},
|
|
19590
|
+
"treeItemRefArray": {
|
|
19591
|
+
"name": "treeItemRefArray",
|
|
19592
|
+
"required": false,
|
|
19593
|
+
"type": {
|
|
19594
|
+
"name": "MutableRefObject"
|
|
19595
|
+
},
|
|
19596
|
+
"deprecated": false
|
|
19597
|
+
}
|
|
19598
|
+
}
|
|
19599
|
+
},
|
|
19600
|
+
{
|
|
19601
|
+
"name": "ExpandIconInterface",
|
|
19602
|
+
"kind": 256,
|
|
19603
|
+
"kindString": "Interface",
|
|
19604
|
+
"flags": {
|
|
19605
|
+
"isExported": true
|
|
19606
|
+
},
|
|
19607
|
+
"id": "ExpandIconInterface",
|
|
19608
|
+
"tags": {},
|
|
19609
|
+
"properties": {
|
|
19610
|
+
"color": {
|
|
19611
|
+
"name": "color",
|
|
19612
|
+
"required": false,
|
|
19613
|
+
"type": {
|
|
19614
|
+
"name": "string"
|
|
19615
|
+
},
|
|
19616
|
+
"deprecated": false
|
|
19617
|
+
},
|
|
19618
|
+
"size": {
|
|
19619
|
+
"name": "size",
|
|
19620
|
+
"required": false,
|
|
19621
|
+
"type": {
|
|
19622
|
+
"name": "number"
|
|
19623
|
+
},
|
|
19624
|
+
"deprecated": false
|
|
19625
|
+
}
|
|
19626
|
+
}
|
|
19627
|
+
},
|
|
19452
19628
|
{
|
|
19453
19629
|
"name": "TreeItemSelectedInterface",
|
|
19454
19630
|
"kind": 256,
|
|
@@ -19717,6 +19893,1625 @@
|
|
|
19717
19893
|
}
|
|
19718
19894
|
}
|
|
19719
19895
|
},
|
|
19896
|
+
{
|
|
19897
|
+
"name": "TreeViewExpansionContextInterface",
|
|
19898
|
+
"kind": 256,
|
|
19899
|
+
"kindString": "Interface",
|
|
19900
|
+
"flags": {
|
|
19901
|
+
"isExported": true
|
|
19902
|
+
},
|
|
19903
|
+
"id": "TreeViewExpansionContextInterface",
|
|
19904
|
+
"tags": {},
|
|
19905
|
+
"properties": {
|
|
19906
|
+
"expandedSet": {
|
|
19907
|
+
"name": "expandedSet",
|
|
19908
|
+
"required": true,
|
|
19909
|
+
"type": {
|
|
19910
|
+
"name": "Set"
|
|
19911
|
+
},
|
|
19912
|
+
"deprecated": false
|
|
19913
|
+
},
|
|
19914
|
+
"handleExpandedChange": {
|
|
19915
|
+
"name": "handleExpandedChange",
|
|
19916
|
+
"required": true,
|
|
19917
|
+
"type": {
|
|
19918
|
+
"name": "function"
|
|
19919
|
+
},
|
|
19920
|
+
"deprecated": false
|
|
19921
|
+
},
|
|
19922
|
+
"initialExpandedItems": {
|
|
19923
|
+
"name": "initialExpandedItems",
|
|
19924
|
+
"required": true,
|
|
19925
|
+
"type": {
|
|
19926
|
+
"name": "Array"
|
|
19927
|
+
},
|
|
19928
|
+
"deprecated": false
|
|
19929
|
+
},
|
|
19930
|
+
"onExpandedChange": {
|
|
19931
|
+
"name": "onExpandedChange",
|
|
19932
|
+
"required": false,
|
|
19933
|
+
"type": {
|
|
19934
|
+
"name": "function"
|
|
19935
|
+
},
|
|
19936
|
+
"deprecated": false
|
|
19937
|
+
}
|
|
19938
|
+
}
|
|
19939
|
+
},
|
|
19940
|
+
{
|
|
19941
|
+
"name": "TreeItemSelectedInterface",
|
|
19942
|
+
"kind": 256,
|
|
19943
|
+
"kindString": "Interface",
|
|
19944
|
+
"flags": {
|
|
19945
|
+
"isExported": true
|
|
19946
|
+
},
|
|
19947
|
+
"id": "TreeItemSelectedInterface",
|
|
19948
|
+
"tags": {},
|
|
19949
|
+
"properties": {
|
|
19950
|
+
"checkedStatus": {
|
|
19951
|
+
"name": "checkedStatus",
|
|
19952
|
+
"required": true,
|
|
19953
|
+
"type": {
|
|
19954
|
+
"name": "enum",
|
|
19955
|
+
"options": [
|
|
19956
|
+
"IndeterminateCheckboxStatus.checked",
|
|
19957
|
+
"IndeterminateCheckboxStatus.indeterminate",
|
|
19958
|
+
"IndeterminateCheckboxStatus.unchecked"
|
|
19959
|
+
]
|
|
19960
|
+
},
|
|
19961
|
+
"deprecated": false
|
|
19962
|
+
},
|
|
19963
|
+
"isDisabled": {
|
|
19964
|
+
"name": "isDisabled",
|
|
19965
|
+
"required": false,
|
|
19966
|
+
"type": {
|
|
19967
|
+
"name": "boolean"
|
|
19968
|
+
},
|
|
19969
|
+
"deprecated": false
|
|
19970
|
+
},
|
|
19971
|
+
"itemId": {
|
|
19972
|
+
"name": "itemId",
|
|
19973
|
+
"required": false,
|
|
19974
|
+
"type": {
|
|
19975
|
+
"name": "string"
|
|
19976
|
+
},
|
|
19977
|
+
"deprecated": false
|
|
19978
|
+
}
|
|
19979
|
+
}
|
|
19980
|
+
},
|
|
19981
|
+
{
|
|
19982
|
+
"name": "TreeViewItemInterface",
|
|
19983
|
+
"kind": 256,
|
|
19984
|
+
"kindString": "Interface",
|
|
19985
|
+
"flags": {
|
|
19986
|
+
"isExported": true
|
|
19987
|
+
},
|
|
19988
|
+
"id": "TreeViewItemInterface",
|
|
19989
|
+
"tags": {},
|
|
19990
|
+
"properties": {
|
|
19991
|
+
"checkedStatus": {
|
|
19992
|
+
"name": "checkedStatus",
|
|
19993
|
+
"required": true,
|
|
19994
|
+
"type": {
|
|
19995
|
+
"name": "enum",
|
|
19996
|
+
"options": [
|
|
19997
|
+
"IndeterminateCheckboxStatus.checked",
|
|
19998
|
+
"IndeterminateCheckboxStatus.indeterminate",
|
|
19999
|
+
"IndeterminateCheckboxStatus.unchecked"
|
|
20000
|
+
]
|
|
20001
|
+
},
|
|
20002
|
+
"deprecated": false
|
|
20003
|
+
},
|
|
20004
|
+
"hasOwnTreeItems": {
|
|
20005
|
+
"name": "hasOwnTreeItems",
|
|
20006
|
+
"required": true,
|
|
20007
|
+
"type": {
|
|
20008
|
+
"name": "boolean"
|
|
20009
|
+
},
|
|
20010
|
+
"deprecated": false
|
|
20011
|
+
},
|
|
20012
|
+
"icon": {
|
|
20013
|
+
"name": "icon",
|
|
20014
|
+
"required": false,
|
|
20015
|
+
"type": {
|
|
20016
|
+
"name": "React.ReactNode"
|
|
20017
|
+
},
|
|
20018
|
+
"deprecated": false
|
|
20019
|
+
},
|
|
20020
|
+
"isDisabled": {
|
|
20021
|
+
"name": "isDisabled",
|
|
20022
|
+
"required": false,
|
|
20023
|
+
"type": {
|
|
20024
|
+
"name": "boolean"
|
|
20025
|
+
},
|
|
20026
|
+
"deprecated": false
|
|
20027
|
+
},
|
|
20028
|
+
"itemId": {
|
|
20029
|
+
"name": "itemId",
|
|
20030
|
+
"required": false,
|
|
20031
|
+
"type": {
|
|
20032
|
+
"name": "string"
|
|
20033
|
+
},
|
|
20034
|
+
"deprecated": false
|
|
20035
|
+
},
|
|
20036
|
+
"parentId": {
|
|
20037
|
+
"name": "parentId",
|
|
20038
|
+
"required": false,
|
|
20039
|
+
"type": {
|
|
20040
|
+
"name": "string | null"
|
|
20041
|
+
},
|
|
20042
|
+
"deprecated": false
|
|
20043
|
+
}
|
|
20044
|
+
}
|
|
20045
|
+
},
|
|
20046
|
+
{
|
|
20047
|
+
"name": "TreeViewSelectionContextInterface",
|
|
20048
|
+
"kind": 256,
|
|
20049
|
+
"kindString": "Interface",
|
|
20050
|
+
"flags": {
|
|
20051
|
+
"isExported": true
|
|
20052
|
+
},
|
|
20053
|
+
"id": "TreeViewSelectionContextInterface",
|
|
20054
|
+
"tags": {},
|
|
20055
|
+
"properties": {
|
|
20056
|
+
"itemToFocus": {
|
|
20057
|
+
"name": "itemToFocus",
|
|
20058
|
+
"required": false,
|
|
20059
|
+
"type": {
|
|
20060
|
+
"name": "string"
|
|
20061
|
+
},
|
|
20062
|
+
"deprecated": false
|
|
20063
|
+
},
|
|
20064
|
+
"items": {
|
|
20065
|
+
"name": "items",
|
|
20066
|
+
"required": true,
|
|
20067
|
+
"type": {
|
|
20068
|
+
"name": "TreeViewItemInterface[]"
|
|
20069
|
+
},
|
|
20070
|
+
"deprecated": false
|
|
20071
|
+
},
|
|
20072
|
+
"onSelectedItemChange": {
|
|
20073
|
+
"name": "onSelectedItemChange",
|
|
20074
|
+
"required": false,
|
|
20075
|
+
"type": {
|
|
20076
|
+
"name": "function"
|
|
20077
|
+
},
|
|
20078
|
+
"deprecated": false
|
|
20079
|
+
},
|
|
20080
|
+
"selectItem": {
|
|
20081
|
+
"name": "selectItem",
|
|
20082
|
+
"required": true,
|
|
20083
|
+
"type": {
|
|
20084
|
+
"name": "function"
|
|
20085
|
+
},
|
|
20086
|
+
"deprecated": false
|
|
20087
|
+
},
|
|
20088
|
+
"selectable": {
|
|
20089
|
+
"name": "selectable",
|
|
20090
|
+
"required": true,
|
|
20091
|
+
"type": {
|
|
20092
|
+
"name": "enum",
|
|
20093
|
+
"options": [
|
|
20094
|
+
"TreeViewSelectable.multi",
|
|
20095
|
+
"TreeViewSelectable.off",
|
|
20096
|
+
"TreeViewSelectable.single"
|
|
20097
|
+
]
|
|
20098
|
+
},
|
|
20099
|
+
"deprecated": false
|
|
20100
|
+
},
|
|
20101
|
+
"selectedItems": {
|
|
20102
|
+
"name": "selectedItems",
|
|
20103
|
+
"required": true,
|
|
20104
|
+
"type": {
|
|
20105
|
+
"name": "Array"
|
|
20106
|
+
},
|
|
20107
|
+
"deprecated": false
|
|
20108
|
+
}
|
|
20109
|
+
}
|
|
20110
|
+
},
|
|
20111
|
+
{
|
|
20112
|
+
"name": "TreeViewState",
|
|
20113
|
+
"kind": 256,
|
|
20114
|
+
"kindString": "Interface",
|
|
20115
|
+
"flags": {
|
|
20116
|
+
"isExported": true
|
|
20117
|
+
},
|
|
20118
|
+
"comment": {
|
|
20119
|
+
"shortText": "TreeView State Shape\nConsolidates all state managed by the TreeView component"
|
|
20120
|
+
},
|
|
20121
|
+
"id": "TreeViewState",
|
|
20122
|
+
"tags": {},
|
|
20123
|
+
"properties": {
|
|
20124
|
+
"expandedSet": {
|
|
20125
|
+
"name": "expandedSet",
|
|
20126
|
+
"required": true,
|
|
20127
|
+
"type": {
|
|
20128
|
+
"name": "Set"
|
|
20129
|
+
},
|
|
20130
|
+
"description": "Set of expanded item IDs for O(1) lookup",
|
|
20131
|
+
"deprecated": false
|
|
20132
|
+
},
|
|
20133
|
+
"items": {
|
|
20134
|
+
"name": "items",
|
|
20135
|
+
"required": true,
|
|
20136
|
+
"type": {
|
|
20137
|
+
"name": "TreeViewItemInterface[]"
|
|
20138
|
+
},
|
|
20139
|
+
"description": "Array of all tree items with their metadata",
|
|
20140
|
+
"deprecated": false
|
|
20141
|
+
},
|
|
20142
|
+
"itemsNeedUpdate": {
|
|
20143
|
+
"name": "itemsNeedUpdate",
|
|
20144
|
+
"required": true,
|
|
20145
|
+
"type": {
|
|
20146
|
+
"name": "boolean | null"
|
|
20147
|
+
},
|
|
20148
|
+
"description": "Flag indicating if items need to be updated (for showAll functionality)",
|
|
20149
|
+
"deprecated": false
|
|
20150
|
+
}
|
|
20151
|
+
}
|
|
20152
|
+
},
|
|
20153
|
+
{
|
|
20154
|
+
"name": "TreeViewAction",
|
|
20155
|
+
"kind": 4194304,
|
|
20156
|
+
"kindString": "Type alias",
|
|
20157
|
+
"flags": {
|
|
20158
|
+
"isExported": true
|
|
20159
|
+
},
|
|
20160
|
+
"comment": {
|
|
20161
|
+
"shortText": "TreeView Action Types\nDefines all possible state mutations"
|
|
20162
|
+
},
|
|
20163
|
+
"type": {
|
|
20164
|
+
"type": "union",
|
|
20165
|
+
"types": [
|
|
20166
|
+
{
|
|
20167
|
+
"type": "reflection",
|
|
20168
|
+
"declaration": {
|
|
20169
|
+
"id": 34976,
|
|
20170
|
+
"name": "__type",
|
|
20171
|
+
"kind": 65536,
|
|
20172
|
+
"kindString": "Type literal",
|
|
20173
|
+
"flags": {
|
|
20174
|
+
"isExported": true
|
|
20175
|
+
},
|
|
20176
|
+
"children": [
|
|
20177
|
+
{
|
|
20178
|
+
"id": 34978,
|
|
20179
|
+
"name": "payload",
|
|
20180
|
+
"kind": 32,
|
|
20181
|
+
"kindString": "Variable",
|
|
20182
|
+
"flags": {
|
|
20183
|
+
"isExported": true
|
|
20184
|
+
},
|
|
20185
|
+
"sources": [
|
|
20186
|
+
{
|
|
20187
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20188
|
+
"line": 26,
|
|
20189
|
+
"character": 13
|
|
20190
|
+
}
|
|
20191
|
+
],
|
|
20192
|
+
"type": {
|
|
20193
|
+
"type": "reflection",
|
|
20194
|
+
"declaration": {
|
|
20195
|
+
"id": 34979,
|
|
20196
|
+
"name": "__type",
|
|
20197
|
+
"kind": 65536,
|
|
20198
|
+
"kindString": "Type literal",
|
|
20199
|
+
"flags": {
|
|
20200
|
+
"isExported": true
|
|
20201
|
+
},
|
|
20202
|
+
"children": [
|
|
20203
|
+
{
|
|
20204
|
+
"id": 34983,
|
|
20205
|
+
"name": "checkChildren",
|
|
20206
|
+
"kind": 32,
|
|
20207
|
+
"kindString": "Variable",
|
|
20208
|
+
"flags": {
|
|
20209
|
+
"isExported": true
|
|
20210
|
+
},
|
|
20211
|
+
"sources": [
|
|
20212
|
+
{
|
|
20213
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20214
|
+
"line": 30,
|
|
20215
|
+
"character": 21
|
|
20216
|
+
}
|
|
20217
|
+
],
|
|
20218
|
+
"type": {
|
|
20219
|
+
"type": "intrinsic",
|
|
20220
|
+
"name": "boolean"
|
|
20221
|
+
}
|
|
20222
|
+
},
|
|
20223
|
+
{
|
|
20224
|
+
"id": 34984,
|
|
20225
|
+
"name": "checkParents",
|
|
20226
|
+
"kind": 32,
|
|
20227
|
+
"kindString": "Variable",
|
|
20228
|
+
"flags": {
|
|
20229
|
+
"isExported": true
|
|
20230
|
+
},
|
|
20231
|
+
"sources": [
|
|
20232
|
+
{
|
|
20233
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20234
|
+
"line": 31,
|
|
20235
|
+
"character": 20
|
|
20236
|
+
}
|
|
20237
|
+
],
|
|
20238
|
+
"type": {
|
|
20239
|
+
"type": "intrinsic",
|
|
20240
|
+
"name": "boolean"
|
|
20241
|
+
}
|
|
20242
|
+
},
|
|
20243
|
+
{
|
|
20244
|
+
"id": 34981,
|
|
20245
|
+
"name": "checkedStatus",
|
|
20246
|
+
"kind": 32,
|
|
20247
|
+
"kindString": "Variable",
|
|
20248
|
+
"flags": {
|
|
20249
|
+
"isExported": true,
|
|
20250
|
+
"isOptional": true
|
|
20251
|
+
},
|
|
20252
|
+
"sources": [
|
|
20253
|
+
{
|
|
20254
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20255
|
+
"line": 28,
|
|
20256
|
+
"character": 21
|
|
20257
|
+
}
|
|
20258
|
+
],
|
|
20259
|
+
"type": {
|
|
20260
|
+
"type": "reference",
|
|
20261
|
+
"id": 18028,
|
|
20262
|
+
"name": "IndeterminateCheckboxStatus"
|
|
20263
|
+
}
|
|
20264
|
+
},
|
|
20265
|
+
{
|
|
20266
|
+
"id": 34985,
|
|
20267
|
+
"name": "isTopLevelSelectable",
|
|
20268
|
+
"kind": 32,
|
|
20269
|
+
"kindString": "Variable",
|
|
20270
|
+
"flags": {
|
|
20271
|
+
"isExported": true
|
|
20272
|
+
},
|
|
20273
|
+
"sources": [
|
|
20274
|
+
{
|
|
20275
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20276
|
+
"line": 32,
|
|
20277
|
+
"character": 28
|
|
20278
|
+
}
|
|
20279
|
+
],
|
|
20280
|
+
"type": {
|
|
20281
|
+
"type": "intrinsic",
|
|
20282
|
+
"name": "boolean"
|
|
20283
|
+
}
|
|
20284
|
+
},
|
|
20285
|
+
{
|
|
20286
|
+
"id": 34980,
|
|
20287
|
+
"name": "itemId",
|
|
20288
|
+
"kind": 32,
|
|
20289
|
+
"kindString": "Variable",
|
|
20290
|
+
"flags": {
|
|
20291
|
+
"isExported": true
|
|
20292
|
+
},
|
|
20293
|
+
"sources": [
|
|
20294
|
+
{
|
|
20295
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20296
|
+
"line": 27,
|
|
20297
|
+
"character": 14
|
|
20298
|
+
}
|
|
20299
|
+
],
|
|
20300
|
+
"type": {
|
|
20301
|
+
"type": "intrinsic",
|
|
20302
|
+
"name": "string"
|
|
20303
|
+
}
|
|
20304
|
+
},
|
|
20305
|
+
{
|
|
20306
|
+
"id": 34982,
|
|
20307
|
+
"name": "selectable",
|
|
20308
|
+
"kind": 32,
|
|
20309
|
+
"kindString": "Variable",
|
|
20310
|
+
"flags": {
|
|
20311
|
+
"isExported": true
|
|
20312
|
+
},
|
|
20313
|
+
"sources": [
|
|
20314
|
+
{
|
|
20315
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20316
|
+
"line": 29,
|
|
20317
|
+
"character": 18
|
|
20318
|
+
}
|
|
20319
|
+
],
|
|
20320
|
+
"type": {
|
|
20321
|
+
"type": "intrinsic",
|
|
20322
|
+
"name": "string"
|
|
20323
|
+
}
|
|
20324
|
+
}
|
|
20325
|
+
],
|
|
20326
|
+
"groups": [
|
|
20327
|
+
{
|
|
20328
|
+
"title": "Variables",
|
|
20329
|
+
"kind": 32,
|
|
20330
|
+
"children": [
|
|
20331
|
+
34983,
|
|
20332
|
+
34984,
|
|
20333
|
+
34981,
|
|
20334
|
+
34985,
|
|
20335
|
+
34980,
|
|
20336
|
+
34982
|
|
20337
|
+
]
|
|
20338
|
+
}
|
|
20339
|
+
],
|
|
20340
|
+
"sources": [
|
|
20341
|
+
{
|
|
20342
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20343
|
+
"line": 26,
|
|
20344
|
+
"character": 14
|
|
20345
|
+
}
|
|
20346
|
+
]
|
|
20347
|
+
}
|
|
20348
|
+
}
|
|
20349
|
+
},
|
|
20350
|
+
{
|
|
20351
|
+
"id": 34977,
|
|
20352
|
+
"name": "type",
|
|
20353
|
+
"kind": 32,
|
|
20354
|
+
"kindString": "Variable",
|
|
20355
|
+
"flags": {
|
|
20356
|
+
"isExported": true
|
|
20357
|
+
},
|
|
20358
|
+
"sources": [
|
|
20359
|
+
{
|
|
20360
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20361
|
+
"line": 25,
|
|
20362
|
+
"character": 10
|
|
20363
|
+
}
|
|
20364
|
+
],
|
|
20365
|
+
"type": {
|
|
20366
|
+
"type": "stringLiteral",
|
|
20367
|
+
"value": "SELECT_ITEM"
|
|
20368
|
+
}
|
|
20369
|
+
}
|
|
20370
|
+
],
|
|
20371
|
+
"groups": [
|
|
20372
|
+
{
|
|
20373
|
+
"title": "Variables",
|
|
20374
|
+
"kind": 32,
|
|
20375
|
+
"children": [
|
|
20376
|
+
34978,
|
|
20377
|
+
34977
|
|
20378
|
+
]
|
|
20379
|
+
}
|
|
20380
|
+
],
|
|
20381
|
+
"sources": [
|
|
20382
|
+
{
|
|
20383
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20384
|
+
"line": 24,
|
|
20385
|
+
"character": 3
|
|
20386
|
+
}
|
|
20387
|
+
]
|
|
20388
|
+
}
|
|
20389
|
+
},
|
|
20390
|
+
{
|
|
20391
|
+
"type": "reflection",
|
|
20392
|
+
"declaration": {
|
|
20393
|
+
"id": 34986,
|
|
20394
|
+
"name": "__type",
|
|
20395
|
+
"kind": 65536,
|
|
20396
|
+
"kindString": "Type literal",
|
|
20397
|
+
"flags": {
|
|
20398
|
+
"isExported": true
|
|
20399
|
+
},
|
|
20400
|
+
"children": [
|
|
20401
|
+
{
|
|
20402
|
+
"id": 34988,
|
|
20403
|
+
"name": "payload",
|
|
20404
|
+
"kind": 32,
|
|
20405
|
+
"kindString": "Variable",
|
|
20406
|
+
"flags": {
|
|
20407
|
+
"isExported": true
|
|
20408
|
+
},
|
|
20409
|
+
"sources": [
|
|
20410
|
+
{
|
|
20411
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20412
|
+
"line": 37,
|
|
20413
|
+
"character": 13
|
|
20414
|
+
}
|
|
20415
|
+
],
|
|
20416
|
+
"type": {
|
|
20417
|
+
"type": "reflection",
|
|
20418
|
+
"declaration": {
|
|
20419
|
+
"id": 34989,
|
|
20420
|
+
"name": "__type",
|
|
20421
|
+
"kind": 65536,
|
|
20422
|
+
"kindString": "Type literal",
|
|
20423
|
+
"flags": {
|
|
20424
|
+
"isExported": true
|
|
20425
|
+
},
|
|
20426
|
+
"children": [
|
|
20427
|
+
{
|
|
20428
|
+
"id": 34990,
|
|
20429
|
+
"name": "checkChildren",
|
|
20430
|
+
"kind": 32,
|
|
20431
|
+
"kindString": "Variable",
|
|
20432
|
+
"flags": {
|
|
20433
|
+
"isExported": true
|
|
20434
|
+
},
|
|
20435
|
+
"sources": [
|
|
20436
|
+
{
|
|
20437
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20438
|
+
"line": 38,
|
|
20439
|
+
"character": 21
|
|
20440
|
+
}
|
|
20441
|
+
],
|
|
20442
|
+
"type": {
|
|
20443
|
+
"type": "intrinsic",
|
|
20444
|
+
"name": "boolean"
|
|
20445
|
+
}
|
|
20446
|
+
},
|
|
20447
|
+
{
|
|
20448
|
+
"id": 34991,
|
|
20449
|
+
"name": "checkParents",
|
|
20450
|
+
"kind": 32,
|
|
20451
|
+
"kindString": "Variable",
|
|
20452
|
+
"flags": {
|
|
20453
|
+
"isExported": true
|
|
20454
|
+
},
|
|
20455
|
+
"sources": [
|
|
20456
|
+
{
|
|
20457
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20458
|
+
"line": 39,
|
|
20459
|
+
"character": 20
|
|
20460
|
+
}
|
|
20461
|
+
],
|
|
20462
|
+
"type": {
|
|
20463
|
+
"type": "intrinsic",
|
|
20464
|
+
"name": "boolean"
|
|
20465
|
+
}
|
|
20466
|
+
},
|
|
20467
|
+
{
|
|
20468
|
+
"id": 34992,
|
|
20469
|
+
"name": "isTopLevelSelectable",
|
|
20470
|
+
"kind": 32,
|
|
20471
|
+
"kindString": "Variable",
|
|
20472
|
+
"flags": {
|
|
20473
|
+
"isExported": true
|
|
20474
|
+
},
|
|
20475
|
+
"sources": [
|
|
20476
|
+
{
|
|
20477
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20478
|
+
"line": 40,
|
|
20479
|
+
"character": 28
|
|
20480
|
+
}
|
|
20481
|
+
],
|
|
20482
|
+
"type": {
|
|
20483
|
+
"type": "intrinsic",
|
|
20484
|
+
"name": "boolean"
|
|
20485
|
+
}
|
|
20486
|
+
}
|
|
20487
|
+
],
|
|
20488
|
+
"groups": [
|
|
20489
|
+
{
|
|
20490
|
+
"title": "Variables",
|
|
20491
|
+
"kind": 32,
|
|
20492
|
+
"children": [
|
|
20493
|
+
34990,
|
|
20494
|
+
34991,
|
|
20495
|
+
34992
|
|
20496
|
+
]
|
|
20497
|
+
}
|
|
20498
|
+
],
|
|
20499
|
+
"sources": [
|
|
20500
|
+
{
|
|
20501
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20502
|
+
"line": 37,
|
|
20503
|
+
"character": 14
|
|
20504
|
+
}
|
|
20505
|
+
]
|
|
20506
|
+
}
|
|
20507
|
+
}
|
|
20508
|
+
},
|
|
20509
|
+
{
|
|
20510
|
+
"id": 34987,
|
|
20511
|
+
"name": "type",
|
|
20512
|
+
"kind": 32,
|
|
20513
|
+
"kindString": "Variable",
|
|
20514
|
+
"flags": {
|
|
20515
|
+
"isExported": true
|
|
20516
|
+
},
|
|
20517
|
+
"sources": [
|
|
20518
|
+
{
|
|
20519
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20520
|
+
"line": 36,
|
|
20521
|
+
"character": 10
|
|
20522
|
+
}
|
|
20523
|
+
],
|
|
20524
|
+
"type": {
|
|
20525
|
+
"type": "stringLiteral",
|
|
20526
|
+
"value": "SELECT_ALL"
|
|
20527
|
+
}
|
|
20528
|
+
}
|
|
20529
|
+
],
|
|
20530
|
+
"groups": [
|
|
20531
|
+
{
|
|
20532
|
+
"title": "Variables",
|
|
20533
|
+
"kind": 32,
|
|
20534
|
+
"children": [
|
|
20535
|
+
34988,
|
|
20536
|
+
34987
|
|
20537
|
+
]
|
|
20538
|
+
}
|
|
20539
|
+
],
|
|
20540
|
+
"sources": [
|
|
20541
|
+
{
|
|
20542
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20543
|
+
"line": 35,
|
|
20544
|
+
"character": 3
|
|
20545
|
+
}
|
|
20546
|
+
]
|
|
20547
|
+
}
|
|
20548
|
+
},
|
|
20549
|
+
{
|
|
20550
|
+
"type": "reflection",
|
|
20551
|
+
"declaration": {
|
|
20552
|
+
"id": 34993,
|
|
20553
|
+
"name": "__type",
|
|
20554
|
+
"kind": 65536,
|
|
20555
|
+
"kindString": "Type literal",
|
|
20556
|
+
"flags": {
|
|
20557
|
+
"isExported": true
|
|
20558
|
+
},
|
|
20559
|
+
"children": [
|
|
20560
|
+
{
|
|
20561
|
+
"id": 34995,
|
|
20562
|
+
"name": "payload",
|
|
20563
|
+
"kind": 32,
|
|
20564
|
+
"kindString": "Variable",
|
|
20565
|
+
"flags": {
|
|
20566
|
+
"isExported": true
|
|
20567
|
+
},
|
|
20568
|
+
"sources": [
|
|
20569
|
+
{
|
|
20570
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20571
|
+
"line": 45,
|
|
20572
|
+
"character": 13
|
|
20573
|
+
}
|
|
20574
|
+
],
|
|
20575
|
+
"type": {
|
|
20576
|
+
"type": "reflection",
|
|
20577
|
+
"declaration": {
|
|
20578
|
+
"id": 34996,
|
|
20579
|
+
"name": "__type",
|
|
20580
|
+
"kind": 65536,
|
|
20581
|
+
"kindString": "Type literal",
|
|
20582
|
+
"flags": {
|
|
20583
|
+
"isExported": true
|
|
20584
|
+
},
|
|
20585
|
+
"children": [
|
|
20586
|
+
{
|
|
20587
|
+
"id": 34997,
|
|
20588
|
+
"name": "checkChildren",
|
|
20589
|
+
"kind": 32,
|
|
20590
|
+
"kindString": "Variable",
|
|
20591
|
+
"flags": {
|
|
20592
|
+
"isExported": true
|
|
20593
|
+
},
|
|
20594
|
+
"sources": [
|
|
20595
|
+
{
|
|
20596
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20597
|
+
"line": 46,
|
|
20598
|
+
"character": 21
|
|
20599
|
+
}
|
|
20600
|
+
],
|
|
20601
|
+
"type": {
|
|
20602
|
+
"type": "intrinsic",
|
|
20603
|
+
"name": "boolean"
|
|
20604
|
+
}
|
|
20605
|
+
},
|
|
20606
|
+
{
|
|
20607
|
+
"id": 34998,
|
|
20608
|
+
"name": "checkParents",
|
|
20609
|
+
"kind": 32,
|
|
20610
|
+
"kindString": "Variable",
|
|
20611
|
+
"flags": {
|
|
20612
|
+
"isExported": true
|
|
20613
|
+
},
|
|
20614
|
+
"sources": [
|
|
20615
|
+
{
|
|
20616
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20617
|
+
"line": 47,
|
|
20618
|
+
"character": 20
|
|
20619
|
+
}
|
|
20620
|
+
],
|
|
20621
|
+
"type": {
|
|
20622
|
+
"type": "intrinsic",
|
|
20623
|
+
"name": "boolean"
|
|
20624
|
+
}
|
|
20625
|
+
},
|
|
20626
|
+
{
|
|
20627
|
+
"id": 34999,
|
|
20628
|
+
"name": "isTopLevelSelectable",
|
|
20629
|
+
"kind": 32,
|
|
20630
|
+
"kindString": "Variable",
|
|
20631
|
+
"flags": {
|
|
20632
|
+
"isExported": true
|
|
20633
|
+
},
|
|
20634
|
+
"sources": [
|
|
20635
|
+
{
|
|
20636
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20637
|
+
"line": 48,
|
|
20638
|
+
"character": 28
|
|
20639
|
+
}
|
|
20640
|
+
],
|
|
20641
|
+
"type": {
|
|
20642
|
+
"type": "intrinsic",
|
|
20643
|
+
"name": "boolean"
|
|
20644
|
+
}
|
|
20645
|
+
}
|
|
20646
|
+
],
|
|
20647
|
+
"groups": [
|
|
20648
|
+
{
|
|
20649
|
+
"title": "Variables",
|
|
20650
|
+
"kind": 32,
|
|
20651
|
+
"children": [
|
|
20652
|
+
34997,
|
|
20653
|
+
34998,
|
|
20654
|
+
34999
|
|
20655
|
+
]
|
|
20656
|
+
}
|
|
20657
|
+
],
|
|
20658
|
+
"sources": [
|
|
20659
|
+
{
|
|
20660
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20661
|
+
"line": 45,
|
|
20662
|
+
"character": 14
|
|
20663
|
+
}
|
|
20664
|
+
]
|
|
20665
|
+
}
|
|
20666
|
+
}
|
|
20667
|
+
},
|
|
20668
|
+
{
|
|
20669
|
+
"id": 34994,
|
|
20670
|
+
"name": "type",
|
|
20671
|
+
"kind": 32,
|
|
20672
|
+
"kindString": "Variable",
|
|
20673
|
+
"flags": {
|
|
20674
|
+
"isExported": true
|
|
20675
|
+
},
|
|
20676
|
+
"sources": [
|
|
20677
|
+
{
|
|
20678
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20679
|
+
"line": 44,
|
|
20680
|
+
"character": 10
|
|
20681
|
+
}
|
|
20682
|
+
],
|
|
20683
|
+
"type": {
|
|
20684
|
+
"type": "stringLiteral",
|
|
20685
|
+
"value": "CLEAR_ALL"
|
|
20686
|
+
}
|
|
20687
|
+
}
|
|
20688
|
+
],
|
|
20689
|
+
"groups": [
|
|
20690
|
+
{
|
|
20691
|
+
"title": "Variables",
|
|
20692
|
+
"kind": 32,
|
|
20693
|
+
"children": [
|
|
20694
|
+
34995,
|
|
20695
|
+
34994
|
|
20696
|
+
]
|
|
20697
|
+
}
|
|
20698
|
+
],
|
|
20699
|
+
"sources": [
|
|
20700
|
+
{
|
|
20701
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20702
|
+
"line": 43,
|
|
20703
|
+
"character": 3
|
|
20704
|
+
}
|
|
20705
|
+
]
|
|
20706
|
+
}
|
|
20707
|
+
},
|
|
20708
|
+
{
|
|
20709
|
+
"type": "reflection",
|
|
20710
|
+
"declaration": {
|
|
20711
|
+
"id": 35000,
|
|
20712
|
+
"name": "__type",
|
|
20713
|
+
"kind": 65536,
|
|
20714
|
+
"kindString": "Type literal",
|
|
20715
|
+
"flags": {
|
|
20716
|
+
"isExported": true
|
|
20717
|
+
},
|
|
20718
|
+
"children": [
|
|
20719
|
+
{
|
|
20720
|
+
"id": 35002,
|
|
20721
|
+
"name": "payload",
|
|
20722
|
+
"kind": 32,
|
|
20723
|
+
"kindString": "Variable",
|
|
20724
|
+
"flags": {
|
|
20725
|
+
"isExported": true
|
|
20726
|
+
},
|
|
20727
|
+
"sources": [
|
|
20728
|
+
{
|
|
20729
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20730
|
+
"line": 54,
|
|
20731
|
+
"character": 13
|
|
20732
|
+
}
|
|
20733
|
+
],
|
|
20734
|
+
"type": {
|
|
20735
|
+
"type": "reflection",
|
|
20736
|
+
"declaration": {
|
|
20737
|
+
"id": 35003,
|
|
20738
|
+
"name": "__type",
|
|
20739
|
+
"kind": 65536,
|
|
20740
|
+
"kindString": "Type literal",
|
|
20741
|
+
"flags": {
|
|
20742
|
+
"isExported": true
|
|
20743
|
+
},
|
|
20744
|
+
"children": [
|
|
20745
|
+
{
|
|
20746
|
+
"id": 35004,
|
|
20747
|
+
"name": "itemId",
|
|
20748
|
+
"kind": 32,
|
|
20749
|
+
"kindString": "Variable",
|
|
20750
|
+
"flags": {
|
|
20751
|
+
"isExported": true
|
|
20752
|
+
},
|
|
20753
|
+
"sources": [
|
|
20754
|
+
{
|
|
20755
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20756
|
+
"line": 55,
|
|
20757
|
+
"character": 14
|
|
20758
|
+
}
|
|
20759
|
+
],
|
|
20760
|
+
"type": {
|
|
20761
|
+
"type": "union",
|
|
20762
|
+
"types": [
|
|
20763
|
+
{
|
|
20764
|
+
"type": "intrinsic",
|
|
20765
|
+
"name": "string"
|
|
20766
|
+
},
|
|
20767
|
+
{
|
|
20768
|
+
"type": "array",
|
|
20769
|
+
"elementType": {
|
|
20770
|
+
"type": "intrinsic",
|
|
20771
|
+
"name": "string"
|
|
20772
|
+
}
|
|
20773
|
+
}
|
|
20774
|
+
]
|
|
20775
|
+
}
|
|
20776
|
+
}
|
|
20777
|
+
],
|
|
20778
|
+
"groups": [
|
|
20779
|
+
{
|
|
20780
|
+
"title": "Variables",
|
|
20781
|
+
"kind": 32,
|
|
20782
|
+
"children": [
|
|
20783
|
+
35004
|
|
20784
|
+
]
|
|
20785
|
+
}
|
|
20786
|
+
],
|
|
20787
|
+
"sources": [
|
|
20788
|
+
{
|
|
20789
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20790
|
+
"line": 54,
|
|
20791
|
+
"character": 14
|
|
20792
|
+
}
|
|
20793
|
+
]
|
|
20794
|
+
}
|
|
20795
|
+
}
|
|
20796
|
+
},
|
|
20797
|
+
{
|
|
20798
|
+
"id": 35001,
|
|
20799
|
+
"name": "type",
|
|
20800
|
+
"kind": 32,
|
|
20801
|
+
"kindString": "Variable",
|
|
20802
|
+
"flags": {
|
|
20803
|
+
"isExported": true
|
|
20804
|
+
},
|
|
20805
|
+
"sources": [
|
|
20806
|
+
{
|
|
20807
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20808
|
+
"line": 53,
|
|
20809
|
+
"character": 10
|
|
20810
|
+
}
|
|
20811
|
+
],
|
|
20812
|
+
"type": {
|
|
20813
|
+
"type": "stringLiteral",
|
|
20814
|
+
"value": "TOGGLE_EXPAND"
|
|
20815
|
+
}
|
|
20816
|
+
}
|
|
20817
|
+
],
|
|
20818
|
+
"groups": [
|
|
20819
|
+
{
|
|
20820
|
+
"title": "Variables",
|
|
20821
|
+
"kind": 32,
|
|
20822
|
+
"children": [
|
|
20823
|
+
35002,
|
|
20824
|
+
35001
|
|
20825
|
+
]
|
|
20826
|
+
}
|
|
20827
|
+
],
|
|
20828
|
+
"sources": [
|
|
20829
|
+
{
|
|
20830
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20831
|
+
"line": 52,
|
|
20832
|
+
"character": 3
|
|
20833
|
+
}
|
|
20834
|
+
]
|
|
20835
|
+
}
|
|
20836
|
+
},
|
|
20837
|
+
{
|
|
20838
|
+
"type": "reflection",
|
|
20839
|
+
"declaration": {
|
|
20840
|
+
"id": 35005,
|
|
20841
|
+
"name": "__type",
|
|
20842
|
+
"kind": 65536,
|
|
20843
|
+
"kindString": "Type literal",
|
|
20844
|
+
"flags": {
|
|
20845
|
+
"isExported": true
|
|
20846
|
+
},
|
|
20847
|
+
"children": [
|
|
20848
|
+
{
|
|
20849
|
+
"id": 35007,
|
|
20850
|
+
"name": "payload",
|
|
20851
|
+
"kind": 32,
|
|
20852
|
+
"kindString": "Variable",
|
|
20853
|
+
"flags": {
|
|
20854
|
+
"isExported": true
|
|
20855
|
+
},
|
|
20856
|
+
"sources": [
|
|
20857
|
+
{
|
|
20858
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20859
|
+
"line": 58,
|
|
20860
|
+
"character": 33
|
|
20861
|
+
}
|
|
20862
|
+
],
|
|
20863
|
+
"type": {
|
|
20864
|
+
"type": "reflection",
|
|
20865
|
+
"declaration": {
|
|
20866
|
+
"id": 35008,
|
|
20867
|
+
"name": "__type",
|
|
20868
|
+
"kind": 65536,
|
|
20869
|
+
"kindString": "Type literal",
|
|
20870
|
+
"flags": {
|
|
20871
|
+
"isExported": true
|
|
20872
|
+
},
|
|
20873
|
+
"children": [
|
|
20874
|
+
{
|
|
20875
|
+
"id": 35009,
|
|
20876
|
+
"name": "expandableIds",
|
|
20877
|
+
"kind": 32,
|
|
20878
|
+
"kindString": "Variable",
|
|
20879
|
+
"flags": {
|
|
20880
|
+
"isExported": true
|
|
20881
|
+
},
|
|
20882
|
+
"sources": [
|
|
20883
|
+
{
|
|
20884
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20885
|
+
"line": 58,
|
|
20886
|
+
"character": 50
|
|
20887
|
+
}
|
|
20888
|
+
],
|
|
20889
|
+
"type": {
|
|
20890
|
+
"type": "array",
|
|
20891
|
+
"elementType": {
|
|
20892
|
+
"type": "intrinsic",
|
|
20893
|
+
"name": "string"
|
|
20894
|
+
}
|
|
20895
|
+
}
|
|
20896
|
+
}
|
|
20897
|
+
],
|
|
20898
|
+
"groups": [
|
|
20899
|
+
{
|
|
20900
|
+
"title": "Variables",
|
|
20901
|
+
"kind": 32,
|
|
20902
|
+
"children": [
|
|
20903
|
+
35009
|
|
20904
|
+
]
|
|
20905
|
+
}
|
|
20906
|
+
],
|
|
20907
|
+
"sources": [
|
|
20908
|
+
{
|
|
20909
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20910
|
+
"line": 58,
|
|
20911
|
+
"character": 34
|
|
20912
|
+
}
|
|
20913
|
+
]
|
|
20914
|
+
}
|
|
20915
|
+
}
|
|
20916
|
+
},
|
|
20917
|
+
{
|
|
20918
|
+
"id": 35006,
|
|
20919
|
+
"name": "type",
|
|
20920
|
+
"kind": 32,
|
|
20921
|
+
"kindString": "Variable",
|
|
20922
|
+
"flags": {
|
|
20923
|
+
"isExported": true
|
|
20924
|
+
},
|
|
20925
|
+
"sources": [
|
|
20926
|
+
{
|
|
20927
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20928
|
+
"line": 58,
|
|
20929
|
+
"character": 10
|
|
20930
|
+
}
|
|
20931
|
+
],
|
|
20932
|
+
"type": {
|
|
20933
|
+
"type": "stringLiteral",
|
|
20934
|
+
"value": "EXPAND_ALL"
|
|
20935
|
+
}
|
|
20936
|
+
}
|
|
20937
|
+
],
|
|
20938
|
+
"groups": [
|
|
20939
|
+
{
|
|
20940
|
+
"title": "Variables",
|
|
20941
|
+
"kind": 32,
|
|
20942
|
+
"children": [
|
|
20943
|
+
35007,
|
|
20944
|
+
35006
|
|
20945
|
+
]
|
|
20946
|
+
}
|
|
20947
|
+
],
|
|
20948
|
+
"sources": [
|
|
20949
|
+
{
|
|
20950
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20951
|
+
"line": 58,
|
|
20952
|
+
"character": 3
|
|
20953
|
+
}
|
|
20954
|
+
]
|
|
20955
|
+
}
|
|
20956
|
+
},
|
|
20957
|
+
{
|
|
20958
|
+
"type": "reflection",
|
|
20959
|
+
"declaration": {
|
|
20960
|
+
"id": 35010,
|
|
20961
|
+
"name": "__type",
|
|
20962
|
+
"kind": 65536,
|
|
20963
|
+
"kindString": "Type literal",
|
|
20964
|
+
"flags": {
|
|
20965
|
+
"isExported": true
|
|
20966
|
+
},
|
|
20967
|
+
"children": [
|
|
20968
|
+
{
|
|
20969
|
+
"id": 35011,
|
|
20970
|
+
"name": "type",
|
|
20971
|
+
"kind": 32,
|
|
20972
|
+
"kindString": "Variable",
|
|
20973
|
+
"flags": {
|
|
20974
|
+
"isExported": true
|
|
20975
|
+
},
|
|
20976
|
+
"sources": [
|
|
20977
|
+
{
|
|
20978
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
20979
|
+
"line": 59,
|
|
20980
|
+
"character": 10
|
|
20981
|
+
}
|
|
20982
|
+
],
|
|
20983
|
+
"type": {
|
|
20984
|
+
"type": "stringLiteral",
|
|
20985
|
+
"value": "COLLAPSE_ALL"
|
|
20986
|
+
}
|
|
20987
|
+
}
|
|
20988
|
+
],
|
|
20989
|
+
"groups": [
|
|
20990
|
+
{
|
|
20991
|
+
"title": "Variables",
|
|
20992
|
+
"kind": 32,
|
|
20993
|
+
"children": [
|
|
20994
|
+
35011
|
|
20995
|
+
]
|
|
20996
|
+
}
|
|
20997
|
+
],
|
|
20998
|
+
"sources": [
|
|
20999
|
+
{
|
|
21000
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
21001
|
+
"line": 59,
|
|
21002
|
+
"character": 3
|
|
21003
|
+
}
|
|
21004
|
+
]
|
|
21005
|
+
}
|
|
21006
|
+
},
|
|
21007
|
+
{
|
|
21008
|
+
"type": "reflection",
|
|
21009
|
+
"declaration": {
|
|
21010
|
+
"id": 35012,
|
|
21011
|
+
"name": "__type",
|
|
21012
|
+
"kind": 65536,
|
|
21013
|
+
"kindString": "Type literal",
|
|
21014
|
+
"flags": {
|
|
21015
|
+
"isExported": true
|
|
21016
|
+
},
|
|
21017
|
+
"children": [
|
|
21018
|
+
{
|
|
21019
|
+
"id": 35014,
|
|
21020
|
+
"name": "payload",
|
|
21021
|
+
"kind": 32,
|
|
21022
|
+
"kindString": "Variable",
|
|
21023
|
+
"flags": {
|
|
21024
|
+
"isExported": true
|
|
21025
|
+
},
|
|
21026
|
+
"sources": [
|
|
21027
|
+
{
|
|
21028
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
21029
|
+
"line": 63,
|
|
21030
|
+
"character": 13
|
|
21031
|
+
}
|
|
21032
|
+
],
|
|
21033
|
+
"type": {
|
|
21034
|
+
"type": "reflection",
|
|
21035
|
+
"declaration": {
|
|
21036
|
+
"id": 35015,
|
|
21037
|
+
"name": "__type",
|
|
21038
|
+
"kind": 65536,
|
|
21039
|
+
"kindString": "Type literal",
|
|
21040
|
+
"flags": {
|
|
21041
|
+
"isExported": true
|
|
21042
|
+
},
|
|
21043
|
+
"children": [
|
|
21044
|
+
{
|
|
21045
|
+
"id": 35016,
|
|
21046
|
+
"name": "items",
|
|
21047
|
+
"kind": 32,
|
|
21048
|
+
"kindString": "Variable",
|
|
21049
|
+
"flags": {
|
|
21050
|
+
"isExported": true
|
|
21051
|
+
},
|
|
21052
|
+
"sources": [
|
|
21053
|
+
{
|
|
21054
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
21055
|
+
"line": 64,
|
|
21056
|
+
"character": 13
|
|
21057
|
+
}
|
|
21058
|
+
],
|
|
21059
|
+
"type": {
|
|
21060
|
+
"type": "array",
|
|
21061
|
+
"elementType": {
|
|
21062
|
+
"type": "reference",
|
|
21063
|
+
"id": 34922,
|
|
21064
|
+
"name": "TreeViewItemInterface"
|
|
21065
|
+
}
|
|
21066
|
+
}
|
|
21067
|
+
}
|
|
21068
|
+
],
|
|
21069
|
+
"groups": [
|
|
21070
|
+
{
|
|
21071
|
+
"title": "Variables",
|
|
21072
|
+
"kind": 32,
|
|
21073
|
+
"children": [
|
|
21074
|
+
35016
|
|
21075
|
+
]
|
|
21076
|
+
}
|
|
21077
|
+
],
|
|
21078
|
+
"sources": [
|
|
21079
|
+
{
|
|
21080
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
21081
|
+
"line": 63,
|
|
21082
|
+
"character": 14
|
|
21083
|
+
}
|
|
21084
|
+
]
|
|
21085
|
+
}
|
|
21086
|
+
}
|
|
21087
|
+
},
|
|
21088
|
+
{
|
|
21089
|
+
"id": 35013,
|
|
21090
|
+
"name": "type",
|
|
21091
|
+
"kind": 32,
|
|
21092
|
+
"kindString": "Variable",
|
|
21093
|
+
"flags": {
|
|
21094
|
+
"isExported": true
|
|
21095
|
+
},
|
|
21096
|
+
"sources": [
|
|
21097
|
+
{
|
|
21098
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
21099
|
+
"line": 62,
|
|
21100
|
+
"character": 10
|
|
21101
|
+
}
|
|
21102
|
+
],
|
|
21103
|
+
"type": {
|
|
21104
|
+
"type": "stringLiteral",
|
|
21105
|
+
"value": "SET_ITEMS"
|
|
21106
|
+
}
|
|
21107
|
+
}
|
|
21108
|
+
],
|
|
21109
|
+
"groups": [
|
|
21110
|
+
{
|
|
21111
|
+
"title": "Variables",
|
|
21112
|
+
"kind": 32,
|
|
21113
|
+
"children": [
|
|
21114
|
+
35014,
|
|
21115
|
+
35013
|
|
21116
|
+
]
|
|
21117
|
+
}
|
|
21118
|
+
],
|
|
21119
|
+
"sources": [
|
|
21120
|
+
{
|
|
21121
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
21122
|
+
"line": 61,
|
|
21123
|
+
"character": 3
|
|
21124
|
+
}
|
|
21125
|
+
]
|
|
21126
|
+
}
|
|
21127
|
+
},
|
|
21128
|
+
{
|
|
21129
|
+
"type": "reflection",
|
|
21130
|
+
"declaration": {
|
|
21131
|
+
"id": 35017,
|
|
21132
|
+
"name": "__type",
|
|
21133
|
+
"kind": 65536,
|
|
21134
|
+
"kindString": "Type literal",
|
|
21135
|
+
"flags": {
|
|
21136
|
+
"isExported": true
|
|
21137
|
+
},
|
|
21138
|
+
"children": [
|
|
21139
|
+
{
|
|
21140
|
+
"id": 35019,
|
|
21141
|
+
"name": "payload",
|
|
21142
|
+
"kind": 32,
|
|
21143
|
+
"kindString": "Variable",
|
|
21144
|
+
"flags": {
|
|
21145
|
+
"isExported": true
|
|
21146
|
+
},
|
|
21147
|
+
"sources": [
|
|
21148
|
+
{
|
|
21149
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
21150
|
+
"line": 69,
|
|
21151
|
+
"character": 13
|
|
21152
|
+
}
|
|
21153
|
+
],
|
|
21154
|
+
"type": {
|
|
21155
|
+
"type": "reflection",
|
|
21156
|
+
"declaration": {
|
|
21157
|
+
"id": 35020,
|
|
21158
|
+
"name": "__type",
|
|
21159
|
+
"kind": 65536,
|
|
21160
|
+
"kindString": "Type literal",
|
|
21161
|
+
"flags": {
|
|
21162
|
+
"isExported": true
|
|
21163
|
+
},
|
|
21164
|
+
"children": [
|
|
21165
|
+
{
|
|
21166
|
+
"id": 35022,
|
|
21167
|
+
"name": "checkParents",
|
|
21168
|
+
"kind": 32,
|
|
21169
|
+
"kindString": "Variable",
|
|
21170
|
+
"flags": {
|
|
21171
|
+
"isExported": true
|
|
21172
|
+
},
|
|
21173
|
+
"sources": [
|
|
21174
|
+
{
|
|
21175
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
21176
|
+
"line": 71,
|
|
21177
|
+
"character": 20
|
|
21178
|
+
}
|
|
21179
|
+
],
|
|
21180
|
+
"type": {
|
|
21181
|
+
"type": "intrinsic",
|
|
21182
|
+
"name": "boolean"
|
|
21183
|
+
}
|
|
21184
|
+
},
|
|
21185
|
+
{
|
|
21186
|
+
"id": 35021,
|
|
21187
|
+
"name": "newItem",
|
|
21188
|
+
"kind": 32,
|
|
21189
|
+
"kindString": "Variable",
|
|
21190
|
+
"flags": {
|
|
21191
|
+
"isExported": true
|
|
21192
|
+
},
|
|
21193
|
+
"sources": [
|
|
21194
|
+
{
|
|
21195
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
21196
|
+
"line": 70,
|
|
21197
|
+
"character": 15
|
|
21198
|
+
}
|
|
21199
|
+
],
|
|
21200
|
+
"type": {
|
|
21201
|
+
"type": "reference",
|
|
21202
|
+
"id": 34922,
|
|
21203
|
+
"name": "TreeViewItemInterface"
|
|
21204
|
+
}
|
|
21205
|
+
},
|
|
21206
|
+
{
|
|
21207
|
+
"id": 35023,
|
|
21208
|
+
"name": "selectable",
|
|
21209
|
+
"kind": 32,
|
|
21210
|
+
"kindString": "Variable",
|
|
21211
|
+
"flags": {
|
|
21212
|
+
"isExported": true
|
|
21213
|
+
},
|
|
21214
|
+
"sources": [
|
|
21215
|
+
{
|
|
21216
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
21217
|
+
"line": 72,
|
|
21218
|
+
"character": 18
|
|
21219
|
+
}
|
|
21220
|
+
],
|
|
21221
|
+
"type": {
|
|
21222
|
+
"type": "intrinsic",
|
|
21223
|
+
"name": "string"
|
|
21224
|
+
}
|
|
21225
|
+
}
|
|
21226
|
+
],
|
|
21227
|
+
"groups": [
|
|
21228
|
+
{
|
|
21229
|
+
"title": "Variables",
|
|
21230
|
+
"kind": 32,
|
|
21231
|
+
"children": [
|
|
21232
|
+
35022,
|
|
21233
|
+
35021,
|
|
21234
|
+
35023
|
|
21235
|
+
]
|
|
21236
|
+
}
|
|
21237
|
+
],
|
|
21238
|
+
"sources": [
|
|
21239
|
+
{
|
|
21240
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
21241
|
+
"line": 69,
|
|
21242
|
+
"character": 14
|
|
21243
|
+
}
|
|
21244
|
+
]
|
|
21245
|
+
}
|
|
21246
|
+
}
|
|
21247
|
+
},
|
|
21248
|
+
{
|
|
21249
|
+
"id": 35018,
|
|
21250
|
+
"name": "type",
|
|
21251
|
+
"kind": 32,
|
|
21252
|
+
"kindString": "Variable",
|
|
21253
|
+
"flags": {
|
|
21254
|
+
"isExported": true
|
|
21255
|
+
},
|
|
21256
|
+
"sources": [
|
|
21257
|
+
{
|
|
21258
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
21259
|
+
"line": 68,
|
|
21260
|
+
"character": 10
|
|
21261
|
+
}
|
|
21262
|
+
],
|
|
21263
|
+
"type": {
|
|
21264
|
+
"type": "stringLiteral",
|
|
21265
|
+
"value": "ADD_ITEM"
|
|
21266
|
+
}
|
|
21267
|
+
}
|
|
21268
|
+
],
|
|
21269
|
+
"groups": [
|
|
21270
|
+
{
|
|
21271
|
+
"title": "Variables",
|
|
21272
|
+
"kind": 32,
|
|
21273
|
+
"children": [
|
|
21274
|
+
35019,
|
|
21275
|
+
35018
|
|
21276
|
+
]
|
|
21277
|
+
}
|
|
21278
|
+
],
|
|
21279
|
+
"sources": [
|
|
21280
|
+
{
|
|
21281
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
21282
|
+
"line": 67,
|
|
21283
|
+
"character": 3
|
|
21284
|
+
}
|
|
21285
|
+
]
|
|
21286
|
+
}
|
|
21287
|
+
},
|
|
21288
|
+
{
|
|
21289
|
+
"type": "reflection",
|
|
21290
|
+
"declaration": {
|
|
21291
|
+
"id": 35024,
|
|
21292
|
+
"name": "__type",
|
|
21293
|
+
"kind": 65536,
|
|
21294
|
+
"kindString": "Type literal",
|
|
21295
|
+
"flags": {
|
|
21296
|
+
"isExported": true
|
|
21297
|
+
},
|
|
21298
|
+
"children": [
|
|
21299
|
+
{
|
|
21300
|
+
"id": 35026,
|
|
21301
|
+
"name": "payload",
|
|
21302
|
+
"kind": 32,
|
|
21303
|
+
"kindString": "Variable",
|
|
21304
|
+
"flags": {
|
|
21305
|
+
"isExported": true
|
|
21306
|
+
},
|
|
21307
|
+
"sources": [
|
|
21308
|
+
{
|
|
21309
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
21310
|
+
"line": 77,
|
|
21311
|
+
"character": 13
|
|
21312
|
+
}
|
|
21313
|
+
],
|
|
21314
|
+
"type": {
|
|
21315
|
+
"type": "reflection",
|
|
21316
|
+
"declaration": {
|
|
21317
|
+
"id": 35027,
|
|
21318
|
+
"name": "__type",
|
|
21319
|
+
"kind": 65536,
|
|
21320
|
+
"kindString": "Type literal",
|
|
21321
|
+
"flags": {
|
|
21322
|
+
"isExported": true
|
|
21323
|
+
},
|
|
21324
|
+
"children": [
|
|
21325
|
+
{
|
|
21326
|
+
"id": 35028,
|
|
21327
|
+
"name": "updatedItems",
|
|
21328
|
+
"kind": 32,
|
|
21329
|
+
"kindString": "Variable",
|
|
21330
|
+
"flags": {
|
|
21331
|
+
"isExported": true
|
|
21332
|
+
},
|
|
21333
|
+
"sources": [
|
|
21334
|
+
{
|
|
21335
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
21336
|
+
"line": 78,
|
|
21337
|
+
"character": 20
|
|
21338
|
+
}
|
|
21339
|
+
],
|
|
21340
|
+
"type": {
|
|
21341
|
+
"type": "array",
|
|
21342
|
+
"elementType": {
|
|
21343
|
+
"type": "reference",
|
|
21344
|
+
"id": 34922,
|
|
21345
|
+
"name": "TreeViewItemInterface"
|
|
21346
|
+
}
|
|
21347
|
+
}
|
|
21348
|
+
}
|
|
21349
|
+
],
|
|
21350
|
+
"groups": [
|
|
21351
|
+
{
|
|
21352
|
+
"title": "Variables",
|
|
21353
|
+
"kind": 32,
|
|
21354
|
+
"children": [
|
|
21355
|
+
35028
|
|
21356
|
+
]
|
|
21357
|
+
}
|
|
21358
|
+
],
|
|
21359
|
+
"sources": [
|
|
21360
|
+
{
|
|
21361
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
21362
|
+
"line": 77,
|
|
21363
|
+
"character": 14
|
|
21364
|
+
}
|
|
21365
|
+
]
|
|
21366
|
+
}
|
|
21367
|
+
}
|
|
21368
|
+
},
|
|
21369
|
+
{
|
|
21370
|
+
"id": 35025,
|
|
21371
|
+
"name": "type",
|
|
21372
|
+
"kind": 32,
|
|
21373
|
+
"kindString": "Variable",
|
|
21374
|
+
"flags": {
|
|
21375
|
+
"isExported": true
|
|
21376
|
+
},
|
|
21377
|
+
"sources": [
|
|
21378
|
+
{
|
|
21379
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
21380
|
+
"line": 76,
|
|
21381
|
+
"character": 10
|
|
21382
|
+
}
|
|
21383
|
+
],
|
|
21384
|
+
"type": {
|
|
21385
|
+
"type": "stringLiteral",
|
|
21386
|
+
"value": "UPDATE_ITEMS_DISABLED_STATE"
|
|
21387
|
+
}
|
|
21388
|
+
}
|
|
21389
|
+
],
|
|
21390
|
+
"groups": [
|
|
21391
|
+
{
|
|
21392
|
+
"title": "Variables",
|
|
21393
|
+
"kind": 32,
|
|
21394
|
+
"children": [
|
|
21395
|
+
35026,
|
|
21396
|
+
35025
|
|
21397
|
+
]
|
|
21398
|
+
}
|
|
21399
|
+
],
|
|
21400
|
+
"sources": [
|
|
21401
|
+
{
|
|
21402
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
21403
|
+
"line": 75,
|
|
21404
|
+
"character": 3
|
|
21405
|
+
}
|
|
21406
|
+
]
|
|
21407
|
+
}
|
|
21408
|
+
},
|
|
21409
|
+
{
|
|
21410
|
+
"type": "reflection",
|
|
21411
|
+
"declaration": {
|
|
21412
|
+
"id": 35029,
|
|
21413
|
+
"name": "__type",
|
|
21414
|
+
"kind": 65536,
|
|
21415
|
+
"kindString": "Type literal",
|
|
21416
|
+
"flags": {
|
|
21417
|
+
"isExported": true
|
|
21418
|
+
},
|
|
21419
|
+
"children": [
|
|
21420
|
+
{
|
|
21421
|
+
"id": 35030,
|
|
21422
|
+
"name": "type",
|
|
21423
|
+
"kind": 32,
|
|
21424
|
+
"kindString": "Variable",
|
|
21425
|
+
"flags": {
|
|
21426
|
+
"isExported": true
|
|
21427
|
+
},
|
|
21428
|
+
"sources": [
|
|
21429
|
+
{
|
|
21430
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
21431
|
+
"line": 82,
|
|
21432
|
+
"character": 10
|
|
21433
|
+
}
|
|
21434
|
+
],
|
|
21435
|
+
"type": {
|
|
21436
|
+
"type": "stringLiteral",
|
|
21437
|
+
"value": "TRIGGER_ITEMS_UPDATE"
|
|
21438
|
+
}
|
|
21439
|
+
}
|
|
21440
|
+
],
|
|
21441
|
+
"groups": [
|
|
21442
|
+
{
|
|
21443
|
+
"title": "Variables",
|
|
21444
|
+
"kind": 32,
|
|
21445
|
+
"children": [
|
|
21446
|
+
35030
|
|
21447
|
+
]
|
|
21448
|
+
}
|
|
21449
|
+
],
|
|
21450
|
+
"sources": [
|
|
21451
|
+
{
|
|
21452
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
21453
|
+
"line": 82,
|
|
21454
|
+
"character": 3
|
|
21455
|
+
}
|
|
21456
|
+
]
|
|
21457
|
+
}
|
|
21458
|
+
},
|
|
21459
|
+
{
|
|
21460
|
+
"type": "reflection",
|
|
21461
|
+
"declaration": {
|
|
21462
|
+
"id": 35031,
|
|
21463
|
+
"name": "__type",
|
|
21464
|
+
"kind": 65536,
|
|
21465
|
+
"kindString": "Type literal",
|
|
21466
|
+
"flags": {
|
|
21467
|
+
"isExported": true
|
|
21468
|
+
},
|
|
21469
|
+
"children": [
|
|
21470
|
+
{
|
|
21471
|
+
"id": 35032,
|
|
21472
|
+
"name": "type",
|
|
21473
|
+
"kind": 32,
|
|
21474
|
+
"kindString": "Variable",
|
|
21475
|
+
"flags": {
|
|
21476
|
+
"isExported": true
|
|
21477
|
+
},
|
|
21478
|
+
"sources": [
|
|
21479
|
+
{
|
|
21480
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
21481
|
+
"line": 83,
|
|
21482
|
+
"character": 10
|
|
21483
|
+
}
|
|
21484
|
+
],
|
|
21485
|
+
"type": {
|
|
21486
|
+
"type": "stringLiteral",
|
|
21487
|
+
"value": "COMPLETE_ITEMS_UPDATE"
|
|
21488
|
+
}
|
|
21489
|
+
}
|
|
21490
|
+
],
|
|
21491
|
+
"groups": [
|
|
21492
|
+
{
|
|
21493
|
+
"title": "Variables",
|
|
21494
|
+
"kind": 32,
|
|
21495
|
+
"children": [
|
|
21496
|
+
35032
|
|
21497
|
+
]
|
|
21498
|
+
}
|
|
21499
|
+
],
|
|
21500
|
+
"sources": [
|
|
21501
|
+
{
|
|
21502
|
+
"fileName": "packages/react-magma-dom/src/components/TreeView/treeViewReducer.ts",
|
|
21503
|
+
"line": 83,
|
|
21504
|
+
"character": 3
|
|
21505
|
+
}
|
|
21506
|
+
]
|
|
21507
|
+
}
|
|
21508
|
+
}
|
|
21509
|
+
]
|
|
21510
|
+
},
|
|
21511
|
+
"id": "TreeViewAction",
|
|
21512
|
+
"tags": {},
|
|
21513
|
+
"properties": {}
|
|
21514
|
+
},
|
|
19720
21515
|
{
|
|
19721
21516
|
"name": "UseTreeItemProps",
|
|
19722
21517
|
"kind": 256,
|
|
@@ -20034,7 +21829,7 @@
|
|
|
20034
21829
|
"type": "query",
|
|
20035
21830
|
"queryType": {
|
|
20036
21831
|
"type": "reference",
|
|
20037
|
-
"id":
|
|
21832
|
+
"id": 35087,
|
|
20038
21833
|
"name": "useTreeView"
|
|
20039
21834
|
}
|
|
20040
21835
|
}
|