igniteui-dockmanager 2.1.1 → 2.1.2

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.
@@ -5879,6 +5879,15 @@
5879
5879
  "privacy": "private",
5880
5880
  "default": "null"
5881
5881
  },
5882
+ {
5883
+ "kind": "field",
5884
+ "name": "_previousLocationMap",
5885
+ "type": {
5886
+ "text": "Map<string, UnpinnedLocation> | null"
5887
+ },
5888
+ "privacy": "private",
5889
+ "default": "null"
5890
+ },
5882
5891
  {
5883
5892
  "kind": "field",
5884
5893
  "name": "visibleDocuments",
@@ -10687,32 +10696,34 @@
10687
10696
  },
10688
10697
  {
10689
10698
  "kind": "javascript-module",
10690
- "path": "src/components/dockmanager/pane-navigator/pane-navigator-component.ts",
10699
+ "path": "src/components/dockmanager/panes/content-pane-component.ts",
10691
10700
  "declarations": [
10692
10701
  {
10693
10702
  "kind": "class",
10694
10703
  "description": "",
10695
- "name": "IgcPaneNavigatorComponent",
10704
+ "name": "IgcContentPaneComponent",
10696
10705
  "cssParts": [
10697
10706
  {
10698
- "description": "Wrapper of the panel.",
10699
- "name": "base"
10707
+ "description": "The main wrapper of the content-pane component.",
10708
+ "name": "content-pane"
10700
10709
  },
10701
10710
  {
10702
- "description": "The header element which contains the header of the currently selected pane.",
10703
- "name": "header"
10711
+ "description": "Applied when the pane is disabled.",
10712
+ "name": "disabled"
10704
10713
  },
10705
10714
  {
10706
- "description": "The section element where groups of panes and documents are displayed.",
10707
- "name": "body"
10708
- },
10715
+ "description": "Applied when the pane is the only one in a floating container.",
10716
+ "name": "single-floating"
10717
+ }
10718
+ ],
10719
+ "slots": [
10709
10720
  {
10710
- "description": "The article element which contains all items of the same group - panes or documents.",
10711
- "name": "group"
10721
+ "description": "Default slot for pane content.",
10722
+ "name": ""
10712
10723
  },
10713
10724
  {
10714
- "description": "The header element displayed above the group of panes/documents.",
10715
- "name": "title"
10725
+ "description": "Slot for projecting a custom header for the pane.",
10726
+ "name": "header"
10716
10727
  }
10717
10728
  ],
10718
10729
  "members": [
@@ -10725,7 +10736,7 @@
10725
10736
  "privacy": "public",
10726
10737
  "static": true,
10727
10738
  "readonly": true,
10728
- "default": "'igc-pane-navigator'"
10739
+ "default": "'igc-content-pane'"
10729
10740
  },
10730
10741
  {
10731
10742
  "kind": "method",
@@ -10735,247 +10746,210 @@
10735
10746
  },
10736
10747
  {
10737
10748
  "kind": "field",
10738
- "name": "_paneNav",
10749
+ "name": "_contentId",
10739
10750
  "type": {
10740
- "text": "Ref<HTMLElement>"
10751
+ "text": "string"
10741
10752
  },
10742
- "privacy": "private"
10753
+ "privacy": "private",
10754
+ "default": "''"
10743
10755
  },
10744
10756
  {
10745
10757
  "kind": "field",
10746
- "name": "_allItems",
10758
+ "name": "_disabled",
10747
10759
  "type": {
10748
- "text": "IgcContentPane[]"
10760
+ "text": "boolean"
10749
10761
  },
10750
10762
  "privacy": "private",
10751
- "default": "[]"
10763
+ "default": "false"
10752
10764
  },
10753
10765
  {
10754
10766
  "kind": "field",
10755
- "name": "_allItemsElement",
10767
+ "name": "_isFlyout",
10756
10768
  "type": {
10757
- "text": "HTMLElement[]"
10769
+ "text": "boolean"
10758
10770
  },
10759
10771
  "privacy": "private",
10760
- "default": "[]"
10772
+ "default": "false"
10761
10773
  },
10762
10774
  {
10763
10775
  "kind": "field",
10764
- "name": "activeDocuments",
10776
+ "name": "_isSingleFloating",
10765
10777
  "type": {
10766
- "text": "IgcContentPane[]"
10778
+ "text": "boolean"
10767
10779
  },
10768
- "privacy": "public",
10769
- "default": "[]",
10770
- "description": "Determines currently visible documents.",
10771
- "attribute": "activeDocuments"
10780
+ "privacy": "private",
10781
+ "default": "false"
10772
10782
  },
10773
10783
  {
10774
10784
  "kind": "field",
10775
- "name": "activePanes",
10785
+ "name": "_parentUseFixedSize",
10776
10786
  "type": {
10777
- "text": "IgcContentPane[]"
10787
+ "text": "boolean"
10778
10788
  },
10779
- "privacy": "public",
10780
- "default": "[]",
10781
- "description": "Determines currently visible panes.",
10782
- "attribute": "activePanes"
10789
+ "privacy": "private",
10790
+ "default": "false"
10783
10791
  },
10784
10792
  {
10785
10793
  "kind": "field",
10786
- "name": "selectedIndex",
10794
+ "name": "_size",
10787
10795
  "type": {
10788
10796
  "text": "number"
10789
10797
  },
10790
- "privacy": "public",
10791
- "description": "Determines the index of the selected item.",
10792
- "attribute": "selectedIndex"
10798
+ "privacy": "private",
10799
+ "default": "IGC_DEFAULT_PANE_SIZE"
10793
10800
  },
10794
10801
  {
10795
10802
  "kind": "field",
10796
- "name": "previousActivePaneIndex",
10803
+ "name": "_unpinnedSize",
10797
10804
  "type": {
10798
10805
  "text": "number"
10799
10806
  },
10807
+ "privacy": "private",
10808
+ "default": "IGC_DEFAULT_UNPIN_PANE_SIZE"
10809
+ },
10810
+ {
10811
+ "kind": "field",
10812
+ "name": "contentId",
10800
10813
  "privacy": "public",
10801
- "description": "Determines the index of the previously selected item.",
10802
- "attribute": "previousActivePaneIndex"
10814
+ "description": "Sets a unique identifier for the content pane.\nUsed for targeting slotted content.",
10815
+ "attribute": "content-id"
10803
10816
  },
10804
10817
  {
10805
10818
  "kind": "field",
10806
- "name": "resourceStrings",
10819
+ "name": "header",
10807
10820
  "type": {
10808
- "text": "IgcDockManagerResourceStrings | undefined"
10821
+ "text": "string"
10809
10822
  },
10810
10823
  "privacy": "public",
10811
- "description": "The resource strings for the pane navigator.",
10812
- "attribute": "resourceStrings"
10824
+ "default": "''",
10825
+ "description": "Defines the header label for the pane.",
10826
+ "attribute": "header"
10813
10827
  },
10814
10828
  {
10815
10829
  "kind": "field",
10816
- "name": "_handleKeyUp",
10817
- "privacy": "private"
10830
+ "name": "disabled",
10831
+ "privacy": "public",
10832
+ "description": "Disables the pane and makes it non-interactive.",
10833
+ "default": "false",
10834
+ "attribute": "disabled"
10818
10835
  },
10819
10836
  {
10820
- "kind": "method",
10821
- "name": "_handleKeyDown",
10822
- "privacy": "private",
10823
- "parameters": [
10824
- {
10825
- "name": "event",
10826
- "type": {
10827
- "text": "KeyboardEvent"
10828
- }
10829
- }
10830
- ]
10837
+ "kind": "field",
10838
+ "name": "isFlyout",
10839
+ "privacy": "public",
10840
+ "description": "Indicates whether the pane is currently in a flyout state.",
10841
+ "default": "false",
10842
+ "attribute": "is-flyout"
10831
10843
  },
10832
10844
  {
10833
- "kind": "method",
10834
- "name": "_scrollItemToView",
10835
- "privacy": "private"
10845
+ "kind": "field",
10846
+ "name": "isSingleFloating",
10847
+ "privacy": "public",
10848
+ "description": "Indicates that the pane is a single floating item.",
10849
+ "default": "false",
10850
+ "attribute": "is-single-floating"
10836
10851
  },
10837
10852
  {
10838
- "kind": "method",
10839
- "name": "_navigateToIndex",
10853
+ "kind": "field",
10854
+ "name": "parentUseFixedSize",
10855
+ "privacy": "public",
10856
+ "description": "Indicates if the parent uses fixed pixel sizes for its child panes.\nWhen enabled, pane sizes are treated as absolute values instead of relative weights.",
10857
+ "default": "false",
10858
+ "attribute": "parent-use-fixed-size"
10859
+ },
10860
+ {
10861
+ "kind": "field",
10862
+ "name": "size",
10863
+ "privacy": "public",
10864
+ "description": "Specifies the pane size.\nThis value is relative by default and used as a weight against sibling panes.\nWhen the parent uses fixed size mode, it is treated as an absolute pixel value.",
10865
+ "default": "100",
10866
+ "type": {
10867
+ "text": "number"
10868
+ },
10869
+ "attribute": "size"
10870
+ },
10871
+ {
10872
+ "kind": "field",
10873
+ "name": "unpinnedSize",
10874
+ "privacy": "public",
10875
+ "description": "Specifies the pane's unpinned size when in flyout state.",
10876
+ "default": "100",
10877
+ "attribute": "unpinned-size",
10878
+ "type": {
10879
+ "text": "number"
10880
+ }
10881
+ },
10882
+ {
10883
+ "kind": "field",
10884
+ "name": "_minResizeWidth",
10840
10885
  "privacy": "private",
10841
- "parameters": [
10842
- {
10843
- "name": "initialIndex",
10844
- "type": {
10845
- "text": "number"
10846
- }
10847
- },
10848
- {
10849
- "name": "direction",
10850
- "type": {
10851
- "text": "'next' | 'previous'"
10852
- }
10853
- }
10854
- ]
10886
+ "default": "IGC_RESIZING_MIN_SIZE"
10855
10887
  },
10856
10888
  {
10857
- "kind": "method",
10858
- "name": "_increaseSelectedIndex",
10889
+ "kind": "field",
10890
+ "name": "_minResizeHeight",
10859
10891
  "privacy": "private",
10860
- "parameters": [
10861
- {
10862
- "name": "amount",
10863
- "default": "1"
10864
- }
10865
- ]
10892
+ "default": "IGC_RESIZING_MIN_SIZE"
10893
+ },
10894
+ {
10895
+ "kind": "field",
10896
+ "name": "minResizeWidth",
10897
+ "privacy": "public",
10898
+ "description": "The minimum width of the pane in pixels during resizing.",
10899
+ "default": "42",
10900
+ "attribute": "min-resize-width",
10901
+ "type": {
10902
+ "text": "number"
10903
+ }
10904
+ },
10905
+ {
10906
+ "kind": "field",
10907
+ "name": "minResizeHeight",
10908
+ "privacy": "public",
10909
+ "description": "The minimum height of the pane in pixels during resizing.",
10910
+ "default": "42",
10911
+ "attribute": "min-resize-height",
10912
+ "type": {
10913
+ "text": "number"
10914
+ }
10866
10915
  },
10867
10916
  {
10868
10917
  "kind": "method",
10869
- "name": "_decreaseSelectedIndex",
10870
- "privacy": "private",
10871
- "parameters": [
10872
- {
10873
- "name": "amount",
10874
- "default": "1"
10875
- }
10876
- ]
10918
+ "name": "_updateFlex",
10919
+ "privacy": "private"
10877
10920
  },
10878
10921
  {
10879
10922
  "kind": "method",
10880
- "name": "_resolveItemPart",
10881
- "privacy": "private",
10923
+ "name": "_updateParts",
10924
+ "privacy": "private"
10925
+ },
10926
+ {
10927
+ "kind": "method",
10928
+ "name": "addEventListener",
10929
+ "privacy": "public",
10930
+ "return": {
10931
+ "type": {
10932
+ "text": "void"
10933
+ }
10934
+ },
10882
10935
  "parameters": [
10883
10936
  {
10884
- "name": "item",
10937
+ "name": "type",
10885
10938
  "type": {
10886
- "text": "IgcContentPane"
10939
+ "text": "K"
10887
10940
  }
10888
10941
  },
10889
10942
  {
10890
- "name": "index",
10943
+ "name": "listener",
10891
10944
  "type": {
10892
- "text": "number"
10945
+ "text": "(this: HTMLElement, ev: M[K]) => any"
10893
10946
  }
10894
10947
  },
10895
10948
  {
10896
- "name": "isDocHost",
10949
+ "name": "options",
10950
+ "optional": true,
10897
10951
  "type": {
10898
- "text": "boolean"
10899
- }
10900
- }
10901
- ]
10902
- },
10903
- {
10904
- "kind": "method",
10905
- "name": "_selectItem",
10906
- "privacy": "private",
10907
- "return": {
10908
- "type": {
10909
- "text": "void"
10910
- }
10911
- },
10912
- "parameters": [
10913
- {
10914
- "name": "index",
10915
- "type": {
10916
- "text": "number"
10917
- }
10918
- },
10919
- {
10920
- "name": "isDocHost",
10921
- "type": {
10922
- "text": "boolean"
10923
- }
10924
- }
10925
- ]
10926
- },
10927
- {
10928
- "kind": "method",
10929
- "name": "_renderItems",
10930
- "privacy": "private",
10931
- "parameters": [
10932
- {
10933
- "name": "title",
10934
- "type": {
10935
- "text": "string"
10936
- }
10937
- },
10938
- {
10939
- "name": "items",
10940
- "type": {
10941
- "text": "IgcContentPane[]"
10942
- }
10943
- },
10944
- {
10945
- "name": "isDocHost",
10946
- "type": {
10947
- "text": "boolean"
10948
- }
10949
- }
10950
- ]
10951
- },
10952
- {
10953
- "kind": "method",
10954
- "name": "addEventListener",
10955
- "privacy": "public",
10956
- "return": {
10957
- "type": {
10958
- "text": "void"
10959
- }
10960
- },
10961
- "parameters": [
10962
- {
10963
- "name": "type",
10964
- "type": {
10965
- "text": "K"
10966
- }
10967
- },
10968
- {
10969
- "name": "listener",
10970
- "type": {
10971
- "text": "(this: HTMLElement, ev: M[K]) => any"
10972
- }
10973
- },
10974
- {
10975
- "name": "options",
10976
- "optional": true,
10977
- "type": {
10978
- "text": "boolean | AddEventListenerOptions"
10952
+ "text": "boolean | AddEventListenerOptions"
10979
10953
  }
10980
10954
  }
10981
10955
  ],
@@ -11087,8 +11061,8 @@
11087
11061
  ],
11088
11062
  "events": [
11089
11063
  {
11090
- "description": "Fired when pane navigator is closed.",
11091
- "name": "igcClosed"
11064
+ "description": "Emitted after the component has rendered.",
11065
+ "name": "igcRendered"
11092
11066
  },
11093
11067
  {
11094
11068
  "type": {
@@ -11102,46 +11076,85 @@
11102
11076
  ],
11103
11077
  "attributes": [
11104
11078
  {
11105
- "name": "activeDocuments",
11106
- "type": {
11107
- "text": "IgcContentPane[]"
11108
- },
11109
- "default": "[]",
11110
- "description": "Determines currently visible documents.",
11111
- "fieldName": "activeDocuments"
11079
+ "name": "content-id",
11080
+ "description": "Sets a unique identifier for the content pane.\nUsed for targeting slotted content.",
11081
+ "fieldName": "contentId",
11082
+ "attribute": "content-id"
11112
11083
  },
11113
11084
  {
11114
- "name": "activePanes",
11085
+ "name": "is-flyout",
11086
+ "description": "Indicates whether the pane is currently in a flyout state.",
11087
+ "default": "false",
11088
+ "fieldName": "isFlyout",
11089
+ "attribute": "is-flyout"
11090
+ },
11091
+ {
11092
+ "name": "is-single-floating",
11093
+ "description": "Indicates that the pane is a single floating item.",
11094
+ "default": "false",
11095
+ "fieldName": "isSingleFloating",
11096
+ "attribute": "is-single-floating"
11097
+ },
11098
+ {
11099
+ "name": "parent-use-fixed-size",
11100
+ "description": "Indicates if the parent uses fixed pixel sizes for its child panes.\nWhen enabled, pane sizes are treated as absolute values instead of relative weights.",
11101
+ "default": "false",
11102
+ "fieldName": "parentUseFixedSize",
11103
+ "attribute": "parent-use-fixed-size"
11104
+ },
11105
+ {
11106
+ "name": "unpinned-size",
11107
+ "description": "Specifies the pane's unpinned size when in flyout state.",
11108
+ "default": "100",
11109
+ "fieldName": "unpinnedSize",
11110
+ "attribute": "unpinned-size",
11115
11111
  "type": {
11116
- "text": "IgcContentPane[]"
11117
- },
11118
- "default": "[]",
11119
- "description": "Determines currently visible panes.",
11120
- "fieldName": "activePanes"
11112
+ "text": "number"
11113
+ }
11121
11114
  },
11122
11115
  {
11123
- "name": "selectedIndex",
11116
+ "name": "min-resize-width",
11117
+ "description": "The minimum width of the pane in pixels during resizing.",
11118
+ "default": "42",
11119
+ "fieldName": "minResizeWidth",
11120
+ "attribute": "min-resize-width",
11124
11121
  "type": {
11125
11122
  "text": "number"
11126
- },
11127
- "description": "Determines the index of the selected item.",
11128
- "fieldName": "selectedIndex"
11123
+ }
11129
11124
  },
11130
11125
  {
11131
- "name": "previousActivePaneIndex",
11126
+ "name": "min-resize-height",
11127
+ "description": "The minimum height of the pane in pixels during resizing.",
11128
+ "default": "42",
11129
+ "fieldName": "minResizeHeight",
11130
+ "attribute": "min-resize-height",
11132
11131
  "type": {
11133
11132
  "text": "number"
11133
+ }
11134
+ },
11135
+ {
11136
+ "name": "header",
11137
+ "type": {
11138
+ "text": "string"
11134
11139
  },
11135
- "description": "Determines the index of the previously selected item.",
11136
- "fieldName": "previousActivePaneIndex"
11140
+ "default": "''",
11141
+ "description": "Defines the header label for the pane.",
11142
+ "fieldName": "header"
11137
11143
  },
11138
11144
  {
11139
- "name": "resourceStrings",
11145
+ "name": "disabled",
11146
+ "description": "Disables the pane and makes it non-interactive.",
11147
+ "default": "false",
11148
+ "fieldName": "disabled"
11149
+ },
11150
+ {
11151
+ "name": "size",
11152
+ "description": "Specifies the pane size.\nThis value is relative by default and used as a weight against sibling panes.\nWhen the parent uses fixed size mode, it is treated as an absolute pixel value.",
11153
+ "default": "100",
11140
11154
  "type": {
11141
- "text": "IgcDockManagerResourceStrings | undefined"
11155
+ "text": "number"
11142
11156
  },
11143
- "description": "The resource strings for the pane navigator.",
11144
- "fieldName": "resourceStrings"
11157
+ "fieldName": "size"
11145
11158
  }
11146
11159
  ],
11147
11160
  "mixins": [
@@ -11154,7 +11167,7 @@
11154
11167
  "name": "LitElement",
11155
11168
  "package": "lit"
11156
11169
  },
11157
- "tagName": "igc-pane-navigator",
11170
+ "tagName": "igc-content-pane",
11158
11171
  "customElement": true
11159
11172
  }
11160
11173
  ],
