1mpacto-react-ui 0.0.106 → 0.0.108
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/style.css +1 -1
- package/dist/index.cjs +47 -47
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +2356 -2302
- package/dist/index.mjs.map +1 -1
- package/dist/src/components/SelectDropdownContainer/styleConfig.d.ts +2 -1
- package/dist/src/interfaces/components/Badges/index.d.ts +1 -1
- package/dist/src/interfaces/components/SelectDropdownContainer/index.d.ts +1 -0
- package/dist/types-external/table.d.ts +2 -0
- package/package.json +1 -1
@@ -1,4 +1,5 @@
|
|
1
1
|
import { StylesConfig } from 'react-select';
|
2
2
|
|
3
|
-
export declare const
|
3
|
+
export declare const styleSelectDropdownContainerLaba: StylesConfig;
|
4
|
+
export declare const styleSelectDropdownContainerPayhere: StylesConfig;
|
4
5
|
export declare const styleSelectDropdownContainerNoSearch: StylesConfig;
|
@@ -6,7 +6,7 @@ export interface IBadges extends React.HTMLAttributes<HTMLSpanElement> {
|
|
6
6
|
children: ReactNode | ReactNode[];
|
7
7
|
className?: string | undefined;
|
8
8
|
rounded?: IBorderRadius;
|
9
|
-
variants?: 'filled-gray-600' | 'filled-green-600' | 'filled-red-500' | 'filled-blue-600' | 'filled-amber-800' | 'filled-pink-600' | 'filled-lime-700' | 'filled-red-900' | 'filled-laba-green-10' | 'ghost-gray-200' | 'ghost-green-100' | 'ghost-red-100' | 'ghost-blue-100' | 'ghost-amber-100' | 'ghost-laba-orange-01' | 'ghost-laba-green-01' | 'ghost-laba-green-02' | 'ghost-laba-blue-02' | 'ghost-laba-blue-01' | 'ghost-laba-grey-05' | 'ghost-laba-red-01' | 'outline-gray-600' | 'outline-green-600' | 'outline-red-500' | 'outline-blue-600' | 'outline-amber-800' | 'outline-laba-blue-01';
|
9
|
+
variants?: 'filled-gray-600' | 'filled-green-600' | 'filled-red-500' | 'filled-blue-600' | 'filled-amber-800' | 'filled-pink-600' | 'filled-lime-700' | 'filled-red-900' | 'filled-laba-green-10' | 'ghost-gray-200' | 'ghost-green-100' | 'ghost-red-100' | 'ghost-blue-100' | 'ghost-amber-100' | 'ghost-laba-orange-01' | 'ghost-laba-green-01' | 'ghost-laba-green-02' | 'ghost-laba-blue-02' | 'ghost-laba-blue-01' | 'ghost-laba-grey-05' | 'ghost-laba-red-01' | 'outline-gray-600' | 'outline-green-600' | 'outline-red-500' | 'outline-blue-600' | 'outline-amber-800' | 'outline-laba-blue-01' | 'outline-laba-orange-06';
|
10
10
|
fonts?: 'lato' | 'inter';
|
11
11
|
typography?: Itypography;
|
12
12
|
}
|
@@ -32,6 +32,7 @@ export interface ISelectDropdownContainer<T> extends Omit<SelectProps<T, boolean
|
|
32
32
|
offsetPopover?: OffsetOptions;
|
33
33
|
errorLabel?: 'payhere' | 'laba';
|
34
34
|
actionValueChange?: (value: MultiValue<T> | SingleValue<T> | T | T[] | object) => void;
|
35
|
+
controlType?: 'laba' | 'payhere';
|
35
36
|
}
|
36
37
|
export interface IChildrenSelectDropdownContainer<T> {
|
37
38
|
selectValue: T | T[] | object;
|
@@ -6,5 +6,7 @@ declare module '@tanstack/react-table' {
|
|
6
6
|
styleTd?: (original: RowData, row: Row<unknown>) => React.CSSProperties;
|
7
7
|
classNameTd?: (original: RowData, row: Row<unknown>) => string;
|
8
8
|
styleTh?: (header: Header<unknown, unknown>) => React.CSSProperties;
|
9
|
+
colSpan?: (header: Header<unknown, unknown>) => number;
|
10
|
+
rowSpan?: (header: Header<unknown, unknown>) => number;
|
9
11
|
}
|
10
12
|
}
|
package/package.json
CHANGED