@finema/finework-layer 2.0.65 → 2.0.67
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 +2 -2
- package/app/app.vue +7 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.0.67](https://gitlab.finema.co/finema/internal/finework/compare/2.0.66...2.0.67) (2026-09-20)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* conditionally render HelpHub only for authenticated users ([67c7cf8](https://gitlab.finema.co/finema/internal/finework/commit/67c7cf8b91c47813780198698c88c07413c013cf))
|
|
8
|
+
|
|
9
|
+
## [2.0.66](https://gitlab.finema.co/finema/internal/finework/compare/2.0.65...2.0.66) (2026-09-15)
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* add padding to table header and data cells ([d452b47](https://gitlab.finema.co/finema/internal/finework/commit/d452b4750b49e637f1532fb724a5895de9b6c8dc))
|
|
14
|
+
|
|
3
15
|
## [2.0.65](https://gitlab.finema.co/finema/internal/finework/compare/2.0.64...2.0.65) (2026-09-15)
|
|
4
16
|
|
|
5
17
|
### Features
|
package/app/app.config.ts
CHANGED
|
@@ -129,8 +129,8 @@ export default defineAppConfig({
|
|
|
129
129
|
},
|
|
130
130
|
table: {
|
|
131
131
|
slots: {
|
|
132
|
-
th: 'text-[#222222] whitespace-nowrap border-r border-[#EAECF0] last:border-0 bg-[#F9FAFB]',
|
|
133
|
-
td: 'text-[#222222] border-r border-[#EAECF0] last:border-0',
|
|
132
|
+
th: 'px-2.5 py-2 text-[#222222] whitespace-nowrap border-r border-[#EAECF0] last:border-0 bg-[#F9FAFB]',
|
|
133
|
+
td: 'px-2.5 py-2 text-[#222222] border-r border-[#EAECF0] last:border-0',
|
|
134
134
|
},
|
|
135
135
|
variants: {
|
|
136
136
|
pinned: {
|
package/app/app.vue
CHANGED