aural-ui 2.0.1 → 2.0.3

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 (56) hide show
  1. package/dist/components/button/Button.stories.tsx +43 -0
  2. package/dist/components/button/index.tsx +10 -4
  3. package/dist/components/chip/index.tsx +3 -3
  4. package/dist/components/dropdown/index.tsx +2 -7
  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/sheet/index.tsx +5 -2
  10. package/dist/components/tag/index.tsx +2 -2
  11. package/dist/components/textarea/index.tsx +2 -0
  12. package/dist/components/tooltip/index.tsx +45 -0
  13. package/dist/hooks/index.ts +1 -0
  14. package/dist/hooks/use-change-state/UseChangeState.stories.tsx +744 -0
  15. package/dist/hooks/use-change-state/index.tsx +17 -0
  16. package/dist/hooks/use-change-state/meta.ts +6 -0
  17. package/dist/icons/all-icons.tsx +155 -79
  18. package/dist/icons/capital-a-letter-icon/CapitalALetterIcon.stories.tsx +992 -0
  19. package/dist/icons/capital-a-letter-icon/index.tsx +32 -0
  20. package/dist/icons/capital-a-letter-icon/meta.ts +8 -0
  21. package/dist/icons/circle-tick-icon/CircleTickIcon.stories.tsx +1204 -0
  22. package/dist/icons/circle-tick-icon/index.tsx +22 -0
  23. package/dist/icons/circle-tick-icon/meta.ts +8 -0
  24. package/dist/icons/copy-icon/CopyIcon.stories.tsx +1021 -0
  25. package/dist/icons/copy-icon/index.tsx +21 -0
  26. package/dist/icons/copy-icon/meta.ts +8 -0
  27. package/dist/icons/download-icon/DownloadIcon.stories.tsx +877 -0
  28. package/dist/icons/download-icon/index.tsx +22 -0
  29. package/dist/icons/download-icon/meta.ts +8 -0
  30. package/dist/icons/filter-bar-row-icon/FilterBarRowIcon.stories.tsx +1109 -0
  31. package/dist/icons/filter-bar-row-icon/index.tsx +24 -0
  32. package/dist/icons/filter-bar-row-icon/meta.ts +8 -0
  33. package/dist/icons/head-icon/HeadIcon.stories.tsx +981 -0
  34. package/dist/icons/head-icon/index.tsx +26 -0
  35. package/dist/icons/head-icon/meta.ts +8 -0
  36. package/dist/icons/index.ts +48 -25
  37. package/dist/icons/musical-note-icon/MusicalNoteIcon.stories.tsx +1032 -0
  38. package/dist/icons/musical-note-icon/index.tsx +25 -0
  39. package/dist/icons/musical-note-icon/meta.ts +8 -0
  40. package/dist/icons/notepad-icon/NotepadIcon.stories.tsx +1159 -0
  41. package/dist/icons/notepad-icon/index.tsx +21 -0
  42. package/dist/icons/notepad-icon/meta.ts +8 -0
  43. package/dist/icons/notes-icon/NotesIcon.stories.tsx +1159 -0
  44. package/dist/icons/notes-icon/index.tsx +24 -0
  45. package/dist/icons/notes-icon/meta.ts +8 -0
  46. package/dist/icons/paper-plane-icon/PaperPlaneIcon.stories.tsx +936 -0
  47. package/dist/icons/paper-plane-icon/index.tsx +33 -0
  48. package/dist/icons/paper-plane-icon/meta.ts +8 -0
  49. package/dist/icons/setting-icon/SettingIcon.stories.tsx +1024 -0
  50. package/dist/icons/setting-icon/index.tsx +30 -0
  51. package/dist/icons/setting-icon/meta.ts +8 -0
  52. package/dist/icons/suggestion-icon/SuggestionIcon.stories.tsx +907 -0
  53. package/dist/icons/suggestion-icon/index.tsx +33 -0
  54. package/dist/icons/suggestion-icon/meta.ts +8 -0
  55. package/dist/index.js +1 -1
  56. package/package.json +1 -1
@@ -0,0 +1,26 @@
1
+ import React from "react"
2
+ import { AccessibleIcon } from "@radix-ui/react-accessible-icon"
3
+
4
+ export const HeadIcon = (
5
+ props: React.JSX.IntrinsicAttributes & React.SVGProps<SVGSVGElement>
6
+ ) => {
7
+ return (
8
+ <AccessibleIcon label="Head Icon">
9
+ <svg
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ width="16"
12
+ height="17"
13
+ viewBox="0 0 16 17"
14
+ fill="none"
15
+ {...props}
16
+ >
17
+ <path
18
+ d="M12.1667 12.6112H9.5V14.6667H4.5C4.5 12.9371 4.65313 11.5249 3.52284 10.0875C2.88207 9.27259 2.5 8.24564 2.5 7.12967C2.5 4.48075 4.65265 2.33337 7.30808 2.33337C9.26557 2.33337 11.0679 3.2706 11.8108 5.1651C12.3315 6.49261 13.0353 7.47263 13.8333 8.66671L12.1667 9.52782V12.6112Z"
19
+ stroke="currentColor"
20
+ strokeWidth="1.5"
21
+ strokeLinecap="square"
22
+ />
23
+ </svg>
24
+ </AccessibleIcon>
25
+ )
26
+ }
@@ -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
+ }
@@ -1,46 +1,69 @@
1
+ export * from "./ai-avatar-icon"
1
2
  export * from "./alert-icon"
