@opengis/table 0.0.21 → 0.0.23

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.
Files changed (35) hide show
  1. package/dist/components/CodeTabs.vue.d.ts +14 -0
  2. package/dist/components/CodeTabs.vue.d.ts.map +1 -0
  3. package/dist/components/Column.vue.d.ts +16 -0
  4. package/dist/components/Column.vue.d.ts.map +1 -0
  5. package/dist/components/DataTable.vue.d.ts +73 -0
  6. package/dist/components/DataTable.vue.d.ts.map +1 -0
  7. package/dist/components/Pagination.vue.d.ts +18 -0
  8. package/dist/components/Pagination.vue.d.ts.map +1 -0
  9. package/dist/components/SelectionInfo.vue.d.ts +7 -0
  10. package/dist/components/SelectionInfo.vue.d.ts.map +1 -0
  11. package/dist/components/index.d.ts +6 -0
  12. package/dist/components/index.d.ts.map +1 -0
  13. package/dist/formats/ArrayFormat.vue.d.ts +4 -0
  14. package/dist/formats/ArrayFormat.vue.d.ts.map +1 -0
  15. package/dist/formats/BadgeFormat.vue.d.ts +4 -0
  16. package/dist/formats/BadgeFormat.vue.d.ts.map +1 -0
  17. package/dist/formats/DateFormat.vue.d.ts +4 -0
  18. package/dist/formats/DateFormat.vue.d.ts.map +1 -0
  19. package/dist/formats/LinkFormat.vue.d.ts +13 -0
  20. package/dist/formats/LinkFormat.vue.d.ts.map +1 -0
  21. package/dist/formats/NumberFormat.vue.d.ts +4 -0
  22. package/dist/formats/NumberFormat.vue.d.ts.map +1 -0
  23. package/dist/formats/SelectFormat.vue.d.ts +4 -0
  24. package/dist/formats/SelectFormat.vue.d.ts.map +1 -0
  25. package/dist/formats/TextFormat.vue.d.ts +4 -0
  26. package/dist/formats/TextFormat.vue.d.ts.map +1 -0
  27. package/dist/formats/index.d.ts +16 -0
  28. package/dist/formats/index.d.ts.map +1 -0
  29. package/dist/index.d.ts +12 -0
  30. package/dist/index.d.ts.map +1 -0
  31. package/dist/index.mjs +348 -377
  32. package/dist/index.umd.js +1 -1
  33. package/dist/types/index.d.ts +143 -0
  34. package/dist/types/index.d.ts.map +1 -0
  35. package/package.json +57 -59
