@polymarbot/nuxt-layer-shadcn-ui 0.9.2 → 0.9.4
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.
|
@@ -57,7 +57,7 @@ const rootProps = computed<AccordionRootProps>(() => {
|
|
|
57
57
|
:value="item.value"
|
|
58
58
|
:disabled="item.disabled"
|
|
59
59
|
>
|
|
60
|
-
<AccordionTrigger>
|
|
60
|
+
<AccordionTrigger :class="triggerClass">
|
|
61
61
|
<slot
|
|
62
62
|
name="title"
|
|
63
63
|
:item="item"
|
|
@@ -66,7 +66,7 @@ const rootProps = computed<AccordionRootProps>(() => {
|
|
|
66
66
|
{{ item.title }}
|
|
67
67
|
</slot>
|
|
68
68
|
</AccordionTrigger>
|
|
69
|
-
<AccordionContent>
|
|
69
|
+
<AccordionContent :class="contentClass">
|
|
70
70
|
<slot
|
|
71
71
|
name="content"
|
|
72
72
|
:item="item"
|
|
@@ -142,7 +142,7 @@ function formatCellValue (value: unknown, column: DataTableColumn): string {
|
|
|
142
142
|
return formatDateTime((value as number) * 1000).split(' ').join('\n')
|
|
143
143
|
|
|
144
144
|
case 'currency':
|
|
145
|
-
return formatCurrency(value as number | string, column.currency
|
|
145
|
+
return formatCurrency(value as number | string, column.currency, {
|
|
146
146
|
currencyDisplay: column.currencyDisplay,
|
|
147
147
|
})
|
|
148
148
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@polymarbot/nuxt-layer-shadcn-ui",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.4",
|
|
4
4
|
"description": "Nuxt layer providing shadcn-vue based UI components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./nuxt.config.ts",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@polymarbot/nuxt-layer-basic": "^0.1",
|
|
21
|
-
"@polymarbot/uitls-shared": "^0.
|
|
21
|
+
"@polymarbot/uitls-shared": "^0.6.1",
|
|
22
22
|
"@tanstack/vue-table": "^8.21.3",
|
|
23
23
|
"@types/lodash-es": "^4.17.12",
|
|
24
24
|
"@types/qrcode": "^1.5.6",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"vue-i18n": "^11",
|
|
43
43
|
"vue-router": "^4 || ^5"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "9d816af97015b542dcfd6aae1ea8056f286a9891"
|
|
46
46
|
}
|