@finema/finework-layer 1.0.57 → 1.0.59

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,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.59](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.58...1.0.59) (2026-05-18)
4
+
5
+ ### Bug Fixes
6
+
7
+ * adjust z-index for pinned table data cells in app configuration ([a765157](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/a765157eea27a9cb0a12ca68e9a9d89c20c6e118))
8
+
9
+ ## [1.0.58](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.57...1.0.58) (2026-05-14)
10
+
11
+ ### Bug Fixes
12
+
13
+ * update apps menu icon and improve mobile scrolling behavior ([9f26b7e](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/9f26b7ea6aa2a01bcf309158243d3504bcba7efb))
14
+
3
15
  ## [1.0.57](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.56...1.0.57) (2026-05-12)
4
16
 
5
17
  ### Bug Fixes
package/app/app.config.ts CHANGED
@@ -134,7 +134,7 @@ export default defineAppConfig({
134
134
  pinned: {
135
135
  true: {
136
136
  th: 'sticky translate-x-px bg-[#F9FAFB] data-[pinned=left]:left-0 data-[pinned=right]:right-0 z-[100] data-[pinned=right]:shadow-[inset_2px_0px_4px_0px_#00000012]',
137
- td: 'sticky translate-x-px bg-white data-[pinned=left]:left-0 data-[pinned=right]:right-0 data-[pinned=right]:shadow-[inset_2px_0px_4px_0px_#00000012]',
137
+ td: 'sticky translate-x-px bg-white data-[pinned=left]:left-0 data-[pinned=right]:right-0 z-[100] data-[pinned=right]:shadow-[inset_2px_0px_4px_0px_#00000012]',
138
138
  },
139
139
  },
140
140
  },
@@ -12,15 +12,17 @@
12
12
  }"
13
13
  >
14
14
  <Button
15
- icon="mingcute:dot-grid-line"
15
+ icon="ph:dots-nine-bold"
16
16
  variant="ghost"
17
17
  class="text-gray-500"
18
18
  />
19
19
  <template #content>
20
- <PortalApp
21
- is-navbar
22
- @close="isOpen = false"
23
- />
20
+ <div :class="isMobile ? 'max-h-dvh overflow-y-auto' : ''">
21
+ <PortalApp
22
+ is-navbar
23
+ @close="isOpen = false"
24
+ />
25
+ </div>
24
26
  </template>
25
27
  </Slideover>
26
28
  </div>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@finema/finework-layer",
3
3
  "type": "module",
4
- "version": "1.0.57",
4
+ "version": "1.0.59",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground -o",