@dhasdk/simple-ui 1.0.21 → 1.0.22
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 +2 -0
- package/index.css +1 -1
- package/index.js +12 -12
- package/index.mjs +526 -523
- package/lib/SideBarNav.d.ts +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1669,6 +1669,8 @@ Full list of props below
|
|
|
1669
1669
|
| appName | string | No | undefined | The application name to dispilay |
|
|
1670
1670
|
| children | ReactNode | Yes | undefined | This prop takes in any children and displays them between the horizontal rule and the list of menu items. It is intended for to allow developers to add a Search component. See usage example above. |
|
|
1671
1671
|
| className | string | Yes | (1) below | a group of alternate css classes that can be specified by the developer and applied to the outer **`div`** element. |
|
|
1672
|
+
| classNameBackButton | string | Yes | **`-mt-8 w-full relative hover:cursor-pointer`** | alternative CSS classes that are
|
|
1673
|
+
applied to the **`button`** (container) that contains the back arrow image and 'Back' text.|
|
|
1672
1674
|
| clickOutsideCloses | boolean | Yes | **`false`** | clicking or tapping elsewhere on the application will close the SideBarNav |
|
|
1673
1675
|
| image | string | No | undefined | string path to the application logo to display |
|
|
1674
1676
|
| classNameImage | string | Yes | (2) below | a group of alternate classes that can be specified for the logo image, and applied to the **`img`** element |
|