@gfazioli/mantine-split-pane 0.2.3 → 0.2.4
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.md +6 -0
- package/CONTRIBUTING.md +1 -1
- package/README.md +1 -0
- package/dist/types/Split.context.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
The following is a list of notable changes to the Mantine Split component.
|
|
4
4
|
Minor versions that are not listed in the changelog are bug fixes and small improvements.
|
|
5
5
|
|
|
6
|
+
## 0.2.4 (2024-06-10)
|
|
7
|
+
|
|
8
|
+
- 📝 Updated CHANGELOG, CONTRIBUTING and CODE_OF_CONDUCT
|
|
9
|
+
- 📦️ Updated Mantine 7.10.1
|
|
10
|
+
- 👷 Updated script release
|
|
11
|
+
|
|
6
12
|
## 0.2.1 (2024-03-16)
|
|
7
13
|
|
|
8
14
|
- 📝 Added CHANGELOG, CONTRIBUTING and CODE_OF_CONDUCT
|
package/CONTRIBUTING.md
CHANGED
package/README.md
CHANGED
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
## Overview
|
|
23
23
|
|
|
24
24
|
This component is created on top of the [Mantine](https://mantine.dev/) library.
|
|
25
|
+
You can find more components on the [Mantine Extensions Hub](https://mantine-extensions.vercel.app/) library.
|
|
25
26
|
|
|
26
27
|
Utilizing Mantine UI, enables users to create a flexible layout with resizable split panes. It supports both vertical and horizontal splitting, allowing the arrangement of content in various configurations. The component seamlessly handles nested split panes, enabling complex layouts with ease.
|
|
27
28
|
With intuitive resizing functionality, users can adjust the size of each pane effortlessly. This component provides a responsive and user-friendly interface for organizing and displaying content in a way that best suits the application's needs.
|
|
@@ -7,5 +7,5 @@ interface SplitContext extends Omit<SplitPaneResizerProps, 'minWidth' | 'minHeig
|
|
|
7
7
|
export declare const SplitContextProvider: ({ children, value }: {
|
|
8
8
|
value: SplitContext;
|
|
9
9
|
children: import("react").ReactNode;
|
|
10
|
-
}) => import("react").JSX.Element, useSplitContext: () => SplitContext;
|
|
10
|
+
}) => import("react/jsx-runtime").JSX.Element, useSplitContext: () => SplitContext;
|
|
11
11
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gfazioli/mantine-split-pane",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "A React component that manages split panes allows users to divide and resize content areas within a layout efficiently.",
|
|
5
5
|
"homepage": "https://gfazioli.github.io/mantine-split-pane/",
|
|
6
6
|
"packageManager": "yarn@4.0.1",
|