@rte-ds/core 1.3.16 → 1.3.18

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.
@@ -0,0 +1,5 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8.66729 7.59961C8.856 7.5997 9.0146 7.66333 9.14229 7.79102C9.26996 7.91872 9.33363 8.07728 9.33369 8.26602C9.33369 8.45474 9.26984 8.6133 9.14229 8.74102C9.0146 8.86871 8.856 8.93312 8.66729 8.9332H5.33369C5.1448 8.9332 4.98647 8.86879 4.85869 8.74102C4.73096 8.61325 4.66729 8.45487 4.66729 8.26602C4.66735 8.07725 4.73097 7.91873 4.85869 7.79102C4.98643 7.66337 5.1449 7.59961 5.33369 7.59961H8.66729Z" fill="currentColor"/>
3
+ <path d="M10.6673 4.66602C10.856 4.6661 11.0146 4.73051 11.1423 4.8582C11.2698 4.98592 11.3337 5.14447 11.3337 5.3332C11.3336 5.52195 11.27 5.68049 11.1423 5.8082C11.0146 5.93589 10.856 5.99952 10.6673 5.99961H5.33369C5.1449 5.99961 4.98644 5.93585 4.85869 5.8082C4.73097 5.68048 4.66734 5.52198 4.66729 5.3332C4.66729 5.14434 4.73095 4.98597 4.85869 4.8582C4.98647 4.73043 5.1448 4.66602 5.33369 4.66602H10.6673Z" fill="currentColor"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M13.6001 1.75977C13.9536 1.75977 14.2399 2.04615 14.2399 2.39961V11.9996C14.2399 12.066 14.2298 12.13 14.211 12.1902C14.1744 12.3081 14.1037 12.4167 14.0001 12.4996L12.0001 14.0996C11.7454 14.3033 11.3783 14.2825 11.1478 14.052L9.95244 12.8566L8.4001 14.0996C8.16636 14.2866 7.83383 14.2866 7.6001 14.0996L6.04697 12.8566L4.85244 14.052C4.62185 14.2825 4.25474 14.3033 4.0001 14.0996L2.0001 12.4996C1.89652 12.4167 1.8258 12.3081 1.78916 12.1902C1.7704 12.13 1.76025 12.066 1.76025 11.9996V2.39961C1.76025 2.04615 2.04664 1.75977 2.4001 1.75977H13.6001ZM3.03994 11.691L4.35244 12.7418L5.54775 11.5473L5.63994 11.4707C5.86818 11.315 6.17725 11.3213 6.4001 11.4996L8.0001 12.7793L9.6001 11.4996L9.70088 11.434C9.94486 11.3047 10.2507 11.3456 10.4524 11.5473L11.647 12.7418L12.9603 11.691V3.03945H3.03994V11.691Z" fill="currentColor"/>
5
+ </svg>
@@ -12,6 +12,7 @@ export interface ChipProps {
12
12
  size?: ChipSize;
13
13
  clickable?: boolean;
14
14
  icon?: string;
15
+ iconPosition?: "left" | "right";
15
16
  textColor?: string;
16
17
  backgroundColor?: string;
17
18
  }
@@ -9,4 +9,7 @@ export interface SearchBarProps {
9
9
  assistiveText?: string;
10
10
  value?: string;
11
11
  fullWidth?: boolean;
12
+ options?: string[];
13
+ maxDisplayedItems?: number;
14
+ onOptionSelect?: (option: string) => void;
12
15
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rte-ds/core",
3
- "version": "1.3.16",
3
+ "version": "1.3.18",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "lint": "eslint .",