igniteui-dockmanager 2.1.0 → 2.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/components/button/button-component.js +3 -4
- package/components/context-menu/context-menu.js +3 -4
- package/components/dockmanager/docking/edge-docking-indicator-component.js +3 -4
- package/components/dockmanager/docking/joystick-icon-component.js +3 -4
- package/components/dockmanager/docking/joystick-indicator-component.js +3 -4
- package/components/dockmanager/docking/root-docking-indicator-component.js +3 -4
- package/components/dockmanager/docking/splitter-docking-indicator-component.js +3 -4
- package/components/dockmanager/dockmanager-component.js +15 -16
- package/components/dockmanager/dockmanager.service.js +1 -1
- package/components/dockmanager/pane-navigator/pane-navigator-component.js +3 -4
- package/components/dockmanager/panes/content-pane-component.js +3 -4
- package/components/dockmanager/panes/document-host-component.js +3 -4
- package/components/dockmanager/panes/floating-pane-component.js +3 -4
- package/components/dockmanager/panes/pane-header-component.js +3 -4
- package/components/dockmanager/panes/resizer-component.js +2 -3
- package/components/dockmanager/panes/split-pane-component.js +3 -4
- package/components/dockmanager/panes/splitter-component.d.ts +3 -3
- package/components/dockmanager/panes/splitter-component.js +3 -4
- package/components/dockmanager/panes/unpinned-pane-header-component.js +3 -4
- package/components/icon/icon-component.js +3 -4
- package/components/sample-component/sample-component.js +109 -109
- package/components/tabs/tab-header-component.js +3 -4
- package/components/tabs/tab-panel-component.js +3 -4
- package/components/tabs/tabs-component.js +3 -4
- package/custom-elements.json +65 -3
- package/igniteui-dockmanager.html-data.json +1 -1
- package/package.json +1 -1
- package/web-types.json +1 -1
|
@@ -857,6 +857,115 @@ let SampleComponent = class SampleComponent extends LitElement {
|
|
|
857
857
|
this._newId = '';
|
|
858
858
|
this.foundElem = [];
|
|
859
859
|
}
|
|
860
|
+
static { this.styles = css `
|
|
861
|
+
:host {
|
|
862
|
+
display: flex;
|
|
863
|
+
flex-direction: column;
|
|
864
|
+
height: 100%;
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
igc-dockmanager {
|
|
868
|
+
margin: 10px;
|
|
869
|
+
border: 1px solid black;
|
|
870
|
+
--igc-resize-target-border-width: 2px;
|
|
871
|
+
/* --igc-splitter-thickness: 10px; */
|
|
872
|
+
/* --igc-resize-handle-thickness: 10px;
|
|
873
|
+
--igc-resize-handle-size: 150px; */
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
/*
|
|
877
|
+
igc-dockmanager {
|
|
878
|
+
background-color: rgb(227,230,233);
|
|
879
|
+
padding: 20px;
|
|
880
|
+
} */
|
|
881
|
+
|
|
882
|
+
/* igc-dockmanager::part(pane-header) {
|
|
883
|
+
background-color: #fff;
|
|
884
|
+
border-bottom: 2px solid rgb(227, 230, 233);
|
|
885
|
+
max-height: 15px;
|
|
886
|
+
min-height: 15px;
|
|
887
|
+
}
|
|
888
|
+
|
|
889
|
+
igc-dockmanager::part(pane-header active) {
|
|
890
|
+
font-weight: 700;
|
|
891
|
+
color: rgb(113, 115, 116);
|
|
892
|
+
box-shadow: none;
|
|
893
|
+
border-bottom: 2px solid rgb(113, 115, 116);
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
igc-dockmanager::part(pane-header-content) {
|
|
897
|
+
color: rgba(104, 97, 97, 0.938);
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
igc-dockmanager::part(splitter) {
|
|
901
|
+
flex: 0 0 15px;
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
igc-dockmanager::part(splitter-base) {
|
|
905
|
+
background: transparent;
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
igc-dockmanager::part(splitter-base)::after {
|
|
909
|
+
content: none;
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
igc-dockmanager::part(content-pane) {
|
|
913
|
+
border-radius: 10px;
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
igc-dockmanager::part(tab-header bottom) {
|
|
917
|
+
border-bottom-right-radius: 10px;
|
|
918
|
+
border-bottom-left-radius: 10px;
|
|
919
|
+
background-color: rgb(227, 230, 233);
|
|
920
|
+
}
|
|
921
|
+
|
|
922
|
+
igc-dockmanager::part(tab-header active selected bottom) {
|
|
923
|
+
font-weight: 700;
|
|
924
|
+
color: rgb(113, 115, 116);
|
|
925
|
+
box-shadow: inset 0 2px 0 0 rgb(113, 115, 116);
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
igc-dockmanager::part(tab-strip-area bottom) {
|
|
929
|
+
border-radius: 0 0 10px 10px;
|
|
930
|
+
border-bottom: 2px solid rgb(227, 230, 233);
|
|
931
|
+
background-color: #fff;
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
igc-dockmanager::part(tab-strip-actions bottom) {
|
|
935
|
+
display: none;
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
igc-dockmanager::part(tabs-content) {
|
|
939
|
+
border-radius: 10px 10px 0 0;
|
|
940
|
+
background-color: #fff;
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
igc-dockmanager::part(root-docking-indicator),
|
|
944
|
+
igc-dockmanager::part(splitter-docking-indicator),
|
|
945
|
+
igc-dockmanager::part(docking-indicator) {
|
|
946
|
+
background-color: rgba(49, 45, 49, 0.733);
|
|
947
|
+
color: #fff;
|
|
948
|
+
border: none;
|
|
949
|
+
border-radius: 5px;
|
|
950
|
+
margin: 2px;
|
|
951
|
+
}
|
|
952
|
+
|
|
953
|
+
igc-dockmanager::part(docking-preview) {
|
|
954
|
+
background-color: rgb(227, 230, 233);
|
|
955
|
+
opacity: 0.7;
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
igc-dockmanager::part(unpinned-pane-header) {
|
|
959
|
+
border-radius: 5px;
|
|
960
|
+
margin-bottom: 5px;
|
|
961
|
+
box-shadow: inset 0 2px 0 0 rgb(113, 115, 116);
|
|
962
|
+
background-color: #fff;
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
igc-dockmanager::part(floating-window) {
|
|
966
|
+
border-radius: 10px;
|
|
967
|
+
} */
|
|
968
|
+
`; }
|
|
860
969
|
log(message, ...optionalParams) {
|
|
861
970
|
if (this.logEnabled) {
|
|
862
971
|
console.log(message, optionalParams);
|
|
@@ -1139,115 +1248,6 @@ let SampleComponent = class SampleComponent extends LitElement {
|
|
|
1139
1248
|
`;
|
|
1140
1249
|
}
|
|
1141
1250
|
};
|
|
1142
|
-
SampleComponent.styles = css `
|
|
1143
|
-
:host {
|
|
1144
|
-
display: flex;
|
|
1145
|
-
flex-direction: column;
|
|
1146
|
-
height: 100%;
|
|
1147
|
-
}
|
|
1148
|
-
|
|
1149
|
-
igc-dockmanager {
|
|
1150
|
-
margin: 10px;
|
|
1151
|
-
border: 1px solid black;
|
|
1152
|
-
--igc-resize-target-border-width: 2px;
|
|
1153
|
-
/* --igc-splitter-thickness: 10px; */
|
|
1154
|
-
/* --igc-resize-handle-thickness: 10px;
|
|
1155
|
-
--igc-resize-handle-size: 150px; */
|
|
1156
|
-
}
|
|
1157
|
-
|
|
1158
|
-
/*
|
|
1159
|
-
igc-dockmanager {
|
|
1160
|
-
background-color: rgb(227,230,233);
|
|
1161
|
-
padding: 20px;
|
|
1162
|
-
} */
|
|
1163
|
-
|
|
1164
|
-
/* igc-dockmanager::part(pane-header) {
|
|
1165
|
-
background-color: #fff;
|
|
1166
|
-
border-bottom: 2px solid rgb(227, 230, 233);
|
|
1167
|
-
max-height: 15px;
|
|
1168
|
-
min-height: 15px;
|
|
1169
|
-
}
|
|
1170
|
-
|
|
1171
|
-
igc-dockmanager::part(pane-header active) {
|
|
1172
|
-
font-weight: 700;
|
|
1173
|
-
color: rgb(113, 115, 116);
|
|
1174
|
-
box-shadow: none;
|
|
1175
|
-
border-bottom: 2px solid rgb(113, 115, 116);
|
|
1176
|
-
}
|
|
1177
|
-
|
|
1178
|
-
igc-dockmanager::part(pane-header-content) {
|
|
1179
|
-
color: rgba(104, 97, 97, 0.938);
|
|
1180
|
-
}
|
|
1181
|
-
|
|
1182
|
-
igc-dockmanager::part(splitter) {
|
|
1183
|
-
flex: 0 0 15px;
|
|
1184
|
-
}
|
|
1185
|
-
|
|
1186
|
-
igc-dockmanager::part(splitter-base) {
|
|
1187
|
-
background: transparent;
|
|
1188
|
-
}
|
|
1189
|
-
|
|
1190
|
-
igc-dockmanager::part(splitter-base)::after {
|
|
1191
|
-
content: none;
|
|
1192
|
-
}
|
|
1193
|
-
|
|
1194
|
-
igc-dockmanager::part(content-pane) {
|
|
1195
|
-
border-radius: 10px;
|
|
1196
|
-
}
|
|
1197
|
-
|
|
1198
|
-
igc-dockmanager::part(tab-header bottom) {
|
|
1199
|
-
border-bottom-right-radius: 10px;
|
|
1200
|
-
border-bottom-left-radius: 10px;
|
|
1201
|
-
background-color: rgb(227, 230, 233);
|
|
1202
|
-
}
|
|
1203
|
-
|
|
1204
|
-
igc-dockmanager::part(tab-header active selected bottom) {
|
|
1205
|
-
font-weight: 700;
|
|
1206
|
-
color: rgb(113, 115, 116);
|
|
1207
|
-
box-shadow: inset 0 2px 0 0 rgb(113, 115, 116);
|
|
1208
|
-
}
|
|
1209
|
-
|
|
1210
|
-
igc-dockmanager::part(tab-strip-area bottom) {
|
|
1211
|
-
border-radius: 0 0 10px 10px;
|
|
1212
|
-
border-bottom: 2px solid rgb(227, 230, 233);
|
|
1213
|
-
background-color: #fff;
|
|
1214
|
-
}
|
|
1215
|
-
|
|
1216
|
-
igc-dockmanager::part(tab-strip-actions bottom) {
|
|
1217
|
-
display: none;
|
|
1218
|
-
}
|
|
1219
|
-
|
|
1220
|
-
igc-dockmanager::part(tabs-content) {
|
|
1221
|
-
border-radius: 10px 10px 0 0;
|
|
1222
|
-
background-color: #fff;
|
|
1223
|
-
}
|
|
1224
|
-
|
|
1225
|
-
igc-dockmanager::part(root-docking-indicator),
|
|
1226
|
-
igc-dockmanager::part(splitter-docking-indicator),
|
|
1227
|
-
igc-dockmanager::part(docking-indicator) {
|
|
1228
|
-
background-color: rgba(49, 45, 49, 0.733);
|
|
1229
|
-
color: #fff;
|
|
1230
|
-
border: none;
|
|
1231
|
-
border-radius: 5px;
|
|
1232
|
-
margin: 2px;
|
|
1233
|
-
}
|
|
1234
|
-
|
|
1235
|
-
igc-dockmanager::part(docking-preview) {
|
|
1236
|
-
background-color: rgb(227, 230, 233);
|
|
1237
|
-
opacity: 0.7;
|
|
1238
|
-
}
|
|
1239
|
-
|
|
1240
|
-
igc-dockmanager::part(unpinned-pane-header) {
|
|
1241
|
-
border-radius: 5px;
|
|
1242
|
-
margin-bottom: 5px;
|
|
1243
|
-
box-shadow: inset 0 2px 0 0 rgb(113, 115, 116);
|
|
1244
|
-
background-color: #fff;
|
|
1245
|
-
}
|
|
1246
|
-
|
|
1247
|
-
igc-dockmanager::part(floating-window) {
|
|
1248
|
-
border-radius: 10px;
|
|
1249
|
-
} */
|
|
1250
|
-
`;
|
|
1251
1251
|
__decorate([
|
|
1252
1252
|
property({ attribute: false })
|
|
1253
1253
|
], SampleComponent.prototype, "hiddenPanes", void 0);
|
|
@@ -15,7 +15,7 @@ import IgcButtonDMComponent from '../button/button-component.js';
|
|
|
15
15
|
import { IgcDragService, } from '../drag-drop/drag.service.js';
|
|
16
16
|
import IgcIconDMComponent from '../icon/icon-component.js';
|
|
17
17
|
import { styles } from './tab-header-component.css.js';
|
|
18
|
-
class IgcTabHeaderComponent extends EventEmitterMixin(LitElement) {
|
|
18
|
+
export default class IgcTabHeaderComponent extends EventEmitterMixin(LitElement) {
|
|
19
19
|
constructor() {
|
|
20
20
|
super(...arguments);
|
|
21
21
|
this._selected = false;
|
|
@@ -34,6 +34,8 @@ class IgcTabHeaderComponent extends EventEmitterMixin(LitElement) {
|
|
|
34
34
|
this.emitEvent('igcIconKeyDown', { detail: event });
|
|
35
35
|
};
|
|
36
36
|
}
|
|
37
|
+
static { this.tagName = 'igc-tab-header'; }
|
|
38
|
+
static { this.styles = [styles]; }
|
|
37
39
|
static register() {
|
|
38
40
|
registerComponent(IgcTabHeaderComponent, IgcIconDMComponent, IgcButtonDMComponent);
|
|
39
41
|
}
|
|
@@ -240,9 +242,6 @@ class IgcTabHeaderComponent extends EventEmitterMixin(LitElement) {
|
|
|
240
242
|
`;
|
|
241
243
|
}
|
|
242
244
|
}
|
|
243
|
-
IgcTabHeaderComponent.tagName = 'igc-tab-header';
|
|
244
|
-
IgcTabHeaderComponent.styles = [styles];
|
|
245
|
-
export default IgcTabHeaderComponent;
|
|
246
245
|
__decorate([
|
|
247
246
|
query('[part^=tab-header-close-button]')
|
|
248
247
|
], IgcTabHeaderComponent.prototype, "closeButton", void 0);
|
|
@@ -11,12 +11,14 @@ import { registerComponent } from '../../common/definitions/register.js';
|
|
|
11
11
|
import { EventEmitterMixin } from '../../common/mixins/event-emitter.js';
|
|
12
12
|
import { partNameMap } from '../../common/util.js';
|
|
13
13
|
import { styles } from './tab-panel-component.css.js';
|
|
14
|
-
class IgcTabPanelComponent extends EventEmitterMixin(LitElement) {
|
|
14
|
+
export default class IgcTabPanelComponent extends EventEmitterMixin(LitElement) {
|
|
15
15
|
constructor() {
|
|
16
16
|
super(...arguments);
|
|
17
17
|
this._selected = false;
|
|
18
18
|
this._disabled = false;
|
|
19
19
|
}
|
|
20
|
+
static { this.tagName = 'igc-tab-panel'; }
|
|
21
|
+
static { this.styles = [styles]; }
|
|
20
22
|
static register() {
|
|
21
23
|
registerComponent(IgcTabPanelComponent);
|
|
22
24
|
}
|
|
@@ -56,9 +58,6 @@ class IgcTabPanelComponent extends EventEmitterMixin(LitElement) {
|
|
|
56
58
|
return html ` <slot></slot> `;
|
|
57
59
|
}
|
|
58
60
|
}
|
|
59
|
-
IgcTabPanelComponent.tagName = 'igc-tab-panel';
|
|
60
|
-
IgcTabPanelComponent.styles = [styles];
|
|
61
|
-
export default IgcTabPanelComponent;
|
|
62
61
|
__decorate([
|
|
63
62
|
property({ type: Boolean, reflect: true })
|
|
64
63
|
], IgcTabPanelComponent.prototype, "selected", null);
|
|
@@ -20,7 +20,7 @@ import IgcTabHeaderComponent from './tab-header-component.js';
|
|
|
20
20
|
import IgcTabPanelComponent from './tab-panel-component.js';
|
|
21
21
|
import { styles } from './tabs-component.css.js';
|
|
22
22
|
let NEXT_TAB_ID = 0;
|
|
23
|
-
class IgcTabsComponent extends EventEmitterMixin(LitElement) {
|
|
23
|
+
export default class IgcTabsComponent extends EventEmitterMixin(LitElement) {
|
|
24
24
|
constructor() {
|
|
25
25
|
super(...arguments);
|
|
26
26
|
this._parentUseFixedSize = false;
|
|
@@ -71,6 +71,8 @@ class IgcTabsComponent extends EventEmitterMixin(LitElement) {
|
|
|
71
71
|
this.emitEvent('igcMaximizeMinimizeFocus');
|
|
72
72
|
};
|
|
73
73
|
}
|
|
74
|
+
static { this.tagName = 'igc-tabs-component'; }
|
|
75
|
+
static { this.styles = [styles]; }
|
|
74
76
|
static register() {
|
|
75
77
|
registerComponent(IgcTabsComponent, IgcTabHeaderComponent, IgcTabPanelComponent, IgcContextMenuComponent, IgcButtonDMComponent, IgcIconDMComponent);
|
|
76
78
|
}
|
|
@@ -409,9 +411,6 @@ class IgcTabsComponent extends EventEmitterMixin(LitElement) {
|
|
|
409
411
|
`;
|
|
410
412
|
}
|
|
411
413
|
}
|
|
412
|
-
IgcTabsComponent.tagName = 'igc-tabs-component';
|
|
413
|
-
IgcTabsComponent.styles = [styles];
|
|
414
|
-
export default IgcTabsComponent;
|
|
415
414
|
__decorate([
|
|
416
415
|
state()
|
|
417
416
|
], IgcTabsComponent.prototype, "_hasHiddenTabs", void 0);
|
package/custom-elements.json
CHANGED
|
@@ -3174,7 +3174,7 @@
|
|
|
3174
3174
|
"text": "array"
|
|
3175
3175
|
},
|
|
3176
3176
|
"privacy": "private",
|
|
3177
|
-
"default": "[ { slot: 'paneHeaderCloseButton', targetName: 'igc-pane-header', targetSlot: 'paneHeaderCloseButton', targetPart: 'pane-header-close-button', }, { slot: 'tabHeaderCloseButton', targetName: 'igc-tab-header', targetSlot: 'tabHeaderCloseButton', targetPart: 'tab-header-close-button', }, { slot: 'tabHeaderCloseButton', targetName: 'igc-context-menu', targetSlot: 'contextMenuCloseButton', targetPart: 'context-menu-close-button', }, { slot: 'closeButton', targetName: 'igc-pane-header', targetSlot: 'paneHeaderCloseButton', targetPart: 'pane-header-close-button', }, { slot: 'closeButton', targetName: 'igc-tab-header', targetSlot: 'tabHeaderCloseButton', targetPart: 'tab-header-close-button', }, { slot: 'closeButton', targetName: 'igc-context-menu', targetSlot: 'contextMenuCloseButton', targetPart: 'context-menu-close-button', }, { slot: 'moreTabsButton', targetName: 'igc-tabs-component', targetSlot: 'tabsMoreButton', targetPart: 'tabs-more-button', }, { slot: 'maximizeButton', targetName: 'igc-pane-header', targetSlot: 'paneHeaderMaximizeButton', targetPart: 'pane-header-maximize-button', }, { slot: 'maximizeButton', targetName: 'igc-tabs-component', targetSlot: 'tabsMaximizeButton', targetPart: 'tabs-maximize-button', }, { slot: 'minimizeButton', targetName: 'igc-pane-header', targetSlot: 'paneHeaderMinimizeButton', targetPart: 'pane-header-minimize-button', }, { slot: 'minimizeButton', targetName: 'igc-tabs-component', targetSlot: 'tabsMinimizeButton', targetPart: 'tabs-minimize-button', }, { slot: 'pinButton', targetName: 'igc-pane-header', targetSlot: 'paneHeaderPinButton', targetPart: 'pane-header-pin-button', }, { slot: 'unpinButton', targetName: 'igc-pane-header', targetSlot: 'paneHeaderUnpinButton', targetPart: 'pane-header-unpin-button', }, { slot: 'unpinButton', targetName: 'igc-context-menu', targetSlot: 'contextMenuUnpinButton', targetPart: 'context-menu-unpin-button', }, { slot: 'moreOptionsButton', targetName: 'igc-tab-header', targetSlot: 'tabHeaderMoreOptionsButton', targetPart: 'tab-header-more-options-button', }, { slot: 'splitterHandle', targetName: 'igc-splitter', targetSlot: 'splitterHandle', targetPart: 'splitter-handle', }, ]"
|
|
3177
|
+
"default": "[ { slot: 'paneHeaderCloseButton', targetName: 'igc-pane-header', targetSlot: 'paneHeaderCloseButton', targetPart: 'pane-header-close-button', }, { slot: 'tabHeaderCloseButton', targetName: 'igc-tab-header', targetSlot: 'tabHeaderCloseButton', targetPart: 'tab-header-close-button', }, { slot: 'tabHeaderCloseButton', targetName: 'igc-context-menu', targetSlot: 'contextMenuCloseButton', targetPart: 'context-menu-close-button', }, { slot: 'closeButton', targetName: 'igc-pane-header', targetSlot: 'paneHeaderCloseButton', targetPart: 'pane-header-close-button', }, { slot: 'closeButton', targetName: 'igc-tab-header', targetSlot: 'tabHeaderCloseButton', targetPart: 'tab-header-close-button', }, { slot: 'closeButton', targetName: 'igc-context-menu', targetSlot: 'contextMenuCloseButton', targetPart: 'context-menu-close-button', }, { slot: 'moreTabsButton', targetName: 'igc-tabs-component', targetSlot: 'tabsMoreButton', targetPart: 'tabs-more-button', }, { slot: 'maximizeButton', targetName: 'igc-pane-header', targetSlot: 'paneHeaderMaximizeButton', targetPart: 'pane-header-maximize-button', }, { slot: 'maximizeButton', targetName: 'igc-tabs-component', targetSlot: 'tabsMaximizeButton', targetPart: 'tabs-maximize-button', }, { slot: 'minimizeButton', targetName: 'igc-pane-header', targetSlot: 'paneHeaderMinimizeButton', targetPart: 'pane-header-minimize-button', }, { slot: 'minimizeButton', targetName: 'igc-tabs-component', targetSlot: 'tabsMinimizeButton', targetPart: 'tabs-minimize-button', }, { slot: 'pinButton', targetName: 'igc-pane-header', targetSlot: 'paneHeaderPinButton', targetPart: 'pane-header-pin-button', }, { slot: 'unpinButton', targetName: 'igc-pane-header', targetSlot: 'paneHeaderUnpinButton', targetPart: 'pane-header-unpin-button', }, { slot: 'unpinButton', targetName: 'igc-context-menu', targetSlot: 'contextMenuUnpinButton', targetPart: 'context-menu-unpin-button', }, { slot: 'moreOptionsButton', targetName: 'igc-tab-header', targetSlot: 'tabHeaderMoreOptionsButton', targetPart: 'tab-header-more-options-button', }, { slot: 'splitterHandle', targetName: 'igc-splitter-component', targetSlot: 'splitterHandle', targetPart: 'splitter-handle', }, ]"
|
|
3178
3178
|
},
|
|
3179
3179
|
{
|
|
3180
3180
|
"kind": "field",
|
|
@@ -5393,6 +5393,30 @@
|
|
|
5393
5393
|
},
|
|
5394
5394
|
"tagName": "igc-dockmanager",
|
|
5395
5395
|
"customElement": true
|
|
5396
|
+
},
|
|
5397
|
+
{
|
|
5398
|
+
"kind": "variable",
|
|
5399
|
+
"name": "headerRect"
|
|
5400
|
+
},
|
|
5401
|
+
{
|
|
5402
|
+
"kind": "variable",
|
|
5403
|
+
"name": "tabsRect"
|
|
5404
|
+
},
|
|
5405
|
+
{
|
|
5406
|
+
"kind": "variable",
|
|
5407
|
+
"name": "prevHeaderRect"
|
|
5408
|
+
},
|
|
5409
|
+
{
|
|
5410
|
+
"kind": "variable",
|
|
5411
|
+
"name": "nextHeaderRect"
|
|
5412
|
+
},
|
|
5413
|
+
{
|
|
5414
|
+
"kind": "variable",
|
|
5415
|
+
"name": "lastVisibleHeaderRect"
|
|
5416
|
+
},
|
|
5417
|
+
{
|
|
5418
|
+
"kind": "variable",
|
|
5419
|
+
"name": "maximized"
|
|
5396
5420
|
}
|
|
5397
5421
|
],
|
|
5398
5422
|
"exports": [
|
|
@@ -7423,6 +7447,36 @@
|
|
|
7423
7447
|
]
|
|
7424
7448
|
}
|
|
7425
7449
|
]
|
|
7450
|
+
},
|
|
7451
|
+
{
|
|
7452
|
+
"kind": "variable",
|
|
7453
|
+
"name": "panes",
|
|
7454
|
+
"type": {
|
|
7455
|
+
"text": "IgcContentPane[]"
|
|
7456
|
+
},
|
|
7457
|
+
"default": "[]"
|
|
7458
|
+
},
|
|
7459
|
+
{
|
|
7460
|
+
"kind": "variable",
|
|
7461
|
+
"name": "location"
|
|
7462
|
+
},
|
|
7463
|
+
{
|
|
7464
|
+
"kind": "variable",
|
|
7465
|
+
"name": "newValue",
|
|
7466
|
+
"type": {
|
|
7467
|
+
"text": "boolean"
|
|
7468
|
+
},
|
|
7469
|
+
"default": "!this.getActualIsPinned(pane)"
|
|
7470
|
+
},
|
|
7471
|
+
{
|
|
7472
|
+
"kind": "variable",
|
|
7473
|
+
"name": "newWidth",
|
|
7474
|
+
"default": "currW"
|
|
7475
|
+
},
|
|
7476
|
+
{
|
|
7477
|
+
"kind": "variable",
|
|
7478
|
+
"name": "newHeight",
|
|
7479
|
+
"default": "currH"
|
|
7426
7480
|
}
|
|
7427
7481
|
],
|
|
7428
7482
|
"exports": [
|
|
@@ -9836,6 +9890,10 @@
|
|
|
9836
9890
|
},
|
|
9837
9891
|
"tagName": "igc-tabs-component",
|
|
9838
9892
|
"customElement": true
|
|
9893
|
+
},
|
|
9894
|
+
{
|
|
9895
|
+
"kind": "variable",
|
|
9896
|
+
"name": "top"
|
|
9839
9897
|
}
|
|
9840
9898
|
],
|
|
9841
9899
|
"exports": [
|
|
@@ -10610,6 +10668,10 @@
|
|
|
10610
10668
|
]
|
|
10611
10669
|
}
|
|
10612
10670
|
]
|
|
10671
|
+
},
|
|
10672
|
+
{
|
|
10673
|
+
"kind": "variable",
|
|
10674
|
+
"name": "previousActivePaneIndex"
|
|
10613
10675
|
}
|
|
10614
10676
|
],
|
|
10615
10677
|
"exports": [
|
|
@@ -13409,7 +13471,7 @@
|
|
|
13409
13471
|
"privacy": "public",
|
|
13410
13472
|
"static": true,
|
|
13411
13473
|
"readonly": true,
|
|
13412
|
-
"default": "'igc-splitter'"
|
|
13474
|
+
"default": "'igc-splitter-component'"
|
|
13413
13475
|
},
|
|
13414
13476
|
{
|
|
13415
13477
|
"kind": "method",
|
|
@@ -13964,7 +14026,7 @@
|
|
|
13964
14026
|
"name": "LitElement",
|
|
13965
14027
|
"package": "lit"
|
|
13966
14028
|
},
|
|
13967
|
-
"tagName": "igc-splitter",
|
|
14029
|
+
"tagName": "igc-splitter-component",
|
|
13968
14030
|
"customElement": true
|
|
13969
14031
|
}
|
|
13970
14032
|
],
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://raw.githubusercontent.com/microsoft/vscode-html-languageservice/main/docs/customData.schema.json",
|
|
3
3
|
"version": 1.1,
|
|
4
|
-
"tags": [{"name":"igc-button-component","description":"\n---\n\n\n### **Slots:**\n - _default_ - Default slot for button content.","attributes":[{"name":"disabled","description":"Indicates whether the button is disabled.","values":[]},{"name":"type","description":"The type attribute of the control.","values":[{"name":"button"},{"name":"submit"},{"name":"reset"}]},{"name":"name","description":"The name attribute of the control.","values":[]},{"name":"value","description":"The value attribute of the control.","values":[]}],"references":[]},{"name":"igc-context-menu","description":"\n---\n\n\n### **Events:**\n - **igcMenuClosed** - Emitted when the context menu is closed.\n\n### **Slots:**\n - **contextMenuCloseButton** - The close icon.\n- **contextMenuUnpinButton** - The unpin icon.\n\n### **CSS Parts:**\n - **context-menu** - The outer container of the context menu.\n- **context-menu-item** - A single menu item container.\n- **context-menu-content** - The wrapper for all menu items.\n- **context-menu-close-button** - The default close button icon.\n- **context-menu-unpin-button** - The default unpin button icon.","attributes":[{"name":"orientation","values":[{"name":"ContextMenuOrientation"}]},{"name":"position","values":[{"name":"ContextMenuPosition"}]},{"name":"target","values":[{"name":"HTMLElement"}]},{"name":"items","values":[{"name":"IgcContextMenuItem[]"}]}],"references":[]},{"name":"igc-dockmanager","description":"A powerful, flexible dock manager component for laying out, docking,\nundocking, pinning, and floating panes of content.\n---\n\n\n### **Events:**\n - **activePaneChanged** - Emitted when the active content pane changes\n- **floatingPaneResizeStart** - Emitted when a floating pane resize interaction begins\n- **floatingPaneResizeMove** - Emitted while a floating pane is being resized\n- **floatingPaneResizeEnd** - Emitted when a floating pane resize interaction ends\n- **layoutChange** - Emitted after the layout has been programmatically updated\n- **paneDragStart** - Emitted when a pane drag operation begins\n- **paneDragOver** - Emitted repeatedly as a pane is dragged\n- **paneDragEnd** - Emitted when a pane drag operation ends\n- **paneHeaderConnected** - Emitted when an `<igc-pane-header>` is connected\n- **paneHeaderDisconnected** - Emitted when an `<igc-pane-header>` is disconnected\n- **paneClose** - Emitted when a pane is closed\n- **panePinnedToggle** - Emitted when a pane is pinned or unpinned\n- **paneScroll** - Emitted when the user scrolls within a pane’s content\n- **splitterResizeStart** - Emitted when a splitter resize starts\n- **splitterResizeEnd** - Emitted when a splitter resize ends\n- **tabHeaderConnected** - Emitted when an `<igc-tab-header>` is connected\n- **tabHeaderDisconnected** - Emitted when an `<igc-tab-header>` is disconnected\n- **paneFlyoutToggle** - Emitted when an unpinned pane's flyout state changes (opens or closes).\n\n### **Slots:**\n - **paneHeaderCloseButton** - Custom close button for pane headers\n- **tabHeaderCloseButton** - Custom close button for tab headers\n- **closeButton** - Alias for pane/tab close button\n- **moreTabsButton** - Slot for the \"more tabs\" button\n- **maximizeButton** - Slot for maximize buttons\n- **minimizeButton** - Slot for minimize buttons\n- **pinButton** - Slot for pin buttons\n- **unpinButton** - Slot for unpin buttons\n- **moreOptionsButton** - Slot for more-options buttons on tab headers\n- **splitterHandle-** - Slot for custom splitter handle","attributes":[{"name":"enableDragCursor","description":"Enables changing the mouse cursor when hovering over a tab or pane header.\n\nWhen set to `true`, the cursor changes from the default to `pointer`,\nindicating that the header can be dragged (e.g., to dock or float the pane).","values":[]},{"name":"allowInnerDock","description":"Whether docking inside a pane is allowed.","values":[]},{"name":"allowMaximize","description":"Whether maximize action button is displayed for the panes.","values":[]},{"name":"autoScrollConfig","description":"Configuration for edge auto-scrolling behavior during drag & resize operations.\n\n- `edgeThreshold`: Distance in pixels from the container's edge that triggers scrolling.\n- `scrollSpeed`: Number of pixels to scroll per interval (affects scroll rate).","values":[{"name":"{ edgeThreshold: number"},{"name":"scrollSpeed: number }"}]},{"name":"proximityDock","description":"Determines whether docking indicators are displayed while docking","values":[]},{"name":"resourceStrings","description":"The resource strings of the dock manager.","values":[{"name":"IgcDockManagerResourceStrings"}]},{"name":"showPaneHeaders","description":"Determines when to display the pane headers - always or on hover of the pane.","values":[{"name":"always"},{"name":"onHoverOnly"}]},{"name":"unpinBehavior","description":"Determines which panes are affected by particular pane action such as closing or unpinning.","values":[{"name":"PaneActionBehavior"}]},{"name":"allowSplitterDock","description":"Whether docking over splitter is allowed","values":[]},{"name":"allowRootDock","description":"Determines whether docking into the root-level pane is allowed.\n\nWhen set to true (default), panes can be docked directly into the root container.\nThis is done by creating a new root pane and repositioning the existing root pane as a sibling to the newly docked content pane.","values":[]},{"name":"useFixedSizeOnDock","description":"Specifies which docking orientations should apply the `FixedSize` sizing mode\nwhen panes are dynamically created via docking.\n\nPossible values:\n- `\"none\"`: Do not apply `FixedSize` on docking (default behavior).\n- `\"vertical\"`: Apply `FixedSize` only when panes are docked vertically.\n- `\"horizontal\"`: Apply `FixedSize` only when panes are docked horizontally.\n- `\"both\"`: Apply `FixedSize` for both vertical and horizontal orientation.\n\nThis setting affects only dynamically created panes via user docking actions.\nIt does not apply to programmatically created panes or layout restorations.","values":[{"name":"none"},{"name":"vertical"},{"name":"horizontal"},{"name":"both"}]},{"name":"showHeaderIconOnHover","description":"Which header icons are shown on hover.","values":[{"name":"none"},{"name":"closeOnly"},{"name":"moreOptionsOnly"},{"name":"all"}]},{"name":"allowFloatingPanesResize","description":"Whether floating panes can be resized.","values":[]},{"name":"containedInBoundaries","description":"Whether pane dragging stops when any of the pane's sides goes outside the DockManager’s bounds.","values":[]},{"name":"disableKeyboardNavigation","description":"Disables all keyboard navigation within the dock manager.","values":[]},{"name":"contextMenuPosition","description":"Position to open the context menu.","values":[{"name":"ContextMenuPosition"}]},{"name":"closeBehavior","description":"Which panes get affected by close operations.","values":[{"name":"PaneActionBehavior"}]}],"references":[]},{"name":"igc-icon-component","description":"\n---\n","attributes":[{"name":"name","description":"The name of the icon to draw.","values":[{"name":"IconName"},{"name":"''"}]}],"references":[]},{"name":"sample-component","description":"\n---\n","attributes":[],"references":[]},{"name":"igc-tab-header","description":"\n---\n\n\n### **Events:**\n - **igcDragStarted** - Fired when drag operation has started.\n- **igcDragMoved** - Fired when a header is dragged.\n- **igcDragEnded** - Fired when drag operation has ended.\n- **igcIconClicked** - Fired when the action button is clicked.\n- **igcIconKeyDown** - Fired on key down of the action button.\n- **igcTabPointerDown** - Fired when pointer is down on the header.\n- **igcElementConnected** - Fired when the header is connected.\n- **igcElementDisconnected** - Fired when the header is disconnected.\n\n### **Slots:**\n - _default_ - Renders the title.\n\n### **CSS Parts:**\n - **tab-header** - Wrapper of the panel.\n- **top** - Added when the header is displayed at the top.\n- **active** - Indicates whether the header is active.\n- **selected** - Indicates whether the header is selected.\n- **disabled** - Indicates a disabled stated.\n- **hover-preview-close** - Indicates that close button is displayed on hover.\n- **hover-preview-options** - Indicates that more options button is displayed on hover.\n- **bottom** - Added when the header is displayed at the bottom.","attributes":[{"name":"selected","description":"Determines whether the header is selected.","values":[]},{"name":"hovered","description":"Determines whether the header is hovered.","values":[]},{"name":"position","description":"Sets the header position.","values":[]},{"name":"iconName","description":"Determines which icon to display in the tab header.\nSupported values are `close` and `more`.\nIf not set, no icon is rendered.","values":[{"name":"IconName"},{"name":"''"}]},{"name":"header","description":"Sets the header text.","values":[]},{"name":"isActive","description":"Determines whether the header is active.","values":[]},{"name":"resourceStrings","description":"The resource strings of the header.","values":[{"name":"IgcDockManagerResourceStrings"}]},{"name":"forcedDrag","description":"Determines whether the header is changing position with another header.","values":[]},{"name":"disabled","description":"Disables interaction with the header.","values":[]},{"name":"showHeaderIconOnHover","description":"Determines which buttons are displayed on hover.\n\n*","values":[{"name":""},{"name":"none"},{"name":"closeOnly"},{"name":"moreOptionsOnly"},{"name":"all"}]}],"references":[]},{"name":"igc-tab-panel","description":"\n---\n\n\n### **Events:**\n - **igcSelectedChanged** - Fired when the selected state of the header changes.\n\n### **Slots:**\n - _default_ - Renders the panel content.\n\n### **CSS Parts:**\n - **tab-panel** - Wrapper of the panel.\n- **selected** - Indicates that the tab-panel is selected.\n- **disabled** - Indicates a disabled state.","attributes":[{"name":"selected","description":"Determines whether the panel is selected.","values":[]},{"name":"disabled","description":"Disables interaction with the panel.","values":[]}],"references":[]},{"name":"igc-tabs-component","description":"\n---\n\n\n### **Events:**\n - **igcRendered** - Fired when the component is rendered.\n- **igcHiddenTabSelected** - Fired when a hidden tab is selected.\n- **igcMaximize** - Fired when the maximize button is clicked.\n- **igcMaximizeMinimizeFocus** - Fired when focus is on the minimize/maximize button.\n- **igcSelectedIndexChanged** - Fired when new tab is selected.\n- **igcSelectedTabOutOfView** - Fired when the newly selected tab is not currently in view.\n\n### **Slots:**\n - _default_ - Renders the tab content.\n- **tabHeader** - Renders the tab header.\n\n### **CSS Parts:**\n - **tabs-container-contentIds** - The tabs container.","attributes":[{"name":"size","description":"The default size of the tabs.","values":[]},{"name":"maximized","description":"Whether the component is maximized.","values":[]},{"name":"allowMaximize","description":"Determines whether maximization is allowed.","values":[]},{"name":"tabHeadersPosition","description":"Determines the header position.","values":[]},{"name":"selectedIndex","description":"Determines the index of the selected tab.","values":[]},{"name":"hasHeaders","description":"Whether the headers are displayed.","values":[]},{"name":"showHiddenTabsMenu","description":"Whether to display a button for the hidden headers.","values":[]},{"name":"resourceStrings","description":"The resource strings of the tabs.","values":[{"name":"IgcDockManagerResourceStrings"}]},{"name":"contentIds","description":"An array of identifiers.","values":[{"name":"string[]"}]},{"name":"parentUseFixedSize","values":[]},{"name":"minResizeWidth","description":"The minimum width of the tab group in pixels during resizing.","values":[]},{"name":"minResizeHeight","description":"The minimum height of the tab group in pixels during resizing.","values":[]}],"references":[]},{"name":"igc-edge-docking-indicator","description":"\n---\n\n\n### **CSS Parts:**\n - **edge-docking-indicator** - The wrapper container for the edge docking indicator.","attributes":[{"name":"position","description":"The docking indicator position.","values":[{"name":"DockingIndicatorPosition"}]},{"name":"dropTargetPaneInfo","description":"An object that configures the drop target pane.","values":[{"name":"IgcDropTargetPaneInfo"}]}],"references":[]},{"name":"igc-joystick-icon","description":"\n---\n\n\n### **Slots:**\n - _default_ - Renders the panel content.\n\n### **CSS Parts:**\n - **docking-indicator** - Wrapper of the joystick icon.","attributes":[{"name":"isDocHost","description":"Determines whether the icon is in document host.\n\n*","values":[]},{"name":"position","description":"Specifies joystick icon position so that the proper icon is displayed.","values":[{"name":"DockingIndicatorPosition"}]},{"name":"direction","description":"Determines component's direction","values":[]},{"name":"empty","description":"Determines whether the icon is empty","values":[]}],"references":[]},{"name":"igc-joystick-indicator","description":"\n---\n","attributes":[{"name":"dropTargetPaneInfo","description":"An object that configures the drop target pane.","values":[{"name":"IgcDropTargetPaneInfo"}]},{"name":"documentOnlyDrag","description":"Determines whether docking is inside the document.\n\n*","values":[]},{"name":"allowCenterDock","description":"Determines whether docking in the center is allowed.\n\n*","values":[]}],"references":[]},{"name":"igc-root-docking-indicator","description":"\n---\n\n\n### **CSS Parts:**\n - **root-docking-indicator** - The wrapper container for the root docking indicator.","attributes":[{"name":"position","description":"Determines splitter position.","values":[{"name":"DockingIndicatorPosition"}]}],"references":[]},{"name":"igc-splitter-docking-indicator","description":"\n---\n\n\n### **CSS Parts:**\n - **splitter-docking-indicator** - The wrapper container for the splitter docking indicator.","attributes":[{"name":"position","description":"Determines splitter position.","values":[{"name":"DockingIndicatorPosition"}]}],"references":[]},{"name":"igc-pane-navigator","description":"\n---\n\n\n### **Events:**\n - **igcClosed** - Fired when pane navigator is closed.\n\n### **CSS Parts:**\n - **base** - Wrapper of the panel.\n- **header** - The header element which contains the header of the currently selected pane.\n- **body** - The section element where groups of panes and documents are displayed.\n- **group** - The article element which contains all items of the same group - panes or documents.\n- **title** - The header element displayed above the group of panes/documents.","attributes":[{"name":"activeDocuments","description":"Determines currently visible documents.","values":[{"name":"IgcContentPane[]"}]},{"name":"activePanes","description":"Determines currently visible panes.","values":[{"name":"IgcContentPane[]"}]},{"name":"selectedIndex","description":"Determines the index of the selected item.","values":[]},{"name":"previousActivePaneIndex","description":"Determines the index of the previously selected item.","values":[]},{"name":"resourceStrings","description":"The resource strings for the pane navigator.","values":[{"name":"IgcDockManagerResourceStrings"}]}],"references":[]},{"name":"igc-content-pane","description":"\n---\n\n\n### **Events:**\n - **igcRendered** - Emitted after the component has rendered.\n\n### **Slots:**\n - _default_ - Default slot for pane content.\n- **header** - Slot for projecting a custom header for the pane.\n\n### **CSS Parts:**\n - **content-pane** - The main wrapper of the content-pane component.\n- **disabled** - Applied when the pane is disabled.\n- **single-floating** - Applied when the pane is the only one in a floating container.","attributes":[{"name":"content-id","description":"Sets a unique identifier for the content pane.\nUsed for targeting slotted content.","values":[]},{"name":"is-flyout","description":"Indicates whether the pane is currently in a flyout state.","values":[]},{"name":"is-single-floating","description":"Indicates that the pane is a single floating item.","values":[]},{"name":"parent-use-fixed-size","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.","values":[]},{"name":"unpinned-size","description":"Specifies the pane's unpinned size when in flyout state.","values":[]},{"name":"min-resize-width","description":"The minimum width of the pane in pixels during resizing.","values":[]},{"name":"min-resize-height","description":"The minimum height of the pane in pixels during resizing.","values":[]},{"name":"header","description":"Defines the header label for the pane.","values":[]},{"name":"disabled","description":"Disables the pane and makes it non-interactive.","values":[]},{"name":"size","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.","values":[]}],"references":[]},{"name":"igc-floating-pane","description":"\n---\n\n\n### **Events:**\n - **wndResizeStart** - Emitted when a resize interaction begins.\n- **wndResizeMove** - Emitted during the pane resize movement.\n- **wndResizeEnd** - Emitted when the resize interaction ends.\n\n### **Slots:**\n - **header** - Renders the floating pane header content.\n- _default_ - Renders the main content of the floating pane.\n\n### **CSS Parts:**\n - **floating-window** - The root floating pane container.","attributes":[{"name":"allowResize","description":"Indicates whether the floating pane can be resized.","values":[]},{"name":"floatingLocation","description":"The current location of the floating pane.\nDefaults to top-left corner position.","values":[{"name":"IgcDockManagerPoint"}]},{"name":"floatingWidth","description":"The current width of the floating pane.","values":[]},{"name":"floatingHeight","description":"The current height of the floating pane.","values":[]},{"name":"hasHeader","description":"Indicates whether the pane has a header section.","values":[]},{"name":"floatingMinHeight","description":"The minimum height constraint for the floating pane.","values":[]},{"name":"floatingMinWidth","description":"The minimum width constraint for the floating pane.","values":[]},{"name":"floatingId","description":"A unique identifier for the floating pane.","values":[]},{"name":"maximized","description":"Indicates whether the floating pane is currently maximized.","values":[]}],"references":[]},{"name":"igc-pane-header","description":"\n---\n\n\n### **Events:**\n - **igcPaneHeaderDragStart** - Emitted when dragging starts on the header.\n- **igcPaneHeaderDragMoved** - Emitted during header dragging.\n- **igcPaneHeaderDragEnd** - Emitted when dragging ends on the header.\n- **igcPinToggle** - Emitted when the pin button is clicked.\n- **igcMaximize** - Emitted when the maximize button is clicked.\n- **igcClose** - Emitted when the close button is clicked.\n- **elementConnected** - Emitted when the element is connected to the DOM.\n- **elementDisconnected** - Emitted when the element is disconnected from the DOM.\n\n### **Slots:**\n - _default_ - Renders the pane header title.\n- **paneHeaderCloseButton** - Renders a custom close button.\n- **paneHeaderMaximizeButton** - Renders a custom maximize button.\n- **paneHeaderMinimizeButton** - Renders a custom minimize button.\n- **paneHeaderPinButton** - Renders a custom pin button.\n- **paneHeaderUnpinButton** - Renders a custom unpin button.","attributes":[{"name":"is-floating","description":"Indicates whether the header is used in a floating window.","values":[]},{"name":"is-floating-pane-header","description":"Indicates that the header is used in a floating pane context.","values":[]},{"name":"is-active","description":"Marks the header as active.","values":[]},{"name":"forced-drag","description":"Forces drag behavior on the pane header.","values":[]},{"name":"allow-close","description":"Enables or disables closing.","values":[]},{"name":"allow-maximize","description":"Enables or disables maximizing.","values":[]},{"name":"allow-pinning","description":"Enables or disables pinning.","values":[]},{"name":"pinned","description":"Whether the pane is currently pinned.","values":[]},{"name":"maximized","description":"Whether the pane is currently maximized.","values":[]},{"name":"disabled","description":"Disables interaction with the pane header.","values":[]}],"references":[]},{"name":"igc-resizer","description":"\n---\n\n\n### **Events:**\n - **igcResizerDragStart** - Emitted when a drag operation starts on the resizer.\n- **igcResizerMoved** - Emitted during resizer moving.\n- **igcResizerDragEnd** - Emitted when dragging ends on the resizer.","attributes":[{"name":"orientation","description":"Specifies the orientation of the resizer.","values":[{"name":"ResizerLocation"}]}],"references":[]},{"name":"igc-split-pane","description":"\n---\n\n\n### **Events:**\n - **igcRendered** - Emitted when the component is updated and rendered.\n\n### **CSS Parts:**\n - **split-pane** - The root split pane container.","attributes":[{"name":"use-fixed-size","description":"Indicates whether the pane uses a fixed size.","values":[]},{"name":"parent-use-fixed-size","description":"Indicates if the parent pane uses fixed pane sizes.","values":[]},{"name":"min-resize-width","description":"The minimum width of child panes in pixels during resizing.","values":[]},{"name":"min-resize-height","description":"The minimum height of child panes in pixels during resizing.","values":[]},{"name":"orientation","description":"Defines the layout direction of the split pane: `horizontal` or `vertical`.","values":[{"name":"SplitPaneOrientation"}]},{"name":"size","values":[]}],"references":[]},{"name":"igc-splitter","description":"\n---\n\n\n### **Events:**\n - **igcResizeStart** - Emitted when a resize interaction starts.\n- **igcResizeEnd** - Emitted when the resize ends, passing the final size.\n\n### **CSS Parts:**\n - **splitter** - The main container of the splitter.\n- **splitter-base** - The draggable element that users interact with.\n- **splitter-ghost** - The visual indicator (ghost element) shown during drag.","attributes":[{"name":"show-drag-ghost","description":"Indicates whether the drag ghost element is shown while resizing.","values":[]},{"name":"parent-use-fixed-size","description":"Indicates if the parent pane uses fixed pane sizes.","values":[]},{"name":"split-pane-orientation","description":"Defines the orientation of the splitter based on the split pane orientation.","values":[]},{"name":"flyout-location","description":"Indicates the flyout location of the splitter.","values":[{"name":"UnpinnedLocation"}]},{"name":"scrollSpeed","values":[]}],"references":[]},{"name":"igc-unpinned-pane-header","description":"\n---\n\n\n### **Slots:**\n - _default_ - Default slot for the pane header content.\n\n### **CSS Parts:**\n - **unpinned-pane-header** - The main container of the pane header.\n- **horizontal** - Applied when the header is in a horizontal orientation.\n- **vertical** - Applied when the header is in a vertical orientation.\n- **start** - Applied when the header is on the left or top side.\n- **end** - Applied when the header is on the right or bottom side.\n- **active** - Applied when the header is in active state.\n- **disabled** - Applied when the header is disabled.","attributes":[{"name":"is-active","description":"Indicates whether the unpinned pane header is active.","values":[]},{"name":"disabled","description":"Indicates whether the unpinned pane header is disabled.","values":[]},{"name":"location","description":"The location where the unpinned pane is docked.","values":[]},{"name":"isActive","description":"Indicates whether the unpinned pane header is active.","values":[]}],"references":[]}]
|
|
4
|
+
"tags": [{"name":"igc-button-component","description":"\n---\n\n\n### **Slots:**\n - _default_ - Default slot for button content.","attributes":[{"name":"disabled","description":"Indicates whether the button is disabled.","values":[]},{"name":"type","description":"The type attribute of the control.","values":[{"name":"button"},{"name":"submit"},{"name":"reset"}]},{"name":"name","description":"The name attribute of the control.","values":[]},{"name":"value","description":"The value attribute of the control.","values":[]}],"references":[]},{"name":"igc-context-menu","description":"\n---\n\n\n### **Events:**\n - **igcMenuClosed** - Emitted when the context menu is closed.\n\n### **Slots:**\n - **contextMenuCloseButton** - The close icon.\n- **contextMenuUnpinButton** - The unpin icon.\n\n### **CSS Parts:**\n - **context-menu** - The outer container of the context menu.\n- **context-menu-item** - A single menu item container.\n- **context-menu-content** - The wrapper for all menu items.\n- **context-menu-close-button** - The default close button icon.\n- **context-menu-unpin-button** - The default unpin button icon.","attributes":[{"name":"orientation","values":[{"name":"ContextMenuOrientation"}]},{"name":"position","values":[{"name":"ContextMenuPosition"}]},{"name":"target","values":[{"name":"HTMLElement"}]},{"name":"items","values":[{"name":"IgcContextMenuItem[]"}]}],"references":[]},{"name":"igc-dockmanager","description":"A powerful, flexible dock manager component for laying out, docking,\nundocking, pinning, and floating panes of content.\n---\n\n\n### **Events:**\n - **activePaneChanged** - Emitted when the active content pane changes\n- **floatingPaneResizeStart** - Emitted when a floating pane resize interaction begins\n- **floatingPaneResizeMove** - Emitted while a floating pane is being resized\n- **floatingPaneResizeEnd** - Emitted when a floating pane resize interaction ends\n- **layoutChange** - Emitted after the layout has been programmatically updated\n- **paneDragStart** - Emitted when a pane drag operation begins\n- **paneDragOver** - Emitted repeatedly as a pane is dragged\n- **paneDragEnd** - Emitted when a pane drag operation ends\n- **paneHeaderConnected** - Emitted when an `<igc-pane-header>` is connected\n- **paneHeaderDisconnected** - Emitted when an `<igc-pane-header>` is disconnected\n- **paneClose** - Emitted when a pane is closed\n- **panePinnedToggle** - Emitted when a pane is pinned or unpinned\n- **paneScroll** - Emitted when the user scrolls within a pane’s content\n- **splitterResizeStart** - Emitted when a splitter resize starts\n- **splitterResizeEnd** - Emitted when a splitter resize ends\n- **tabHeaderConnected** - Emitted when an `<igc-tab-header>` is connected\n- **tabHeaderDisconnected** - Emitted when an `<igc-tab-header>` is disconnected\n- **paneFlyoutToggle** - Emitted when an unpinned pane's flyout state changes (opens or closes).\n\n### **Slots:**\n - **paneHeaderCloseButton** - Custom close button for pane headers\n- **tabHeaderCloseButton** - Custom close button for tab headers\n- **closeButton** - Alias for pane/tab close button\n- **moreTabsButton** - Slot for the \"more tabs\" button\n- **maximizeButton** - Slot for maximize buttons\n- **minimizeButton** - Slot for minimize buttons\n- **pinButton** - Slot for pin buttons\n- **unpinButton** - Slot for unpin buttons\n- **moreOptionsButton** - Slot for more-options buttons on tab headers\n- **splitterHandle-** - Slot for custom splitter handle","attributes":[{"name":"enableDragCursor","description":"Enables changing the mouse cursor when hovering over a tab or pane header.\n\nWhen set to `true`, the cursor changes from the default to `pointer`,\nindicating that the header can be dragged (e.g., to dock or float the pane).","values":[]},{"name":"allowInnerDock","description":"Whether docking inside a pane is allowed.","values":[]},{"name":"allowMaximize","description":"Whether maximize action button is displayed for the panes.","values":[]},{"name":"autoScrollConfig","description":"Configuration for edge auto-scrolling behavior during drag & resize operations.\n\n- `edgeThreshold`: Distance in pixels from the container's edge that triggers scrolling.\n- `scrollSpeed`: Number of pixels to scroll per interval (affects scroll rate).","values":[{"name":"{ edgeThreshold: number"},{"name":"scrollSpeed: number }"}]},{"name":"proximityDock","description":"Determines whether docking indicators are displayed while docking","values":[]},{"name":"resourceStrings","description":"The resource strings of the dock manager.","values":[{"name":"IgcDockManagerResourceStrings"}]},{"name":"showPaneHeaders","description":"Determines when to display the pane headers - always or on hover of the pane.","values":[{"name":"always"},{"name":"onHoverOnly"}]},{"name":"unpinBehavior","description":"Determines which panes are affected by particular pane action such as closing or unpinning.","values":[{"name":"PaneActionBehavior"}]},{"name":"allowSplitterDock","description":"Whether docking over splitter is allowed","values":[]},{"name":"allowRootDock","description":"Determines whether docking into the root-level pane is allowed.\n\nWhen set to true (default), panes can be docked directly into the root container.\nThis is done by creating a new root pane and repositioning the existing root pane as a sibling to the newly docked content pane.","values":[]},{"name":"useFixedSizeOnDock","description":"Specifies which docking orientations should apply the `FixedSize` sizing mode\nwhen panes are dynamically created via docking.\n\nPossible values:\n- `\"none\"`: Do not apply `FixedSize` on docking (default behavior).\n- `\"vertical\"`: Apply `FixedSize` only when panes are docked vertically.\n- `\"horizontal\"`: Apply `FixedSize` only when panes are docked horizontally.\n- `\"both\"`: Apply `FixedSize` for both vertical and horizontal orientation.\n\nThis setting affects only dynamically created panes via user docking actions.\nIt does not apply to programmatically created panes or layout restorations.","values":[{"name":"none"},{"name":"vertical"},{"name":"horizontal"},{"name":"both"}]},{"name":"showHeaderIconOnHover","description":"Which header icons are shown on hover.","values":[{"name":"none"},{"name":"closeOnly"},{"name":"moreOptionsOnly"},{"name":"all"}]},{"name":"allowFloatingPanesResize","description":"Whether floating panes can be resized.","values":[]},{"name":"containedInBoundaries","description":"Whether pane dragging stops when any of the pane's sides goes outside the DockManager’s bounds.","values":[]},{"name":"disableKeyboardNavigation","description":"Disables all keyboard navigation within the dock manager.","values":[]},{"name":"contextMenuPosition","description":"Position to open the context menu.","values":[{"name":"ContextMenuPosition"}]},{"name":"closeBehavior","description":"Which panes get affected by close operations.","values":[{"name":"PaneActionBehavior"}]}],"references":[]},{"name":"igc-icon-component","description":"\n---\n","attributes":[{"name":"name","description":"The name of the icon to draw.","values":[{"name":"IconName"},{"name":"''"}]}],"references":[]},{"name":"sample-component","description":"\n---\n","attributes":[],"references":[]},{"name":"igc-tab-header","description":"\n---\n\n\n### **Events:**\n - **igcDragStarted** - Fired when drag operation has started.\n- **igcDragMoved** - Fired when a header is dragged.\n- **igcDragEnded** - Fired when drag operation has ended.\n- **igcIconClicked** - Fired when the action button is clicked.\n- **igcIconKeyDown** - Fired on key down of the action button.\n- **igcTabPointerDown** - Fired when pointer is down on the header.\n- **igcElementConnected** - Fired when the header is connected.\n- **igcElementDisconnected** - Fired when the header is disconnected.\n\n### **Slots:**\n - _default_ - Renders the title.\n\n### **CSS Parts:**\n - **tab-header** - Wrapper of the panel.\n- **top** - Added when the header is displayed at the top.\n- **active** - Indicates whether the header is active.\n- **selected** - Indicates whether the header is selected.\n- **disabled** - Indicates a disabled stated.\n- **hover-preview-close** - Indicates that close button is displayed on hover.\n- **hover-preview-options** - Indicates that more options button is displayed on hover.\n- **bottom** - Added when the header is displayed at the bottom.","attributes":[{"name":"selected","description":"Determines whether the header is selected.","values":[]},{"name":"hovered","description":"Determines whether the header is hovered.","values":[]},{"name":"position","description":"Sets the header position.","values":[]},{"name":"iconName","description":"Determines which icon to display in the tab header.\nSupported values are `close` and `more`.\nIf not set, no icon is rendered.","values":[{"name":"IconName"},{"name":"''"}]},{"name":"header","description":"Sets the header text.","values":[]},{"name":"isActive","description":"Determines whether the header is active.","values":[]},{"name":"resourceStrings","description":"The resource strings of the header.","values":[{"name":"IgcDockManagerResourceStrings"}]},{"name":"forcedDrag","description":"Determines whether the header is changing position with another header.","values":[]},{"name":"disabled","description":"Disables interaction with the header.","values":[]},{"name":"showHeaderIconOnHover","description":"Determines which buttons are displayed on hover.\n\n*","values":[{"name":""},{"name":"none"},{"name":"closeOnly"},{"name":"moreOptionsOnly"},{"name":"all"}]}],"references":[]},{"name":"igc-tab-panel","description":"\n---\n\n\n### **Events:**\n - **igcSelectedChanged** - Fired when the selected state of the header changes.\n\n### **Slots:**\n - _default_ - Renders the panel content.\n\n### **CSS Parts:**\n - **tab-panel** - Wrapper of the panel.\n- **selected** - Indicates that the tab-panel is selected.\n- **disabled** - Indicates a disabled state.","attributes":[{"name":"selected","description":"Determines whether the panel is selected.","values":[]},{"name":"disabled","description":"Disables interaction with the panel.","values":[]}],"references":[]},{"name":"igc-tabs-component","description":"\n---\n\n\n### **Events:**\n - **igcRendered** - Fired when the component is rendered.\n- **igcHiddenTabSelected** - Fired when a hidden tab is selected.\n- **igcMaximize** - Fired when the maximize button is clicked.\n- **igcMaximizeMinimizeFocus** - Fired when focus is on the minimize/maximize button.\n- **igcSelectedIndexChanged** - Fired when new tab is selected.\n- **igcSelectedTabOutOfView** - Fired when the newly selected tab is not currently in view.\n\n### **Slots:**\n - _default_ - Renders the tab content.\n- **tabHeader** - Renders the tab header.\n\n### **CSS Parts:**\n - **tabs-container-contentIds** - The tabs container.","attributes":[{"name":"size","description":"The default size of the tabs.","values":[]},{"name":"maximized","description":"Whether the component is maximized.","values":[]},{"name":"allowMaximize","description":"Determines whether maximization is allowed.","values":[]},{"name":"tabHeadersPosition","description":"Determines the header position.","values":[]},{"name":"selectedIndex","description":"Determines the index of the selected tab.","values":[]},{"name":"hasHeaders","description":"Whether the headers are displayed.","values":[]},{"name":"showHiddenTabsMenu","description":"Whether to display a button for the hidden headers.","values":[]},{"name":"resourceStrings","description":"The resource strings of the tabs.","values":[{"name":"IgcDockManagerResourceStrings"}]},{"name":"contentIds","description":"An array of identifiers.","values":[{"name":"string[]"}]},{"name":"parentUseFixedSize","values":[]},{"name":"minResizeWidth","description":"The minimum width of the tab group in pixels during resizing.","values":[]},{"name":"minResizeHeight","description":"The minimum height of the tab group in pixels during resizing.","values":[]}],"references":[]},{"name":"igc-edge-docking-indicator","description":"\n---\n\n\n### **CSS Parts:**\n - **edge-docking-indicator** - The wrapper container for the edge docking indicator.","attributes":[{"name":"position","description":"The docking indicator position.","values":[{"name":"DockingIndicatorPosition"}]},{"name":"dropTargetPaneInfo","description":"An object that configures the drop target pane.","values":[{"name":"IgcDropTargetPaneInfo"}]}],"references":[]},{"name":"igc-joystick-icon","description":"\n---\n\n\n### **Slots:**\n - _default_ - Renders the panel content.\n\n### **CSS Parts:**\n - **docking-indicator** - Wrapper of the joystick icon.","attributes":[{"name":"isDocHost","description":"Determines whether the icon is in document host.\n\n*","values":[]},{"name":"position","description":"Specifies joystick icon position so that the proper icon is displayed.","values":[{"name":"DockingIndicatorPosition"}]},{"name":"direction","description":"Determines component's direction","values":[]},{"name":"empty","description":"Determines whether the icon is empty","values":[]}],"references":[]},{"name":"igc-joystick-indicator","description":"\n---\n","attributes":[{"name":"dropTargetPaneInfo","description":"An object that configures the drop target pane.","values":[{"name":"IgcDropTargetPaneInfo"}]},{"name":"documentOnlyDrag","description":"Determines whether docking is inside the document.\n\n*","values":[]},{"name":"allowCenterDock","description":"Determines whether docking in the center is allowed.\n\n*","values":[]}],"references":[]},{"name":"igc-root-docking-indicator","description":"\n---\n\n\n### **CSS Parts:**\n - **root-docking-indicator** - The wrapper container for the root docking indicator.","attributes":[{"name":"position","description":"Determines splitter position.","values":[{"name":"DockingIndicatorPosition"}]}],"references":[]},{"name":"igc-splitter-docking-indicator","description":"\n---\n\n\n### **CSS Parts:**\n - **splitter-docking-indicator** - The wrapper container for the splitter docking indicator.","attributes":[{"name":"position","description":"Determines splitter position.","values":[{"name":"DockingIndicatorPosition"}]}],"references":[]},{"name":"igc-pane-navigator","description":"\n---\n\n\n### **Events:**\n - **igcClosed** - Fired when pane navigator is closed.\n\n### **CSS Parts:**\n - **base** - Wrapper of the panel.\n- **header** - The header element which contains the header of the currently selected pane.\n- **body** - The section element where groups of panes and documents are displayed.\n- **group** - The article element which contains all items of the same group - panes or documents.\n- **title** - The header element displayed above the group of panes/documents.","attributes":[{"name":"activeDocuments","description":"Determines currently visible documents.","values":[{"name":"IgcContentPane[]"}]},{"name":"activePanes","description":"Determines currently visible panes.","values":[{"name":"IgcContentPane[]"}]},{"name":"selectedIndex","description":"Determines the index of the selected item.","values":[]},{"name":"previousActivePaneIndex","description":"Determines the index of the previously selected item.","values":[]},{"name":"resourceStrings","description":"The resource strings for the pane navigator.","values":[{"name":"IgcDockManagerResourceStrings"}]}],"references":[]},{"name":"igc-content-pane","description":"\n---\n\n\n### **Events:**\n - **igcRendered** - Emitted after the component has rendered.\n\n### **Slots:**\n - _default_ - Default slot for pane content.\n- **header** - Slot for projecting a custom header for the pane.\n\n### **CSS Parts:**\n - **content-pane** - The main wrapper of the content-pane component.\n- **disabled** - Applied when the pane is disabled.\n- **single-floating** - Applied when the pane is the only one in a floating container.","attributes":[{"name":"content-id","description":"Sets a unique identifier for the content pane.\nUsed for targeting slotted content.","values":[]},{"name":"is-flyout","description":"Indicates whether the pane is currently in a flyout state.","values":[]},{"name":"is-single-floating","description":"Indicates that the pane is a single floating item.","values":[]},{"name":"parent-use-fixed-size","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.","values":[]},{"name":"unpinned-size","description":"Specifies the pane's unpinned size when in flyout state.","values":[]},{"name":"min-resize-width","description":"The minimum width of the pane in pixels during resizing.","values":[]},{"name":"min-resize-height","description":"The minimum height of the pane in pixels during resizing.","values":[]},{"name":"header","description":"Defines the header label for the pane.","values":[]},{"name":"disabled","description":"Disables the pane and makes it non-interactive.","values":[]},{"name":"size","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.","values":[]}],"references":[]},{"name":"igc-floating-pane","description":"\n---\n\n\n### **Events:**\n - **wndResizeStart** - Emitted when a resize interaction begins.\n- **wndResizeMove** - Emitted during the pane resize movement.\n- **wndResizeEnd** - Emitted when the resize interaction ends.\n\n### **Slots:**\n - **header** - Renders the floating pane header content.\n- _default_ - Renders the main content of the floating pane.\n\n### **CSS Parts:**\n - **floating-window** - The root floating pane container.","attributes":[{"name":"allowResize","description":"Indicates whether the floating pane can be resized.","values":[]},{"name":"floatingLocation","description":"The current location of the floating pane.\nDefaults to top-left corner position.","values":[{"name":"IgcDockManagerPoint"}]},{"name":"floatingWidth","description":"The current width of the floating pane.","values":[]},{"name":"floatingHeight","description":"The current height of the floating pane.","values":[]},{"name":"hasHeader","description":"Indicates whether the pane has a header section.","values":[]},{"name":"floatingMinHeight","description":"The minimum height constraint for the floating pane.","values":[]},{"name":"floatingMinWidth","description":"The minimum width constraint for the floating pane.","values":[]},{"name":"floatingId","description":"A unique identifier for the floating pane.","values":[]},{"name":"maximized","description":"Indicates whether the floating pane is currently maximized.","values":[]}],"references":[]},{"name":"igc-pane-header","description":"\n---\n\n\n### **Events:**\n - **igcPaneHeaderDragStart** - Emitted when dragging starts on the header.\n- **igcPaneHeaderDragMoved** - Emitted during header dragging.\n- **igcPaneHeaderDragEnd** - Emitted when dragging ends on the header.\n- **igcPinToggle** - Emitted when the pin button is clicked.\n- **igcMaximize** - Emitted when the maximize button is clicked.\n- **igcClose** - Emitted when the close button is clicked.\n- **elementConnected** - Emitted when the element is connected to the DOM.\n- **elementDisconnected** - Emitted when the element is disconnected from the DOM.\n\n### **Slots:**\n - _default_ - Renders the pane header title.\n- **paneHeaderCloseButton** - Renders a custom close button.\n- **paneHeaderMaximizeButton** - Renders a custom maximize button.\n- **paneHeaderMinimizeButton** - Renders a custom minimize button.\n- **paneHeaderPinButton** - Renders a custom pin button.\n- **paneHeaderUnpinButton** - Renders a custom unpin button.","attributes":[{"name":"is-floating","description":"Indicates whether the header is used in a floating window.","values":[]},{"name":"is-floating-pane-header","description":"Indicates that the header is used in a floating pane context.","values":[]},{"name":"is-active","description":"Marks the header as active.","values":[]},{"name":"forced-drag","description":"Forces drag behavior on the pane header.","values":[]},{"name":"allow-close","description":"Enables or disables closing.","values":[]},{"name":"allow-maximize","description":"Enables or disables maximizing.","values":[]},{"name":"allow-pinning","description":"Enables or disables pinning.","values":[]},{"name":"pinned","description":"Whether the pane is currently pinned.","values":[]},{"name":"maximized","description":"Whether the pane is currently maximized.","values":[]},{"name":"disabled","description":"Disables interaction with the pane header.","values":[]}],"references":[]},{"name":"igc-resizer","description":"\n---\n\n\n### **Events:**\n - **igcResizerDragStart** - Emitted when a drag operation starts on the resizer.\n- **igcResizerMoved** - Emitted during resizer moving.\n- **igcResizerDragEnd** - Emitted when dragging ends on the resizer.","attributes":[{"name":"orientation","description":"Specifies the orientation of the resizer.","values":[{"name":"ResizerLocation"}]}],"references":[]},{"name":"igc-split-pane","description":"\n---\n\n\n### **Events:**\n - **igcRendered** - Emitted when the component is updated and rendered.\n\n### **CSS Parts:**\n - **split-pane** - The root split pane container.","attributes":[{"name":"use-fixed-size","description":"Indicates whether the pane uses a fixed size.","values":[]},{"name":"parent-use-fixed-size","description":"Indicates if the parent pane uses fixed pane sizes.","values":[]},{"name":"min-resize-width","description":"The minimum width of child panes in pixels during resizing.","values":[]},{"name":"min-resize-height","description":"The minimum height of child panes in pixels during resizing.","values":[]},{"name":"orientation","description":"Defines the layout direction of the split pane: `horizontal` or `vertical`.","values":[{"name":"SplitPaneOrientation"}]},{"name":"size","values":[]}],"references":[]},{"name":"igc-splitter-component","description":"\n---\n\n\n### **Events:**\n - **igcResizeStart** - Emitted when a resize interaction starts.\n- **igcResizeEnd** - Emitted when the resize ends, passing the final size.\n\n### **CSS Parts:**\n - **splitter** - The main container of the splitter.\n- **splitter-base** - The draggable element that users interact with.\n- **splitter-ghost** - The visual indicator (ghost element) shown during drag.","attributes":[{"name":"show-drag-ghost","description":"Indicates whether the drag ghost element is shown while resizing.","values":[]},{"name":"parent-use-fixed-size","description":"Indicates if the parent pane uses fixed pane sizes.","values":[]},{"name":"split-pane-orientation","description":"Defines the orientation of the splitter based on the split pane orientation.","values":[]},{"name":"flyout-location","description":"Indicates the flyout location of the splitter.","values":[{"name":"UnpinnedLocation"}]},{"name":"scrollSpeed","values":[]}],"references":[]},{"name":"igc-unpinned-pane-header","description":"\n---\n\n\n### **Slots:**\n - _default_ - Default slot for the pane header content.\n\n### **CSS Parts:**\n - **unpinned-pane-header** - The main container of the pane header.\n- **horizontal** - Applied when the header is in a horizontal orientation.\n- **vertical** - Applied when the header is in a vertical orientation.\n- **start** - Applied when the header is on the left or top side.\n- **end** - Applied when the header is on the right or bottom side.\n- **active** - Applied when the header is in active state.\n- **disabled** - Applied when the header is disabled.","attributes":[{"name":"is-active","description":"Indicates whether the unpinned pane header is active.","values":[]},{"name":"disabled","description":"Indicates whether the unpinned pane header is disabled.","values":[]},{"name":"location","description":"The location where the unpinned pane is docked.","values":[]},{"name":"isActive","description":"Indicates whether the unpinned pane header is active.","values":[]}],"references":[]}]
|
|
5
5
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-dockmanager",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "Ignite UI Dock Manager Web Component provides means to manage the layout of your application through panes, allowing your end-users to customize it further by pinning, resizing, moving and hiding panes.",
|
|
5
5
|
"author": "Infragistics",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|