@finema/finework-layer 0.1.7 → 0.1.9
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 +4 -0
- package/app/app.config.ts +2 -2
- package/app/assets/css/main.css +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.9](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.1.8...0.1.9) (2025-10-15)
|
|
4
|
+
|
|
5
|
+
## [0.1.8](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.1.7...0.1.8) (2025-10-15)
|
|
6
|
+
|
|
3
7
|
## [0.1.7](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.1.6...0.1.7) (2025-10-15)
|
|
4
8
|
|
|
5
9
|
## [0.1.6](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.1.5...0.1.6) (2025-10-15)
|
package/app/app.config.ts
CHANGED
|
@@ -23,7 +23,7 @@ export default defineAppConfig({
|
|
|
23
23
|
icon: 'size-6',
|
|
24
24
|
base: [
|
|
25
25
|
'rounded-xl flex-col justify-start items-start space-x-0 bg-[url(/dialog-bg.png)] bg-no-repeat bg-top-left bg-size-[220px]',
|
|
26
|
-
'
|
|
26
|
+
'max-sm:top-auto max-sm:bottom-0 max-sm:left-0 max-sm:right-0 max-sm:translate-x-0 max-sm:translate-y-0 max-sm:w-full max-sm:max-w-full max-sm:rounded-b-none max-sm:rounded-t-xl',
|
|
27
27
|
],
|
|
28
28
|
overlay: 'bg-black/50 backdrop-blur',
|
|
29
29
|
description: 'whitespace-pre-line',
|
|
@@ -118,7 +118,7 @@ export default defineAppConfig({
|
|
|
118
118
|
title: 'text-xl font-bold',
|
|
119
119
|
content: [
|
|
120
120
|
'divide-none overflow-visible flex flex-col',
|
|
121
|
-
'
|
|
121
|
+
'max-sm:top-auto max-sm:bottom-0 max-sm:left-0 max-sm:right-0 max-sm:translate-x-0 max-sm:translate-y-0 max-sm:w-full max-sm:max-w-full max-sm:h-auto max-sm:max-h-[90dvh] max-sm:rounded-b-none max-sm:rounded-t-lg',
|
|
122
122
|
],
|
|
123
123
|
body: '!pt-0 overflow-y-auto flex-1 overflow-x-visible',
|
|
124
124
|
footer: 'w-full',
|
package/app/assets/css/main.css
CHANGED