@overmap-ai/blocks 1.0.27-custom-table-component.3 → 1.0.27-custom-table-component.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/Breadcrumb/context.d.ts +1 -1
- package/dist/Dialogs/AlertDialog/typings.d.ts +1 -1
- package/dist/Pagination/PaginationControls.d.ts +2 -2
- package/dist/Pagination/hooks.d.ts +1 -1
- package/dist/Pagination/index.d.ts +3 -0
- package/dist/Select/Select.d.ts +1 -1
- package/dist/Select/typings.d.ts +1 -1
- package/dist/Table/index.d.ts +1 -1
- package/dist/blocks.js +3420 -3418
- package/dist/blocks.js.map +1 -1
- package/dist/blocks.umd.cjs +3410 -3408
- package/dist/blocks.umd.cjs.map +1 -1
- package/dist/index.d.ts +29 -28
- package/dist/style.css +351 -351
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AlertDialog } from "@radix-ui/themes";
|
|
2
2
|
import { ReactNode } from "react";
|
|
3
3
|
import { CloseDialog } from "../typings";
|
|
4
|
-
import { Severity } from "../../typings
|
|
4
|
+
import { Severity } from "../../typings";
|
|
5
5
|
interface AlertDialogBaseProps {
|
|
6
6
|
open: boolean;
|
|
7
7
|
setOpen: (open: boolean) => void;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { PaginationStatus } from "./typings
|
|
3
|
-
import { Size } from "../typings
|
|
2
|
+
import { PaginationStatus } from "./typings";
|
|
3
|
+
import { Size } from "../typings";
|
|
4
4
|
type PaginationControlsProps = Pick<PaginationStatus<unknown>, "currentPage" | "setCurrentPage" | "visiblePages"> & {
|
|
5
5
|
size: Size;
|
|
6
6
|
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { PaginationStatus } from "./typings
|
|
1
|
+
import { PaginationStatus } from "./typings";
|
|
2
2
|
export declare const usePagination: <TItem>(items: TItem[], itemsPerPage: number, maxVisiblePages: number) => PaginationStatus<TItem>;
|
package/dist/Select/Select.d.ts
CHANGED
package/dist/Select/typings.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ComponentProps, ReactNode } from "react";
|
|
2
2
|
import { Responsive, Select as RadixSelect } from "@radix-ui/themes";
|
|
3
|
-
import { Severity, Size, Variant } from "../typings
|
|
3
|
+
import { Severity, Size, Variant } from "../typings";
|
|
4
4
|
type RadixSelectItemProps = ComponentProps<typeof RadixSelect.Item>;
|
|
5
5
|
type RadixSelectContentProps = ComponentProps<typeof RadixSelect.Content>;
|
|
6
6
|
export interface SelectItemProps extends Omit<RadixSelectItemProps, "asChild" | "textValue"> {
|
package/dist/Table/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * from "./Table";
|
|
2
|
-
export * from "./typings
|
|
2
|
+
export * from "./typings";
|