@@ -11163,44 +11176,20 @@
11163
11176
  "kind": "js",
11164
11177
  "name": "default",
11165
11178
  "declaration": {
11166
- "name": "IgcPaneNavigatorComponent",
11167
- "module": "src/components/dockmanager/pane-navigator/pane-navigator-component.ts"
11179
+ "name": "IgcContentPaneComponent",
11180
+ "module": "src/components/dockmanager/panes/content-pane-component.ts"
11168
11181
  }
11169
11182
  }
11170
11183
  ]
11171
11184
  },
11172
11185
  {
11173
11186
  "kind": "javascript-module",
11174
- "path": "src/components/dockmanager/panes/content-pane-component.ts",
11187
+ "path": "src/components/dockmanager/panes/document-host-component.ts",
11175
11188
  "declarations": [
11176
11189
  {
11177
11190
  "kind": "class",
11178
11191
  "description": "",
11179
- "name": "IgcContentPaneComponent",
11180
- "cssParts": [
11181
- {
11182
- "description": "The main wrapper of the content-pane component.",
11183
- "name": "content-pane"
11184
- },
11185
- {
11186
- "description": "Applied when the pane is disabled.",
11187
- "name": "disabled"
11188
- },
11189
- {
11190
- "description": "Applied when the pane is the only one in a floating container.",
11191
- "name": "single-floating"
11192
- }
11193
- ],
11194
- "slots": [
11195
- {
11196
- "description": "Default slot for pane content.",
11197
- "name": ""
11198
- },
11199
- {
11200
- "description": "Slot for projecting a custom header for the pane.",
11201
- "name": "header"
11202
- }
11203
- ],
11192
+ "name": "IgcDocumentHostComponent",
11204
11193
  "members": [
11205
11194
  {
11206
11195
  "kind": "field",
@@ -11211,7 +11200,7 @@
11211
11200
  "privacy": "public",
11212
11201
  "static": true,
11213
11202
  "readonly": true,
11214
- "default": "'igc-content-pane'"
11203
+ "default": "'igc-document-host'"
11215
11204
  },
11216
11205
  {
11217
11206
  "kind": "method",
@@ -11221,16 +11210,16 @@
11221
11210
  },
11222
11211
  {
11223
11212
  "kind": "field",
11224
- "name": "_contentId",
11213
+ "name": "_size",
11225
11214
  "type": {
11226
- "text": "string"
11215
+ "text": "number"
11227
11216
  },
11228
11217
  "privacy": "private",
11229
- "default": "''"
11218
+ "default": "IGC_DEFAULT_PANE_SIZE"
11230
11219
  },
11231
11220
  {
11232
11221
  "kind": "field",
11233
- "name": "_disabled",
11222
+ "name": "_parentUseFixedSize",
11234
11223
  "type": {
11235
11224
  "text": "boolean"
11236
11225
  },
@@ -11239,163 +11228,258 @@
11239
11228
  },
11240
11229
  {
11241
11230
  "kind": "field",
11242
- "name": "_isFlyout",
11243
- "type": {
11244
- "text": "boolean"
11245
- },
11246
- "privacy": "private",
11247
- "default": "false"
11231
+ "name": "parentUseFixedSize",
11232
+ "privacy": "public",
11233
+ "attribute": "parentUseFixedSize"
11248
11234
  },
11249
11235
  {
11250
11236
  "kind": "field",
11251
- "name": "_isSingleFloating",
11237
+ "name": "size",
11238
+ "privacy": "public",
11252
11239
  "type": {
11253
- "text": "boolean"
11240
+ "text": "number"
11254
11241
  },
11255
- "privacy": "private",
11256
- "default": "false"
11242
+ "attribute": "size"
11257
11243
  },
11258
11244
  {
11259
- "kind": "field",
11260
- "name": "_parentUseFixedSize",
11261
- "type": {
11262
- "text": "boolean"
11263
- },
11264
- "privacy": "private",
11265
- "default": "false"
11245
+ "kind": "method",
11246
+ "name": "_applyDynamicStyles",
11247
+ "privacy": "private"
11248
+ }
11249
+ ],
11250
+ "attributes": [
11251
+ {
11252
+ "name": "parentUseFixedSize",
11253
+ "fieldName": "parentUseFixedSize"
11266
11254
  },
11267
11255
  {
11268
- "kind": "field",
11269
- "name": "_size",
11256
+ "name": "size",
11270
11257
  "type": {
11271
11258
  "text": "number"
11272
11259
  },
11273
- "privacy": "private",
11274
- "default": "IGC_DEFAULT_PANE_SIZE"
11275
- },
11276
- {
11277
- "kind": "field",
11278
- "name": "_unpinnedSize",
11260
+ "fieldName": "size"
11261
+ }
11262
+ ],
11263
+ "superclass": {
11264
+ "name": "LitElement",
11265
+ "package": "lit"
11266
+ },
11267
+ "customElement": true
11268
+ }
11269
+ ],
11270
+ "exports": [
11271
+ {
11272
+ "kind": "js",
11273
+ "name": "default",
11274
+ "declaration": {
11275
+ "name": "IgcDocumentHostComponent",
11276
+ "module": "src/components/dockmanager/panes/document-host-component.ts"
11277
+ }
11278
+ }
11279
+ ]
11280
+ },
11281
+ {
11282
+ "kind": "javascript-module",
11283
+ "path": "src/components/dockmanager/panes/floating-pane-component.ts",
11284
+ "declarations": [
11285
+ {
11286
+ "kind": "class",
11287
+ "description": "",
11288
+ "name": "IgcFloatingPaneComponent",
11289
+ "cssParts": [
11290
+ {
11291
+ "description": "The root floating pane container.",
11292
+ "name": "floating-window"
11293
+ }
11294
+ ],
11295
+ "slots": [
11296
+ {
11297
+ "description": "Renders the floating pane header content.",
11298
+ "name": "header"
11299
+ },
11300
+ {
11301
+ "description": "Renders the main content of the floating pane.",
11302
+ "name": ""
11303
+ }
11304
+ ],
11305
+ "members": [
11306
+ {
11307
+ "kind": "field",
11308
+ "name": "tagName",
11279
11309
  "type": {
11280
- "text": "number"
11310
+ "text": "string"
11281
11311
  },
11282
- "privacy": "private",
11283
- "default": "IGC_DEFAULT_UNPIN_PANE_SIZE"
11312
+ "privacy": "public",
11313
+ "static": true,
11314
+ "readonly": true,
11315
+ "default": "'igc-floating-pane'"
11284
11316
  },
11285
11317
  {
11286
- "kind": "field",
11287
- "name": "contentId",
11318
+ "kind": "method",
11319
+ "name": "register",
11288
11320
  "privacy": "public",
11289
- "description": "Sets a unique identifier for the content pane.\nUsed for targeting slotted content.",
11290
- "attribute": "content-id"
11321
+ "static": true
11291
11322
  },
11292
11323
  {
11293
11324
  "kind": "field",
11294
- "name": "header",
11325
+ "name": "_floatingLocation",
11295
11326
  "type": {
11296
- "text": "string"
11327
+ "text": "IgcDockManagerPoint"
11297
11328
  },
11298
- "privacy": "public",
11299
- "default": "''",
11300
- "description": "Defines the header label for the pane.",
11301
- "attribute": "header"
11329
+ "privacy": "private"
11302
11330
  },
11303
11331
  {
11304
11332
  "kind": "field",
11305
- "name": "disabled",
11306
- "privacy": "public",
11307
- "description": "Disables the pane and makes it non-interactive.",
11308
- "default": "false",
11309
- "attribute": "disabled"
11333
+ "name": "_floatingHeight",
11334
+ "privacy": "private",
11335
+ "default": "IGC_DEFAULT_PANE_SIZE"
11310
11336
  },
11311
11337
  {
11312
11338
  "kind": "field",
11313
- "name": "isFlyout",
11314
- "privacy": "public",
11315
- "description": "Indicates whether the pane is currently in a flyout state.",
11316
- "default": "false",
11317
- "attribute": "is-flyout"
11339
+ "name": "_floatingWidth",
11340
+ "privacy": "private",
11341
+ "default": "IGC_DEFAULT_PANE_SIZE"
11318
11342
  },
11319
11343
  {
11320
11344
  "kind": "field",
11321
- "name": "isSingleFloating",
11345
+ "name": "_floatingMinHeight",
11346
+ "privacy": "private",
11347
+ "default": "IGC_DEFAULT_PANE_SIZE"
11348
+ },
11349
+ {
11350
+ "kind": "field",
11351
+ "name": "_floatingMinWidth",
11352
+ "privacy": "private",
11353
+ "default": "IGC_DEFAULT_PANE_SIZE"
11354
+ },
11355
+ {
11356
+ "kind": "field",
11357
+ "name": "_maximized",
11358
+ "type": {
11359
+ "text": "boolean"
11360
+ },
11361
+ "privacy": "private",
11362
+ "default": "false"
11363
+ },
11364
+ {
11365
+ "kind": "field",
11366
+ "name": "allowResize",
11367
+ "type": {
11368
+ "text": "boolean"
11369
+ },
11322
11370
  "privacy": "public",
11323
- "description": "Indicates that the pane is a single floating item.",
11324
- "default": "false",
11325
- "attribute": "is-single-floating"
11371
+ "default": "true",
11372
+ "description": "Indicates whether the floating pane can be resized.",
11373
+ "attribute": "allowResize"
11326
11374
  },
11327
11375
  {
11328
11376
  "kind": "field",
11329
- "name": "parentUseFixedSize",
11377
+ "name": "floatingLocation",
11330
11378
  "privacy": "public",
11331
- "description": "Indicates if the parent uses fixed pixel sizes for its child panes.\nWhen enabled, pane sizes are treated as absolute values instead of relative weights.",
11332
- "default": "false",
11333
- "attribute": "parent-use-fixed-size"
11379
+ "description": "The current location of the floating pane.\nDefaults to top-left corner position.",
11380
+ "type": {
11381
+ "text": "IgcDockManagerPoint"
11382
+ },
11383
+ "attribute": "floatingLocation"
11334
11384
  },
11335
11385
  {
11336
11386
  "kind": "field",
11337
- "name": "size",
11387
+ "name": "floatingWidth",
11338
11388
  "privacy": "public",
11339
- "description": "Specifies the pane size.\nThis value is relative by default and used as a weight against sibling panes.\nWhen the parent uses fixed size mode, it is treated as an absolute pixel value.",
11389
+ "description": "The current width of the floating pane.",
11340
11390
  "default": "100",
11341
11391
  "type": {
11342
11392
  "text": "number"
11343
11393
  },
11344
- "attribute": "size"
11394
+ "attribute": "floatingWidth"
11345
11395
  },
11346
11396
  {
11347
11397
  "kind": "field",
11348
- "name": "unpinnedSize",
11398
+ "name": "floatingHeight",
11349
11399
  "privacy": "public",
11350
- "description": "Specifies the pane's unpinned size when in flyout state.",
11400
+ "description": "The current height of the floating pane.",
11351
11401
  "default": "100",
11352
- "attribute": "unpinned-size",
11353
11402
  "type": {
11354
11403
  "text": "number"
11355
- }
11404
+ },
11405
+ "attribute": "floatingHeight"
11356
11406
  },
11357
11407
  {
11358
11408
  "kind": "field",
11359
- "name": "_minResizeWidth",
11360
- "privacy": "private",
11361
- "default": "IGC_RESIZING_MIN_SIZE"
11409
+ "name": "hasHeader",
11410
+ "type": {
11411
+ "text": "boolean"
11412
+ },
11413
+ "privacy": "public",
11414
+ "default": "false",
11415
+ "description": "Indicates whether the pane has a header section.",
11416
+ "attribute": "hasHeader"
11362
11417
  },
11363
11418
  {
11364
11419
  "kind": "field",
11365
- "name": "_minResizeHeight",
11366
- "privacy": "private",
11367
- "default": "IGC_RESIZING_MIN_SIZE"
11420
+ "name": "floatingMinHeight",
11421
+ "privacy": "public",
11422
+ "description": "The minimum height constraint for the floating pane.",
11423
+ "default": "100",
11424
+ "type": {
11425
+ "text": "number"
11426
+ },
11427
+ "attribute": "floatingMinHeight"
11368
11428
  },
11369
11429
  {
11370
11430
  "kind": "field",
11371
- "name": "minResizeWidth",
11431
+ "name": "floatingMinWidth",
11372
11432
  "privacy": "public",
11373
- "description": "The minimum width of the pane in pixels during resizing.",
11374
- "default": "42",
11375
- "attribute": "min-resize-width",
11433
+ "description": "The minimum width constraint for the floating pane.",
11434
+ "default": "100",
11376
11435
  "type": {
11377
11436
  "text": "number"
11378
- }
11437
+ },
11438
+ "attribute": "floatingMinWidth"
11379
11439
  },
11380
11440
  {
11381
11441
  "kind": "field",
11382
- "name": "minResizeHeight",
11383
- "privacy": "public",
11384
- "description": "The minimum height of the pane in pixels during resizing.",
11385
- "default": "42",
11386
- "attribute": "min-resize-height",
11442
+ "name": "floatingId",
11387
11443
  "type": {
11388
- "text": "number"
11389
- }
11444
+ "text": "string"
11445
+ },
11446
+ "privacy": "public",
11447
+ "default": "''",
11448
+ "description": "A unique identifier for the floating pane.",
11449
+ "attribute": "floatingId"
11450
+ },
11451
+ {
11452
+ "kind": "field",
11453
+ "name": "maximized",
11454
+ "privacy": "public",
11455
+ "description": "Indicates whether the floating pane is currently maximized.",
11456
+ "default": "false",
11457
+ "attribute": "maximized"
11458
+ },
11459
+ {
11460
+ "kind": "field",
11461
+ "name": "_dynamicStyles",
11462
+ "privacy": "private",
11463
+ "readonly": true
11390
11464
  },
11391
11465
  {
11392
11466
  "kind": "method",
11393
- "name": "_updateFlex",
11467
+ "name": "_applyDynamicStyles",
11394
11468
  "privacy": "private"
11395
11469
  },
11396
11470
  {
11397
- "kind": "method",
11398
- "name": "_updateParts",
11471
+ "kind": "field",
11472
+ "name": "_handleResizeStart",
11473
+ "privacy": "private"
11474
+ },
11475
+ {
11476
+ "kind": "field",
11477
+ "name": "_handleResizeMove",
11478
+ "privacy": "private"
11479
+ },
11480
+ {
11481
+ "kind": "field",
11482
+ "name": "_handleResizeEnd",
11399
11483
  "privacy": "private"
11400
11484
  },
11401
11485
  {
@@ -11536,8 +11620,16 @@
11536
11620
  ],
11537
11621
  "events": [
11538
11622
  {
11539
- "description": "Emitted after the component has rendered.",
11540
- "name": "igcRendered"
11623
+ "description": "Emitted when a resize interaction begins.",
11624
+ "name": "wndResizeStart"
11625
+ },
11626
+ {
11627
+ "description": "Emitted during the pane resize movement.",
11628
+ "name": "wndResizeMove"
11629
+ },
11630
+ {
11631
+ "description": "Emitted when the resize interaction ends.",
11632
+ "name": "wndResizeEnd"
11541
11633
  },
11542
11634
  {
11543
11635
  "type": {
@@ -11551,85 +11643,81 @@
11551
11643
  ],
11552
11644
  "attributes": [
11553
11645
  {
11554
- "name": "content-id",
11555
- "description": "Sets a unique identifier for the content pane.\nUsed for targeting slotted content.",
11556
- "fieldName": "contentId",
11557
- "attribute": "content-id"
11646
+ "name": "allowResize",
11647
+ "type": {
11648
+ "text": "boolean"
11649
+ },
11650
+ "default": "true",
11651
+ "description": "Indicates whether the floating pane can be resized.",
11652
+ "fieldName": "allowResize"
11558
11653
  },
11559
11654
  {
11560
- "name": "is-flyout",
11561
- "description": "Indicates whether the pane is currently in a flyout state.",
11562
- "default": "false",
11563
- "fieldName": "isFlyout",
11564
- "attribute": "is-flyout"
11655
+ "name": "floatingLocation",
11656
+ "description": "The current location of the floating pane.\nDefaults to top-left corner position.",
11657
+ "type": {
11658
+ "text": "IgcDockManagerPoint"
11659
+ },
11660
+ "fieldName": "floatingLocation"
11565
11661
  },
11566
11662
  {
11567
- "name": "is-single-floating",
11568
- "description": "Indicates that the pane is a single floating item.",
11569
- "default": "false",
11570
- "fieldName": "isSingleFloating",
11571
- "attribute": "is-single-floating"
11572
- },
11573
- {
11574
- "name": "parent-use-fixed-size",
11575
- "description": "Indicates if the parent uses fixed pixel sizes for its child panes.\nWhen enabled, pane sizes are treated as absolute values instead of relative weights.",
11576
- "default": "false",
11577
- "fieldName": "parentUseFixedSize",
11578
- "attribute": "parent-use-fixed-size"
11663
+ "name": "floatingWidth",
11664
+ "description": "The current width of the floating pane.",
11665
+ "default": "100",
11666
+ "type": {
11667
+ "text": "number"
11668
+ },
11669
+ "fieldName": "floatingWidth"
11579
11670
  },
11580
11671
  {
11581
- "name": "unpinned-size",
11582
- "description": "Specifies the pane's unpinned size when in flyout state.",
11672
+ "name": "floatingHeight",
11673
+ "description": "The current height of the floating pane.",
11583
11674
  "default": "100",
11584
- "fieldName": "unpinnedSize",
11585
- "attribute": "unpinned-size",
11586
11675
  "type": {
11587
11676
  "text": "number"
11588
- }
11677
+ },
11678
+ "fieldName": "floatingHeight"
11589
11679
  },
11590
11680
  {
11591
- "name": "min-resize-width",
11592
- "description": "The minimum width of the pane in pixels during resizing.",
11593
- "default": "42",
11594
- "fieldName": "minResizeWidth",
11595
- "attribute": "min-resize-width",
11681
+ "name": "hasHeader",
11682
+ "type": {
11683
+ "text": "boolean"
11684
+ },
11685
+ "default": "false",
11686
+ "description": "Indicates whether the pane has a header section.",
11687
+ "fieldName": "hasHeader"
11688
+ },
11689
+ {
11690
+ "name": "floatingMinHeight",
11691
+ "description": "The minimum height constraint for the floating pane.",
11692
+ "default": "100",
11596
11693
  "type": {
11597
11694
  "text": "number"
11598
- }
11695
+ },
11696
+ "fieldName": "floatingMinHeight"
11599
11697
  },
11600
11698
  {
11601
- "name": "min-resize-height",
11602
- "description": "The minimum height of the pane in pixels during resizing.",
11603
- "default": "42",
11604
- "fieldName": "minResizeHeight",
11605
- "attribute": "min-resize-height",
11699
+ "name": "floatingMinWidth",
11700
+ "description": "The minimum width constraint for the floating pane.",
11701
+ "default": "100",
11606
11702
  "type": {
11607
11703
  "text": "number"
11608
- }
11704
+ },
11705
+ "fieldName": "floatingMinWidth"
11609
11706
  },
11610
11707
  {
11611
- "name": "header",
11708
+ "name": "floatingId",
11612
11709
  "type": {
11613
11710
  "text": "string"
11614
11711
  },
11615
11712
  "default": "''",
11616
- "description": "Defines the header label for the pane.",
11617
- "fieldName": "header"
11713
+ "description": "A unique identifier for the floating pane.",
11714
+ "fieldName": "floatingId"
11618
11715
  },
11619
11716
  {
11620
- "name": "disabled",
11621
- "description": "Disables the pane and makes it non-interactive.",
11717
+ "name": "maximized",
11718
+ "description": "Indicates whether the floating pane is currently maximized.",
11622
11719
  "default": "false",
11623
- "fieldName": "disabled"
11624
- },
11625
- {
11626
- "name": "size",
11627
- "description": "Specifies the pane size.\nThis value is relative by default and used as a weight against sibling panes.\nWhen the parent uses fixed size mode, it is treated as an absolute pixel value.",
11628
- "default": "100",
11629
- "type": {
11630
- "text": "number"
11631
- },
11632
- "fieldName": "size"
11720
+ "fieldName": "maximized"
11633
11721
  }
11634
11722
  ],
