@aptre/flex-layout 0.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.
- package/LICENSE +22 -0
- package/README.md +527 -0
- package/declarations/Attribute.d.ts +1 -0
- package/declarations/AttributeDefinitions.d.ts +1 -0
- package/declarations/DockLocation.d.ts +12 -0
- package/declarations/DragDrop.d.ts +15 -0
- package/declarations/DropInfo.d.ts +12 -0
- package/declarations/I18nLabel.d.ts +14 -0
- package/declarations/Orientation.d.ts +7 -0
- package/declarations/PopupMenu.d.ts +1 -0
- package/declarations/Rect.d.ts +28 -0
- package/declarations/Types.d.ts +78 -0
- package/declarations/index.d.ts +22 -0
- package/declarations/model/Action.d.ts +5 -0
- package/declarations/model/Actions.d.ts +110 -0
- package/declarations/model/BorderNode.d.ts +34 -0
- package/declarations/model/BorderSet.d.ts +4 -0
- package/declarations/model/ICloseType.d.ts +5 -0
- package/declarations/model/IDraggable.d.ts +2 -0
- package/declarations/model/IDropTarget.d.ts +2 -0
- package/declarations/model/IJsonModel.d.ts +146 -0
- package/declarations/model/Model.d.ts +86 -0
- package/declarations/model/Node.d.ts +17 -0
- package/declarations/model/RowNode.d.ts +11 -0
- package/declarations/model/SplitterNode.d.ts +5 -0
- package/declarations/model/TabNode.d.ts +36 -0
- package/declarations/model/TabSetNode.d.ts +40 -0
- package/declarations/model/Utils.d.ts +1 -0
- package/declarations/view/BorderButton.d.ts +1 -0
- package/declarations/view/BorderTabSet.d.ts +1 -0
- package/declarations/view/ErrorBoundary.d.ts +1 -0
- package/declarations/view/FloatingWindow.d.ts +1 -0
- package/declarations/view/FloatingWindowTab.d.ts +1 -0
- package/declarations/view/Icons.d.ts +6 -0
- package/declarations/view/Layout.d.ts +158 -0
- package/declarations/view/Splitter.d.ts +1 -0
- package/declarations/view/Tab.d.ts +1 -0
- package/declarations/view/TabButton.d.ts +1 -0
- package/declarations/view/TabButtonStamp.d.ts +1 -0
- package/declarations/view/TabFloating.d.ts +1 -0
- package/declarations/view/TabOverflowHook.d.ts +1 -0
- package/declarations/view/TabSet.d.ts +1 -0
- package/declarations/view/Utils.d.ts +1 -0
- package/dist/index.js +5669 -0
- package/package.json +73 -0
- package/style/_base.scss +631 -0
- package/style/dark.css +560 -0
- package/style/dark.css.map +1 -0
- package/style/dark.scss +173 -0
- package/style/gray.css +543 -0
- package/style/gray.css.map +1 -0
- package/style/gray.scss +172 -0
- package/style/light.css +544 -0
- package/style/light.css.map +1 -0
- package/style/light.scss +156 -0
- package/style/underline.css +565 -0
- package/style/underline.css.map +1 -0
- package/style/underline.scss +178 -0
- package/tsconfig.json +18 -0
- package/typedoc/.nojekyll +1 -0
- package/typedoc/assets/highlight.css +106 -0
- package/typedoc/assets/main.js +58 -0
- package/typedoc/assets/search.js +1 -0
- package/typedoc/assets/style.css +1338 -0
- package/typedoc/classes/Action.html +134 -0
- package/typedoc/classes/Actions.html +499 -0
- package/typedoc/classes/BorderNode.html +374 -0
- package/typedoc/classes/BorderSet.html +112 -0
- package/typedoc/classes/DockLocation.html +163 -0
- package/typedoc/classes/DragDrop.html +242 -0
- package/typedoc/classes/DropInfo.html +155 -0
- package/typedoc/classes/Layout.html +600 -0
- package/typedoc/classes/Model.html +396 -0
- package/typedoc/classes/Node.html +221 -0
- package/typedoc/classes/Orientation.html +148 -0
- package/typedoc/classes/Rect.html +312 -0
- package/typedoc/classes/RowNode.html +275 -0
- package/typedoc/classes/SplitterNode.html +238 -0
- package/typedoc/classes/TabNode.html +389 -0
- package/typedoc/classes/TabSetNode.html +453 -0
- package/typedoc/enums/CLASSES.html +480 -0
- package/typedoc/enums/I18nLabel.html +160 -0
- package/typedoc/enums/ICloseType.html +115 -0
- package/typedoc/index.html +148 -0
- package/typedoc/interfaces/IBorderAttributes.html +166 -0
- package/typedoc/interfaces/ICustomDropDestination.html +149 -0
- package/typedoc/interfaces/IDraggable.html +95 -0
- package/typedoc/interfaces/IDropTarget.html +96 -0
- package/typedoc/interfaces/IFontValues.html +124 -0
- package/typedoc/interfaces/IGlobalAttributes.html +329 -0
- package/typedoc/interfaces/IIcons.html +134 -0
- package/typedoc/interfaces/IJsonBorderNode.html +188 -0
- package/typedoc/interfaces/IJsonModel.html +119 -0
- package/typedoc/interfaces/IJsonRowNode.html +141 -0
- package/typedoc/interfaces/IJsonTabNode.html +220 -0
- package/typedoc/interfaces/IJsonTabSetNode.html +273 -0
- package/typedoc/interfaces/ILayoutProps.html +365 -0
- package/typedoc/interfaces/ILayoutState.html +144 -0
- package/typedoc/interfaces/IRowAttributes.html +131 -0
- package/typedoc/interfaces/ITabAttributes.html +201 -0
- package/typedoc/interfaces/ITabRenderValues.html +124 -0
- package/typedoc/interfaces/ITabSetAttributes.html +241 -0
- package/typedoc/interfaces/ITabSetRenderValues.html +134 -0
- package/typedoc/interfaces/ITitleObject.html +114 -0
- package/typedoc/types/CustomDragCallback.html +108 -0
- package/typedoc/types/DragRectRenderCallback.html +104 -0
- package/typedoc/types/FloatingTabPlaceholderRenderCallback.html +114 -0
- package/typedoc/types/IBorderLocation.html +87 -0
- package/typedoc/types/IInsets.html +98 -0
- package/typedoc/types/ITabLocation.html +87 -0
- package/typedoc/types/IconFactory.html +100 -0
- package/typedoc/types/NodeMouseEvent.html +102 -0
- package/typedoc/types/ShowOverflowMenuCallback.html +122 -0
- package/typedoc/types/TabSetPlaceHolderCallback.html +100 -0
- package/typedoc/types/TitleFactory.html +100 -0
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.