igniteui-dockmanager 1.16.0-beta.2 → 1.16.0-beta.3
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/custom-elements.json +282 -128
- package/dist/cjs/igc-button-component_20.cjs.entry.js +824 -117
- package/dist/cjs/igc-button-component_20.cjs.entry.js.map +1 -1
- package/dist/cjs/igniteui-dockmanager.cjs.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/locale-98a30720.js.map +1 -1
- package/dist/collection/collection-manifest.json +1 -1
- package/dist/collection/components/dockmanager/dockmanager-component.css +6 -1
- package/dist/collection/components/dockmanager/dockmanager-component.js +69 -16
- package/dist/collection/components/dockmanager/dockmanager-component.js.map +1 -1
- package/dist/collection/components/dockmanager/dockmanager.interfaces.js +4 -0
- package/dist/collection/components/dockmanager/dockmanager.interfaces.js.map +1 -1
- package/dist/collection/components/dockmanager/dockmanager.public-interfaces.js.map +1 -1
- package/dist/collection/components/dockmanager/dockmanager.service.js +146 -33
- package/dist/collection/components/dockmanager/dockmanager.service.js.map +1 -1
- package/dist/collection/components/dockmanager/dockmanager.service.spec.js +89 -0
- package/dist/collection/components/dockmanager/dockmanager.service.spec.js.map +1 -1
- package/dist/collection/components/dockmanager/panes/content-pane-component.js +21 -2
- package/dist/collection/components/dockmanager/panes/content-pane-component.js.map +1 -1
- package/dist/collection/components/dockmanager/panes/document-host-component.js +20 -1
- package/dist/collection/components/dockmanager/panes/document-host-component.js.map +1 -1
- package/dist/collection/components/dockmanager/panes/split-pane-component.js +39 -1
- package/dist/collection/components/dockmanager/panes/split-pane-component.js.map +1 -1
- package/dist/collection/components/dockmanager/panes/splitter-component.js +28 -7
- package/dist/collection/components/dockmanager/panes/splitter-component.js.map +1 -1
- package/dist/collection/components/sample-component/sample-component.css +39 -4
- package/dist/collection/components/sample-component/sample-component.js +578 -49
- package/dist/collection/components/sample-component/sample-component.js.map +1 -1
- package/dist/collection/components/tabs/tabs-component.js +20 -1
- package/dist/collection/components/tabs/tabs-component.js.map +1 -1
- package/dist/esm/igc-button-component_20.entry.js +818 -111
- package/dist/esm/igc-button-component_20.entry.js.map +1 -1
- package/dist/esm/igniteui-dockmanager.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/esm/locale-81ccabef.js.map +1 -1
- package/dist/igniteui-dockmanager/igniteui-dockmanager.esm.js +1 -1
- package/dist/igniteui-dockmanager/igniteui-dockmanager.esm.js.map +1 -1
- package/dist/igniteui-dockmanager/p-0a619d82.entry.js +2 -0
- package/dist/igniteui-dockmanager/p-0a619d82.entry.js.map +1 -0
- package/dist/igniteui-dockmanager/p-f09ed94c.js.map +1 -1
- package/dist/types/components/dockmanager/dockmanager-component.d.ts +4 -0
- package/dist/types/components/dockmanager/dockmanager.interfaces.d.ts +4 -0
- package/dist/types/components/dockmanager/dockmanager.public-interfaces.d.ts +5 -0
- package/dist/types/components/dockmanager/dockmanager.service.d.ts +8 -2
- package/dist/types/components/dockmanager/panes/content-pane-component.d.ts +1 -0
- package/dist/types/components/dockmanager/panes/document-host-component.d.ts +1 -0
- package/dist/types/components/dockmanager/panes/split-pane-component.d.ts +2 -0
- package/dist/types/components/dockmanager/panes/splitter-component.d.ts +1 -0
- package/dist/types/components/sample-component/sample-component.d.ts +10 -19
- package/dist/types/components/tabs/tabs-component.d.ts +1 -0
- package/dist/types/components.d.ts +12 -0
- package/loader/cdn.js +2 -2
- package/loader/index.cjs.js +2 -2
- package/package.json +1 -1
- package/dist/igniteui-dockmanager/p-b20b97f6.entry.js +0 -2
- package/dist/igniteui-dockmanager/p-b20b97f6.entry.js.map +0 -1
package/custom-elements.json
CHANGED
|
@@ -1402,6 +1402,23 @@
|
|
|
1402
1402
|
},
|
|
1403
1403
|
"privacy": "private"
|
|
1404
1404
|
},
|
|
1405
|
+
{
|
|
1406
|
+
"kind": "field",
|
|
1407
|
+
"name": "anyPaneIgnoringResizeConstraints",
|
|
1408
|
+
"type": {
|
|
1409
|
+
"text": "boolean"
|
|
1410
|
+
},
|
|
1411
|
+
"privacy": "private",
|
|
1412
|
+
"default": "false"
|
|
1413
|
+
},
|
|
1414
|
+
{
|
|
1415
|
+
"kind": "field",
|
|
1416
|
+
"name": "highlightedJoystick",
|
|
1417
|
+
"type": {
|
|
1418
|
+
"text": "any"
|
|
1419
|
+
},
|
|
1420
|
+
"privacy": "private"
|
|
1421
|
+
},
|
|
1405
1422
|
{
|
|
1406
1423
|
"kind": "field",
|
|
1407
1424
|
"name": "templatableComponents",
|
|
@@ -1754,6 +1771,16 @@
|
|
|
1754
1771
|
"kind": "method",
|
|
1755
1772
|
"name": "focusElement"
|
|
1756
1773
|
},
|
|
1774
|
+
{
|
|
1775
|
+
"kind": "method",
|
|
1776
|
+
"name": "updateLayout",
|
|
1777
|
+
"privacy": "private",
|
|
1778
|
+
"return": {
|
|
1779
|
+
"type": {
|
|
1780
|
+
"text": "void"
|
|
1781
|
+
}
|
|
1782
|
+
}
|
|
1783
|
+
},
|
|
1757
1784
|
{
|
|
1758
1785
|
"kind": "method",
|
|
1759
1786
|
"name": "handleTabsRendered",
|
|
@@ -2880,6 +2907,19 @@
|
|
|
2880
2907
|
}
|
|
2881
2908
|
]
|
|
2882
2909
|
},
|
|
2910
|
+
{
|
|
2911
|
+
"kind": "method",
|
|
2912
|
+
"name": "renderPlaceholder",
|
|
2913
|
+
"privacy": "private",
|
|
2914
|
+
"parameters": [
|
|
2915
|
+
{
|
|
2916
|
+
"name": "pane",
|
|
2917
|
+
"type": {
|
|
2918
|
+
"text": "IgcContentPane"
|
|
2919
|
+
}
|
|
2920
|
+
}
|
|
2921
|
+
]
|
|
2922
|
+
},
|
|
2883
2923
|
{
|
|
2884
2924
|
"kind": "method",
|
|
2885
2925
|
"name": "renderUnpinnedTabArea",
|
|
@@ -3201,6 +3241,14 @@
|
|
|
3201
3241
|
},
|
|
3202
3242
|
"default": "100"
|
|
3203
3243
|
},
|
|
3244
|
+
{
|
|
3245
|
+
"kind": "variable",
|
|
3246
|
+
"name": "IGC_DEFAULT_PANE_SIZE_IN_PIXELS",
|
|
3247
|
+
"type": {
|
|
3248
|
+
"text": "number"
|
|
3249
|
+
},
|
|
3250
|
+
"default": "100"
|
|
3251
|
+
},
|
|
3204
3252
|
{
|
|
3205
3253
|
"kind": "variable",
|
|
3206
3254
|
"name": "IGC_DEFAULT_UNPIN_PANE_SIZE",
|
|
@@ -3243,6 +3291,14 @@
|
|
|
3243
3291
|
"module": "src/components/dockmanager/dockmanager.interfaces.ts"
|
|
3244
3292
|
}
|
|
3245
3293
|
},
|
|
3294
|
+
{
|
|
3295
|
+
"kind": "js",
|
|
3296
|
+
"name": "IGC_DEFAULT_PANE_SIZE_IN_PIXELS",
|
|
3297
|
+
"declaration": {
|
|
3298
|
+
"name": "IGC_DEFAULT_PANE_SIZE_IN_PIXELS",
|
|
3299
|
+
"module": "src/components/dockmanager/dockmanager.interfaces.ts"
|
|
3300
|
+
}
|
|
3301
|
+
},
|
|
3246
3302
|
{
|
|
3247
3303
|
"kind": "js",
|
|
3248
3304
|
"name": "IGC_DEFAULT_UNPIN_PANE_SIZE",
|
|
@@ -3690,6 +3746,14 @@
|
|
|
3690
3746
|
},
|
|
3691
3747
|
"privacy": "private"
|
|
3692
3748
|
},
|
|
3749
|
+
{
|
|
3750
|
+
"kind": "field",
|
|
3751
|
+
"name": "draggedPaneParent",
|
|
3752
|
+
"type": {
|
|
3753
|
+
"text": "IgcSplitPane"
|
|
3754
|
+
},
|
|
3755
|
+
"privacy": "private"
|
|
3756
|
+
},
|
|
3693
3757
|
{
|
|
3694
3758
|
"kind": "field",
|
|
3695
3759
|
"name": "shiftLeftThreshold",
|
|
@@ -4140,6 +4204,24 @@
|
|
|
4140
4204
|
}
|
|
4141
4205
|
]
|
|
4142
4206
|
},
|
|
4207
|
+
{
|
|
4208
|
+
"kind": "method",
|
|
4209
|
+
"name": "shouldUseFixedSize",
|
|
4210
|
+
"privacy": "public",
|
|
4211
|
+
"return": {
|
|
4212
|
+
"type": {
|
|
4213
|
+
"text": "boolean"
|
|
4214
|
+
}
|
|
4215
|
+
},
|
|
4216
|
+
"parameters": [
|
|
4217
|
+
{
|
|
4218
|
+
"name": "pane",
|
|
4219
|
+
"type": {
|
|
4220
|
+
"text": "IgcDockManagerPane"
|
|
4221
|
+
}
|
|
4222
|
+
}
|
|
4223
|
+
]
|
|
4224
|
+
},
|
|
4143
4225
|
{
|
|
4144
4226
|
"kind": "method",
|
|
4145
4227
|
"name": "updateLayout",
|
|
@@ -4290,6 +4372,24 @@
|
|
|
4290
4372
|
}
|
|
4291
4373
|
]
|
|
4292
4374
|
},
|
|
4375
|
+
{
|
|
4376
|
+
"kind": "method",
|
|
4377
|
+
"name": "checkUseFixedSizeParent",
|
|
4378
|
+
"privacy": "private",
|
|
4379
|
+
"return": {
|
|
4380
|
+
"type": {
|
|
4381
|
+
"text": "IgcDockManagerPane"
|
|
4382
|
+
}
|
|
4383
|
+
},
|
|
4384
|
+
"parameters": [
|
|
4385
|
+
{
|
|
4386
|
+
"name": "pane",
|
|
4387
|
+
"type": {
|
|
4388
|
+
"text": "IgcDockManagerPane"
|
|
4389
|
+
}
|
|
4390
|
+
}
|
|
4391
|
+
]
|
|
4392
|
+
},
|
|
4293
4393
|
{
|
|
4294
4394
|
"kind": "method",
|
|
4295
4395
|
"name": "closePane",
|
|
@@ -4712,6 +4812,13 @@
|
|
|
4712
4812
|
"type": {
|
|
4713
4813
|
"text": "number"
|
|
4714
4814
|
}
|
|
4815
|
+
},
|
|
4816
|
+
{
|
|
4817
|
+
"name": "anyPaneIgnoringResizeConstraints",
|
|
4818
|
+
"default": "false",
|
|
4819
|
+
"type": {
|
|
4820
|
+
"text": "boolean"
|
|
4821
|
+
}
|
|
4715
4822
|
}
|
|
4716
4823
|
]
|
|
4717
4824
|
},
|
|
@@ -4849,6 +4956,13 @@
|
|
|
4849
4956
|
"type": {
|
|
4850
4957
|
"text": "IgcTabRectsInfo"
|
|
4851
4958
|
}
|
|
4959
|
+
},
|
|
4960
|
+
{
|
|
4961
|
+
"name": "anyPaneIgnoringResizeConstraints",
|
|
4962
|
+
"default": "false",
|
|
4963
|
+
"type": {
|
|
4964
|
+
"text": "boolean"
|
|
4965
|
+
}
|
|
4852
4966
|
}
|
|
4853
4967
|
]
|
|
4854
4968
|
},
|
|
@@ -5022,6 +5136,60 @@
|
|
|
5022
5136
|
}
|
|
5023
5137
|
}
|
|
5024
5138
|
]
|
|
5139
|
+
},
|
|
5140
|
+
{
|
|
5141
|
+
"kind": "method",
|
|
5142
|
+
"name": "isSplitPaneIgnoringResizeConstraints",
|
|
5143
|
+
"privacy": "public",
|
|
5144
|
+
"return": {
|
|
5145
|
+
"type": {
|
|
5146
|
+
"text": "boolean"
|
|
5147
|
+
}
|
|
5148
|
+
},
|
|
5149
|
+
"parameters": [
|
|
5150
|
+
{
|
|
5151
|
+
"name": "pane",
|
|
5152
|
+
"type": {
|
|
5153
|
+
"text": "IgcDockManagerPane"
|
|
5154
|
+
}
|
|
5155
|
+
}
|
|
5156
|
+
]
|
|
5157
|
+
},
|
|
5158
|
+
{
|
|
5159
|
+
"kind": "method",
|
|
5160
|
+
"name": "isParentUseFixedSize",
|
|
5161
|
+
"privacy": "public",
|
|
5162
|
+
"return": {
|
|
5163
|
+
"type": {
|
|
5164
|
+
"text": "boolean"
|
|
5165
|
+
}
|
|
5166
|
+
},
|
|
5167
|
+
"parameters": [
|
|
5168
|
+
{
|
|
5169
|
+
"name": "pane",
|
|
5170
|
+
"type": {
|
|
5171
|
+
"text": "IgcDockManagerPane"
|
|
5172
|
+
}
|
|
5173
|
+
}
|
|
5174
|
+
]
|
|
5175
|
+
},
|
|
5176
|
+
{
|
|
5177
|
+
"kind": "method",
|
|
5178
|
+
"name": "checkAndAddPlaceholderPane",
|
|
5179
|
+
"privacy": "public",
|
|
5180
|
+
"return": {
|
|
5181
|
+
"type": {
|
|
5182
|
+
"text": "void"
|
|
5183
|
+
}
|
|
5184
|
+
},
|
|
5185
|
+
"parameters": [
|
|
5186
|
+
{
|
|
5187
|
+
"name": "pane",
|
|
5188
|
+
"type": {
|
|
5189
|
+
"text": "IgcDockManagerPane"
|
|
5190
|
+
}
|
|
5191
|
+
}
|
|
5192
|
+
]
|
|
5025
5193
|
}
|
|
5026
5194
|
],
|
|
5027
5195
|
"events": []
|
|
@@ -5389,171 +5557,67 @@
|
|
|
5389
5557
|
"type": {
|
|
5390
5558
|
"text": "IgcDockManagerLayout"
|
|
5391
5559
|
},
|
|
5392
|
-
"default": "{ rootPane: {
|
|
5560
|
+
"default": "{ rootPane: { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.horizontal, useFixedSize: true, panes: [ // { // type: IgcDockManagerPaneType.splitPane, // useFixedSize: true, // orientation: IgcSplitPaneOrientation.vertical, // size: 300, // PIXELS // panes: [ // { // type: IgcDockManagerPaneType.contentPane, // contentId: 'content1', // header: 'Content Pane 1', // size: 500 // PIXELS // }, // { // type: IgcDockManagerPaneType.contentPane, // contentId: 'content2', // header: 'Content Pane 2', // size: 300 // PIXELS // } // ] // }, { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.vertical, size: 450, // PIXELS panes: [ { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.horizontal, useFixedSize: true, size: 300, // PIXELS panes: [ { type: IgcDockManagerPaneType.contentPane, contentId: 'content4', header: 'Content Pane 4', size: 400 // PIXELS } ] }, { type: IgcDockManagerPaneType.contentPane, contentId: 'content7', header: 'Content Pane 7', size: 450 // PIXELS } ] } ] }, floatingPanes: [ // { // type: IgcDockManagerPaneType.splitPane, // orientation: IgcSplitPaneOrientation.vertical, // useFixedSize: true, // // size: 950, // PIXELS // floatingHeight: 950, // floatingWidth: 650, // floatingLocation: { x: 200, y: 50 }, // panes: [ // { // type: IgcDockManagerPaneType.splitPane, // orientation: IgcSplitPaneOrientation.horizontal, // useFixedSize: true, // size: 400, // PIXELS // panes: [ // { // type: IgcDockManagerPaneType.contentPane, // contentId: 'content12', // header: 'Content Pane 12', // size: 400 // PIXELS // }, // { // type: IgcDockManagerPaneType.contentPane, // contentId: 'content13', // header: 'Content Pane 13', // size: 200 // PIXELS // } // ] // }, // { // type: IgcDockManagerPaneType.splitPane, // orientation: IgcSplitPaneOrientation.vertical, // useFixedSize: true, // size: 500, // PIXELS // panes: [ // { // type: IgcDockManagerPaneType.contentPane, // contentId: 'content11', // header: 'Content Pane 11', // size: 300 // PIXELS // }, // ] // } // ] // } ] }"
|
|
5393
5561
|
},
|
|
5394
5562
|
{
|
|
5395
5563
|
"kind": "field",
|
|
5396
|
-
"name": "
|
|
5564
|
+
"name": "commonProps",
|
|
5397
5565
|
"type": {
|
|
5398
|
-
"text": "
|
|
5399
|
-
}
|
|
5566
|
+
"text": "object"
|
|
5567
|
+
},
|
|
5568
|
+
"default": "{ allowClose: false, allowMaximize: false, allowPinning: false, }"
|
|
5400
5569
|
},
|
|
5401
5570
|
{
|
|
5402
5571
|
"kind": "field",
|
|
5403
|
-
"name": "
|
|
5404
|
-
"type": {
|
|
5405
|
-
"text": "HTMLSelectElement"
|
|
5406
|
-
},
|
|
5407
|
-
"privacy": "private"
|
|
5572
|
+
"name": "bodyWidth"
|
|
5408
5573
|
},
|
|
5409
5574
|
{
|
|
5410
5575
|
"kind": "field",
|
|
5411
|
-
"name": "
|
|
5576
|
+
"name": "layout4",
|
|
5412
5577
|
"type": {
|
|
5413
|
-
"text": "
|
|
5578
|
+
"text": "IgcDockManagerLayout"
|
|
5414
5579
|
},
|
|
5415
|
-
"
|
|
5580
|
+
"default": "{ rootPane: { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.horizontal, panes: [ { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.vertical, useFixedSize: true, size: this.bodyWidth, panes: [ { type: IgcDockManagerPaneType.contentPane, contentId: 'content1', header: 'Content 1 Header', size: 60, // PIXELS }, { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.horizontal, size: 240 + 10, useFixedSize: true, panes: [ { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.vertical, size: this.bodyWidth / 3, panes: [ { type: IgcDockManagerPaneType.contentPane, contentId: 'content2', header: 'Content 2 Header', size: 240, // PIXELS }, ], }, { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.vertical, size: (this.bodyWidth * 2) / 3, panes: [ { type: IgcDockManagerPaneType.contentPane, contentId: 'content3', header: 'Content 3 Header', size: 240, // PIXELS }, ], }, // { // type: IgcDockManagerPaneType.contentPane, // contentId: 'content_not_used_2', // header: 'NOT USED', // // size: 0, // ...this.commonProps, // }, ], }, { type: IgcDockManagerPaneType.contentPane, contentId: 'content4', header: 'Content 4 Header', size: 290, // PIXELS }, { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.horizontal, size: 240 + 10, panes: [ { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.vertical, size: this.bodyWidth / 3, panes: [ { type: IgcDockManagerPaneType.contentPane, contentId: 'content5', header: 'Content 5 Header', size: 240, // PIXELS }, ], }, { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.vertical, size: (this.bodyWidth * 2) / 3, panes: [ { type: IgcDockManagerPaneType.contentPane, contentId: 'content6', header: 'Content 6 Header', size: 240, // PIXELS }, ], }, // { // type: IgcDockManagerPaneType.contentPane, // contentId: 'content_not_used_3', // header: 'NOT USED', // ...this.commonProps, // }, ], }, { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.horizontal, size: 240 + 10, panes: [ { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.vertical, size: this.bodyWidth / 2, panes: [ { type: IgcDockManagerPaneType.contentPane, contentId: 'content7', header: 'Content 7 Header', size: 240, // PIXELS }, ], }, { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.vertical, size: this.bodyWidth / 2, panes: [ { type: IgcDockManagerPaneType.contentPane, contentId: 'content8', header: 'Content 8 Header', size: 240, // PIXELS }, ], }, // { // type: IgcDockManagerPaneType.contentPane, // contentId: 'content_not_used_4', // header: 'NOT USED', // ...this.commonProps, // }, ], }, { type: IgcDockManagerPaneType.contentPane, contentId: 'content9', header: 'Content 9 Header', size: 290, // PIXELS }, // { // type: IgcDockManagerPaneType.contentPane, // contentId: 'content_not_used_1', // header: 'NOT USED', // ...this.commonProps, // }, ], }, ], }, floatingPanes: [], }"
|
|
5416
5581
|
},
|
|
5417
5582
|
{
|
|
5418
5583
|
"kind": "field",
|
|
5419
|
-
"name": "
|
|
5584
|
+
"name": "layout5",
|
|
5420
5585
|
"type": {
|
|
5421
|
-
"text": "
|
|
5586
|
+
"text": "IgcDockManagerLayout"
|
|
5422
5587
|
},
|
|
5423
|
-
"
|
|
5588
|
+
"default": "{ rootPane: { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.horizontal, panes: [ { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.vertical, useFixedSize: true, size: this.bodyWidth, panes: [ { type: IgcDockManagerPaneType.contentPane, contentId: 'content1', header: 'Content 1 Header', size: 60, // PIXELS }, { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.horizontal, size: 240 + 10, useFixedSize: true, panes: [ { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.vertical, size: this.bodyWidth / 3, panes: [ { type: IgcDockManagerPaneType.contentPane, contentId: 'content2', header: 'Content 2 Header', size: 240, // PIXELS }, ], }, { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.vertical, size: (this.bodyWidth * 2) / 3, panes: [ { type: IgcDockManagerPaneType.contentPane, contentId: 'content3', header: 'Content 3 Header', size: 240, // PIXELS }, ], }, { type: IgcDockManagerPaneType.contentPane, contentId: 'content_not_used_2', header: 'NOT USED', // size: 0, ...this.commonProps, }, ], }, { type: IgcDockManagerPaneType.contentPane, contentId: 'content4', header: 'Content 4 Header', size: 290, // PIXELS }, { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.horizontal, size: 240 + 10, panes: [ { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.vertical, size: this.bodyWidth / 3, panes: [ { type: IgcDockManagerPaneType.contentPane, contentId: 'content5', header: 'Content 5 Header', size: 240, // PIXELS }, ], }, { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.vertical, size: (this.bodyWidth * 2) / 3, panes: [ { type: IgcDockManagerPaneType.contentPane, contentId: 'content6', header: 'Content 6 Header', size: 240, // PIXELS }, ], }, { type: IgcDockManagerPaneType.contentPane, contentId: 'content_not_used_3', header: 'NOT USED', ...this.commonProps, }, ], }, { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.horizontal, size: 240 + 10, panes: [ { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.vertical, size: this.bodyWidth / 2, panes: [ { type: IgcDockManagerPaneType.contentPane, contentId: 'content7', header: 'Content 7 Header', size: 240, // PIXELS }, ], }, { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.vertical, size: this.bodyWidth / 2, panes: [ { type: IgcDockManagerPaneType.contentPane, contentId: 'content8', header: 'Content 8 Header', size: 240, // PIXELS }, ], }, { type: IgcDockManagerPaneType.contentPane, contentId: 'content_not_used_4', header: 'NOT USED', ...this.commonProps, }, ], }, { type: IgcDockManagerPaneType.contentPane, contentId: 'content9', header: 'Content 9 Header', size: 290, // PIXELS }, { type: IgcDockManagerPaneType.contentPane, contentId: 'content_not_used_1', header: 'NOT USED', ...this.commonProps, }, ], }, ], }, floatingPanes: [], }"
|
|
5424
5589
|
},
|
|
5425
5590
|
{
|
|
5426
5591
|
"kind": "field",
|
|
5427
|
-
"name": "
|
|
5592
|
+
"name": "layout6",
|
|
5428
5593
|
"type": {
|
|
5429
|
-
"text": "
|
|
5594
|
+
"text": "IgcDockManagerLayout"
|
|
5430
5595
|
},
|
|
5431
|
-
"
|
|
5432
|
-
"default": "false"
|
|
5433
|
-
},
|
|
5434
|
-
{
|
|
5435
|
-
"kind": "method",
|
|
5436
|
-
"name": "saveLayout",
|
|
5437
|
-
"privacy": "private"
|
|
5438
|
-
},
|
|
5439
|
-
{
|
|
5440
|
-
"kind": "method",
|
|
5441
|
-
"name": "loadLayout",
|
|
5442
|
-
"privacy": "private"
|
|
5443
|
-
},
|
|
5444
|
-
{
|
|
5445
|
-
"kind": "method",
|
|
5446
|
-
"name": "setActivePane",
|
|
5447
|
-
"privacy": "private"
|
|
5596
|
+
"default": "{ rootPane: { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.vertical, // useFixedSize: true, panes: [ { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.vertical, useFixedSize: true, panes: [ { type: IgcDockManagerPaneType.contentPane, contentId: \"content1\", header: \"Content Pane 1\", size: 100 }, { type: IgcDockManagerPaneType.contentPane, contentId: \"content2\", header: \"Content Pane 2\", size: 100 }, ] }, { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.horizontal, useFixedSize: true, // size: 300, panes: [ { type: IgcDockManagerPaneType.contentPane, contentId: \"content3\", header: \"Content Pane 3\", size: 400 }, { type: IgcDockManagerPaneType.contentPane, contentId: \"content4\", header: \"Content Pane 4\", size: 400 } ] }, { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.horizontal, // useFixedSize: true, // size: 300, panes: [ { type: IgcDockManagerPaneType.contentPane, contentId: \"content5\", header: \"Content Pane 5\", size: 500 }, { type: IgcDockManagerPaneType.contentPane, contentId: \"content6\", header: \"Content Pane 6\", size: 800 } ] } ] }, floatingPanes: [], }"
|
|
5448
5597
|
},
|
|
5449
5598
|
{
|
|
5450
5599
|
"kind": "field",
|
|
5451
|
-
"name": "
|
|
5600
|
+
"name": "layout7",
|
|
5452
5601
|
"type": {
|
|
5453
|
-
"text": "
|
|
5602
|
+
"text": "IgcDockManagerLayout"
|
|
5454
5603
|
},
|
|
5455
|
-
"
|
|
5456
|
-
"default": "100"
|
|
5604
|
+
"default": "{ rootPane: { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.horizontal, // useFixedSize: true, panes: [ { type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.horizontal, useFixedSize: true, panes: [ { type: IgcDockManagerPaneType.contentPane, contentId: \"content1\", header: \"Content Pane 1\", size: 400 }, { type: IgcDockManagerPaneType.contentPane, contentId: \"content2\", header: \"Content Pane 2\", size: 600 }, ] }, { type: IgcDockManagerPaneType.tabGroupPane, panes: [ { type: IgcDockManagerPaneType.contentPane, contentId: \"content3\", header: \"Content Pane 3\" }, { type: IgcDockManagerPaneType.contentPane, contentId: \"content4\", header: \"Content Pane 4\" } ] }, ] }, floatingPanes: [{ type: IgcDockManagerPaneType.splitPane, orientation: IgcSplitPaneOrientation.vertical, panes: [{ type: IgcDockManagerPaneType.contentPane, contentId: \"content5\", header: \"Content Pane 5\" }] }] }"
|
|
5457
5605
|
},
|
|
5458
5606
|
{
|
|
5459
5607
|
"kind": "field",
|
|
5460
|
-
"name": "
|
|
5608
|
+
"name": "layout",
|
|
5461
5609
|
"type": {
|
|
5462
|
-
"text": "
|
|
5463
|
-
}
|
|
5464
|
-
"privacy": "private"
|
|
5465
|
-
},
|
|
5466
|
-
{
|
|
5467
|
-
"kind": "method",
|
|
5468
|
-
"name": "addPane",
|
|
5469
|
-
"privacy": "private"
|
|
5470
|
-
},
|
|
5471
|
-
{
|
|
5472
|
-
"kind": "method",
|
|
5473
|
-
"name": "addTab",
|
|
5474
|
-
"privacy": "private"
|
|
5475
|
-
},
|
|
5476
|
-
{
|
|
5477
|
-
"kind": "method",
|
|
5478
|
-
"name": "disableContentPane",
|
|
5479
|
-
"privacy": "private"
|
|
5480
|
-
},
|
|
5481
|
-
{
|
|
5482
|
-
"kind": "method",
|
|
5483
|
-
"name": "toggleProximityDock",
|
|
5484
|
-
"privacy": "private"
|
|
5485
|
-
},
|
|
5486
|
-
{
|
|
5487
|
-
"kind": "method",
|
|
5488
|
-
"name": "focusPane",
|
|
5489
|
-
"privacy": "private"
|
|
5610
|
+
"text": "IgcDockManagerLayout"
|
|
5611
|
+
}
|
|
5490
5612
|
},
|
|
5491
5613
|
{
|
|
5492
5614
|
"kind": "field",
|
|
5493
|
-
"name": "
|
|
5615
|
+
"name": "logEnabled",
|
|
5494
5616
|
"type": {
|
|
5495
|
-
"text": "
|
|
5617
|
+
"text": "boolean"
|
|
5496
5618
|
},
|
|
5497
5619
|
"privacy": "private",
|
|
5498
|
-
"default": "
|
|
5499
|
-
},
|
|
5500
|
-
{
|
|
5501
|
-
"kind": "method",
|
|
5502
|
-
"name": "findElement",
|
|
5503
|
-
"privacy": "private",
|
|
5504
|
-
"parameters": [
|
|
5505
|
-
{
|
|
5506
|
-
"name": "pane",
|
|
5507
|
-
"type": {
|
|
5508
|
-
"text": "IgcDockManagerPane"
|
|
5509
|
-
}
|
|
5510
|
-
},
|
|
5511
|
-
{
|
|
5512
|
-
"name": "type",
|
|
5513
|
-
"type": {
|
|
5514
|
-
"text": "IgcDockManagerPaneType"
|
|
5515
|
-
}
|
|
5516
|
-
}
|
|
5517
|
-
]
|
|
5518
|
-
},
|
|
5519
|
-
{
|
|
5520
|
-
"kind": "method",
|
|
5521
|
-
"name": "showPane",
|
|
5522
|
-
"privacy": "private"
|
|
5523
|
-
},
|
|
5524
|
-
{
|
|
5525
|
-
"kind": "method",
|
|
5526
|
-
"name": "showAllPanes",
|
|
5527
|
-
"privacy": "private"
|
|
5528
|
-
},
|
|
5529
|
-
{
|
|
5530
|
-
"kind": "method",
|
|
5531
|
-
"name": "toggleInBoundaries",
|
|
5532
|
-
"privacy": "private"
|
|
5533
|
-
},
|
|
5534
|
-
{
|
|
5535
|
-
"kind": "method",
|
|
5536
|
-
"name": "createElement",
|
|
5537
|
-
"privacy": "private",
|
|
5538
|
-
"return": {
|
|
5539
|
-
"type": {
|
|
5540
|
-
"text": "HTMLElement"
|
|
5541
|
-
}
|
|
5542
|
-
},
|
|
5543
|
-
"parameters": [
|
|
5544
|
-
{
|
|
5545
|
-
"name": "content",
|
|
5546
|
-
"type": {
|
|
5547
|
-
"text": "string"
|
|
5548
|
-
}
|
|
5549
|
-
},
|
|
5550
|
-
{
|
|
5551
|
-
"name": "typeOfElement",
|
|
5552
|
-
"type": {
|
|
5553
|
-
"text": "string"
|
|
5554
|
-
}
|
|
5555
|
-
}
|
|
5556
|
-
]
|
|
5620
|
+
"default": "false"
|
|
5557
5621
|
},
|
|
5558
5622
|
{
|
|
5559
5623
|
"kind": "method",
|
|
@@ -6280,6 +6344,14 @@
|
|
|
6280
6344
|
},
|
|
6281
6345
|
"default": "[]"
|
|
6282
6346
|
},
|
|
6347
|
+
{
|
|
6348
|
+
"kind": "field",
|
|
6349
|
+
"name": "parentUseFixedSize",
|
|
6350
|
+
"type": {
|
|
6351
|
+
"text": "boolean"
|
|
6352
|
+
},
|
|
6353
|
+
"default": "false"
|
|
6354
|
+
},
|
|
6283
6355
|
{
|
|
6284
6356
|
"kind": "method",
|
|
6285
6357
|
"name": "selectedIndexPropertyChanged",
|
|
@@ -6508,6 +6580,13 @@
|
|
|
6508
6580
|
"type": {
|
|
6509
6581
|
"text": "string[]"
|
|
6510
6582
|
}
|
|
6583
|
+
},
|
|
6584
|
+
{
|
|
6585
|
+
"name": "parent-use-fixed-size",
|
|
6586
|
+
"fieldName": "parentUseFixedSize",
|
|
6587
|
+
"type": {
|
|
6588
|
+
"text": "boolean"
|
|
6589
|
+
}
|
|
6511
6590
|
}
|
|
6512
6591
|
],
|
|
6513
6592
|
"tagName": "igc-tabs-component",
|
|
@@ -7398,6 +7477,14 @@
|
|
|
7398
7477
|
"text": "string"
|
|
7399
7478
|
}
|
|
7400
7479
|
},
|
|
7480
|
+
{
|
|
7481
|
+
"kind": "field",
|
|
7482
|
+
"name": "parentUseFixedSize",
|
|
7483
|
+
"type": {
|
|
7484
|
+
"text": "boolean"
|
|
7485
|
+
},
|
|
7486
|
+
"default": "false"
|
|
7487
|
+
},
|
|
7401
7488
|
{
|
|
7402
7489
|
"kind": "method",
|
|
7403
7490
|
"name": "render"
|
|
@@ -7446,6 +7533,13 @@
|
|
|
7446
7533
|
"type": {
|
|
7447
7534
|
"text": "string"
|
|
7448
7535
|
}
|
|
7536
|
+
},
|
|
7537
|
+
{
|
|
7538
|
+
"name": "parent-use-fixed-size",
|
|
7539
|
+
"fieldName": "parentUseFixedSize",
|
|
7540
|
+
"type": {
|
|
7541
|
+
"text": "boolean"
|
|
7542
|
+
}
|
|
7449
7543
|
}
|
|
7450
7544
|
],
|
|
7451
7545
|
"tagName": "igc-content-pane-component",
|
|
@@ -7495,6 +7589,14 @@
|
|
|
7495
7589
|
"text": "number"
|
|
7496
7590
|
}
|
|
7497
7591
|
},
|
|
7592
|
+
{
|
|
7593
|
+
"kind": "field",
|
|
7594
|
+
"name": "parentUseFixedSize",
|
|
7595
|
+
"type": {
|
|
7596
|
+
"text": "boolean"
|
|
7597
|
+
},
|
|
7598
|
+
"default": "false"
|
|
7599
|
+
},
|
|
7498
7600
|
{
|
|
7499
7601
|
"kind": "method",
|
|
7500
7602
|
"name": "render"
|
|
@@ -7507,6 +7609,13 @@
|
|
|
7507
7609
|
"type": {
|
|
7508
7610
|
"text": "number"
|
|
7509
7611
|
}
|
|
7612
|
+
},
|
|
7613
|
+
{
|
|
7614
|
+
"name": "parent-use-fixed-size",
|
|
7615
|
+
"fieldName": "parentUseFixedSize",
|
|
7616
|
+
"type": {
|
|
7617
|
+
"text": "boolean"
|
|
7618
|
+
}
|
|
7510
7619
|
}
|
|
7511
7620
|
],
|
|
7512
7621
|
"tagName": "igc-document-host-component",
|
|
@@ -8220,6 +8329,22 @@
|
|
|
8220
8329
|
"text": "number"
|
|
8221
8330
|
}
|
|
8222
8331
|
},
|
|
8332
|
+
{
|
|
8333
|
+
"kind": "field",
|
|
8334
|
+
"name": "useFixedSize",
|
|
8335
|
+
"type": {
|
|
8336
|
+
"text": "boolean"
|
|
8337
|
+
},
|
|
8338
|
+
"default": "false"
|
|
8339
|
+
},
|
|
8340
|
+
{
|
|
8341
|
+
"kind": "field",
|
|
8342
|
+
"name": "parentUseFixedSize",
|
|
8343
|
+
"type": {
|
|
8344
|
+
"text": "boolean"
|
|
8345
|
+
},
|
|
8346
|
+
"default": "false"
|
|
8347
|
+
},
|
|
8223
8348
|
{
|
|
8224
8349
|
"kind": "method",
|
|
8225
8350
|
"name": "render"
|
|
@@ -8239,6 +8364,20 @@
|
|
|
8239
8364
|
"type": {
|
|
8240
8365
|
"text": "number"
|
|
8241
8366
|
}
|
|
8367
|
+
},
|
|
8368
|
+
{
|
|
8369
|
+
"name": "use-fixed-size",
|
|
8370
|
+
"fieldName": "useFixedSize",
|
|
8371
|
+
"type": {
|
|
8372
|
+
"text": "boolean"
|
|
8373
|
+
}
|
|
8374
|
+
},
|
|
8375
|
+
{
|
|
8376
|
+
"name": "parent-use-fixed-size",
|
|
8377
|
+
"fieldName": "parentUseFixedSize",
|
|
8378
|
+
"type": {
|
|
8379
|
+
"text": "boolean"
|
|
8380
|
+
}
|
|
8242
8381
|
}
|
|
8243
8382
|
],
|
|
8244
8383
|
"tagName": "igc-split-pane-component",
|
|
@@ -8355,6 +8494,14 @@
|
|
|
8355
8494
|
"text": "IgcUnpinnedLocation"
|
|
8356
8495
|
}
|
|
8357
8496
|
},
|
|
8497
|
+
{
|
|
8498
|
+
"kind": "field",
|
|
8499
|
+
"name": "parentUseFixedSize",
|
|
8500
|
+
"type": {
|
|
8501
|
+
"text": "boolean"
|
|
8502
|
+
},
|
|
8503
|
+
"default": "false"
|
|
8504
|
+
},
|
|
8358
8505
|
{
|
|
8359
8506
|
"kind": "method",
|
|
8360
8507
|
"name": "calculateOffset",
|
|
@@ -8558,6 +8705,13 @@
|
|
|
8558
8705
|
"type": {
|
|
8559
8706
|
"text": "IgcUnpinnedLocation"
|
|
8560
8707
|
}
|
|
8708
|
+
},
|
|
8709
|
+
{
|
|
8710
|
+
"name": "parent-use-fixed-size",
|
|
8711
|
+
"fieldName": "parentUseFixedSize",
|
|
8712
|
+
"type": {
|
|
8713
|
+
"text": "boolean"
|
|
8714
|
+
}
|
|
8561
8715
|
}
|
|
8562
8716
|
],
|
|
8563
8717
|
"tagName": "igc-splitter-component",
|