@rte-ds/core 1.3.13 → 1.3.14

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,5 +6,5 @@ export interface AssistiveTextProps {
6
6
  appearance: AssitiveTextAppearances;
7
7
  showIcon?: boolean;
8
8
  href?: string;
9
- width?: number;
9
+ width?: number | string;
10
10
  }
@@ -8,4 +8,5 @@ export interface SearchBarProps {
8
8
  showResetButton?: boolean;
9
9
  assistiveText?: string;
10
10
  value?: string;
11
+ fullWidth?: boolean;
11
12
  }
@@ -1,3 +1,3 @@
1
1
  export const THRESHOLD_BOTTOM_POSITION = 100;
2
2
  export const SELECT_DROPDOWN_OFFSET = 8;
3
- export const MIN_SELECT_WIDTH = 112;
3
+ export const MIN_SELECT_WIDTH = "112px";
@@ -11,7 +11,7 @@ export interface SelectProps extends InputProps {
11
11
  onClear?: () => void;
12
12
  options: SelectOption[];
13
13
  showResetButton?: boolean;
14
- width?: number;
14
+ width?: number | string;
15
15
  multiple?: boolean;
16
16
  multipleValue?: string[];
17
17
  onMultipleChange?: (values: string[]) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rte-ds/core",
3
- "version": "1.3.13",
3
+ "version": "1.3.14",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "lint": "eslint .",