@finema/finework-layer 0.1.5 → 0.1.7
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 +5 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.7](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.1.6...0.1.7) (2025-10-15)
|
|
4
|
+
|
|
5
|
+
## [0.1.6](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.1.5...0.1.6) (2025-10-15)
|
|
6
|
+
|
|
3
7
|
## [0.1.5](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.1.4...0.1.5) (2025-10-15)
|
|
4
8
|
|
|
5
9
|
## [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,10 @@ 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:
|
|
25
|
-
|
|
24
|
+
base: [
|
|
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
|
+
'!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
|
+
],
|
|
26
28
|
overlay: 'bg-black/50 backdrop-blur',
|
|
27
29
|
description: 'whitespace-pre-line',
|
|
28
30
|
wrapper: 'justify-start items-start',
|
|
@@ -116,7 +118,7 @@ export default defineAppConfig({
|
|
|
116
118
|
title: 'text-xl font-bold',
|
|
117
119
|
content: [
|
|
118
120
|
'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',
|
|
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',
|
|
120
122
|
],
|
|
121
123
|
body: '!pt-0 overflow-y-auto flex-1 overflow-x-visible',
|
|
122
124
|
footer: 'w-full',
|