lexgui 0.7.15 → 8.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (134) hide show
  1. package/LICENSE +201 -21
  2. package/README.md +14 -5
  3. package/build/components/AlertDialog.d.ts +7 -0
  4. package/build/components/ArrayInput.d.ts +9 -0
  5. package/build/components/BaseComponent.d.ts +73 -0
  6. package/build/components/Button.d.ts +14 -0
  7. package/build/components/Calendar.d.ts +41 -0
  8. package/build/components/CalendarRange.d.ts +16 -0
  9. package/build/components/CanvasCurve.d.ts +10 -0
  10. package/build/components/CanvasDial.d.ts +11 -0
  11. package/build/components/CanvasMap2D.d.ts +61 -0
  12. package/build/components/Card.d.ts +8 -0
  13. package/build/components/Checkbox.d.ts +8 -0
  14. package/build/components/Color.d.ts +20 -0
  15. package/build/components/ColorInput.d.ts +13 -0
  16. package/build/components/ColorPicker.d.ts +29 -0
  17. package/build/components/ComboButtons.d.ts +8 -0
  18. package/build/components/ContextMenu.d.ts +16 -0
  19. package/build/components/Counter.d.ts +9 -0
  20. package/build/components/Curve.d.ts +10 -0
  21. package/build/components/DatePicker.d.ts +13 -0
  22. package/build/components/Dial.d.ts +10 -0
  23. package/build/components/Dialog.d.ts +20 -0
  24. package/build/components/DropdownMenu.d.ts +32 -0
  25. package/build/components/FileInput.d.ts +8 -0
  26. package/build/components/Footer.d.ts +14 -0
  27. package/build/components/Form.d.ts +8 -0
  28. package/build/components/Layers.d.ts +9 -0
  29. package/build/components/List.d.ts +9 -0
  30. package/build/components/Map2D.d.ts +12 -0
  31. package/build/components/Menubar.d.ts +59 -0
  32. package/build/components/NodeTree.d.ts +26 -0
  33. package/build/components/NumberInput.d.ts +9 -0
  34. package/build/components/OTPInput.d.ts +8 -0
  35. package/build/components/Pad.d.ts +8 -0
  36. package/build/components/Pagination.d.ts +26 -0
  37. package/build/components/PocketDialog.d.ts +11 -0
  38. package/build/components/Popover.d.ts +20 -0
  39. package/build/components/Progress.d.ts +8 -0
  40. package/build/components/RadioGroup.d.ts +8 -0
  41. package/build/components/RangeInput.d.ts +11 -0
  42. package/build/components/Rate.d.ts +8 -0
  43. package/build/components/Select.d.ts +10 -0
  44. package/build/components/Sheet.d.ts +10 -0
  45. package/build/components/Sidebar.d.ts +84 -0
  46. package/build/components/SizeInput.d.ts +8 -0
  47. package/build/components/Skeleton.d.ts +5 -0
  48. package/build/components/Spinner.d.ts +9 -0
  49. package/build/components/TabSections.d.ts +11 -0
  50. package/build/components/Table.d.ts +34 -0
  51. package/build/components/Tabs.d.ts +20 -0
  52. package/build/components/Tags.d.ts +9 -0
  53. package/build/components/TextArea.d.ts +8 -0
  54. package/build/components/TextInput.d.ts +11 -0
  55. package/build/components/Title.d.ts +8 -0
  56. package/build/components/Toggle.d.ts +8 -0
  57. package/build/components/Tour.d.ts +36 -0
  58. package/build/components/Vector.d.ts +9 -0
  59. package/build/core/Area.d.ts +143 -0
  60. package/build/core/Branch.d.ts +19 -0
  61. package/build/core/Core.d.ts +1 -0
  62. package/build/core/Event.d.ts +26 -0
  63. package/build/core/Icons.d.ts +4 -0
  64. package/build/core/Namespace.d.ts +2 -0
  65. package/build/core/Namespace.js +34 -0
  66. package/build/core/Namespace.js.map +1 -0
  67. package/build/core/Panel.d.ts +538 -0
  68. package/build/core/Utils.d.ts +1 -0
  69. package/build/core/Vec2.d.ts +21 -0
  70. package/build/extensions/AssetView.d.ts +136 -0
  71. package/build/extensions/AssetView.js +1367 -0
  72. package/build/extensions/AssetView.js.map +1 -0
  73. package/build/extensions/Audio.d.ts +9 -0
  74. package/build/extensions/Audio.js +163 -0
  75. package/build/extensions/Audio.js.map +1 -0
  76. package/build/extensions/CodeEditor.d.ts +350 -0
  77. package/build/extensions/CodeEditor.js +5022 -0
  78. package/build/extensions/CodeEditor.js.map +1 -0
  79. package/build/extensions/DocMaker.d.ts +27 -0
  80. package/build/extensions/DocMaker.js +327 -0
  81. package/build/extensions/DocMaker.js.map +1 -0
  82. package/build/extensions/GraphEditor.d.ts +276 -0
  83. package/build/extensions/GraphEditor.js +2770 -0
  84. package/build/extensions/GraphEditor.js.map +1 -0
  85. package/build/extensions/ImUi.d.ts +46 -0
  86. package/build/extensions/ImUi.js +227 -0
  87. package/build/extensions/ImUi.js.map +1 -0
  88. package/build/extensions/Timeline.d.ts +670 -0
  89. package/build/extensions/Timeline.js +3955 -0
  90. package/build/extensions/Timeline.js.map +1 -0
  91. package/build/extensions/VideoEditor.d.ts +128 -0
  92. package/build/extensions/VideoEditor.js +898 -0
  93. package/build/extensions/VideoEditor.js.map +1 -0
  94. package/build/extensions/index.d.ts +8 -0
  95. package/build/extensions/index.js +10 -0
  96. package/build/extensions/index.js.map +1 -0
  97. package/build/index.all.d.ts +2 -0
  98. package/build/index.css.d.ts +4 -0
  99. package/build/index.d.ts +56 -0
  100. package/build/lexgui.all.js +28498 -0
  101. package/build/lexgui.all.js.map +1 -0
  102. package/build/lexgui.all.min.js +1 -0
  103. package/build/lexgui.all.module.js +28422 -0
  104. package/build/lexgui.all.module.js.map +1 -0
  105. package/build/lexgui.all.module.min.js +1 -0
  106. package/build/lexgui.css +939 -346
  107. package/build/lexgui.js +13406 -17286
  108. package/build/lexgui.js.map +1 -0
  109. package/build/lexgui.min.css +3 -10
  110. package/build/lexgui.min.js +1 -1
  111. package/build/lexgui.module.js +12762 -16698
  112. package/build/lexgui.module.js.map +1 -0
  113. package/build/lexgui.module.min.js +1 -1
  114. package/changelog.md +170 -74
  115. package/demo.js +162 -48
  116. package/examples/all-components.html +45 -14
  117. package/examples/asset-view.html +110 -47
  118. package/examples/code-editor.html +5 -5
  119. package/examples/dialogs.html +3 -3
  120. package/examples/editor.html +27 -13
  121. package/examples/index.html +19 -14
  122. package/examples/node-graph.html +2 -2
  123. package/examples/previews/video-editor.png +0 -0
  124. package/examples/timeline.html +1 -1
  125. package/examples/video-editor.html +2 -2
  126. package/package.json +25 -9
  127. package/build/extensions/audio.js +0 -212
  128. package/build/extensions/codeeditor.js +0 -6319
  129. package/build/extensions/docmaker.js +0 -432
  130. package/build/extensions/imui.js +0 -325
  131. package/build/extensions/nodegraph.js +0 -3696
  132. package/build/extensions/timeline.js +0 -4636
  133. package/build/extensions/videoeditor.js +0 -953
  134. package/build/lexgui-docs.css +0 -352
