@agilekit/ui 0.0.495-alpha.0 → 0.0.497-alpha.0
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/lib/index.js +1 -1
- package/lib/index.js.LICENSE.txt +22 -0
- package/lib/src/components/AlertInline/AlertInline.d.ts +3 -2
- package/lib/src/components/DataTable/DataTable.d.ts +48 -0
- package/lib/src/components/DataTable/DataTable.helpers.d.ts +7 -0
- package/lib/src/components/DataTable/components/ColumnActions/ColumnActions.d.ts +7 -0
- package/lib/src/components/DataTable/components/ColumnFilter/ColumnFilter.d.ts +13 -0
- package/lib/src/components/DataTable/components/ColumnHeader/ColumnHeader.d.ts +17 -0
- package/lib/src/components/DataTable/components/ColumnResizeHandle/ColumnResizeHandle.d.ts +9 -0
- package/lib/src/components/DataTable/components/ColumnSearch/ColumnSearch.d.ts +8 -0
- package/lib/src/components/DataTable/components/DynamicCell/DynamicCell.d.ts +9 -0
- package/lib/src/components/DataTable/components/DynamicCell/DynamicCell.helpers.d.ts +1 -0
- package/lib/src/components/DataTable/components/EditCell/EditCell.d.ts +8 -0
- package/lib/src/components/DataTable/components/InfoCell/InfoCell.d.ts +6 -0
- package/lib/src/components/DataTable/components/MainBody/MainBody.d.ts +13 -0
- package/lib/src/components/DataTable/components/Table/Table.d.ts +9 -0
- package/lib/src/components/DataTable/components/TableBody/TableBody.d.ts +3 -0
- package/lib/src/components/DataTable/components/TableCaption/TableCaption.d.ts +3 -0
- package/lib/src/components/DataTable/components/TableCell/TableCell.d.ts +7 -0
- package/lib/src/components/DataTable/components/TableFooter/TableFooter.d.ts +3 -0
- package/lib/src/components/DataTable/components/TableHead/TableHead.d.ts +7 -0
- package/lib/src/components/DataTable/components/TableHeader/TableHeader.d.ts +3 -0
- package/lib/src/components/DataTable/components/TableRow/TableRow.d.ts +3 -0
- package/lib/src/components/DataTable/components/index.d.ts +11 -0
- package/lib/src/components/MultiSelect/MultiSelect.styles.d.ts +1 -1
- package/lib/src/components/MultiTextField/MultiTextField.styles.d.ts +1 -1
- package/lib/src/components/Select/Select.styles.d.ts +1 -1
- package/lib/src/components/Slider/Slider.d.ts +1 -1
- package/lib/src/components/Switch/Switch.d.ts +1 -1
- package/lib/src/components/TextField/TextField.styles.d.ts +2 -2
- package/lib/src/index.d.ts +1 -0
- package/package.json +11 -2
package/lib/index.js.LICENSE.txt
CHANGED
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* react-table
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) TanStack
|
|
5
|
+
*
|
|
6
|
+
* This source code is licensed under the MIT license found in the
|
|
7
|
+
* LICENSE.md file in the root directory of this source tree.
|
|
8
|
+
*
|
|
9
|
+
* @license MIT
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* table-core
|
|
14
|
+
*
|
|
15
|
+
* Copyright (c) TanStack
|
|
16
|
+
*
|
|
17
|
+
* This source code is licensed under the MIT license found in the
|
|
18
|
+
* LICENSE.md file in the root directory of this source tree.
|
|
19
|
+
*
|
|
20
|
+
* @license MIT
|
|
21
|
+
*/
|
|
22
|
+
|
|
1
23
|
/**
|
|
2
24
|
* @license React
|
|
3
25
|
* react-jsx-runtime.production.min.js
|
|
@@ -3,9 +3,10 @@ interface AlertInlineProps {
|
|
|
3
3
|
children?: React.ReactNode;
|
|
4
4
|
actions?: React.ReactNode;
|
|
5
5
|
title: string;
|
|
6
|
-
type: 'info' | 'warning' | 'error' | 'success' | 'discovery';
|
|
6
|
+
type: 'info' | 'warning' | 'error' | 'success' | 'discovery' | 'neutral';
|
|
7
7
|
size?: 'small' | 'medium';
|
|
8
8
|
icon?: React.ReactNode;
|
|
9
|
+
hideIcon?: boolean;
|
|
9
10
|
}
|
|
10
|
-
declare const AlertInline: ({ children, actions, type, size, icon, title }: AlertInlineProps) => React.JSX.Element;
|
|
11
|
+
declare const AlertInline: ({ children, actions, type, size, icon, title, hideIcon }: AlertInlineProps) => React.JSX.Element;
|
|
11
12
|
export default AlertInline;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Column, ColumnDef, SortingState, useReactTable, ColumnPinningState, RowSelectionState, OnChangeFn, PaginationState, ColumnFiltersState } from '@tanstack/react-table';
|
|
3
|
+
import { TableColor } from './DataTable.helpers';
|
|
4
|
+
import { ContainerCellProps } from './components/MainBody/MainBody';
|
|
5
|
+
declare module '@tanstack/react-table' {
|
|
6
|
+
interface ColumnMeta<TData, TValue> {
|
|
7
|
+
containerCell?: React.ComponentType<ContainerCellProps>;
|
|
8
|
+
filterComponent?: React.ComponentType<{
|
|
9
|
+
column: Column<TData, TValue>;
|
|
10
|
+
}>;
|
|
11
|
+
filterType?: string;
|
|
12
|
+
customWidth?: number;
|
|
13
|
+
noCellPadding?: boolean;
|
|
14
|
+
actions?: any[];
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
export interface DataTableProps<TData, TValue> {
|
|
18
|
+
columns?: ColumnDef<TData, TValue>[];
|
|
19
|
+
data?: TData[];
|
|
20
|
+
columnPinning?: ColumnPinningState;
|
|
21
|
+
columnVisibility?: {
|
|
22
|
+
[key: string]: boolean;
|
|
23
|
+
};
|
|
24
|
+
enableHorizontalBorders?: boolean;
|
|
25
|
+
getRowId?: (row: TData) => string;
|
|
26
|
+
getSubRows?: ((originalRow: TData, index: number) => TData[] | undefined) | undefined;
|
|
27
|
+
isColumnResizable?: boolean;
|
|
28
|
+
isHeaderSticky?: boolean;
|
|
29
|
+
color?: TableColor;
|
|
30
|
+
pageIndex?: number;
|
|
31
|
+
pageSize?: number;
|
|
32
|
+
rowSelectionState?: RowSelectionState;
|
|
33
|
+
sorting?: SortingState;
|
|
34
|
+
onSortingChange?: (sorting: SortingState) => void;
|
|
35
|
+
onRowSelectionChange?: OnChangeFn<RowSelectionState>;
|
|
36
|
+
pagination?: PaginationState;
|
|
37
|
+
onPaginationChange?: OnChangeFn<PaginationState>;
|
|
38
|
+
globalFilter?: string;
|
|
39
|
+
onGlobalFilterChange?: OnChangeFn<string>;
|
|
40
|
+
onTableInstanceChange?: (table: ReturnType<typeof useReactTable<TData>>) => void;
|
|
41
|
+
onColumnFiltersChange?: OnChangeFn<ColumnFiltersState>;
|
|
42
|
+
tableInstance?: ReturnType<typeof useReactTable<TData>>;
|
|
43
|
+
tableContainerStyle?: React.CSSProperties;
|
|
44
|
+
hasDraggableRows?: boolean;
|
|
45
|
+
shadowDepth?: 'none' | '100' | '200' | '300' | '400' | '500';
|
|
46
|
+
}
|
|
47
|
+
declare const DataTable: <TData, TValue>({ columns, data, columnPinning, columnVisibility, enableHorizontalBorders, isColumnResizable, isHeaderSticky, color, getRowId, getSubRows, sorting: controlledSorting, onSortingChange, onRowSelectionChange, rowSelectionState, pagination: controlledPagination, pageIndex, pageSize, onPaginationChange, globalFilter: controlledGlobalFilter, onGlobalFilterChange, onColumnFiltersChange, onTableInstanceChange, tableInstance, tableContainerStyle, hasDraggableRows, shadowDepth }: DataTableProps<TData, TValue>) => React.JSX.Element;
|
|
48
|
+
export default DataTable;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Column } from '@tanstack/react-table';
|
|
2
|
+
import { CSSProperties } from 'react';
|
|
3
|
+
export type TableColor = 'default' | 'clean' | 'neutral-brand' | 'neutral' | 'brand' | 'neutral-variant' | 'display-brand' | 'display-brand-variant' | 'display-clean' | 'display-neutral' | 'display-neutral-variant';
|
|
4
|
+
export declare const getCommonPinningStyles: (column: Column<any>) => {
|
|
5
|
+
classNames: string;
|
|
6
|
+
styles: CSSProperties;
|
|
7
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Column } from '@tanstack/table-core';
|
|
3
|
+
interface ColumnActionsProps<TData, TValue> {
|
|
4
|
+
column: Column<TData, TValue>;
|
|
5
|
+
}
|
|
6
|
+
declare const ColumnActions: <TData, TValue>({ column }: ColumnActionsProps<TData, TValue>) => React.JSX.Element;
|
|
7
|
+
export default ColumnActions;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Column } from '@tanstack/react-table';
|
|
3
|
+
interface ColumnFilterProps<TData, TValue> {
|
|
4
|
+
column?: Column<TData, TValue>;
|
|
5
|
+
title?: string;
|
|
6
|
+
options: {
|
|
7
|
+
label: string;
|
|
8
|
+
value: string;
|
|
9
|
+
icon?: React.ReactNode;
|
|
10
|
+
}[];
|
|
11
|
+
}
|
|
12
|
+
declare const ColumnFilter: <TData, TValue>({ column, options }: ColumnFilterProps<TData, TValue>) => React.JSX.Element;
|
|
13
|
+
export default ColumnFilter;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Column } from '@tanstack/react-table';
|
|
3
|
+
export type ColumnMeta<TData, TValue> = {
|
|
4
|
+
filterType?: 'search' | 'filter';
|
|
5
|
+
customWidth?: number;
|
|
6
|
+
noCellPadding?: boolean;
|
|
7
|
+
actions?: any;
|
|
8
|
+
filterComponent?: React.ComponentType<{
|
|
9
|
+
column: Column<TData, TValue>;
|
|
10
|
+
}>;
|
|
11
|
+
};
|
|
12
|
+
export interface ColumnHeaderProps<TData, TValue> extends React.HTMLAttributes<HTMLDivElement> {
|
|
13
|
+
column: Column<TData, TValue>;
|
|
14
|
+
children: React.ReactNode;
|
|
15
|
+
}
|
|
16
|
+
declare const ColumnHeader: <TData, TValue>({ column, children }: ColumnHeaderProps<TData, TValue>) => React.JSX.Element;
|
|
17
|
+
export default ColumnHeader;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ColumnResizeMode, Header, Table } from '@tanstack/react-table';
|
|
3
|
+
interface ColumnResizeHandleProps {
|
|
4
|
+
header: Header<any, any>;
|
|
5
|
+
table: Table<any>;
|
|
6
|
+
columnResizeMode: ColumnResizeMode;
|
|
7
|
+
}
|
|
8
|
+
declare const ColumnResizeHandle: React.FC<ColumnResizeHandleProps>;
|
|
9
|
+
export default ColumnResizeHandle;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Column } from '@tanstack/react-table';
|
|
3
|
+
interface ColumnSearchProps<TData, TValue> {
|
|
4
|
+
column?: Column<TData, TValue>;
|
|
5
|
+
title?: string;
|
|
6
|
+
}
|
|
7
|
+
declare const ColumnSearch: <TData, TValue>({ column }: ColumnSearchProps<TData, TValue>) => React.JSX.Element;
|
|
8
|
+
export default ColumnSearch;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const findTableCellParent: (element: HTMLElement | null, classSelector: string) => HTMLElement | null;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IEvent } from '../../../OutsideClickDetector/OutsideClickDetector';
|
|
3
|
+
interface EditCellProps {
|
|
4
|
+
children?: React.ReactNode;
|
|
5
|
+
onOutsideClick?: (event: IEvent) => void;
|
|
6
|
+
}
|
|
7
|
+
declare const EditCell: React.FC<EditCellProps>;
|
|
8
|
+
export default EditCell;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Table, Cell, Row, Column, RowData } from '@tanstack/react-table';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
export interface MainTableBodyProps {
|
|
4
|
+
table: Table<any>;
|
|
5
|
+
hasDraggableRows?: boolean;
|
|
6
|
+
}
|
|
7
|
+
export type ContainerCellProps<TData extends RowData = any> = React.PropsWithChildren<{
|
|
8
|
+
cell: Cell<TData, unknown>;
|
|
9
|
+
row: Row<TData>;
|
|
10
|
+
column: Column<TData, unknown>;
|
|
11
|
+
}>;
|
|
12
|
+
declare const MainTableBody: React.FC<MainTableBodyProps>;
|
|
13
|
+
export default MainTableBody;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { TableColor } from '../../DataTable.helpers';
|
|
3
|
+
declare const Table: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableElement> & {
|
|
4
|
+
isHeaderSticky?: boolean | undefined;
|
|
5
|
+
color?: TableColor | undefined;
|
|
6
|
+
style?: React.CSSProperties | undefined;
|
|
7
|
+
shadowDepth?: "none" | "100" | "200" | "300" | "400" | "500" | undefined;
|
|
8
|
+
} & React.RefAttributes<HTMLTableElement>>;
|
|
9
|
+
export default Table;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Column } from '@tanstack/react-table';
|
|
3
|
+
interface TableCellProps extends React.TdHTMLAttributes<HTMLTableCellElement> {
|
|
4
|
+
column: Column<any, any>;
|
|
5
|
+
}
|
|
6
|
+
declare const TableCell: React.ForwardRefExoticComponent<TableCellProps & React.RefAttributes<HTMLTableCellElement>>;
|
|
7
|
+
export default TableCell;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Column } from '@tanstack/react-table';
|
|
3
|
+
interface TableHeadProps extends React.ThHTMLAttributes<HTMLTableCellElement> {
|
|
4
|
+
column: Column<any, any>;
|
|
5
|
+
}
|
|
6
|
+
declare const TableHead: React.ForwardRefExoticComponent<TableHeadProps & React.RefAttributes<HTMLTableCellElement>>;
|
|
7
|
+
export default TableHead;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export { default as ColumnHeader } from './ColumnHeader/ColumnHeader';
|
|
2
|
+
export { default as Table } from './Table/Table';
|
|
3
|
+
export { default as TableBody } from './TableBody/TableBody';
|
|
4
|
+
export { default as TableCaption } from './TableCaption/TableCaption';
|
|
5
|
+
export { default as TableCell } from './TableCell/TableCell';
|
|
6
|
+
export { default as TableHeader } from './TableHeader/TableHeader';
|
|
7
|
+
export { default as TableHead } from './TableHead/TableHead';
|
|
8
|
+
export { default as TableFooter } from './TableFooter/TableFooter';
|
|
9
|
+
export { default as TableRow } from './TableRow/TableRow';
|
|
10
|
+
export { default as ColumnResizeHandle } from './ColumnResizeHandle/ColumnResizeHandle';
|
|
11
|
+
export { default as MainBody } from './MainBody/MainBody';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const useSelectStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"icon" | "select" | "
|
|
1
|
+
declare const useSelectStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"icon" | "select" | "containerNotFull" | "asteriskRequired" | "multiselect" | "multiSelectError">;
|
|
2
2
|
export default useSelectStyles;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"helperText" | "
|
|
1
|
+
declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"helperText" | "asteriskRequired" | "inputBase" | "inputLabel" | "inputLabelFocused" | "secondaryLabel" | "withFocus">;
|
|
2
2
|
export default useStyles;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const useSelectStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"icon" | "select" | "
|
|
1
|
+
declare const useSelectStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"icon" | "select" | "containerNotFull" | "asteriskRequired">;
|
|
2
2
|
export default useSelectStyles;
|
|
@@ -25,5 +25,5 @@ declare const CustomSlider: import("react").ComponentType<Pick<{
|
|
|
25
25
|
valueLabelFormat?: string | ((value: number, index: number) => import("react").ReactNode) | undefined;
|
|
26
26
|
} & import("@material-ui/core/OverridableComponent").CommonProps<import("@material-ui/core/Slider").SliderTypeMap<{}, "span">> & Pick<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
|
|
27
27
|
ref?: ((instance: HTMLSpanElement | null) => void) | import("react").RefObject<HTMLSpanElement> | null | undefined;
|
|
28
|
-
}, "content" | "translate" | "hidden" | "ref" | "children" | "slot" | "title" | "id" | "
|
|
28
|
+
}, "content" | "translate" | "hidden" | "ref" | "children" | "slot" | "title" | "id" | "suppressHydrationWarning" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "suppressContentEditableWarning" | "accessKey" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "nonce" | "spellCheck" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is">, "color" | "content" | "scale" | "translate" | "hidden" | "style" | "disabled" | "ref" | "children" | "className" | "slot" | "title" | "track" | "id" | "innerRef" | "suppressHydrationWarning" | "lang" | "max" | "min" | "name" | "role" | "tabIndex" | "orientation" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "accessKey" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "nonce" | "spellCheck" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "value" | "step" | "getAriaLabel" | "getAriaValueText" | "marks" | "onChangeCommitted" | "ThumbComponent" | "ValueLabelComponent" | "valueLabelDisplay" | "valueLabelFormat"> & import("@material-ui/core").StyledComponentProps<"active" | "track" | "root" | "thumb" | "valueLabel" | "rail">>;
|
|
29
29
|
export default CustomSlider;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
declare const CustomSwitch: import("react").ComponentType<Pick<import("@material-ui/core/Switch").SwitchProps, "color" | "content" | "translate" | "hidden" | "size" | "style" | "icon" | "disabled" | "ref" | "className" | "form" | "slot" | "title" | "type" | "id" | "
|
|
2
|
+
declare const CustomSwitch: import("react").ComponentType<Pick<import("@material-ui/core/Switch").SwitchProps, "color" | "content" | "translate" | "hidden" | "size" | "style" | "icon" | "disabled" | "ref" | "className" | "form" | "slot" | "title" | "type" | "id" | "innerRef" | "suppressHydrationWarning" | "lang" | "name" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "accessKey" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "nonce" | "spellCheck" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "value" | "readOnly" | "required" | "checked" | "action" | "inputRef" | "inputProps" | "checkedIcon" | "disableFocusRipple" | "edge" | "buttonRef" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "onFocusVisible" | "TouchRippleProps"> & import("@material-ui/core").StyledComponentProps<"track" | "root" | "checked" | "thumb" | "switchBase">>;
|
|
3
3
|
export default CustomSwitch;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const TextInputBase: import("react").ComponentType<Pick<import("@material-ui/core").InputBaseProps, "color" | "content" | "translate" | "margin" | "hidden" | "style" | "disabled" | "ref" | "className" | "slot" | "title" | "type" | "rows" | "id" | "fullWidth" | "
|
|
2
|
+
export declare const TextInputBase: import("react").ComponentType<Pick<import("@material-ui/core").InputBaseProps, "color" | "content" | "translate" | "margin" | "hidden" | "style" | "disabled" | "ref" | "className" | "slot" | "title" | "type" | "rows" | "id" | "fullWidth" | "error" | "innerRef" | "suppressHydrationWarning" | "lang" | "name" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "accessKey" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "nonce" | "spellCheck" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "value" | "autoComplete" | "placeholder" | "readOnly" | "required" | "inputRef" | "inputProps" | "multiline" | "endAdornment" | "inputComponent" | "renderSuffix" | "rowsMax" | "rowsMin" | "maxRows" | "minRows" | "startAdornment"> & import("@material-ui/core").StyledComponentProps<"input">>;
|
|
3
3
|
interface InputLabelStyles {
|
|
4
4
|
inputLabel: any;
|
|
5
5
|
inputLabelFocused: any;
|
|
@@ -11,5 +11,5 @@ interface HelperTextStyles {
|
|
|
11
11
|
}
|
|
12
12
|
export declare const inputLabelStyles: (theme: any) => InputLabelStyles;
|
|
13
13
|
export declare const helperTextStyles: (theme: any) => HelperTextStyles;
|
|
14
|
-
export declare const useTextFieldStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"helperText" | "
|
|
14
|
+
export declare const useTextFieldStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"helperText" | "asteriskRequired" | "inputBase" | "inputContainer" | "inputContainerFocus" | "inputContainerDisabled" | "inputContainerError" | "multilineContainer" | "inputDisabled" | "inputAction" | "inputGroupAppend" | "inputBtn" | "withAppend" | "withIconLeft" | "sideIcon" | "colorPickerButton" | "colorPopover" | "withMask" | "append" | "edgeEnd" | "inputLabel" | "inputLabelFocused" | "secondaryLabel">;
|
|
15
15
|
export {};
|
package/lib/src/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export { default as Checkbox } from './components/Checkbox/Checkbox';
|
|
|
16
16
|
export { default as Choice } from './components/Choice/Choice';
|
|
17
17
|
export { default as CollapsibleItem } from './components/CollapsibleItem/CollapsibleItem';
|
|
18
18
|
export { default as Col } from './components/Grid/components/Col/Col';
|
|
19
|
+
export { default as DataTable } from './components/DataTable/DataTable';
|
|
19
20
|
export { default as Drawer } from './components/Drawer/Drawer';
|
|
20
21
|
export { default as Form } from './components/Form/Form';
|
|
21
22
|
export { default as Heading } from './components/Heading/Heading';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agilekit/ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.497-alpha.0",
|
|
4
4
|
"description": "Agile's product component library",
|
|
5
5
|
"author": "Michael de Lima Alves <michaelalves@outlook.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -46,8 +46,13 @@
|
|
|
46
46
|
"postversion": "git push && git push --tags"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
+
"@dnd-kit/core": "^6.3.1",
|
|
50
|
+
"@dnd-kit/modifiers": "^9.0.0",
|
|
51
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
52
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
49
53
|
"@material-ui/core": "^4.12.3",
|
|
50
54
|
"@material-ui/lab": "^4.0.0-alpha.60",
|
|
55
|
+
"@tanstack/react-table": "^8.21.3",
|
|
51
56
|
"lodash": "^4.17.21",
|
|
52
57
|
"mdi-material-ui": "6.21.0",
|
|
53
58
|
"popper.js": "^1.16.0",
|
|
@@ -139,7 +144,11 @@
|
|
|
139
144
|
"react-color": "*",
|
|
140
145
|
"react-dom": "*",
|
|
141
146
|
"react-number-format": "*",
|
|
142
|
-
"react-router-dom": "*"
|
|
147
|
+
"react-router-dom": "*",
|
|
148
|
+
"@dnd-kit/core": "*",
|
|
149
|
+
"@dnd-kit/modifiers": "*",
|
|
150
|
+
"@dnd-kit/sortable": "*",
|
|
151
|
+
"@dnd-kit/utilities": "*"
|
|
143
152
|
},
|
|
144
153
|
"bugs": {},
|
|
145
154
|
"gitHead": "480888bde4ddf142b654a6d1868db0c2f384b9e3"
|