@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 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
@@ -6,6 +6,12 @@
6
6
  }"
7
7
  >
8
8
  <NuxtPage />
9
- <HelpHub />
9
+ <HelpHub v-if="isAuthenticated" />
10
10
  </App>
11
11
  </template>
12
+
13
+ <script lang="ts" setup>
14
+ const {
15
+ isAuthenticated,
16
+ } = useAuth()
17
+ </script>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@finema/finework-layer",
3
3
  "type": "module",
4
- "version": "2.0.65",
4
+ "version": "2.0.67",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground -o",