package/changelog.md CHANGED
@@ -2,7 +2,103 @@
2
2
 
3
3
  ## dev
4
4
 
5
- ## 0.7.15 (master)
5
+ ## 8.1.0 (master)
6
+
7
+ AssetView:
8
+ - Added CreateFolder implementation to the MoveItem dialog button.
9
+ - Added more event attributes, added also to docs.
10
+ - `enterFolder` event can now modify data.
11
+ - Passing user parameters through `resolve` call is now allowed.
12
+
13
+ New Component: Alert Dialog.
14
+ Use `dprint` to auto-format code.
15
+ Style improvements for Sheet, Number slider, Counter, and Range Components.
16
+ Improved Icons page using Pagination Component & moved to main page Menubar.
17
+ Added Counter Component docs.
18
+ Minor mobile version fixes.
19
+
20
+ ## 8.0.0
21
+
22
+ From 8.0 (changed versioning to set `8` as the major version), the full library is written in TypeScript to facilitate integrations in newer frameworks (Builds are still available as a JS module with its extensions).
23
+ Replaced Skypack for jsDelivr CDN.
24
+ Aded new Spinner and Pagination Components.
25
+ Added support for `options.submit` in Form entries.
26
+ Added new utils: `LX.stripTags`, `LX.escapeRegExp`, and `LX.wildcardToRegExp`.
27
+ Refactored `Card` Component (see docs).
28
+ Dropdown item icons can be passed as already generated icons with `LX.makeIcon`.
29
+ Area Tabs drag & drop is now working without deleting tab content.
30
+ Calendar and CalendarRange month changes now correctly.
31
+ Code Editor multiline indentation now works properly on empty lines.
32
+ Fixed line color of Timeline curve tracks in light theme.
33
+ Fixed default collapsed state using `LX.makeCollapsible`.
34
+ Fixed Button with Swap and mustConfirm.
35
+ Added support for changing Button swap icons `Button.setSwapIcon`.
36
+
37
+ AssetView:
38
+ - Now used as an extension.
39
+ - Refactor event handling API to allow cancellable events (see docs).
40
+ - Added "Create Folder" action (with cancellable event).
41
+ - Added support for `Ctrl+Wheel` to increase grid item size in AssetView.
42
+ - Replace old pagination implementation for new Pagination Component.
43
+ - Add "Go to upper folder" button, next to Back, Forward, and Refresh navigation bar.
44
+ - Assets can now be dragged into either content or explorer folders.
45
+ - Added support for native "Move" item action with Folder selection dialog.
46
+ - Replace item Old ContextMenus for Dropdowns.
47
+ - Improved clone item renaming.
48
+ - Support `Open in Editor` for Script items.
49
+ - String search filter now allows expressions using wildcards (`*` and `?`).
50
+
51
+ Table Component:
52
+ - Support for Pagination (`options.pagination` and `options.rowsPerPage`).
53
+ - Sort Date strings by date.
54
+ - Added support for `options.hiddenColumns` and `options.showSelectedNumber`.
55
+ - `options.centered` now allows column indices or names.
56
+ - Added row `idx` to `options.rowActions` callback parameters `(idx, bodyData, table, event)`.
57
+ - Calendar filters now work as expected solving some minor issues.
58
+
59
+ Sidebar:
60
+ - Fixed selected entries CSS in light theme.
61
+ - Fixed entries separator not being visible due to content shrink.
62
+
63
+ Tags Component:
64
+ - Added skipDuplicates option.
65
+ - Focus input only when writing.
66
+
67
+ VideoEditor:
68
+ - `dragCropArea` renamed to `moveCropArea`.
69
+ - `moveCropArea` and `resizeCropArea` now expect values (either pixel or normalized coords) instead of an event.
70
+ - Resize and move events now work even while dragging outside of the area's scope.
71
+ - Added `setCropAreaHandles` to specify which resize handles should be visible.
72
+ - Added `options.handleStyle` to edit resize handle's style.
73
+
74
+ General API Changes:
75
+ - `BaseComponent` enum types moved to `ComponentType`.
76
+ - `LX.emit` -> `LX.emitSignal`.
77
+ - `LX.ADD_CUSTOM_COMPONENT` -> `LX.REGISTER_COMPONENT`.
78
+ - `LX.main_area` renamed to `LX.mainArea`.
79
+ - `Element.insertChildAtIndex` -> `LX.insertChildAtIndex`.
80
+ - `Element.getParentArea` -> `LX.getParentArea`.
81
+ - `Element.listen/ignore` -> `LX.listen/ignore`.
82
+ - `Element.hasClass/addClass` -> `LX.hasClas/addClass`.
83
+ - ItemArray Component renamed to ArrayInput.
84
+ - Removed support for Blank panel component.
85
+ - NodeGraph extension renamed to GraphEditor.
86
+ - Docmaker Extension API full changed (see docs).
87
+ - Inputs Class `nobg` renamed to `bg-none` for consistency.
88
+
89
+ Pages and Styling:
90
+ - "All components" example works now on mobile devices.
91
+ - New `colors/` page in main demo page.
92
+ - Improved and extended docs.
93
+ - Main Theme colors updates.
94
+ - Improved color consistency with darker tones.
95
+ - Added "dev" icons, Vscode, Godot, Unity, UnrealEngine, Go, Css, Android, and more.
96
+ - Fixed Badge CSS minor issues.
97
+ - Use `Inter` (https://fonts.google.com/specimen/Inter) as default font.
98
+ - Tailwind color palette with classes and css variables.
99
+ - Added more utility Tailwind style classes.
100
+
101
+ ## 7.15.0
6
102
 
7
103
  Minor fixes.
8
104
  Docs updated.
@@ -18,7 +114,7 @@ AssetView:
18
114
  - Fixed clearing preview panel on delete item.
19
115
  - Removed not used "Properties" item context menu entry.
20
116
 
21
- ## 0.7.14
117
+ ## 7.14.0
22
118
 
23
119
  CodeEditor:
24
120
  - Added support for add/remove multi-line indentation.
@@ -31,7 +127,7 @@ CodeEditor:
31
127
  - Fixed tab visibility bug when using explorer mode.
32
128
  - Fixed line swap minor setting incorrect active line.
33
129
 
34
- ## 0.7.13
130
+ ## 7.13.0
35
131
 
36
132
  Added `LX.validateValueAtPattern`.
37
133
  TextInput now receive `options.pattern` as an Object, instead of text.
@@ -47,7 +143,7 @@ CodeEditor:
47
143
  - Fixed some issues reseting cursor position.
48
144
  - Fixed cursor horizontal scrolling issues.
49
145
 
50
- ## 0.7.12
146
+ ## 7.12.0
51
147
 
52
148
  Added support column actions in Table Component.
53
149
 
@@ -60,7 +156,7 @@ Timeline:
60
156
  NodeTree:
61
157
  - Fixed styling of actions button inputs.
62
158
 
63
- ## 0.7.11
159
+ ## 7.11.0
64
160
 
65
161
  Fixed `Menubar.getSubItem`.
66
162
 
@@ -80,7 +176,7 @@ TreeEvent:
80
176
  - Added event attribute to store mouse/keyboard/system.
81
177
  - Homogenised calls to TreeEvent so node, value and event are consistent.
82
178
 
83
- ## 0.7.10
179
+ ## 7.10.0
84
180
 
85
181
  Removed Fit-Tabs thumb CSS transition on `Tabs.add`.
86
182
  Added Popover documentation.
@@ -107,7 +203,7 @@ VideoEditor:
107
203
  - Speed and loop buttons added to video controls.
108
204
  - Fixed resize controls area bug.
109
205
 
110
- ## 0.7.9
206
+ ## 7.9.0
111
207
 
112
208
  Allow wheel/middle click in menubar buttons.
113
209
  Pass RadioGroup name as argument to radio option callback.
@@ -122,7 +218,7 @@ VideoEditor:
122
218
  - Force to load all chunks of the video.
123
219
  - Loop video manually done to fix sync.
124
220
 
125
- ## 0.7.8
221
+ ## 7.8.0
126
222
 
127
223
  Renamed AssetView "List" view to "Compact". Added better "List" view option.
128
224
  Fixed undesired scroll in AssetView.
@@ -138,7 +234,7 @@ CodeEditor:
138
234
  Timeline:
139
235
  - Add `Timeline.clear()` function.
140
236
 
141
- ## 0.7.7
237
+ ## 7.7.0
142
238
 
143
239
  Fixed RangeInput double-slider issue where the min slider could go past the max slider.
144
240
  Fixed legacy ContextMenu reposition bug.
@@ -165,7 +261,7 @@ CodeEditor:
165
261
  Timeline:
166
262
  - Added setScroll function.
167
263
 
168
- ## 0.7.6
264
+ ## 7.6.0
169
265
 
170
266
  The last color scheme applied (dark|light) is now stored.
171
267
  Added `LX.setSystemTheme()` to revert back auto color scheme mode.
@@ -180,7 +276,7 @@ CodeEditor:
180
276
  - Added support to use different name for URL/Path loaded files.
181
277
  - Added support to load initial files async using `options.filesAsync` list.
182
278
 
183
- ## 0.7.5
279
+ ## 7.5.0
184
280
 
185
281
  CodeEditor:
186
282
  - Hotfixed issue not processing lines in some cases.
@@ -194,7 +290,7 @@ VideoEditor:
194
290
  Added `options.event` to Dropdown to offset position based on event position.
195
291
  Added some more CSS classes.
196
292
 
197
- ## 0.7.4
293
+ ## 7.4.0
198
294
 
199
295
  Added `LX.toKebabCase`.
200
296
 
@@ -205,7 +301,7 @@ CodeEditor:
205
301
  - New autocomplete item icons based on Symbols.
206
302
  - Minor bugs fixed.
207
303
 
208
- ## 0.7.3
304
+ ## 7.3.0
209
305
 
210
306
  VideoEditor:
211
307
  - Minor Controls sizes refactor.
@@ -216,7 +312,7 @@ CodeEditor:
216
312
  - Added basic symbols detection to feed autocomplete.
217
313
  - Fixed resizing and scrollbar issues.
218
314
 
219
- ## 0.7.2
315
+ ## 7.2.0
220
316
 
221
317
  Fixed AssetView Filter select.
222
318
  Fixed tooltips on Dialog without modal.
@@ -232,7 +328,7 @@ CodeEditor:
232
328
  - Started work on scope detection (enums, structs, methods, classes, etc.) for syntax highlighting.
233
329
  - Added support for adding new custom language.
234
330
 
235
- ## 0.7.1
331
+ ## 7.1.0
236
332
 
237
333
  Added support for selecting custom Min, Max range in RangeInput component.
238
334
  Added value labels to RangeInput component.
@@ -241,7 +337,7 @@ Added value labels to RangeInput component.
241
337
  - Change content and offsets dynamically using `trigger.dataset["tooltipContent" | "tooltipOffsetX" | "tooltipOffsetY"]`.
242
338
  Fixed Popovers using `options.reference`.
243
339
 
244
- ## 0.7.0
340
+ ## 7.0.0
245
341
 
246
342
  General/Utils:
247
343
  - "Components" have been renamed to "Extensions".
@@ -291,7 +387,7 @@ Improved Documentation:
291
387
  - Added addition version to elements in sidebar.
292
388
  - Added Changelog section.
293
389
 
294
- ## 0.6.12
390
+ ## 6.12.0
295
391
 
296
392
  Widgets:
297
393
  - Button Widget now supports `options.mustConfirm` to confirm the trigger with custom options.
@@ -309,7 +405,7 @@ Fixed PlainText <> symbols in CodeEditor.
309
405
  Fixed Calendar `options.fromToday` not including today's date.
310
406
  Docs updated.
311
407
 
312
- ## 0.6.11
408
+ ## 6.11.0
313
409
 
314
410
  Widgets:
315
411
  - Fixed Progress Widget value clamp and callback.
@@ -322,7 +418,7 @@ Added support for new `LX.Tour` Component to guide users through an app.
322
418
  Fixed light-dark themes in docs css.
323
419
  Docs updated.
324
420
 
325
- ## 0.6.10
421
+ ## 6.10.0
326
422
 
327
423
  Timeline:
328
424
  - Added support for cloning clips and tracks.
@@ -341,7 +437,7 @@ Fixed Commandbar error on checking String Menubar items.
341
437
  Fixed Asset View custom title overflow.
342
438
  Docs updated.
343
439
 
344
- ## 0.6.9
440
+ ## 6.9.0
345
441
 
346
442
  Timeline:
347
443
  - `addKeyframes` now returns new indices.
@@ -363,7 +459,7 @@ Added support for Area Overlaybuttons separators.
363
459
  Fixed Menubar buttons using `float: left` alignment.
364
460
  Minor fixes CSS.
365
461
 
366
- ## 0.6.8
462
+ ## 6.8.0
367
463
 
368
464
  Widgets:
369
465
  - Support `options.onCreate` on register Custom Widget.
@@ -382,7 +478,7 @@ Fixed vertical area split resize when `sizes: "auto"`.
382
478
  Docs updated.
383
479
  Minor CSS tweaks.
384
480
 
385
- ## 0.6.7
481
+ ## 6.7.0
386
482
 
387
483
  Widgets:
388
484
  - Button Widget now allows `options.fileInput` to request a file on click.
@@ -400,7 +496,7 @@ Added `MAKE_NUMBERED_LIST` to docmaker.js component.
400
496
  Clean docmaker css.
401
497
  Docs updated.
402
498
 
403
- ## 0.6.6
499
+ ## 6.6.0
404
500
 
405
501
  Fixed horizontal scroll in Table Widget.
406
502
  Fixed checkbox in Dropdown item.
@@ -408,7 +504,7 @@ Callbacks in collapsable sidebar entries are now executed.
408
504
  Add `docmaker.js` script (Documentation maker) as new LX component.
409
505
  Added `hover:scale` CSS selectors.
410
506
 
411
- ## 0.6.5
507
+ ## 6.5.0
412
508
 
413
509
  Timeline:
414
510
  - Refactored undo-redo.
@@ -420,7 +516,7 @@ Use sidebar inside Sheet element on mobile.
420
516
  Removed LX.UTILS. Moved methods to global namespace `LX`.
421
517
  Minor fixes in example demos.
422
518
 
423
- ## 0.6.4
519
+ ## 6.4.0
424
520
 
425
521
  Timeline:
426
522
  - Paste refactor.
@@ -438,7 +534,7 @@ Fixed making floating branch + docking to panel.
438
534
  Fixed graph renaming bug in NodeGraph editor.
439
535
  Resize fixes in VideoEditor component.
440
536
 
441
- ## 0.6.3
537
+ ## 6.3.0
442
538
 
443
539
  Widgets:
444
540
  - New Map2D Widget (For NNI).
@@ -450,7 +546,7 @@ Improved Context Menu docs section.
450
546
  Added a few more icon solid variants.
451
547
  Minor fixes.
452
548
 
453
- ## 0.6.2
549
+ ## 6.2.0
454
550
 
455
551
  Widgets:
456
552
  - Fixed Title Widget class override.
@@ -463,7 +559,7 @@ Widgets:
463
559
  Added a few more icon solid variants.
464
560
  Minor CSS tweaks.
465
561
 
466
- ## 0.6.1
562
+ ## 6.1.0
467
563
 
468
564
  Widgets:
469
565
  - Support back `options.selected` in ComboButtons Widget as `ValueType|Array<ValueType>`.
@@ -475,7 +571,7 @@ Fixed Dropdown creation crash when no input items.
475
571
  Fixed AssetView content on max height and scroll.
476
572
  Improved robustness of `LX.getSupportedDOMName`.
477
573
 
478
- ## 0.6.0
574
+ ## 6.0.0
479
575
 
480
576
  `LX.init` now has to called using `await`.
481
577
  Use Dropdowns elements in menubar.
@@ -504,7 +600,7 @@ Docs updated:
504
600
  - Improved widget list parameters and options.
505
601
  - Added live examples for sidebar and menubar.
506
602
 
507
- ## 0.5.11
603
+ ## 5.11.0
508
604
 
509
605
  Widgets:
510
606
  - Form: Add more custom options. Fixed issue using a String as Form field.
@@ -513,7 +609,7 @@ Added `LX.makeElement` to expand support for creating other HTML types.
513
609
  Added more theme utils methods: `LX.getTheme` and `LX.switchTheme`.
514
610
  Minor css fixes.
515
611
 
516
- ## 0.5.10
612
+ ## 5.10.0
517
613
 
518
614
  Fixed Date Calendar popover not opening.
519
615
  Fixed creation of AssetView inner areas.
@@ -521,7 +617,7 @@ Fixed Sidebar content resize issue on creation.
521
617
  ChangeLanguage CodeEditor commands are no longer shown if no opened editor.
522
618
  Minor css fixes.
523
619
 
524
- ## 0.5.9
620
+ ## 5.9.0
525
621
 
526
622
  Widgets:
527
623
  - Added new `DatePicker` Widget (also via `Panel.addDate` and using `LX.Calendar` class).
@@ -532,7 +628,7 @@ Added `LX.Popover` class to create generic popovers with custom content.
532
628
  Expose `LX.NodeTree` in global namespace.
533
629
  Docs updated.
534
630
 
535
- ## 0.5.8
631
+ ## 5.8.0
536
632
 
537
633
  Widgets:
538
634
  - Added missing support for `NodeTree.refresh()` on Array data.
@@ -554,7 +650,7 @@ Added missing support for swap functionality in OverlayButtons.
554
650
  Added tracking (`letter-spacing`) CSS class utilities.
555
651
  Fixed minor issues with ColorPicker mouse tracking.
556
652
 
557
- ## 0.5.7
653
+ ## 5.7.0
558
654
 
559
655
  `LX.makeIcon` now accepts `options` as second parameter (`title`, `iconClass`, `svgClass`).
560
656
  Exposed `LX.setStrictViewport(value)` to allow switching manually.
@@ -562,7 +658,7 @@ Fixed ColorPicker minor issues.
562
658
  Fixed Examples and SourceCode links in docs.
563
659
  Added more CSS class utilities.
564
660
 
565
- ## 0.5.6
661
+ ## 5.6.0
566
662
 
567
663
  Widgets:
568
664
  - ColorInput Widget now uses a new custom `ColorPicker`.
@@ -574,7 +670,7 @@ Added `LX.makeKbd(keys, extraClass)` to create keyboard shortcuts.
574
670
  Fixed Badges theming issues.
575
671
  Docs updated.
576
672
 
577
- ## 0.5.5
673
+ ## 5.5.0
578
674
 
579
675
  Table Widget:
580
676
  - Added support `options.filterValue`.
@@ -594,7 +690,7 @@ Allowed users to register extra icons in LX.ICONS using `LX.registerIcon`.
594
690
  Icons and Customization docs updated.
595
691
  Minor CSS improvements. Added more class utilities.
596
692
 
597
- ## 0.5.4
693
+ ## 5.4.0
598
694
 
599
695
  Widgets:
600
696
  - Added support for disabling resize in TextArea Widget `options.resize: false`.
@@ -609,7 +705,7 @@ Added `options.asElement` to return `LX.badge` as HTMLElement instead of html st
609
705
  Support for using LX.ICONS on sidebar entry icons. Keep FA icons as legacy by now.
610
706
  Minor CSS improvements. Added more class utilities.
611
707
 
612
- ## 0.5.3
708
+ ## 5.3.0
613
709
 
614
710
  Widgets:
615
711
  - Fixed Select Widget filter issues.
@@ -623,7 +719,7 @@ Fixed Select Widget inside Dialog when opening above selector.
623
719
  Improve styling for supported widgets. Better consistency.
624
720
  Added new demo example showcasing all widgets.
625
721
 
626
- ## 0.5.2
722
+ ## 5.2.0
627
723
 
628
724
  Table Widget:
629
725
  - Fixed manual-sort not modifying inner data.
@@ -636,7 +732,7 @@ Fixed preview image in AssetView.
636
732
  General styling fixes.
637
733
  Docs updated.
638
734
 
639
- ## 0.5.1
735
+ ## 5.1.0
640
736
 
641
737
  Widgets:
642
738
  - Added support for `text centering` all/specific columns in Table Widget.
@@ -649,7 +745,7 @@ Fixed issue on open/destroy dropdown.
649
745
  Fixed label text wrap on Checkbox&Toggle widgets.
650
746
  Added `contrast` theme for supported Widgets.
651
747
 
652
- ## 0.5.0
748
+ ## 5.0.0
653
749
 
654
750
  Widgets:
655
751
  - Created classes for each widget to create them at any place.
@@ -669,7 +765,7 @@ Added Icons/ page in docs.
669
765
  Fixed Menubar entries auto-open when menubar is focused.
670
766
  Minor CSS tweaks.
671
767
 
672
- ## 0.4.2
768
+ ## 4.2.0
673
769
 
674
770
  Widgets:
675
771
  - RadioGroup: Add name parameter (1st).
@@ -681,7 +777,7 @@ Added `extraClass` parameter for `LX.makeIcon`.
681
777
  Fixed Menubar.getButton.
682
778
  Fixed some CSS icon alignment issues.
683
779
 
684
- ## 0.4.1
780
+ ## 4.1.0
685
781
 
686
782
  Widgets:
687
783
  - Text: Skip callback if no changes.
@@ -695,7 +791,7 @@ Fixed Menubar menus with scroll > 0.
695
791
  Removed padding when no PocketDialog content.
696
792
  Sidebar docs updated.
697
793
 
698
- ## 0.4.0
794
+ ## 4.0.0
699
795
 
700
796
  Widgets:
701
797
  - Support new RadioGroup Widget.
@@ -711,7 +807,7 @@ Fixed few dialog dragging issues.
711
807
  Removed debug clog.
712
808
  Minor CSS tweaks.
713
809
 
714
- ## 0.3.0
810
+ ## 3.0.0
715
811
 
716
812
  Widgets:
717
813
  - Support toggle mode and button disabled in ComboButtons Widget.
@@ -727,7 +823,7 @@ Timeline theme updated support light scheme color.
727
823
  Minor CSS tweaks.
728
824
  Minor bug fixes.
729
825
 
730
- ## 0.2.0
826
+ ## 2.0.0
731
827
 
732
828
  Widgets:
733
829
  - Support for new Table Widget `Panel.addTable()`.
@@ -749,14 +845,14 @@ Add minified build versions.
749
845
  Docs updated.
750
846
  Minor bug fixes.
751
847
 
752
- ## 0.1.46
848
+ ## 1.46.0
753
849
 
754
850
  Support for creating code snippets `LX.makeCodeSnippet(options)`.
755
851
  Added `swapButton.swap()` and Add `swapButton.setState(bool)`.
756
852
  Fixed colored buttons in light theme.
757
853
  Fixed GoogleSans.ttf usage.
758
854
 
759
- ## 0.1.45
855
+ ## 1.45.0
760
856
 
761
857
  Widgets:
762
858
  - New Counter Widget added `Panel.addCounter`.
@@ -773,7 +869,7 @@ Start support for swap icons (now at `Menubar.addButtons`).
773
869
  Started theme customization docs page.
774
870
  Added theme-swap button to demo and docs.
775
871
 
776
- ## 0.1.44
872
+ ## 1.44.0
777
873
 
778
874
  VideoEditor:
779
875
  - Support cropping video area.
@@ -787,7 +883,7 @@ Fix ContextMenu position when scroll > 0.
787
883
  Minor bug fixes.
788
884
  Docs Updated.
789
885
 
790
- ## 0.1.43
886
+ ## 1.43.0
791
887
 
792
888
  CodeEditor:
793
889
  - Support C and CMake highlight.
@@ -800,7 +896,7 @@ Docs Updated. Add interactive widget examples.
800
896
  Minor CSS general changes.
801
897
  Minor bug fixes.
802
898
 
803
- ## 0.1.42
899
+ ## 1.42.0
804
900
 
805
901
  AssetView:
806
902
  - Support custom element title on hover for Content layout mode `options.useNativeTitle`
@@ -817,7 +913,7 @@ Support options.title in Panel.addButton.
817
913
  [Area] `options.skip_default_area` -> `options.skipDefaultArea`.
818
914
  Minor bug fixes.
819
915
 
820
- ## 0.1.41
916
+ ## 1.41.0
821
917
 
822
918
  AssetView:
823
919
  - Renamed all option parameters (remove snake case).
@@ -831,21 +927,21 @@ More Timeline refactor and fixes.
831
927
  Removed `LX.UTILS.clamp`. Still can be used in `LX.clamp`.
832
928
  Update Fontawesome CSS to v6.7.2.
833
929
 
834
- ## 0.1.40
930
+ ## 1.40.0
835
931
 
836
932
  New widget: Form. Series of Text + Submit Button using form data (Object).
837
933
  Fix non-unique "input-filter" id.
838
934
  Improved Number/Vector mouse interaction with `pointerLock`.
839
935
  Updated docs.
840
936
 
841
- ## 0.1.39
937
+ ## 1.39.0
842
938
 
843
939
  New widget: Pad. Bidimensional slider.
844
940
  `LX.makeDraggable` now supports 'absolute' and 'fixed' positions.
845
941
  Fix passing onDragStart/onMove functions to Dialogs.
846
942
  Minor bug fixes.
847
943
 
848
- ## 0.1.38
944
+ ## 1.38.0
849
945
 
850
946
  Timeline: Fixed timeline signals and added callbacks
851
947
 
@@ -856,7 +952,7 @@ Number/Vector widgets:
856
952
  Added Size Widget (N dimension number widget).
857
953
  Minor bug fixes.
858
954
 
859
- ## 0.1.37
955
+ ## 1.37.0
860
956
 
861
957
  Audio:
862
958
  - Start new audio widgets (Knob wip).
@@ -870,7 +966,7 @@ Fixed Number/Vector precision.
870
966
  Fixed ContextMenu position on creation over window size.
871
967
  Minor bug fixes.
872
968
 
873
- ## 0.1.36
969
+ ## 1.36.0
874
970
 
875
971
  Default skipCallback as `true` on emit widget signal.
876
972
  Add some vec2 math functions.
@@ -879,28 +975,28 @@ Apply original `display` when showing Areatab.
879
975
  Minor styling tweaks.
880
976
  Documentation updates.
881
977
 
882
- ## 0.1.35
978
+ ## 1.35.0
883
979
 
884
980
  Fix `moveOutAction` clamping X value.
885
981
  Add values in curve only with MOUSE_LEFT_CLICK.
886
982
  Curve redraw and color widget styling fixes.
887
983
  Minor general styling improvements.
888
984
 
889
- ## 0.1.34
985
+ ## 1.34.0
890
986
 
891
987
  Fix setValue on Checkbox.
892
988
  Fix position of Dropdown menu when content is scrolled.
893
989
  `moveOutAction` option to delete or clamp curve points.
894
990
  Minor tweaks.
895
991
 
896
- ## 0.1.33
992
+ ## 1.33.0
897
993
 
898
994
  Work on VideoEditor UI component.
899
995
  Improvements Timeline.
900
996
  Allow to select multiple options in AssetViewer.
901
997
  Minor bug fixes.
902
998
 
903
- ## 0.1.32
999
+ ## 1.32.0
904
1000
 
905
1001
  Timeline:
906
1002
  - Allow addition of widgets in top bar.
@@ -911,7 +1007,7 @@ New VideoEditor component (still wip).
911
1007
  Added skipCallback for `Widget.set()`.
912
1008
  Minor bug fixes.
913
1009
 
914
- ## 0.1.31
1010
+ ## 1.31.0
915
1011
 
916
1012
  GraphEditor:
917
1013
  - Graph/function renaming.
@@ -920,7 +1016,7 @@ GraphEditor:
920
1016
  Fixed precision in Number/Vector widgets.
921
1017
  Minor bug fixes.
922
1018
 
923
- ## 0.1.30
1019
+ ## 1.30.0
924
1020
 
925
1021
  GraphEditor:
926
1022
  - Snap Multiplier (x1, x2, x3)
@@ -939,7 +1035,7 @@ Improved select animation "fit" tabs.
939
1035
  Doc updates.
940
1036
  Minor bug fixes.
941
1037
 
942
- ## 0.1.29
1038
+ ## 1.29.0
943
1039
 
944
1040
  GraphEditor:
945
1041
  - Graphs front end (Nodes, links, groups).
@@ -950,7 +1046,7 @@ Improved draggable elements.
950
1046
  Added "onBeforeLoad" callback in File widget.
951
1047
  Minor bug fixes.
952
1048
 
953
- ## 0.1.28
1049
+ ## 1.28.0
954
1050
 
955
1051
  GraphEditor:
956
1052
  - Big refactor. Almost start from scratch.
@@ -958,7 +1054,7 @@ GraphEditor:
958
1054
  Support for adding big icons Sidebars.
959
1055
  General CSS fixes and improvements.
960
1056
 
961
- ## 0.1.27
1057
+ ## 1.27.0
962
1058
 
963
1059
  Code Editor:
964
1060
  - Tab key follows fixed 4 space layout indentation.
@@ -968,7 +1064,7 @@ Code Editor:
968
1064
 
969
1065
  Support "maxWidth" as options when creating a widget.
970
1066
 
971
- ## 0.1.26
1067
+ ## 1.26.0
972
1068
 
973
1069
  Code Editor:
974
1070
  - Search Next Ocurrence using "Ctrl+D" (Duplicate line moved to "Alt+D")
@@ -979,7 +1075,7 @@ Code Editor:
979
1075
 
980
1076
  Minor fixes.
981
1077
 
982
- ## 0.1.25
1078
+ ## 1.25.0
983
1079
 
984
1080
  Code Editor:
985
1081
  - Added Ctrl+K + C/U Shortcuts to Comment/Uncomment lines.
@@ -990,7 +1086,7 @@ Added title attribute by default to Widget Name Dom elements.
990
1086
  Added value getter/setter for LIST widget.
991
1087
  Added updateValues method for modify list options in LIST widget.
992
1088
 
993
- ## 0.1.24
1089
+ ## 1.24.0
994
1090
 
995
1091
  Code Editor:
996
1092
  - Improved single and multiple cursor usability.
@@ -998,7 +1094,7 @@ Code Editor:
998
1094
  - Fixed clicks outside the code area.
999
1095
  - Minor bug fixes.
1000
1096
 
1001
- ## 0.1.23
1097
+ ## 1.23.0
1002
1098
 
1003
1099
  Code Editor:
1004
1100
  - Begin integration of multiple cursors ("Ctrl+ArrowDown").
@@ -1009,7 +1105,7 @@ Code Editor:
1009
1105
 
1010
1106
  Minor fixes.
1011
1107
 
1012
- ## 0.1.22
1108
+ ## 1.22.0
1013
1109
 
1014
1110
  Code Editor:
1015
1111
  - Added REDO using "Ctrl+Y".
@@ -1018,7 +1114,7 @@ Code Editor:
1018
1114
 
1019
1115
  Minor fixes.
1020
1116
 
1021
- ## 0.1.21
1117
+ ## 1.21.0
1022
1118
 
1023
1119
  Code Editor:
1024
1120
  - Added "Ctrl+F" to find text in code tabs.
@@ -1026,7 +1122,7 @@ Code Editor:
1026
1122
  - Added "Markdown" syntax highlighting.
1027
1123
  - Improved hightlighting of tag languages (HTML, Markdown, XML).
1028
1124
 
1029
- ## 0.1.20
1125
+ ## 1.20.0
1030
1126
 
1031
1127
  Code Editor:
1032
1128
  - Active line is now hightlighted.
@@ -1037,7 +1133,7 @@ Code Editor:
1037
1133
 
1038
1134
  Minor fixes.
1039
1135
 
1040
- ## 0.1.19
1136
+ ## 1.19.0
1041
1137
 
1042
1138
  Code Editor:
1043
1139
  - Add file explorer to Code Editor component.