@db-ux/v-core-components 4.5.4-mcp-e4cd7e6 → 4.5.4-table-c758ae7
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/README.md +30 -0
- package/dist/components/table/examples/data.d.ts +9 -0
- package/dist/components/table/index.d.ts +1 -0
- package/dist/components/table/model.d.ts +74 -0
- package/dist/components/table/table.vue.d.ts +30 -0
- package/dist/components/table-body/index.d.ts +1 -0
- package/dist/components/table-body/model.d.ts +8 -0
- package/dist/components/table-body/table-body.vue.d.ts +20 -0
- package/dist/components/table-caption/index.d.ts +1 -0
- package/dist/components/table-caption/model.d.ts +5 -0
- package/dist/components/table-caption/table-caption.vue.d.ts +17 -0
- package/dist/components/table-data-cell/index.d.ts +1 -0
- package/dist/components/table-data-cell/model.d.ts +5 -0
- package/dist/components/table-data-cell/table-data-cell.vue.d.ts +25 -0
- package/dist/components/table-footer/index.d.ts +1 -0
- package/dist/components/table-footer/model.d.ts +8 -0
- package/dist/components/table-footer/table-footer.vue.d.ts +20 -0
- package/dist/components/table-head/index.d.ts +1 -0
- package/dist/components/table-head/model.d.ts +10 -0
- package/dist/components/table-head/table-head.vue.d.ts +20 -0
- package/dist/components/table-header-cell/index.d.ts +1 -0
- package/dist/components/table-header-cell/model.d.ts +24 -0
- package/dist/components/table-header-cell/table-header-cell.vue.d.ts +28 -0
- package/dist/components/table-row/index.d.ts +1 -0
- package/dist/components/table-row/model.d.ts +30 -0
- package/dist/components/table-row/table-row.vue.d.ts +21 -0
- package/dist/db-ux.es.js +2262 -1826
- package/dist/db-ux.umd.js +1 -1
- package/dist/index.d.ts +16 -0
- package/dist/shared/model.d.ts +42 -2
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -79,3 +79,19 @@ export * from './utils/document-scroll-listener';
|
|
|
79
79
|
export * from './utils/floating-components';
|
|
80
80
|
export * from './utils/index';
|
|
81
81
|
export * from './utils/navigation';
|
|
82
|
+
export * from "./components/table";
|
|
83
|
+
export * from "./components/table/model";
|
|
84
|
+
export * from "./components/table-caption";
|
|
85
|
+
export * from "./components/table-caption/model";
|
|
86
|
+
export * from "./components/table-head";
|
|
87
|
+
export * from "./components/table-head/model";
|
|
88
|
+
export * from "./components/table-body";
|
|
89
|
+
export * from "./components/table-body/model";
|
|
90
|
+
export * from "./components/table-footer";
|
|
91
|
+
export * from "./components/table-footer/model";
|
|
92
|
+
export * from "./components/table-row";
|
|
93
|
+
export * from "./components/table-row/model";
|
|
94
|
+
export * from "./components/table-header-cell";
|
|
95
|
+
export * from "./components/table-header-cell/model";
|
|
96
|
+
export * from "./components/table-data-cell";
|
|
97
|
+
export * from "./components/table-data-cell/model";
|
package/dist/shared/model.d.ts
CHANGED
|
@@ -460,11 +460,11 @@ export type CloseEventProps<T> = {
|
|
|
460
460
|
export type CloseEventState<T> = {
|
|
461
461
|
handleClose: (event?: T | void, forceClose?: boolean) => void;
|
|
462
462
|
};
|
|
463
|
-
export declare const AlignmentList: readonly ["start", "center"];
|
|
463
|
+
export declare const AlignmentList: readonly ["start", "center", "end"];
|
|
464
464
|
export type AlignmentType = (typeof AlignmentList)[number];
|
|
465
465
|
export type AlignmentProps = {
|
|
466
466
|
/**
|
|
467
|
-
* Define the content alignment
|
|
467
|
+
* Define the content alignment
|
|
468
468
|
*/
|
|
469
469
|
alignment?: AlignmentType | string;
|
|
470
470
|
};
|
|
@@ -554,3 +554,43 @@ export interface PatternhubProps {
|
|
|
554
554
|
*/
|
|
555
555
|
isPatternhub?: boolean;
|
|
556
556
|
}
|
|
557
|
+
export type DBTableCellProps = {
|
|
558
|
+
/**
|
|
559
|
+
* The **`colSpan`** read-only property of the HTMLTableCellElement interface represents the number of columns this cell must span; this lets the cell occupy space across multiple columns of the table.
|
|
560
|
+
*
|
|
561
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/colSpan)
|
|
562
|
+
*/
|
|
563
|
+
colSpan?: number | string;
|
|
564
|
+
/**
|
|
565
|
+
* The **`colSpan`** read-only property of the HTMLTableCellElement interface represents the number of columns this cell must span; this lets the cell occupy space across multiple columns of the table.
|
|
566
|
+
*
|
|
567
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/colSpan)
|
|
568
|
+
*/
|
|
569
|
+
colspan?: number | string;
|
|
570
|
+
/**
|
|
571
|
+
* The **`headers`** property of the HTMLTableCellElement interface contains a list of IDs of th elements that are _headers_ for this specific cell.
|
|
572
|
+
*
|
|
573
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/headers)
|
|
574
|
+
*/
|
|
575
|
+
headers?: string;
|
|
576
|
+
/**
|
|
577
|
+
* The **`rowSpan`** read-only property of the HTMLTableCellElement interface represents the number of rows this cell must span; this lets the cell occupy space across multiple rows of the table.
|
|
578
|
+
*
|
|
579
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/rowSpan)
|
|
580
|
+
*/
|
|
581
|
+
rowSpan?: number | string;
|
|
582
|
+
/**
|
|
583
|
+
* The **`rowSpan`** read-only property of the HTMLTableCellElement interface represents the number of rows this cell must span; this lets the cell occupy space across multiple rows of the table.
|
|
584
|
+
*
|
|
585
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/rowSpan)
|
|
586
|
+
*/
|
|
587
|
+
rowspan?: number | string;
|
|
588
|
+
/**
|
|
589
|
+
* Set the horizontal alignment of the cell content.
|
|
590
|
+
*/
|
|
591
|
+
horizontalAlignment?: AlignmentType;
|
|
592
|
+
/**
|
|
593
|
+
* Set the vertical alignment of the cell content.
|
|
594
|
+
*/
|
|
595
|
+
verticalAlignment?: AlignmentType;
|
|
596
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@db-ux/v-core-components",
|
|
3
|
-
"version": "4.5.4-
|
|
3
|
+
"version": "4.5.4-table-c758ae7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Vue components for @db-ux/core-components",
|
|
6
6
|
"repository": {
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"sideEffects": false,
|
|
57
57
|
"source": "src/index.ts",
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@db-ux/core-components": "4.5.4-
|
|
60
|
-
"@db-ux/core-foundations": "4.5.4-
|
|
59
|
+
"@db-ux/core-components": "4.5.4-table-c758ae7",
|
|
60
|
+
"@db-ux/core-foundations": "4.5.4-table-c758ae7"
|
|
61
61
|
}
|
|
62
62
|
}
|