@dhasdk/simple-ui 0.0.32 → 1.0.0

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +8 -3
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  This library was generated with [Nx](https://nx.dev) on React 18.x.
4
4
 
5
- ## <span style="color: orange;">*This library is under active development and not ready for production use\*</span>
5
+ ## <span style="color: orange;">*This library is under active development and not ready for production use outside of DHA WMT\*</span>
6
6
 
7
7
 
8
8
 
@@ -30,7 +30,7 @@ This library was generated with [Nx](https://nx.dev) on React 18.x.
30
30
 
31
31
  ## Quick Notes:
32
32
 
33
- - Some of these components use what are called **variants** from the **class-variance-authority** library. This allows pre-defined styles to be set, or 'variants', and those variants to be called by name via a prop when using the specified component. An example is the **Button** component below, and calling it using the 'DHAActive' style variant of that component (example code below).
33
+ - Some of these components use what are called **variants**. This allows pre-defined styles to be set, or 'variants', and those variants to be called by name via a prop when using the specified component. An example is the **Button** component below, and calling it using the 'filled' style variant of that component.
34
34
 
35
35
  <!-- I N S T A L L A T I O N ----------------------------------------------------------------------------------- -->
36
36
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dhasdk/simple-ui",
3
- "version": "0.0.32",
3
+ "version": "1.0.0",
4
4
  "license": "MIT",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",
@@ -11,7 +11,12 @@
11
11
  "require": "./index.js"
12
12
  }
13
13
  },
14
- "devDependencies": {
15
- "@storybook/addon-a11y": "^8.4.7"
14
+ "dependencies": {
15
+ "dayjs": "^1.11.13",
16
+ "tailwind-merge": "^2.3.0",
17
+ "tailwindcss": "3.4.3",
18
+ "react": "18.3.1",
19
+ "react-dom": "18.3.1",
20
+ "react-router-dom": "^6.23.1"
16
21
  }
17
22
  }