@shwfed/nuxt 0.11.20 → 0.11.21
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/dist/module.json
CHANGED
|
@@ -425,7 +425,7 @@ defineTableRenderer(
|
|
|
425
425
|
class: "p-1 w-6 h-6 flex items-center justify-center right-1 top-1/2 -translate-y-1/2 transform-3d group-hover:opacity-100 opacity-0 absolute transition-opacity duration-180",
|
|
426
426
|
size: "xs",
|
|
427
427
|
onClick: onCopy,
|
|
428
|
-
children: /* @__PURE__ */ jsx(Icon, { icon: "fluent:copy-20-regular" })
|
|
428
|
+
children: () => /* @__PURE__ */ jsx(Icon, { icon: "fluent:copy-20-regular" })
|
|
429
429
|
}
|
|
430
430
|
) : null
|
|
431
431
|
]
|
|
@@ -500,7 +500,7 @@ defineTableRenderer(
|
|
|
500
500
|
class: "cursor-pointer hover:bg-transparent text-lg",
|
|
501
501
|
"aria-label": ctx.row.getIsExpanded() ? getTableRendererConfigText("collapse-row") : getTableRendererConfigText("expand-row"),
|
|
502
502
|
onClick: ctx.row.getToggleExpandedHandler(),
|
|
503
|
-
children: /* @__PURE__ */ jsx(Icon, { icon: ctx.row.getIsExpanded() ? "fluent:subtract-square-20-regular" : "fluent:add-square-20-regular" })
|
|
503
|
+
children: () => /* @__PURE__ */ jsx(Icon, { icon: ctx.row.getIsExpanded() ? "fluent:subtract-square-20-regular" : "fluent:add-square-20-regular" })
|
|
504
504
|
}
|
|
505
505
|
) });
|
|
506
506
|
},
|
|
@@ -512,7 +512,7 @@ defineTableRenderer(
|
|
|
512
512
|
class: "cursor-pointer hover:bg-transparent text-lg",
|
|
513
513
|
"aria-label": ctx.table.getIsAllRowsExpanded() ? getTableRendererConfigText("collapse-all-rows") : getTableRendererConfigText("expand-all-rows"),
|
|
514
514
|
onClick: ctx.table.getToggleAllRowsExpandedHandler(),
|
|
515
|
-
children: /* @__PURE__ */ jsx(Icon, { icon: ctx.table.getIsAllRowsExpanded() ? "fluent:subtract-square-20-regular" : "fluent:add-square-20-regular" })
|
|
515
|
+
children: () => /* @__PURE__ */ jsx(Icon, { icon: ctx.table.getIsAllRowsExpanded() ? "fluent:subtract-square-20-regular" : "fluent:add-square-20-regular" })
|
|
516
516
|
}
|
|
517
517
|
) }),
|
|
518
518
|
config: NoOptionsConfig,
|