@wordrhyme/auto-crud 1.3.2 → 1.3.4
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 +6 -3
- package/dist/index.d.cts +16 -16
- package/dist/index.d.ts +16 -16
- package/dist/index.js +6 -3
- package/package.json +6 -6
package/dist/index.cjs
CHANGED
|
@@ -6669,13 +6669,16 @@ function AutoCrudTable({ id, title, description, schema, resource, fields, table
|
|
|
6669
6669
|
const renderBuiltinButton = (type, overrides) => {
|
|
6670
6670
|
if (type === "refresh") {
|
|
6671
6671
|
const onRefresh = overrides?.onClick ?? resource.handlers.refresh;
|
|
6672
|
+
const label = overrides?.label ?? locale.toolbar.refresh;
|
|
6672
6673
|
if (!onRefresh) return null;
|
|
6673
|
-
return /* @__PURE__ */ (0, react_jsx_runtime.
|
|
6674
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(__wordrhyme_shadcn.Button, {
|
|
6674
6675
|
variant: "outline",
|
|
6675
|
-
size: "sm",
|
|
6676
|
+
size: "icon-sm",
|
|
6677
|
+
"aria-label": label,
|
|
6678
|
+
title: label,
|
|
6676
6679
|
onClick: onRefresh,
|
|
6677
6680
|
disabled: resource.tableData.isFetching,
|
|
6678
|
-
children:
|
|
6681
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)(lucide_react.RefreshCw, { className: resource.tableData.isFetching ? "h-4 w-4 animate-spin" : "h-4 w-4" })
|
|
6679
6682
|
}, "refresh");
|
|
6680
6683
|
}
|
|
6681
6684
|
if (type === "import" && canImport) return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)(__wordrhyme_shadcn.Button, {
|
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime3 from "react/jsx-runtime";
|
|
2
2
|
import { z } from "zod";
|
|
3
3
|
import { JsonSchemaFormScope } from "@wordrhyme/formily-shadcn";
|
|
4
4
|
import * as _tanstack_react_table0 from "@tanstack/react-table";
|
|
@@ -381,7 +381,7 @@ declare function AutoTableActionBar<TData>({
|
|
|
381
381
|
extraActions,
|
|
382
382
|
actions,
|
|
383
383
|
deleteConfirmation
|
|
384
|
-
}: AutoTableActionBarProps<TData>):
|
|
384
|
+
}: AutoTableActionBarProps<TData>): react_jsx_runtime3.JSX.Element;
|
|
385
385
|
//#endregion
|
|
386
386
|
//#region src/lib/schema-bridge/types.d.ts
|
|
387
387
|
/**
|
|
@@ -557,7 +557,7 @@ declare function AutoTable<T extends z.ZodObject<z.ZodRawShape>>({
|
|
|
557
557
|
onSelectedCountChange,
|
|
558
558
|
onSelectedRowsChange,
|
|
559
559
|
getSelectedRows
|
|
560
|
-
}: AutoTableProps<T>):
|
|
560
|
+
}: AutoTableProps<T>): react_jsx_runtime3.JSX.Element;
|
|
561
561
|
//#endregion
|
|
562
562
|
//#region src/i18n/locale.d.ts
|
|
563
563
|
/**
|
|
@@ -1037,7 +1037,7 @@ declare function AutoCrudTable<TSchema extends z.ZodObject<z.ZodRawShape>>({
|
|
|
1037
1037
|
toolbarActions,
|
|
1038
1038
|
locale: localeProp,
|
|
1039
1039
|
onCreate
|
|
1040
|
-
}: AutoCrudTableProps<TSchema>):
|
|
1040
|
+
}: AutoCrudTableProps<TSchema>): react_jsx_runtime3.JSX.Element;
|
|
1041
1041
|
//#endregion
|
|
1042
1042
|
//#region src/components/auto-crud/auto-form.d.ts
|
|
1043
1043
|
interface AutoFormProps<T extends z.ZodObject<z.ZodRawShape>> {
|
|
@@ -1076,7 +1076,7 @@ declare function AutoFormInner<T extends z.ZodObject<z.ZodRawShape>>({
|
|
|
1076
1076
|
labelAlign,
|
|
1077
1077
|
labelWidth,
|
|
1078
1078
|
showSubmitButton
|
|
1079
|
-
}: AutoFormProps<T>, ref: React.Ref<AutoFormRef>):
|
|
1079
|
+
}: AutoFormProps<T>, ref: React.Ref<AutoFormRef>): react_jsx_runtime3.JSX.Element;
|
|
1080
1080
|
declare const AutoForm: <T extends z.ZodObject<z.ZodRawShape>>(props: AutoFormProps<T> & {
|
|
1081
1081
|
ref?: React.Ref<AutoFormRef>;
|
|
1082
1082
|
}) => ReturnType<typeof AutoFormInner>;
|
|
@@ -1392,7 +1392,7 @@ declare function AutoTableSimpleFilters<TData>({
|
|
|
1392
1392
|
filters: externalFilters,
|
|
1393
1393
|
onFiltersChange,
|
|
1394
1394
|
leading
|
|
1395
|
-
}: AutoTableSimpleFiltersProps<TData>):
|
|
1395
|
+
}: AutoTableSimpleFiltersProps<TData>): react_jsx_runtime3.JSX.Element | null;
|
|
1396
1396
|
//#endregion
|
|
1397
1397
|
//#region src/components/auto-crud/form-modal.d.ts
|
|
1398
1398
|
type ModalVariant = "dialog" | "sheet";
|
|
@@ -1436,7 +1436,7 @@ declare function CrudFormModal<T extends z.ZodObject<z.ZodRawShape>>({
|
|
|
1436
1436
|
labelAlign,
|
|
1437
1437
|
labelWidth,
|
|
1438
1438
|
className
|
|
1439
|
-
}: CrudFormModalProps<T>):
|
|
1439
|
+
}: CrudFormModalProps<T>): react_jsx_runtime3.JSX.Element;
|
|
1440
1440
|
//#endregion
|
|
1441
1441
|
//#region src/components/auto-crud/import-dialog.d.ts
|
|
1442
1442
|
interface ImportDialogProps {
|
|
@@ -1458,7 +1458,7 @@ declare function ImportDialog({
|
|
|
1458
1458
|
columns,
|
|
1459
1459
|
title,
|
|
1460
1460
|
locale
|
|
1461
|
-
}: ImportDialogProps):
|
|
1461
|
+
}: ImportDialogProps): react_jsx_runtime3.JSX.Element;
|
|
1462
1462
|
//#endregion
|
|
1463
1463
|
//#region src/components/auto-crud/export-dialog.d.ts
|
|
1464
1464
|
type ExportMode = "selected" | "filtered";
|
|
@@ -1478,7 +1478,7 @@ declare function ExportDialog({
|
|
|
1478
1478
|
selectedCount,
|
|
1479
1479
|
onExport,
|
|
1480
1480
|
canExportFiltered
|
|
1481
|
-
}: ExportDialogProps):
|
|
1481
|
+
}: ExportDialogProps): react_jsx_runtime3.JSX.Element;
|
|
1482
1482
|
//#endregion
|
|
1483
1483
|
//#region src/components/data-table/data-table.d.ts
|
|
1484
1484
|
interface DataTableProps<TData> extends React$1.ComponentProps<"div"> {
|
|
@@ -1491,7 +1491,7 @@ declare function DataTable<TData>({
|
|
|
1491
1491
|
children,
|
|
1492
1492
|
className,
|
|
1493
1493
|
...props
|
|
1494
|
-
}: DataTableProps<TData>):
|
|
1494
|
+
}: DataTableProps<TData>): react_jsx_runtime3.JSX.Element;
|
|
1495
1495
|
//#endregion
|
|
1496
1496
|
//#region src/components/data-table/data-table-advanced-toolbar.d.ts
|
|
1497
1497
|
interface DataTableAdvancedToolbarProps<TData> extends React$1.ComponentProps<"div"> {
|
|
@@ -1502,7 +1502,7 @@ declare function DataTableAdvancedToolbar<TData>({
|
|
|
1502
1502
|
children,
|
|
1503
1503
|
className,
|
|
1504
1504
|
...props
|
|
1505
|
-
}: DataTableAdvancedToolbarProps<TData>):
|
|
1505
|
+
}: DataTableAdvancedToolbarProps<TData>): react_jsx_runtime3.JSX.Element;
|
|
1506
1506
|
//#endregion
|
|
1507
1507
|
//#region src/components/data-table/data-table-column-header.d.ts
|
|
1508
1508
|
interface DataTableColumnHeaderProps<TData, TValue> extends React.ComponentProps<typeof DropdownMenuTrigger> {
|
|
@@ -1514,7 +1514,7 @@ declare function DataTableColumnHeader<TData, TValue>({
|
|
|
1514
1514
|
label,
|
|
1515
1515
|
className,
|
|
1516
1516
|
...props
|
|
1517
|
-
}: DataTableColumnHeaderProps<TData, TValue>):
|
|
1517
|
+
}: DataTableColumnHeaderProps<TData, TValue>): react_jsx_runtime3.JSX.Element;
|
|
1518
1518
|
//#endregion
|
|
1519
1519
|
//#region src/components/data-table/data-table-faceted-filter.d.ts
|
|
1520
1520
|
interface DataTableFacetedFilterProps<TData, TValue> {
|
|
@@ -1528,7 +1528,7 @@ declare function DataTableFacetedFilter<TData, TValue>({
|
|
|
1528
1528
|
title,
|
|
1529
1529
|
options,
|
|
1530
1530
|
multiple
|
|
1531
|
-
}: DataTableFacetedFilterProps<TData, TValue>):
|
|
1531
|
+
}: DataTableFacetedFilterProps<TData, TValue>): react_jsx_runtime3.JSX.Element;
|
|
1532
1532
|
//#endregion
|
|
1533
1533
|
//#region src/components/data-table/data-table-pagination.d.ts
|
|
1534
1534
|
interface DataTablePaginationProps<TData> extends React.ComponentProps<"div"> {
|
|
@@ -1540,7 +1540,7 @@ declare function DataTablePagination<TData>({
|
|
|
1540
1540
|
pageSizeOptions,
|
|
1541
1541
|
className,
|
|
1542
1542
|
...props
|
|
1543
|
-
}: DataTablePaginationProps<TData>):
|
|
1543
|
+
}: DataTablePaginationProps<TData>): react_jsx_runtime3.JSX.Element;
|
|
1544
1544
|
//#endregion
|
|
1545
1545
|
//#region src/components/data-table/data-table-toolbar.d.ts
|
|
1546
1546
|
interface DataTableToolbarProps<TData> extends React$1.ComponentProps<"div"> {
|
|
@@ -1551,7 +1551,7 @@ declare function DataTableToolbar<TData>({
|
|
|
1551
1551
|
children,
|
|
1552
1552
|
className,
|
|
1553
1553
|
...props
|
|
1554
|
-
}: DataTableToolbarProps<TData>):
|
|
1554
|
+
}: DataTableToolbarProps<TData>): react_jsx_runtime3.JSX.Element;
|
|
1555
1555
|
//#endregion
|
|
1556
1556
|
//#region src/components/data-table/data-table-view-options.d.ts
|
|
1557
1557
|
interface DataTableViewOptionsProps<TData> extends React$1.ComponentProps<typeof PopoverContent> {
|
|
@@ -1562,7 +1562,7 @@ declare function DataTableViewOptions<TData>({
|
|
|
1562
1562
|
table,
|
|
1563
1563
|
disabled,
|
|
1564
1564
|
...props
|
|
1565
|
-
}: DataTableViewOptionsProps<TData>):
|
|
1565
|
+
}: DataTableViewOptionsProps<TData>): react_jsx_runtime3.JSX.Element;
|
|
1566
1566
|
//#endregion
|
|
1567
1567
|
//#region src/lib/crud-actions.d.ts
|
|
1568
1568
|
type CrudActionZone = 'toolbar' | 'row' | 'batch';
|
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import * as _tanstack_react_table0 from "@tanstack/react-table";
|
|
|
3
3
|
import { Column, ColumnDef, ColumnSort, Row, RowData, Table, TableOptions, TableState } from "@tanstack/react-table";
|
|
4
4
|
import { DropdownMenuTrigger, PopoverContent } from "@wordrhyme/shadcn";
|
|
5
5
|
import { ClassValue } from "clsx";
|
|
6
|
-
import * as
|
|
6
|
+
import * as react_jsx_runtime2 from "react/jsx-runtime";
|
|
7
7
|
import { MultiCombobox, MultiComboboxOption, MultiComboboxProps, MultiComboboxTriggerRenderProps, Select, SelectMode, SelectOption, SelectProps, SelectSearchableDynamicProps, SelectSearchableMultipleProps, SelectSearchableProps, SelectSearchableSingleProps, SelectSimpleProps, SelectTriggerRenderProps } from "@wordrhyme/shadcn-ui";
|
|
8
8
|
import { z } from "zod";
|
|
9
9
|
import { JsonSchemaFormScope } from "@wordrhyme/formily-shadcn";
|
|
@@ -381,7 +381,7 @@ declare function AutoTableActionBar<TData>({
|
|
|
381
381
|
extraActions,
|
|
382
382
|
actions,
|
|
383
383
|
deleteConfirmation
|
|
384
|
-
}: AutoTableActionBarProps<TData>):
|
|
384
|
+
}: AutoTableActionBarProps<TData>): react_jsx_runtime2.JSX.Element;
|
|
385
385
|
//#endregion
|
|
386
386
|
//#region src/lib/schema-bridge/types.d.ts
|
|
387
387
|
/**
|
|
@@ -557,7 +557,7 @@ declare function AutoTable<T extends z.ZodObject<z.ZodRawShape>>({
|
|
|
557
557
|
onSelectedCountChange,
|
|
558
558
|
onSelectedRowsChange,
|
|
559
559
|
getSelectedRows
|
|
560
|
-
}: AutoTableProps<T>):
|
|
560
|
+
}: AutoTableProps<T>): react_jsx_runtime2.JSX.Element;
|
|
561
561
|
//#endregion
|
|
562
562
|
//#region src/i18n/locale.d.ts
|
|
563
563
|
/**
|
|
@@ -1037,7 +1037,7 @@ declare function AutoCrudTable<TSchema extends z.ZodObject<z.ZodRawShape>>({
|
|
|
1037
1037
|
toolbarActions,
|
|
1038
1038
|
locale: localeProp,
|
|
1039
1039
|
onCreate
|
|
1040
|
-
}: AutoCrudTableProps<TSchema>):
|
|
1040
|
+
}: AutoCrudTableProps<TSchema>): react_jsx_runtime2.JSX.Element;
|
|
1041
1041
|
//#endregion
|
|
1042
1042
|
//#region src/components/auto-crud/auto-form.d.ts
|
|
1043
1043
|
interface AutoFormProps<T extends z.ZodObject<z.ZodRawShape>> {
|
|
@@ -1076,7 +1076,7 @@ declare function AutoFormInner<T extends z.ZodObject<z.ZodRawShape>>({
|
|
|
1076
1076
|
labelAlign,
|
|
1077
1077
|
labelWidth,
|
|
1078
1078
|
showSubmitButton
|
|
1079
|
-
}: AutoFormProps<T>, ref: React.Ref<AutoFormRef>):
|
|
1079
|
+
}: AutoFormProps<T>, ref: React.Ref<AutoFormRef>): react_jsx_runtime2.JSX.Element;
|
|
1080
1080
|
declare const AutoForm: <T extends z.ZodObject<z.ZodRawShape>>(props: AutoFormProps<T> & {
|
|
1081
1081
|
ref?: React.Ref<AutoFormRef>;
|
|
1082
1082
|
}) => ReturnType<typeof AutoFormInner>;
|
|
@@ -1392,7 +1392,7 @@ declare function AutoTableSimpleFilters<TData>({
|
|
|
1392
1392
|
filters: externalFilters,
|
|
1393
1393
|
onFiltersChange,
|
|
1394
1394
|
leading
|
|
1395
|
-
}: AutoTableSimpleFiltersProps<TData>):
|
|
1395
|
+
}: AutoTableSimpleFiltersProps<TData>): react_jsx_runtime2.JSX.Element | null;
|
|
1396
1396
|
//#endregion
|
|
1397
1397
|
//#region src/components/auto-crud/form-modal.d.ts
|
|
1398
1398
|
type ModalVariant = "dialog" | "sheet";
|
|
@@ -1436,7 +1436,7 @@ declare function CrudFormModal<T extends z.ZodObject<z.ZodRawShape>>({
|
|
|
1436
1436
|
labelAlign,
|
|
1437
1437
|
labelWidth,
|
|
1438
1438
|
className
|
|
1439
|
-
}: CrudFormModalProps<T>):
|
|
1439
|
+
}: CrudFormModalProps<T>): react_jsx_runtime2.JSX.Element;
|
|
1440
1440
|
//#endregion
|
|
1441
1441
|
//#region src/components/auto-crud/import-dialog.d.ts
|
|
1442
1442
|
interface ImportDialogProps {
|
|
@@ -1458,7 +1458,7 @@ declare function ImportDialog({
|
|
|
1458
1458
|
columns,
|
|
1459
1459
|
title,
|
|
1460
1460
|
locale
|
|
1461
|
-
}: ImportDialogProps):
|
|
1461
|
+
}: ImportDialogProps): react_jsx_runtime2.JSX.Element;
|
|
1462
1462
|
//#endregion
|
|
1463
1463
|
//#region src/components/auto-crud/export-dialog.d.ts
|
|
1464
1464
|
type ExportMode = "selected" | "filtered";
|
|
@@ -1478,7 +1478,7 @@ declare function ExportDialog({
|
|
|
1478
1478
|
selectedCount,
|
|
1479
1479
|
onExport,
|
|
1480
1480
|
canExportFiltered
|
|
1481
|
-
}: ExportDialogProps):
|
|
1481
|
+
}: ExportDialogProps): react_jsx_runtime2.JSX.Element;
|
|
1482
1482
|
//#endregion
|
|
1483
1483
|
//#region src/components/data-table/data-table.d.ts
|
|
1484
1484
|
interface DataTableProps<TData> extends React$1.ComponentProps<"div"> {
|
|
@@ -1491,7 +1491,7 @@ declare function DataTable<TData>({
|
|
|
1491
1491
|
children,
|
|
1492
1492
|
className,
|
|
1493
1493
|
...props
|
|
1494
|
-
}: DataTableProps<TData>):
|
|
1494
|
+
}: DataTableProps<TData>): react_jsx_runtime2.JSX.Element;
|
|
1495
1495
|
//#endregion
|
|
1496
1496
|
//#region src/components/data-table/data-table-advanced-toolbar.d.ts
|
|
1497
1497
|
interface DataTableAdvancedToolbarProps<TData> extends React$1.ComponentProps<"div"> {
|
|
@@ -1502,7 +1502,7 @@ declare function DataTableAdvancedToolbar<TData>({
|
|
|
1502
1502
|
children,
|
|
1503
1503
|
className,
|
|
1504
1504
|
...props
|
|
1505
|
-
}: DataTableAdvancedToolbarProps<TData>):
|
|
1505
|
+
}: DataTableAdvancedToolbarProps<TData>): react_jsx_runtime2.JSX.Element;
|
|
1506
1506
|
//#endregion
|
|
1507
1507
|
//#region src/components/data-table/data-table-column-header.d.ts
|
|
1508
1508
|
interface DataTableColumnHeaderProps<TData, TValue> extends React.ComponentProps<typeof DropdownMenuTrigger> {
|
|
@@ -1514,7 +1514,7 @@ declare function DataTableColumnHeader<TData, TValue>({
|
|
|
1514
1514
|
label,
|
|
1515
1515
|
className,
|
|
1516
1516
|
...props
|
|
1517
|
-
}: DataTableColumnHeaderProps<TData, TValue>):
|
|
1517
|
+
}: DataTableColumnHeaderProps<TData, TValue>): react_jsx_runtime2.JSX.Element;
|
|
1518
1518
|
//#endregion
|
|
1519
1519
|
//#region src/components/data-table/data-table-faceted-filter.d.ts
|
|
1520
1520
|
interface DataTableFacetedFilterProps<TData, TValue> {
|
|
@@ -1528,7 +1528,7 @@ declare function DataTableFacetedFilter<TData, TValue>({
|
|
|
1528
1528
|
title,
|
|
1529
1529
|
options,
|
|
1530
1530
|
multiple
|
|
1531
|
-
}: DataTableFacetedFilterProps<TData, TValue>):
|
|
1531
|
+
}: DataTableFacetedFilterProps<TData, TValue>): react_jsx_runtime2.JSX.Element;
|
|
1532
1532
|
//#endregion
|
|
1533
1533
|
//#region src/components/data-table/data-table-pagination.d.ts
|
|
1534
1534
|
interface DataTablePaginationProps<TData> extends React.ComponentProps<"div"> {
|
|
@@ -1540,7 +1540,7 @@ declare function DataTablePagination<TData>({
|
|
|
1540
1540
|
pageSizeOptions,
|
|
1541
1541
|
className,
|
|
1542
1542
|
...props
|
|
1543
|
-
}: DataTablePaginationProps<TData>):
|
|
1543
|
+
}: DataTablePaginationProps<TData>): react_jsx_runtime2.JSX.Element;
|
|
1544
1544
|
//#endregion
|
|
1545
1545
|
//#region src/components/data-table/data-table-toolbar.d.ts
|
|
1546
1546
|
interface DataTableToolbarProps<TData> extends React$1.ComponentProps<"div"> {
|
|
@@ -1551,7 +1551,7 @@ declare function DataTableToolbar<TData>({
|
|
|
1551
1551
|
children,
|
|
1552
1552
|
className,
|
|
1553
1553
|
...props
|
|
1554
|
-
}: DataTableToolbarProps<TData>):
|
|
1554
|
+
}: DataTableToolbarProps<TData>): react_jsx_runtime2.JSX.Element;
|
|
1555
1555
|
//#endregion
|
|
1556
1556
|
//#region src/components/data-table/data-table-view-options.d.ts
|
|
1557
1557
|
interface DataTableViewOptionsProps<TData> extends React$1.ComponentProps<typeof PopoverContent> {
|
|
@@ -1562,7 +1562,7 @@ declare function DataTableViewOptions<TData>({
|
|
|
1562
1562
|
table,
|
|
1563
1563
|
disabled,
|
|
1564
1564
|
...props
|
|
1565
|
-
}: DataTableViewOptionsProps<TData>):
|
|
1565
|
+
}: DataTableViewOptionsProps<TData>): react_jsx_runtime2.JSX.Element;
|
|
1566
1566
|
//#endregion
|
|
1567
1567
|
//#region src/lib/crud-actions.d.ts
|
|
1568
1568
|
type CrudActionZone = 'toolbar' | 'row' | 'batch';
|
package/dist/index.js
CHANGED
|
@@ -6632,13 +6632,16 @@ function AutoCrudTable({ id, title, description, schema, resource, fields, table
|
|
|
6632
6632
|
const renderBuiltinButton = (type, overrides) => {
|
|
6633
6633
|
if (type === "refresh") {
|
|
6634
6634
|
const onRefresh = overrides?.onClick ?? resource.handlers.refresh;
|
|
6635
|
+
const label = overrides?.label ?? locale.toolbar.refresh;
|
|
6635
6636
|
if (!onRefresh) return null;
|
|
6636
|
-
return /* @__PURE__ */
|
|
6637
|
+
return /* @__PURE__ */ jsx(Button, {
|
|
6637
6638
|
variant: "outline",
|
|
6638
|
-
size: "sm",
|
|
6639
|
+
size: "icon-sm",
|
|
6640
|
+
"aria-label": label,
|
|
6641
|
+
title: label,
|
|
6639
6642
|
onClick: onRefresh,
|
|
6640
6643
|
disabled: resource.tableData.isFetching,
|
|
6641
|
-
children:
|
|
6644
|
+
children: /* @__PURE__ */ jsx(RefreshCw, { className: resource.tableData.isFetching ? "h-4 w-4 animate-spin" : "h-4 w-4" })
|
|
6642
6645
|
}, "refresh");
|
|
6643
6646
|
}
|
|
6644
6647
|
if (type === "import" && canImport) return /* @__PURE__ */ jsxs(Button, {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordrhyme/auto-crud",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.4",
|
|
5
5
|
"description": "Schema-first CRUD components with auto-generated tables and forms",
|
|
6
6
|
"author": "wordrhyme",
|
|
7
7
|
"license": "MIT",
|
|
@@ -62,9 +62,9 @@
|
|
|
62
62
|
"nanoid": "^5.1.6",
|
|
63
63
|
"tailwind-merge": "^3.5.0",
|
|
64
64
|
"vaul": "^1.1.2",
|
|
65
|
-
"@wordrhyme/formily-shadcn": "1.12.9",
|
|
66
65
|
"@wordrhyme/shadcn": "1.3.2",
|
|
67
|
-
"@wordrhyme/shadcn-ui": "1.32.
|
|
66
|
+
"@wordrhyme/shadcn-ui": "1.32.3",
|
|
67
|
+
"@wordrhyme/formily-shadcn": "1.12.9"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
70
|
"@tanstack/react-query": "^5.90.15",
|
|
@@ -82,11 +82,11 @@
|
|
|
82
82
|
"tsdown": "^0.15.12",
|
|
83
83
|
"typescript": "^5.9.3",
|
|
84
84
|
"vitest": "^3.2.4",
|
|
85
|
-
"@internal/eslint-config": "0.3.0",
|
|
86
85
|
"@internal/prettier-config": "0.0.1",
|
|
86
|
+
"@internal/eslint-config": "0.3.0",
|
|
87
87
|
"@internal/tsconfig": "0.1.0",
|
|
88
|
-
"@internal/
|
|
89
|
-
"@internal/
|
|
88
|
+
"@internal/vitest-config": "0.1.0",
|
|
89
|
+
"@internal/tsdown-config": "0.1.0"
|
|
90
90
|
},
|
|
91
91
|
"prettier": "@internal/prettier-config",
|
|
92
92
|
"scripts": {
|