@wordrhyme/auto-crud 1.3.3 → 1.3.5
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.d.cts +19 -19
- package/dist/index.d.ts +19 -19
- package/package.json +4 -4
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>;
|
|
@@ -1290,12 +1290,12 @@ declare const filterItemSchema: z.ZodObject<{
|
|
|
1290
1290
|
variant: z.ZodEnum<{
|
|
1291
1291
|
number: "number";
|
|
1292
1292
|
boolean: "boolean";
|
|
1293
|
-
date: "date";
|
|
1294
1293
|
text: "text";
|
|
1294
|
+
range: "range";
|
|
1295
|
+
date: "date";
|
|
1296
|
+
dateRange: "dateRange";
|
|
1295
1297
|
select: "select";
|
|
1296
1298
|
multiSelect: "multiSelect";
|
|
1297
|
-
dateRange: "dateRange";
|
|
1298
|
-
range: "range";
|
|
1299
1299
|
}>;
|
|
1300
1300
|
operator: z.ZodEnum<{
|
|
1301
1301
|
iLike: "iLike";
|
|
@@ -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>;
|
|
@@ -1290,12 +1290,12 @@ declare const filterItemSchema: z.ZodObject<{
|
|
|
1290
1290
|
variant: z.ZodEnum<{
|
|
1291
1291
|
number: "number";
|
|
1292
1292
|
boolean: "boolean";
|
|
1293
|
-
date: "date";
|
|
1294
1293
|
text: "text";
|
|
1294
|
+
range: "range";
|
|
1295
|
+
date: "date";
|
|
1296
|
+
dateRange: "dateRange";
|
|
1295
1297
|
select: "select";
|
|
1296
1298
|
multiSelect: "multiSelect";
|
|
1297
|
-
dateRange: "dateRange";
|
|
1298
|
-
range: "range";
|
|
1299
1299
|
}>;
|
|
1300
1300
|
operator: z.ZodEnum<{
|
|
1301
1301
|
iLike: "iLike";
|
|
@@ -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/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.5",
|
|
5
5
|
"description": "Schema-first CRUD components with auto-generated tables and forms",
|
|
6
6
|
"author": "wordrhyme",
|
|
7
7
|
"license": "MIT",
|
|
@@ -63,8 +63,8 @@
|
|
|
63
63
|
"tailwind-merge": "^3.5.0",
|
|
64
64
|
"vaul": "^1.1.2",
|
|
65
65
|
"@wordrhyme/shadcn": "1.3.2",
|
|
66
|
-
"@wordrhyme/
|
|
67
|
-
"@wordrhyme/shadcn
|
|
66
|
+
"@wordrhyme/shadcn-ui": "1.32.4",
|
|
67
|
+
"@wordrhyme/formily-shadcn": "1.12.9"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
70
|
"@tanstack/react-query": "^5.90.15",
|
|
@@ -84,8 +84,8 @@
|
|
|
84
84
|
"vitest": "^3.2.4",
|
|
85
85
|
"@internal/eslint-config": "0.3.0",
|
|
86
86
|
"@internal/tsconfig": "0.1.0",
|
|
87
|
-
"@internal/prettier-config": "0.0.1",
|
|
88
87
|
"@internal/tsdown-config": "0.1.0",
|
|
88
|
+
"@internal/prettier-config": "0.0.1",
|
|
89
89
|
"@internal/vitest-config": "0.1.0"
|
|
90
90
|
},
|
|
91
91
|
"prettier": "@internal/prettier-config",
|