@finema/finework-layer 0.1.6 → 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 CHANGED
@@ -1,5 +1,7 @@
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
+
3
5
  ## [0.1.6](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.1.5...0.1.6) (2025-10-15)
4
6
 
5
7
  ## [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: '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',
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: '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',
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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@finema/finework-layer",
3
3
  "type": "module",
4
- "version": "0.1.6",
4
+ "version": "0.1.7",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground -o",