ingred-ui 33.2.0 → 33.2.1
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/components/DataTable2/styled.d.ts +1 -1
- package/dist/components/DataTable2/utils/toolbarUtils.d.ts +2 -0
- package/dist/index.es.js +412 -414
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +412 -414
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -90,7 +90,7 @@ export declare const DataTable2ColumnInner: import("styled-components/dist/types
|
|
|
90
90
|
export declare const DragHandle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, never> & Partial<Pick<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, never>>> & string;
|
|
91
91
|
export declare const DragArea: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>> & string;
|
|
92
92
|
export declare const DataTable2ColumnLabel: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>> & string;
|
|
93
|
-
export declare const
|
|
93
|
+
export declare const SortableColumnLabel: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, never> & Partial<Pick<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, never>>> & string;
|
|
94
94
|
export declare const DataTable2Row: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, "isSmallLayout"> & {
|
|
95
95
|
isSmallLayout: boolean;
|
|
96
96
|
}, never> & Partial<Pick<import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, "isSmallLayout"> & {
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import type { Theme } from "../../../themes/createTheme";
|
|
3
3
|
import type { TableAction } from "../types/tableActions";
|
|
4
|
+
/** ページング表示用。4桁以上(1000以上)のとき千の位区切りにカンマを入れる。 */
|
|
5
|
+
export declare const formatPaginationCount: (count: number) => string;
|
|
4
6
|
/**
|
|
5
7
|
* アイコンの色を動的に変更するヘルパー関数
|
|
6
8
|
*
|