@finema/finework-layer 1.0.20 → 1.0.22

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.22](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.21...1.0.22) (2026-03-26)
4
+
5
+ ### Bug Fixes
6
+
7
+ * adjust ReuseTemplate placement in PortalApp for proper rendering ([3d77be4](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/3d77be4b2caa0ed26edbe398f158c56b7f2eefd6))
8
+
9
+ ## [1.0.21](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.20...1.0.21) (2026-03-25)
10
+
11
+ ### Bug Fixes
12
+
13
+ * update class bindings in InfoItemList and PortalApp for consistency ([06de88c](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/06de88c726bebb4160fb501be59b5489d1b273df))
14
+
3
15
  ## [1.0.20](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.19...1.0.20) (2026-03-23)
4
16
 
5
17
  ### Bug Fixes
@@ -5,7 +5,7 @@
5
5
  {
6
6
  'lg:grid-cols-2': !vertical,
7
7
  },
8
- customClass,
8
+ props.class,
9
9
  ]"
10
10
  >
11
11
  <div
@@ -17,7 +17,7 @@
17
17
  'flex-col': !inline,
18
18
  'flex-row': inline,
19
19
  },
20
- item.customClass,
20
+ item.class,
21
21
 
22
22
  ]"
23
23
  >
@@ -155,7 +155,7 @@ enum TYPE_INFO_ITEM {
155
155
  IMAGE = 'image',
156
156
  }
157
157
 
158
- defineProps<{
158
+ const props = defineProps<{
159
159
  items: Array<{
160
160
  label: string
161
161
  value?: any
@@ -164,13 +164,13 @@ defineProps<{
164
164
  max?: number
165
165
  key?: string
166
166
  type?: TYPE_INFO_ITEM
167
- customClass?: string
167
+ class?: string
168
168
  hide?: boolean
169
169
  linkProps?: ComponentProps<typeof NuxtLink>
170
170
  }>
171
171
  vertical?: boolean
172
172
  inline?: boolean
173
- customClass?: string
173
+ class?: string
174
174
  titleBold?: boolean
175
175
  labelWidth?: string | number
176
176
  }>()
@@ -54,7 +54,7 @@
54
54
  </div>
55
55
  </div>
56
56
  </nav>
57
- <main class="mx-auto w-full max-w-[1480px] flex-1 px-4 pb-20 md:px-10">
57
+ <main class="mx-auto w-full max-w-[1480px] flex-1 px-4 pb-20 xl:px-10">
58
58
  <div
59
59
  v-if="app.pageMeta.title"
60
60
  class="mb-4 flex flex-col justify-between gap-1 md:mb-6 md:gap-4 lg:flex-row lg:items-center"
@@ -237,7 +237,10 @@
237
237
  }"
238
238
  >
239
239
  <div class="bg-white">
240
+ <ReuseTemplate v-if="isNavbar" />
240
241
  <Collapsible
242
+ v-else
243
+ v-model:open="open"
241
244
  default-open
242
245
  >
243
246
  <div class="flex items-center justify-between gap-4">
@@ -263,7 +266,6 @@
263
266
  <ReuseTemplate />
264
267
  </template>
265
268
  </Collapsible>
266
- <ReuseTemplate v-if="isNavbar" />
267
269
  </div>
268
270
  </Card>
269
271
  </template>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@finema/finework-layer",
3
3
  "type": "module",
4
- "version": "1.0.20",
4
+ "version": "1.0.22",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground -o",