@optilogic/core 1.0.0-beta.7 → 1.0.0-beta.9
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/index.cjs +734 -289
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +109 -5
- package/dist/index.d.ts +109 -5
- package/dist/index.js +683 -239
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/data-table.tsx +735 -0
- package/src/index.ts +7 -0
package/src/index.ts
CHANGED
|
@@ -174,6 +174,13 @@ export {
|
|
|
174
174
|
type TableCaptionProps,
|
|
175
175
|
} from "./components/table";
|
|
176
176
|
|
|
177
|
+
export {
|
|
178
|
+
DataTable,
|
|
179
|
+
type DataTableColumn,
|
|
180
|
+
type DataTableSort,
|
|
181
|
+
type DataTableProps,
|
|
182
|
+
} from "./components/data-table";
|
|
183
|
+
|
|
177
184
|
export {
|
|
178
185
|
Modal,
|
|
179
186
|
ModalButton,
|