gantri-components 2.106.0 → 2.107.0
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/circular-progress/circular-progress.styles.d.ts +1 -2
- package/dist/components/color-picker/components/color-picker-item/color-picker-item.styles.d.ts +1 -6
- package/dist/components/dropdown/dropdown.styles.d.ts +2 -5
- package/dist/components/flex/flex.styles.d.ts +1 -3
- package/dist/components/input-group/input-group.styles.d.ts +1 -2
- package/dist/components/modal/modal.styles.d.ts +2 -8
- package/dist/components/multi-select-list/multi-select-list.styles.d.ts +1 -2
- package/dist/components/table/components/custom-columns-toggle/components/user-preferences-toggle/components/user-preferences-modal/user-preferences-modal.styles.d.ts +2 -3
- package/dist/components/table/components/custom-columns-toggle/components/user-preferences-toggle/user-preferences-toggle.styles.d.ts +1 -4
- package/dist/components/table/components/table-actions-wrapper/components/clear-selected-rows/clear-selected-rows.styles.d.ts +1 -4
- package/dist/components/table/components/table-actions-wrapper/components/paging/paging.styles.d.ts +2 -3
- package/dist/components/table/components/table-actions-wrapper/components/sort/sort.styles.d.ts +1 -2
- package/dist/components/table/components/table-actions-wrapper/table-actions-wrapper.styles.d.ts +1 -4
- package/dist/components/table/components/table-row/helpers/get-row-component-props/get-row-component-props.d.ts +1 -1
- package/dist/components/table/components/table-row-cells/components/selectable-row-cell-wrapper/selectable-row-cell-wrapper.styles.d.ts +1 -2
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/styles/theme.d.ts +2 -23
- package/package.json +2 -1
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const StyledCircularProgressIcon: import("styled-components").StyledComponent<import("react").FC<import("../icon/icon.types").IconProps>, import("styled-components").DefaultTheme, {}, never>;
|
|
1
|
+
export declare const StyledCircularProgressIcon: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, any, any>;
|
package/dist/components/color-picker/components/color-picker-item/color-picker-item.styles.d.ts
CHANGED
|
@@ -1,14 +1,9 @@
|
|
|
1
1
|
import { CSSProperties } from 'styled-components';
|
|
2
2
|
import { ColorPickerVariant } from '../../color-picker.types';
|
|
3
|
-
import { ProductColorCode } from '../../../../styles/theme';
|
|
4
3
|
export declare const StyledColorOutline: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
5
4
|
$isClickable: boolean;
|
|
6
5
|
$selected?: boolean | undefined;
|
|
7
6
|
$size?: CSSProperties['width'];
|
|
8
7
|
$variant?: ColorPickerVariant | undefined;
|
|
9
8
|
}, never>;
|
|
10
|
-
export declare const StyledColor: import("styled-components").StyledComponent<
|
|
11
|
-
$size?: CSSProperties['width'];
|
|
12
|
-
$variant?: ColorPickerVariant | undefined;
|
|
13
|
-
color: ProductColorCode;
|
|
14
|
-
}, never>;
|
|
9
|
+
export declare const StyledColor: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, any, any>;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { Property } from 'csstype';
|
|
3
2
|
import { TextFieldSize } from '../text-field';
|
|
4
3
|
import { ResolutionAwareProp } from '../../types/resolution-aware-prop.type';
|
|
5
|
-
export declare const StyledOption: import("styled-components").StyledComponent<
|
|
4
|
+
export declare const StyledOption: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, any, any>;
|
|
6
5
|
export declare const StyledSelect: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
7
6
|
$maxWidth?: Property.Width<string | number> | undefined;
|
|
8
7
|
}, never>;
|
|
@@ -12,6 +11,4 @@ export declare const StyledCustomPlaceholderContainer: import("styled-components
|
|
|
12
11
|
$size?: ResolutionAwareProp<TextFieldSize> | undefined;
|
|
13
12
|
disabled: boolean | undefined;
|
|
14
13
|
}, never>;
|
|
15
|
-
export declare const StyledTextField: import("styled-components").StyledComponent<
|
|
16
|
-
$transparentInputText: boolean;
|
|
17
|
-
}, never>;
|
|
14
|
+
export declare const StyledTextField: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, any, any>;
|
|
@@ -1,3 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import { FlexProps } from './flex.types';
|
|
3
|
-
export declare const StyledFlexContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../box/box.types").BoxProps & import("react").RefAttributes<import("../box/box.types").BoxProps>>, import("styled-components").DefaultTheme, FlexProps, never>;
|
|
1
|
+
export declare const StyledFlexContainer: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, any, any>;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const StyledButton: import("styled-components").StyledComponent<import("react").FC<import("../button/button.types").ButtonProps>, import("styled-components").DefaultTheme, {}, never>;
|
|
1
|
+
export declare const StyledButton: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, any, any>;
|
|
3
2
|
export declare const StyledInputGroupContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
4
3
|
$disabled?: boolean | undefined;
|
|
5
4
|
$size?: string | undefined;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { DefaultTheme } from 'styled-components';
|
|
3
2
|
import { Property } from 'csstype';
|
|
4
3
|
import { ModalProps } from './modal.types';
|
|
@@ -11,17 +10,12 @@ export declare const StyledModalBody: import("styled-components").StyledComponen
|
|
|
11
10
|
$height?: ResolutionAwareProp<Property.Height<0 | (string & {})>> | undefined;
|
|
12
11
|
$width?: ResolutionAwareProp<Property.Width<0 | (string & {})>> | undefined;
|
|
13
12
|
}, never>;
|
|
14
|
-
export declare const StyledModalContent: import("styled-components").StyledComponent<
|
|
15
|
-
isFullScreen?: boolean | undefined;
|
|
16
|
-
noTopSpacing?: boolean | undefined;
|
|
17
|
-
}, never>;
|
|
13
|
+
export declare const StyledModalContent: import("styled-components").StyledComponent<any, DefaultTheme, any, any>;
|
|
18
14
|
export declare const getModalDetailsPanelBackgroundColor: ({ theme, isFullScreen, }: {
|
|
19
15
|
isFullScreen: boolean | undefined;
|
|
20
16
|
theme: DefaultTheme;
|
|
21
17
|
}) => string;
|
|
22
|
-
export declare const StyledDetailsPanelContainer: import("styled-components").StyledComponent<
|
|
23
|
-
isFullScreen?: boolean | undefined;
|
|
24
|
-
}, never>;
|
|
18
|
+
export declare const StyledDetailsPanelContainer: import("styled-components").StyledComponent<any, DefaultTheme, any, any>;
|
|
25
19
|
export declare const StyledModalHeader: import("styled-components").StyledComponent<"header", DefaultTheme, {
|
|
26
20
|
$closeable?: boolean | undefined;
|
|
27
21
|
isFullScreen?: boolean | undefined;
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const StyledFlexItem: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../flex/flex.types").FlexProps & import("react").RefAttributes<import("../flex/flex.types").FlexProps>>, import("styled-components").DefaultTheme, {}, never>;
|
|
1
|
+
export declare const StyledFlexItem: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, any, any>;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
export declare const StyledPreferencesPopUp: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
3
|
-
export declare const StyledHeading: import("styled-components").StyledComponent<
|
|
4
|
-
export declare const StyledClickableIcon: import("styled-components").StyledComponent<
|
|
2
|
+
export declare const StyledHeading: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, any, any>;
|
|
3
|
+
export declare const StyledClickableIcon: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, any, any>;
|
|
5
4
|
export declare const StyledContent: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
6
5
|
export declare const StyledFooter: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,4 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const StyledButton: import("styled-components").StyledComponent<import("react").FC<import("../../../../../button/button.types").ButtonProps>, import("styled-components").DefaultTheme, {
|
|
3
|
-
'data-is-active': boolean;
|
|
4
|
-
}, never>;
|
|
1
|
+
export declare const StyledButton: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, any, any>;
|
|
@@ -1,4 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const StyledPointerFlex: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../../../../../flex/flex.types").FlexProps & import("react").RefAttributes<import("../../../../../flex/flex.types").FlexProps>>, import("styled-components").DefaultTheme, {
|
|
3
|
-
disabled?: boolean | undefined;
|
|
4
|
-
}, never>;
|
|
1
|
+
export declare const StyledPointerFlex: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, any, any>;
|
package/dist/components/table/components/table-actions-wrapper/components/paging/paging.styles.d.ts
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const
|
|
3
|
-
export declare const StyledPagingButton: import("styled-components").StyledComponent<import("react").FC<import("../../../../../button/button.types").ButtonProps>, import("styled-components").DefaultTheme, {}, never>;
|
|
1
|
+
export declare const StyledFlex: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, any, any>;
|
|
2
|
+
export declare const StyledPagingButton: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, any, any>;
|
package/dist/components/table/components/table-actions-wrapper/components/sort/sort.styles.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const StyledDropdown: import("styled-components").StyledComponent<import("react").FC<import("react").PropsWithChildren<import("../../../../../dropdown").DropdownProps<any>>>, import("styled-components").DefaultTheme, {}, never>;
|
|
1
|
+
export declare const StyledDropdown: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, any, any>;
|
package/dist/components/table/components/table-actions-wrapper/table-actions-wrapper.styles.d.ts
CHANGED
|
@@ -1,4 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const StyledBottomActionsFlex: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../../../flex/flex.types").FlexProps & import("react").RefAttributes<import("../../../flex/flex.types").FlexProps>>, import("styled-components").DefaultTheme, {
|
|
3
|
-
showClearSelectedRows: boolean;
|
|
4
|
-
}, never>;
|
|
1
|
+
export declare const StyledBottomActionsFlex: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, any, any>;
|
|
@@ -48,7 +48,7 @@ export declare const getRowComponentProps: <TData extends RowData<import("../../
|
|
|
48
48
|
results?: number | undefined;
|
|
49
49
|
security?: string | undefined;
|
|
50
50
|
unselectable?: "off" | "on" | undefined;
|
|
51
|
-
inputMode?: "
|
|
51
|
+
inputMode?: "search" | "text" | "none" | "email" | "tel" | "url" | "numeric" | "decimal" | undefined;
|
|
52
52
|
is?: string | undefined;
|
|
53
53
|
children?: import("react-i18next").ReactI18NextChild | Iterable<import("react-i18next").ReactI18NextChild>;
|
|
54
54
|
'aria-activedescendant'?: string | undefined;
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const StyledCheckboxCell: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../../../../../cell/cell.types").CellProps & import("react").RefAttributes<import("../../../../../cell/cell.types").CellProps>>, import("styled-components").DefaultTheme, {}, never>;
|
|
1
|
+
export declare const StyledCheckboxCell: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, any, any>;
|