@awes-io/ui 2.134.0 → 2.135.0
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 +11 -0
- package/assets/css/components/modal.css +17 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [2.135.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.134.0...@awes-io/ui@2.135.0) (2025-08-27)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* add style for remove double scroll from fullscreen modal ([58795ae](https://github.com/awes-io/client/commit/58795ae254d186b34871b4be2b7123aa62a8e037))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [2.134.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.133.0...@awes-io/ui@2.134.0) (2025-08-15)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -116,10 +116,26 @@ $modal-aside-width-large: 75vw;
|
|
|
116
116
|
@apply p-0 overflow-hidden;
|
|
117
117
|
}
|
|
118
118
|
|
|
119
|
+
&.is-fullscreen,
|
|
120
|
+
&.is-aside {
|
|
121
|
+
overflow: hidden;
|
|
122
|
+
}
|
|
123
|
+
|
|
119
124
|
&.is-fullscreen &,
|
|
120
125
|
&[class*='is-aside'] & {
|
|
121
126
|
&__dialog {
|
|
122
|
-
@apply flex flex-col w-full max-w-full p-0 h-full
|
|
127
|
+
@apply flex flex-col w-full max-w-full p-0 h-full overflow-hidden;
|
|
128
|
+
|
|
129
|
+
min-height: 100dvh;
|
|
130
|
+
max-height: 100dvh;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
&__header {
|
|
134
|
+
flex: none;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
&__subtitle {
|
|
138
|
+
flex: none;
|
|
123
139
|
}
|
|
124
140
|
|
|
125
141
|
&__body {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@awes-io/ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.135.0",
|
|
4
4
|
"description": "User Interface (UI) components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ui",
|
|
@@ -114,5 +114,5 @@
|
|
|
114
114
|
"rollup-plugin-visualizer": "^2.6.0",
|
|
115
115
|
"rollup-plugin-vue": "^5.0.1"
|
|
116
116
|
},
|
|
117
|
-
"gitHead": "
|
|
117
|
+
"gitHead": "9257f998e69eecd6f144ec5c8ab5444d6a45d1f0"
|
|
118
118
|
}
|