@ioca/react 1.5.36 → 1.5.38
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/colorpicker.js +3 -0
- package/lib/css/colorpicker.css +1 -0
- package/lib/css/index.css +1 -1
- package/lib/es/components/tabs/contents.js +6 -7
- package/lib/es/components/tabs/helper.js +3 -3
- package/lib/es/components/tabs/tabs.js +9 -8
- package/lib/index.js +18 -17
- package/lib/types/components/affix/affix.d.ts +2 -2
- package/lib/types/components/affix/totop.d.ts +2 -2
- package/lib/types/components/badge/badge.d.ts +2 -2
- package/lib/types/components/button/confirm.d.ts +2 -2
- package/lib/types/components/button/group.d.ts +2 -2
- package/lib/types/components/button/toggle.d.ts +2 -2
- package/lib/types/components/checkbox/checkbox.d.ts +2 -2
- package/lib/types/components/checkbox/item.d.ts +2 -2
- package/lib/types/components/collapse/collapse.d.ts +2 -2
- package/lib/types/components/collapse/item.d.ts +2 -2
- package/lib/types/components/datagrid/datagrid.d.ts +2 -2
- package/lib/types/components/description/description.d.ts +2 -2
- package/lib/types/components/divider/divider.d.ts +2 -2
- package/lib/types/components/dropdown/dropdown.d.ts +2 -3
- package/lib/types/components/editor/editor.d.ts +2 -2
- package/lib/types/components/form/form.d.ts +2 -2
- package/lib/types/components/form/useConfig.d.ts +2 -2
- package/lib/types/components/image/list.d.ts +2 -2
- package/lib/types/components/input/number.d.ts +2 -2
- package/lib/types/components/input/range.d.ts +2 -2
- package/lib/types/components/input/textarea.d.ts +2 -2
- package/lib/types/components/list/item.d.ts +2 -2
- package/lib/types/components/loading/loading.d.ts +2 -2
- package/lib/types/components/pagination/pagination.d.ts +2 -2
- package/lib/types/components/picker/colors/index.d.ts +2 -2
- package/lib/types/components/picker/daterange/daterange.d.ts +2 -2
- package/lib/types/components/picker/dates/index.d.ts +2 -2
- package/lib/types/components/picker/time/index.d.ts +2 -2
- package/lib/types/components/pill/pill.d.ts +2 -2
- package/lib/types/components/popconfirm/popconfirm.d.ts +2 -2
- package/lib/types/components/popup/popup.d.ts +2 -2
- package/lib/types/components/progress/progress.d.ts +2 -2
- package/lib/types/components/radio/item.d.ts +2 -2
- package/lib/types/components/radio/radio.d.ts +2 -2
- package/lib/types/components/resizable/resizable.d.ts +2 -2
- package/lib/types/components/river/river.d.ts +2 -2
- package/lib/types/components/scroll/scroll.d.ts +2 -2
- package/lib/types/components/select/select.d.ts +2 -2
- package/lib/types/components/step/item.d.ts +2 -2
- package/lib/types/components/step/step.d.ts +2 -2
- package/lib/types/components/swiper/item.d.ts +2 -2
- package/lib/types/components/tabs/item.d.ts +2 -2
- package/lib/types/components/tabs/type.d.ts +1 -1
- package/lib/types/components/tag/tag.d.ts +2 -2
- package/lib/types/components/text/highlight.d.ts +2 -2
- package/lib/types/components/text/number.d.ts +2 -2
- package/lib/types/components/text/time.d.ts +2 -2
- package/lib/types/components/tree/tree.d.ts +2 -2
- package/lib/types/components/upload/upload.d.ts +2 -2
- package/lib/types/components/video/video.d.ts +2 -2
- package/package.json +17 -16
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { ICheckboxItem } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare function CheckboxItem(props: ICheckboxItem):
|
|
4
|
+
declare function CheckboxItem(props: ICheckboxItem): react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { CheckboxItem as default };
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import Item from './item.js';
|
|
3
3
|
import { ICollapse } from './type.js';
|
|
4
4
|
|
|
5
5
|
declare const Collapse: {
|
|
6
|
-
(props: ICollapse):
|
|
6
|
+
(props: ICollapse): react.JSX.Element;
|
|
7
7
|
Item: typeof Item;
|
|
8
8
|
};
|
|
9
9
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { ICollapseItem } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare function Item(props: ICollapseItem):
|
|
4
|
+
declare function Item(props: ICollapseItem): react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { Item as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { IDatagrid } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare const Datagrid: (props: IDatagrid) =>
|
|
4
|
+
declare const Datagrid: (props: IDatagrid) => react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { Datagrid as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { IDescription } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare const Description: (props: IDescription) =>
|
|
4
|
+
declare const Description: (props: IDescription) => react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { Description as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { IDivider } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare const Divider: ({ className, children, color, width, style, ...restProps }: IDivider) =>
|
|
4
|
+
declare const Divider: ({ className, children, color, width, style, ...restProps }: IDivider) => react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { Divider as default };
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { IDropdown, IDropItem } from './type.js';
|
|
2
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
2
|
import * as react from 'react';
|
|
4
3
|
|
|
5
4
|
declare const Dropdown: {
|
|
6
|
-
(props: IDropdown): string | number | bigint | boolean |
|
|
7
|
-
Item: (props: IDropItem) =>
|
|
5
|
+
(props: IDropdown): string | number | bigint | boolean | react.JSX.Element | Iterable<react.ReactNode> | Promise<string | number | bigint | boolean | react.ReactPortal | react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | Iterable<react.ReactNode>>;
|
|
6
|
+
Item: (props: IDropItem) => react.JSX.Element;
|
|
8
7
|
};
|
|
9
8
|
|
|
10
9
|
export { Dropdown as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { IEditor } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare const Editor: (props: IEditor) =>
|
|
4
|
+
declare const Editor: (props: IEditor) => react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { Editor as default };
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import Field from './field.js';
|
|
3
3
|
import { IForm } from './type.js';
|
|
4
4
|
import useConfig from './useConfig.js';
|
|
5
5
|
import useForm from './useForm.js';
|
|
6
6
|
|
|
7
7
|
declare const Form: {
|
|
8
|
-
(props: IForm):
|
|
8
|
+
(props: IForm): react.JSX.Element;
|
|
9
9
|
useForm: typeof useForm;
|
|
10
10
|
Field: typeof Field;
|
|
11
11
|
useConfig: typeof useConfig;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { IFormInstance } from './useForm.js';
|
|
3
3
|
import { IFormItem, IForm } from './type.js';
|
|
4
4
|
|
|
5
5
|
declare function useConfig(configs: IFormItem[], formProps?: IForm): {
|
|
6
6
|
form: IFormInstance;
|
|
7
|
-
node:
|
|
7
|
+
node: react.JSX.Element;
|
|
8
8
|
};
|
|
9
9
|
|
|
10
10
|
export { useConfig as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { IImageList } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare function List(props: IImageList):
|
|
4
|
+
declare function List(props: IImageList): react.JSX.Element | "";
|
|
5
5
|
|
|
6
6
|
export { List as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { IInputNumber } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare const Number: (props: IInputNumber) =>
|
|
4
|
+
declare const Number: (props: IInputNumber) => react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { Number as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { IInputRange } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare const Range: (props: IInputRange) =>
|
|
4
|
+
declare const Range: (props: IInputRange) => react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { Range as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { ITextarea } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare const Textarea: (props: ITextarea) =>
|
|
4
|
+
declare const Textarea: (props: ITextarea) => react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { Textarea as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { IListItem } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare const Item: (props: IListItem) =>
|
|
4
|
+
declare const Item: (props: IListItem) => react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { Item as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { ILoading } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare const Loading: (props: ILoading) =>
|
|
4
|
+
declare const Loading: (props: ILoading) => react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { Loading as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { IPagination } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare const Pagination: (props: IPagination) =>
|
|
4
|
+
declare const Pagination: (props: IPagination) => react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { Pagination as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { IColorPicker } from '../type.js';
|
|
3
3
|
|
|
4
|
-
declare function ColorPicker(props: IColorPicker):
|
|
4
|
+
declare function ColorPicker(props: IColorPicker): react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { ColorPicker as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { IDateRange } from '../type.js';
|
|
3
3
|
|
|
4
|
-
declare const DateRange: (props: IDateRange) =>
|
|
4
|
+
declare const DateRange: (props: IDateRange) => react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { DateRange as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { IDatePicker } from '../type.js';
|
|
3
3
|
|
|
4
|
-
declare const Datepicker: (props: IDatePicker) =>
|
|
4
|
+
declare const Datepicker: (props: IDatePicker) => react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { Datepicker as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { ITimePicker } from '../type.js';
|
|
3
3
|
|
|
4
|
-
declare function TimePicker(props: ITimePicker):
|
|
4
|
+
declare function TimePicker(props: ITimePicker): react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { TimePicker as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { IPill } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare function Pill(props: IPill):
|
|
4
|
+
declare function Pill(props: IPill): react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { Pill as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { IPopconfirm } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare const Popconfirm: (props: IPopconfirm) =>
|
|
4
|
+
declare const Popconfirm: (props: IPopconfirm) => react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { Popconfirm as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { IPopup } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare function Popup(props: IPopup):
|
|
4
|
+
declare function Popup(props: IPopup): react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { Popup as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { IProgress } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare const Progress: (props: IProgress) =>
|
|
4
|
+
declare const Progress: (props: IProgress) => react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { Progress as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { IRadioItem } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare function RadioItem(props: IRadioItem):
|
|
4
|
+
declare function RadioItem(props: IRadioItem): react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { RadioItem as default };
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import RadioItem from './item.js';
|
|
3
3
|
import { IRadio } from './type.js';
|
|
4
4
|
|
|
5
|
-
declare function Radio(props: IRadio):
|
|
5
|
+
declare function Radio(props: IRadio): react.JSX.Element;
|
|
6
6
|
declare namespace Radio {
|
|
7
7
|
var Item: typeof RadioItem;
|
|
8
8
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { IResizable } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare const Resizable: (props: IResizable) =>
|
|
4
|
+
declare const Resizable: (props: IResizable) => react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { Resizable as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { IRiver } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare const River: (props: IRiver) =>
|
|
4
|
+
declare const River: (props: IRiver) => react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { River as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { IScroll } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare const Scroll: (props: IScroll) =>
|
|
4
|
+
declare const Scroll: (props: IScroll) => react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { Scroll as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { ISelect } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare const Select: (props: ISelect) =>
|
|
4
|
+
declare const Select: (props: ISelect) => react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { Select as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { IStepItem } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare function Item(props: IStepItem):
|
|
4
|
+
declare function Item(props: IStepItem): react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { Item as default };
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import Item from './item.js';
|
|
3
3
|
import { IStep } from './type.js';
|
|
4
4
|
|
|
5
5
|
declare const Step: {
|
|
6
|
-
(props: IStep):
|
|
6
|
+
(props: IStep): react.JSX.Element;
|
|
7
7
|
Item: typeof Item;
|
|
8
8
|
};
|
|
9
9
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { ISwiperItem } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare function Item(props: ISwiperItem):
|
|
4
|
+
declare function Item(props: ISwiperItem): react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { Item as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { ITabItem } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare const Item: (props: ITabItem) =>
|
|
4
|
+
declare const Item: (props: ITabItem) => react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { Item as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { ITag } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare const Tag: (props: ITag) =>
|
|
4
|
+
declare const Tag: (props: ITag) => react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { Tag as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { ITextHighLight } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare function HighLight(props: ITextHighLight):
|
|
4
|
+
declare function HighLight(props: ITextHighLight): react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { HighLight as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { ITextNumber } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare function Number(props: ITextNumber):
|
|
4
|
+
declare function Number(props: ITextNumber): react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { Number as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { ITextTime } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare function Number(props: ITextTime):
|
|
4
|
+
declare function Number(props: ITextTime): react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { Number as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { ITree } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare const Tree: (props: ITree) =>
|
|
4
|
+
declare const Tree: (props: ITree) => react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { Tree as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { IUpload } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare const Upload: (props: IUpload) =>
|
|
4
|
+
declare const Upload: (props: IUpload) => react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { Upload as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { IVideo } from './type.js';
|
|
3
3
|
|
|
4
|
-
declare const Video: (props: IVideo) =>
|
|
4
|
+
declare const Video: (props: IVideo) => react.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { Video as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ioca/react",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.38",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "vite",
|
|
@@ -10,17 +10,17 @@
|
|
|
10
10
|
"lib": "rimraf lib && npx rollup -c"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@rc-component/color-picker": "^
|
|
14
|
-
"@ricons/material": "^0.
|
|
13
|
+
"@rc-component/color-picker": "^3.1.1",
|
|
14
|
+
"@ricons/material": "^0.13.0",
|
|
15
15
|
"classnames": "^2.5.1",
|
|
16
|
-
"dayjs": "^1.11.
|
|
16
|
+
"dayjs": "^1.11.21",
|
|
17
17
|
"highlight-words-core": "^1.2.3",
|
|
18
18
|
"pubsub-js": "^1.9.5",
|
|
19
|
-
"radash": "^12.1.
|
|
20
|
-
"react": "^19.
|
|
21
|
-
"react-dom": "^19.
|
|
22
|
-
"react-easy-sort": "^1.
|
|
23
|
-
"react-router": "^
|
|
19
|
+
"radash": "^12.1.1",
|
|
20
|
+
"react": "^19.2.7",
|
|
21
|
+
"react-dom": "^19.2.7",
|
|
22
|
+
"react-easy-sort": "^1.8.0",
|
|
23
|
+
"react-router": "^8.1.0",
|
|
24
24
|
"react-window": "^2.2.7",
|
|
25
25
|
"tslib": "^2.8.1",
|
|
26
26
|
"xss": "^1.0.15"
|
|
@@ -30,11 +30,11 @@
|
|
|
30
30
|
"@rollup/plugin-terser": "^0.4.4",
|
|
31
31
|
"@rollup/plugin-typescript": "^12.1.1",
|
|
32
32
|
"@types/mockjs": "^1.0.10",
|
|
33
|
-
"@types/node": "^
|
|
33
|
+
"@types/node": "^26.1.0",
|
|
34
34
|
"@types/pubsub-js": "^1.8.5",
|
|
35
|
-
"@types/react": "^19.
|
|
35
|
+
"@types/react": "^19.2.17",
|
|
36
36
|
"@types/react-dom": "^19.2.3",
|
|
37
|
-
"@vitejs/plugin-react": "^6.0.
|
|
37
|
+
"@vitejs/plugin-react": "^6.0.3",
|
|
38
38
|
"chalk": "^5.4.1",
|
|
39
39
|
"mockjs": "^1.1.0",
|
|
40
40
|
"postcss-import": "^16.1.1",
|
|
@@ -44,13 +44,13 @@
|
|
|
44
44
|
"rollup-plugin-dts": "^6.1.1",
|
|
45
45
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
46
46
|
"rollup-plugin-postcss": "^4.0.2",
|
|
47
|
-
"typescript": "^
|
|
48
|
-
"vite": "^8.
|
|
47
|
+
"typescript": "^6.0.3",
|
|
48
|
+
"vite": "^8.1.3",
|
|
49
49
|
"vite-plugin-dynamic-import": "^1.6.0"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
|
-
"react": "^19.
|
|
53
|
-
"react-dom": "^19.
|
|
52
|
+
"react": "^19.2.7",
|
|
53
|
+
"react-dom": "^19.2.7"
|
|
54
54
|
},
|
|
55
55
|
"module": "lib/es/index.js",
|
|
56
56
|
"types": "lib/types/index.d.ts",
|
|
@@ -60,6 +60,7 @@
|
|
|
60
60
|
"import": "./lib/es/index.js"
|
|
61
61
|
},
|
|
62
62
|
"./index.css": "./lib/css/index.css",
|
|
63
|
+
"./css/colorpicker.css": "./lib/css/colorpicker.css",
|
|
63
64
|
"./*": {
|
|
64
65
|
"types": "./lib/types/*.d.ts",
|
|
65
66
|
"import": "./lib/es/*.js"
|