tsv2-library 1.0.61-alpha.141 → 1.0.61-alpha.143
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/src/components/v2/Icon/Icon.vue.d.ts +1 -0
- package/dist/src/presets/datatable/index.js +1 -1
- package/dist/style.css +1 -1
- package/dist/tsv2-library.es.js +7 -2
- package/dist/tsv2-library.umd.js +2 -2
- package/package.json +1 -1
- package/src/components/v2/Icon/Icon.vue.d.ts +1 -0
- package/src/presets/datatable/index.js +1 -1
package/dist/tsv2-library.es.js
CHANGED
|
@@ -17919,7 +17919,7 @@ const datatable = {
|
|
|
17919
17919
|
tbody: ({ instance, context }) => ({
|
|
17920
17920
|
class: [
|
|
17921
17921
|
// 'border-t border-surface-300 dark:border-surface-600',
|
|
17922
|
-
|
|
17922
|
+
// '[&_tr:last-of-type>td]:!border-b-0',
|
|
17923
17923
|
"[&_tr:last-of-type>td:last-child]:!rounded-br-lg",
|
|
17924
17924
|
"[&_tr:last-of-type>td:first-child]:!rounded-bl-lg",
|
|
17925
17925
|
{
|
|
@@ -52329,7 +52329,12 @@ const _sfc_main$15 = /* @__PURE__ */ defineComponent({
|
|
|
52329
52329
|
withDirectives(createElementVNode("ul", {
|
|
52330
52330
|
ref: "columnList",
|
|
52331
52331
|
class: normalizeClass([
|
|
52332
|
-
{
|
|
52332
|
+
{
|
|
52333
|
+
"grid grid-flow-col-dense w-max gap-x-4": _ctx.type === "flat",
|
|
52334
|
+
// TableKey is only used by column setup, not by custom report table
|
|
52335
|
+
"grid-rows-4": _ctx.type === "flat" && !_ctx.tableKey,
|
|
52336
|
+
"grid-rows-10": _ctx.type === "flat" && _ctx.tableKey
|
|
52337
|
+
}
|
|
52333
52338
|
// { 'flex flex-col': type === 'menu' },
|
|
52334
52339
|
]),
|
|
52335
52340
|
"data-ts-section": "custom-column-flat-list"
|