2
3
  export * from "./angle-down-icon"
4
+ export * from "./arrow-box-left-icon"
5
+ export * from "./arrow-corner-up-left-icon"
6
+ export * from "./arrow-corner-up-right-icon"
3
7
  export * from "./arrow-right-icon"
8
+ export * from "./arrow-right-up-icon"
9
+ export * from "./art-board-icon"
4
10
  export * from "./audio-bar-icon"
11
+ export * from "./bubble-check-icon"
12
+ export * from "./bubble-crossed-icon"
13
+ export * from "./bubble-sparkle-icon"
14
+ export * from "./capital-a-letter-icon"
15
+ export * from "./chevron-double-left-icon"
16
+ export * from "./chevron-double-right-icon"
17
+ export * from "./chevron-down-icon"
5
18
  export * from "./chevron-left-icon"
6
19
  export * from "./chevron-right-icon"
7
20
  export * from "./chevron-up-icon"
8
- export * from "./chevron-down-icon"
9
- export * from "./chevron-double-left-icon"
10
- export * from "./chevron-double-right-icon"
21
+ export * from "./circle-tick-icon"
22
+ export * from "./command-icon"
23
+ export * from "./copy-icon"
11
24
  export * from "./cross-circle-icon"
12
25
  export * from "./cross-icon"
26
+ export * from "./download-icon"
27
+ export * from "./edit-big-icon"
13
28
  export * from "./eye-close-icon"
14
29
  export * from "./eye-open-icon"
15
30
  export * from "./feature-shine-icon"
16
- export * from "./search-icon"
17
- export * from "./site-logo-icon"
18
- export * from "./tick-circle-icon"
19
- export * from "./tick-icon"
20
31
  export * from "./file-chart-icon"
32
+ export * from "./file-text-icon"
33
+ export * from "./filter-bar-row-icon"
21
34
  export * from "./grip-vertical-icon"
22
- export * from "./trash-icon"
23
- export * from "./light-bulb-simple-icon"
24
- export * from "./bubble-crossed-icon"
25
- export * from "./bubble-sparkle-icon"
35
+ export * from "./head-icon"
36
+ export * from "./image-icon"
26
37
  export * from "./import-folder-icon"
27
- export * from "./plus-icon"
28
- export * from "./arrow-box-left-icon"
38
+ export * from "./layout-column-icon"
39
+ export * from "./layout-left-icon"
40
+ export * from "./layout-right-icon"
41
+ export * from "./light-bulb-simple-icon"
42
+ export * from "./magic-book-icon"
29
43
  export * from "./maintenance-icon"
44
+ export * from "./message-icon"
30
45
  export * from "./move-horizontal-icon"
31
46
  export * from "./move-vertical-icon"
32
- export * from "./arrow-right-up-icon"
33
- export * from "./upload-icon"
34
- export * from "./magic-book-icon"
35
- export * from "./edit-big-icon"
36
- export * from "./command-icon"
37
- export * from "./bubble-check-icon"
38
- export * from "./image-icon"
39
- export * from "./vertical-menu-icon"
40
- export * from "./pencil-icon"
47
+ export * from "./musical-note-icon"
48
+ export * from "./notepad-icon"
49
+ export * from "./notes-icon"
41
50
  export * from "./page-search-icon"
42
- export * from "./message-icon"
43
- export * from "./art-board-icon"
51
+ export * from "./paint-roll-icon"
52
+ export * from "./paper-plane-icon"
53
+ export * from "./pencil-icon"
54
+ export * from "./plus-icon"
55
+ export * from "./search-icon"
56
+ export * from "./setting-icon"
57
+ export * from "./site-logo-icon"
58
+ export * from "./sparkles-soft-icon"
44
59
  export * from "./spinner-gradient-icon"
45
60
  export * from "./spinner-solid-icon"
46
- export * from "./file-text-icon"
61
+ export * from "./spinner-solid-neutral-icon"
62
+ export * from "./suggestion-icon"
63
+ export * from "./text-color-icon"
64
+ export * from "./text-indicator-icon"
65
+ export * from "./tick-circle-icon"
66
+ export * from "./tick-icon"
67
+ export * from "./trash-icon"
68
+ export * from "./upload-icon"
69
+ export * from "./vertical-menu-icon"