@fattureincloud/fic-design-system 0.7.14 → 0.7.15
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/components/dropdown/DropdownImpl.d.ts +1 -1
- package/dist/components/dropdown/types.d.ts +1 -0
- package/dist/components/newTable/components/header/headerCell/styled.d.ts +1 -1
- package/dist/components/newTable/styled.d.ts +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
@@ -1,4 +1,4 @@
|
|
1
1
|
/// <reference types="react" />
|
2
2
|
import { DropdownProps } from './types';
|
3
|
-
declare const DropdownImpl: ({ className, content, fullWidth, maxWidth, maxHeight, minWidthAsTrigger, placement, renderContent, renderTrigger, triggerStyles, title, forceOpen, disableArrowNavigation, isDisabled, emptyState, onOpen, withPadding, }: DropdownProps) => JSX.Element;
|
3
|
+
declare const DropdownImpl: ({ className, content, fullWidth, maxWidth, maxHeight, minWidthAsTrigger, placement, renderContent, renderTrigger, triggerStyles, title, forceOpen, disableArrowNavigation, isDisabled, emptyState, onOpen, withPadding, offsetY, }: DropdownProps) => JSX.Element;
|
4
4
|
export default DropdownImpl;
|
@@ -24,6 +24,7 @@ export declare type DropdownProps = {
|
|
24
24
|
emptyState?: JSX.Element;
|
25
25
|
onOpen?: (isOpen: boolean) => void;
|
26
26
|
withPadding?: boolean;
|
27
|
+
offsetY?: number;
|
27
28
|
};
|
28
29
|
export declare type DropdownItemType = 'default' | 'danger' | 'success' | 'warning' | 'link';
|
29
30
|
export interface DropdownItemProps {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { RowSize } from '../../../types';
|
2
2
|
export declare const TextHeaderCell: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, {}, never>;
|
3
|
-
export declare const Th: import("styled-components").StyledComponent<"
|
3
|
+
export declare const Th: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
4
4
|
size?: RowSize | undefined;
|
5
5
|
minWidth?: number | undefined;
|
6
6
|
maxWidth?: number | undefined;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
/// <reference types="react" />
|
2
2
|
export declare const Container: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
3
3
|
export declare const ScrollableContent: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
4
|
-
export declare const TableWrapper: import("styled-components").StyledComponent<"
|
4
|
+
export declare const TableWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
5
5
|
export declare const SortIndicator: import("styled-components").StyledComponent<({ onClick, isDisabled, ...props }: import("../icon").IconProps) => JSX.Element, import("styled-components").DefaultTheme, {
|
6
6
|
isSorted: boolean;
|
7
7
|
isSortedDesc: boolean;
|