@finema/finework-layer 0.1.5 → 0.1.6
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 +2 -0
- package/app/app.config.ts +2 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.6](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.1.5...0.1.6) (2025-10-15)
|
|
4
|
+
|
|
3
5
|
## [0.1.5](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.1.4...0.1.5) (2025-10-15)
|
|
4
6
|
|
|
5
7
|
## [0.1.4](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.1.3...0.1.4) (2025-10-15)
|
package/app/app.config.ts
CHANGED
|
@@ -21,8 +21,7 @@ export default defineAppConfig({
|
|
|
21
21
|
slots: {
|
|
22
22
|
iconWrapper: 'rounded-full size-[48px] flex justify-center items-center',
|
|
23
23
|
icon: 'size-6',
|
|
24
|
-
base: '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] '
|
|
25
|
-
+ ' 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',
|
|
24
|
+
base: '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] 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',
|
|
26
25
|
overlay: 'bg-black/50 backdrop-blur',
|
|
27
26
|
description: 'whitespace-pre-line',
|
|
28
27
|
wrapper: 'justify-start items-start',
|
|
@@ -114,10 +113,7 @@ export default defineAppConfig({
|
|
|
114
113
|
slots: {
|
|
115
114
|
overlay: 'bg-black/50 backdrop-blur',
|
|
116
115
|
title: 'text-xl font-bold',
|
|
117
|
-
content: [
|
|
118
|
-
'divide-none overflow-visible flex flex-col',
|
|
119
|
-
'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',
|
|
120
|
-
],
|
|
116
|
+
content: 'divide-none overflow-visible flex flex-col 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',
|
|
121
117
|
body: '!pt-0 overflow-y-auto flex-1 overflow-x-visible',
|
|
122
118
|
footer: 'w-full',
|
|
123
119
|
},
|