@usefui/components 1.7.0 → 1.7.1

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.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix dialog position
8
+
3
9
  ## 1.7.0
4
10
 
5
11
  ### Minor Changes
package/dist/index.js CHANGED
@@ -2164,8 +2164,6 @@ var DialogDefaultStyles = import_styled_components7.css`
2164
2164
  position: fixed;
2165
2165
  top: 15dvh;
2166
2166
  bottom: auto;
2167
- left: auto;
2168
- right: auto;
2169
2167
 
2170
2168
  padding: var(--measurement-medium-30);
2171
2169
  width: 100%;
package/dist/index.mjs CHANGED
@@ -2013,8 +2013,6 @@ var DialogDefaultStyles = css6`
2013
2013
  position: fixed;
2014
2014
  top: 15dvh;
2015
2015
  bottom: auto;
2016
- left: auto;
2017
- right: auto;
2018
2016
 
2019
2017
  padding: var(--measurement-medium-30);
2020
2018
  width: 100%;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@usefui/components",
3
- "version": "1.7.0",
3
+ "version": "1.7.1",
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/tokens": "^1.7.0",
35
34
  "@usefui/hooks": "^1.4.0",
35
+ "@usefui/tokens": "^1.7.0",
36
36
  "@usefui/core": "^1.4.0"
37
37
  },
38
38
  "scripts": {
@@ -4,8 +4,6 @@ const DialogDefaultStyles = css`
4
4
  position: fixed;
5
5
  top: 15dvh;
6
6
  bottom: auto;
7
- left: auto;
8
- right: auto;
9
7
 
10
8
  padding: var(--measurement-medium-30);
11
9
  width: 100%;