@finema/finework-layer 1.0.58 → 1.0.60
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 +12 -0
- package/app/app.config.ts +1 -1
- package/app/constants/fileAppType.ts +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.60](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.59...1.0.60) (2026-05-19)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add new file application types (RESOURCE, LOAN, LG) to enum ([a6f7e37](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/a6f7e376fda7ddc3fab2e27e7f4f74f6d870b92f))
|
|
8
|
+
|
|
9
|
+
## [1.0.59](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.58...1.0.59) (2026-05-18)
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* adjust z-index for pinned table data cells in app configuration ([a765157](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/a765157eea27a9cb0a12ca68e9a9d89c20c6e118))
|
|
14
|
+
|
|
3
15
|
## [1.0.58](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.57...1.0.58) (2026-05-14)
|
|
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
|
},
|