-
Notifications
You must be signed in to change notification settings - Fork 175
/
ChangeLog.txt
319 lines (255 loc) · 11.2 KB
/
ChangeLog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
0.8.1
Fixed enableDrag on tab and tabset nodes.
Fixed calc for min/max tabset height from min/max tab height.
Modified style sheet code in demo to reduce flash.
0.8.0
New:
* Wrap tabs option
* improved popouts, no longer keep placeholder tab
* drag from overflow menu
* improved splitter resizing
* now uses html drag and drop to allow cross window dragging
* rendering now uses flexbox rather than absolute positions, this should make
styling easier
* rounded theme
* updated dependencies
Breaking Changes:
* addTabWithDragAndDrop signature has changed, must now be called from a drag start handler
* moveTabWithDragAndDrop signature has changed, must now be called from a drag start handler
* removed addTabWithDragAndDropIndirect
* removed onTabDrag (custom internal drag)
* removed font prop, use css variables --font-size and --font-family instead
* removed titleFactory, iconFactory props, use onRenderTab instead
* removed tabset header option
* removed attributes: for insets, tabset header, row/tabset width and height, legacymenu, ...
* several css changes ref use of flexbox
0.7.15
Added arrow icon to edge indicators
0.7.14
Added attribute tabsetClassName to tab nodes, this will add the classname to the parent
tabset when there is a single stretched tab. Updated mosaic layout in demo to use this to color headers.
0.7.13
New attribute on tabset: enableSingleTabStretch will stretch a single tab to take up
all the remaining space and change the style to look like a header, combined with enableDrop
this can be used to create a Mosaic style layout (headed panels without tabs), see the new
Mosaic Style layout in the Demo.
The layout methods addTabToTabSet and addTabToActiveTabSet now return the added TabNode.
Fixed #352 - Layout.getDomRect returning null.
0.7.12
Action.setActiveTabset can now take undefined to unset the active tabset.
Added Tab attribute contentClassName to add a class to the tab content.
0.7.11
Added ITabSetRenderValues.overflowPosition to allow overflow button position to be
specified, if left undefined, position will be after sticky buttons as before.
New model attribute enableRotateBorderIcons, this allows the tab icons in the left and
right borders to rotate with the text or not, default is true.
Added additional class names to edge indicators
0.7.10
Fix for #399 - the overflow button in a tabset is now placed after
any sticky buttons (additional buttons that stick to the last tab of a tabset)
but before any other buttons.
Enabled sticky buttons in border tabsets
0.7.9
Fix drag issue found when used in devtool extension
Fix double render in popout when in strict mode
0.7.8
Fix popout size of tab with individual border size
Hide edge handles when disabled
Update version of Cypress
0.7.7
Fix for #379 - uuid could only be generated in secure contexts
0.7.6
Remove dependency on uuid package
Add action arg to onModelChange callback
0.7.5
Fix for #340 - error dragging a tabset into an empty tabset
0.7.4
Fixed popout windows when using </React.StrictMode>
Output now targets ES6
0.7.3
Fixed right edge marker location when border enableAutoHide
Dragging out a selected border tab will now leave the border unselected
0.7.2
New Layout JSON tabs to demo
Added --color-icon css rootOrientationVertical
0.7.1
Fix for #310 - Added new layout method: moveTabWithDragAndDrop(node) to allow tab dragging to be
started from custom code.
0.7.0
Updated dependencies, in particular changed React peer dependency to React 18
Made changes for React 18
0.6.10
fix for #312, chrome warning for wheel event listener
0.6.9
fix for #308, Allow dragging within a maximized tabset
0.6.8
Added onTabSetPlaceHolder prop to render the tabset area when there are no tabs.
0.6.7
More css variables, added Underline theme, updated dependencies
0.6.6
fix for #296
0.6.5
fix for #289, allow setting attributes to undefined value
0.6.4
Code tidy
Updated dependencies
0.6.3
Changed to using named rather than default import/exports,
this will require changing top level imports
from:
import FlexLayout from 'flexlayout-react';
to
import * as FlexLayout from 'flexlayout-react';
Added typedoc link to readme
0.6.2
Extended icons prop to allow use of functions to set icons.
Added onShowOverflowMenu callback for handling the display of the tab overflow menu.
0.6.1
Use portal for drag rectangle to preserve React context in onRenderTab.
0.6.0
Changed icons to use svg images, these will now scale with the font size.
Improved element spacing, removed most margin/padding spacers.
The overflow menu and drag rectangle will now show the tab icon and content as rendered in the tab.
Added altName attribute to TabNode, this will be used as the name in the overflow menu if there is no
name attribute (e.g the tab has just an icon).
Changed the drag outline colors from red/green to light blue/green.
Removed closeIcon prop from Layout, use the icons property instead.
Changed onRenderDragRect callback to take a ReactElement rather than a string, the content now
contains the tabbutton as rendered.
0.5.21
Fixed copying stylesheet links for popout windows when cssRules throw exception.
Added option, enableUseVisibility, to allow use of visibility: hidden rather than display:none for hiding elements.
0.5.20
Added Cypress Tests
Fixed bug with tab icon not showing
0.5.19
Added onRenderFloatingTabPlaceholder callback prop for rendering the floating tab placeholder.
Changed style sheets to use CSS custom properties (variables) for several values.
Fix selected index in single empty tabset.
Added onContextMenu callback prop for handling context menus on tabs and tabsets.
Added onAuxMouseClick callback prop for handling mouse clicks on tabs and tabsets
with alt, meta, shift keys, also handles center mouse clicks
0.5.18
Added onRenderDragRect callback prop for rendering the drag rectangles
New border attribute: enableAutoHide, to hide border if it has zero tabs
0.5.17
New global option, splitterExtra, to allow splitters to have an extended hit test areas.
This makes it easier to use narrow splitters.
Added new TabNode attributes: borderWidth and borderHeight, these allow for individual border sizes for certain tabs.
Fix for #263 - borders splitters not taking minimum size of center into account
Improved algorithm for finding drop location
Additional parameter: cursor, for onTabDrag
0.5.16
Added 'New Features' layout to demo.
New tab attribute, helpText, to show tooltip over tabs.
New model action, deleteTabset, to delete a tabset and all it's child tabs.
New tabset attribute, enableClose, to close the tabset
0.5.15
Added new Layout prop: onTabDrag that allows tab dragging to be intercepted.
Added example of onTabDrag in demo app, example shows a list where tabs can be dragged into,
moved in the list and dragged back out into the layout.
Node id's that are not assigned a value are now auto-generated using a uuid rather than a rolling number
(for example: previous id: #3, new id: #0c459064-8dee-444e-8636-eb9ab910fb27).
Made toJson method of node public.
0.5.14
Fix an issue with copying styles for a floating window when using a CSS-in-JS solution
Fix for #227 - edge rects are not moved if window is resized while dragging
0.5.13
Added prop (realtimeResize) to make tabs resize as their splitters are dragged.
Warning: this can cause resizing to become choppy when tabs are slow to draw.
0.5.12
New callback on Model to allow TabSet attributes to be set when a tab is moved in such a way
that it creates a new TabSet.
Added config attributes to TabSet and Border
Added headerButtons to ITabSetRenderValues, to allow different set of buttons to be applied to headed
TabSets.
0.5.11
Added StickyButtons to onRenderTabSet render values to allow for implementation of Chrome style + button
Added example of + button to default layout in demo app
0.5.10
Adjust selected tab when tabs popped out to an external window
0.5.9
TitleFactory can now return object with titleContent and name (name is used for tab overflow menu).
Corrected position of rootOrientationVertical in typescript json model
0.5.8
Fix for #172 - Added global rootOrientationVertical attribute to allow vertical layout for root 'row'
Added missing exports for typescript json model
Moved CRA example to separate repo
0.5.7
Added typescript typings for the model json
Fixed drag rectangle showing as dot before first position found (when dragging into the layout)
Fix for #191 - Global Attributes for classNames not working
Fix for #212 - TypeScript issue with ILayoutState
0.5.6
Added external drag drop into layout, see new onExternalDrag prop
Updated demo to accept dragged links, html and text.
Tab scrolling direction changed to match VSCode
Improved positioning of single tab when overflow menu shown
Some small changes to theme colors
0.5.5
Fix for #170 - Closing the last tab of a maximized tabset crashes the layout
0.5.4
Fix issue running with React 17.0.1
Window title now updates when tab renamed
0.5.3
Change classname strings to enum values
TSLint replaced with ESLint
Added Create-React-App (CRA) example
New 'light' theme (lighter and without box shadows, gradients),
existing light theme renamed to 'gray'
0.5.2
Fixed issues caused by double touch/mouse events in IOS
Prevented IOS scroll during drag in demo app.
Added extra option to onRenderTab to allow name of item in overflow menu to be set.
New closeType option for tabs
The maximized tabset now sets others to display:none rather than use z-index
Disable maximize if only one tabset
Splitters will now default to 8 on desktop and 12 on mobile (so they can be tapped more easily)
Close element is enlarged on mobile
0.5.1
Various small fixes
0.5.0
Overflowing tabs now scroll to keep the selected tab in view,
they can also be manually scrolled using the mouse wheel.
Now works on scrolling page.
NOTE: several css classes with names starting with flexlayout__tabset_header... have
been renamed to flexlayout__tabset_tabbar...
0.4.9
Keep selected tab in tabset/border when another tab is moved out.
0.4.8
Minimum size attributes on tabset and border.
Extra css classes on elements for border and splitter styling.
0.4.7
Added font property.
Font now defaults to medium.
Tabs now auto adjust to the current font.
Added fontSize dropdown to demo.
Modified css for above fontSize changes and to remove some fixed sizes.
New attributes to control auto selection of tabs.
0.4.6
Added icons prop to allow default icons to be replaced.
Added tabLocation attribute to tabsets to allow top and bottom tab placement.
Modified css, default font is now 14px.
0.4.5
Fixed use of global objects for use when serverside rendering
Added error boundary around tab contents to prevent tab rendering exception crashing the app
0.4.4
Changed all components except Layout to use React Hooks.
Popouts now wait for style sheets to load.
Fixed problem rendering popouts in Safari.
0.4.3
Fix addTabWithDragAndDrop not working since 0.4.0
0.4.2
Use Sass to generate light and dark themes
0.4.1
Copy styles into popout tabs
0.4.0
Added ability to popout tabs into new browser windows.
Press the 'reload from file' button in the demo app to load new layouts with the popout attribute.
0.3.11
Added overflow menu to border tabs
Fixed issues running on IE11
0.3.10
Removed deprecated React lifecycle methods, will now work
in React strict mode without warnings (for example, in apps
created with Create React App).