@usefui/components 1.7.2 → 1.7.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 +12 -0
- package/dist/index.js +1 -2
- package/dist/index.mjs +1 -2
- package/package.json +3 -3
- package/src/resizable/styles/index.ts +1 -2
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -4708,8 +4708,7 @@ var SplitContainer = import_styled_components16.default.div`
|
|
|
4708
4708
|
`;
|
|
4709
4709
|
var Panel = import_styled_components16.default.div`
|
|
4710
4710
|
overflow: hidden;
|
|
4711
|
-
width: ${(props) => props.width}
|
|
4712
|
-
min-width: var(--measurement-large-60);
|
|
4711
|
+
width: ${(props) => props.width}%;
|
|
4713
4712
|
`;
|
|
4714
4713
|
var Divider2 = import_styled_components16.default.div`
|
|
4715
4714
|
width: var(--measurement-medium-10);
|
package/dist/index.mjs
CHANGED
|
@@ -4564,8 +4564,7 @@ var SplitContainer = styled16.div`
|
|
|
4564
4564
|
`;
|
|
4565
4565
|
var Panel = styled16.div`
|
|
4566
4566
|
overflow: hidden;
|
|
4567
|
-
width: ${(props) => props.width}
|
|
4568
|
-
min-width: var(--measurement-large-60);
|
|
4567
|
+
width: ${(props) => props.width}%;
|
|
4569
4568
|
`;
|
|
4570
4569
|
var Divider2 = styled16.div`
|
|
4571
4570
|
width: var(--measurement-medium-10);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@usefui/components",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.4",
|
|
4
4
|
"description": "Open Source React components library",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"react-dom": "^19.2.4",
|
|
32
32
|
"styled-components": "^5.3.11",
|
|
33
33
|
"typescript": "^5.9.3",
|
|
34
|
+
"@usefui/hooks": "^1.4.0",
|
|
34
35
|
"@usefui/core": "^1.4.0",
|
|
35
|
-
"@usefui/tokens": "^1.7.0"
|
|
36
|
-
"@usefui/hooks": "^1.4.0"
|
|
36
|
+
"@usefui/tokens": "^1.7.0"
|
|
37
37
|
},
|
|
38
38
|
"scripts": {
|
|
39
39
|
"test": "vitest run --coverage --logHeapUsage",
|
|
@@ -9,8 +9,7 @@ export const Panel = styled.div<{
|
|
|
9
9
|
width: number;
|
|
10
10
|
}>`
|
|
11
11
|
overflow: hidden;
|
|
12
|
-
width: ${(props) => props.width}
|
|
13
|
-
min-width: var(--measurement-large-60);
|
|
12
|
+
width: ${(props) => props.width}%;
|
|
14
13
|
`;
|
|
15
14
|
export const Divider = styled.div<{ $dragging: boolean }>`
|
|
16
15
|
width: var(--measurement-medium-10);
|