1mpacto-react-ui 0.0.51 → 0.0.53
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 +32 -32
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +417 -394
- package/dist/index.mjs.map +1 -1
- package/dist/src/components/index.d.ts +2 -1
- package/dist/src/hooks/useCountdown.d.ts +1 -0
- package/dist/src/utils/common.d.ts +8 -0
- package/package.json +1 -1
@@ -40,9 +40,10 @@ import { default as PortalComponent } from './PortalComponent/PortalComponent';
|
|
40
40
|
import { ToastContainer as AlertContainer } from 'react-toastify';
|
41
41
|
import { TButtonVariants, TButtonSize } from '../interfaces/components/Button';
|
42
42
|
import { default as UploadFile } from './UploadFile/UploadFile';
|
43
|
+
import { ITabsList } from '../interfaces/components/Tabs';
|
43
44
|
|
44
45
|
import * as utilTable from '@tanstack/react-table';
|
45
46
|
import type * as SelectDropdownContainerType from 'react-select';
|
46
47
|
import type * as FilterContainerType from '../interfaces/components/FilterContainer';
|
47
48
|
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, };
|
48
|
-
export type { ITableColumnDef, IRefPopover, IRefTableVirtualization, IRefListVirtualization, IRefSelectDropdownContainer, IChildrenSelectDropdownContainer, ISidebarModule, SelectDropdownContainerType, FilterContainerType, IInputReguler, IInputFloatingInner, ITableConfig, TButtonVariants, TButtonSize, };
|
49
|
+
export type { ITableColumnDef, IRefPopover, IRefTableVirtualization, IRefListVirtualization, IRefSelectDropdownContainer, IChildrenSelectDropdownContainer, ISidebarModule, SelectDropdownContainerType, FilterContainerType, IInputReguler, IInputFloatingInner, ITableConfig, TButtonVariants, TButtonSize, ITabsList, };
|
@@ -29,3 +29,11 @@ export declare const transformLatLong: (value: string, options?: {
|
|
29
29
|
export declare const sanitizeObjectKeyPrefix: (prefix: string, data: IMergeState) => IMergeState;
|
30
30
|
export declare const isAccurateNumber: (value: unknown) => boolean;
|
31
31
|
export declare function deepCompareEquals(a: unknown, b: unknown): boolean;
|
32
|
+
export declare function transformSecondTime(secs: number, option?: {
|
33
|
+
maxTime?: 'hour' | 'day';
|
34
|
+
}): {
|
35
|
+
day: string | number;
|
36
|
+
hour: string | number;
|
37
|
+
minute: string | number;
|
38
|
+
second: string | number;
|
39
|
+
};
|
package/package.json
CHANGED