1mpacto-react-ui 0.0.89 → 0.0.91
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/assets/core.css +1 -1
- package/dist/assets/style.css +1 -1
- package/dist/index.cjs +54 -51
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +6048 -5972
- package/dist/index.mjs.map +1 -1
- package/dist/src/components/Step/Step.d.ts +4 -0
- package/dist/src/components/index.d.ts +4 -2
- package/dist/src/interfaces/components/Collapse/index.d.ts +1 -1
- package/dist/src/interfaces/components/Step/index.d.ts +15 -0
- package/package.json +1 -1
@@ -57,9 +57,11 @@ import { default as UploadMultipleFile } from './Upload/UploadMultipleFile';
|
|
57
57
|
import { IUploadMultipleFileValue } from '../interfaces/components/UploadFile';
|
58
58
|
import { default as ErrorMessage } from './ErrorMessage/ErrorMessage';
|
59
59
|
import { default as TextareaFloatingInner } from './Textarea/TextareaFloatingInner';
|
60
|
+
import { default as Step } from './Step/Step';
|
61
|
+
import { IDataStepList } from '../interfaces/components/Step/index';
|
60
62
|
|
61
63
|
import * as utilTable from '@tanstack/react-table';
|
62
64
|
import type * as SelectDropdownContainerType from 'react-select';
|
63
65
|
import type * as FilterContainerType from '../interfaces/components/FilterContainer';
|
64
|
-
export { TPublish, Button, Popover, Calendar, CalendarRange, DatePicker, DateRangePicker, FilterDate, InputFloatingInner, InputReguler, Pagination, Tabs, TabPanel, Table, TableVirtualization, ListVirtualization, SelectDropdownContainer, utilTable, Switch, ButtonIcon, Badges, Chips, RadioCheckbox, RadioCheckboxLabel, Breadcrumbs, Sidebar, Collapse, ModalDialog, SelectDropdownContainerComponents, Timeline, FilterContainer, NumberFormat, PatternFormat, DefaultCheckedChecboxIcon, DefaultRadioChecboxIcon, ConfigTable, PortalComponent, AlertContainer, UploadFile, TruncateComponent, UploadImage, Textarea, DoughnutChart, MonthYearPicker, CheckboxTable, InputNative, UploadMultipleFile, ErrorMessage, TextareaFloatingInner, };
|
65
|
-
export type { ITableColumnDef, IRefPopover, IRefTableVirtualization, IRefListVirtualization, IRefSelectDropdownContainer, IChildrenSelectDropdownContainer, ISidebarModule, SelectDropdownContainerType, FilterContainerType, IInputReguler, IInputFloatingInner, ITableConfig, TButtonVariants, TButtonSize, ITabsList, ITextarea, IListVirtualization, ITableVirtualization, IRefSidebar, IChildrenIconCompany, ICloneElementSidebar, IDataDoughnutChart, IDataInnerLabelDoughnutChart, ISelectDropdownContainer, IDatePicker, IPopover, IInputNative, IUploadMultipleFileValue, };
|
66
|
+
export { TPublish, Button, Popover, Calendar, CalendarRange, DatePicker, DateRangePicker, FilterDate, InputFloatingInner, InputReguler, Pagination, Tabs, TabPanel, Table, TableVirtualization, ListVirtualization, SelectDropdownContainer, utilTable, Switch, ButtonIcon, Badges, Chips, RadioCheckbox, RadioCheckboxLabel, Breadcrumbs, Sidebar, Collapse, ModalDialog, SelectDropdownContainerComponents, Timeline, FilterContainer, NumberFormat, PatternFormat, DefaultCheckedChecboxIcon, DefaultRadioChecboxIcon, ConfigTable, PortalComponent, AlertContainer, UploadFile, TruncateComponent, UploadImage, Textarea, DoughnutChart, MonthYearPicker, CheckboxTable, InputNative, UploadMultipleFile, ErrorMessage, TextareaFloatingInner, Step, };
|
67
|
+
export type { ITableColumnDef, IRefPopover, IRefTableVirtualization, IRefListVirtualization, IRefSelectDropdownContainer, IChildrenSelectDropdownContainer, ISidebarModule, SelectDropdownContainerType, FilterContainerType, IInputReguler, IInputFloatingInner, ITableConfig, TButtonVariants, TButtonSize, ITabsList, ITextarea, IListVirtualization, ITableVirtualization, IRefSidebar, IChildrenIconCompany, ICloneElementSidebar, IDataDoughnutChart, IDataInnerLabelDoughnutChart, ISelectDropdownContainer, IDatePicker, IPopover, IInputNative, IUploadMultipleFileValue, IDataStepList, };
|
@@ -3,7 +3,7 @@ import { ReactNode } from 'react';
|
|
3
3
|
export interface ICollapse {
|
4
4
|
children: ReactNode | ReactNode[];
|
5
5
|
open: boolean;
|
6
|
-
id
|
6
|
+
id: string;
|
7
7
|
className?: string | undefined;
|
8
8
|
maxCollapsedHeight?: number | string;
|
9
9
|
triggerCalCulateContainer?: number | string | boolean | object;
|
@@ -0,0 +1,15 @@
|
|
1
|
+
export interface IDataStepList {
|
2
|
+
step: number;
|
3
|
+
value?: string | number;
|
4
|
+
desc?: string;
|
5
|
+
[key: string]: unknown;
|
6
|
+
}
|
7
|
+
export interface IStep {
|
8
|
+
activeStep: number;
|
9
|
+
stepList: IDataStepList[];
|
10
|
+
widthLine?: number;
|
11
|
+
classNameContainer?: string;
|
12
|
+
classNameContent?: string;
|
13
|
+
classNameDesc?: string;
|
14
|
+
onChange?: (e: IDataStepList) => void;
|
15
|
+
}
|
package/package.json
CHANGED