@finema/finework-layer 0.1.6 → 0.1.8
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 +8 -2
- package/app/assets/css/main.css +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.8](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.1.7...0.1.8) (2025-10-15)
|
|
4
|
+
|
|
5
|
+
## [0.1.7](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.1.6...0.1.7) (2025-10-15)
|
|
6
|
+
|
|
3
7
|
## [0.1.6](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.1.5...0.1.6) (2025-10-15)
|
|
4
8
|
|
|
5
9
|
## [0.1.5](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.1.4...0.1.5) (2025-10-15)
|
package/app/app.config.ts
CHANGED
|
@@ -21,7 +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:
|
|
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
|
+
],
|
|
25
28
|
overlay: 'bg-black/50 backdrop-blur',
|
|
26
29
|
description: 'whitespace-pre-line',
|
|
27
30
|
wrapper: 'justify-start items-start',
|
|
@@ -113,7 +116,10 @@ export default defineAppConfig({
|
|
|
113
116
|
slots: {
|
|
114
117
|
overlay: 'bg-black/50 backdrop-blur',
|
|
115
118
|
title: 'text-xl font-bold',
|
|
116
|
-
content:
|
|
119
|
+
content: [
|
|
120
|
+
'divide-none overflow-visible flex flex-col',
|
|
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
|
+
],
|
|
117
123
|
body: '!pt-0 overflow-y-auto flex-1 overflow-x-visible',
|
|
118
124
|
footer: 'w-full',
|
|
119
125
|
},
|
package/app/assets/css/main.css
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
@import "tailwindcss";
|
|
2
2
|
|
|
3
|
+
@source "../../../node_modules/@finema/core";
|
|
4
|
+
|
|
3
5
|
:root {
|
|
4
6
|
--ui-text: var(--ui-color-neutral-800);
|
|
5
7
|
--color-main: #1570EF;
|
|
@@ -112,4 +114,4 @@ body {
|
|
|
112
114
|
|
|
113
115
|
.dp--menu-wrapper {
|
|
114
116
|
@apply ring-1 ring-slate-300;
|
|
115
|
-
}
|
|
117
|
+
}
|