aural-ui 2.0.2 → 2.0.4

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 (42) hide show
  1. package/README.md +252 -377
  2. package/dist/components/button/Button.stories.tsx +43 -0
  3. package/dist/components/button/index.tsx +10 -4
  4. package/dist/components/chip/index.tsx +3 -3
  5. package/dist/components/icon-button/IconButton.stories.tsx +48 -0
  6. package/dist/components/icon-button/index.tsx +6 -2
  7. package/dist/components/input/index.tsx +4 -0
  8. package/dist/components/overlay/index.tsx +22 -5
  9. package/dist/components/tag/index.tsx +2 -2
  10. package/dist/components/textarea/index.tsx +2 -0
  11. package/dist/components/tooltip/index.tsx +45 -0
  12. package/dist/hooks/index.ts +1 -0
  13. package/dist/hooks/use-change-state/UseChangeState.stories.tsx +744 -0
  14. package/dist/hooks/use-change-state/index.tsx +17 -0
  15. package/dist/hooks/use-change-state/meta.ts +6 -0
  16. package/dist/icons/circle-tick-icon/CircleTickIcon.stories.tsx +1204 -0
  17. package/dist/icons/circle-tick-icon/index.tsx +22 -0
  18. package/dist/icons/circle-tick-icon/meta.ts +8 -0
  19. package/dist/icons/copy-icon/CopyIcon.stories.tsx +1021 -0
  20. package/dist/icons/copy-icon/index.tsx +21 -0
  21. package/dist/icons/copy-icon/meta.ts +8 -0
  22. package/dist/icons/download-icon/DownloadIcon.stories.tsx +877 -0
  23. package/dist/icons/download-icon/index.tsx +22 -0
  24. package/dist/icons/download-icon/meta.ts +8 -0
  25. package/dist/icons/filter-bar-row-icon/FilterBarRowIcon.stories.tsx +1109 -0
  26. package/dist/icons/filter-bar-row-icon/index.tsx +24 -0
  27. package/dist/icons/filter-bar-row-icon/meta.ts +8 -0
  28. package/dist/icons/index.ts +8 -0
  29. package/dist/icons/notepad-icon/NotepadIcon.stories.tsx +1159 -0
  30. package/dist/icons/notepad-icon/index.tsx +21 -0
  31. package/dist/icons/notepad-icon/meta.ts +8 -0
  32. package/dist/icons/notes-icon/NotesIcon.stories.tsx +1159 -0
  33. package/dist/icons/notes-icon/index.tsx +24 -0
  34. package/dist/icons/notes-icon/meta.ts +8 -0
  35. package/dist/icons/paper-plane-icon/PaperPlaneIcon.stories.tsx +936 -0
  36. package/dist/icons/paper-plane-icon/index.tsx +33 -0
  37. package/dist/icons/paper-plane-icon/meta.ts +8 -0
  38. package/dist/icons/suggestion-icon/SuggestionIcon.stories.tsx +907 -0
  39. package/dist/icons/suggestion-icon/index.tsx +33 -0
  40. package/dist/icons/suggestion-icon/meta.ts +8 -0
  41. package/dist/index.js +1 -1
  42. package/package.json +1 -1
@@ -0,0 +1,22 @@
1
+ import React from "react"
2
+ import { AccessibleIcon } from "@radix-ui/react-accessible-icon"
3
+
4
+ export const CircleTickIcon = (
5
+ props: React.JSX.IntrinsicAttributes & React.SVGProps<SVGSVGElement>
6
+ ) => (
7
+ <AccessibleIcon label="Circle Tick Icon">
8
+ <svg
9
+ viewBox="0 0 16 17"
10
+ fill="none"
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ stroke="currentColor"
13
+ {...props}
14
+ >
15
+ <path
16
+ d="M10.25 6.625L6.875 10.75L5.375 9.25M14.9375 8.5C14.9375 12.3315 11.8315 15.4375 8 15.4375C4.16852 15.4375 1.0625 12.3315 1.0625 8.5C1.0625 4.66852 4.16852 1.5625 8 1.5625C11.8315 1.5625 14.9375 4.66852 14.9375 8.5Z"
17
+ strokeLinecap="square"
18
+ strokeWidth="1.5"
19
+ />
20
+ </svg>
21
+ </AccessibleIcon>
22
+ )
@@ -0,0 +1,8 @@
1
+ export const meta = {
2
+ dependencies: {
3
+ "@radix-ui/react-accessible-icon": "^1.1.7",
4
+ },
5
+ devDependencies: {},
6
+ internalDependencies: [],
7
+ tokens: [],
8
+ }