@expcat/tigercat-vue 1.2.43 → 1.2.44
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/{chunk-CHDKJDZQ.mjs → chunk-BIDBJNTL.mjs} +93 -8
- package/dist/{chunk-OFTAQ2A4.js → chunk-PXSV3J2H.js} +93 -8
- package/dist/{chunk-EWQJGR7E.js → chunk-UMBV5VOU.js} +7 -2
- package/dist/{chunk-GFQDHFAX.mjs → chunk-VDTZN4OS.mjs} +6 -1
- package/dist/components/DataTableWithToolbar.d.mts +11 -1
- package/dist/components/DataTableWithToolbar.d.ts +11 -1
- package/dist/components/DataTableWithToolbar.js +3 -3
- package/dist/components/DataTableWithToolbar.mjs +2 -2
- package/dist/components/Table.d.mts +11 -1
- package/dist/components/Table.d.ts +11 -1
- package/dist/components/Table.js +2 -2
- package/dist/components/Table.mjs +1 -1
- package/dist/index.js +3 -3
- package/dist/index.mjs +2 -2
- package/package.json +2 -2
|
@@ -30,6 +30,7 @@ import {
|
|
|
30
30
|
formatTableSelectRowAriaLabel,
|
|
31
31
|
formatTableSortByText,
|
|
32
32
|
getCardColumns,
|
|
33
|
+
getCardGridInfo,
|
|
33
34
|
getImmediateTigerLocale,
|
|
34
35
|
getTableLabels,
|
|
35
36
|
getTableWrapperClasses,
|
|
@@ -184,7 +185,11 @@ var tableProps = {
|
|
|
184
185
|
groupBy: { type: String },
|
|
185
186
|
exportable: { type: Boolean, default: false },
|
|
186
187
|
exportFormat: { type: String, default: "csv" },
|
|
187
|
-
exportFilename: { type: String, default: "export" }
|
|
188
|
+
exportFilename: { type: String, default: "export" },
|
|
189
|
+
cardLayout: {
|
|
190
|
+
type: Array,
|
|
191
|
+
default: void 0
|
|
192
|
+
}
|
|
188
193
|
};
|
|
189
194
|
var tableEmits = [
|
|
190
195
|
"change",
|
|
@@ -1321,6 +1326,18 @@ var Table = defineComponent({
|
|
|
1321
1326
|
const overrides = props.emptyText === void 0 ? props.labels : { ...props.labels, emptyText: props.emptyText };
|
|
1322
1327
|
return getTableLabels(tableLocale.value, overrides);
|
|
1323
1328
|
});
|
|
1329
|
+
const cardLayoutMap = computed2(() => {
|
|
1330
|
+
const map = /* @__PURE__ */ new Map();
|
|
1331
|
+
if (props.cardLayout) {
|
|
1332
|
+
for (const item of props.cardLayout) {
|
|
1333
|
+
map.set(item.key, item);
|
|
1334
|
+
}
|
|
1335
|
+
}
|
|
1336
|
+
return map;
|
|
1337
|
+
});
|
|
1338
|
+
const hasCustomCardLayout = computed2(() => {
|
|
1339
|
+
return ctx.displayColumns.value.some((col) => col.cardGrid) || props.cardLayout && props.cardLayout.length > 0;
|
|
1340
|
+
});
|
|
1324
1341
|
const resizeController = createTableResizeObserverController({
|
|
1325
1342
|
onResize: (snapshot) => {
|
|
1326
1343
|
if (!areNumberRecordsEqual(measuredColumnWidths.value, snapshot.columnWidths)) {
|
|
@@ -1469,13 +1486,81 @@ var Table = defineComponent({
|
|
|
1469
1486
|
const titleNode = titleColumn ? h6("div", { class: tableResponsiveCardTitleClasses }, [
|
|
1470
1487
|
renderCardCellContent(titleColumn)
|
|
1471
1488
|
]) : null;
|
|
1472
|
-
const rows =
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1489
|
+
const rows = hasCustomCardLayout.value ? [
|
|
1490
|
+
h6(
|
|
1491
|
+
"div",
|
|
1492
|
+
{ class: "grid grid-cols-12 gap-3 mt-2" },
|
|
1493
|
+
bodyColumns.map((column) => {
|
|
1494
|
+
const layoutItem = cardLayoutMap.value.get(column.key);
|
|
1495
|
+
const gridInfo = getCardGridInfo(column, layoutItem);
|
|
1496
|
+
if (gridInfo.hideLabel) {
|
|
1497
|
+
return h6(
|
|
1498
|
+
"div",
|
|
1499
|
+
{ key: column.key, class: gridInfo.className },
|
|
1500
|
+
[renderCardCellContent(column)]
|
|
1501
|
+
);
|
|
1502
|
+
}
|
|
1503
|
+
if (gridInfo.labelPosition === "top") {
|
|
1504
|
+
return h6(
|
|
1505
|
+
"div",
|
|
1506
|
+
{ key: column.key, class: gridInfo.className },
|
|
1507
|
+
[
|
|
1508
|
+
h6(
|
|
1509
|
+
"div",
|
|
1510
|
+
{
|
|
1511
|
+
class: "text-xs font-medium uppercase tracking-wider text-[var(--tiger-text-muted,#6b7280)] mb-1"
|
|
1512
|
+
},
|
|
1513
|
+
column.title
|
|
1514
|
+
),
|
|
1515
|
+
h6(
|
|
1516
|
+
"div",
|
|
1517
|
+
{
|
|
1518
|
+
class: "min-w-0 text-sm text-[var(--tiger-text,#111827)] break-words"
|
|
1519
|
+
},
|
|
1520
|
+
[renderCardCellContent(column)]
|
|
1521
|
+
)
|
|
1522
|
+
]
|
|
1523
|
+
);
|
|
1524
|
+
}
|
|
1525
|
+
return h6(
|
|
1526
|
+
"div",
|
|
1527
|
+
{
|
|
1528
|
+
key: column.key,
|
|
1529
|
+
class: classNames3(
|
|
1530
|
+
gridInfo.className,
|
|
1531
|
+
"grid grid-cols-[auto_1fr] gap-2 items-baseline"
|
|
1532
|
+
)
|
|
1533
|
+
},
|
|
1534
|
+
[
|
|
1535
|
+
h6(
|
|
1536
|
+
"div",
|
|
1537
|
+
{
|
|
1538
|
+
class: "text-xs font-medium uppercase tracking-wider text-[var(--tiger-text-muted,#6b7280)] shrink-0"
|
|
1539
|
+
},
|
|
1540
|
+
column.title
|
|
1541
|
+
),
|
|
1542
|
+
h6(
|
|
1543
|
+
"div",
|
|
1544
|
+
{
|
|
1545
|
+
class: "min-w-0 text-sm text-[var(--tiger-text,#111827)] break-words"
|
|
1546
|
+
},
|
|
1547
|
+
[renderCardCellContent(column)]
|
|
1548
|
+
)
|
|
1549
|
+
]
|
|
1550
|
+
);
|
|
1551
|
+
})
|
|
1552
|
+
)
|
|
1553
|
+
] : bodyColumns.map(
|
|
1554
|
+
(column) => h6(
|
|
1555
|
+
"div",
|
|
1556
|
+
{ key: column.key, class: tableResponsiveCardRowClasses },
|
|
1557
|
+
[
|
|
1558
|
+
h6("div", { class: tableResponsiveCardLabelClasses }, column.title),
|
|
1559
|
+
h6("div", { class: tableResponsiveCardValueClasses }, [
|
|
1560
|
+
renderCardCellContent(column)
|
|
1561
|
+
])
|
|
1562
|
+
]
|
|
1563
|
+
)
|
|
1479
1564
|
);
|
|
1480
1565
|
const controls = [];
|
|
1481
1566
|
if (resolvedProps.rowSelection && resolvedProps.rowSelection.showCheckbox !== false) {
|
|
@@ -44,6 +44,7 @@ var _vue = require('vue');
|
|
|
44
44
|
|
|
45
45
|
|
|
46
46
|
|
|
47
|
+
|
|
47
48
|
|
|
48
49
|
|
|
49
50
|
var _tigercatcore = require('@expcat/tigercat-core');
|
|
@@ -184,7 +185,11 @@ var tableProps = {
|
|
|
184
185
|
groupBy: { type: String },
|
|
185
186
|
exportable: { type: Boolean, default: false },
|
|
186
187
|
exportFormat: { type: String, default: "csv" },
|
|
187
|
-
exportFilename: { type: String, default: "export" }
|
|
188
|
+
exportFilename: { type: String, default: "export" },
|
|
189
|
+
cardLayout: {
|
|
190
|
+
type: Array,
|
|
191
|
+
default: void 0
|
|
192
|
+
}
|
|
188
193
|
};
|
|
189
194
|
var tableEmits = [
|
|
190
195
|
"change",
|
|
@@ -1321,6 +1326,18 @@ var Table = _vue.defineComponent.call(void 0, {
|
|
|
1321
1326
|
const overrides = props.emptyText === void 0 ? props.labels : { ...props.labels, emptyText: props.emptyText };
|
|
1322
1327
|
return _tigercatcore.getTableLabels.call(void 0, tableLocale.value, overrides);
|
|
1323
1328
|
});
|
|
1329
|
+
const cardLayoutMap = _vue.computed.call(void 0, () => {
|
|
1330
|
+
const map = /* @__PURE__ */ new Map();
|
|
1331
|
+
if (props.cardLayout) {
|
|
1332
|
+
for (const item of props.cardLayout) {
|
|
1333
|
+
map.set(item.key, item);
|
|
1334
|
+
}
|
|
1335
|
+
}
|
|
1336
|
+
return map;
|
|
1337
|
+
});
|
|
1338
|
+
const hasCustomCardLayout = _vue.computed.call(void 0, () => {
|
|
1339
|
+
return ctx.displayColumns.value.some((col) => col.cardGrid) || props.cardLayout && props.cardLayout.length > 0;
|
|
1340
|
+
});
|
|
1324
1341
|
const resizeController = _tigercatcore.createTableResizeObserverController.call(void 0, {
|
|
1325
1342
|
onResize: (snapshot) => {
|
|
1326
1343
|
if (!areNumberRecordsEqual(measuredColumnWidths.value, snapshot.columnWidths)) {
|
|
@@ -1469,13 +1486,81 @@ var Table = _vue.defineComponent.call(void 0, {
|
|
|
1469
1486
|
const titleNode = titleColumn ? _vue.h.call(void 0, "div", { class: _tigercatcore.tableResponsiveCardTitleClasses }, [
|
|
1470
1487
|
renderCardCellContent(titleColumn)
|
|
1471
1488
|
]) : null;
|
|
1472
|
-
const rows =
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1489
|
+
const rows = hasCustomCardLayout.value ? [
|
|
1490
|
+
_vue.h.call(void 0,
|
|
1491
|
+
"div",
|
|
1492
|
+
{ class: "grid grid-cols-12 gap-3 mt-2" },
|
|
1493
|
+
bodyColumns.map((column) => {
|
|
1494
|
+
const layoutItem = cardLayoutMap.value.get(column.key);
|
|
1495
|
+
const gridInfo = _tigercatcore.getCardGridInfo.call(void 0, column, layoutItem);
|
|
1496
|
+
if (gridInfo.hideLabel) {
|
|
1497
|
+
return _vue.h.call(void 0,
|
|
1498
|
+
"div",
|
|
1499
|
+
{ key: column.key, class: gridInfo.className },
|
|
1500
|
+
[renderCardCellContent(column)]
|
|
1501
|
+
);
|
|
1502
|
+
}
|
|
1503
|
+
if (gridInfo.labelPosition === "top") {
|
|
1504
|
+
return _vue.h.call(void 0,
|
|
1505
|
+
"div",
|
|
1506
|
+
{ key: column.key, class: gridInfo.className },
|
|
1507
|
+
[
|
|
1508
|
+
_vue.h.call(void 0,
|
|
1509
|
+
"div",
|
|
1510
|
+
{
|
|
1511
|
+
class: "text-xs font-medium uppercase tracking-wider text-[var(--tiger-text-muted,#6b7280)] mb-1"
|
|
1512
|
+
},
|
|
1513
|
+
column.title
|
|
1514
|
+
),
|
|
1515
|
+
_vue.h.call(void 0,
|
|
1516
|
+
"div",
|
|
1517
|
+
{
|
|
1518
|
+
class: "min-w-0 text-sm text-[var(--tiger-text,#111827)] break-words"
|
|
1519
|
+
},
|
|
1520
|
+
[renderCardCellContent(column)]
|
|
1521
|
+
)
|
|
1522
|
+
]
|
|
1523
|
+
);
|
|
1524
|
+
}
|
|
1525
|
+
return _vue.h.call(void 0,
|
|
1526
|
+
"div",
|
|
1527
|
+
{
|
|
1528
|
+
key: column.key,
|
|
1529
|
+
class: _tigercatcore.classNames.call(void 0,
|
|
1530
|
+
gridInfo.className,
|
|
1531
|
+
"grid grid-cols-[auto_1fr] gap-2 items-baseline"
|
|
1532
|
+
)
|
|
1533
|
+
},
|
|
1534
|
+
[
|
|
1535
|
+
_vue.h.call(void 0,
|
|
1536
|
+
"div",
|
|
1537
|
+
{
|
|
1538
|
+
class: "text-xs font-medium uppercase tracking-wider text-[var(--tiger-text-muted,#6b7280)] shrink-0"
|
|
1539
|
+
},
|
|
1540
|
+
column.title
|
|
1541
|
+
),
|
|
1542
|
+
_vue.h.call(void 0,
|
|
1543
|
+
"div",
|
|
1544
|
+
{
|
|
1545
|
+
class: "min-w-0 text-sm text-[var(--tiger-text,#111827)] break-words"
|
|
1546
|
+
},
|
|
1547
|
+
[renderCardCellContent(column)]
|
|
1548
|
+
)
|
|
1549
|
+
]
|
|
1550
|
+
);
|
|
1551
|
+
})
|
|
1552
|
+
)
|
|
1553
|
+
] : bodyColumns.map(
|
|
1554
|
+
(column) => _vue.h.call(void 0,
|
|
1555
|
+
"div",
|
|
1556
|
+
{ key: column.key, class: _tigercatcore.tableResponsiveCardRowClasses },
|
|
1557
|
+
[
|
|
1558
|
+
_vue.h.call(void 0, "div", { class: _tigercatcore.tableResponsiveCardLabelClasses }, column.title),
|
|
1559
|
+
_vue.h.call(void 0, "div", { class: _tigercatcore.tableResponsiveCardValueClasses }, [
|
|
1560
|
+
renderCardCellContent(column)
|
|
1561
|
+
])
|
|
1562
|
+
]
|
|
1563
|
+
)
|
|
1479
1564
|
);
|
|
1480
1565
|
const controls = [];
|
|
1481
1566
|
if (resolvedProps.rowSelection && resolvedProps.rowSelection.showCheckbox !== false) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkPXSV3J2Hjs = require('./chunk-PXSV3J2H.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
var _chunkBGMAWKWVjs = require('./chunk-BGMAWKWV.js');
|
|
@@ -139,6 +139,10 @@ var DataTableWithToolbar = _vue.defineComponent.call(void 0, {
|
|
|
139
139
|
type: String,
|
|
140
140
|
default: "sm"
|
|
141
141
|
},
|
|
142
|
+
cardLayout: {
|
|
143
|
+
type: Array,
|
|
144
|
+
default: void 0
|
|
145
|
+
},
|
|
142
146
|
toolbar: {
|
|
143
147
|
type: Object,
|
|
144
148
|
default: void 0
|
|
@@ -580,6 +584,7 @@ var DataTableWithToolbar = _vue.defineComponent.call(void 0, {
|
|
|
580
584
|
tableLayout: props.tableLayout,
|
|
581
585
|
responsiveMode: props.responsiveMode,
|
|
582
586
|
cardBreakpoint: props.cardBreakpoint,
|
|
587
|
+
cardLayout: props.cardLayout,
|
|
583
588
|
class: props.bordered ? "border-none rounded-none shadow-none" : void 0,
|
|
584
589
|
onSelectionChange: (keys) => emit("selection-change", keys),
|
|
585
590
|
onPageChange: handleTablePageChange
|
|
@@ -591,7 +596,7 @@ var DataTableWithToolbar = _vue.defineComponent.call(void 0, {
|
|
|
591
596
|
style: wrapperStyle.value,
|
|
592
597
|
"data-tiger-data-table-with-toolbar": ""
|
|
593
598
|
},
|
|
594
|
-
[renderToolbar(), _vue.h.call(void 0,
|
|
599
|
+
[renderToolbar(), _vue.h.call(void 0, _chunkPXSV3J2Hjs.Table, tableProps)]
|
|
595
600
|
);
|
|
596
601
|
};
|
|
597
602
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
Table
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-BIDBJNTL.mjs";
|
|
4
4
|
import {
|
|
5
5
|
Select
|
|
6
6
|
} from "./chunk-PYT5DTQQ.mjs";
|
|
@@ -139,6 +139,10 @@ var DataTableWithToolbar = defineComponent({
|
|
|
139
139
|
type: String,
|
|
140
140
|
default: "sm"
|
|
141
141
|
},
|
|
142
|
+
cardLayout: {
|
|
143
|
+
type: Array,
|
|
144
|
+
default: void 0
|
|
145
|
+
},
|
|
142
146
|
toolbar: {
|
|
143
147
|
type: Object,
|
|
144
148
|
default: void 0
|
|
@@ -580,6 +584,7 @@ var DataTableWithToolbar = defineComponent({
|
|
|
580
584
|
tableLayout: props.tableLayout,
|
|
581
585
|
responsiveMode: props.responsiveMode,
|
|
582
586
|
cardBreakpoint: props.cardBreakpoint,
|
|
587
|
+
cardLayout: props.cardLayout,
|
|
583
588
|
class: props.bordered ? "border-none rounded-none shadow-none" : void 0,
|
|
584
589
|
onSelectionChange: (keys) => emit("selection-change", keys),
|
|
585
590
|
onPageChange: handleTablePageChange
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as vue from 'vue';
|
|
2
2
|
import { PropType } from 'vue';
|
|
3
|
-
import { TableColumn, SortState, TableSize, TigerLocaleInput, TigerLocaleTable, RowSelectionConfig, TableResponsiveMode, TableCardBreakpoint, TableToolbarProps, PaginationConfig, TableToolbarFilterValue, TableToolbarAction } from '@expcat/tigercat-core';
|
|
3
|
+
import { TableColumn, SortState, TableSize, TigerLocaleInput, TigerLocaleTable, RowSelectionConfig, TableResponsiveMode, TableCardBreakpoint, TableCardLayoutItem, TableToolbarProps, PaginationConfig, TableToolbarFilterValue, TableToolbarAction } from '@expcat/tigercat-core';
|
|
4
4
|
|
|
5
5
|
interface VueTableToolbarProps extends Omit<TableToolbarProps, 'onSearchChange' | 'onSearch' | 'onFiltersChange' | 'onBulkAction'> {
|
|
6
6
|
}
|
|
@@ -29,6 +29,7 @@ interface VueDataTableWithToolbarProps {
|
|
|
29
29
|
maxHeight?: string | number;
|
|
30
30
|
responsiveMode?: TableResponsiveMode;
|
|
31
31
|
cardBreakpoint?: TableCardBreakpoint;
|
|
32
|
+
cardLayout?: TableCardLayoutItem[];
|
|
32
33
|
toolbar?: VueTableToolbarProps;
|
|
33
34
|
pagination?: PaginationConfig | false;
|
|
34
35
|
className?: string;
|
|
@@ -131,6 +132,10 @@ declare const DataTableWithToolbar: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
131
132
|
type: PropType<TableCardBreakpoint>;
|
|
132
133
|
default: TableCardBreakpoint;
|
|
133
134
|
};
|
|
135
|
+
cardLayout: {
|
|
136
|
+
type: PropType<TableCardLayoutItem[]>;
|
|
137
|
+
default: undefined;
|
|
138
|
+
};
|
|
134
139
|
toolbar: {
|
|
135
140
|
type: PropType<VueTableToolbarProps>;
|
|
136
141
|
default: undefined;
|
|
@@ -260,6 +265,10 @@ declare const DataTableWithToolbar: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
260
265
|
type: PropType<TableCardBreakpoint>;
|
|
261
266
|
default: TableCardBreakpoint;
|
|
262
267
|
};
|
|
268
|
+
cardLayout: {
|
|
269
|
+
type: PropType<TableCardLayoutItem[]>;
|
|
270
|
+
default: undefined;
|
|
271
|
+
};
|
|
263
272
|
toolbar: {
|
|
264
273
|
type: PropType<VueTableToolbarProps>;
|
|
265
274
|
default: undefined;
|
|
@@ -319,6 +328,7 @@ declare const DataTableWithToolbar: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
319
328
|
tableLayout: "auto" | "fixed";
|
|
320
329
|
responsiveMode: TableResponsiveMode;
|
|
321
330
|
cardBreakpoint: TableCardBreakpoint;
|
|
331
|
+
cardLayout: TableCardLayoutItem[];
|
|
322
332
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
323
333
|
|
|
324
334
|
export { DataTableWithToolbar, type VueDataTableWithToolbarProps, type VueTableToolbarProps, DataTableWithToolbar as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as vue from 'vue';
|
|
2
2
|
import { PropType } from 'vue';
|
|
3
|
-
import { TableColumn, SortState, TableSize, TigerLocaleInput, TigerLocaleTable, RowSelectionConfig, TableResponsiveMode, TableCardBreakpoint, TableToolbarProps, PaginationConfig, TableToolbarFilterValue, TableToolbarAction } from '@expcat/tigercat-core';
|
|
3
|
+
import { TableColumn, SortState, TableSize, TigerLocaleInput, TigerLocaleTable, RowSelectionConfig, TableResponsiveMode, TableCardBreakpoint, TableCardLayoutItem, TableToolbarProps, PaginationConfig, TableToolbarFilterValue, TableToolbarAction } from '@expcat/tigercat-core';
|
|
4
4
|
|
|
5
5
|
interface VueTableToolbarProps extends Omit<TableToolbarProps, 'onSearchChange' | 'onSearch' | 'onFiltersChange' | 'onBulkAction'> {
|
|
6
6
|
}
|
|
@@ -29,6 +29,7 @@ interface VueDataTableWithToolbarProps {
|
|
|
29
29
|
maxHeight?: string | number;
|
|
30
30
|
responsiveMode?: TableResponsiveMode;
|
|
31
31
|
cardBreakpoint?: TableCardBreakpoint;
|
|
32
|
+
cardLayout?: TableCardLayoutItem[];
|
|
32
33
|
toolbar?: VueTableToolbarProps;
|
|
33
34
|
pagination?: PaginationConfig | false;
|
|
34
35
|
className?: string;
|
|
@@ -131,6 +132,10 @@ declare const DataTableWithToolbar: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
131
132
|
type: PropType<TableCardBreakpoint>;
|
|
132
133
|
default: TableCardBreakpoint;
|
|
133
134
|
};
|
|
135
|
+
cardLayout: {
|
|
136
|
+
type: PropType<TableCardLayoutItem[]>;
|
|
137
|
+
default: undefined;
|
|
138
|
+
};
|
|
134
139
|
toolbar: {
|
|
135
140
|
type: PropType<VueTableToolbarProps>;
|
|
136
141
|
default: undefined;
|
|
@@ -260,6 +265,10 @@ declare const DataTableWithToolbar: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
260
265
|
type: PropType<TableCardBreakpoint>;
|
|
261
266
|
default: TableCardBreakpoint;
|
|
262
267
|
};
|
|
268
|
+
cardLayout: {
|
|
269
|
+
type: PropType<TableCardLayoutItem[]>;
|
|
270
|
+
default: undefined;
|
|
271
|
+
};
|
|
263
272
|
toolbar: {
|
|
264
273
|
type: PropType<VueTableToolbarProps>;
|
|
265
274
|
default: undefined;
|
|
@@ -319,6 +328,7 @@ declare const DataTableWithToolbar: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
319
328
|
tableLayout: "auto" | "fixed";
|
|
320
329
|
responsiveMode: TableResponsiveMode;
|
|
321
330
|
cardBreakpoint: TableCardBreakpoint;
|
|
331
|
+
cardLayout: TableCardLayoutItem[];
|
|
322
332
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
323
333
|
|
|
324
334
|
export { DataTableWithToolbar, type VueDataTableWithToolbarProps, type VueTableToolbarProps, DataTableWithToolbar as default };
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
5
|
-
require('../chunk-
|
|
4
|
+
var _chunkUMBV5VOUjs = require('../chunk-UMBV5VOU.js');
|
|
5
|
+
require('../chunk-PXSV3J2H.js');
|
|
6
6
|
require('../chunk-BGMAWKWV.js');
|
|
7
7
|
require('../chunk-LUAI6VXV.js');
|
|
8
8
|
require('../chunk-3QV2D54H.js');
|
|
@@ -19,4 +19,4 @@ require('../chunk-EQW6IUHG.js');
|
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
exports.DataTableWithToolbar =
|
|
22
|
+
exports.DataTableWithToolbar = _chunkUMBV5VOUjs.DataTableWithToolbar; exports.default = _chunkUMBV5VOUjs.DataTableWithToolbar_default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
DataTableWithToolbar,
|
|
3
3
|
DataTableWithToolbar_default
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-
|
|
4
|
+
} from "../chunk-VDTZN4OS.mjs";
|
|
5
|
+
import "../chunk-BIDBJNTL.mjs";
|
|
6
6
|
import "../chunk-PYT5DTQQ.mjs";
|
|
7
7
|
import "../chunk-PT4Q7C2A.mjs";
|
|
8
8
|
import "../chunk-YZP4K6KI.mjs";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _expcat_tigercat_core from '@expcat/tigercat-core';
|
|
2
|
-
import { TableColumn, SortState, TableSize, TigerLocaleInput, TigerLocaleTable, PaginationConfig, RowSelectionConfig, ExpandableConfig, TableResponsiveMode, TableCardBreakpoint, TableCardRenderContext, FilterRule } from '@expcat/tigercat-core';
|
|
2
|
+
import { TableColumn, SortState, TableSize, TigerLocaleInput, TigerLocaleTable, PaginationConfig, RowSelectionConfig, ExpandableConfig, TableResponsiveMode, TableCardBreakpoint, TableCardRenderContext, FilterRule, TableCardLayoutItem } from '@expcat/tigercat-core';
|
|
3
3
|
import * as vue from 'vue';
|
|
4
4
|
|
|
5
5
|
/**
|
|
@@ -55,6 +55,7 @@ interface VueTableProps {
|
|
|
55
55
|
exportable?: boolean;
|
|
56
56
|
exportFormat?: 'csv' | 'excel';
|
|
57
57
|
exportFilename?: string;
|
|
58
|
+
cardLayout?: TableCardLayoutItem[];
|
|
58
59
|
}
|
|
59
60
|
|
|
60
61
|
declare const Table: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
@@ -242,6 +243,10 @@ declare const Table: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
242
243
|
readonly type: StringConstructor;
|
|
243
244
|
readonly default: "export";
|
|
244
245
|
};
|
|
246
|
+
readonly cardLayout: {
|
|
247
|
+
readonly type: vue.PropType<_expcat_tigercat_core.TableCardLayoutItem[]>;
|
|
248
|
+
readonly default: undefined;
|
|
249
|
+
};
|
|
245
250
|
}>, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
246
251
|
[key: string]: any;
|
|
247
252
|
}>, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, string[], string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
@@ -429,6 +434,10 @@ declare const Table: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
429
434
|
readonly type: StringConstructor;
|
|
430
435
|
readonly default: "export";
|
|
431
436
|
};
|
|
437
|
+
readonly cardLayout: {
|
|
438
|
+
readonly type: vue.PropType<_expcat_tigercat_core.TableCardLayoutItem[]>;
|
|
439
|
+
readonly default: undefined;
|
|
440
|
+
};
|
|
432
441
|
}>> & Readonly<{
|
|
433
442
|
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
434
443
|
}>, {
|
|
@@ -464,6 +473,7 @@ declare const Table: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
464
473
|
readonly exportable: boolean;
|
|
465
474
|
readonly exportFormat: "csv" | "excel";
|
|
466
475
|
readonly exportFilename: string;
|
|
476
|
+
readonly cardLayout: _expcat_tigercat_core.TableCardLayoutItem[];
|
|
467
477
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
468
478
|
|
|
469
479
|
export { Table, type VueTableProps, Table as default };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _expcat_tigercat_core from '@expcat/tigercat-core';
|
|
2
|
-
import { TableColumn, SortState, TableSize, TigerLocaleInput, TigerLocaleTable, PaginationConfig, RowSelectionConfig, ExpandableConfig, TableResponsiveMode, TableCardBreakpoint, TableCardRenderContext, FilterRule } from '@expcat/tigercat-core';
|
|
2
|
+
import { TableColumn, SortState, TableSize, TigerLocaleInput, TigerLocaleTable, PaginationConfig, RowSelectionConfig, ExpandableConfig, TableResponsiveMode, TableCardBreakpoint, TableCardRenderContext, FilterRule, TableCardLayoutItem } from '@expcat/tigercat-core';
|
|
3
3
|
import * as vue from 'vue';
|
|
4
4
|
|
|
5
5
|
/**
|
|
@@ -55,6 +55,7 @@ interface VueTableProps {
|
|
|
55
55
|
exportable?: boolean;
|
|
56
56
|
exportFormat?: 'csv' | 'excel';
|
|
57
57
|
exportFilename?: string;
|
|
58
|
+
cardLayout?: TableCardLayoutItem[];
|
|
58
59
|
}
|
|
59
60
|
|
|
60
61
|
declare const Table: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
@@ -242,6 +243,10 @@ declare const Table: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
242
243
|
readonly type: StringConstructor;
|
|
243
244
|
readonly default: "export";
|
|
244
245
|
};
|
|
246
|
+
readonly cardLayout: {
|
|
247
|
+
readonly type: vue.PropType<_expcat_tigercat_core.TableCardLayoutItem[]>;
|
|
248
|
+
readonly default: undefined;
|
|
249
|
+
};
|
|
245
250
|
}>, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
246
251
|
[key: string]: any;
|
|
247
252
|
}>, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, string[], string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
@@ -429,6 +434,10 @@ declare const Table: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
429
434
|
readonly type: StringConstructor;
|
|
430
435
|
readonly default: "export";
|
|
431
436
|
};
|
|
437
|
+
readonly cardLayout: {
|
|
438
|
+
readonly type: vue.PropType<_expcat_tigercat_core.TableCardLayoutItem[]>;
|
|
439
|
+
readonly default: undefined;
|
|
440
|
+
};
|
|
432
441
|
}>> & Readonly<{
|
|
433
442
|
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
434
443
|
}>, {
|
|
@@ -464,6 +473,7 @@ declare const Table: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
464
473
|
readonly exportable: boolean;
|
|
465
474
|
readonly exportFormat: "csv" | "excel";
|
|
466
475
|
readonly exportFilename: string;
|
|
476
|
+
readonly cardLayout: _expcat_tigercat_core.TableCardLayoutItem[];
|
|
467
477
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
468
478
|
|
|
469
479
|
export { Table, type VueTableProps, Table as default };
|
package/dist/components/Table.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkPXSV3J2Hjs = require('../chunk-PXSV3J2H.js');
|
|
5
5
|
require('../chunk-BGMAWKWV.js');
|
|
6
6
|
require('../chunk-3QV2D54H.js');
|
|
7
7
|
require('../chunk-FC7RXQTM.js');
|
|
@@ -12,4 +12,4 @@ require('../chunk-Q4MH333P.js');
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
exports.Table =
|
|
15
|
+
exports.Table = _chunkPXSV3J2Hjs.Table; exports.default = _chunkPXSV3J2Hjs.Table_default;
|
package/dist/index.js
CHANGED
|
@@ -251,10 +251,10 @@ var _chunkDMNOK6OPjs = require('./chunk-DMNOK6OP.js');
|
|
|
251
251
|
var _chunkWUEP3PFNjs = require('./chunk-WUEP3PFN.js');
|
|
252
252
|
|
|
253
253
|
|
|
254
|
-
var
|
|
254
|
+
var _chunkUMBV5VOUjs = require('./chunk-UMBV5VOU.js');
|
|
255
255
|
|
|
256
256
|
|
|
257
|
-
var
|
|
257
|
+
var _chunkPXSV3J2Hjs = require('./chunk-PXSV3J2H.js');
|
|
258
258
|
|
|
259
259
|
|
|
260
260
|
var _chunkBGMAWKWVjs = require('./chunk-BGMAWKWV.js');
|
|
@@ -835,4 +835,4 @@ var version = "1.2.0";
|
|
|
835
835
|
|
|
836
836
|
|
|
837
837
|
|
|
838
|
-
exports.ActivityFeed = _chunkWIQPVVUQjs.ActivityFeed; exports.Affix = _chunkCWNEDREVjs.Affix; exports.Alert = _chunkFUGSQXFRjs.Alert; exports.Anchor = _chunkQYSFZA5Vjs.Anchor; exports.AnchorLink = _chunkQYSFZA5Vjs.AnchorLink; exports.AreaChart = _chunk5VSKQLK3js.AreaChart; exports.AutoComplete = _chunkP7RXZVLTjs.AutoComplete; exports.Avatar = _chunkZ6HBM73Wjs.Avatar; exports.AvatarGroup = _chunkODQOYMUQjs.AvatarGroup; exports.BackTop = _chunkDZXZ3YELjs.BackTop; exports.Badge = _chunkPQMZ3YN3js.Badge; exports.BarChart = _chunkSVWZOIBIjs.BarChart; exports.Breadcrumb = _chunkEJZBG5RTjs.Breadcrumb; exports.BreadcrumbItem = _chunkEJZBG5RTjs.BreadcrumbItem; exports.Button = _chunk4VLNT2EDjs.Button; exports.ButtonGroup = _chunk7ADONGSBjs.ButtonGroup; exports.Calendar = _chunkXAQID5IOjs.Calendar; exports.Card = _chunkXGXGAK27js.Card; exports.Carousel = _chunkXH4ZZ6KJjs.Carousel; exports.Cascader = _chunkZSCOAOJJjs.Cascader; exports.ChartAxis = _chunk5PXTMXXSjs.ChartAxis; exports.ChartCanvas = _chunkUHVUKLHFjs.ChartCanvas; exports.ChartGrid = _chunk57MJTNDLjs.ChartGrid; exports.ChartLegend = _chunkACYYQJ6Mjs.ChartLegend; exports.ChartSeries = _chunkHBFFINAIjs.ChartSeries; exports.ChartTooltip = _chunkZOUJFFG4js.ChartTooltip; exports.ChatWindow = _chunkYS6FW775js.ChatWindow; exports.Checkbox = _chunk2YFXJUBTjs.Checkbox; exports.CheckboxGroup = _chunkQ4MH333Pjs.CheckboxGroup; exports.Code = _chunkNCLUMDZBjs.Code; exports.CodeEditor = _chunkRKZN3UROjs.CodeEditor; exports.Col = _chunkMSKAWM7Kjs.Col; exports.Collapse = _chunkK2DJDJZRjs.Collapse; exports.CollapsePanel = _chunkMQ23PX3Sjs.CollapsePanel; exports.ColorPicker = _chunk43BLH7DEjs.ColorPicker; exports.ColorSwatch = _chunkXSMDZOBFjs.ColorSwatch; exports.CommentThread = _chunkL6W3XL3Ajs.CommentThread; exports.ConfigProvider = _chunk25EYT2CBjs.ConfigProvider; exports.Container = _chunk54VVFMYIjs.Container; exports.Content = _chunkI4LQXUMWjs.Content; exports.Countdown = _chunkUI7N2ZDUjs.Countdown; exports.CronEditor = _chunk5UOAWXOQjs.CronEditor; exports.CropUpload = _chunkICECZVMXjs.CropUpload; exports.DataTableWithToolbar =
|
|
838
|
+
exports.ActivityFeed = _chunkWIQPVVUQjs.ActivityFeed; exports.Affix = _chunkCWNEDREVjs.Affix; exports.Alert = _chunkFUGSQXFRjs.Alert; exports.Anchor = _chunkQYSFZA5Vjs.Anchor; exports.AnchorLink = _chunkQYSFZA5Vjs.AnchorLink; exports.AreaChart = _chunk5VSKQLK3js.AreaChart; exports.AutoComplete = _chunkP7RXZVLTjs.AutoComplete; exports.Avatar = _chunkZ6HBM73Wjs.Avatar; exports.AvatarGroup = _chunkODQOYMUQjs.AvatarGroup; exports.BackTop = _chunkDZXZ3YELjs.BackTop; exports.Badge = _chunkPQMZ3YN3js.Badge; exports.BarChart = _chunkSVWZOIBIjs.BarChart; exports.Breadcrumb = _chunkEJZBG5RTjs.Breadcrumb; exports.BreadcrumbItem = _chunkEJZBG5RTjs.BreadcrumbItem; exports.Button = _chunk4VLNT2EDjs.Button; exports.ButtonGroup = _chunk7ADONGSBjs.ButtonGroup; exports.Calendar = _chunkXAQID5IOjs.Calendar; exports.Card = _chunkXGXGAK27js.Card; exports.Carousel = _chunkXH4ZZ6KJjs.Carousel; exports.Cascader = _chunkZSCOAOJJjs.Cascader; exports.ChartAxis = _chunk5PXTMXXSjs.ChartAxis; exports.ChartCanvas = _chunkUHVUKLHFjs.ChartCanvas; exports.ChartGrid = _chunk57MJTNDLjs.ChartGrid; exports.ChartLegend = _chunkACYYQJ6Mjs.ChartLegend; exports.ChartSeries = _chunkHBFFINAIjs.ChartSeries; exports.ChartTooltip = _chunkZOUJFFG4js.ChartTooltip; exports.ChatWindow = _chunkYS6FW775js.ChatWindow; exports.Checkbox = _chunk2YFXJUBTjs.Checkbox; exports.CheckboxGroup = _chunkQ4MH333Pjs.CheckboxGroup; exports.Code = _chunkNCLUMDZBjs.Code; exports.CodeEditor = _chunkRKZN3UROjs.CodeEditor; exports.Col = _chunkMSKAWM7Kjs.Col; exports.Collapse = _chunkK2DJDJZRjs.Collapse; exports.CollapsePanel = _chunkMQ23PX3Sjs.CollapsePanel; exports.ColorPicker = _chunk43BLH7DEjs.ColorPicker; exports.ColorSwatch = _chunkXSMDZOBFjs.ColorSwatch; exports.CommentThread = _chunkL6W3XL3Ajs.CommentThread; exports.ConfigProvider = _chunk25EYT2CBjs.ConfigProvider; exports.Container = _chunk54VVFMYIjs.Container; exports.Content = _chunkI4LQXUMWjs.Content; exports.Countdown = _chunkUI7N2ZDUjs.Countdown; exports.CronEditor = _chunk5UOAWXOQjs.CronEditor; exports.CropUpload = _chunkICECZVMXjs.CropUpload; exports.DataTableWithToolbar = _chunkUMBV5VOUjs.DataTableWithToolbar; exports.DatePicker = _chunkZUPVK5L7js.DatePicker; exports.Descriptions = _chunkDE5WMG6Pjs.Descriptions; exports.Divider = _chunkLUBUJUSHjs.Divider; exports.DonutChart = _chunkTAU447CLjs.DonutChart; exports.Drawer = _chunkQJLFHHI2js.Drawer; exports.Dropdown = _chunk7IVLFDZIjs.Dropdown; exports.DropdownItem = _chunk5TJI4HOTjs.DropdownItem; exports.DropdownMenu = _chunk7IVLFDZIjs.DropdownMenu; exports.Empty = _chunkNOZ65AMOjs.Empty; exports.FileManager = _chunk7QX4QWWNjs.FileManager; exports.FloatButton = _chunk2S5CNU36js.FloatButton; exports.FloatButtonGroup = _chunk2S5CNU36js.FloatButtonGroup; exports.Footer = _chunkSWOQMMOTjs.Footer; exports.Form = _chunkB2RH4CMGjs.Form; exports.FormItem = _chunkFRI62O2Jjs.FormItem; exports.FormWizard = _chunkBXS7OSVFjs.FormWizard; exports.FunnelChart = _chunkJKEF7NB3js.FunnelChart; exports.Gantt = _chunkZMGNQKXLjs.Gantt; exports.GaugeChart = _chunkXZMU7B54js.GaugeChart; exports.Header = _chunkCKXZONMOjs.Header; exports.HeatmapChart = _chunkVAXO5NEMjs.HeatmapChart; exports.Icon = _chunkRY2I56HBjs.Icon; exports.Image = _chunkSGAUVRUSjs.Image; exports.ImageAnnotation = _chunkPY6P4N2Qjs.ImageAnnotation; exports.ImageCropper = _chunkWUEP3PFNjs.ImageCropper; exports.ImageGroup = _chunkKDA4XDXTjs.ImageGroup; exports.ImagePreview = _chunkX6FG4RPFjs.ImagePreview; exports.ImageViewer = _chunkVXULMOIWjs.ImageViewer; exports.InfiniteScroll = _chunkXJXGVNNFjs.InfiniteScroll; exports.Input = _chunkBYNMOQBBjs.Input; exports.InputGroup = _chunkDYSLYJ2Wjs.InputGroup; exports.InputGroupAddon = _chunkDYSLYJ2Wjs.InputGroupAddon; exports.InputNumber = _chunkUUJ7A3CNjs.InputNumber; exports.Kanban = _chunkLZHCKW2Zjs.Kanban; exports.Layout = _chunkTLXEFLPAjs.Layout; exports.LineChart = _chunkKA7DILCIjs.LineChart; exports.Link = _chunk2DC3BMEDjs.Link; exports.List = _chunkS6Q7TD6Hjs.List; exports.Loading = _chunk6XI4VDU4js.Loading; exports.MarkdownEditor = _chunkX5CFXNVKjs.MarkdownEditor; exports.Mentions = _chunkA5HRX7EGjs.Mentions; exports.Menu = _chunkJE7AWY34js.Menu; exports.MenuItem = _chunkJE7AWY34js.MenuItem; exports.MenuItemGroup = _chunkJE7AWY34js.MenuItemGroup; exports.Message = _chunkJZJEZKGNjs.Message; exports.MessageContainer = _chunkJZJEZKGNjs.MessageContainer; exports.Modal = _chunkDMNOK6OPjs.Modal; exports.NotificationCenter = _chunkV6T5GRLEjs.NotificationCenter; exports.NotificationContainer = _chunkCSJQKBDJjs.NotificationContainer; exports.NumberKeyboard = _chunk5JKQPOG2js.NumberKeyboard; exports.OrgChart = _chunkU36NBQWPjs.OrgChart; exports.Pagination = _chunkLAWBHGPKjs.Pagination; exports.PieChart = _chunkQUIRQ7OAjs.PieChart; exports.Popconfirm = _chunkGD2WAN62js.Popconfirm; exports.Popover = _chunkLUAI6VXVjs.Popover; exports.PrintLayout = _chunkXTMGF5YPjs.PrintLayout; exports.PrintPageBreak = _chunkXTMGF5YPjs.PrintPageBreak; exports.Progress = _chunkQY6PYAJAjs.Progress; exports.QRCode = _chunk3NRRNQYJjs.QRCode; exports.RadarChart = _chunkFUI6WG2Fjs.RadarChart; exports.Radio = _chunk3QV2D54Hjs.Radio; exports.RadioGroup = _chunkFC7RXQTMjs.RadioGroup; exports.Rate = _chunkBZBVSB43js.Rate; exports.Resizable = _chunkLG6KGO5Djs.Resizable; exports.Result = _chunkG3SWTL27js.Result; exports.RichTextEditor = _chunkGOBWUEHVjs.RichTextEditor; exports.Row = _chunkXUOGT4HGjs.Row; exports.ScatterChart = _chunkM2XA7VU5js.ScatterChart; exports.ScrollSpy = _chunkOXIODAJSjs.ScrollSpy; exports.Segmented = _chunkDJCTERZHjs.Segmented; exports.Select = _chunkBGMAWKWVjs.Select; exports.Sidebar = _chunkETTYERGOjs.Sidebar; exports.Signature = _chunkMHNCH2YIjs.Signature; exports.Skeleton = _chunkT4DF24UVjs.Skeleton; exports.Slider = _chunkSLYUQ67Pjs.Slider; exports.Space = _chunkZNVQ2OFXjs.Space; exports.Splitter = _chunkK3CIXMN4js.Splitter; exports.Spotlight = _chunkJNIKT6ALjs.Spotlight; exports.Statistic = _chunkCTAQ5WENjs.Statistic; exports.Stepper = _chunkA7FN3S4Ijs.Stepper; exports.Steps = _chunkDS7RQFEGjs.Steps; exports.StepsItem = _chunkDS7RQFEGjs.StepsItem; exports.SubMenu = _chunkJE7AWY34js.SubMenu; exports.SunburstChart = _chunkULUH6UNVjs.SunburstChart; exports.Switch = _chunkRAUERIPSjs.Switch; exports.TabPane = _chunk44N7LE3Qjs.TabPane; exports.Table = _chunkPXSV3J2Hjs.Table; exports.Tabs = _chunk44N7LE3Qjs.Tabs; exports.Tag = _chunk2KDSHEZTjs.Tag; exports.TaskBoard = _chunkOKLDFVDJjs.TaskBoard; exports.Text = _chunkTGHB5XSTjs.Text; exports.Textarea = _chunk6FXYRDYHjs.Textarea; exports.TimePicker = _chunkMUJLT2YGjs.TimePicker; exports.Timeline = _chunk27T3QDSFjs.Timeline; exports.Tooltip = _chunkKGDRA475js.Tooltip; exports.Tour = _chunkPCJHGWTUjs.Tour; exports.Transfer = _chunkFE2HR4E5js.Transfer; exports.Tree = _chunkL5E3L6IDjs.Tree; exports.TreeMapChart = _chunkFP7SBCPOjs.TreeMapChart; exports.TreeSelect = _chunkJFIVDZFKjs.TreeSelect; exports.Upload = _chunkS6K6IR3Yjs.Upload; exports.VirtualList = _chunk5F6P5Y4Kjs.VirtualList; exports.VirtualTable = _chunkXGO5Q6KKjs.VirtualTable; exports.Watermark = _chunkJKZ5ZRDGjs.Watermark; exports.notification = _chunkCSJQKBDJjs.notification; exports.useChartInteraction = _chunk2VOZFFW6js.useChartInteraction; exports.useDrag = useDrag; exports.useFormController = useFormController; exports.useTigerConfig = _chunk25EYT2CBjs.useTigerConfig; exports.version = version;
|
package/dist/index.mjs
CHANGED
|
@@ -251,10 +251,10 @@ import {
|
|
|
251
251
|
} from "./chunk-DEJKRMMU.mjs";
|
|
252
252
|
import {
|
|
253
253
|
DataTableWithToolbar
|
|
254
|
-
} from "./chunk-
|
|
254
|
+
} from "./chunk-VDTZN4OS.mjs";
|
|
255
255
|
import {
|
|
256
256
|
Table
|
|
257
|
-
} from "./chunk-
|
|
257
|
+
} from "./chunk-BIDBJNTL.mjs";
|
|
258
258
|
import {
|
|
259
259
|
Select
|
|
260
260
|
} from "./chunk-PYT5DTQQ.mjs";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expcat/tigercat-vue",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.44",
|
|
4
4
|
"description": "Vue 3 components for Tigercat UI library",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Yizhe Wang",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"access": "public"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@expcat/tigercat-core": "1.2.
|
|
51
|
+
"@expcat/tigercat-core": "1.2.44"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@types/node": "^25.6.0",
|