@reapit/elements 3.7.18 → 3.7.23

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.
@@ -6,6 +6,7 @@ export declare const elFloatingButton: import("@linaria/core").LinariaClassName;
6
6
  export declare const elButtonGroupAlignLeft: import("@linaria/core").LinariaClassName;
7
7
  export declare const elButtonGroupAlignRight: import("@linaria/core").LinariaClassName;
8
8
  export declare const elButtonGroupAlignCenter: import("@linaria/core").LinariaClassName;
9
+ export declare const elButtonFixedWidth: import("@linaria/core").LinariaClassName;
9
10
  export declare const ElButton: import("@linaria/core").StyledMeta & import("react").FunctionComponent<import("react").ClassAttributes<HTMLButtonElement> & import("react").ButtonHTMLAttributes<HTMLButtonElement> & {
10
11
  as?: import("react").ElementType<any> | undefined;
11
12
  }>;
@@ -10,6 +10,7 @@ export interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
10
10
  chevronRight?: boolean;
11
11
  fullWidth?: boolean;
12
12
  className?: string;
13
+ fixedWidth?: boolean;
13
14
  /** Deprecated - remains part of API to avoid a breaking change but no longer part of style guide */
14
15
  size?: ButtonSizeType;
15
16
  }
@@ -2,7 +2,7 @@ import React from 'react';
2
2
  import { IconNames } from '../icon';
3
3
  import { Intent } from '../../helpers/intent';
4
4
  export interface InputGroupProps extends React.InputHTMLAttributes<HTMLInputElement> {
5
- icon?: IconNames;
5
+ icon?: IconNames | null;
6
6
  label?: string;
7
7
  inputAddOnText?: string;
8
8
  /**
@@ -12,7 +12,7 @@ export interface MultiSelectInputProps extends InputHTMLAttributes<HTMLInputElem
12
12
  noneSelectedLabel?: string;
13
13
  }
14
14
  export declare type MultiSelectInputWrapped = React.ForwardRefExoticComponent<MultiSelectInputProps & RefAttributes<InputHTMLAttributes<HTMLInputElement>>>;
15
- export interface MultiSelectChipProps extends HTMLAttributes<HTMLInputElement> {
15
+ export interface MultiSelectChipProps extends InputHTMLAttributes<HTMLInputElement> {
16
16
  }
17
17
  export declare const handleSetNativeInput: (id: string, selectedOptionValues: string[], testFunc?: ((value: string[]) => void) | undefined) => () => void;
18
18
  export declare const handleResetDefaultValues: (setSelectedOptionValues: Dispatch<SetStateAction<string[]>>, setSelectedDefaultValues: Dispatch<SetStateAction<string[]>>, defaultValues?: string[] | undefined, selectedDefaultValues?: string[] | undefined) => () => void;