@@ -0,0 +1,14 @@
1
+ interface Tab {
2
+ id: string;
3
+ label: string;
4
+ content: string;
5
+ }
6
+ interface Props {
7
+ tabs: Tab[];
8
+ defaultTab?: string;
9
+ }
10
+ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
11
+ defaultTab: string;
12
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
13
+ export default _default;
14
+ //# sourceMappingURL=CodeTabs.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CodeTabs.vue.d.ts","sourceRoot":"","sources":["../../src/components/CodeTabs.vue"],"names":[],"mappings":"AA+EA,UAAU,GAAG;IACX,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,UAAU,KAAK;IACb,IAAI,EAAE,GAAG,EAAE,CAAC;IACZ,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;;gBADc,MAAM;;AA8JrB,wBAOG"}
@@ -0,0 +1,16 @@
1
+ import type { ColumnProps } from '../types';
2
+ declare var __VLS_1: {
3
+ data: {};
4
+ };
5
+ type __VLS_Slots = {} & {
6
+ body?: (props: typeof __VLS_1) => any;
7
+ };
8
+ declare const __VLS_component: import("vue").DefineComponent<ColumnProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ColumnProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
10
+ export default _default;
11
+ type __VLS_WithSlots<T, S> = T & {
12
+ new (): {
13
+ $slots: S;
14
+ };
15
+ };
16
+ //# sourceMappingURL=Column.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Column.vue.d.ts","sourceRoot":"","sources":["../../src/components/Column.vue"],"names":[],"mappings":"AAkEA,OAAO,KAAK,EAAU,WAAW,EAAE,MAAM,UAAU,CAAC;AAoEpD,QAAA,IAAI,OAAO;;CAAW,CAAE;AACxB,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,IAAI,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAmB5C,QAAA,MAAM,eAAe,kSAMnB,CAAC;wBACkB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;AAAzE,wBAA0E;AAQ1E,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -0,0 +1,73 @@
1
+ import type { Column, InternalDataTableProps, TableSize, SortConfig } from '../types';
2
+ declare var __VLS_1: {
3
+ asc: boolean;
4
+ }, __VLS_3: {
5
+ row: any;
6
+ }, __VLS_5: {
7
+ row: any;
8
+ value: any;
9
+ }, __VLS_7: {
10
+ row: any;
11
+ value: any;
12
+ }, __VLS_9: {
13
+ row: any;
14
+ value: any;
15
+ }, __VLS_19: {
16
+ row: any;
17
+ };
18
+ type __VLS_Slots = {} & {
19
+ sort?: (props: typeof __VLS_1) => any;
20
+ } & {
21
+ action?: (props: typeof __VLS_3) => any;
22
+ } & {
23
+ number?: (props: typeof __VLS_5) => any;
24
+ } & {
25
+ badge?: (props: typeof __VLS_7) => any;
26
+ } & {
27
+ array?: (props: typeof __VLS_9) => any;
28
+ } & {
29
+ action?: (props: typeof __VLS_19) => any;
30
+ };
31
+ declare const __VLS_component: import("vue").DefineComponent<InternalDataTableProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
32
+ sort: (sortConfig: SortConfig[]) => any;
33
+ "update:page": (page: number) => any;
34
+ "update:selectedRows": (rows: any[]) => any;
35
+ "row-click": (row: any) => any;
36
+ }, string, import("vue").PublicProps, Readonly<InternalDataTableProps> & Readonly<{
37
+ onSort?: ((sortConfig: SortConfig[]) => any) | undefined;
38
+ "onUpdate:page"?: ((page: number) => any) | undefined;
39
+ "onUpdate:selectedRows"?: ((rows: any[]) => any) | undefined;
40
+ "onRow-click"?: ((row: any) => any) | undefined;
41
+ }>, {
42
+ page: number;
43
+ limit: number;
44
+ total: number;
45
+ theme: import("../types").TableTheme;
46
+ size: TableSize;
47
+ rows: any[];
48
+ columns: Column[];
49
+ tableStyle: string;
50
+ loading: boolean;
51
+ classWrapper: string;
52
+ classTable: string;
53
+ classTbody: string;
54
+ classTr: string;
55
+ classTd: string;
56
+ classTh: string;
57
+ classThead: string;
58
+ classLink: string;
59
+ selectable: boolean;
60
+ selectedRows: any[];
61
+ showPagination: boolean;
62
+ sortable: boolean;
63
+ clickable: boolean;
64
+ getCellData: import("../types").GetCellDataHook;
65
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
66
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
67
+ export default _default;
68
+ type __VLS_WithSlots<T, S> = T & {
69
+ new (): {
70
+ $slots: S;
71
+ };
72
+ };
73
+ //# sourceMappingURL=DataTable.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DataTable.vue.d.ts","sourceRoot":"","sources":["../../src/components/DataTable.vue"],"names":[],"mappings":"AAqvBA,OAAO,KAAK,EACV,MAAM,EAAE,sBAAsB,EAAE,SAAS,EAAiB,UAAU,EACrE,MAAM,UAAU,CAAC;AA+4BlB,QAAA,IAAI,OAAO;;CAAU,EAAE,OAAO;;CAAU,EAAE,OAAO;;;CAAU,EAAE,OAAO;;;CAAU,EAAE,OAAO;;;CAAU,EAAE,QAAQ;;CAAY,CAAE;AACzH,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,IAAI,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GACzC;IAAE,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC3C;IAAE,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC3C;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC1C;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC1C;IAAE,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAkD/C,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6EAQnB,CAAC;wBACkB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;AAAzE,wBAA0E;AAa1E,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -0,0 +1,18 @@
1
+ import type { TableSize } from '../types';
2
+ interface PaginationProps {
3
+ page: number;
4
+ limit: number;
5
+ total: number;
6
+ theme?: 'light' | 'dark' | 'auto';
7
+ size?: TableSize;
8
+ }
9
+ declare const _default: import("vue").DefineComponent<PaginationProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
10
+ "update:page": (page: number) => any;
11
+ }, string, import("vue").PublicProps, Readonly<PaginationProps> & Readonly<{
12
+ "onUpdate:page"?: ((page: number) => any) | undefined;
13
+ }>, {
14
+ theme: "light" | "dark" | "auto";
15
+ size: TableSize;
16
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
+ export default _default;
18
+ //# sourceMappingURL=Pagination.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Pagination.vue.d.ts","sourceRoot":"","sources":["../../src/components/Pagination.vue"],"names":[],"mappings":"AA0OA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAE1C,UAAU,eAAe;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,MAAM,CAAC;IAClC,IAAI,CAAC,EAAE,SAAS,CAAC;CAClB;;;;;;WAFS,OAAO,GAAG,MAAM,GAAG,MAAM;UAC1B,SAAS;;AAyTlB,wBAQG"}
@@ -0,0 +1,7 @@
1
+ interface SelectionInfoProps {
2
+ selectedRows: any[];
3
+ totalCount: number;
4
+ }
5
+ declare const _default: import("vue").DefineComponent<SelectionInfoProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SelectionInfoProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ export default _default;
7
+ //# sourceMappingURL=SelectionInfo.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SelectionInfo.vue.d.ts","sourceRoot":"","sources":["../../src/components/SelectionInfo.vue"],"names":[],"mappings":"AAwBA,UAAU,kBAAkB;IAC1B,YAAY,EAAE,GAAG,EAAE,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;CACpB;;AA+CD,wBAMG"}
@@ -0,0 +1,6 @@
1
+ export { default as DataTable } from './DataTable.vue';
2
+ export { default as Column } from './Column.vue';
3
+ export { default as Pagination } from './Pagination.vue';
4
+ export { default as SelectionInfo } from './SelectionInfo.vue';
5
+ export { default as CodeTabs } from './CodeTabs.vue';
6
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,cAAc,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,kBAAkB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,gBAAgB,CAAC"}
@@ -0,0 +1,4 @@
1
+ import type { FormatComponentProps } from '../types';
2
+ declare const _default: import("vue").DefineComponent<FormatComponentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<FormatComponentProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=ArrayFormat.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ArrayFormat.vue.d.ts","sourceRoot":"","sources":["../../src/formats/ArrayFormat.vue"],"names":[],"mappings":"AAsDA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;;AA2FrD,wBAMG"}
@@ -0,0 +1,4 @@
1
+ import type { FormatComponentProps } from '../types';
2
+ declare const _default: import("vue").DefineComponent<FormatComponentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<FormatComponentProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=BadgeFormat.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BadgeFormat.vue.d.ts","sourceRoot":"","sources":["../../src/formats/BadgeFormat.vue"],"names":[],"mappings":"AAoFA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;;AAqGrD,wBAMG"}
@@ -0,0 +1,4 @@
1
+ import type { FormatComponentProps } from '../types';
2
+ declare const _default: import("vue").DefineComponent<FormatComponentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<FormatComponentProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=DateFormat.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DateFormat.vue.d.ts","sourceRoot":"","sources":["../../src/formats/DateFormat.vue"],"names":[],"mappings":"AA2BA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;;AAkDrD,wBAMG"}
@@ -0,0 +1,13 @@
1
+ import type { FormatComponentProps } from '../types';
2
+ interface LinkFormatProps extends FormatComponentProps {
3
+ href?: string;
4
+ target?: string;
5
+ onClick?: (row: any, value: any) => void;
6
+ }
7
+ declare const _default: import("vue").DefineComponent<LinkFormatProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<LinkFormatProps> & Readonly<{}>, {
8
+ onClick: (row: any, value: any) => void;
9
+ href: string;
10
+ target: string;
11
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
+ export default _default;
13
+ //# sourceMappingURL=LinkFormat.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LinkFormat.vue.d.ts","sourceRoot":"","sources":["../../src/formats/LinkFormat.vue"],"names":[],"mappings":"AAsEA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;AAErD,UAAU,eAAgB,SAAQ,oBAAoB;IACpD,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,CAAC,GAAG,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;CAC1C;;aADW,CAAC,GAAG,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,KAAK,IAAI;UAFjC,MAAM;YACJ,MAAM;;AAkGjB,wBAOG"}
@@ -0,0 +1,4 @@
1
+ import type { FormatComponentProps } from '../types';
2
+ declare const _default: import("vue").DefineComponent<FormatComponentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<FormatComponentProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=NumberFormat.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NumberFormat.vue.d.ts","sourceRoot":"","sources":["../../src/formats/NumberFormat.vue"],"names":[],"mappings":"AA0BA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;;AAiDrD,wBAMG"}
@@ -0,0 +1,4 @@
1
+ import type { FormatComponentProps } from '../types';
2
+ declare const _default: import("vue").DefineComponent<FormatComponentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<FormatComponentProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=SelectFormat.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SelectFormat.vue.d.ts","sourceRoot":"","sources":["../../src/formats/SelectFormat.vue"],"names":[],"mappings":"AAoBA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;;AA2CrD,wBAMG"}
@@ -0,0 +1,4 @@
1
+ import type { FormatComponentProps } from '../types';
2
+ declare const _default: import("vue").DefineComponent<FormatComponentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<FormatComponentProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=TextFormat.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TextFormat.vue.d.ts","sourceRoot":"","sources":["../../src/formats/TextFormat.vue"],"names":[],"mappings":"AAmBA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;;AA0CrD,wBAMG"}
@@ -0,0 +1,16 @@
1
+ import NumberFormat from './NumberFormat.vue';
2
+ import DateFormat from './DateFormat.vue';
3
+ import TextFormat from './TextFormat.vue';
4
+ import BadgeFormat from './BadgeFormat.vue';
5
+ import ArrayFormat from './ArrayFormat.vue';
6
+ import SelectFormat from './SelectFormat.vue';
7
+ export declare const formatComponents: {
8
+ number: import("vue").DefineComponent<import("../index.js").FormatComponentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("../index.js").FormatComponentProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ date: import("vue").DefineComponent<import("../index.js").FormatComponentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("../index.js").FormatComponentProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
+ text: import("vue").DefineComponent<import("../index.js").FormatComponentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("../index.js").FormatComponentProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11
+ badge: import("vue").DefineComponent<import("../index.js").FormatComponentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("../index.js").FormatComponentProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
+ array: import("vue").DefineComponent<import("../index.js").FormatComponentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("../index.js").FormatComponentProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
13
+ select: import("vue").DefineComponent<import("../index.js").FormatComponentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("../index.js").FormatComponentProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
14
+ };
15
+ export { NumberFormat, DateFormat, TextFormat, BadgeFormat, SelectFormat, ArrayFormat, };
16
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/formats/index.ts"],"names":[],"mappings":"AAAA,OAAO,YAAY,MAAM,oBAAoB,CAAC;AAC9C,OAAO,UAAU,MAAM,kBAAkB,CAAC;AAC1C,OAAO,UAAU,MAAM,kBAAkB,CAAC;AAC1C,OAAO,WAAW,MAAM,mBAAmB,CAAC;AAC5C,OAAO,WAAW,MAAM,mBAAmB,CAAC;AAE5C,OAAO,YAAY,MAAM,oBAAoB,CAAC;AAE9C,eAAO,MAAM,gBAAgB;;;;;;;CAQ5B,CAAC;AAEF,OAAO,EACL,YAAY,EACZ,UAAU,EACV,UAAU,EACV,WAAW,EACX,YAAY,EACZ,WAAW,GACZ,CAAC"}
@@ -0,0 +1,12 @@
1
+ export * from './components';
2
+ export * from './types';
3
+ export * from './formats';
4
+ export { default as DataTable } from './components/DataTable.vue';
5
+ import V3Table from './components/DataTable.vue';
6
+ import Column from './components/Column.vue';
7
+ import Pagination from './components/Pagination.vue';
8
+ import SelectionInfo from './components/SelectionInfo.vue';
9
+ import CodeTabs from './components/CodeTabs.vue';
10
+ export default V3Table;
11
+ export { Column, Pagination, SelectionInfo, CodeTabs, };
12
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,WAAW,CAAC;AAK1B,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,4BAA4B,CAAC;AAClE,OAAO,OAAO,MAAM,4BAA4B,CAAC;AACjD,OAAO,MAAM,MAAM,yBAAyB,CAAC;AAC7C,OAAO,UAAU,MAAM,6BAA6B,CAAC;AACrD,OAAO,aAAa,MAAM,gCAAgC,CAAC;AAC3D,OAAO,QAAQ,MAAM,2BAA2B,CAAC;AASjD,eAAe,OAAO,CAAC;AAGvB,OAAO,EACL,MAAM,EACN,UAAU,EACV,aAAa,EACb,QAAQ,GACT,CAAC"}