11635
11723
  "mixins": [
@@ -11642,7 +11730,7 @@
11642
11730
  "name": "LitElement",
11643
11731
  "package": "lit"
11644
11732
  },
11645
- "tagName": "igc-content-pane",
11733
+ "tagName": "igc-floating-pane",
11646
11734
  "customElement": true
11647
11735
  }
11648
11736
  ],
@@ -11651,130 +11739,44 @@
11651
11739
  "kind": "js",
11652
11740
  "name": "default",
11653
11741
  "declaration": {
11654
- "name": "IgcContentPaneComponent",
11655
- "module": "src/components/dockmanager/panes/content-pane-component.ts"
11742
+ "name": "IgcFloatingPaneComponent",
11743
+ "module": "src/components/dockmanager/panes/floating-pane-component.ts"
11656
11744
  }
11657
11745
  }
11658
11746
  ]
11659
11747
  },
11660
11748
  {
11661
11749
  "kind": "javascript-module",
11662
- "path": "src/components/dockmanager/panes/document-host-component.ts",
11750
+ "path": "src/components/dockmanager/panes/pane-header-component.ts",
11663
11751
  "declarations": [
11664
11752
  {
11665
11753
  "kind": "class",
11666
11754
  "description": "",
11667
- "name": "IgcDocumentHostComponent",
11668
- "members": [
11669
- {
11670
- "kind": "field",
11671
- "name": "tagName",
11672
- "type": {
11673
- "text": "string"
11674
- },
11675
- "privacy": "public",
11676
- "static": true,
11677
- "readonly": true,
11678
- "default": "'igc-document-host'"
11679
- },
11680
- {
11681
- "kind": "method",
11682
- "name": "register",
11683
- "privacy": "public",
11684
- "static": true
11685
- },
11686
- {
11687
- "kind": "field",
11688
- "name": "_size",
11689
- "type": {
11690
- "text": "number"
11691
- },
11692
- "privacy": "private",
11693
- "default": "IGC_DEFAULT_PANE_SIZE"
11694
- },
11755
+ "name": "IgcPaneHeaderComponent",
11756
+ "slots": [
11695
11757
  {
11696
- "kind": "field",
11697
- "name": "_parentUseFixedSize",
11698
- "type": {
11699
- "text": "boolean"
11700
- },
11701
- "privacy": "private",
11702
- "default": "false"
11758
+ "description": "Renders the pane header title.",
11759
+ "name": ""
11703
11760
  },
11704
11761
  {
11705
- "kind": "field",
11706
- "name": "parentUseFixedSize",
11707
- "privacy": "public",
11708
- "attribute": "parentUseFixedSize"
11762
+ "description": "Renders a custom close button.",
11763
+ "name": "paneHeaderCloseButton"
11709
11764
  },
11710
11765
  {
11711
- "kind": "field",
11712
- "name": "size",
11713
- "privacy": "public",
11714
- "type": {
11715
- "text": "number"
11716
- },
11717
- "attribute": "size"
11766
+ "description": "Renders a custom maximize button.",
11767
+ "name": "paneHeaderMaximizeButton"
11718
11768
  },
11719
11769
  {
11720
- "kind": "method",
11721
- "name": "_applyDynamicStyles",
11722
- "privacy": "private"
11723
- }
11724
- ],
11725
- "attributes": [
11726
- {
11727
- "name": "parentUseFixedSize",
11728
- "fieldName": "parentUseFixedSize"
11770
+ "description": "Renders a custom minimize button.",
11771
+ "name": "paneHeaderMinimizeButton"
11729
11772
  },
11730
11773
  {
11731
- "name": "size",
11732
- "type": {
11733
- "text": "number"
11734
- },
11735
- "fieldName": "size"
11736
- }
11737
- ],
11738
- "superclass": {
11739
- "name": "LitElement",
11740
- "package": "lit"
11741
- },
11742
- "customElement": true
11743
- }
11744
- ],
11745
- "exports": [
11746
- {
11747
- "kind": "js",
11748
- "name": "default",
11749
- "declaration": {
11750
- "name": "IgcDocumentHostComponent",
11751
- "module": "src/components/dockmanager/panes/document-host-component.ts"
11752
- }
11753
- }
11754
- ]
11755
- },
11756
- {
11757
- "kind": "javascript-module",
11758
- "path": "src/components/dockmanager/panes/floating-pane-component.ts",
11759
- "declarations": [
11760
- {
11761
- "kind": "class",
11762
- "description": "",
11763
- "name": "IgcFloatingPaneComponent",
11764
- "cssParts": [
11765
- {
11766
- "description": "The root floating pane container.",
11767
- "name": "floating-window"
11768
- }
11769
- ],
11770
- "slots": [
11771
- {
11772
- "description": "Renders the floating pane header content.",
11773
- "name": "header"
11774
+ "description": "Renders a custom pin button.",
11775
+ "name": "paneHeaderPinButton"
11774
11776
  },
11775
11777
  {
11776
- "description": "Renders the main content of the floating pane.",
11777
- "name": ""
11778
+ "description": "Renders a custom unpin button.",
11779
+ "name": "paneHeaderUnpinButton"
11778
11780
  }
11779
11781
  ],
11780
11782
  "members": [
@@ -11787,7 +11789,7 @@
11787
11789
  "privacy": "public",
11788
11790
  "static": true,
11789
11791
  "readonly": true,
11790
- "default": "'igc-floating-pane'"
11792
+ "default": "'igc-pane-header'"
11791
11793
  },
11792
11794
  {
11793
11795
  "kind": "method",
@@ -11797,166 +11799,231 @@
11797
11799
  },
11798
11800
  {
11799
11801
  "kind": "field",
11800
- "name": "_floatingLocation",
11802
+ "name": "_dragService",
11801
11803
  "type": {
11802
- "text": "IgcDockManagerPoint"
11804
+ "text": "IgcDragService"
11803
11805
  },
11804
- "privacy": "private"
11805
- },
11806
- {
11807
- "kind": "field",
11808
- "name": "_floatingHeight",
11809
- "privacy": "private",
11810
- "default": "IGC_DEFAULT_PANE_SIZE"
11811
- },
11812
- {
11813
- "kind": "field",
11814
- "name": "_floatingWidth",
11815
11806
  "privacy": "private",
11816
- "default": "IGC_DEFAULT_PANE_SIZE"
11807
+ "default": "new IgcDragService(this)"
11817
11808
  },
11818
11809
  {
11819
11810
  "kind": "field",
11820
- "name": "_floatingMinHeight",
11811
+ "name": "commonParts",
11821
11812
  "privacy": "private",
11822
- "default": "IGC_DEFAULT_PANE_SIZE"
11813
+ "readonly": true
11823
11814
  },
11824
11815
  {
11825
11816
  "kind": "field",
11826
- "name": "_floatingMinWidth",
11827
- "privacy": "private",
11828
- "default": "IGC_DEFAULT_PANE_SIZE"
11817
+ "name": "pinned",
11818
+ "type": {
11819
+ "text": "boolean"
11820
+ },
11821
+ "privacy": "public",
11822
+ "default": "false",
11823
+ "description": "Whether the pane is currently pinned.",
11824
+ "attribute": "pinned"
11829
11825
  },
11830
11826
  {
11831
11827
  "kind": "field",
11832
- "name": "_maximized",
11828
+ "name": "maximized",
11833
11829
  "type": {
11834
11830
  "text": "boolean"
11835
11831
  },
11836
- "privacy": "private",
11837
- "default": "false"
11832
+ "privacy": "public",
11833
+ "default": "false",
11834
+ "description": "Whether the pane is currently maximized.",
11835
+ "attribute": "maximized"
11838
11836
  },
11839
11837
  {
11840
11838
  "kind": "field",
11841
- "name": "allowResize",
11839
+ "name": "disabled",
11842
11840
  "type": {
11843
11841
  "text": "boolean"
11844
11842
  },
11845
11843
  "privacy": "public",
11846
- "default": "true",
11847
- "description": "Indicates whether the floating pane can be resized.",
11848
- "attribute": "allowResize"
11844
+ "default": "false",
11845
+ "description": "Disables interaction with the pane header.",
11846
+ "attribute": "disabled"
11849
11847
  },
11850
11848
  {
11851
11849
  "kind": "field",
11852
- "name": "floatingLocation",
11853
- "privacy": "public",
11854
- "description": "The current location of the floating pane.\nDefaults to top-left corner position.",
11850
+ "name": "isFloating",
11855
11851
  "type": {
11856
- "text": "IgcDockManagerPoint"
11852
+ "text": "boolean"
11857
11853
  },
11858
- "attribute": "floatingLocation"
11854
+ "privacy": "public",
11855
+ "default": "false",
11856
+ "description": "Indicates whether the header is used in a floating window.",
11857
+ "attribute": "is-floating"
11859
11858
  },
11860
11859
  {
11861
11860
  "kind": "field",
11862
- "name": "floatingWidth",
11863
- "privacy": "public",
11864
- "description": "The current width of the floating pane.",
11865
- "default": "100",
11861
+ "name": "isFloatingPaneHeader",
11866
11862
  "type": {
11867
- "text": "number"
11863
+ "text": "boolean"
11868
11864
  },
11869
- "attribute": "floatingWidth"
11865
+ "privacy": "public",
11866
+ "default": "false",
11867
+ "description": "Indicates that the header is used in a floating pane context.",
11868
+ "attribute": "is-floating-pane-header"
11870
11869
  },
11871
11870
  {
11872
11871
  "kind": "field",
11873
- "name": "floatingHeight",
11874
- "privacy": "public",
11875
- "description": "The current height of the floating pane.",
11876
- "default": "100",
11872
+ "name": "isActive",
11877
11873
  "type": {
11878
- "text": "number"
11874
+ "text": "boolean"
11879
11875
  },
11880
- "attribute": "floatingHeight"
11876
+ "privacy": "public",
11877
+ "default": "false",
11878
+ "description": "Marks the header as active.",
11879
+ "attribute": "is-active"
11881
11880
  },
11882
11881
  {
11883
11882
  "kind": "field",
11884
- "name": "hasHeader",
11883
+ "name": "forcedDrag",
11885
11884
  "type": {
11886
11885
  "text": "boolean"
11887
11886
  },
11888
11887
  "privacy": "public",
11889
11888
  "default": "false",
11890
- "description": "Indicates whether the pane has a header section.",
11891
- "attribute": "hasHeader"
11889
+ "description": "Forces drag behavior on the pane header.",
11890
+ "attribute": "forced-drag"
11892
11891
  },
11893
11892
  {
11894
11893
  "kind": "field",
11895
- "name": "floatingMinHeight",
11896
- "privacy": "public",
11897
- "description": "The minimum height constraint for the floating pane.",
11898
- "default": "100",
11894
+ "name": "allowClose",
11899
11895
  "type": {
11900
- "text": "number"
11896
+ "text": "boolean"
11901
11897
  },
11902
- "attribute": "floatingMinHeight"
11898
+ "privacy": "public",
11899
+ "default": "true",
11900
+ "description": "Enables or disables closing.",
11901
+ "attribute": "allow-close"
11903
11902
  },
11904
11903
  {
11905
11904
  "kind": "field",
11906
- "name": "floatingMinWidth",
11907
- "privacy": "public",
11908
- "description": "The minimum width constraint for the floating pane.",
11909
- "default": "100",
11905
+ "name": "allowMaximize",
11910
11906
  "type": {
11911
- "text": "number"
11907
+ "text": "boolean"
11912
11908
  },
11913
- "attribute": "floatingMinWidth"
11909
+ "privacy": "public",
11910
+ "default": "true",
11911
+ "description": "Enables or disables maximizing.",
11912
+ "attribute": "allow-maximize"
11914
11913
  },
11915
11914
  {
11916
11915
  "kind": "field",
11917
- "name": "floatingId",
11916
+ "name": "allowPinning",
11918
11917
  "type": {
11919
- "text": "string"
11918
+ "text": "boolean"
11920
11919
  },
11921
11920
  "privacy": "public",
11922
- "default": "''",
11923
- "description": "A unique identifier for the floating pane.",
11924
- "attribute": "floatingId"
11921
+ "default": "true",
11922
+ "description": "Enables or disables pinning.",
11923
+ "attribute": "allow-pinning"
11925
11924
  },
11926
11925
  {
11927
11926
  "kind": "field",
11928
- "name": "maximized",
11927
+ "name": "pane",
11928
+ "type": {
11929
+ "text": "IgcContentPane"
11930
+ },
11929
11931
  "privacy": "public",
11930
- "description": "Indicates whether the floating pane is currently maximized.",
11931
- "default": "false",
11932
- "attribute": "maximized"
11932
+ "description": "Reference to the content pane associated with this header."
11933
11933
  },
11934
11934
  {
11935
11935
  "kind": "field",
11936
- "name": "_dynamicStyles",
11937
- "privacy": "private",
11938
- "readonly": true
11936
+ "name": "resourceStrings",
11937
+ "type": {
11938
+ "text": "IgcDockManagerResourceStrings | undefined"
11939
+ },
11940
+ "description": "Localized strings used for icon button accessibility."
11939
11941
  },
11940
11942
  {
11941
11943
  "kind": "method",
11942
- "name": "_applyDynamicStyles",
11944
+ "name": "forceDragging",
11943
11945
  "privacy": "private"
11944
11946
  },
11947
+ {
11948
+ "kind": "method",
11949
+ "name": "visualStateChanged",
11950
+ "privacy": "protected"
11951
+ },
11945
11952
  {
11946
11953
  "kind": "field",
11947
- "name": "_handleResizeStart",
11954
+ "name": "_handleDragStart",
11948
11955
  "privacy": "private"
11949
11956
  },
11950
11957
  {
11951
11958
  "kind": "field",
11952
- "name": "_handleResizeMove",
11959
+ "name": "_handleDragMove",
11953
11960
  "privacy": "private"
11954
11961
  },
11955
11962
  {
11956
11963
  "kind": "field",
11957
- "name": "_handleResizeEnd",
11964
+ "name": "_handleDragEnd",
11965
+ "privacy": "private"
11966
+ },
11967
+ {
11968
+ "kind": "field",
11969
+ "name": "_handlePinButtonClick",
11970
+ "privacy": "private"
11971
+ },
11972
+ {
11973
+ "kind": "field",
11974
+ "name": "_handleMaximizeButtonClick",
11975
+ "privacy": "private"
11976
+ },
11977
+ {
11978
+ "kind": "field",
11979
+ "name": "_handleCloseButtonClick",
11980
+ "privacy": "private"
11981
+ },
11982
+ {
11983
+ "kind": "method",
11984
+ "name": "renderCloseButton",
11985
+ "privacy": "private"
11986
+ },
11987
+ {
11988
+ "kind": "method",
11989
+ "name": "renderMaximizeButton",
11990
+ "privacy": "private"
11991
+ },
11992
+ {
11993
+ "kind": "method",
11994
+ "name": "renderMinimizeButton",
11995
+ "privacy": "private"
11996
+ },
11997
+ {
11998
+ "kind": "method",
11999
+ "name": "renderPinButton",
11958
12000
  "privacy": "private"
11959
12001
  },
12002
+ {
12003
+ "kind": "method",
12004
+ "name": "renderUnpinButton",
12005
+ "privacy": "private"
12006
+ },
12007
+ {
12008
+ "kind": "field",
12009
+ "name": "dragEdgeTolerance",
12010
+ "type": {
12011
+ "text": "number"
12012
+ },
12013
+ "default": "3"
12014
+ },
12015
+ {
12016
+ "kind": "field",
12017
+ "name": "dragStart"
12018
+ },
12019
+ {
12020
+ "kind": "field",
12021
+ "name": "dragMove"
12022
+ },
12023
+ {
12024
+ "kind": "field",
12025
+ "name": "dragEnd"
12026
+ },
11960
12027
  {
11961
12028
  "kind": "method",
11962
12029
  "name": "addEventListener",
@@ -12095,16 +12162,36 @@
12095
12162
  ],
12096
12163
  "events": [
12097
12164
  {
12098
- "description": "Emitted when a resize interaction begins.",
12099
- "name": "wndResizeStart"
12165
+ "description": "Emitted when dragging starts on the header.",
12166
+ "name": "igcPaneHeaderDragStart"
12100
12167
  },
12101
12168
  {
12102
- "description": "Emitted during the pane resize movement.",
12103
- "name": "wndResizeMove"
12169
+ "description": "Emitted during header dragging.",
12170
+ "name": "igcPaneHeaderDragMoved"
12104
12171
  },
12105
12172
  {
12106
- "description": "Emitted when the resize interaction ends.",
12107
- "name": "wndResizeEnd"
12173
+ "description": "Emitted when dragging ends on the header.",
12174
+ "name": "igcPaneHeaderDragEnd"
12175
+ },
12176
+ {
12177
+ "description": "Emitted when the pin button is clicked.",
12178
+ "name": "igcPinToggle"
12179
+ },
12180
+ {
12181
+ "description": "Emitted when the maximize button is clicked.",
12182
+ "name": "igcMaximize"
12183
+ },
12184
+ {
12185
+ "description": "Emitted when the close button is clicked.",
12186
+ "name": "igcClose"
12187
+ },
12188
+ {
12189
+ "description": "Emitted when the element is connected to the DOM.",
12190
+ "name": "elementConnected"
12191
+ },
12192
+ {
12193
+ "description": "Emitted when the element is disconnected from the DOM.",
12194
+ "name": "elementDisconnected"
12108
12195
  },
12109
12196
  {
12110
12197
  "type": {
@@ -12118,81 +12205,101 @@
12118
12205
  ],
12119
12206
  "attributes": [
12120
12207
  {
12121
- "name": "allowResize",
12208
+ "name": "is-floating",
12122
12209
  "type": {
12123
12210
  "text": "boolean"
12124
12211
  },
12125
- "default": "true",
12126
- "description": "Indicates whether the floating pane can be resized.",
12127
- "fieldName": "allowResize"
12212
+ "default": "false",
12213
+ "description": "Indicates whether the header is used in a floating window.",
12214
+ "fieldName": "isFloating",
12215
+ "attribute": "is-floating"
12128
12216
  },
12129
12217
  {
12130
- "name": "floatingLocation",
12131
- "description": "The current location of the floating pane.\nDefaults to top-left corner position.",
12218
+ "name": "is-floating-pane-header",
12132
12219
  "type": {
12133
- "text": "IgcDockManagerPoint"
12220
+ "text": "boolean"
12134
12221
  },
12135
- "fieldName": "floatingLocation"
12222
+ "default": "false",
12223
+ "description": "Indicates that the header is used in a floating pane context.",
12224
+ "fieldName": "isFloatingPaneHeader",
12225
+ "attribute": "is-floating-pane-header"
12136
12226
  },
12137
12227
  {
12138
- "name": "floatingWidth",
12139
- "description": "The current width of the floating pane.",
12140
- "default": "100",
12228
+ "name": "is-active",
12141
12229
  "type": {
12142
- "text": "number"
12230
+ "text": "boolean"
12143
12231
  },
12144
- "fieldName": "floatingWidth"
12232
+ "default": "false",
12233
+ "description": "Marks the header as active.",
12234
+ "fieldName": "isActive",
12235
+ "attribute": "is-active"
12145
12236
  },
12146
12237
  {
12147
- "name": "floatingHeight",
12148
- "description": "The current height of the floating pane.",
12149
- "default": "100",
12238
+ "name": "forced-drag",
12150
12239
  "type": {
12151
- "text": "number"
12240
+ "text": "boolean"
12152
12241
  },
12153
- "fieldName": "floatingHeight"
12242
+ "default": "false",
12243
+ "description": "Forces drag behavior on the pane header.",
12244
+ "fieldName": "forcedDrag",
12245
+ "attribute": "forced-drag"
12154
12246
  },
12155
12247
  {
12156
- "name": "hasHeader",
12248
+ "name": "allow-close",
12157
12249
  "type": {
12158
12250
  "text": "boolean"
12159
12251
  },
12160
- "default": "false",
12161
- "description": "Indicates whether the pane has a header section.",
12162
- "fieldName": "hasHeader"
12252
+ "default": "true",
12253
+ "description": "Enables or disables closing.",
12254
+ "fieldName": "allowClose",
12255
+ "attribute": "allow-close"
12163
12256
  },
12164
12257
  {
12165
- "name": "floatingMinHeight",
12166
- "description": "The minimum height constraint for the floating pane.",
12167
- "default": "100",
12258
+ "name": "allow-maximize",
12168
12259
  "type": {
12169
- "text": "number"
12260
+ "text": "boolean"
12170
12261
  },
12171
- "fieldName": "floatingMinHeight"
12262
+ "default": "true",
12263
+ "description": "Enables or disables maximizing.",
12264
+ "fieldName": "allowMaximize",
12265
+ "attribute": "allow-maximize"
12172
12266
  },
12173
12267
  {
12174
- "name": "floatingMinWidth",
12175
- "description": "The minimum width constraint for the floating pane.",
12176
- "default": "100",
12268
+ "name": "allow-pinning",
12177
12269
  "type": {
12178
- "text": "number"
12270
+ "text": "boolean"
12179
12271
  },
12180
- "fieldName": "floatingMinWidth"
12272
+ "default": "true",
12273
+ "description": "Enables or disables pinning.",
12274
+ "fieldName": "allowPinning",
12275
+ "attribute": "allow-pinning"
12181
12276
  },
12182
12277
  {
12183
- "name": "floatingId",
12278
+ "name": "pinned",
12184
12279
  "type": {
12185
- "text": "string"
12280
+ "text": "boolean"
12186
12281
  },
12187
- "default": "''",
12188
- "description": "A unique identifier for the floating pane.",
12189
- "fieldName": "floatingId"
12282
+ "default": "false",
12283
+ "description": "Whether the pane is currently pinned.",
12284
+ "fieldName": "pinned"
12190
12285
  },
12191
12286
  {
12192
12287
  "name": "maximized",
12193
- "description": "Indicates whether the floating pane is currently maximized.",
12288
+ "type": {
12289
+ "text": "boolean"
12290
+ },
12194
12291
  "default": "false",
12292
+ "description": "Whether the pane is currently maximized.",
12195
12293
  "fieldName": "maximized"
12294
+ },
12295
+ {
12296
+ "name": "disabled",
12297
+ "type": {
12298
+ "text": "boolean"
12299
+ },
12300
+ "default": "false",
12301
+ "description": "Disables interaction with the pane header.",
12302
+ "fieldName": "disabled"
12196
12303
  }
12197
12304
  ],
12198
12305
  "mixins": [
@@ -12205,7 +12312,7 @@
12205
12312
  "name": "LitElement",
12206
12313
  "package": "lit"
12207
12314
  },
12208
- "tagName": "igc-floating-pane",
12315
+ "tagName": "igc-pane-header",
12209
12316
  "customElement": true
12210
12317
  }
12211
12318
  ],
@@ -12214,46 +12321,20 @@
12214
12321
  "kind": "js",
12215
12322
  "name": "default",
12216
12323
  "declaration": {
12217
- "name": "IgcFloatingPaneComponent",
12218
- "module": "src/components/dockmanager/panes/floating-pane-component.ts"
12324
+ "name": "IgcPaneHeaderComponent",
12325
+ "module": "src/components/dockmanager/panes/pane-header-component.ts"
12219
12326
  }
12220
12327
  }
12221
12328
  ]
12222
12329
  },
12223
12330
  {
12224
12331
  "kind": "javascript-module",
12225
- "path": "src/components/dockmanager/panes/pane-header-component.ts",
12332
+ "path": "src/components/dockmanager/panes/resizer-component.ts",
12226
12333
  "declarations": [
12227
12334
  {
12228
12335
  "kind": "class",
12229
12336
  "description": "",
12230
- "name": "IgcPaneHeaderComponent",
12231
- "slots": [
12232
- {
12233
- "description": "Renders the pane header title.",
12234
- "name": ""
12235
- },
12236
- {
12237
- "description": "Renders a custom close button.",
12238
- "name": "paneHeaderCloseButton"
12239
- },
12240
- {
12241
- "description": "Renders a custom maximize button.",
12242
- "name": "paneHeaderMaximizeButton"
12243
- },
12244
- {
12245
- "description": "Renders a custom minimize button.",
12246
- "name": "paneHeaderMinimizeButton"
12247
- },
12248
- {
12249
- "description": "Renders a custom pin button.",
12250
- "name": "paneHeaderPinButton"
12251
- },
12252
- {
12253
- "description": "Renders a custom unpin button.",
12254
- "name": "paneHeaderUnpinButton"
12255
- }
12256
- ],
12337
+ "name": "IgcResizerComponent",
12257
12338
  "members": [
12258
12339
  {
12259
12340
  "kind": "field",
@@ -12264,7 +12345,7 @@
12264
12345
  "privacy": "public",
12265
12346
  "static": true,
12266
12347
  "readonly": true,
12267
- "default": "'igc-pane-header'"
12348
+ "default": "'igc-resizer'"
12268
12349
  },
12269
12350
  {
12270
12351
  "kind": "method",
@@ -12283,146 +12364,22 @@
12283
12364
  },
12284
12365
  {
12285
12366
  "kind": "field",
12286
- "name": "commonParts",
12287
- "privacy": "private",
12288
- "readonly": true
12289
- },
12290
- {
12291
- "kind": "field",
12292
- "name": "pinned",
12293
- "type": {
12294
- "text": "boolean"
12295
- },
12296
- "privacy": "public",
12297
- "default": "false",
12298
- "description": "Whether the pane is currently pinned.",
12299
- "attribute": "pinned"
12300
- },
12301
- {
12302
- "kind": "field",
12303
- "name": "maximized",
12304
- "type": {
12305
- "text": "boolean"
12306
- },
12307
- "privacy": "public",
12308
- "default": "false",
12309
- "description": "Whether the pane is currently maximized.",
12310
- "attribute": "maximized"
12311
- },
12312
- {
12313
- "kind": "field",
12314
- "name": "disabled",
12315
- "type": {
12316
- "text": "boolean"
12317
- },
12318
- "privacy": "public",
12319
- "default": "false",
12320
- "description": "Disables interaction with the pane header.",
12321
- "attribute": "disabled"
12322
- },
12323
- {
12324
- "kind": "field",
12325
- "name": "isFloating",
12326
- "type": {
12327
- "text": "boolean"
12328
- },
12329
- "privacy": "public",
12330
- "default": "false",
12331
- "description": "Indicates whether the header is used in a floating window.",
12332
- "attribute": "is-floating"
12333
- },
12334
- {
12335
- "kind": "field",
12336
- "name": "isFloatingPaneHeader",
12337
- "type": {
12338
- "text": "boolean"
12339
- },
12340
- "privacy": "public",
12341
- "default": "false",
12342
- "description": "Indicates that the header is used in a floating pane context.",
12343
- "attribute": "is-floating-pane-header"
12344
- },
12345
- {
12346
- "kind": "field",
12347
- "name": "isActive",
12348
- "type": {
12349
- "text": "boolean"
12350
- },
12351
- "privacy": "public",
12352
- "default": "false",
12353
- "description": "Marks the header as active.",
12354
- "attribute": "is-active"
12355
- },
12356
- {
12357
- "kind": "field",
12358
- "name": "forcedDrag",
12359
- "type": {
12360
- "text": "boolean"
12361
- },
12362
- "privacy": "public",
12363
- "default": "false",
12364
- "description": "Forces drag behavior on the pane header.",
12365
- "attribute": "forced-drag"
12366
- },
12367
- {
12368
- "kind": "field",
12369
- "name": "allowClose",
12370
- "type": {
12371
- "text": "boolean"
12372
- },
12373
- "privacy": "public",
12374
- "default": "true",
12375
- "description": "Enables or disables closing.",
12376
- "attribute": "allow-close"
12377
- },
12378
- {
12379
- "kind": "field",
12380
- "name": "allowMaximize",
12367
+ "name": "orientation",
12381
12368
  "type": {
12382
- "text": "boolean"
12369
+ "text": "ResizerLocation"
12383
12370
  },
12384
12371
  "privacy": "public",
12385
- "default": "true",
12386
- "description": "Enables or disables maximizing.",
12387
- "attribute": "allow-maximize"
12372
+ "description": "Specifies the orientation of the resizer.",
12373
+ "attribute": "orientation"
12388
12374
  },
12389
12375
  {
12390
12376
  "kind": "field",
12391
- "name": "allowPinning",
12377
+ "name": "isCornerResizer",
12392
12378
  "type": {
12393
12379
  "text": "boolean"
12394
12380
  },
12395
- "privacy": "public",
12396
- "default": "true",
12397
- "description": "Enables or disables pinning.",
12398
- "attribute": "allow-pinning"
12399
- },
12400
- {
12401
- "kind": "field",
12402
- "name": "pane",
12403
- "type": {
12404
- "text": "IgcContentPane"
12405
- },
12406
- "privacy": "public",
12407
- "description": "Reference to the content pane associated with this header."
12408
- },
12409
- {
12410
- "kind": "field",
12411
- "name": "resourceStrings",
12412
- "type": {
12413
- "text": "IgcDockManagerResourceStrings | undefined"
12414
- },
12415
- "description": "Localized strings used for icon button accessibility."
12416
- },
12417
- {
12418
- "kind": "method",
12419
- "name": "forceDragging",
12420
- "privacy": "private"
12421
- },
12422
- {
12423
- "kind": "method",
12424
- "name": "visualStateChanged",
12425
- "privacy": "protected"
12381
+ "privacy": "private",
12382
+ "readonly": true
12426
12383
  },
12427
12384
  {
12428
12385
  "kind": "field",
@@ -12441,98 +12398,50 @@
12441
12398
  },
12442
12399
  {
12443
12400
  "kind": "field",
12444
- "name": "_handlePinButtonClick",
12445
- "privacy": "private"
12401
+ "name": "dragStart"
12446
12402
  },
12447
12403
  {
12448
12404
  "kind": "field",
12449
- "name": "_handleMaximizeButtonClick",
12450
- "privacy": "private"
12405
+ "name": "dragMove"
12451
12406
  },
12452
12407
  {
12453
12408
  "kind": "field",
12454
- "name": "_handleCloseButtonClick",
12455
- "privacy": "private"
12409
+ "name": "dragEnd"
12456
12410
  },
12457
12411
  {
12458
12412
  "kind": "method",
12459
- "name": "renderCloseButton",
12460
- "privacy": "private"
12461
- },
12462
- {
12463
- "kind": "method",
12464
- "name": "renderMaximizeButton",
12465
- "privacy": "private"
12466
- },
12467
- {
12468
- "kind": "method",
12469
- "name": "renderMinimizeButton",
12470
- "privacy": "private"
12471
- },
12472
- {
12473
- "kind": "method",
12474
- "name": "renderPinButton",
12475
- "privacy": "private"
12476
- },
12477
- {
12478
- "kind": "method",
12479
- "name": "renderUnpinButton",
12480
- "privacy": "private"
12481
- },
12482
- {
12483
- "kind": "field",
12484
- "name": "dragEdgeTolerance",
12485
- "type": {
12486
- "text": "number"
12487
- },
12488
- "default": "3"
12489
- },
12490
- {
12491
- "kind": "field",
12492
- "name": "dragStart"
12493
- },
12494
- {
12495
- "kind": "field",
12496
- "name": "dragMove"
12497
- },
12498
- {
12499
- "kind": "field",
12500
- "name": "dragEnd"
12501
- },
12502
- {
12503
- "kind": "method",
12504
- "name": "addEventListener",
12505
- "privacy": "public",
12506
- "return": {
12507
- "type": {
12508
- "text": "void"
12509
- }
12510
- },
12511
- "parameters": [
12512
- {
12513
- "name": "type",
12514
- "type": {
12515
- "text": "K"
12516
- }
12517
- },
12518
- {
12519
- "name": "listener",
12520
- "type": {
12521
- "text": "(this: HTMLElement, ev: M[K]) => any"
12522
- }
12523
- },
12524
- {
12525
- "name": "options",
12526
- "optional": true,
12527
- "type": {
12528
- "text": "boolean | AddEventListenerOptions"
12529
- }
12530
- }
12531
- ],
12532
- "inheritedFrom": {
12533
- "name": "EventEmitterMixin",
12534
- "module": "src/common/mixins/event-emitter.ts"
12535
- }
12413
+ "name": "addEventListener",
12414
+ "privacy": "public",
12415
+ "return": {
12416
+ "type": {
12417
+ "text": "void"
12418
+ }
12419
+ },
12420
+ "parameters": [
12421
+ {
12422
+ "name": "type",
12423
+ "type": {
12424
+ "text": "K"
12425
+ }
12426
+ },
12427
+ {
12428
+ "name": "listener",
12429
+ "type": {
12430
+ "text": "(this: HTMLElement, ev: M[K]) => any"
12431
+ }
12432
+ },
12433
+ {
12434
+ "name": "options",
12435
+ "optional": true,
12436
+ "type": {
12437
+ "text": "boolean | AddEventListenerOptions"
12438
+ }
12439
+ }
12440
+ ],
12441
+ "inheritedFrom": {
12442
+ "name": "EventEmitterMixin",
12443
+ "module": "src/common/mixins/event-emitter.ts"
12444
+ }
12536
12445
  },
12537
12446
  {
12538
12447
  "kind": "method",
@@ -12637,36 +12546,16 @@
12637
12546
  ],
12638
12547
  "events": [
12639
12548
  {
12640
- "description": "Emitted when dragging starts on the header.",
12641
- "name": "igcPaneHeaderDragStart"
12642
- },
12643
- {
12644
- "description": "Emitted during header dragging.",
12645
- "name": "igcPaneHeaderDragMoved"
12646
- },
12647
- {
12648
- "description": "Emitted when dragging ends on the header.",
12649
- "name": "igcPaneHeaderDragEnd"
12650
- },
12651
- {
12652
- "description": "Emitted when the pin button is clicked.",
12653
- "name": "igcPinToggle"
12654
- },
12655
- {
12656
- "description": "Emitted when the maximize button is clicked.",
12657
- "name": "igcMaximize"
12658
- },
12659
- {
12660
- "description": "Emitted when the close button is clicked.",
12661
- "name": "igcClose"
12549
+ "description": "Emitted when a drag operation starts on the resizer.",
12550
+ "name": "igcResizerDragStart"
12662
12551
  },
12663
12552
  {
12664
- "description": "Emitted when the element is connected to the DOM.",
12665
- "name": "elementConnected"
12553
+ "description": "Emitted during resizer moving.",
12554
+ "name": "igcResizerMoved"
12666
12555
  },
12667
12556
  {
12668
- "description": "Emitted when the element is disconnected from the DOM.",
12669
- "name": "elementDisconnected"
12557
+ "description": "Emitted when dragging ends on the resizer.",
12558
+ "name": "igcResizerDragEnd"
12670
12559
  },
12671
12560
  {
12672
12561
  "type": {
@@ -12680,101 +12569,12 @@
12680
12569
  ],
12681
12570
  "attributes": [
12682
12571
  {
12683
- "name": "is-floating",
12684
- "type": {
12685
- "text": "boolean"
12686
- },
12687
- "default": "false",
12688
- "description": "Indicates whether the header is used in a floating window.",
12689
- "fieldName": "isFloating",
12690
- "attribute": "is-floating"
12691
- },
12692
- {
12693
- "name": "is-floating-pane-header",
12694
- "type": {
12695
- "text": "boolean"
12696
- },
12697
- "default": "false",
12698
- "description": "Indicates that the header is used in a floating pane context.",
12699
- "fieldName": "isFloatingPaneHeader",
12700
- "attribute": "is-floating-pane-header"
12701
- },
12702
- {
12703
- "name": "is-active",
12704
- "type": {
12705
- "text": "boolean"
12706
- },
12707
- "default": "false",
12708
- "description": "Marks the header as active.",
12709
- "fieldName": "isActive",
12710
- "attribute": "is-active"
12711
- },
12712
- {
12713
- "name": "forced-drag",
12714
- "type": {
12715
- "text": "boolean"
12716
- },
12717
- "default": "false",
12718
- "description": "Forces drag behavior on the pane header.",
12719
- "fieldName": "forcedDrag",
12720
- "attribute": "forced-drag"
12721
- },
12722
- {
12723
- "name": "allow-close",
12724
- "type": {
12725
- "text": "boolean"
12726
- },
12727
- "default": "true",
12728
- "description": "Enables or disables closing.",
12729
- "fieldName": "allowClose",
12730
- "attribute": "allow-close"
12731
- },
12732
- {
12733
- "name": "allow-maximize",
12734
- "type": {
12735
- "text": "boolean"
12736
- },
12737
- "default": "true",
12738
- "description": "Enables or disables maximizing.",
12739
- "fieldName": "allowMaximize",
12740
- "attribute": "allow-maximize"
12741
- },
12742
- {
12743
- "name": "allow-pinning",
12744
- "type": {
12745
- "text": "boolean"
12746
- },
12747
- "default": "true",
12748
- "description": "Enables or disables pinning.",
12749
- "fieldName": "allowPinning",
12750
- "attribute": "allow-pinning"
12751
- },
12752
- {
12753
- "name": "pinned",
12754
- "type": {
12755
- "text": "boolean"
12756
- },
12757
- "default": "false",
12758
- "description": "Whether the pane is currently pinned.",
12759
- "fieldName": "pinned"
12760
- },
12761
- {
12762
- "name": "maximized",
12763
- "type": {
12764
- "text": "boolean"
12765
- },
12766
- "default": "false",
12767
- "description": "Whether the pane is currently maximized.",
12768
- "fieldName": "maximized"
12769
- },
12770
- {
12771
- "name": "disabled",
12572
+ "name": "orientation",
12772
12573
  "type": {
12773
- "text": "boolean"
12574
+ "text": "ResizerLocation"
12774
12575
  },
12775
- "default": "false",
12776
- "description": "Disables interaction with the pane header.",
12777
- "fieldName": "disabled"
12576
+ "description": "Specifies the orientation of the resizer.",
12577
+ "fieldName": "orientation"
12778
12578
  }
12779
12579
  ],
12780
12580
  "mixins": [
@@ -12787,7 +12587,7 @@
12787
12587
  "name": "LitElement",
12788
12588
  "package": "lit"
12789
12589
  },
12790
- "tagName": "igc-pane-header",
12590
+ "tagName": "igc-resizer",
12791
12591
  "customElement": true
12792
12592
  }
12793
12593
  ],
@@ -12796,20 +12596,26 @@
12796
12596
  "kind": "js",
12797
12597
  "name": "default",
12798
12598
  "declaration": {
12799
- "name": "IgcPaneHeaderComponent",
12800
- "module": "src/components/dockmanager/panes/pane-header-component.ts"
12599
+ "name": "IgcResizerComponent",
12600
+ "module": "src/components/dockmanager/panes/resizer-component.ts"
12801
12601
  }
12802
12602
  }
12803
12603
  ]
12804
12604
  },
12805
12605
  {
12806
12606
  "kind": "javascript-module",
12807
- "path": "src/components/dockmanager/panes/resizer-component.ts",
12607
+ "path": "src/components/dockmanager/panes/split-pane-component.ts",
12808
12608
  "declarations": [
12809
12609
  {
12810
12610
  "kind": "class",
12811
12611
  "description": "",
12812
- "name": "IgcResizerComponent",
12612
+ "name": "IgcSplitPaneComponent",
12613
+ "cssParts": [
12614
+ {
12615
+ "description": "The root split pane container.",
12616
+ "name": "split-pane"
12617
+ }
12618
+ ],
12813
12619
  "members": [
12814
12620
  {
12815
12621
  "kind": "field",
@@ -12820,7 +12626,7 @@
12820
12626
  "privacy": "public",
12821
12627
  "static": true,
12822
12628
  "readonly": true,
12823
- "default": "'igc-resizer'"
12629
+ "default": "'igc-split-pane'"
12824
12630
  },
12825
12631
  {
12826
12632
  "kind": "method",
@@ -12830,58 +12636,100 @@
12830
12636
  },
12831
12637
  {
12832
12638
  "kind": "field",
12833
- "name": "_dragService",
12639
+ "name": "_orientation",
12834
12640
  "type": {
12835
- "text": "IgcDragService"
12641
+ "text": "SplitPaneOrientation"
12642
+ },
12643
+ "privacy": "private"
12644
+ },
12645
+ {
12646
+ "kind": "field",
12647
+ "name": "_parentUseFixedSize",
12648
+ "type": {
12649
+ "text": "boolean"
12836
12650
  },
12837
12651
  "privacy": "private",
12838
- "default": "new IgcDragService(this)"
12652
+ "default": "false"
12839
12653
  },
12840
12654
  {
12841
12655
  "kind": "field",
12842
12656
  "name": "orientation",
12657
+ "privacy": "public",
12658
+ "description": "Defines the layout direction of the split pane: `horizontal` or `vertical`.",
12843
12659
  "type": {
12844
- "text": "ResizerLocation"
12660
+ "text": "SplitPaneOrientation"
12845
12661
  },
12846
- "privacy": "public",
12847
- "description": "Specifies the orientation of the resizer.",
12848
12662
  "attribute": "orientation"
12849
12663
  },
12850
12664
  {
12851
12665
  "kind": "field",
12852
- "name": "isCornerResizer",
12666
+ "name": "useFixedSize",
12853
12667
  "type": {
12854
12668
  "text": "boolean"
12855
12669
  },
12856
- "privacy": "private",
12857
- "readonly": true
12670
+ "privacy": "public",
12671
+ "default": "false",
12672
+ "description": "Indicates whether the pane uses a fixed size.",
12673
+ "attribute": "use-fixed-size"
12858
12674
  },
12859
12675
  {
12860
12676
  "kind": "field",
12861
- "name": "_handleDragStart",
12862
- "privacy": "private"
12677
+ "name": "parentUseFixedSize",
12678
+ "privacy": "public",
12679
+ "description": "Indicates if the parent pane uses fixed pane sizes.",
12680
+ "default": "false",
12681
+ "attribute": "parent-use-fixed-size",
12682
+ "type": {
12683
+ "text": "boolean"
12684
+ }
12863
12685
  },
12864
12686
  {
12865
12687
  "kind": "field",
12866
- "name": "_handleDragMove",
12867
- "privacy": "private"
12688
+ "name": "size",
12689
+ "type": {
12690
+ "text": "number | undefined"
12691
+ },
12692
+ "privacy": "public",
12693
+ "attribute": "size"
12868
12694
  },
12869
12695
  {
12870
12696
  "kind": "field",
12871
- "name": "_handleDragEnd",
12872
- "privacy": "private"
12697
+ "name": "_minResizeWidth",
12698
+ "privacy": "private",
12699
+ "default": "IGC_RESIZING_MIN_SIZE"
12873
12700
  },
12874
12701
  {
12875
12702
  "kind": "field",
12876
- "name": "dragStart"
12703
+ "name": "_minResizeHeight",
12704
+ "privacy": "private",
12705
+ "default": "IGC_RESIZING_MIN_SIZE"
12877
12706
  },
12878
12707
  {
12879
12708
  "kind": "field",
12880
- "name": "dragMove"
12709
+ "name": "minResizeWidth",
12710
+ "privacy": "public",
12711
+ "description": "The minimum width of child panes in pixels during resizing.",
12712
+ "default": "42",
12713
+ "attribute": "min-resize-width",
12714
+ "type": {
12715
+ "text": "number"
12716
+ }
12881
12717
  },
12882
12718
  {
12883
12719
  "kind": "field",
12884
- "name": "dragEnd"
12720
+ "name": "minResizeHeight",
12721
+ "privacy": "public",
12722
+ "description": "The minimum height of child panes in pixels during resizing.",
12723
+ "default": "42",
12724
+ "attribute": "min-resize-height",
12725
+ "type": {
12726
+ "text": "number"
12727
+ }
12728
+ },
12729
+ {
12730
+ "kind": "method",
12731
+ "name": "_updateFlexStyle",
12732
+ "privacy": "private"
12885
12733
  },
12886
12734
  {
12887
12735
  "kind": "method",
@@ -13021,16 +12869,8 @@
13021
12869
  ],
13022
12870
  "events": [
13023
12871
  {
13024
- "description": "Emitted when a drag operation starts on the resizer.",
13025
- "name": "igcResizerDragStart"
13026
- },
13027
- {
13028
- "description": "Emitted during resizer moving.",
13029
- "name": "igcResizerMoved"
13030
- },
13031
- {
13032
- "description": "Emitted when dragging ends on the resizer.",
13033
- "name": "igcResizerDragEnd"
12872
+ "description": "Emitted when the component is updated and rendered.",
12873
+ "name": "igcRendered"
13034
12874
  },
13035
12875
  {
13036
12876
  "type": {
@@ -13043,13 +12883,60 @@
13043
12883
  }
13044
12884
  ],
13045
12885
  "attributes": [
12886
+ {
12887
+ "name": "use-fixed-size",
12888
+ "type": {
12889
+ "text": "boolean"
12890
+ },
12891
+ "default": "false",
12892
+ "description": "Indicates whether the pane uses a fixed size.",
12893
+ "fieldName": "useFixedSize",
12894
+ "attribute": "use-fixed-size"
12895
+ },
12896
+ {
12897
+ "name": "parent-use-fixed-size",
12898
+ "description": "Indicates if the parent pane uses fixed pane sizes.",
12899
+ "default": "false",
12900
+ "fieldName": "parentUseFixedSize",
12901
+ "attribute": "parent-use-fixed-size",
12902
+ "type": {
12903
+ "text": "boolean"
12904
+ }
12905
+ },
12906
+ {
12907
+ "name": "min-resize-width",
12908
+ "description": "The minimum width of child panes in pixels during resizing.",
12909
+ "default": "42",
12910
+ "fieldName": "minResizeWidth",
12911
+ "attribute": "min-resize-width",
12912
+ "type": {
12913
+ "text": "number"
12914
+ }
12915
+ },
12916
+ {
12917
+ "name": "min-resize-height",
12918
+ "description": "The minimum height of child panes in pixels during resizing.",
12919
+ "default": "42",
12920
+ "fieldName": "minResizeHeight",
12921
+ "attribute": "min-resize-height",
12922
+ "type": {
12923
+ "text": "number"
12924
+ }
12925
+ },
13046
12926
  {
13047
12927
  "name": "orientation",
12928
+ "description": "Defines the layout direction of the split pane: `horizontal` or `vertical`.",
13048
12929
  "type": {
13049
- "text": "ResizerLocation"
12930
+ "text": "SplitPaneOrientation"
13050
12931
  },
13051
- "description": "Specifies the orientation of the resizer.",
13052
12932
  "fieldName": "orientation"
12933
+ },
12934
+ {
12935
+ "name": "size",
12936
+ "type": {
12937
+ "text": "number | undefined"
12938
+ },
12939
+ "fieldName": "size"
13053
12940
  }
13054
12941
  ],
13055
12942
  "mixins": [
@@ -13062,7 +12949,7 @@
13062
12949
  "name": "LitElement",
13063
12950
  "package": "lit"
13064
12951
  },
13065
- "tagName": "igc-resizer",
12952
+ "tagName": "igc-split-pane",
13066
12953
  "customElement": true
13067
12954
  }
13068
12955
  ],
@@ -13071,24 +12958,32 @@
13071
12958
  "kind": "js",
13072
12959
  "name": "default",
13073
12960
  "declaration": {
13074
- "name": "IgcResizerComponent",
13075
- "module": "src/components/dockmanager/panes/resizer-component.ts"
12961
+ "name": "IgcSplitPaneComponent",
12962
+ "module": "src/components/dockmanager/panes/split-pane-component.ts"
13076
12963
  }
13077
12964
  }
13078
12965
  ]
13079
12966
  },
13080
12967
  {
13081
12968
  "kind": "javascript-module",
13082
- "path": "src/components/dockmanager/panes/split-pane-component.ts",
12969
+ "path": "src/components/dockmanager/panes/splitter-component.ts",
13083
12970
  "declarations": [
13084
12971
  {
13085
12972
  "kind": "class",
13086
12973
  "description": "",
13087
- "name": "IgcSplitPaneComponent",
12974
+ "name": "IgcSplitterComponent",
13088
12975
  "cssParts": [
13089
12976
  {
13090
- "description": "The root split pane container.",
13091
- "name": "split-pane"
12977
+ "description": "The main container of the splitter.",
12978
+ "name": "splitter"
12979
+ },
12980
+ {
12981
+ "description": "The draggable element that users interact with.",
12982
+ "name": "splitter-base"
12983
+ },
12984
+ {
12985
+ "description": "The visual indicator (ghost element) shown during drag.",
12986
+ "name": "splitter-ghost"
13092
12987
  }
13093
12988
  ],
13094
12989
  "members": [
@@ -13101,7 +12996,7 @@
13101
12996
  "privacy": "public",
13102
12997
  "static": true,
13103
12998
  "readonly": true,
13104
- "default": "'igc-split-pane'"
12999
+ "default": "'igc-splitter-component'"
13105
13000
  },
13106
13001
  {
13107
13002
  "kind": "method",
@@ -13111,15 +13006,42 @@
13111
13006
  },
13112
13007
  {
13113
13008
  "kind": "field",
13114
- "name": "_orientation",
13009
+ "name": "_paneSizes",
13115
13010
  "type": {
13116
- "text": "SplitPaneOrientation"
13011
+ "text": "number[] | null"
13012
+ },
13013
+ "privacy": "private",
13014
+ "default": "null"
13015
+ },
13016
+ {
13017
+ "kind": "field",
13018
+ "name": "_paneMinSizes",
13019
+ "type": {
13020
+ "text": "number[] | null"
13021
+ },
13022
+ "privacy": "private",
13023
+ "default": "null"
13024
+ },
13025
+ {
13026
+ "kind": "field",
13027
+ "name": "_flyoutMaxSize",
13028
+ "type": {
13029
+ "text": "number"
13030
+ },
13031
+ "privacy": "private",
13032
+ "default": "0"
13033
+ },
13034
+ {
13035
+ "kind": "field",
13036
+ "name": "_dragService",
13037
+ "type": {
13038
+ "text": "IgcDragService | undefined"
13117
13039
  },
13118
13040
  "privacy": "private"
13119
13041
  },
13120
13042
  {
13121
13043
  "kind": "field",
13122
- "name": "_parentUseFixedSize",
13044
+ "name": "resizeEndEmitted",
13123
13045
  "type": {
13124
13046
  "text": "boolean"
13125
13047
  },
@@ -13128,84 +13050,297 @@
13128
13050
  },
13129
13051
  {
13130
13052
  "kind": "field",
13131
- "name": "orientation",
13132
- "privacy": "public",
13133
- "description": "Defines the layout direction of the split pane: `horizontal` or `vertical`.",
13053
+ "name": "_splitPaneOrientation",
13134
13054
  "type": {
13135
13055
  "text": "SplitPaneOrientation"
13136
13056
  },
13137
- "attribute": "orientation"
13057
+ "privacy": "private",
13058
+ "default": "'horizontal'"
13138
13059
  },
13139
13060
  {
13140
13061
  "kind": "field",
13141
- "name": "useFixedSize",
13062
+ "name": "isRTL",
13063
+ "type": {
13064
+ "text": "boolean"
13065
+ },
13066
+ "privacy": "private",
13067
+ "readonly": true
13068
+ },
13069
+ {
13070
+ "kind": "field",
13071
+ "name": "_dragOffset",
13072
+ "type": {
13073
+ "text": "number"
13074
+ },
13075
+ "privacy": "private",
13076
+ "default": "0"
13077
+ },
13078
+ {
13079
+ "kind": "field",
13080
+ "name": "_hasCustomSplitterHandle",
13081
+ "type": {
13082
+ "text": "boolean"
13083
+ },
13084
+ "privacy": "private",
13085
+ "default": "false"
13086
+ },
13087
+ {
13088
+ "kind": "field",
13089
+ "name": "showDragGhost",
13142
13090
  "type": {
13143
13091
  "text": "boolean"
13144
13092
  },
13145
13093
  "privacy": "public",
13146
13094
  "default": "false",
13147
- "description": "Indicates whether the pane uses a fixed size.",
13148
- "attribute": "use-fixed-size"
13095
+ "description": "Indicates whether the drag ghost element is shown while resizing.",
13096
+ "attribute": "show-drag-ghost"
13149
13097
  },
13150
13098
  {
13151
13099
  "kind": "field",
13152
13100
  "name": "parentUseFixedSize",
13101
+ "type": {
13102
+ "text": "boolean"
13103
+ },
13153
13104
  "privacy": "public",
13154
- "description": "Indicates if the parent pane uses fixed pane sizes.",
13155
13105
  "default": "false",
13156
- "attribute": "parent-use-fixed-size",
13106
+ "description": "Indicates if the parent pane uses fixed pane sizes.",
13107
+ "attribute": "parent-use-fixed-size"
13108
+ },
13109
+ {
13110
+ "kind": "field",
13111
+ "name": "splitPaneOrientation",
13112
+ "privacy": "public",
13113
+ "description": "Defines the orientation of the splitter based on the split pane orientation.",
13114
+ "default": "horizontal",
13115
+ "attribute": "split-pane-orientation"
13116
+ },
13117
+ {
13118
+ "kind": "field",
13119
+ "name": "flyoutLocation",
13157
13120
  "type": {
13158
- "text": "boolean"
13159
- }
13121
+ "text": "UnpinnedLocation"
13122
+ },
13123
+ "privacy": "public",
13124
+ "description": "Indicates the flyout location of the splitter.",
13125
+ "attribute": "flyout-location"
13160
13126
  },
13161
13127
  {
13162
13128
  "kind": "field",
13163
- "name": "size",
13129
+ "name": "scrollSpeed",
13164
13130
  "type": {
13165
13131
  "text": "number | undefined"
13166
13132
  },
13167
13133
  "privacy": "public",
13168
- "attribute": "size"
13134
+ "attribute": "scrollSpeed"
13169
13135
  },
13170
13136
  {
13171
13137
  "kind": "field",
13172
- "name": "_minResizeWidth",
13173
- "privacy": "private",
13174
- "default": "IGC_RESIZING_MIN_SIZE"
13138
+ "name": "_ghostRef",
13139
+ "type": {
13140
+ "text": "HTMLElement"
13141
+ },
13142
+ "privacy": "private"
13175
13143
  },
13176
13144
  {
13177
13145
  "kind": "field",
13178
- "name": "_minResizeHeight",
13179
- "privacy": "private",
13180
- "default": "IGC_RESIZING_MIN_SIZE"
13146
+ "name": "_splitterBaseRef",
13147
+ "type": {
13148
+ "text": "HTMLElement"
13149
+ },
13150
+ "privacy": "private"
13181
13151
  },
13182
13152
  {
13183
13153
  "kind": "field",
13184
- "name": "minResizeWidth",
13185
- "privacy": "public",
13186
- "description": "The minimum width of child panes in pixels during resizing.",
13187
- "default": "42",
13188
- "attribute": "min-resize-width",
13189
- "type": {
13190
- "text": "number"
13191
- }
13154
+ "name": "dragStart",
13155
+ "privacy": "private"
13192
13156
  },
13193
13157
  {
13194
13158
  "kind": "field",
13195
- "name": "minResizeHeight",
13196
- "privacy": "public",
13197
- "description": "The minimum height of child panes in pixels during resizing.",
13198
- "default": "42",
13199
- "attribute": "min-resize-height",
13200
- "type": {
13201
- "text": "number"
13202
- }
13159
+ "name": "dragEnd",
13160
+ "privacy": "private"
13161
+ },
13162
+ {
13163
+ "kind": "field",
13164
+ "name": "dragMove",
13165
+ "privacy": "private"
13166
+ },
13167
+ {
13168
+ "kind": "field",
13169
+ "name": "_handlePointerDown",
13170
+ "privacy": "private"
13171
+ },
13172
+ {
13173
+ "kind": "field",
13174
+ "name": "_handlePointerUp",
13175
+ "privacy": "private"
13176
+ },
13177
+ {
13178
+ "kind": "field",
13179
+ "name": "applyAutoDrag",
13180
+ "privacy": "public"
13181
+ },
13182
+ {
13183
+ "kind": "field",
13184
+ "name": "_handleKeyDown",
13185
+ "privacy": "private"
13203
13186
  },
13204
13187
  {
13205
13188
  "kind": "method",
13206
- "name": "_updateFlexStyle",
13189
+ "name": "_calculateOffset",
13190
+ "privacy": "private",
13191
+ "return": {
13192
+ "type": {
13193
+ "text": "number"
13194
+ }
13195
+ },
13196
+ "parameters": [
13197
+ {
13198
+ "name": "e",
13199
+ "type": {
13200
+ "text": "KeyboardEvent"
13201
+ }
13202
+ }
13203
+ ]
13204
+ },
13205
+ {
13206
+ "kind": "method",
13207
+ "name": "_dragStartHelper",
13208
+ "privacy": "private",
13209
+ "parameters": [
13210
+ {
13211
+ "name": "offset",
13212
+ "type": {
13213
+ "text": "number"
13214
+ }
13215
+ }
13216
+ ]
13217
+ },
13218
+ {
13219
+ "kind": "method",
13220
+ "name": "_dragEndHelper",
13221
+ "privacy": "private"
13222
+ },
13223
+ {
13224
+ "kind": "method",
13225
+ "name": "_constrainFlyoutResize",
13226
+ "privacy": "private"
13227
+ },
13228
+ {
13229
+ "kind": "method",
13230
+ "name": "_constrainSplitPaneResize",
13231
+ "privacy": "private"
13232
+ },
13233
+ {
13234
+ "kind": "method",
13235
+ "name": "_handleSplitterHandleSlotChange",
13236
+ "privacy": "private"
13237
+ },
13238
+ {
13239
+ "kind": "method",
13240
+ "name": "_isArrowUp",
13241
+ "privacy": "private",
13242
+ "return": {
13243
+ "type": {
13244
+ "text": "boolean"
13245
+ }
13246
+ },
13247
+ "parameters": [
13248
+ {
13249
+ "name": "event",
13250
+ "type": {
13251
+ "text": "KeyboardEvent"
13252
+ }
13253
+ }
13254
+ ]
13255
+ },
13256
+ {
13257
+ "kind": "method",
13258
+ "name": "_isArrowDown",
13259
+ "privacy": "private",
13260
+ "return": {
13261
+ "type": {
13262
+ "text": "boolean"
13263
+ }
13264
+ },
13265
+ "parameters": [
13266
+ {
13267
+ "name": "event",
13268
+ "type": {
13269
+ "text": "KeyboardEvent"
13270
+ }
13271
+ }
13272
+ ]
13273
+ },
13274
+ {
13275
+ "kind": "method",
13276
+ "name": "_isArrowLeft",
13277
+ "privacy": "private",
13278
+ "return": {
13279
+ "type": {
13280
+ "text": "boolean"
13281
+ }
13282
+ },
13283
+ "parameters": [
13284
+ {
13285
+ "name": "event",
13286
+ "type": {
13287
+ "text": "KeyboardEvent"
13288
+ }
13289
+ }
13290
+ ]
13291
+ },
13292
+ {
13293
+ "kind": "method",
13294
+ "name": "_isArrowRight",
13295
+ "privacy": "private",
13296
+ "return": {
13297
+ "type": {
13298
+ "text": "boolean"
13299
+ }
13300
+ },
13301
+ "parameters": [
13302
+ {
13303
+ "name": "event",
13304
+ "type": {
13305
+ "text": "KeyboardEvent"
13306
+ }
13307
+ }
13308
+ ]
13309
+ },
13310
+ {
13311
+ "kind": "method",
13312
+ "name": "_isHorizontal",
13207
13313
  "privacy": "private"
13208
13314
  },
13315
+ {
13316
+ "kind": "method",
13317
+ "name": "_isVertical",
13318
+ "privacy": "private"
13319
+ },
13320
+ {
13321
+ "kind": "method",
13322
+ "name": "_getMinSize",
13323
+ "privacy": "private",
13324
+ "return": {
13325
+ "type": {
13326
+ "text": "number"
13327
+ }
13328
+ },
13329
+ "parameters": [
13330
+ {
13331
+ "name": "pane",
13332
+ "type": {
13333
+ "text": "HTMLElement | undefined"
13334
+ }
13335
+ },
13336
+ {
13337
+ "name": "orientation",
13338
+ "type": {
13339
+ "text": "'horizontal' | 'vertical'"
13340
+ }
13341
+ }
13342
+ ]
13343
+ },
13209
13344
  {
13210
13345
  "kind": "method",
13211
13346
  "name": "addEventListener",
@@ -13344,8 +13479,12 @@
13344
13479
  ],
13345
13480
  "events": [
13346
13481
  {
13347
- "description": "Emitted when the component is updated and rendered.",
13348
- "name": "igcRendered"
13482
+ "description": "Emitted when a resize interaction starts.",
13483
+ "name": "igcResizeStart"
13484
+ },
13485
+ {
13486
+ "description": "Emitted when the resize ends, passing the final size.",
13487
+ "name": "igcResizeEnd"
13349
13488
  },
13350
13489
  {
13351
13490
  "type": {
@@ -13359,59 +13498,47 @@
13359
13498
  ],
13360
13499
  "attributes": [
13361
13500
  {
13362
- "name": "use-fixed-size",
13501
+ "name": "show-drag-ghost",
13363
13502
  "type": {
13364
13503
  "text": "boolean"
13365
13504
  },
13366
13505
  "default": "false",
13367
- "description": "Indicates whether the pane uses a fixed size.",
13368
- "fieldName": "useFixedSize",
13369
- "attribute": "use-fixed-size"
13506
+ "description": "Indicates whether the drag ghost element is shown while resizing.",
13507
+ "fieldName": "showDragGhost",
13508
+ "attribute": "show-drag-ghost"
13370
13509
  },
13371
13510
  {
13372
13511
  "name": "parent-use-fixed-size",
13373
- "description": "Indicates if the parent pane uses fixed pane sizes.",
13374
- "default": "false",
13375
- "fieldName": "parentUseFixedSize",
13376
- "attribute": "parent-use-fixed-size",
13377
13512
  "type": {
13378
13513
  "text": "boolean"
13379
- }
13380
- },
13381
- {
13382
- "name": "min-resize-width",
13383
- "description": "The minimum width of child panes in pixels during resizing.",
13384
- "default": "42",
13385
- "fieldName": "minResizeWidth",
13386
- "attribute": "min-resize-width",
13387
- "type": {
13388
- "text": "number"
13389
- }
13514
+ },
13515
+ "default": "false",
13516
+ "description": "Indicates if the parent pane uses fixed pane sizes.",
13517
+ "fieldName": "parentUseFixedSize",
13518
+ "attribute": "parent-use-fixed-size"
13390
13519
  },
13391
13520
  {
13392
- "name": "min-resize-height",
13393
- "description": "The minimum height of child panes in pixels during resizing.",
13394
- "default": "42",
13395
- "fieldName": "minResizeHeight",
13396
- "attribute": "min-resize-height",
13397
- "type": {
13398
- "text": "number"
13399
- }
13521
+ "name": "split-pane-orientation",
13522
+ "description": "Defines the orientation of the splitter based on the split pane orientation.",
13523
+ "default": "horizontal",
13524
+ "fieldName": "splitPaneOrientation",
13525
+ "attribute": "split-pane-orientation"
13400
13526
  },
13401
13527
  {
13402
- "name": "orientation",
13403
- "description": "Defines the layout direction of the split pane: `horizontal` or `vertical`.",
13528
+ "name": "flyout-location",
13404
13529
  "type": {
13405
- "text": "SplitPaneOrientation"
13530
+ "text": "UnpinnedLocation"
13406
13531
  },
13407
- "fieldName": "orientation"
13532
+ "description": "Indicates the flyout location of the splitter.",
13533
+ "fieldName": "flyoutLocation",
13534
+ "attribute": "flyout-location"
13408
13535
  },
13409
13536
  {
13410
- "name": "size",
13537
+ "name": "scrollSpeed",
13411
13538
  "type": {
13412
13539
  "text": "number | undefined"
13413
13540
  },
13414
- "fieldName": "size"
13541
+ "fieldName": "scrollSpeed"
13415
13542
  }
13416
13543
  ],
13417
13544
  "mixins": [
@@ -13424,7 +13551,7 @@
13424
13551
  "name": "LitElement",
13425
13552
  "package": "lit"
13426
13553
  },
13427
- "tagName": "igc-split-pane",
13554
+ "tagName": "igc-splitter-component",
13428
13555
  "customElement": true
13429
13556
  }
13430
13557
  ],
@@ -13433,32 +13560,54 @@
13433
13560
  "kind": "js",
13434
13561
  "name": "default",
13435
13562
  "declaration": {
13436
- "name": "IgcSplitPaneComponent",
13437
- "module": "src/components/dockmanager/panes/split-pane-component.ts"
13563
+ "name": "IgcSplitterComponent",
13564
+ "module": "src/components/dockmanager/panes/splitter-component.ts"
13438
13565
  }
13439
13566
  }
13440
13567
  ]
13441
13568
  },
