@hexure/ui 1.1.2 → 1.3.1

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 (47) hide show
  1. package/README.md +10 -9
  2. package/dist/cjs/index.js +211 -116
  3. package/dist/cjs/index.js.map +1 -1
  4. package/dist/cjs/types/components/Button/Button.d.ts +7 -2
  5. package/dist/cjs/types/components/Copy/Copy.d.ts +2 -0
  6. package/dist/cjs/types/components/DatePicker/DatePicker.d.ts +27 -0
  7. package/dist/cjs/types/components/DatePicker/DatePicker.stories.d.ts +5 -0
  8. package/dist/cjs/types/components/DatePicker/index.d.ts +1 -0
  9. package/dist/cjs/types/components/Drawer/Drawer.d.ts +28 -0
  10. package/dist/cjs/types/components/Drawer/Drawer.stories.d.ts +5 -0
  11. package/dist/cjs/types/components/Drawer/index.d.ts +1 -0
  12. package/dist/cjs/types/components/Input/Input.d.ts +1 -0
  13. package/dist/cjs/types/components/Logo/Logo.d.ts +16 -0
  14. package/dist/cjs/types/components/Logo/Logo.stories.d.ts +5 -0
  15. package/dist/cjs/types/components/Logo/index.d.ts +1 -0
  16. package/dist/cjs/types/components/MoreMenu/MoreMenu.d.ts +13 -0
  17. package/dist/cjs/types/components/MoreMenu/MoreMenu.stories.d.ts +5 -0
  18. package/dist/cjs/types/components/MoreMenu/index.d.ts +1 -0
  19. package/dist/cjs/types/components/Select/Select.d.ts +9 -0
  20. package/dist/cjs/types/components/ZeroState/ZeroState.d.ts +18 -0
  21. package/dist/cjs/types/components/ZeroState/ZeroState.stories.d.ts +5 -0
  22. package/dist/cjs/types/components/ZeroState/index.d.ts +1 -0
  23. package/dist/cjs/types/index.d.ts +3 -0
  24. package/dist/esm/index.js +209 -117
  25. package/dist/esm/index.js.map +1 -1
  26. package/dist/esm/types/components/Button/Button.d.ts +7 -2
  27. package/dist/esm/types/components/Copy/Copy.d.ts +2 -0
  28. package/dist/esm/types/components/DatePicker/DatePicker.d.ts +27 -0
  29. package/dist/esm/types/components/DatePicker/DatePicker.stories.d.ts +5 -0
  30. package/dist/esm/types/components/DatePicker/index.d.ts +1 -0
  31. package/dist/esm/types/components/Drawer/Drawer.d.ts +28 -0
  32. package/dist/esm/types/components/Drawer/Drawer.stories.d.ts +5 -0
  33. package/dist/esm/types/components/Drawer/index.d.ts +1 -0
  34. package/dist/esm/types/components/Input/Input.d.ts +1 -0
  35. package/dist/esm/types/components/Logo/Logo.d.ts +16 -0
  36. package/dist/esm/types/components/Logo/Logo.stories.d.ts +5 -0
  37. package/dist/esm/types/components/Logo/index.d.ts +1 -0
  38. package/dist/esm/types/components/MoreMenu/MoreMenu.d.ts +13 -0
  39. package/dist/esm/types/components/MoreMenu/MoreMenu.stories.d.ts +5 -0
  40. package/dist/esm/types/components/MoreMenu/index.d.ts +1 -0
  41. package/dist/esm/types/components/Select/Select.d.ts +9 -0
  42. package/dist/esm/types/components/ZeroState/ZeroState.d.ts +18 -0
  43. package/dist/esm/types/components/ZeroState/ZeroState.stories.d.ts +5 -0
  44. package/dist/esm/types/components/ZeroState/index.d.ts +1 -0
  45. package/dist/esm/types/index.d.ts +3 -0
  46. package/dist/index.d.ts +121 -55
  47. package/package.json +6 -5
package/README.md CHANGED
@@ -67,17 +67,18 @@ You should release a new version of this package immediately after a Pull Reques
67
67
  - Making minor bumps to npm packages
68
68
  - Fixing bugs with existing components
69
69
  2. Pull down the latest version of main and create a new branch off it that corresponds with the new version number: `git branch -b release/1.x.x`
70
- 3. Make sure ESLint passes: `npm run eslint`
70
+ 3. Update package.json with the new version number.
71
+ 4. Make sure ESLint passes: `npm run eslint`
71
72
  - Since ESLint passing is a requirement for all PRs, this should always pass
72
- 4. Run Rollup to compile the src files into the dist directory for distribution: `npm run rollup`
73
+ 5. Run Rollup to compile the src files into the dist directory for distribution: `npm run rollup`
73
74
  - Sometimes rollup won't exit out the command after generating the files into dist. If this happens, just exit out of the process
74
- 5. Verify the updates are seen in the dist directory: `git status` and/or `git diff`
75
- 6. Add, commit, and push the changes: `git add .` then `git commit -m "v1.x.x"` then `git push origin release/1.x.x`
76
- 7. Create a Pull Request in Azure DevOps against the main branch.
77
- 8. Your Pull Request must be reviewed and approved by the lead over this repository.
78
- 9. Once approved, merge your pull request into main.
79
- 10. Pull down the updated main branch and run `npm publish`
80
- 11. Go to the Azure DevOps repo and add a new Tag
75
+ 6. Verify the updates are seen in the dist directory: `git status` and/or `git diff`
76
+ 7. Add, commit, and push the changes: `git add .` then `git commit -m "v1.x.x"` then `git push origin release/1.x.x`
77
+ 8. Create a Pull Request in Azure DevOps against the main branch.
78
+ 9. Your Pull Request must be reviewed and approved by the lead over this repository.
79
+ 10. Once approved, merge your pull request into main.
80
+ 11. Pull down the updated main branch and run `npm publish`
81
+ 12. Go to the Azure DevOps repo and add a new Tag
81
82
  - Tag Name: v1.x.x
82
83
  - Description: Add details around what was added/changed
83
84