igniteui-dockmanager 2.0.2-alpha.3 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -0
- package/components/dockmanager/dockmanager-component.d.ts +25 -7
- package/components/dockmanager/dockmanager-component.js +53 -12
- package/components/dockmanager/dockmanager.interfaces.d.ts +43 -4
- package/components/dockmanager/dockmanager.interfaces.js +2 -0
- package/components/dockmanager/dockmanager.service.d.ts +21 -1
- package/components/dockmanager/dockmanager.service.js +82 -16
- package/components/dockmanager/panes/content-pane-component.d.ts +18 -0
- package/components/dockmanager/panes/content-pane-component.js +23 -1
- package/components/dockmanager/panes/split-pane-component.d.ts +18 -0
- package/components/dockmanager/panes/split-pane-component.js +23 -3
- package/components/dockmanager/panes/splitter-component.d.ts +2 -0
- package/components/dockmanager/panes/splitter-component.js +76 -31
- package/components/tabs/tabs-component.d.ts +12 -0
- package/components/tabs/tabs-component.js +18 -0
- package/custom-elements.json +390 -228
- package/igniteui-dockmanager.html-data.json +1 -1
- package/package.json +1 -1
- package/utils/test-utils.d.ts +2 -2
- package/utils/test-utils.js +5 -3
- package/utils/utils.d.ts +20 -1
- package/utils/utils.js +103 -0
- package/web-types.json +1 -1
package/custom-elements.json
CHANGED
|
@@ -989,17 +989,9 @@
|
|
|
989
989
|
"name": "layoutChange",
|
|
990
990
|
"return": {
|
|
991
991
|
"type": {
|
|
992
|
-
"text": "CustomEvent"
|
|
992
|
+
"text": "CustomEvent<IgcLayoutChangeEventArgs>"
|
|
993
993
|
}
|
|
994
|
-
}
|
|
995
|
-
"parameters": [
|
|
996
|
-
{
|
|
997
|
-
"name": "detail",
|
|
998
|
-
"type": {
|
|
999
|
-
"text": "IgcDockManagerLayout"
|
|
1000
|
-
}
|
|
1001
|
-
}
|
|
1002
|
-
]
|
|
994
|
+
}
|
|
1003
995
|
}
|
|
1004
996
|
],
|
|
1005
997
|
"superclass": {
|
|
@@ -1352,6 +1344,72 @@
|
|
|
1352
1344
|
}
|
|
1353
1345
|
}
|
|
1354
1346
|
]
|
|
1347
|
+
},
|
|
1348
|
+
{
|
|
1349
|
+
"kind": "function",
|
|
1350
|
+
"name": "calculatePaneMinSize",
|
|
1351
|
+
"return": {
|
|
1352
|
+
"type": {
|
|
1353
|
+
"text": "number"
|
|
1354
|
+
}
|
|
1355
|
+
},
|
|
1356
|
+
"parameters": [
|
|
1357
|
+
{
|
|
1358
|
+
"name": "pane",
|
|
1359
|
+
"type": {
|
|
1360
|
+
"text": "IgcDockManagerPane | null | undefined"
|
|
1361
|
+
},
|
|
1362
|
+
"description": "The pane to calculate min size for"
|
|
1363
|
+
},
|
|
1364
|
+
{
|
|
1365
|
+
"name": "orientation",
|
|
1366
|
+
"type": {
|
|
1367
|
+
"text": "'horizontal' | 'vertical'"
|
|
1368
|
+
},
|
|
1369
|
+
"description": "The orientation to calculate ('horizontal' for width, 'vertical' for height)"
|
|
1370
|
+
},
|
|
1371
|
+
{
|
|
1372
|
+
"name": "splitterSize",
|
|
1373
|
+
"default": "IGC_DEFAULT_SPLITTER_SIZE",
|
|
1374
|
+
"type": {
|
|
1375
|
+
"text": "number"
|
|
1376
|
+
},
|
|
1377
|
+
"description": "The actual size of splitters in pixels (defaults to IGC_DEFAULT_SPLITTER_SIZE)"
|
|
1378
|
+
}
|
|
1379
|
+
]
|
|
1380
|
+
},
|
|
1381
|
+
{
|
|
1382
|
+
"kind": "function",
|
|
1383
|
+
"name": "calculateSplitPaneMinSize",
|
|
1384
|
+
"return": {
|
|
1385
|
+
"type": {
|
|
1386
|
+
"text": "number"
|
|
1387
|
+
}
|
|
1388
|
+
},
|
|
1389
|
+
"parameters": [
|
|
1390
|
+
{
|
|
1391
|
+
"name": "splitPane",
|
|
1392
|
+
"type": {
|
|
1393
|
+
"text": "IgcSplitPane"
|
|
1394
|
+
},
|
|
1395
|
+
"description": "The split pane to calculate min size for"
|
|
1396
|
+
},
|
|
1397
|
+
{
|
|
1398
|
+
"name": "orientation",
|
|
1399
|
+
"type": {
|
|
1400
|
+
"text": "'horizontal' | 'vertical'"
|
|
1401
|
+
},
|
|
1402
|
+
"description": "The orientation to calculate ('horizontal' for width, 'vertical' for height)"
|
|
1403
|
+
},
|
|
1404
|
+
{
|
|
1405
|
+
"name": "splitterSize",
|
|
1406
|
+
"default": "IGC_DEFAULT_SPLITTER_SIZE",
|
|
1407
|
+
"type": {
|
|
1408
|
+
"text": "number"
|
|
1409
|
+
},
|
|
1410
|
+
"description": "The actual size of splitters in pixels (defaults to IGC_DEFAULT_SPLITTER_SIZE)"
|
|
1411
|
+
}
|
|
1412
|
+
]
|
|
1355
1413
|
}
|
|
1356
1414
|
],
|
|
1357
1415
|
"exports": [
|
|
@@ -1442,6 +1500,22 @@
|
|
|
1442
1500
|
"name": "closestElement",
|
|
1443
1501
|
"module": "src/utils/utils.ts"
|
|
1444
1502
|
}
|
|
1503
|
+
},
|
|
1504
|
+
{
|
|
1505
|
+
"kind": "js",
|
|
1506
|
+
"name": "calculatePaneMinSize",
|
|
1507
|
+
"declaration": {
|
|
1508
|
+
"name": "calculatePaneMinSize",
|
|
1509
|
+
"module": "src/utils/utils.ts"
|
|
1510
|
+
}
|
|
1511
|
+
},
|
|
1512
|
+
{
|
|
1513
|
+
"kind": "js",
|
|
1514
|
+
"name": "calculateSplitPaneMinSize",
|
|
1515
|
+
"declaration": {
|
|
1516
|
+
"name": "calculateSplitPaneMinSize",
|
|
1517
|
+
"module": "src/utils/utils.ts"
|
|
1518
|
+
}
|
|
1445
1519
|
}
|
|
1446
1520
|
]
|
|
1447
1521
|
},
|
|
@@ -3108,13 +3182,6 @@
|
|
|
3108
3182
|
"privacy": "private",
|
|
3109
3183
|
"readonly": true
|
|
3110
3184
|
},
|
|
3111
|
-
{
|
|
3112
|
-
"kind": "field",
|
|
3113
|
-
"name": "documentOnlyDrag",
|
|
3114
|
-
"type": {
|
|
3115
|
-
"text": "boolean"
|
|
3116
|
-
}
|
|
3117
|
-
},
|
|
3118
3185
|
{
|
|
3119
3186
|
"kind": "field",
|
|
3120
3187
|
"name": "draggedPaneElement",
|
|
@@ -3432,20 +3499,11 @@
|
|
|
3432
3499
|
"name": "containedInBoundariesChanged",
|
|
3433
3500
|
"privacy": "protected"
|
|
3434
3501
|
},
|
|
3435
|
-
{
|
|
3436
|
-
"kind": "method",
|
|
3437
|
-
"name": "dropPositionChanged"
|
|
3438
|
-
},
|
|
3439
3502
|
{
|
|
3440
3503
|
"kind": "method",
|
|
3441
3504
|
"name": "onResourceChangeHandler",
|
|
3442
3505
|
"privacy": "private"
|
|
3443
3506
|
},
|
|
3444
|
-
{
|
|
3445
|
-
"kind": "method",
|
|
3446
|
-
"name": "focusElement",
|
|
3447
|
-
"privacy": "public"
|
|
3448
|
-
},
|
|
3449
3507
|
{
|
|
3450
3508
|
"kind": "method",
|
|
3451
3509
|
"name": "dropPane",
|
|
@@ -3482,11 +3540,6 @@
|
|
|
3482
3540
|
}
|
|
3483
3541
|
]
|
|
3484
3542
|
},
|
|
3485
|
-
{
|
|
3486
|
-
"kind": "method",
|
|
3487
|
-
"name": "getDockedPanesContainerRect",
|
|
3488
|
-
"privacy": "public"
|
|
3489
|
-
},
|
|
3490
3543
|
{
|
|
3491
3544
|
"kind": "method",
|
|
3492
3545
|
"name": "updateLayout",
|
|
@@ -3863,6 +3916,37 @@
|
|
|
3863
3916
|
"type": {
|
|
3864
3917
|
"text": "'previous' | 'next'"
|
|
3865
3918
|
}
|
|
3919
|
+
},
|
|
3920
|
+
{
|
|
3921
|
+
"name": "unpinnedLocation",
|
|
3922
|
+
"optional": true,
|
|
3923
|
+
"type": {
|
|
3924
|
+
"text": "UnpinnedLocation"
|
|
3925
|
+
}
|
|
3926
|
+
}
|
|
3927
|
+
]
|
|
3928
|
+
},
|
|
3929
|
+
{
|
|
3930
|
+
"kind": "method",
|
|
3931
|
+
"name": "_getMinSizeFromPane",
|
|
3932
|
+
"privacy": "private",
|
|
3933
|
+
"return": {
|
|
3934
|
+
"type": {
|
|
3935
|
+
"text": "number"
|
|
3936
|
+
}
|
|
3937
|
+
},
|
|
3938
|
+
"parameters": [
|
|
3939
|
+
{
|
|
3940
|
+
"name": "pane",
|
|
3941
|
+
"type": {
|
|
3942
|
+
"text": "HTMLElement"
|
|
3943
|
+
}
|
|
3944
|
+
},
|
|
3945
|
+
{
|
|
3946
|
+
"name": "property",
|
|
3947
|
+
"type": {
|
|
3948
|
+
"text": "'minResizeWidth' | 'minResizeHeight'"
|
|
3949
|
+
}
|
|
3866
3950
|
}
|
|
3867
3951
|
]
|
|
3868
3952
|
},
|
|
@@ -4160,19 +4244,6 @@
|
|
|
4160
4244
|
}
|
|
4161
4245
|
]
|
|
4162
4246
|
},
|
|
4163
|
-
{
|
|
4164
|
-
"kind": "method",
|
|
4165
|
-
"name": "scrollPaneIntoView",
|
|
4166
|
-
"privacy": "public",
|
|
4167
|
-
"parameters": [
|
|
4168
|
-
{
|
|
4169
|
-
"name": "pane",
|
|
4170
|
-
"type": {
|
|
4171
|
-
"text": "IgcDockManagerPane"
|
|
4172
|
-
}
|
|
4173
|
-
}
|
|
4174
|
-
]
|
|
4175
|
-
},
|
|
4176
4247
|
{
|
|
4177
4248
|
"kind": "method",
|
|
4178
4249
|
"name": "handlePaneDragStart",
|
|
@@ -4702,60 +4773,6 @@
|
|
|
4702
4773
|
}
|
|
4703
4774
|
]
|
|
4704
4775
|
},
|
|
4705
|
-
{
|
|
4706
|
-
"kind": "method",
|
|
4707
|
-
"name": "paneClose",
|
|
4708
|
-
"privacy": "public",
|
|
4709
|
-
"return": {
|
|
4710
|
-
"type": {
|
|
4711
|
-
"text": "CustomEvent<IgcPaneCloseEventArgs>"
|
|
4712
|
-
}
|
|
4713
|
-
},
|
|
4714
|
-
"parameters": [
|
|
4715
|
-
{
|
|
4716
|
-
"name": "args",
|
|
4717
|
-
"type": {
|
|
4718
|
-
"text": "IgcPaneCloseEventArgs"
|
|
4719
|
-
}
|
|
4720
|
-
}
|
|
4721
|
-
]
|
|
4722
|
-
},
|
|
4723
|
-
{
|
|
4724
|
-
"kind": "method",
|
|
4725
|
-
"name": "paneScroll",
|
|
4726
|
-
"privacy": "public",
|
|
4727
|
-
"return": {
|
|
4728
|
-
"type": {
|
|
4729
|
-
"text": "CustomEvent<IgcPaneScrollEventArgs>"
|
|
4730
|
-
}
|
|
4731
|
-
},
|
|
4732
|
-
"parameters": [
|
|
4733
|
-
{
|
|
4734
|
-
"name": "args",
|
|
4735
|
-
"type": {
|
|
4736
|
-
"text": "IgcPaneScrollEventArgs"
|
|
4737
|
-
}
|
|
4738
|
-
}
|
|
4739
|
-
]
|
|
4740
|
-
},
|
|
4741
|
-
{
|
|
4742
|
-
"kind": "method",
|
|
4743
|
-
"name": "panePinnedToggle",
|
|
4744
|
-
"privacy": "public",
|
|
4745
|
-
"return": {
|
|
4746
|
-
"type": {
|
|
4747
|
-
"text": "CustomEvent<IgcPanePinnedEventArgs>"
|
|
4748
|
-
}
|
|
4749
|
-
},
|
|
4750
|
-
"parameters": [
|
|
4751
|
-
{
|
|
4752
|
-
"name": "args",
|
|
4753
|
-
"type": {
|
|
4754
|
-
"text": "IgcPanePinnedEventArgs"
|
|
4755
|
-
}
|
|
4756
|
-
}
|
|
4757
|
-
]
|
|
4758
|
-
},
|
|
4759
4776
|
{
|
|
4760
4777
|
"kind": "method",
|
|
4761
4778
|
"name": "paneFlyoutToggle",
|
|
@@ -4775,124 +4792,6 @@
|
|
|
4775
4792
|
],
|
|
4776
4793
|
"description": "Emitted when an unpinned pane's flyout state changes (opens or closes).\n\nThis event fires when:\n- An unpinned pane is clicked and its flyout opens to display content\n- An unpinned pane's flyout closes (user clicks elsewhere, switches to another unpinned pane, etc.)\n- Switching between unpinned panes (fires twice: close event for old pane, open event for new pane)\n\nThis event does NOT fire when:\n- A pane is pinned or unpinned using the pin button (use panePinnedToggle for that)\n- A pane is initially unpinned (only subsequent flyout open/close actions)\n\nUse this event to show/hide auxiliary UI, update summary views, or respond to unpinned pane visibility changes."
|
|
4777
4794
|
},
|
|
4778
|
-
{
|
|
4779
|
-
"kind": "method",
|
|
4780
|
-
"name": "paneDragStart",
|
|
4781
|
-
"privacy": "public",
|
|
4782
|
-
"return": {
|
|
4783
|
-
"type": {
|
|
4784
|
-
"text": "CustomEvent<IgcPaneDragStartEventArgs>"
|
|
4785
|
-
}
|
|
4786
|
-
},
|
|
4787
|
-
"parameters": [
|
|
4788
|
-
{
|
|
4789
|
-
"name": "args",
|
|
4790
|
-
"type": {
|
|
4791
|
-
"text": "IgcPaneDragStartEventArgs"
|
|
4792
|
-
}
|
|
4793
|
-
}
|
|
4794
|
-
]
|
|
4795
|
-
},
|
|
4796
|
-
{
|
|
4797
|
-
"kind": "method",
|
|
4798
|
-
"name": "paneDragOver",
|
|
4799
|
-
"privacy": "public",
|
|
4800
|
-
"return": {
|
|
4801
|
-
"type": {
|
|
4802
|
-
"text": "CustomEvent<IgcPaneDragOverEventArgs>"
|
|
4803
|
-
}
|
|
4804
|
-
},
|
|
4805
|
-
"parameters": [
|
|
4806
|
-
{
|
|
4807
|
-
"name": "args",
|
|
4808
|
-
"type": {
|
|
4809
|
-
"text": "IgcPaneDragOverEventArgs"
|
|
4810
|
-
}
|
|
4811
|
-
}
|
|
4812
|
-
]
|
|
4813
|
-
},
|
|
4814
|
-
{
|
|
4815
|
-
"kind": "method",
|
|
4816
|
-
"name": "paneDragEnd",
|
|
4817
|
-
"privacy": "public",
|
|
4818
|
-
"return": {
|
|
4819
|
-
"type": {
|
|
4820
|
-
"text": "CustomEvent<IgcPaneDragEndEventArgs>"
|
|
4821
|
-
}
|
|
4822
|
-
},
|
|
4823
|
-
"parameters": [
|
|
4824
|
-
{
|
|
4825
|
-
"name": "args",
|
|
4826
|
-
"type": {
|
|
4827
|
-
"text": "IgcPaneDragEndEventArgs"
|
|
4828
|
-
}
|
|
4829
|
-
}
|
|
4830
|
-
]
|
|
4831
|
-
},
|
|
4832
|
-
{
|
|
4833
|
-
"kind": "method",
|
|
4834
|
-
"name": "floatingPaneResizeStart",
|
|
4835
|
-
"privacy": "public",
|
|
4836
|
-
"return": {
|
|
4837
|
-
"type": {
|
|
4838
|
-
"text": "CustomEvent<IgcFloatingPaneResizeEventArgs>"
|
|
4839
|
-
}
|
|
4840
|
-
},
|
|
4841
|
-
"parameters": [
|
|
4842
|
-
{
|
|
4843
|
-
"name": "args",
|
|
4844
|
-
"type": {
|
|
4845
|
-
"text": "IgcFloatingPaneResizeEventArgs"
|
|
4846
|
-
}
|
|
4847
|
-
}
|
|
4848
|
-
]
|
|
4849
|
-
},
|
|
4850
|
-
{
|
|
4851
|
-
"kind": "method",
|
|
4852
|
-
"name": "floatingPaneResizeMove",
|
|
4853
|
-
"privacy": "public",
|
|
4854
|
-
"return": {
|
|
4855
|
-
"type": {
|
|
4856
|
-
"text": "CustomEvent<IgcFloatingPaneResizeMoveEventArgs>"
|
|
4857
|
-
}
|
|
4858
|
-
},
|
|
4859
|
-
"parameters": [
|
|
4860
|
-
{
|
|
4861
|
-
"name": "eventArgs",
|
|
4862
|
-
"type": {
|
|
4863
|
-
"text": "IgcFloatingPaneResizeMoveEventArgs"
|
|
4864
|
-
}
|
|
4865
|
-
}
|
|
4866
|
-
]
|
|
4867
|
-
},
|
|
4868
|
-
{
|
|
4869
|
-
"kind": "method",
|
|
4870
|
-
"name": "floatingPaneResizeEnd",
|
|
4871
|
-
"privacy": "public",
|
|
4872
|
-
"return": {
|
|
4873
|
-
"type": {
|
|
4874
|
-
"text": "CustomEvent<IgcFloatingPaneResizeEventArgs>"
|
|
4875
|
-
}
|
|
4876
|
-
},
|
|
4877
|
-
"parameters": [
|
|
4878
|
-
{
|
|
4879
|
-
"name": "args",
|
|
4880
|
-
"type": {
|
|
4881
|
-
"text": "IgcFloatingPaneResizeEventArgs"
|
|
4882
|
-
}
|
|
4883
|
-
}
|
|
4884
|
-
]
|
|
4885
|
-
},
|
|
4886
|
-
{
|
|
4887
|
-
"kind": "method",
|
|
4888
|
-
"name": "layoutChange",
|
|
4889
|
-
"privacy": "public",
|
|
4890
|
-
"return": {
|
|
4891
|
-
"type": {
|
|
4892
|
-
"text": "CustomEvent"
|
|
4893
|
-
}
|
|
4894
|
-
}
|
|
4895
|
-
},
|
|
4896
4795
|
{
|
|
4897
4796
|
"kind": "method",
|
|
4898
4797
|
"name": "renderContentPane",
|
|
@@ -5543,6 +5442,14 @@
|
|
|
5543
5442
|
},
|
|
5544
5443
|
"default": "42"
|
|
5545
5444
|
},
|
|
5445
|
+
{
|
|
5446
|
+
"kind": "variable",
|
|
5447
|
+
"name": "IGC_DEFAULT_SPLITTER_SIZE",
|
|
5448
|
+
"type": {
|
|
5449
|
+
"text": "number"
|
|
5450
|
+
},
|
|
5451
|
+
"default": "4"
|
|
5452
|
+
},
|
|
5546
5453
|
{
|
|
5547
5454
|
"kind": "variable",
|
|
5548
5455
|
"name": "IGC_DEFAULT_RESIZE",
|
|
@@ -5559,6 +5466,14 @@
|
|
|
5559
5466
|
},
|
|
5560
5467
|
"default": "50"
|
|
5561
5468
|
},
|
|
5469
|
+
{
|
|
5470
|
+
"kind": "variable",
|
|
5471
|
+
"name": "IGC_DEFAULT_FLOATING_PANE_HEADER_HEIGHT",
|
|
5472
|
+
"type": {
|
|
5473
|
+
"text": "number"
|
|
5474
|
+
},
|
|
5475
|
+
"default": "30"
|
|
5476
|
+
},
|
|
5562
5477
|
{
|
|
5563
5478
|
"kind": "variable",
|
|
5564
5479
|
"name": "IgcTabHeadersPosition",
|
|
@@ -5684,6 +5599,14 @@
|
|
|
5684
5599
|
"module": "src/components/dockmanager/dockmanager.interfaces.ts"
|
|
5685
5600
|
}
|
|
5686
5601
|
},
|
|
5602
|
+
{
|
|
5603
|
+
"kind": "js",
|
|
5604
|
+
"name": "IGC_DEFAULT_SPLITTER_SIZE",
|
|
5605
|
+
"declaration": {
|
|
5606
|
+
"name": "IGC_DEFAULT_SPLITTER_SIZE",
|
|
5607
|
+
"module": "src/components/dockmanager/dockmanager.interfaces.ts"
|
|
5608
|
+
}
|
|
5609
|
+
},
|
|
5687
5610
|
{
|
|
5688
5611
|
"kind": "js",
|
|
5689
5612
|
"name": "IGC_DEFAULT_RESIZE",
|
|
@@ -5700,6 +5623,14 @@
|
|
|
5700
5623
|
"module": "src/components/dockmanager/dockmanager.interfaces.ts"
|
|
5701
5624
|
}
|
|
5702
5625
|
},
|
|
5626
|
+
{
|
|
5627
|
+
"kind": "js",
|
|
5628
|
+
"name": "IGC_DEFAULT_FLOATING_PANE_HEADER_HEIGHT",
|
|
5629
|
+
"declaration": {
|
|
5630
|
+
"name": "IGC_DEFAULT_FLOATING_PANE_HEADER_HEIGHT",
|
|
5631
|
+
"module": "src/components/dockmanager/dockmanager.interfaces.ts"
|
|
5632
|
+
}
|
|
5633
|
+
},
|
|
5703
5634
|
{
|
|
5704
5635
|
"kind": "js",
|
|
5705
5636
|
"name": "IgcTabHeadersPosition",
|
|
@@ -5898,15 +5829,6 @@
|
|
|
5898
5829
|
"privacy": "private",
|
|
5899
5830
|
"default": "[]"
|
|
5900
5831
|
},
|
|
5901
|
-
{
|
|
5902
|
-
"kind": "field",
|
|
5903
|
-
"name": "defaultSplitterSize",
|
|
5904
|
-
"type": {
|
|
5905
|
-
"text": "number"
|
|
5906
|
-
},
|
|
5907
|
-
"privacy": "private",
|
|
5908
|
-
"default": "4"
|
|
5909
|
-
},
|
|
5910
5832
|
{
|
|
5911
5833
|
"kind": "field",
|
|
5912
5834
|
"name": "isUpdatingLayout",
|
|
@@ -5924,6 +5846,15 @@
|
|
|
5924
5846
|
},
|
|
5925
5847
|
"privacy": "private"
|
|
5926
5848
|
},
|
|
5849
|
+
{
|
|
5850
|
+
"kind": "field",
|
|
5851
|
+
"name": "_splitterSize",
|
|
5852
|
+
"type": {
|
|
5853
|
+
"text": "number | null"
|
|
5854
|
+
},
|
|
5855
|
+
"privacy": "private",
|
|
5856
|
+
"default": "null"
|
|
5857
|
+
},
|
|
5927
5858
|
{
|
|
5928
5859
|
"kind": "field",
|
|
5929
5860
|
"name": "visibleDocuments",
|
|
@@ -6297,6 +6228,56 @@
|
|
|
6297
6228
|
}
|
|
6298
6229
|
]
|
|
6299
6230
|
},
|
|
6231
|
+
{
|
|
6232
|
+
"kind": "method",
|
|
6233
|
+
"name": "getSplitterSize",
|
|
6234
|
+
"privacy": "private",
|
|
6235
|
+
"return": {
|
|
6236
|
+
"type": {
|
|
6237
|
+
"text": ""
|
|
6238
|
+
}
|
|
6239
|
+
},
|
|
6240
|
+
"description": "Get the actual rendered size of a splitter element from the DOM.\nThe result is cached after the first successful measurement since splitter\nsize is consistent across the component and rarely changes at runtime."
|
|
6241
|
+
},
|
|
6242
|
+
{
|
|
6243
|
+
"kind": "method",
|
|
6244
|
+
"name": "getFloatingPaneHeaderHeight",
|
|
6245
|
+
"privacy": "private",
|
|
6246
|
+
"return": {
|
|
6247
|
+
"type": {
|
|
6248
|
+
"text": ""
|
|
6249
|
+
}
|
|
6250
|
+
},
|
|
6251
|
+
"parameters": [
|
|
6252
|
+
{
|
|
6253
|
+
"name": "pane",
|
|
6254
|
+
"type": {
|
|
6255
|
+
"text": "IgcSplitPane"
|
|
6256
|
+
},
|
|
6257
|
+
"description": "The floating pane to check"
|
|
6258
|
+
}
|
|
6259
|
+
],
|
|
6260
|
+
"description": "Get the actual rendered height of a floating pane header from the DOM.\nThis accounts for user customization via slots, CSS parts, or other styling."
|
|
6261
|
+
},
|
|
6262
|
+
{
|
|
6263
|
+
"kind": "method",
|
|
6264
|
+
"name": "getFloatingPaneMinConstraints",
|
|
6265
|
+
"privacy": "private",
|
|
6266
|
+
"return": {
|
|
6267
|
+
"type": {
|
|
6268
|
+
"text": "{\n minWidth: number;\n minHeight: number;\n }"
|
|
6269
|
+
}
|
|
6270
|
+
},
|
|
6271
|
+
"parameters": [
|
|
6272
|
+
{
|
|
6273
|
+
"name": "pane",
|
|
6274
|
+
"type": {
|
|
6275
|
+
"text": "IgcSplitPane"
|
|
6276
|
+
}
|
|
6277
|
+
}
|
|
6278
|
+
],
|
|
6279
|
+
"description": "Calculate the minimum width and height constraints for a floating pane\nbased on all its child panes' minResizeWidth and minResizeHeight properties.\nThis properly handles split panes by summing constraints in the split direction."
|
|
6280
|
+
},
|
|
6300
6281
|
{
|
|
6301
6282
|
"kind": "method",
|
|
6302
6283
|
"name": "findPaneById",
|
|
@@ -7871,7 +7852,7 @@
|
|
|
7871
7852
|
"type": {
|
|
7872
7853
|
"text": "IgcDockManagerLayout"
|
|
7873
7854
|
},
|
|
7874
|
-
"default": "{ rootPane: { type: 'splitPane', orientation: 'horizontal', panes: [ this.unpinnedToolboxPane, this.unpinnedTeamExplorerPane, { type: 'splitPane', orientation: 'vertical', size: 300, panes: [ { type: 'documentHost', size: 300, rootPane: { type: 'splitPane', orientation: 'horizontal', allowEmpty: true, panes: [ { type: 'tabGroupPane', panes: [ { type: 'contentPane', header: 'MainWindow.xaml', contentId: 'content2', documentOnly: true, // allowMaximize: false, }, { type: 'contentPane', header: 'MainWindow.xaml.cs', contentId: 'content6', documentOnly: true, allowFloating: false, }, ], }, { type: 'contentPane', header: 'App.xaml', contentId: 'content8', allowMaximize: true, acceptsInnerDock: false, }, ], }, }, { type: 'splitPane', orientation: 'horizontal', allowEmpty: true, panes: [], }, { type: 'contentPane', header: 'Error List', contentId: 'content3', allowDocking: false, allowFloating: false, allowMaximize: false, }, ], }, { type: 'splitPane', orientation: 'vertical', panes: [ { type: 'tabGroupPane', size: 200, allowEmpty: true, panes: [ { type: 'contentPane', header: 'Solution Explorer', headerId: 'header1', tabHeaderId: 'tabHeader1', unpinnedHeaderId: 'unpinnedHeader1', contentId: 'content4', allowMaximize: false, }, this.teamExplorerPane, ], }, { type: 'contentPane', header: 'Properties', contentId: 'content5', unpinnedLocation: 'top', allowFloating: false, allowMaximize: false, }, ], }, ], }, floatingPanes: [ { type: 'splitPane', orientation: 'horizontal', floatingLocation: { x: 50, y: 100 }, floatingWidth: 200, floatingHeight: 100, panes: [ { type: 'contentPane', header: 'Notifications', contentId: 'content9', allowDocking: false, }, ], // floatingResizable: true }, { type: 'splitPane', allowEmpty: true, orientation: 'horizontal', floatingLocation: { x: 250, y: 350 }, floatingWidth: 300, floatingHeight: 200, panes: [ { type: 'contentPane', header: 'Floating 1', contentId: 'content10', acceptsInnerDock: false, }, { type: 'contentPane', header: 'Floating 2', contentId: 'content11', allowMaximize: false, }, ], }, { type: 'splitPane', orientation: 'horizontal', floatingLocation: { x: 750, y: 200 }, floatingWidth: 300, floatingHeight: 200, panes: [ { type: 'tabGroupPane', allowEmpty: true, panes: [ { type: 'contentPane', header: 'Floating Tab 1', contentId: 'content12', }, { type: 'contentPane', header: 'Floating Tab 2', contentId: 'content13', }, ], }, ], }, ], }"
|
|
7855
|
+
"default": "{ rootPane: { type: 'splitPane', orientation: 'horizontal', panes: [ this.unpinnedToolboxPane, this.unpinnedTeamExplorerPane, { type: 'splitPane', orientation: 'vertical', size: 300, panes: [ { type: 'documentHost', size: 300, rootPane: { type: 'splitPane', orientation: 'horizontal', allowEmpty: true, // minResizeHeight: 300, panes: [ { type: 'tabGroupPane', // size: 100, // minResizeHeight: 350, // minResizeWidth: 350, panes: [ { type: 'contentPane', header: 'MainWindow.xaml', contentId: 'content2', documentOnly: true, // minResizeWidth: 300, // minResizeHeight: 280, // allowMaximize: false, }, { type: 'contentPane', header: 'MainWindow.xaml.cs', contentId: 'content6', documentOnly: true, allowFloating: false, }, ], }, { type: 'contentPane', header: 'App.xaml', contentId: 'content8', // size: 200, // minResizeHeight: 200, // minResizeWidth: 250, allowMaximize: true, acceptsInnerDock: false, }, ], }, }, { type: 'splitPane', orientation: 'horizontal', allowEmpty: true, panes: [], }, { type: 'contentPane', header: 'Error List', contentId: 'content3', allowDocking: false, allowFloating: false, allowMaximize: false, }, ], }, { type: 'splitPane', orientation: 'vertical', panes: [ { type: 'tabGroupPane', size: 200, allowEmpty: true, panes: [ { type: 'contentPane', header: 'Solution Explorer', headerId: 'header1', tabHeaderId: 'tabHeader1', unpinnedHeaderId: 'unpinnedHeader1', contentId: 'content4', allowMaximize: false, }, this.teamExplorerPane, ], }, { type: 'contentPane', header: 'Properties', contentId: 'content5', unpinnedLocation: 'top', allowFloating: false, allowMaximize: false, }, ], }, ], }, floatingPanes: [ { type: 'splitPane', orientation: 'horizontal', floatingLocation: { x: 50, y: 100 }, floatingWidth: 200, floatingHeight: 100, panes: [ { type: 'contentPane', header: 'Notifications', contentId: 'content9', allowDocking: false, }, ], // floatingResizable: true }, { type: 'splitPane', allowEmpty: true, orientation: 'horizontal', floatingLocation: { x: 250, y: 350 }, floatingWidth: 300, floatingHeight: 200, // minResizeHeight: 350, panes: [ { type: 'contentPane', header: 'Floating 1', contentId: 'content10', // minResizeHeight: 250, acceptsInnerDock: false, }, { type: 'contentPane', header: 'Floating 2', contentId: 'content11', // minResizeWidth: 200, allowMaximize: false, }, ], }, { type: 'splitPane', orientation: 'horizontal', floatingLocation: { x: 750, y: 200 }, floatingWidth: 300, floatingHeight: 200, panes: [ { type: 'tabGroupPane', allowEmpty: true, panes: [ { type: 'contentPane', header: 'Floating Tab 1', contentId: 'content12', }, { type: 'contentPane', header: 'Floating Tab 2', contentId: 'content13', }, ], }, ], }, ], }"
|
|
7875
7856
|
},
|
|
7876
7857
|
{
|
|
7877
7858
|
"kind": "field",
|
|
@@ -7915,7 +7896,7 @@
|
|
|
7915
7896
|
"type": {
|
|
7916
7897
|
"text": "IgcDockManagerLayout"
|
|
7917
7898
|
},
|
|
7918
|
-
"default": "{ rootPane: { type: 'splitPane', orientation: 'vertical', useFixedSize: true, panes: [ { type: 'contentPane', contentId: 'content1', header: 'Content 1 Header', size: 260, // PIXELS }, { type: 'splitPane', orientation: 'horizontal', size: 240 + 10, panes: [ { // type: 'splitPane', // orientation: 'vertical', // size: this.bodyWidth / 3, // panes: [ // { type: 'contentPane', contentId: 'content2', header: 'Content 2 Header', size: 240, // PIXELS // }, // ], }, // { // type: 'splitPane', // orientation: 'vertical', // useFixedSize: true, // size: (this.bodyWidth * 2) / 3, // panes: [ { type: 'contentPane', contentId: 'content3', header: 'Content 3 Header', size: 240, // PIXELS ...this.commonProps, }, // ], // }, // { // type: 'contentPane', // contentId: 'content_not_used_2', // header: 'NOT USED', // // size: 0, // ...this.commonProps, // }, ], }, { type: 'contentPane', contentId: 'content4', header: 'Content 4 Header', size: 290, // PIXELS }, { type: 'splitPane', orientation: 'horizontal', size: 240 + 10, panes: [ { type: 'splitPane', orientation: 'vertical', size: this.bodyWidth / 3, panes: [ { type: 'contentPane', contentId: 'content5', header: 'Content 5 Header', size: 240, // PIXELS }, ], }, { type: 'splitPane', orientation: 'vertical', size: (this.bodyWidth * 2) / 3, panes: [ { type: 'contentPane', contentId: 'content6', header: 'Content 6 Header', size: 240, // PIXELS }, ], }, // { // type: 'contentPane', // contentId: 'content_not_used_3', // header: 'NOT USED', // ...this.commonProps, // }, ], }, { type: 'splitPane', orientation: 'horizontal', size: 240 + 10, panes: [ { type: 'splitPane', orientation: 'vertical', size: this.bodyWidth / 2, panes: [ { type: 'contentPane', contentId: 'content7', header: 'Content 7 Header', size: 240, // PIXELS }, ], }, { type: 'splitPane', orientation: 'vertical', size: this.bodyWidth / 2, panes: [ { type: 'contentPane', contentId: 'content8', header: 'Content 8 Header', size: 240, // PIXELS }, ], }, // { // type: 'contentPane', // contentId: 'content_not_used_4', // header: 'NOT USED', // ...this.commonProps, // }, ], }, { type: 'contentPane', contentId: 'content9', header: 'Content 9 Header', size: 290, // PIXELS }, // { // type: 'contentPane', // contentId: 'content_not_used_1', // header: 'NOT USED', // ...this.commonProps, // }, ], }, floatingPanes: [], }"
|
|
7899
|
+
"default": "{ rootPane: { type: 'splitPane', orientation: 'vertical', useFixedSize: true, panes: [ { type: 'contentPane', contentId: 'content1', header: 'Content 1 Header', // minResizeHeight: 150, // minResizeWidth: 175, size: 260, // PIXELS }, { type: 'splitPane', orientation: 'horizontal', size: 240 + 10, panes: [ { // type: 'splitPane', // orientation: 'vertical', // size: this.bodyWidth / 3, // panes: [ // { type: 'contentPane', contentId: 'content2', header: 'Content 2 Header', size: 240, // PIXELS // }, // ], }, // { // type: 'splitPane', // orientation: 'vertical', // useFixedSize: true, // size: (this.bodyWidth * 2) / 3, // panes: [ { type: 'contentPane', contentId: 'content3', header: 'Content 3 Header', size: 240, // PIXELS ...this.commonProps, }, // ], // }, // { // type: 'contentPane', // contentId: 'content_not_used_2', // header: 'NOT USED', // // size: 0, // ...this.commonProps, // }, ], }, { type: 'contentPane', contentId: 'content4', header: 'Content 4 Header', size: 290, // PIXELS }, { type: 'splitPane', orientation: 'horizontal', size: 240 + 10, panes: [ { type: 'splitPane', orientation: 'vertical', size: this.bodyWidth / 3, panes: [ { type: 'contentPane', contentId: 'content5', header: 'Content 5 Header', size: 240, // PIXELS }, ], }, { type: 'splitPane', orientation: 'vertical', size: (this.bodyWidth * 2) / 3, panes: [ { type: 'contentPane', contentId: 'content6', header: 'Content 6 Header', size: 240, // PIXELS }, ], }, // { // type: 'contentPane', // contentId: 'content_not_used_3', // header: 'NOT USED', // ...this.commonProps, // }, ], }, { type: 'splitPane', orientation: 'horizontal', size: 240 + 10, panes: [ { type: 'splitPane', orientation: 'vertical', size: this.bodyWidth / 2, panes: [ { type: 'contentPane', contentId: 'content7', header: 'Content 7 Header', size: 240, // PIXELS }, ], }, { type: 'splitPane', orientation: 'vertical', size: this.bodyWidth / 2, panes: [ { type: 'contentPane', contentId: 'content8', header: 'Content 8 Header', size: 240, // PIXELS }, ], }, // { // type: 'contentPane', // contentId: 'content_not_used_4', // header: 'NOT USED', // ...this.commonProps, // }, ], }, { type: 'contentPane', contentId: 'content9', header: 'Content 9 Header', size: 290, // PIXELS }, // { // type: 'contentPane', // contentId: 'content_not_used_1', // header: 'NOT USED', // ...this.commonProps, // }, ], }, floatingPanes: [], }"
|
|
7919
7900
|
},
|
|
7920
7901
|
{
|
|
7921
7902
|
"kind": "field",
|
|
@@ -7923,7 +7904,7 @@
|
|
|
7923
7904
|
"type": {
|
|
7924
7905
|
"text": "IgcDockManagerLayout"
|
|
7925
7906
|
},
|
|
7926
|
-
"default": "{ rootPane: { type: 'splitPane', orientation: 'horizontal', panes: [ { type: 'splitPane', orientation: 'vertical', useFixedSize: true, size: this.bodyWidth, panes: [ { type: 'contentPane', contentId: 'content1', header: 'Content 1 Header', size: 60, // PIXELS }, { type: 'splitPane', orientation: 'horizontal', size: 240 + 10, useFixedSize: true, panes: [ { type: 'splitPane', orientation: 'vertical', size: this.bodyWidth / 3, panes: [ { type: 'contentPane', contentId: 'content2', header: 'Content 2 Header', size: 240, // PIXELS }, ], }, { type: 'splitPane', orientation: 'vertical', size: (this.bodyWidth * 2) / 3, panes: [ { type: 'contentPane', contentId: 'content3', header: 'Content 3 Header', size: 240, // PIXELS }, ], }, { type: 'contentPane', contentId: 'content_not_used_2', header: 'NOT USED', // size: 0, ...this.commonProps, }, ], }, { type: 'contentPane', contentId: 'content4', header: 'Content 4 Header', size: 290, // PIXELS }, { type: 'splitPane', orientation: 'horizontal', size: 240 + 10, panes: [ { type: 'splitPane', orientation: 'vertical', size: this.bodyWidth / 3, panes: [ { type: 'contentPane', contentId: 'content5', header: 'Content 5 Header', size: 240, // PIXELS }, ], }, { type: 'splitPane', orientation: 'vertical', size: (this.bodyWidth * 2) / 3, panes: [ { type: 'contentPane', contentId: 'content6', header: 'Content 6 Header', size: 240, // PIXELS }, ], }, { type: 'contentPane', contentId: 'content_not_used_3', header: 'NOT USED', ...this.commonProps, }, ], }, { type: 'splitPane', orientation: 'horizontal', size: 240 + 10, panes: [ { type: 'splitPane', orientation: 'vertical', size: this.bodyWidth / 2, panes: [ { type: 'contentPane', contentId: 'content7', header: 'Content 7 Header', size: 240, // PIXELS }, ], }, { type: 'splitPane', orientation: 'vertical', size: this.bodyWidth / 2, panes: [ { type: 'contentPane', contentId: 'content8', header: 'Content 8 Header', size: 240, // PIXELS }, ], }, { type: 'contentPane', contentId: 'content_not_used_4', header: 'NOT USED', ...this.commonProps, }, ], }, { type: 'contentPane', contentId: 'content9', header: 'Content 9 Header', size: 290, // PIXELS }, { type: 'contentPane', contentId: 'content_not_used_1', header: 'NOT USED', ...this.commonProps, }, ], }, ], }, floatingPanes: [], }"
|
|
7907
|
+
"default": "{ rootPane: { type: 'splitPane', orientation: 'horizontal', panes: [ { type: 'splitPane', orientation: 'vertical', useFixedSize: true, size: this.bodyWidth, panes: [ { type: 'contentPane', contentId: 'content1', header: 'Content 1 Header', size: 60, // PIXELS }, { type: 'splitPane', orientation: 'horizontal', size: 240 + 10, useFixedSize: true, panes: [ { type: 'splitPane', orientation: 'vertical', size: this.bodyWidth / 3, panes: [ { type: 'contentPane', contentId: 'content2', header: 'Content 2 Header', size: 240, // PIXELS // minResizeHeight: 85, }, ], }, { type: 'splitPane', orientation: 'vertical', size: (this.bodyWidth * 2) / 3, panes: [ { type: 'contentPane', contentId: 'content3', header: 'Content 3 Header', size: 240, // PIXELS }, ], }, { type: 'contentPane', contentId: 'content_not_used_2', header: 'NOT USED', // size: 0, ...this.commonProps, }, ], }, { type: 'contentPane', contentId: 'content4', header: 'Content 4 Header', size: 290, // PIXELS }, { type: 'splitPane', orientation: 'horizontal', size: 240 + 10, panes: [ { type: 'splitPane', orientation: 'vertical', size: this.bodyWidth / 3, panes: [ { type: 'contentPane', contentId: 'content5', header: 'Content 5 Header', size: 240, // PIXELS }, ], }, { type: 'splitPane', orientation: 'vertical', size: (this.bodyWidth * 2) / 3, panes: [ { type: 'contentPane', contentId: 'content6', header: 'Content 6 Header', size: 240, // PIXELS }, ], }, { type: 'contentPane', contentId: 'content_not_used_3', header: 'NOT USED', ...this.commonProps, }, ], }, { type: 'splitPane', orientation: 'horizontal', size: 240 + 10, panes: [ { type: 'splitPane', orientation: 'vertical', size: this.bodyWidth / 2, panes: [ { type: 'contentPane', contentId: 'content7', header: 'Content 7 Header', size: 240, // PIXELS }, ], }, { type: 'splitPane', orientation: 'vertical', size: this.bodyWidth / 2, panes: [ { type: 'contentPane', contentId: 'content8', header: 'Content 8 Header', size: 240, // PIXELS }, ], }, { type: 'contentPane', contentId: 'content_not_used_4', header: 'NOT USED', ...this.commonProps, }, ], }, { type: 'contentPane', contentId: 'content9', header: 'Content 9 Header', size: 290, // PIXELS }, { type: 'contentPane', contentId: 'content_not_used_1', header: 'NOT USED', ...this.commonProps, }, ], }, ], }, floatingPanes: [], }"
|
|
7927
7908
|
},
|
|
7928
7909
|
{
|
|
7929
7910
|
"kind": "field",
|
|
@@ -9258,6 +9239,22 @@
|
|
|
9258
9239
|
"privacy": "private",
|
|
9259
9240
|
"default": "null"
|
|
9260
9241
|
},
|
|
9242
|
+
{
|
|
9243
|
+
"kind": "field",
|
|
9244
|
+
"name": "_minResizeWidth",
|
|
9245
|
+
"type": {
|
|
9246
|
+
"text": "number | undefined"
|
|
9247
|
+
},
|
|
9248
|
+
"privacy": "private"
|
|
9249
|
+
},
|
|
9250
|
+
{
|
|
9251
|
+
"kind": "field",
|
|
9252
|
+
"name": "_minResizeHeight",
|
|
9253
|
+
"type": {
|
|
9254
|
+
"text": "number | undefined"
|
|
9255
|
+
},
|
|
9256
|
+
"privacy": "private"
|
|
9257
|
+
},
|
|
9261
9258
|
{
|
|
9262
9259
|
"kind": "field",
|
|
9263
9260
|
"name": "_hasHiddenTabs",
|
|
@@ -9374,6 +9371,20 @@
|
|
|
9374
9371
|
"privacy": "public",
|
|
9375
9372
|
"attribute": "parentUseFixedSize"
|
|
9376
9373
|
},
|
|
9374
|
+
{
|
|
9375
|
+
"kind": "field",
|
|
9376
|
+
"name": "minResizeWidth",
|
|
9377
|
+
"privacy": "public",
|
|
9378
|
+
"description": "The minimum width of the tab group in pixels during resizing.",
|
|
9379
|
+
"attribute": "minResizeWidth"
|
|
9380
|
+
},
|
|
9381
|
+
{
|
|
9382
|
+
"kind": "field",
|
|
9383
|
+
"name": "minResizeHeight",
|
|
9384
|
+
"privacy": "public",
|
|
9385
|
+
"description": "The minimum height of the tab group in pixels during resizing.",
|
|
9386
|
+
"attribute": "minResizeHeight"
|
|
9387
|
+
},
|
|
9377
9388
|
{
|
|
9378
9389
|
"kind": "method",
|
|
9379
9390
|
"name": "selectedIndexChanged",
|
|
@@ -9801,6 +9812,16 @@
|
|
|
9801
9812
|
{
|
|
9802
9813
|
"name": "parentUseFixedSize",
|
|
9803
9814
|
"fieldName": "parentUseFixedSize"
|
|
9815
|
+
},
|
|
9816
|
+
{
|
|
9817
|
+
"name": "minResizeWidth",
|
|
9818
|
+
"description": "The minimum width of the tab group in pixels during resizing.",
|
|
9819
|
+
"fieldName": "minResizeWidth"
|
|
9820
|
+
},
|
|
9821
|
+
{
|
|
9822
|
+
"name": "minResizeHeight",
|
|
9823
|
+
"description": "The minimum height of the tab group in pixels during resizing.",
|
|
9824
|
+
"fieldName": "minResizeHeight"
|
|
9804
9825
|
}
|
|
9805
9826
|
],
|
|
9806
9827
|
"mixins": [
|
|
@@ -11271,6 +11292,40 @@
|
|
|
11271
11292
|
"text": "number"
|
|
11272
11293
|
}
|
|
11273
11294
|
},
|
|
11295
|
+
{
|
|
11296
|
+
"kind": "field",
|
|
11297
|
+
"name": "_minResizeWidth",
|
|
11298
|
+
"privacy": "private",
|
|
11299
|
+
"default": "IGC_RESIZING_MIN_SIZE"
|
|
11300
|
+
},
|
|
11301
|
+
{
|
|
11302
|
+
"kind": "field",
|
|
11303
|
+
"name": "_minResizeHeight",
|
|
11304
|
+
"privacy": "private",
|
|
11305
|
+
"default": "IGC_RESIZING_MIN_SIZE"
|
|
11306
|
+
},
|
|
11307
|
+
{
|
|
11308
|
+
"kind": "field",
|
|
11309
|
+
"name": "minResizeWidth",
|
|
11310
|
+
"privacy": "public",
|
|
11311
|
+
"description": "The minimum width of the pane in pixels during resizing.",
|
|
11312
|
+
"default": "42",
|
|
11313
|
+
"attribute": "min-resize-width",
|
|
11314
|
+
"type": {
|
|
11315
|
+
"text": "number"
|
|
11316
|
+
}
|
|
11317
|
+
},
|
|
11318
|
+
{
|
|
11319
|
+
"kind": "field",
|
|
11320
|
+
"name": "minResizeHeight",
|
|
11321
|
+
"privacy": "public",
|
|
11322
|
+
"description": "The minimum height of the pane in pixels during resizing.",
|
|
11323
|
+
"default": "42",
|
|
11324
|
+
"attribute": "min-resize-height",
|
|
11325
|
+
"type": {
|
|
11326
|
+
"text": "number"
|
|
11327
|
+
}
|
|
11328
|
+
},
|
|
11274
11329
|
{
|
|
11275
11330
|
"kind": "method",
|
|
11276
11331
|
"name": "_updateFlex",
|
|
@@ -11470,6 +11525,26 @@
|
|
|
11470
11525
|
"text": "number"
|
|
11471
11526
|
}
|
|
11472
11527
|
},
|
|
11528
|
+
{
|
|
11529
|
+
"name": "min-resize-width",
|
|
11530
|
+
"description": "The minimum width of the pane in pixels during resizing.",
|
|
11531
|
+
"default": "42",
|
|
11532
|
+
"fieldName": "minResizeWidth",
|
|
11533
|
+
"attribute": "min-resize-width",
|
|
11534
|
+
"type": {
|
|
11535
|
+
"text": "number"
|
|
11536
|
+
}
|
|
11537
|
+
},
|
|
11538
|
+
{
|
|
11539
|
+
"name": "min-resize-height",
|
|
11540
|
+
"description": "The minimum height of the pane in pixels during resizing.",
|
|
11541
|
+
"default": "42",
|
|
11542
|
+
"fieldName": "minResizeHeight",
|
|
11543
|
+
"attribute": "min-resize-height",
|
|
11544
|
+
"type": {
|
|
11545
|
+
"text": "number"
|
|
11546
|
+
}
|
|
11547
|
+
},
|
|
11473
11548
|
{
|
|
11474
11549
|
"name": "header",
|
|
11475
11550
|
"type": {
|
|
@@ -13030,6 +13105,40 @@
|
|
|
13030
13105
|
"privacy": "public",
|
|
13031
13106
|
"attribute": "size"
|
|
13032
13107
|
},
|
|
13108
|
+
{
|
|
13109
|
+
"kind": "field",
|
|
13110
|
+
"name": "_minResizeWidth",
|
|
13111
|
+
"privacy": "private",
|
|
13112
|
+
"default": "IGC_RESIZING_MIN_SIZE"
|
|
13113
|
+
},
|
|
13114
|
+
{
|
|
13115
|
+
"kind": "field",
|
|
13116
|
+
"name": "_minResizeHeight",
|
|
13117
|
+
"privacy": "private",
|
|
13118
|
+
"default": "IGC_RESIZING_MIN_SIZE"
|
|
13119
|
+
},
|
|
13120
|
+
{
|
|
13121
|
+
"kind": "field",
|
|
13122
|
+
"name": "minResizeWidth",
|
|
13123
|
+
"privacy": "public",
|
|
13124
|
+
"description": "The minimum width of child panes in pixels during resizing.",
|
|
13125
|
+
"default": "42",
|
|
13126
|
+
"attribute": "min-resize-width",
|
|
13127
|
+
"type": {
|
|
13128
|
+
"text": "number"
|
|
13129
|
+
}
|
|
13130
|
+
},
|
|
13131
|
+
{
|
|
13132
|
+
"kind": "field",
|
|
13133
|
+
"name": "minResizeHeight",
|
|
13134
|
+
"privacy": "public",
|
|
13135
|
+
"description": "The minimum height of child panes in pixels during resizing.",
|
|
13136
|
+
"default": "42",
|
|
13137
|
+
"attribute": "min-resize-height",
|
|
13138
|
+
"type": {
|
|
13139
|
+
"text": "number"
|
|
13140
|
+
}
|
|
13141
|
+
},
|
|
13033
13142
|
{
|
|
13034
13143
|
"kind": "method",
|
|
13035
13144
|
"name": "_updateFlexStyle",
|
|
@@ -13207,6 +13316,26 @@
|
|
|
13207
13316
|
"text": "boolean"
|
|
13208
13317
|
}
|
|
13209
13318
|
},
|
|
13319
|
+
{
|
|
13320
|
+
"name": "min-resize-width",
|
|
13321
|
+
"description": "The minimum width of child panes in pixels during resizing.",
|
|
13322
|
+
"default": "42",
|
|
13323
|
+
"fieldName": "minResizeWidth",
|
|
13324
|
+
"attribute": "min-resize-width",
|
|
13325
|
+
"type": {
|
|
13326
|
+
"text": "number"
|
|
13327
|
+
}
|
|
13328
|
+
},
|
|
13329
|
+
{
|
|
13330
|
+
"name": "min-resize-height",
|
|
13331
|
+
"description": "The minimum height of child panes in pixels during resizing.",
|
|
13332
|
+
"default": "42",
|
|
13333
|
+
"fieldName": "minResizeHeight",
|
|
13334
|
+
"attribute": "min-resize-height",
|
|
13335
|
+
"type": {
|
|
13336
|
+
"text": "number"
|
|
13337
|
+
}
|
|
13338
|
+
},
|
|
13210
13339
|
{
|
|
13211
13340
|
"name": "orientation",
|
|
13212
13341
|
"description": "Defines the layout direction of the split pane: `horizontal` or `vertical`.",
|
|
@@ -13297,6 +13426,15 @@
|
|
|
13297
13426
|
"privacy": "private",
|
|
13298
13427
|
"default": "null"
|
|
13299
13428
|
},
|
|
13429
|
+
{
|
|
13430
|
+
"kind": "field",
|
|
13431
|
+
"name": "_paneMinSizes",
|
|
13432
|
+
"type": {
|
|
13433
|
+
"text": "number[] | null"
|
|
13434
|
+
},
|
|
13435
|
+
"privacy": "private",
|
|
13436
|
+
"default": "null"
|
|
13437
|
+
},
|
|
13300
13438
|
{
|
|
13301
13439
|
"kind": "field",
|
|
13302
13440
|
"name": "_flyoutMaxSize",
|
|
@@ -13592,6 +13730,30 @@
|
|
|
13592
13730
|
"name": "_isVertical",
|
|
13593
13731
|
"privacy": "private"
|
|
13594
13732
|
},
|
|
13733
|
+
{
|
|
13734
|
+
"kind": "method",
|
|
13735
|
+
"name": "_getMinSize",
|
|
13736
|
+
"privacy": "private",
|
|
13737
|
+
"return": {
|
|
13738
|
+
"type": {
|
|
13739
|
+
"text": "number"
|
|
13740
|
+
}
|
|
13741
|
+
},
|
|
13742
|
+
"parameters": [
|
|
13743
|
+
{
|
|
13744
|
+
"name": "pane",
|
|
13745
|
+
"type": {
|
|
13746
|
+
"text": "HTMLElement | undefined"
|
|
13747
|
+
}
|
|
13748
|
+
},
|
|
13749
|
+
{
|
|
13750
|
+
"name": "orientation",
|
|
13751
|
+
"type": {
|
|
13752
|
+
"text": "'horizontal' | 'vertical'"
|
|
13753
|
+
}
|
|
13754
|
+
}
|
|
13755
|
+
]
|
|
13756
|
+
},
|
|
13595
13757
|
{
|
|
13596
13758
|
"kind": "method",
|
|
13597
13759
|
"name": "addEventListener",
|