@gfazioli/mantine-split-pane 2.7.1 → 2.7.3
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/dist/cjs/index.cjs +6 -2
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/esm/index.mjs +3 -1
- package/dist/esm/index.mjs.map +1 -1
- package/dist/types/index.d.mts +3 -1
- package/dist/types/index.d.ts +3 -1
- package/package.json +1 -1
package/dist/cjs/index.cjs
CHANGED
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
'use client';
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
|
-
var Split_context = require('./Split.context.cjs');
|
|
5
4
|
var Split = require('./Split.cjs');
|
|
5
|
+
var SplitPane = require('./Pane/SplitPane.cjs');
|
|
6
|
+
var SplitResizer = require('./Resizer/SplitResizer.cjs');
|
|
7
|
+
var SplitDynamic = require('./Dynamic/SplitDynamic.cjs');
|
|
6
8
|
|
|
7
9
|
|
|
8
10
|
|
|
9
|
-
exports.useSplitContext = Split_context.useSplitContext;
|
|
10
11
|
exports.Split = Split.Split;
|
|
12
|
+
exports.SplitPane = SplitPane.SplitPane;
|
|
13
|
+
exports.SplitResizer = SplitResizer.SplitResizer;
|
|
14
|
+
exports.SplitDynamic = SplitDynamic.SplitDynamic;
|
|
11
15
|
//# sourceMappingURL=index.cjs.map
|
package/dist/cjs/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;"}
|
package/dist/esm/index.mjs
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
-
export { useSplitContext } from './Split.context.mjs';
|
|
2
1
|
export { Split } from './Split.mjs';
|
|
2
|
+
export { SplitPane } from './Pane/SplitPane.mjs';
|
|
3
|
+
export { SplitResizer } from './Resizer/SplitResizer.mjs';
|
|
4
|
+
export { SplitDynamic } from './Dynamic/SplitDynamic.mjs';
|
|
3
5
|
//# sourceMappingURL=index.mjs.map
|
package/dist/esm/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;"}
|
package/dist/types/index.d.mts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
export { useSplitContext } from './Split.context';
|
|
2
1
|
export { Split } from './Split';
|
|
3
2
|
export type { SplitCssVariables, SplitFactory, SplitProps } from './Split';
|
|
3
|
+
export { SplitPane } from './Pane/SplitPane';
|
|
4
4
|
export type { SPLIT_PANE_SIZE, SplitPaneFactory, SplitPaneProps } from './Pane/SplitPane';
|
|
5
|
+
export { SplitResizer } from './Resizer/SplitResizer';
|
|
5
6
|
export type { SPLIT_PANE_RESIZE_SIZES, SplitResizerFactory, SplitResizerProps, } from './Resizer/SplitResizer';
|
|
7
|
+
export { SplitDynamic } from './Dynamic';
|
|
6
8
|
export type { PaneConfig, SplitDynamicProps } from './Dynamic';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
export { useSplitContext } from './Split.context';
|
|
2
1
|
export { Split } from './Split';
|
|
3
2
|
export type { SplitCssVariables, SplitFactory, SplitProps } from './Split';
|
|
3
|
+
export { SplitPane } from './Pane/SplitPane';
|
|
4
4
|
export type { SPLIT_PANE_SIZE, SplitPaneFactory, SplitPaneProps } from './Pane/SplitPane';
|
|
5
|
+
export { SplitResizer } from './Resizer/SplitResizer';
|
|
5
6
|
export type { SPLIT_PANE_RESIZE_SIZES, SplitResizerFactory, SplitResizerProps, } from './Resizer/SplitResizer';
|
|
7
|
+
export { SplitDynamic } from './Dynamic';
|
|
6
8
|
export type { PaneConfig, SplitDynamicProps } from './Dynamic';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gfazioli/mantine-split-pane",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.3",
|
|
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",
|