@dhasdk/simple-ui 1.0.46 → 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
@@ -52,7 +52,11 @@ Tooltip
52
52
  <!-- C H A N G E L O G --------------------------------------------------------------- -->
53
53
 
54
54
  ## Changelog
55
-
55
+
56
+ 1.0.49 - bug fix for **`Search`** layout
57
+
58
+ 1.0.47/48 - bug fix for **`Search`** on dark backgrounds
59
+
56
60
  1.0.46 - updated **`SideBarNav`** to allow option of back arrow or 'x' closing icons, plus added the props **`classNameBackIcon`**, **`classNameBackText`**, and **`classNameBackContainer`**
57
61
 
58
62
  1.0.45 - updated **`BreadCrumbs`** to allow custom styling of separator icons + fix for additional icon styling
@@ -1430,7 +1434,7 @@ Full list of props below
1430
1434
  | airaLabel | **`string`** | Yes | **`'Search'`** | The aria-label to assign to this Search component |
1431
1435
  | className | **`string`** | Yes | see (1) below | alternate css classes to add/change styling of the input element. |
1432
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. |
1433
- | 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. |
1434
1438
  | classNameListOutput | **`string`** | Yes | see (2) below | alternate css classes to add/change styling of the output list or search results box. |
1435
1439
  | iconLink | **`boolean`** | Yes | **`{false}`** | If set to true, a search icon is displayed that when clicked will expand into a wider Search component. |
1436
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. |