@dhasdk/simple-ui 1.0.47 → 1.0.49

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/README.md CHANGED
@@ -53,7 +53,9 @@ Tooltip
53
53
 
54
54
  ## Changelog
55
55
 
56
- 1.0.47 - bug fix for **`Search`** on dark backgrounds
56
+ 1.0.49 - bug fix for **`Search`** layout
57
+
58
+ 1.0.47/48 - bug fix for **`Search`** on dark backgrounds
57
59
 
58
60
  1.0.46 - updated **`SideBarNav`** to allow option of back arrow or 'x' closing icons, plus added the props **`classNameBackIcon`**, **`classNameBackText`**, and **`classNameBackContainer`**
59
61
 
@@ -1432,7 +1434,7 @@ Full list of props below
1432
1434
  | airaLabel | **`string`** | Yes | **`'Search'`** | The aria-label to assign to this Search component |
1433
1435
  | className | **`string`** | Yes | see (1) below | alternate css classes to add/change styling of the input element. |
1434
1436
  | classNameContainer | **`string`** | Yes | **`h-12 md:h-[50px] lg:h-14 flex items-center max-w-full relative`** | alternate css classes to add/change styling of the span tag that wraps the search component. |
1435
- | classNameInputContainer | **`string`** | Yes | **`border-[#6a686b] w-[309px] md:w-[334px] lg:w-[350px] inline-flex bg-white items-center`** | alternate css classes to add/change styling of the span tag that wraps the search component. |
1437
+ | classNameInputContainer | **`string`** | Yes | **`border-[#6a686b] w-[309px] md:w-[334px] lg:w-[350px] inline-flex bg-white items-center lg:bg-transparent`** | alternate css classes to add/change styling of the span tag that wraps the search component. |
1436
1438
  | classNameListOutput | **`string`** | Yes | see (2) below | alternate css classes to add/change styling of the output list or search results box. |
1437
1439
  | iconLink | **`boolean`** | Yes | **`{false}`** | If set to true, a search icon is displayed that when clicked will expand into a wider Search component. |
1438
1440
  | searchableData | **`SearchDataItem[]`** | No | undefined | The data that the search component uses as its data source. This data must conform to the SearchDataItem interface. An example data file is shown above. |