@veeqo/ui 0.1.10 → 0.1.12
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/components/Banner/styled.d.ts +4 -0
- package/dist/components/Checkbox/Checkbox.d.ts +2 -1
- package/dist/components/DataTableExp/utils/GetSortIcon.d.ts +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -7,6 +7,10 @@ declare const BannerLayout: import("styled-components").StyledComponent<"div", a
|
|
|
7
7
|
}, never>;
|
|
8
8
|
declare const Row: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
9
9
|
declare const Col: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
10
|
+
export declare const IconCol: import("styled-components").StyledComponent<"div", any, {
|
|
11
|
+
accentColor: string;
|
|
12
|
+
}, never>;
|
|
13
|
+
export declare const ChildContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
10
14
|
declare const HeaderCol: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
11
15
|
declare const StyledText: import("styled-components").StyledComponent<"span", any, {} & import("../Text/types").TextProps, never>;
|
|
12
16
|
export { BannerLayout as Pill, StyledText as Text, Row, Col, HeaderCol };
|
|
@@ -9,5 +9,6 @@ export interface CheckboxProps extends ForwardedChoiceProps {
|
|
|
9
9
|
disabled?: boolean;
|
|
10
10
|
ariaLabel?: string;
|
|
11
11
|
onChange: (checked: boolean, value?: CheckboxValue) => void;
|
|
12
|
+
className?: string;
|
|
12
13
|
}
|
|
13
|
-
export declare const Checkbox: ({ checked, indeterminate, value, name, disabled, ariaLabel, onChange, ...otherProps }: CheckboxProps) => React.JSX.Element;
|
|
14
|
+
export declare const Checkbox: ({ checked, indeterminate, value, name, disabled, ariaLabel, className, onChange, ...otherProps }: CheckboxProps) => React.JSX.Element;
|
|
@@ -3,7 +3,7 @@ import { ColumnId, SortState } from '../types';
|
|
|
3
3
|
type GetSortIconPropsParameters = {
|
|
4
4
|
sortState?: SortState;
|
|
5
5
|
columnId: ColumnId;
|
|
6
|
-
size: string;
|
|
6
|
+
size: string | number;
|
|
7
7
|
};
|
|
8
8
|
export declare const GetSortIcon: ({ sortState, columnId, size }: GetSortIconPropsParameters) => React.JSX.Element;
|
|
9
9
|
export {};
|