@usefui/components 1.7.3 → 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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @usefui/components
2
2
 
3
+ ## 1.7.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Rollback dvh to % on resizable styles
8
+
3
9
  ## 1.7.3
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -4708,7 +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}dvw;
4711
+ width: ${(props) => props.width}%;
4712
4712
  `;
4713
4713
  var Divider2 = import_styled_components16.default.div`
4714
4714
  width: var(--measurement-medium-10);
package/dist/index.mjs CHANGED
@@ -4564,7 +4564,7 @@ var SplitContainer = styled16.div`
4564
4564
  `;
4565
4565
  var Panel = styled16.div`
4566
4566
  overflow: hidden;
4567
- width: ${(props) => props.width}dvw;
4567
+ width: ${(props) => props.width}%;
4568
4568
  `;
4569
4569
  var Divider2 = styled16.div`
4570
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",
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,8 +31,8 @@
31
31
  "react-dom": "^19.2.4",
32
32
  "styled-components": "^5.3.11",
33
33
  "typescript": "^5.9.3",
34
- "@usefui/core": "^1.4.0",
35
34
  "@usefui/hooks": "^1.4.0",
35
+ "@usefui/core": "^1.4.0",
36
36
  "@usefui/tokens": "^1.7.0"
37
37
  },
38
38
  "scripts": {
@@ -9,7 +9,7 @@ export const Panel = styled.div<{
9
9
  width: number;
10
10
  }>`
11
11
  overflow: hidden;
12
- width: ${(props) => props.width}dvw;
12
+ width: ${(props) => props.width}%;
13
13
  `;
14
14
  export const Divider = styled.div<{ $dragging: boolean }>`
15
15
  width: var(--measurement-medium-10);