13442
13569
  {
13443
13570
  "kind": "javascript-module",
13444
- "path": "src/components/dockmanager/panes/splitter-component.ts",
13571
+ "path": "src/components/dockmanager/panes/unpinned-pane-header-component.ts",
13445
13572
  "declarations": [
13446
13573
  {
13447
13574
  "kind": "class",
13448
13575
  "description": "",
13449
- "name": "IgcSplitterComponent",
13576
+ "name": "IgcUnpinnedPaneHeaderComponent",
13450
13577
  "cssParts": [
13451
13578
  {
13452
- "description": "The main container of the splitter.",
13453
- "name": "splitter"
13579
+ "description": "The main container of the pane header.",
13580
+ "name": "unpinned-pane-header"
13454
13581
  },
13455
13582
  {
13456
- "description": "The draggable element that users interact with.",
13457
- "name": "splitter-base"
13583
+ "description": "Applied when the header is in a horizontal orientation.",
13584
+ "name": "horizontal"
13458
13585
  },
13459
13586
  {
13460
- "description": "The visual indicator (ghost element) shown during drag.",
13461
- "name": "splitter-ghost"
13587
+ "description": "Applied when the header is in a vertical orientation.",
13588
+ "name": "vertical"
13589
+ },
13590
+ {
13591
+ "description": "Applied when the header is on the left or top side.",
13592
+ "name": "start"
13593
+ },
13594
+ {
13595
+ "description": "Applied when the header is on the right or bottom side.",
13596
+ "name": "end"
13597
+ },
13598
+ {
13599
+ "description": "Applied when the header is in active state.",
13600
+ "name": "active"
13601
+ },
13602
+ {
13603
+ "description": "Applied when the header is disabled.",
13604
+ "name": "disabled"
13605
+ }
13606
+ ],
13607
+ "slots": [
13608
+ {
13609
+ "description": "Default slot for the pane header content.",
13610
+ "name": ""
13462
13611
  }
13463
13612
  ],
13464
13613
  "members": [
@@ -13471,206 +13620,259 @@
13471
13620
  "privacy": "public",
13472
13621
  "static": true,
13473
13622
  "readonly": true,
13474
- "default": "'igc-splitter-component'"
13475
- },
13476
- {
13477
- "kind": "method",
13478
- "name": "register",
13479
- "privacy": "public",
13480
- "static": true
13623
+ "default": "'igc-unpinned-pane-header'"
13481
13624
  },
13482
13625
  {
13483
13626
  "kind": "field",
13484
- "name": "_paneSizes",
13627
+ "name": "_location",
13485
13628
  "type": {
13486
- "text": "number[] | null"
13629
+ "text": "UnpinnedLocation"
13487
13630
  },
13488
- "privacy": "private",
13489
- "default": "null"
13631
+ "privacy": "private"
13490
13632
  },
13491
13633
  {
13492
13634
  "kind": "field",
13493
- "name": "_paneMinSizes",
13635
+ "name": "_isActive",
13494
13636
  "type": {
13495
- "text": "number[] | null"
13637
+ "text": "boolean"
13496
13638
  },
13497
13639
  "privacy": "private",
13498
- "default": "null"
13640
+ "default": "false"
13499
13641
  },
13500
13642
  {
13501
13643
  "kind": "field",
13502
- "name": "_flyoutMaxSize",
13644
+ "name": "_disabled",
13503
13645
  "type": {
13504
- "text": "number"
13646
+ "text": "boolean"
13505
13647
  },
13506
13648
  "privacy": "private",
13507
- "default": "0"
13649
+ "default": "false"
13650
+ },
13651
+ {
13652
+ "kind": "method",
13653
+ "name": "register",
13654
+ "privacy": "public",
13655
+ "static": true
13508
13656
  },
13509
13657
  {
13510
13658
  "kind": "field",
13511
- "name": "_dragService",
13512
- "type": {
13513
- "text": "IgcDragService | undefined"
13514
- },
13659
+ "name": "location",
13660
+ "privacy": "public",
13661
+ "description": "The location where the unpinned pane is docked.",
13662
+ "attribute": "location"
13663
+ },
13664
+ {
13665
+ "kind": "field",
13666
+ "name": "isActive",
13667
+ "privacy": "public",
13668
+ "description": "Indicates whether the unpinned pane header is active.",
13669
+ "default": "false",
13670
+ "attribute": "isActive"
13671
+ },
13672
+ {
13673
+ "kind": "field",
13674
+ "name": "disabled",
13675
+ "privacy": "public",
13676
+ "description": "Indicates whether the unpinned pane header is disabled.",
13677
+ "default": "false",
13678
+ "attribute": "disabled"
13679
+ },
13680
+ {
13681
+ "kind": "field",
13682
+ "name": "_dynamicStyles",
13683
+ "privacy": "private",
13684
+ "readonly": true
13685
+ },
13686
+ {
13687
+ "kind": "method",
13688
+ "name": "_applyDynamicStyles",
13515
13689
  "privacy": "private"
13690
+ }
13691
+ ],
13692
+ "attributes": [
13693
+ {
13694
+ "name": "is-active",
13695
+ "description": "Indicates whether the unpinned pane header is active.",
13696
+ "default": "false",
13697
+ "fieldName": "isActive"
13698
+ },
13699
+ {
13700
+ "name": "disabled",
13701
+ "description": "Indicates whether the unpinned pane header is disabled.",
13702
+ "default": "false",
13703
+ "fieldName": "disabled",
13704
+ "attribute": "disabled"
13705
+ },
13706
+ {
13707
+ "name": "location",
13708
+ "description": "The location where the unpinned pane is docked.",
13709
+ "fieldName": "location"
13710
+ },
13711
+ {
13712
+ "name": "isActive",
13713
+ "description": "Indicates whether the unpinned pane header is active.",
13714
+ "default": "false",
13715
+ "attribute": "is-active",
13716
+ "fieldName": "isActive"
13717
+ }
13718
+ ],
13719
+ "superclass": {
13720
+ "name": "LitElement",
13721
+ "package": "lit"
13722
+ },
13723
+ "tagName": "igc-unpinned-pane-header",
13724
+ "customElement": true
13725
+ }
13726
+ ],
13727
+ "exports": [
13728
+ {
13729
+ "kind": "js",
13730
+ "name": "default",
13731
+ "declaration": {
13732
+ "name": "IgcUnpinnedPaneHeaderComponent",
13733
+ "module": "src/components/dockmanager/panes/unpinned-pane-header-component.ts"
13734
+ }
13735
+ }
13736
+ ]
13737
+ },
13738
+ {
13739
+ "kind": "javascript-module",
13740
+ "path": "src/components/dockmanager/pane-navigator/pane-navigator-component.ts",
13741
+ "declarations": [
13742
+ {
13743
+ "kind": "class",
13744
+ "description": "",
13745
+ "name": "IgcPaneNavigatorComponent",
13746
+ "cssParts": [
13747
+ {
13748
+ "description": "Wrapper of the panel.",
13749
+ "name": "base"
13750
+ },
13751
+ {
13752
+ "description": "The header element which contains the header of the currently selected pane.",
13753
+ "name": "header"
13754
+ },
13755
+ {
13756
+ "description": "The section element where groups of panes and documents are displayed.",
13757
+ "name": "body"
13758
+ },
13759
+ {
13760
+ "description": "The article element which contains all items of the same group - panes or documents.",
13761
+ "name": "group"
13516
13762
  },
13763
+ {
13764
+ "description": "The header element displayed above the group of panes/documents.",
13765
+ "name": "title"
13766
+ }
13767
+ ],
13768
+ "members": [
13517
13769
  {
13518
13770
  "kind": "field",
13519
- "name": "resizeEndEmitted",
13771
+ "name": "tagName",
13520
13772
  "type": {
13521
- "text": "boolean"
13773
+ "text": "string"
13522
13774
  },
13523
- "privacy": "private",
13524
- "default": "false"
13775
+ "privacy": "public",
13776
+ "static": true,
13777
+ "readonly": true,
13778
+ "default": "'igc-pane-navigator'"
13525
13779
  },
13526
13780
  {
13527
- "kind": "field",
13528
- "name": "_splitPaneOrientation",
13529
- "type": {
13530
- "text": "SplitPaneOrientation"
13531
- },
13532
- "privacy": "private",
13533
- "default": "'horizontal'"
13781
+ "kind": "method",
13782
+ "name": "register",
13783
+ "privacy": "public",
13784
+ "static": true
13534
13785
  },
13535
13786
  {
13536
13787
  "kind": "field",
13537
- "name": "isRTL",
13788
+ "name": "_paneNav",
13538
13789
  "type": {
13539
- "text": "boolean"
13790
+ "text": "Ref<HTMLElement>"
13540
13791
  },
13541
- "privacy": "private",
13542
- "readonly": true
13792
+ "privacy": "private"
13543
13793
  },
13544
13794
  {
13545
13795
  "kind": "field",
13546
- "name": "_dragOffset",
13796
+ "name": "_allItems",
13547
13797
  "type": {
13548
- "text": "number"
13798
+ "text": "IgcContentPane[]"
13549
13799
  },
13550
13800
  "privacy": "private",
13551
- "default": "0"
13801
+ "default": "[]"
13552
13802
  },
13553
13803
  {
13554
13804
  "kind": "field",
13555
- "name": "_hasCustomSplitterHandle",
13805
+ "name": "_allItemsElement",
13556
13806
  "type": {
13557
- "text": "boolean"
13807
+ "text": "HTMLElement[]"
13558
13808
  },
13559
13809
  "privacy": "private",
13560
- "default": "false"
13810
+ "default": "[]"
13561
13811
  },
13562
13812
  {
13563
13813
  "kind": "field",
13564
- "name": "showDragGhost",
13814
+ "name": "activeDocuments",
13565
13815
  "type": {
13566
- "text": "boolean"
13816
+ "text": "IgcContentPane[]"
13567
13817
  },
13568
13818
  "privacy": "public",
13569
- "default": "false",
13570
- "description": "Indicates whether the drag ghost element is shown while resizing.",
13571
- "attribute": "show-drag-ghost"
13819
+ "default": "[]",
13820
+ "description": "Determines currently visible documents.",
13821
+ "attribute": "activeDocuments"
13572
13822
  },
13573
13823
  {
13574
13824
  "kind": "field",
13575
- "name": "parentUseFixedSize",
13825
+ "name": "activePanes",
13576
13826
  "type": {
13577
- "text": "boolean"
13827
+ "text": "IgcContentPane[]"
13578
13828
  },
13579
13829
  "privacy": "public",
13580
- "default": "false",
13581
- "description": "Indicates if the parent pane uses fixed pane sizes.",
13582
- "attribute": "parent-use-fixed-size"
13583
- },
13584
- {
13585
- "kind": "field",
13586
- "name": "splitPaneOrientation",
13587
- "privacy": "public",
13588
- "description": "Defines the orientation of the splitter based on the split pane orientation.",
13589
- "default": "horizontal",
13590
- "attribute": "split-pane-orientation"
13830
+ "default": "[]",
13831
+ "description": "Determines currently visible panes.",
13832
+ "attribute": "activePanes"
13591
13833
  },
13592
13834
  {
13593
13835
  "kind": "field",
13594
- "name": "flyoutLocation",
13836
+ "name": "selectedIndex",
13595
13837
  "type": {
13596
- "text": "UnpinnedLocation"
13838
+ "text": "number"
13597
13839
  },
13598
13840
  "privacy": "public",
13599
- "description": "Indicates the flyout location of the splitter.",
13600
- "attribute": "flyout-location"
13841
+ "description": "Determines the index of the selected item.",
13842
+ "attribute": "selectedIndex"
13601
13843
  },
13602
13844
  {
13603
13845
  "kind": "field",
13604
- "name": "scrollSpeed",
13846
+ "name": "previousActivePaneIndex",
13605
13847
  "type": {
13606
- "text": "number | undefined"
13848
+ "text": "number"
13607
13849
  },
13608
13850
  "privacy": "public",
13609
- "attribute": "scrollSpeed"
13610
- },
13611
- {
13612
- "kind": "field",
13613
- "name": "_ghostRef",
13614
- "type": {
13615
- "text": "HTMLElement"
13616
- },
13617
- "privacy": "private"
13851
+ "description": "Determines the index of the previously selected item.",
13852
+ "attribute": "previousActivePaneIndex"
13618
13853
  },
13619
13854
  {
13620
13855
  "kind": "field",
13621
- "name": "_splitterBaseRef",
13856
+ "name": "resourceStrings",
13622
13857
  "type": {
13623
- "text": "HTMLElement"
13858
+ "text": "IgcDockManagerResourceStrings | undefined"
13624
13859
  },
13625
- "privacy": "private"
13626
- },
13627
- {
13628
- "kind": "field",
13629
- "name": "dragStart",
13630
- "privacy": "private"
13631
- },
13632
- {
13633
- "kind": "field",
13634
- "name": "dragEnd",
13635
- "privacy": "private"
13636
- },
13637
- {
13638
- "kind": "field",
13639
- "name": "dragMove",
13640
- "privacy": "private"
13641
- },
13642
- {
13643
- "kind": "field",
13644
- "name": "_handlePointerDown",
13645
- "privacy": "private"
13646
- },
13647
- {
13648
- "kind": "field",
13649
- "name": "_handlePointerUp",
13650
- "privacy": "private"
13651
- },
13652
- {
13653
- "kind": "field",
13654
- "name": "applyAutoDrag",
13655
- "privacy": "public"
13860
+ "privacy": "public",
13861
+ "description": "The resource strings for the pane navigator.",
13862
+ "attribute": "resourceStrings"
13656
13863
  },
13657
13864
  {
13658
13865
  "kind": "field",
13659
- "name": "_handleKeyDown",
13866
+ "name": "_handleKeyUp",
13660
13867
  "privacy": "private"
13661
13868
  },
13662
13869
  {
13663
13870
  "kind": "method",
13664
- "name": "_calculateOffset",
13871
+ "name": "_handleKeyDown",
13665
13872
  "privacy": "private",
13666
- "return": {
13667
- "type": {
13668
- "text": "number"
13669
- }
13670
- },
13671
13873
  "parameters": [
13672
13874
  {
13673
- "name": "e",
13875
+ "name": "event",
13674
13876
  "type": {
13675
13877
  "text": "KeyboardEvent"
13676
13878
  }
@@ -13679,139 +13881,120 @@
13679
13881
  },
13680
13882
  {
13681
13883
  "kind": "method",
13682
- "name": "_dragStartHelper",
13884
+ "name": "_scrollItemToView",
13885
+ "privacy": "private"
13886
+ },
13887
+ {
13888
+ "kind": "method",
13889
+ "name": "_navigateToIndex",
13683
13890
  "privacy": "private",
13684
13891
  "parameters": [
13685
13892
  {
13686
- "name": "offset",
13893
+ "name": "initialIndex",
13687
13894
  "type": {
13688
13895
  "text": "number"
13689
13896
  }
13897
+ },
13898
+ {
13899
+ "name": "direction",
13900
+ "type": {
13901
+ "text": "'next' | 'previous'"
13902
+ }
13690
13903
  }
13691
13904
  ]
13692
13905
  },
13693
13906
  {
13694
13907
  "kind": "method",
13695
- "name": "_dragEndHelper",
13696
- "privacy": "private"
13697
- },
13698
- {
13699
- "kind": "method",
13700
- "name": "_constrainFlyoutResize",
13701
- "privacy": "private"
13702
- },
13703
- {
13704
- "kind": "method",
13705
- "name": "_constrainSplitPaneResize",
13706
- "privacy": "private"
13707
- },
13708
- {
13709
- "kind": "method",
13710
- "name": "_handleSplitterHandleSlotChange",
13711
- "privacy": "private"
13712
- },
13713
- {
13714
- "kind": "method",
13715
- "name": "_isArrowUp",
13908
+ "name": "_increaseSelectedIndex",
13716
13909
  "privacy": "private",
13717
- "return": {
13718
- "type": {
13719
- "text": "boolean"
13720
- }
13721
- },
13722
13910
  "parameters": [
13723
13911
  {
13724
- "name": "event",
13725
- "type": {
13726
- "text": "KeyboardEvent"
13727
- }
13912
+ "name": "amount",
13913
+ "default": "1"
13728
13914
  }
13729
13915
  ]
13730
13916
  },
13731
13917
  {
13732
13918
  "kind": "method",
13733
- "name": "_isArrowDown",
13919
+ "name": "_decreaseSelectedIndex",
13734
13920
  "privacy": "private",
13735
- "return": {
13736
- "type": {
13737
- "text": "boolean"
13738
- }
13739
- },
13740
13921
  "parameters": [
13741
13922
  {
13742
- "name": "event",
13743
- "type": {
13744
- "text": "KeyboardEvent"
13745
- }
13923
+ "name": "amount",
13924
+ "default": "1"
13746
13925
  }
13747
13926
  ]
13748
13927
  },
13749
13928
  {
13750
13929
  "kind": "method",
13751
- "name": "_isArrowLeft",
13930
+ "name": "_resolveItemPart",
13752
13931
  "privacy": "private",
13753
- "return": {
13754
- "type": {
13755
- "text": "boolean"
13756
- }
13757
- },
13758
13932
  "parameters": [
13759
13933
  {
13760
- "name": "event",
13934
+ "name": "item",
13761
13935
  "type": {
13762
- "text": "KeyboardEvent"
13936
+ "text": "IgcContentPane"
13937
+ }
13938
+ },
13939
+ {
13940
+ "name": "index",
13941
+ "type": {
13942
+ "text": "number"
13943
+ }
13944
+ },
13945
+ {
13946
+ "name": "isDocHost",
13947
+ "type": {
13948
+ "text": "boolean"
13763
13949
  }
13764
13950
  }
13765
13951
  ]
13766
13952
  },
13767
13953
  {
13768
13954
  "kind": "method",
13769
- "name": "_isArrowRight",
13955
+ "name": "_selectItem",
13770
13956
  "privacy": "private",
13771
13957
  "return": {
13772
13958
  "type": {
13773
- "text": "boolean"
13959
+ "text": "void"
13774
13960
  }
13775
13961
  },
13776
13962
  "parameters": [
13777
13963
  {
13778
- "name": "event",
13964
+ "name": "index",
13779
13965
  "type": {
13780
- "text": "KeyboardEvent"
13966
+ "text": "number"
13781
13967
  }
13782
- }
13783
- ]
13784
- },
13785
- {
13786
- "kind": "method",
13787
- "name": "_isHorizontal",
13788
- "privacy": "private"
13789
- },
13790
- {
13791
- "kind": "method",
13792
- "name": "_isVertical",
13793
- "privacy": "private"
13968
+ },
13969
+ {
13970
+ "name": "isDocHost",
13971
+ "type": {
13972
+ "text": "boolean"
13973
+ }
13974
+ }
13975
+ ]
13794
13976
  },
13795
13977
  {
13796
13978
  "kind": "method",
13797
- "name": "_getMinSize",
13979
+ "name": "_renderItems",
13798
13980
  "privacy": "private",
13799
- "return": {
13800
- "type": {
13801
- "text": "number"
13802
- }
13803
- },
13804
13981
  "parameters": [
13805
13982
  {
13806
- "name": "pane",
13983
+ "name": "title",
13807
13984
  "type": {
13808
- "text": "HTMLElement | undefined"
13985
+ "text": "string"
13809
13986
  }
13810
13987
  },
13811
13988
  {
13812
- "name": "orientation",
13989
+ "name": "items",
13813
13990
  "type": {
13814
- "text": "'horizontal' | 'vertical'"
13991
+ "text": "IgcContentPane[]"
13992
+ }
13993
+ },
13994
+ {
13995
+ "name": "isDocHost",
13996
+ "type": {
13997
+ "text": "boolean"
13815
13998
  }
13816
13999
  }
13817
14000
  ]
@@ -13954,12 +14137,8 @@
13954
14137
  ],
13955
14138
  "events": [
13956
14139
  {
13957
- "description": "Emitted when a resize interaction starts.",
13958
- "name": "igcResizeStart"
13959
- },
13960
- {
13961
- "description": "Emitted when the resize ends, passing the final size.",
13962
- "name": "igcResizeEnd"
14140
+ "description": "Fired when pane navigator is closed.",
14141
+ "name": "igcClosed"
13963
14142
  },
13964
14143
  {
13965
14144
  "type": {
@@ -13973,47 +14152,46 @@
13973
14152
  ],
13974
14153
  "attributes": [
13975
14154
  {
13976
- "name": "show-drag-ghost",
14155
+ "name": "activeDocuments",
13977
14156
  "type": {
13978
- "text": "boolean"
14157
+ "text": "IgcContentPane[]"
13979
14158
  },
13980
- "default": "false",
13981
- "description": "Indicates whether the drag ghost element is shown while resizing.",
13982
- "fieldName": "showDragGhost",
13983
- "attribute": "show-drag-ghost"
14159
+ "default": "[]",
14160
+ "description": "Determines currently visible documents.",
14161
+ "fieldName": "activeDocuments"
13984
14162
  },
13985
14163
  {
13986
- "name": "parent-use-fixed-size",
14164
+ "name": "activePanes",
13987
14165
  "type": {
13988
- "text": "boolean"
14166
+ "text": "IgcContentPane[]"
13989
14167
  },
13990
- "default": "false",
13991
- "description": "Indicates if the parent pane uses fixed pane sizes.",
13992
- "fieldName": "parentUseFixedSize",
13993
- "attribute": "parent-use-fixed-size"
14168
+ "default": "[]",
14169
+ "description": "Determines currently visible panes.",
14170
+ "fieldName": "activePanes"
13994
14171
  },
13995
14172
  {
13996
- "name": "split-pane-orientation",
13997
- "description": "Defines the orientation of the splitter based on the split pane orientation.",
13998
- "default": "horizontal",
13999
- "fieldName": "splitPaneOrientation",
14000
- "attribute": "split-pane-orientation"
14173
+ "name": "selectedIndex",
14174
+ "type": {
14175
+ "text": "number"
14176
+ },
14177
+ "description": "Determines the index of the selected item.",
14178
+ "fieldName": "selectedIndex"
14001
14179
  },
14002
14180
  {
14003
- "name": "flyout-location",
14181
+ "name": "previousActivePaneIndex",
14004
14182
  "type": {
14005
- "text": "UnpinnedLocation"
14183
+ "text": "number"
14006
14184
  },
14007
- "description": "Indicates the flyout location of the splitter.",
14008
- "fieldName": "flyoutLocation",
14009
- "attribute": "flyout-location"
14185
+ "description": "Determines the index of the previously selected item.",
14186
+ "fieldName": "previousActivePaneIndex"
14010
14187
  },
14011
14188
  {
14012
- "name": "scrollSpeed",
14189
+ "name": "resourceStrings",
14013
14190
  "type": {
14014
- "text": "number | undefined"
14191
+ "text": "IgcDockManagerResourceStrings | undefined"
14015
14192
  },
14016
- "fieldName": "scrollSpeed"
14193
+ "description": "The resource strings for the pane navigator.",
14194
+ "fieldName": "resourceStrings"
14017
14195
  }
14018
14196
  ],
14019
14197
  "mixins": [
@@ -14026,176 +14204,7 @@
14026
14204
  "name": "LitElement",
14027
14205
  "package": "lit"
14028
14206
  },
14029
- "tagName": "igc-splitter-component",
14030
- "customElement": true
14031
- }
14032
- ],
14033
- "exports": [
14034
- {
14035
- "kind": "js",
14036
- "name": "default",
14037
- "declaration": {
14038
- "name": "IgcSplitterComponent",
14039
- "module": "src/components/dockmanager/panes/splitter-component.ts"
14040
- }
14041
- }
14042
- ]
14043
- },
14044
- {
14045
- "kind": "javascript-module",
14046
- "path": "src/components/dockmanager/panes/unpinned-pane-header-component.ts",
14047
- "declarations": [
14048
- {
14049
- "kind": "class",
14050
- "description": "",
14051
- "name": "IgcUnpinnedPaneHeaderComponent",
14052
- "cssParts": [
14053
- {
14054
- "description": "The main container of the pane header.",
14055
- "name": "unpinned-pane-header"
14056
- },
14057
- {
14058
- "description": "Applied when the header is in a horizontal orientation.",
14059
- "name": "horizontal"
14060
- },
14061
- {
14062
- "description": "Applied when the header is in a vertical orientation.",
14063
- "name": "vertical"
14064
- },
14065
- {
14066
- "description": "Applied when the header is on the left or top side.",
14067
- "name": "start"
14068
- },
14069
- {
14070
- "description": "Applied when the header is on the right or bottom side.",
14071
- "name": "end"
14072
- },
14073
- {
14074
- "description": "Applied when the header is in active state.",
14075
- "name": "active"
14076
- },
14077
- {
14078
- "description": "Applied when the header is disabled.",
14079
- "name": "disabled"
14080
- }
14081
- ],
14082
- "slots": [
14083
- {
14084
- "description": "Default slot for the pane header content.",
14085
- "name": ""
14086
- }
14087
- ],
14088
- "members": [
14089
- {
14090
- "kind": "field",
14091
- "name": "tagName",
14092
- "type": {
14093
- "text": "string"
14094
- },
14095
- "privacy": "public",
14096
- "static": true,
14097
- "readonly": true,
14098
- "default": "'igc-unpinned-pane-header'"
14099
- },
14100
- {
14101
- "kind": "field",
14102
- "name": "_location",
14103
- "type": {
14104
- "text": "UnpinnedLocation"
14105
- },
14106
- "privacy": "private"
14107
- },
14108
- {
14109
- "kind": "field",
14110
- "name": "_isActive",
14111
- "type": {
14112
- "text": "boolean"
14113
- },
14114
- "privacy": "private",
14115
- "default": "false"
14116
- },
14117
- {
14118
- "kind": "field",
14119
- "name": "_disabled",
14120
- "type": {
14121
- "text": "boolean"
14122
- },
14123
- "privacy": "private",
14124
- "default": "false"
14125
- },
14126
- {
14127
- "kind": "method",
14128
- "name": "register",
14129
- "privacy": "public",
14130
- "static": true
14131
- },
14132
- {
14133
- "kind": "field",
14134
- "name": "location",
14135
- "privacy": "public",
14136
- "description": "The location where the unpinned pane is docked.",
14137
- "attribute": "location"
14138
- },
14139
- {
14140
- "kind": "field",
14141
- "name": "isActive",
14142
- "privacy": "public",
14143
- "description": "Indicates whether the unpinned pane header is active.",
14144
- "default": "false",
14145
- "attribute": "isActive"
14146
- },
14147
- {
14148
- "kind": "field",
14149
- "name": "disabled",
14150
- "privacy": "public",
14151
- "description": "Indicates whether the unpinned pane header is disabled.",
14152
- "default": "false",
14153
- "attribute": "disabled"
14154
- },
14155
- {
14156
- "kind": "field",
14157
- "name": "_dynamicStyles",
14158
- "privacy": "private",
14159
- "readonly": true
14160
- },
14161
- {
14162
- "kind": "method",
14163
- "name": "_applyDynamicStyles",
14164
- "privacy": "private"
14165
- }
14166
- ],
14167
- "attributes": [
14168
- {
14169
- "name": "is-active",
14170
- "description": "Indicates whether the unpinned pane header is active.",
14171
- "default": "false",
14172
- "fieldName": "isActive"
14173
- },
14174
- {
14175
- "name": "disabled",
14176
- "description": "Indicates whether the unpinned pane header is disabled.",
14177
- "default": "false",
14178
- "fieldName": "disabled",
14179
- "attribute": "disabled"
14180
- },
14181
- {
14182
- "name": "location",
14183
- "description": "The location where the unpinned pane is docked.",
14184
- "fieldName": "location"
14185
- },
14186
- {
14187
- "name": "isActive",
14188
- "description": "Indicates whether the unpinned pane header is active.",
14189
- "default": "false",
14190
- "attribute": "is-active",
14191
- "fieldName": "isActive"
14192
- }
14193
- ],
14194
- "superclass": {
14195
- "name": "LitElement",
14196
- "package": "lit"
14197
- },
14198
- "tagName": "igc-unpinned-pane-header",
14207
+ "tagName": "igc-pane-navigator",
14199
14208
  "customElement": true
14200
14209
  }
14201
14210
  ],
@@ -14204,8 +14213,8 @@
14204
14213
  "kind": "js",
14205
14214
  "name": "default",
14206
14215
  "declaration": {
14207
- "name": "IgcUnpinnedPaneHeaderComponent",
14208
- "module": "src/components/dockmanager/panes/unpinned-pane-header-component.ts"
14216
+ "name": "IgcPaneNavigatorComponent",
14217
+ "module": "src/components/dockmanager/pane-navigator/pane-navigator-component.ts"
14209
14218
  }
14210
14219
  }
14211
14220
  ]