flexlayout-react 0.7.1 → 0.7.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.
- package/ChangeLog.txt +4 -0
- package/README.md +33 -34
- package/declarations/view/Layout.d.ts +1 -0
- package/dist/flexlayout.js +2 -2
- package/dist/flexlayout_min.js +1 -1
- package/lib/view/Icons.js +10 -10
- package/lib/view/Icons.js.map +1 -1
- package/lib/view/Layout.js +18 -73
- package/lib/view/Layout.js.map +1 -1
- package/package.json +5 -3
- package/src/view/Icons.tsx +7 -7
- package/src/view/Layout.tsx +22 -99
- package/style/dark.css +1 -0
- package/style/dark.css.map +1 -1
- package/style/dark.scss +1 -0
- package/style/gray.css +1 -0
- package/style/gray.css.map +1 -1
- package/style/gray.scss +1 -0
- package/style/light.css +1 -0
- package/style/light.css.map +1 -1
- package/style/light.scss +1 -0
- package/style/underline.css +1 -0
- package/style/underline.css.map +1 -1
- package/style/underline.scss +1 -0
package/src/view/Layout.tsx
CHANGED
|
@@ -123,6 +123,7 @@ export interface ILayoutState {
|
|
|
123
123
|
editingTab?: TabNode;
|
|
124
124
|
showHiddenBorder: DockLocation;
|
|
125
125
|
portal?: React.ReactPortal;
|
|
126
|
+
showEdges?: boolean;
|
|
126
127
|
}
|
|
127
128
|
|
|
128
129
|
export interface IIcons {
|
|
@@ -192,7 +193,7 @@ export interface ILayoutCallbacks {
|
|
|
192
193
|
showPortal: (portal: React.ReactNode, portalDiv: HTMLDivElement) => void;
|
|
193
194
|
hidePortal: () => void;
|
|
194
195
|
getShowOverflowMenu(): ShowOverflowMenuCallback | undefined;
|
|
195
|
-
getTabSetPlaceHolderCallback()
|
|
196
|
+
getTabSetPlaceHolderCallback(): TabSetPlaceHolderCallback | undefined;
|
|
196
197
|
}
|
|
197
198
|
|
|
198
199
|
// Popout windows work in latest browsers based on webkit (Chrome, Opera, Safari, latest Edge) and Firefox. They do
|
|
@@ -249,22 +250,11 @@ export class Layout extends React.Component<ILayoutProps, ILayoutState> {
|
|
|
249
250
|
private customDrop: ICustomDropDestination | undefined;
|
|
250
251
|
/** @internal */
|
|
251
252
|
private outlineDiv?: HTMLDivElement;
|
|
252
|
-
|
|
253
253
|
/** @internal */
|
|
254
254
|
private edgeRectLength = 100;
|
|
255
255
|
/** @internal */
|
|
256
256
|
private edgeRectWidth = 10;
|
|
257
257
|
/** @internal */
|
|
258
|
-
private edgesShown = false;
|
|
259
|
-
/** @internal */
|
|
260
|
-
private edgeRightDiv?: HTMLDivElement;
|
|
261
|
-
/** @internal */
|
|
262
|
-
private edgeBottomDiv?: HTMLDivElement;
|
|
263
|
-
/** @internal */
|
|
264
|
-
private edgeLeftDiv?: HTMLDivElement;
|
|
265
|
-
/** @internal */
|
|
266
|
-
private edgeTopDiv?: HTMLDivElement;
|
|
267
|
-
/** @internal */
|
|
268
258
|
private fnNewNodeDropped?: (node?: Node, event?: Event) => void;
|
|
269
259
|
/** @internal */
|
|
270
260
|
private currentDocument?: HTMLDocument;
|
|
@@ -301,6 +291,7 @@ export class Layout extends React.Component<ILayoutProps, ILayoutState> {
|
|
|
301
291
|
calculatedBorderBarSize: 30,
|
|
302
292
|
editingTab: undefined,
|
|
303
293
|
showHiddenBorder: DockLocation.CENTER,
|
|
294
|
+
showEdges: false,
|
|
304
295
|
};
|
|
305
296
|
|
|
306
297
|
this.onDragEnter = this.onDragEnter.bind(this);
|
|
@@ -496,10 +487,6 @@ export class Layout extends React.Component<ILayoutProps, ILayoutState> {
|
|
|
496
487
|
this.renderBorder(this.props.model.getBorderSet(), borderComponents, tabComponents, floatingWindows, splitterComponents);
|
|
497
488
|
this.renderChildren("", this.props.model.getRoot(), tabSetComponents, tabComponents, floatingWindows, splitterComponents);
|
|
498
489
|
|
|
499
|
-
if (this.edgesShown) {
|
|
500
|
-
this.repositionEdges(this.state.rect)
|
|
501
|
-
}
|
|
502
|
-
|
|
503
490
|
const nextTopIds: string[] = [];
|
|
504
491
|
const nextTopIdsMap: Record<string, string> = {};
|
|
505
492
|
|
|
@@ -519,6 +506,20 @@ export class Layout extends React.Component<ILayoutProps, ILayoutState> {
|
|
|
519
506
|
}
|
|
520
507
|
}
|
|
521
508
|
|
|
509
|
+
const edges: React.ReactNode[] = [];
|
|
510
|
+
if (this.state.showEdges) {
|
|
511
|
+
const r = this.centerRect;
|
|
512
|
+
const length = this.edgeRectLength;
|
|
513
|
+
const width = this.edgeRectWidth;
|
|
514
|
+
const offset = this.edgeRectLength / 2;
|
|
515
|
+
const className = this.getClassName(CLASSES.FLEXLAYOUT__EDGE_RECT);
|
|
516
|
+
const radius = 50;
|
|
517
|
+
edges.push(<div key="North" style={{ top: r.y, left: r.x + r.width / 2 - offset, width: length, height: width, borderBottomLeftRadius: radius, borderBottomRightRadius: radius }} className={className}></div>)
|
|
518
|
+
edges.push(<div key="West" style={{ top: r.y + r.height / 2 - offset, left: r.x, width: width, height: length, borderTopRightRadius: radius, borderBottomRightRadius: radius }} className={className}></div>)
|
|
519
|
+
edges.push(<div key="South" style={{ top: r.y + r.height - width, left: r.x + r.width / 2 - offset, width: length, height: width, borderTopLeftRadius: radius, borderTopRightRadius: radius }} className={className}></div>)
|
|
520
|
+
edges.push(<div key="East" style={{ top: r.y + r.height / 2 - offset, right: r.x, width: width, height: length, borderTopLeftRadius: radius, borderBottomLeftRadius: radius }} className={className}></div>)
|
|
521
|
+
}
|
|
522
|
+
|
|
522
523
|
// this.layoutTime = (Date.now() - this.start);
|
|
523
524
|
|
|
524
525
|
return (
|
|
@@ -529,6 +530,7 @@ export class Layout extends React.Component<ILayoutProps, ILayoutState> {
|
|
|
529
530
|
})}
|
|
530
531
|
{borderComponents}
|
|
531
532
|
{splitterComponents}
|
|
533
|
+
{edges}
|
|
532
534
|
{floatingWindows}
|
|
533
535
|
{this.metricsElements()}
|
|
534
536
|
{this.state.portal}
|
|
@@ -731,7 +733,7 @@ export class Layout extends React.Component<ILayoutProps, ILayoutState> {
|
|
|
731
733
|
* @param node the tab or tabset to drag
|
|
732
734
|
* @param dragText the text to show on the drag panel
|
|
733
735
|
*/
|
|
734
|
-
moveTabWithDragAndDrop(
|
|
736
|
+
moveTabWithDragAndDrop(node: (TabNode | TabSetNode), dragText?: string) {
|
|
735
737
|
this.dragStart(undefined, dragText, node, true, undefined, undefined);
|
|
736
738
|
}
|
|
737
739
|
|
|
@@ -809,7 +811,7 @@ export class Layout extends React.Component<ILayoutProps, ILayoutState> {
|
|
|
809
811
|
|
|
810
812
|
this.dragDiv = undefined;
|
|
811
813
|
this.hidePortal();
|
|
812
|
-
this.
|
|
814
|
+
this.setState({ showEdges: false });
|
|
813
815
|
if (this.fnNewNodeDropped != null) {
|
|
814
816
|
this.fnNewNodeDropped();
|
|
815
817
|
this.fnNewNodeDropped = undefined;
|
|
@@ -923,7 +925,7 @@ export class Layout extends React.Component<ILayoutProps, ILayoutState> {
|
|
|
923
925
|
}
|
|
924
926
|
// add edge indicators
|
|
925
927
|
if (this.props.model.getMaximizedTabset() === undefined) {
|
|
926
|
-
this.showEdges
|
|
928
|
+
this.setState({ showEdges: true });
|
|
927
929
|
}
|
|
928
930
|
|
|
929
931
|
if (this.dragNode !== undefined && this.dragNode instanceof TabNode && this.dragNode.getTabRect() !== undefined) {
|
|
@@ -985,7 +987,7 @@ export class Layout extends React.Component<ILayoutProps, ILayoutState> {
|
|
|
985
987
|
this.dragDiv = undefined;
|
|
986
988
|
this.hidePortal();
|
|
987
989
|
|
|
988
|
-
this.
|
|
990
|
+
this.setState({ showEdges: false });
|
|
989
991
|
DragDrop.instance.hideGlass();
|
|
990
992
|
|
|
991
993
|
if (this.dropInfo) {
|
|
@@ -1127,85 +1129,6 @@ export class Layout extends React.Component<ILayoutProps, ILayoutState> {
|
|
|
1127
1129
|
}
|
|
1128
1130
|
}
|
|
1129
1131
|
|
|
1130
|
-
/** @internal */
|
|
1131
|
-
showEdges(rootdiv: HTMLElement) {
|
|
1132
|
-
if (this.props.model.isEnableEdgeDock()) {
|
|
1133
|
-
const length = this.edgeRectLength + "px";
|
|
1134
|
-
const radius = "50px";
|
|
1135
|
-
const width = this.edgeRectWidth + "px";
|
|
1136
|
-
|
|
1137
|
-
this.edgeTopDiv = this.currentDocument!.createElement("div");
|
|
1138
|
-
this.edgeTopDiv.className = this.getClassName(CLASSES.FLEXLAYOUT__EDGE_RECT);
|
|
1139
|
-
this.edgeTopDiv.style.width = length;
|
|
1140
|
-
this.edgeTopDiv.style.height = width;
|
|
1141
|
-
this.edgeTopDiv.style.borderBottomLeftRadius = radius;
|
|
1142
|
-
this.edgeTopDiv.style.borderBottomRightRadius = radius;
|
|
1143
|
-
|
|
1144
|
-
this.edgeLeftDiv = this.currentDocument!.createElement("div");
|
|
1145
|
-
this.edgeLeftDiv.className = this.getClassName(CLASSES.FLEXLAYOUT__EDGE_RECT);
|
|
1146
|
-
this.edgeLeftDiv.style.width = width;
|
|
1147
|
-
this.edgeLeftDiv.style.height = length;
|
|
1148
|
-
this.edgeLeftDiv.style.borderTopRightRadius = radius;
|
|
1149
|
-
this.edgeLeftDiv.style.borderBottomRightRadius = radius;
|
|
1150
|
-
|
|
1151
|
-
this.edgeBottomDiv = this.currentDocument!.createElement("div");
|
|
1152
|
-
this.edgeBottomDiv.className = this.getClassName(CLASSES.FLEXLAYOUT__EDGE_RECT);
|
|
1153
|
-
this.edgeBottomDiv.style.width = length;
|
|
1154
|
-
this.edgeBottomDiv.style.height = width;
|
|
1155
|
-
this.edgeBottomDiv.style.borderTopLeftRadius = radius;
|
|
1156
|
-
this.edgeBottomDiv.style.borderTopRightRadius = radius;
|
|
1157
|
-
|
|
1158
|
-
this.edgeRightDiv = this.currentDocument!.createElement("div");
|
|
1159
|
-
this.edgeRightDiv.className = this.getClassName(CLASSES.FLEXLAYOUT__EDGE_RECT);
|
|
1160
|
-
this.edgeRightDiv.style.width = width;
|
|
1161
|
-
this.edgeRightDiv.style.height = length;
|
|
1162
|
-
this.edgeRightDiv.style.borderTopLeftRadius = radius;
|
|
1163
|
-
this.edgeRightDiv.style.borderBottomLeftRadius = radius;
|
|
1164
|
-
|
|
1165
|
-
this.repositionEdges(this.state.rect);
|
|
1166
|
-
|
|
1167
|
-
rootdiv.appendChild(this.edgeTopDiv);
|
|
1168
|
-
rootdiv.appendChild(this.edgeLeftDiv);
|
|
1169
|
-
rootdiv.appendChild(this.edgeBottomDiv);
|
|
1170
|
-
rootdiv.appendChild(this.edgeRightDiv);
|
|
1171
|
-
|
|
1172
|
-
this.edgesShown = true;
|
|
1173
|
-
}
|
|
1174
|
-
}
|
|
1175
|
-
|
|
1176
|
-
/** @internal */
|
|
1177
|
-
repositionEdges(domRect: Rect) {
|
|
1178
|
-
if (this.props.model.isEnableEdgeDock()) {
|
|
1179
|
-
const r = this.centerRect!;
|
|
1180
|
-
|
|
1181
|
-
this.edgeTopDiv!.style.top = r.y + "px";
|
|
1182
|
-
this.edgeTopDiv!.style.left = r.x + (r.width - this.edgeRectLength) / 2 + "px";
|
|
1183
|
-
|
|
1184
|
-
this.edgeLeftDiv!.style.top = r.y + (r.height - this.edgeRectLength) / 2 + "px";
|
|
1185
|
-
this.edgeLeftDiv!.style.left = r.x + "px";
|
|
1186
|
-
|
|
1187
|
-
this.edgeBottomDiv!.style.bottom = domRect.height - r.getBottom() + "px";
|
|
1188
|
-
this.edgeBottomDiv!.style.left = r.x + (r.width - this.edgeRectLength) / 2 + "px";
|
|
1189
|
-
|
|
1190
|
-
this.edgeRightDiv!.style.top = r.y + (r.height - this.edgeRectLength) / 2 + "px";
|
|
1191
|
-
this.edgeRightDiv!.style.right = domRect.width - r.getRight() + "px";
|
|
1192
|
-
}
|
|
1193
|
-
}
|
|
1194
|
-
|
|
1195
|
-
/** @internal */
|
|
1196
|
-
hideEdges(rootdiv: HTMLElement) {
|
|
1197
|
-
if (this.props.model.isEnableEdgeDock()) {
|
|
1198
|
-
try {
|
|
1199
|
-
rootdiv.removeChild(this.edgeTopDiv!);
|
|
1200
|
-
rootdiv.removeChild(this.edgeLeftDiv!);
|
|
1201
|
-
rootdiv.removeChild(this.edgeBottomDiv!);
|
|
1202
|
-
rootdiv.removeChild(this.edgeRightDiv!);
|
|
1203
|
-
} catch (e) { }
|
|
1204
|
-
}
|
|
1205
|
-
|
|
1206
|
-
this.edgesShown = false;
|
|
1207
|
-
}
|
|
1208
|
-
|
|
1209
1132
|
/** @internal */
|
|
1210
1133
|
maximize(tabsetNode: TabSetNode) {
|
|
1211
1134
|
this.doAction(Actions.maximizeToggle(tabsetNode.getId()));
|
package/style/dark.css
CHANGED
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
--font-size: medium;
|
|
16
16
|
--font-family: Roboto, Arial, sans-serif;
|
|
17
17
|
--color-overflow: gray;
|
|
18
|
+
--color-icon: gray;
|
|
18
19
|
--color-tabset-background: var(--color-1);
|
|
19
20
|
--color-tabset-background-selected: var(--color-1);
|
|
20
21
|
--color-tabset-background-maximized: var(--color-6);
|
package/style/dark.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["dark.scss","_base.scss"],"names":[],"mappings":"AAkBI;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EAEA;EAEA;EACA;EACA;EACA;EAEA;EACA;EAEA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EAEA;;;
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["dark.scss","_base.scss"],"names":[],"mappings":"AAkBI;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EAEA;EACA;EAEA;EACA;EACA;EACA;EAEA;EACA;EAEA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EAEA;;;ACnEJ;EARA;EACA;EACA;EACA;EACA;EAMI;;AAGJ;EACI;;AAGA;EACI;IACI;IACA;IACA;;;AAIR;EACI;;AAGJ;EACI;EACA;EDgIR;;AC7HI;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACI;;AAIJ;EACI;EACA;EACA;EACA;;AAGJ;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;ED5BR;;AC+BQ;EACI;;AAKJ;EAEI;EACA;EACA;EACA;;AAIJ;EACI;;AAGJ;EACI;;AAGJ;EAEI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAEJ;EACI;;AAMhB;EACI;ED/ER;;ACmFI;EACI;EDhFR;;ACqFA;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EAEA;;AAGA;EACI;EACA;;AAGJ;EACI;IACI;IACA;;;AAKR;EACI;EACA;;AAIJ;ED7HR;EACA;EACA;;AC+HQ;ED3HR;EACA;EACA;;AC6HQ;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;;AACA;EDrIZ;;AC6IQ;EACI;IACI;;;AAIR;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;ID7KhB;;;AC+LQ;EACI;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAEJ;EACI;EACA;EACA;;AAKZ;EACI;;AAIJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ED3SR;EACA;;AC6SQ;EACI;EACA;;AAGJ;EACI;IACI;IACA;ID3ShB;;;ACgTQ;EACI;EACA;;AAIJ;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;;AACA;EDrVZ;;AC6VQ;EACI;IACI;;;AAIR;EACI;;AAIR;EACI;EACA;EACA;;AAEA;EAEI;EACA;EACA;;AAGJ;EAEI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;ID9XhB;;;ACsYY;EACI;EACA;EACA;EACA;EACA;EACA;;AAchB;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGJ;EACI;IACI;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAKJ;EACI;;AAGJ;EArkBJ;EACA;EACA;EACA;EACA;;AAqkBI;EACI;EA1kBR;EACA;EACA;EACA;EACA;EAykBQ;EACA;EACA;;AAIR;EAnlBA;EACA;EACA;EACA;EACA;EAilBI;EACA;;AAEJ;EACI;EACA;;AAOJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA","file":"dark.css"}
|
package/style/dark.scss
CHANGED
package/style/gray.css
CHANGED
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
--font-size: medium;
|
|
16
16
|
--font-family: Roboto, Arial, sans-serif;
|
|
17
17
|
--color-overflow: gray;
|
|
18
|
+
--color-icon: gray;
|
|
18
19
|
--color-tabset-background: var(--color-1);
|
|
19
20
|
--color-tabset-background-selected: var(--color-1);
|
|
20
21
|
--color-tabset-background-maximized: var(--color-6);
|
package/style/gray.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["gray.scss","_base.scss"],"names":[],"mappings":"AAiBI;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EAEA;EAEA;EACA;EACA;EACA;EAEA;EACA;EAEA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EAEA;;;
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["gray.scss","_base.scss"],"names":[],"mappings":"AAiBI;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EAEA;EACA;EAEA;EACA;EACA;EACA;EAEA;EACA;EAEA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EAEA;;;AClEJ;EARA;EACA;EACA;EACA;EACA;EAMI;;AAGJ;EACI;;AAGA;EACI;IACI;IACA;IACA;;;AAIR;EACI;;AAGJ;EACI;EACA;ED+HR;;AC5HI;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACI;;AAIJ;EACI;EACA;EACA;EACA;;AAGJ;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;ED1BR;;AC6BQ;EACI;;AAKJ;EAEI;EACA;EACA;EACA;;AAIJ;EACI;;AAGJ;EACI;;AAGJ;EAEI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAEJ;EACI;;AAMhB;EACI;ED7ER;;ACiFI;EACI;ED9ER;;ACmFA;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EAEA;;AAGA;EACI;EACA;;AAGJ;EACI;IACI;IACA;;;AAKR;EACI;EACA;;AAIJ;ED3HR;EACA;EACA;;AC6HQ;EDzHR;EACA;EACA;;AC2HQ;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;;AASJ;EACI;IACI;;;AAIR;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAoBJ;EACI;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAEJ;EACI;EACA;EACA;;AAKZ;EACI;;AAIJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ED3SR;EACA;;AC6SQ;EACI;EACA;;AAGJ;EACI;IACI;IACA;;;AAKR;EACI;EACA;;AAIJ;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;;AASJ;EACI;IACI;;;AAIR;EACI;;AAIR;EACI;EACA;EACA;;AAEA;EAEI;EACA;EACA;;AAGJ;EAEI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAUA;EACI;EACA;EACA;EACA;EACA;EACA;;AAchB;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGJ;EACI;IACI;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAKJ;EACI;;AAGJ;EArkBJ;EACA;EACA;EACA;EACA;;AAqkBI;EACI;EA1kBR;EACA;EACA;EACA;EACA;EAykBQ;EACA;EACA;;AAIR;EAnlBA;EACA;EACA;EACA;EACA;EAilBI;EACA;;AAEJ;EACI;EACA;;AAOJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA","file":"gray.css"}
|
package/style/gray.scss
CHANGED
package/style/light.css
CHANGED
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
--font-size: medium;
|
|
16
16
|
--font-family: Roboto, Arial, sans-serif;
|
|
17
17
|
--color-overflow: gray;
|
|
18
|
+
--color-icon: gray;
|
|
18
19
|
--color-tabset-background: var(--color-background);
|
|
19
20
|
--color-tabset-background-selected: var(--color-1);
|
|
20
21
|
--color-tabset-background-maximized: var(--color-6);
|
package/style/light.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["light.scss","_base.scss"],"names":[],"mappings":"AAkBI;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EAEA;EAEA;EACA;EACA;EACA;EAEA;EACA;EAEA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EAEA;;;
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["light.scss","_base.scss"],"names":[],"mappings":"AAkBI;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EAEA;EACA;EAEA;EACA;EACA;EACA;EAEA;EACA;EAEA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EAEA;;;ACnEJ;EARA;EACA;EACA;EACA;EACA;EAMI;;AAGJ;EACI;;AAGA;EACI;IACI;IACA;IACA;;;AAIR;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACI;;AAIJ;EACI;EACA;EACA;EACA;;AAGJ;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACI;;AAKJ;EAEI;EACA;EACA;EACA;;AAIJ;EACI;;AAGJ;EACI;;AAGJ;EAEI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAEJ;EACI;;AAMhB;EACI;;AAIJ;EACI;;AAKR;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EAEA;;AAGA;EACI;EACA;;AAGJ;EACI;IACI;IACA;;;AAKR;EACI;EACA;EDrHZ;;ACiIQ;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;;AACA;EDrJZ;;AC6JQ;EACI;IACI;;;AAIR;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;ID7LhB;;;AC+MQ;EACI;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAEJ;EACI;EACA;EACA;;AAKZ;EACI;;AAIJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACI;EACA;;AAGJ;EACI;IACI;IACA;;;AAKR;EACI;EACA;;AAIJ;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;;AACA;EDrWZ;;AC6WQ;EACI;IACI;;;AAIR;EACI;;AAIR;EACI;EACA;EACA;;AAEA;EAEI;EACA;EACA;;AAGJ;EAEI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;ID9YhB;;;ACsZY;EACI;EACA;EACA;EACA;EACA;EACA;;AAchB;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGJ;EACI;IACI;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAKJ;EACI;;AAGJ;EArkBJ;EACA;EACA;EACA;EACA;;AAqkBI;EACI;EA1kBR;EACA;EACA;EACA;EACA;EAykBQ;EACA;EACA;;AAIR;EAnlBA;EACA;EACA;EACA;EACA;EAilBI;EACA;;AAEJ;EACI;EACA;;AAOJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA","file":"light.css"}
|
package/style/light.scss
CHANGED
package/style/underline.css
CHANGED
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
--font-size: medium;
|
|
16
16
|
--font-family: Roboto, Arial, sans-serif;
|
|
17
17
|
--color-overflow: gray;
|
|
18
|
+
--color-icon: gray;
|
|
18
19
|
--color-tabset-background: var(--color-background);
|
|
19
20
|
--color-tabset-background-selected: var(--color-1);
|
|
20
21
|
--color-tabset-background-maximized: var(--color-6);
|
package/style/underline.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["underline.scss","_base.scss"],"names":[],"mappings":"AAkBI;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EAEA;EAEA;EACA;EACA;EACA;EAEA;EACA;EAEA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EAEA;EAEA;EACA;EACA;;;
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["underline.scss","_base.scss"],"names":[],"mappings":"AAkBI;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EAEA;EACA;EAEA;EACA;EACA;EACA;EAEA;EACA;EAEA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EAEA;EAEA;EACA;EACA;;;ACvEJ;EARA;EACA;EACA;EACA;EACA;EAMI;;AAGJ;EACI;;AAGA;EACI;IACI;IACA;IACA;;;AAIR;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACI;ED6DR;EACA;EACA;;AC3DI;EACI;EACA;EACA;EACA;;AAGJ;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACI;;AAKJ;EAEI;EACA;EACA;EACA;;AAIJ;EACI;;AAGJ;EACI;;AAGJ;EAEI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAEJ;EACI;;AAMhB;EACI;;AAIJ;EACI;;AAKR;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EAEA;EDrGR;;ACwGQ;EACI;EACA;EDtGZ;;ACyGQ;EACI;IACI;IACA;IDnGhB;;;ACwGQ;EACI;EACA;ED/GZ;EACA;;AC0HQ;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;;AACA;ED7IZ;;ACqJQ;EACI;IACI;;;AAIR;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;IDrLhB;;;ACuMQ;EACI;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAEJ;EACI;EACA;EACA;;AAKZ;EACI;EDlQR;EACA;EACA;;ACoQI;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EDhTR;;ACmTQ;EACI;EACA;EDjTZ;;ACoTQ;EACI;IACI;IACA;ID/ShB;;;ACoTQ;EACI;EACA;ED1TZ;;AC8TQ;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;;AACA;ED7VZ;;ACqWQ;EACI;IACI;;;AAIR;EACI;;AAIR;EACI;EACA;EACA;;AAEA;EAEI;EACA;EACA;;AAGJ;EAEI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;IDtYhB;;;AC8YY;EACI;EACA;EACA;EACA;EACA;EACA;;AAchB;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGJ;EACI;IACI;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAKJ;EACI;;AAGJ;EArkBJ;EACA;EACA;EACA;EACA;;AAqkBI;EACI;EA1kBR;EACA;EACA;EACA;EACA;EAykBQ;EACA;EACA;;AAIR;EAnlBA;EACA;EACA;EACA;EACA;EAilBI;EACA;;AAEJ;EACI;EACA;;AAOJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;;ADrcR;EACI","file":"underline.css"}
|
package/style/underline.scss
CHANGED