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