@dust-tt/sparkle 0.2.210 → 0.2.212

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 (147) hide show
  1. package/dist/cjs/_index.d.ts +4 -4
  2. package/dist/cjs/components/Checkbox.d.ts +4 -3
  3. package/dist/cjs/components/Item.d.ts +1 -1
  4. package/dist/cjs/components/Tree.d.ts +11 -6
  5. package/dist/cjs/icons/solid/ArrowDownS.d.ts +4 -0
  6. package/dist/cjs/icons/solid/ArrowLeftS.d.ts +4 -0
  7. package/dist/cjs/icons/solid/ArrowRightS.d.ts +4 -0
  8. package/dist/cjs/icons/solid/ArrowUpS.d.ts +4 -0
  9. package/dist/cjs/icons/solid/ChevronDoubleLeft.d.ts +4 -0
  10. package/dist/cjs/icons/solid/ChevronDoubleRight.d.ts +4 -0
  11. package/dist/cjs/icons/solid/Company.d.ts +4 -0
  12. package/dist/cjs/icons/solid/Filter.d.ts +4 -0
  13. package/dist/cjs/icons/solid/Heart.d.ts +4 -0
  14. package/dist/cjs/icons/solid/History.d.ts +4 -0
  15. package/dist/cjs/icons/solid/Home.d.ts +4 -0
  16. package/dist/cjs/icons/solid/MarkPen.d.ts +4 -0
  17. package/dist/cjs/icons/solid/Translate.d.ts +4 -0
  18. package/dist/cjs/icons/solid/index.d.ts +13 -0
  19. package/dist/cjs/icons/stroke/ArrowDownS.d.ts +4 -0
  20. package/dist/cjs/icons/stroke/ArrowLeftS.d.ts +4 -0
  21. package/dist/cjs/icons/stroke/ArrowRightS.d.ts +4 -0
  22. package/dist/cjs/icons/stroke/ArrowUpS.d.ts +4 -0
  23. package/dist/cjs/icons/stroke/ChevronDoubleLeft.d.ts +4 -0
  24. package/dist/cjs/icons/stroke/ChevronDoubleRight.d.ts +4 -0
  25. package/dist/cjs/icons/stroke/Company.d.ts +4 -0
  26. package/dist/cjs/icons/stroke/Filter.d.ts +4 -0
  27. package/dist/cjs/icons/stroke/Heart.d.ts +4 -0
  28. package/dist/cjs/icons/stroke/History.d.ts +4 -0
  29. package/dist/cjs/icons/stroke/Home.d.ts +4 -0
  30. package/dist/cjs/icons/stroke/MarkPen.d.ts +4 -0
  31. package/dist/cjs/icons/stroke/Translate.d.ts +4 -0
  32. package/dist/cjs/icons/stroke/index.d.ts +13 -0
  33. package/dist/cjs/index.js +4415 -4257
  34. package/dist/cjs/index.js.map +1 -1
  35. package/dist/cjs/stories/Checkbox.stories.d.ts +2 -0
  36. package/dist/cjs/stories/Tree.stories.d.ts +0 -1
  37. package/dist/esm/_index.d.ts +4 -4
  38. package/dist/esm/components/Checkbox.d.ts +4 -3
  39. package/dist/esm/components/Item.d.ts +1 -1
  40. package/dist/esm/components/Tree.d.ts +11 -6
  41. package/dist/esm/icons/solid/ArrowDownS.d.ts +4 -0
  42. package/dist/esm/icons/solid/ArrowLeftS.d.ts +4 -0
  43. package/dist/esm/icons/solid/ArrowRightS.d.ts +4 -0
  44. package/dist/esm/icons/solid/ArrowUpS.d.ts +4 -0
  45. package/dist/esm/icons/solid/ChevronDoubleLeft.d.ts +4 -0
  46. package/dist/esm/icons/solid/ChevronDoubleRight.d.ts +4 -0
  47. package/dist/esm/icons/solid/Company.d.ts +4 -0
  48. package/dist/esm/icons/solid/Filter.d.ts +4 -0
  49. package/dist/esm/icons/solid/Heart.d.ts +4 -0
  50. package/dist/esm/icons/solid/History.d.ts +4 -0
  51. package/dist/esm/icons/solid/Home.d.ts +4 -0
  52. package/dist/esm/icons/solid/MarkPen.d.ts +4 -0
  53. package/dist/esm/icons/solid/Translate.d.ts +4 -0
  54. package/dist/esm/icons/solid/index.d.ts +13 -0
  55. package/dist/esm/icons/stroke/ArrowDownS.d.ts +4 -0
  56. package/dist/esm/icons/stroke/ArrowLeftS.d.ts +4 -0
  57. package/dist/esm/icons/stroke/ArrowRightS.d.ts +4 -0
  58. package/dist/esm/icons/stroke/ArrowUpS.d.ts +4 -0
  59. package/dist/esm/icons/stroke/ChevronDoubleLeft.d.ts +4 -0
  60. package/dist/esm/icons/stroke/ChevronDoubleRight.d.ts +4 -0
  61. package/dist/esm/icons/stroke/Company.d.ts +4 -0
  62. package/dist/esm/icons/stroke/Filter.d.ts +4 -0
  63. package/dist/esm/icons/stroke/Heart.d.ts +4 -0
  64. package/dist/esm/icons/stroke/History.d.ts +4 -0
  65. package/dist/esm/icons/stroke/Home.d.ts +4 -0
  66. package/dist/esm/icons/stroke/MarkPen.d.ts +4 -0
  67. package/dist/esm/icons/stroke/Translate.d.ts +4 -0
  68. package/dist/esm/icons/stroke/index.d.ts +13 -0
  69. package/dist/esm/index.js +4392 -4260
  70. package/dist/esm/index.js.map +1 -1
  71. package/dist/esm/stories/Checkbox.stories.d.ts +2 -0
  72. package/dist/esm/stories/Tree.stories.d.ts +0 -1
  73. package/dist/tsconfig.tsbuildinfo +1 -1
  74. package/package.json +1 -1
  75. package/src/_index.ts +52 -0
  76. package/src/components/Checkbox.tsx +44 -12
  77. package/src/components/Item.tsx +1 -1
  78. package/src/components/Tree.tsx +90 -68
  79. package/src/components/WindowUtility.tsx +1 -2
  80. package/src/icons/solid/ArrowDownS.tsx +15 -0
  81. package/src/icons/solid/ArrowLeftS.tsx +15 -0
  82. package/src/icons/solid/ArrowRightS.tsx +15 -0
  83. package/src/icons/solid/ArrowUpS.tsx +15 -0
  84. package/src/icons/solid/ChevronDoubleLeft.tsx +22 -0
  85. package/src/icons/solid/ChevronDoubleRight.tsx +22 -0
  86. package/src/icons/solid/Company.tsx +20 -0
  87. package/src/icons/solid/Filter.tsx +18 -0
  88. package/src/icons/solid/Heart.tsx +18 -0
  89. package/src/icons/solid/History.tsx +18 -0
  90. package/src/icons/solid/Home.tsx +20 -0
  91. package/src/icons/solid/MarkPen.tsx +18 -0
  92. package/src/icons/solid/Translate.tsx +18 -0
  93. package/src/icons/solid/index.ts +13 -0
  94. package/src/icons/src/solid/arrow-down-s.svg +3 -0
  95. package/src/icons/src/solid/arrow-left-s.svg +3 -0
  96. package/src/icons/src/solid/arrow-right-s.svg +3 -0
  97. package/src/icons/src/solid/arrow-up-s.svg +3 -0
  98. package/src/icons/src/solid/chevron-double-left.svg +4 -0
  99. package/src/icons/src/solid/chevron-double-right.svg +4 -0
  100. package/src/icons/src/solid/company.svg +3 -0
  101. package/src/icons/src/solid/filter.svg +3 -0
  102. package/src/icons/src/solid/heart.svg +3 -0
  103. package/src/icons/src/solid/history.svg +3 -0
  104. package/src/icons/src/solid/home.svg +3 -0
  105. package/src/icons/src/solid/mark-pen.svg +3 -0
  106. package/src/icons/src/solid/translate.svg +3 -0
  107. package/src/icons/src/stroke/arrow-down-s.svg +3 -0
  108. package/src/icons/src/stroke/arrow-left-s.svg +3 -0
  109. package/src/icons/src/stroke/arrow-right-s.svg +3 -0
  110. package/src/icons/src/stroke/arrow-up-s.svg +3 -0
  111. package/src/icons/src/stroke/chevron-double-left.svg +4 -0
  112. package/src/icons/src/stroke/chevron-double-right.svg +4 -0
  113. package/src/icons/src/stroke/company.svg +9 -0
  114. package/src/icons/src/stroke/filter.svg +3 -0
  115. package/src/icons/src/stroke/heart.svg +3 -0
  116. package/src/icons/src/stroke/history.svg +3 -0
  117. package/src/icons/src/stroke/home.svg +3 -0
  118. package/src/icons/src/stroke/mark-pen.svg +3 -0
  119. package/src/icons/src/stroke/translate.svg +3 -0
  120. package/src/icons/stroke/ArrowDownS.tsx +15 -0
  121. package/src/icons/stroke/ArrowLeftS.tsx +15 -0
  122. package/src/icons/stroke/ArrowRightS.tsx +15 -0
  123. package/src/icons/stroke/ArrowUpS.tsx +15 -0
  124. package/src/icons/stroke/ChevronDoubleLeft.tsx +16 -0
  125. package/src/icons/stroke/ChevronDoubleRight.tsx +16 -0
  126. package/src/icons/stroke/Company.tsx +24 -0
  127. package/src/icons/stroke/Filter.tsx +15 -0
  128. package/src/icons/stroke/Heart.tsx +20 -0
  129. package/src/icons/stroke/History.tsx +18 -0
  130. package/src/icons/stroke/Home.tsx +20 -0
  131. package/src/icons/stroke/MarkPen.tsx +18 -0
  132. package/src/icons/stroke/Translate.tsx +18 -0
  133. package/src/icons/stroke/index.ts +13 -0
  134. package/src/logo/src/platforms/Zendesk.svg +6 -0
  135. package/src/lottie/collapseBar.ts +124 -124
  136. package/src/lottie/spinnerColor.ts +337 -337
  137. package/src/lottie/spinnerColorLG.ts +824 -824
  138. package/src/lottie/spinnerColorXS.ts +187 -187
  139. package/src/lottie/spinnerDark.ts +353 -353
  140. package/src/lottie/spinnerDarkLG.ts +824 -824
  141. package/src/lottie/spinnerDarkXS.ts +218 -218
  142. package/src/lottie/spinnerLight.ts +342 -342
  143. package/src/lottie/spinnerLightLG.ts +797 -797
  144. package/src/lottie/spinnerLightXS.ts +215 -215
  145. package/src/stories/Checkbox.stories.tsx +75 -6
  146. package/src/stories/Tree.stories.tsx +197 -226
  147. package/src/styles/tailwind.css +7 -9
@@ -102,7 +102,7 @@ import { LogoHorizontalColor as LogoHorizontalColorLogo, LogoHorizontalColorLaye
102
102
  export { LogoHorizontalColorLogo, LogoHorizontalColorLogoLayer1, LogoHorizontalColorLogoLayer2, LogoHorizontalDarkLogo, LogoHorizontalWhiteLogo, LogoSquareColorLogo, LogoSquareColorLogoLayer1, LogoSquareColorLogoLayer2, LogoSquareDarkLogo, LogoSquareWhiteLogo, };
103
103
  import { Ai21 as Ai21Logo, Anthropic as AnthropicLogo, AnthropicWhite as AnthropicWhiteLogo, Claude as ClaudeLogo, Cohere as CohereLogo, Confluence as ConfluenceLogo, Drive as DriveLogo, Gemini as GeminiLogo, Github as GithubLogo, GithubWhite as GithubWhiteLogo, Gong as GongLogo, Google as GoogleLogo, GoogleDoc as GoogleDocLogo, GooglePdf as GooglePdfLogo, GoogleSlide as GoogleSlideLogo, GoogleSpreadsheet as GoogleSpreadsheetLogo, Gpt3 as Gpt3Logo, Gpt4 as Gpt4Logo, HuggingFace as HuggingFaceLogo, Intercom as IntercomLogo, Microsoft as MicrosoftLogo, MicrosoftExcel as MicrosoftExcelLogo, MicrosoftPowerpoint as MicrosoftPowerpointLogo, MicrosoftWord as MicrosoftWordLogo, Mistral as MistralLogo, Notion as NotionLogo, Office as OfficeLogo, Openai as OpenaiLogo, OpenaiWhite as OpenaiWhiteLogo, Replicate as ReplicateLogo, Salesforce as SalesforceLogo, Slack as SlackLogo, Zapier as ZapierLogo, Zendesk as ZendeskLogo } from "./logo/platforms";
104
104
  export { Ai21Logo, AnthropicLogo, AnthropicWhiteLogo, ClaudeLogo, CohereLogo, ConfluenceLogo, DriveLogo, GeminiLogo, GithubLogo, GithubWhiteLogo, GongLogo, GoogleDocLogo, GoogleLogo, GooglePdfLogo, GoogleSlideLogo, GoogleSpreadsheetLogo, Gpt3Logo, Gpt4Logo, HuggingFaceLogo, IntercomLogo, MicrosoftExcelLogo, MicrosoftLogo, MicrosoftPowerpointLogo, MicrosoftWordLogo, MistralLogo, NotionLogo, OfficeLogo, OpenaiLogo, OpenaiWhiteLogo, ReplicateLogo, SalesforceLogo, SlackLogo, ZapierLogo, ZendeskLogo, };
105
- import { ArrowDown as ArrowDownIcon, ArrowDownCircle as ArrowDownCircleIcon, ArrowDownOnSquare as ArrowDownOnSquareIcon, ArrowLeft as ArrowLeftIcon, ArrowPath as ArrowPathIcon, ArrowRight as ArrowRightIcon, ArrowUp as ArrowUpIcon, ArrowUpOnSquare as ArrowUpOnSquareIcon, Attachment as AttachmentIcon, Backspace as BackspaceIcon, Bookmark as BookmarkIcon, BookOpen as BookOpenIcon, Braces as BracesIcon, Card as CardIcon, ChatBubbleBottomCenterPlus as ChatBubbleBottomCenterPlusIcon, ChatBubbleBottomCenterText as ChatBubbleBottomCenterTextIcon, ChatBubbleLeftRight as ChatBubbleLeftRightIcon, ChatBubbleThought as ChatBubbleThoughtIcon, Check as CheckIcon, CheckCircle as CheckCircleIcon, ChevronDown as ChevronDownIcon, ChevronLeft as ChevronLeftIcon, ChevronRight as ChevronRightIcon, ChevronUp as ChevronUpIcon, ChevronUpDown as ChevronUpDownIcon, Circle as CircleIcon, Clipboard as ClipboardIcon, ClipboardCheck as ClipboardCheckIcon, Clock as ClockIcon, CloudArrowDown as CloudArrowDownIcon, CloudArrowLeftRight as CloudArrowLeftRightIcon, CloudArrowUp as CloudArrowUpIcon, CloudX as CloudXIcon, Cog6Tooth as Cog6ToothIcon, Command as CommandIcon, CommandLine as CommandLineIcon, Cube as CubeIcon, Dash as DashIcon, Document as DocumentIcon, DocumentDuplicate as DocumentDuplicateIcon, DocumentPile as DocumentPileIcon, DocumentPlus as DocumentPlusIcon, DocumentText as DocumentTextIcon, Dust as DustIcon, EmotionLaugh as EmotionLaughIcon, Equalizer as EqualizerIcon, ExclamationCircle as ExclamationCircleIcon, ExternalLink as ExternalLinkIcon, Eye as EyeIcon, EyeSlash as EyeSlashIcon, Fire as FireIcon, Flag as FlagIcon, Folder as FolderIcon, FolderOpen as FolderOpenIcon, Fullscreen as FullscreenIcon, FullscreenExit as FullscreenExitIcon, GlobeAlt as GlobeAltIcon, Grab as GrabIcon, HandThumbDown as HandThumbDownIcon, HandThumbUp as HandThumbUpIcon, HeartAlt as HeartAltIcon, Hexagon as HexagonIcon, Image as ImageIcon, InformationCircle as InformationCircleIcon, Key as KeyIcon, Lightbulb as LightbulbIcon, Link as LinkIcon, List as ListIcon, ListAdd as ListAddIcon, ListCheck as ListCheckIcon, ListRemove as ListRemoveIcon, Lock as LockIcon, Login as LoginIcon, Logout as LogoutIcon, Magic as MagicIcon, MagnifyingGlass as MagnifyingGlassIcon, Menu as MenuIcon, More as MoreIcon, MovingMail as MovingMailIcon, Paint as PaintIcon, PaperAirplane as PaperAirplaneIcon, Pause as PauseIcon, PencilSquare as PencilSquareIcon, Planet as PlanetIcon, Play as PlayIcon, Plus as PlusIcon, PlusCircle as PlusCircleIcon, Pushpin as PushpinIcon, Puzzle as PuzzleIcon, QuestionMarkCircle as QuestionMarkCircleIcon, Reaction as ReactionIcon, Rectangle as RectangleIcon, Robot as RobotIcon, Rocket as RocketIcon, Scan as ScanIcon, Server as ServerIcon, ShakeHands as ShakeHandsIcon, Shapes as ShapesIcon, Sparkles as SparklesIcon, Square as SquareIcon, Square3Stack3D as Square3Stack3DIcon, Star as StarIcon, Stop as StopIcon, Table as TableIcon, Tag as TagIcon, Template as TemplateIcon, TestTube as TestTubeIcon, Time as TimeIcon, Trash as TrashIcon, Triangle as TriangleIcon, User as UserIcon, UserArrow as UserArrowIcon, UserGroup as UserGroupIcon, UserPlus as UserPlusIcon, Wrench as WrenchIcon, XCircle as XCircleIcon, XMark as XMarkIcon } from "./icons/solid";
106
- export { ArrowDownCircleIcon, ArrowDownIcon, ArrowDownOnSquareIcon, ArrowLeftIcon, ArrowPathIcon, ArrowRightIcon, ArrowUpIcon, ArrowUpOnSquareIcon, AttachmentIcon, BackspaceIcon, BookmarkIcon, BookOpenIcon, BracesIcon, CardIcon, ChatBubbleBottomCenterPlusIcon, ChatBubbleBottomCenterTextIcon, ChatBubbleLeftRightIcon, ChatBubbleThoughtIcon, CheckCircleIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpDownIcon, ChevronUpIcon, CircleIcon, ClipboardCheckIcon, ClipboardIcon, ClockIcon, CloudArrowDownIcon, CloudArrowLeftRightIcon, CloudArrowUpIcon, CloudXIcon, Cog6ToothIcon, CommandIcon, CommandLineIcon, CubeIcon, DashIcon, DocumentDuplicateIcon, DocumentIcon, DocumentPileIcon, DocumentPlusIcon, DocumentTextIcon, DustIcon, EmotionLaughIcon, EqualizerIcon, ExclamationCircleIcon, ExternalLinkIcon, EyeIcon, EyeSlashIcon, FireIcon, FlagIcon, FolderIcon, FolderOpenIcon, FullscreenExitIcon, FullscreenIcon, GlobeAltIcon, GrabIcon, HandThumbDownIcon, HandThumbUpIcon, HeartAltIcon, HexagonIcon, ImageIcon, InformationCircleIcon, KeyIcon, LightbulbIcon, LinkIcon, ListAddIcon, ListCheckIcon, ListIcon, ListRemoveIcon, LockIcon, LoginIcon, LogoutIcon, MagicIcon, MagnifyingGlassIcon, MenuIcon, MoreIcon, MovingMailIcon, PaintIcon, PaperAirplaneIcon, PauseIcon, PencilSquareIcon, PlanetIcon, PlayIcon, PlusCircleIcon, PlusIcon, PushpinIcon, PuzzleIcon, QuestionMarkCircleIcon, ReactionIcon, RectangleIcon, RobotIcon, RocketIcon, ScanIcon, ServerIcon, ShakeHandsIcon, ShapesIcon, SparklesIcon, Square3Stack3DIcon, SquareIcon, StarIcon, StopIcon, TableIcon, TagIcon, TemplateIcon, TestTubeIcon, TimeIcon, TrashIcon, TriangleIcon, UserArrowIcon, UserGroupIcon, UserIcon, UserPlusIcon, WrenchIcon, XCircleIcon, XMarkIcon, };
107
- import { ArrowDown as ArrowDownStrokeIcon, ArrowDownCircle as ArrowDownCircleStrokeIcon, ArrowDownOnSquare as ArrowDownOnSquareStrokeIcon, ArrowLeft as ArrowLeftStrokeIcon, ArrowPath as ArrowPathStrokeIcon, ArrowRight as ArrowRightStrokeIcon, ArrowUp as ArrowUpStrokeIcon, ArrowUpOnSquare as ArrowUpOnSquareStrokeIcon, Attachment as AttachmentStrokeIcon, Backspace as BackspaceStrokeIcon, Bookmark as BookmarkStrokeIcon, BookOpen as BookOpenStrokeIcon, Braces as BracesStrokeIcon, Card as CardStrokeIcon, ChatBubbleBottomCenterPlus as ChatBubbleBottomCenterPlusStrokeIcon, ChatBubbleBottomCenterText as ChatBubbleBottomCenterTextStrokeIcon, ChatBubbleLeftRight as ChatBubbleLeftRightStrokeIcon, ChatBubbleThought as ChatBubbleThoughtStrokeIcon, Check as CheckStrokeIcon, CheckCircle as CheckCircleStrokeIcon, ChevronDown as ChevronDownStrokeIcon, ChevronLeft as ChevronLeftStrokeIcon, ChevronRight as ChevronRightStrokeIcon, ChevronUp as ChevronUpStrokeIcon, ChevronUpDown as ChevronUpDownStrokeIcon, Circle as CircleStrokeIcon, Clipboard as ClipboardStrokeIcon, ClipboardCheck as ClipboardCheckStrokeIcon, Clock as ClockStrokeIcon, CloudArrowDown as CloudArrowDownStrokeIcon, CloudArrowLeftRight as CloudArrowLeftRightStrokeIcon, CloudArrowUp as CloudArrowUpStrokeIcon, CloudX as CloudXStrokeIcon, Cog6Tooth as Cog6ToothStrokeIcon, Command as CommandStrokeIcon, CommandLine as CommandLineStrokeIcon, Cube as CubeStrokeIcon, Dash as DashStrokeIcon, Document as DocumentStrokeIcon, DocumentDuplicate as DocumentDuplicateStrokeIcon, DocumentPile as DocumentPileStrokeIcon, DocumentPlus as DocumentPlusStrokeIcon, DocumentText as DocumentTextStrokeIcon, Dust as DustStrokeIcon, EmotionLaugh as EmotionLaughStrokeIcon, Equalizer as EqualizerStrokeIcon, ExclamationCircle as ExclamationCircleStrokeIcon, ExternalLink as ExternalLinkStrokeIcon, Eye as EyeStrokeIcon, EyeSlash as EyeSlashStrokeIcon, Fire as FireStrokeIcon, Flag as FlagStrokeIcon, Folder as FolderStrokeIcon, FolderOpen as FolderOpenStrokeIcon, Fullscreen as FullscreenStrokeIcon, FullscreenExit as FullscreenExitStrokeIcon, GlobeAlt as GlobeAltStrokeIcon, Grab as GrabStrokeIcon, HandThumbDown as HandThumbDownStrokeIcon, HandThumbUp as HandThumbUpStrokeIcon, HeartAlt as HeartAltStrokeIcon, Hexagon as HexagonStrokeIcon, Image as ImageStrokeIcon, InformationCircle as InformationCircleStrokeIcon, Key as KeyStrokeIcon, Lightbulb as LightbulbStrokeIcon, Link as LinkStrokeIcon, List as ListStrokeIcon, ListAdd as ListAddStrokeIcon, ListCheck as ListCheckStrokeIcon, ListRemove as ListRemoveStrokeIcon, Lock as LockStrokeIcon, Login as LoginStrokeIcon, Logout as LogoutStrokeIcon, Magic as MagicStrokeIcon, MagnifyingGlass as MagnifyingGlassStrokeIcon, Menu as MenuStrokeIcon, More as MoreStrokeIcon, MovingMail as MovingMailStrokeIcon, Paint as PaintStrokeIcon, PaperAirplane as PaperAirplaneStrokeIcon, Pause as PauseStrokeIcon, PencilSquare as PencilSquareStrokeIcon, Planet as PlanetStrokeIcon, Play as PlayStrokeIcon, Plus as PlusStrokeIcon, PlusCircle as PlusCircleStrokeIcon, Pushpin as PushpinStrokeIcon, Puzzle as PuzzleStrokeIcon, QuestionMarkCircle as QuestionMarkCircleStrokeIcon, Reaction as ReactionStrokeIcon, Rectangle as RectangleStrokeIcon, Robot as RobotStrokeIcon, Rocket as RocketStrokeIcon, Scan as ScanStrokeIcon, Server as ServerStrokeIcon, ShakeHands as ShakeHandsStrokeIcon, Shapes as ShapesStrokeIcon, Sparkles as SparklesStrokeIcon, Square as SquareStrokeIcon, Square3Stack3D as Square3Stack3DStrokeIcon, Star as StarStrokeIcon, Stop as StopStrokeIcon, Table as TableStrokeIcon, Tag as TagStrokeIcon, Template as TemplateStrokeIcon, TestTube as TestTubeStrokeIcon, Time as TimeStrokeIcon, Trash as TrashStrokeIcon, Triangle as TriangleStrokeIcon, User as UserStrokeIcon, UserArrow as UserArrowStrokeIcon, UserGroup as UserGroupStrokeIcon, UserPlus as UserPlusStrokeIcon, Wrench as WrenchStrokeIcon, XCircle as XCircleStrokeIcon, XMark as XMarkStrokeIcon } from "./icons/stroke";
108
- export { ArrowDownCircleStrokeIcon, ArrowDownOnSquareStrokeIcon, ArrowDownStrokeIcon, ArrowLeftStrokeIcon, ArrowPathStrokeIcon, ArrowRightStrokeIcon, ArrowUpOnSquareStrokeIcon, ArrowUpStrokeIcon, AttachmentStrokeIcon, BackspaceStrokeIcon, BookmarkStrokeIcon, BookOpenStrokeIcon, BracesStrokeIcon, CardStrokeIcon, ChatBubbleBottomCenterPlusStrokeIcon, ChatBubbleBottomCenterTextStrokeIcon, ChatBubbleLeftRightStrokeIcon, ChatBubbleThoughtStrokeIcon, CheckCircleStrokeIcon, CheckStrokeIcon, ChevronDownStrokeIcon, ChevronLeftStrokeIcon, ChevronRightStrokeIcon, ChevronUpDownStrokeIcon, ChevronUpStrokeIcon, CircleStrokeIcon, ClipboardCheckStrokeIcon, ClipboardStrokeIcon, ClockStrokeIcon, CloudArrowDownStrokeIcon, CloudArrowLeftRightStrokeIcon, CloudArrowUpStrokeIcon, CloudXStrokeIcon, Cog6ToothStrokeIcon, CommandLineStrokeIcon, CommandStrokeIcon, CubeStrokeIcon, DashStrokeIcon, DocumentDuplicateStrokeIcon, DocumentPileStrokeIcon, DocumentPlusStrokeIcon, DocumentStrokeIcon, DocumentTextStrokeIcon, DustStrokeIcon, EmotionLaughStrokeIcon, EqualizerStrokeIcon, ExclamationCircleStrokeIcon, ExternalLinkStrokeIcon, EyeSlashStrokeIcon, EyeStrokeIcon, FireStrokeIcon, FlagStrokeIcon, FolderOpenStrokeIcon, FolderStrokeIcon, FullscreenExitStrokeIcon, FullscreenStrokeIcon, GlobeAltStrokeIcon, GrabStrokeIcon, HandThumbDownStrokeIcon, HandThumbUpStrokeIcon, HeartAltStrokeIcon, HexagonStrokeIcon, ImageStrokeIcon, InformationCircleStrokeIcon, KeyStrokeIcon, LightbulbStrokeIcon, LinkStrokeIcon, ListAddStrokeIcon, ListCheckStrokeIcon, ListRemoveStrokeIcon, ListStrokeIcon, LockStrokeIcon, LoginStrokeIcon, LogoutStrokeIcon, MagicStrokeIcon, MagnifyingGlassStrokeIcon, MenuStrokeIcon, MoreStrokeIcon, MovingMailStrokeIcon, PaintStrokeIcon, PaperAirplaneStrokeIcon, PauseStrokeIcon, PencilSquareStrokeIcon, PlanetStrokeIcon, PlayStrokeIcon, PlusCircleStrokeIcon, PlusStrokeIcon, PushpinStrokeIcon, PuzzleStrokeIcon, QuestionMarkCircleStrokeIcon, ReactionStrokeIcon, RectangleStrokeIcon, RobotStrokeIcon, RocketStrokeIcon, ScanStrokeIcon, ServerStrokeIcon, ShakeHandsStrokeIcon, ShapesStrokeIcon, SparklesStrokeIcon, Square3Stack3DStrokeIcon, SquareStrokeIcon, StarStrokeIcon, StopStrokeIcon, TableStrokeIcon, TagStrokeIcon, TemplateStrokeIcon, TestTubeStrokeIcon, TimeStrokeIcon, TrashStrokeIcon, TriangleStrokeIcon, UserArrowStrokeIcon, UserGroupStrokeIcon, UserPlusStrokeIcon, UserStrokeIcon, WrenchStrokeIcon, XCircleStrokeIcon, XMarkStrokeIcon, };
105
+ import { ArrowDown as ArrowDownIcon, ArrowDownCircle as ArrowDownCircleIcon, ArrowDownOnSquare as ArrowDownOnSquareIcon, ArrowDownS as ArrowDownSIcon, ArrowLeft as ArrowLeftIcon, ArrowLeftS as ArrowLeftSIcon, ArrowPath as ArrowPathIcon, ArrowRight as ArrowRightIcon, ArrowRightS as ArrowRightSIcon, ArrowUp as ArrowUpIcon, ArrowUpOnSquare as ArrowUpOnSquareIcon, ArrowUpS as ArrowUpSIcon, Attachment as AttachmentIcon, Backspace as BackspaceIcon, Bookmark as BookmarkIcon, BookOpen as BookOpenIcon, Braces as BracesIcon, Card as CardIcon, ChatBubbleBottomCenterPlus as ChatBubbleBottomCenterPlusIcon, ChatBubbleBottomCenterText as ChatBubbleBottomCenterTextIcon, ChatBubbleLeftRight as ChatBubbleLeftRightIcon, ChatBubbleThought as ChatBubbleThoughtIcon, Check as CheckIcon, CheckCircle as CheckCircleIcon, ChevronDoubleLeft as ChevronDoubleLeftIcon, ChevronDoubleRight as ChevronDoubleRightIcon, ChevronDown as ChevronDownIcon, ChevronLeft as ChevronLeftIcon, ChevronRight as ChevronRightIcon, ChevronUp as ChevronUpIcon, ChevronUpDown as ChevronUpDownIcon, Circle as CircleIcon, Clipboard as ClipboardIcon, ClipboardCheck as ClipboardCheckIcon, Clock as ClockIcon, CloudArrowDown as CloudArrowDownIcon, CloudArrowLeftRight as CloudArrowLeftRightIcon, CloudArrowUp as CloudArrowUpIcon, CloudX as CloudXIcon, Cog6Tooth as Cog6ToothIcon, Command as CommandIcon, CommandLine as CommandLineIcon, Company as CompanyIcon, Cube as CubeIcon, Dash as DashIcon, Document as DocumentIcon, DocumentDuplicate as DocumentDuplicateIcon, DocumentPile as DocumentPileIcon, DocumentPlus as DocumentPlusIcon, DocumentText as DocumentTextIcon, Dust as DustIcon, EmotionLaugh as EmotionLaughIcon, Equalizer as EqualizerIcon, ExclamationCircle as ExclamationCircleIcon, ExternalLink as ExternalLinkIcon, Eye as EyeIcon, EyeSlash as EyeSlashIcon, Filter as FilterIcon, Fire as FireIcon, Flag as FlagIcon, Folder as FolderIcon, FolderOpen as FolderOpenIcon, Fullscreen as FullscreenIcon, FullscreenExit as FullscreenExitIcon, GlobeAlt as GlobeAltIcon, Grab as GrabIcon, HandThumbDown as HandThumbDownIcon, HandThumbUp as HandThumbUpIcon, Heart as HeartIcon, HeartAlt as HeartAltIcon, Hexagon as HexagonIcon, History as HistoryIcon, Home as HomeIcon, Image as ImageIcon, InformationCircle as InformationCircleIcon, Key as KeyIcon, Lightbulb as LightbulbIcon, Link as LinkIcon, List as ListIcon, ListAdd as ListAddIcon, ListCheck as ListCheckIcon, ListRemove as ListRemoveIcon, Lock as LockIcon, Login as LoginIcon, Logout as LogoutIcon, Magic as MagicIcon, MagnifyingGlass as MagnifyingGlassIcon, MarkPen as MarkPenIcon, Menu as MenuIcon, More as MoreIcon, MovingMail as MovingMailIcon, Paint as PaintIcon, PaperAirplane as PaperAirplaneIcon, Pause as PauseIcon, PencilSquare as PencilSquareIcon, Planet as PlanetIcon, Play as PlayIcon, Plus as PlusIcon, PlusCircle as PlusCircleIcon, Pushpin as PushpinIcon, Puzzle as PuzzleIcon, QuestionMarkCircle as QuestionMarkCircleIcon, Reaction as ReactionIcon, Rectangle as RectangleIcon, Robot as RobotIcon, Rocket as RocketIcon, Scan as ScanIcon, Server as ServerIcon, ShakeHands as ShakeHandsIcon, Shapes as ShapesIcon, Sparkles as SparklesIcon, Square as SquareIcon, Square3Stack3D as Square3Stack3DIcon, Star as StarIcon, Stop as StopIcon, Table as TableIcon, Tag as TagIcon, Template as TemplateIcon, TestTube as TestTubeIcon, Time as TimeIcon, Translate as TranslateIcon, Trash as TrashIcon, Triangle as TriangleIcon, User as UserIcon, UserArrow as UserArrowIcon, UserGroup as UserGroupIcon, UserPlus as UserPlusIcon, Wrench as WrenchIcon, XCircle as XCircleIcon, XMark as XMarkIcon } from "./icons/solid";
106
+ export { ArrowDownCircleIcon, ArrowDownIcon, ArrowDownOnSquareIcon, ArrowDownSIcon, ArrowLeftIcon, ArrowLeftSIcon, ArrowPathIcon, ArrowRightIcon, ArrowRightSIcon, ArrowUpIcon, ArrowUpOnSquareIcon, ArrowUpSIcon, AttachmentIcon, BackspaceIcon, BookmarkIcon, BookOpenIcon, BracesIcon, CardIcon, ChatBubbleBottomCenterPlusIcon, ChatBubbleBottomCenterTextIcon, ChatBubbleLeftRightIcon, ChatBubbleThoughtIcon, CheckCircleIcon, CheckIcon, ChevronDoubleLeftIcon, ChevronDoubleRightIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpDownIcon, ChevronUpIcon, CircleIcon, ClipboardCheckIcon, ClipboardIcon, ClockIcon, CloudArrowDownIcon, CloudArrowLeftRightIcon, CloudArrowUpIcon, CloudXIcon, Cog6ToothIcon, CommandIcon, CommandLineIcon, CompanyIcon, CubeIcon, DashIcon, DocumentDuplicateIcon, DocumentIcon, DocumentPileIcon, DocumentPlusIcon, DocumentTextIcon, DustIcon, EmotionLaughIcon, EqualizerIcon, ExclamationCircleIcon, ExternalLinkIcon, EyeIcon, EyeSlashIcon, FilterIcon, FireIcon, FlagIcon, FolderIcon, FolderOpenIcon, FullscreenExitIcon, FullscreenIcon, GlobeAltIcon, GrabIcon, HandThumbDownIcon, HandThumbUpIcon, HeartAltIcon, HeartIcon, HexagonIcon, HistoryIcon, HomeIcon, ImageIcon, InformationCircleIcon, KeyIcon, LightbulbIcon, LinkIcon, ListAddIcon, ListCheckIcon, ListIcon, ListRemoveIcon, LockIcon, LoginIcon, LogoutIcon, MagicIcon, MagnifyingGlassIcon, MarkPenIcon, MenuIcon, MoreIcon, MovingMailIcon, PaintIcon, PaperAirplaneIcon, PauseIcon, PencilSquareIcon, PlanetIcon, PlayIcon, PlusCircleIcon, PlusIcon, PushpinIcon, PuzzleIcon, QuestionMarkCircleIcon, ReactionIcon, RectangleIcon, RobotIcon, RocketIcon, ScanIcon, ServerIcon, ShakeHandsIcon, ShapesIcon, SparklesIcon, Square3Stack3DIcon, SquareIcon, StarIcon, StopIcon, TableIcon, TagIcon, TemplateIcon, TestTubeIcon, TimeIcon, TranslateIcon, TrashIcon, TriangleIcon, UserArrowIcon, UserGroupIcon, UserIcon, UserPlusIcon, WrenchIcon, XCircleIcon, XMarkIcon, };
107
+ import { ArrowDown as ArrowDownStrokeIcon, ArrowDownCircle as ArrowDownCircleStrokeIcon, ArrowDownOnSquare as ArrowDownOnSquareStrokeIcon, ArrowDownS as ArrowDownSStrokeIcon, ArrowLeft as ArrowLeftStrokeIcon, ArrowLeftS as ArrowLeftSStrokeIcon, ArrowPath as ArrowPathStrokeIcon, ArrowRight as ArrowRightStrokeIcon, ArrowRightS as ArrowRightSStrokeIcon, ArrowUp as ArrowUpStrokeIcon, ArrowUpOnSquare as ArrowUpOnSquareStrokeIcon, ArrowUpS as ArrowUpSStrokeIcon, Attachment as AttachmentStrokeIcon, Backspace as BackspaceStrokeIcon, Bookmark as BookmarkStrokeIcon, BookOpen as BookOpenStrokeIcon, Braces as BracesStrokeIcon, Card as CardStrokeIcon, ChatBubbleBottomCenterPlus as ChatBubbleBottomCenterPlusStrokeIcon, ChatBubbleBottomCenterText as ChatBubbleBottomCenterTextStrokeIcon, ChatBubbleLeftRight as ChatBubbleLeftRightStrokeIcon, ChatBubbleThought as ChatBubbleThoughtStrokeIcon, Check as CheckStrokeIcon, CheckCircle as CheckCircleStrokeIcon, ChevronDoubleLeft as ChevronDoubleLeftStrokeIcon, ChevronDoubleRight as ChevronDoubleRightStrokeIcon, ChevronDown as ChevronDownStrokeIcon, ChevronLeft as ChevronLeftStrokeIcon, ChevronRight as ChevronRightStrokeIcon, ChevronUp as ChevronUpStrokeIcon, ChevronUpDown as ChevronUpDownStrokeIcon, Circle as CircleStrokeIcon, Clipboard as ClipboardStrokeIcon, ClipboardCheck as ClipboardCheckStrokeIcon, Clock as ClockStrokeIcon, CloudArrowDown as CloudArrowDownStrokeIcon, CloudArrowLeftRight as CloudArrowLeftRightStrokeIcon, CloudArrowUp as CloudArrowUpStrokeIcon, CloudX as CloudXStrokeIcon, Cog6Tooth as Cog6ToothStrokeIcon, Command as CommandStrokeIcon, CommandLine as CommandLineStrokeIcon, Company as CompanyStrokeIcon, Cube as CubeStrokeIcon, Dash as DashStrokeIcon, Document as DocumentStrokeIcon, DocumentDuplicate as DocumentDuplicateStrokeIcon, DocumentPile as DocumentPileStrokeIcon, DocumentPlus as DocumentPlusStrokeIcon, DocumentText as DocumentTextStrokeIcon, Dust as DustStrokeIcon, EmotionLaugh as EmotionLaughStrokeIcon, Equalizer as EqualizerStrokeIcon, ExclamationCircle as ExclamationCircleStrokeIcon, ExternalLink as ExternalLinkStrokeIcon, Eye as EyeStrokeIcon, EyeSlash as EyeSlashStrokeIcon, Filter as FilterStrokeIcon, Fire as FireStrokeIcon, Flag as FlagStrokeIcon, Folder as FolderStrokeIcon, FolderOpen as FolderOpenStrokeIcon, Fullscreen as FullscreenStrokeIcon, FullscreenExit as FullscreenExitStrokeIcon, GlobeAlt as GlobeAltStrokeIcon, Grab as GrabStrokeIcon, HandThumbDown as HandThumbDownStrokeIcon, HandThumbUp as HandThumbUpStrokeIcon, Heart as HeartStrokeIcon, HeartAlt as HeartAltStrokeIcon, Hexagon as HexagonStrokeIcon, History as HistoryStrokeIcon, Home as HomeStrokeIcon, Image as ImageStrokeIcon, InformationCircle as InformationCircleStrokeIcon, Key as KeyStrokeIcon, Lightbulb as LightbulbStrokeIcon, Link as LinkStrokeIcon, List as ListStrokeIcon, ListAdd as ListAddStrokeIcon, ListCheck as ListCheckStrokeIcon, ListRemove as ListRemoveStrokeIcon, Lock as LockStrokeIcon, Login as LoginStrokeIcon, Logout as LogoutStrokeIcon, Magic as MagicStrokeIcon, MagnifyingGlass as MagnifyingGlassStrokeIcon, MarkPen as MarkPenStrokeIcon, Menu as MenuStrokeIcon, More as MoreStrokeIcon, MovingMail as MovingMailStrokeIcon, Paint as PaintStrokeIcon, PaperAirplane as PaperAirplaneStrokeIcon, Pause as PauseStrokeIcon, PencilSquare as PencilSquareStrokeIcon, Planet as PlanetStrokeIcon, Play as PlayStrokeIcon, Plus as PlusStrokeIcon, PlusCircle as PlusCircleStrokeIcon, Pushpin as PushpinStrokeIcon, Puzzle as PuzzleStrokeIcon, QuestionMarkCircle as QuestionMarkCircleStrokeIcon, Reaction as ReactionStrokeIcon, Rectangle as RectangleStrokeIcon, Robot as RobotStrokeIcon, Rocket as RocketStrokeIcon, Scan as ScanStrokeIcon, Server as ServerStrokeIcon, ShakeHands as ShakeHandsStrokeIcon, Shapes as ShapesStrokeIcon, Sparkles as SparklesStrokeIcon, Square as SquareStrokeIcon, Square3Stack3D as Square3Stack3DStrokeIcon, Star as StarStrokeIcon, Stop as StopStrokeIcon, Table as TableStrokeIcon, Tag as TagStrokeIcon, Template as TemplateStrokeIcon, TestTube as TestTubeStrokeIcon, Time as TimeStrokeIcon, Translate as TranslateStrokeIcon, Trash as TrashStrokeIcon, Triangle as TriangleStrokeIcon, User as UserStrokeIcon, UserArrow as UserArrowStrokeIcon, UserGroup as UserGroupStrokeIcon, UserPlus as UserPlusStrokeIcon, Wrench as WrenchStrokeIcon, XCircle as XCircleStrokeIcon, XMark as XMarkStrokeIcon } from "./icons/stroke";
108
+ export { ArrowDownCircleStrokeIcon, ArrowDownOnSquareStrokeIcon, ArrowDownSStrokeIcon, ArrowDownStrokeIcon, ArrowLeftSStrokeIcon, ArrowLeftStrokeIcon, ArrowPathStrokeIcon, ArrowRightSStrokeIcon, ArrowRightStrokeIcon, ArrowUpOnSquareStrokeIcon, ArrowUpSStrokeIcon, ArrowUpStrokeIcon, AttachmentStrokeIcon, BackspaceStrokeIcon, BookmarkStrokeIcon, BookOpenStrokeIcon, BracesStrokeIcon, CardStrokeIcon, ChatBubbleBottomCenterPlusStrokeIcon, ChatBubbleBottomCenterTextStrokeIcon, ChatBubbleLeftRightStrokeIcon, ChatBubbleThoughtStrokeIcon, CheckCircleStrokeIcon, CheckStrokeIcon, ChevronDoubleLeftStrokeIcon, ChevronDoubleRightStrokeIcon, ChevronDownStrokeIcon, ChevronLeftStrokeIcon, ChevronRightStrokeIcon, ChevronUpDownStrokeIcon, ChevronUpStrokeIcon, CircleStrokeIcon, ClipboardCheckStrokeIcon, ClipboardStrokeIcon, ClockStrokeIcon, CloudArrowDownStrokeIcon, CloudArrowLeftRightStrokeIcon, CloudArrowUpStrokeIcon, CloudXStrokeIcon, Cog6ToothStrokeIcon, CommandLineStrokeIcon, CommandStrokeIcon, CompanyStrokeIcon, CubeStrokeIcon, DashStrokeIcon, DocumentDuplicateStrokeIcon, DocumentPileStrokeIcon, DocumentPlusStrokeIcon, DocumentStrokeIcon, DocumentTextStrokeIcon, DustStrokeIcon, EmotionLaughStrokeIcon, EqualizerStrokeIcon, ExclamationCircleStrokeIcon, ExternalLinkStrokeIcon, EyeSlashStrokeIcon, EyeStrokeIcon, FilterStrokeIcon, FireStrokeIcon, FlagStrokeIcon, FolderOpenStrokeIcon, FolderStrokeIcon, FullscreenExitStrokeIcon, FullscreenStrokeIcon, GlobeAltStrokeIcon, GrabStrokeIcon, HandThumbDownStrokeIcon, HandThumbUpStrokeIcon, HeartAltStrokeIcon, HeartStrokeIcon, HexagonStrokeIcon, HistoryStrokeIcon, HomeStrokeIcon, ImageStrokeIcon, InformationCircleStrokeIcon, KeyStrokeIcon, LightbulbStrokeIcon, LinkStrokeIcon, ListAddStrokeIcon, ListCheckStrokeIcon, ListRemoveStrokeIcon, ListStrokeIcon, LockStrokeIcon, LoginStrokeIcon, LogoutStrokeIcon, MagicStrokeIcon, MagnifyingGlassStrokeIcon, MarkPenStrokeIcon, MenuStrokeIcon, MoreStrokeIcon, MovingMailStrokeIcon, PaintStrokeIcon, PaperAirplaneStrokeIcon, PauseStrokeIcon, PencilSquareStrokeIcon, PlanetStrokeIcon, PlayStrokeIcon, PlusCircleStrokeIcon, PlusStrokeIcon, PushpinStrokeIcon, PuzzleStrokeIcon, QuestionMarkCircleStrokeIcon, ReactionStrokeIcon, RectangleStrokeIcon, RobotStrokeIcon, RocketStrokeIcon, ScanStrokeIcon, ServerStrokeIcon, ShakeHandsStrokeIcon, ShapesStrokeIcon, SparklesStrokeIcon, Square3Stack3DStrokeIcon, SquareStrokeIcon, StarStrokeIcon, StopStrokeIcon, TableStrokeIcon, TagStrokeIcon, TemplateStrokeIcon, TestTubeStrokeIcon, TimeStrokeIcon, TranslateStrokeIcon, TrashStrokeIcon, TriangleStrokeIcon, UserArrowStrokeIcon, UserGroupStrokeIcon, UserPlusStrokeIcon, UserStrokeIcon, WrenchStrokeIcon, XCircleStrokeIcon, XMarkStrokeIcon, };
@@ -1,10 +1,11 @@
1
1
  import React from "react";
2
+ export type CheckBoxCheckedStatus = "checked" | "unchecked" | "partial";
2
3
  export interface CheckboxProps {
3
4
  variant?: "selectable" | "checkable";
4
- checked: boolean;
5
+ size?: "xs" | "sm";
6
+ checked?: CheckBoxCheckedStatus;
5
7
  disabled?: boolean;
6
- partialChecked?: boolean;
7
8
  onChange: (checked: boolean) => void;
8
9
  className?: string;
9
10
  }
10
- export declare function Checkbox({ variant, checked, onChange, className, disabled, partialChecked, }: CheckboxProps): React.JSX.Element;
11
+ export declare function Checkbox({ variant, checked, size, onChange, className, disabled, }: CheckboxProps): React.JSX.Element;
@@ -16,7 +16,7 @@ type ItemProps = {
16
16
  href?: string;
17
17
  target?: string;
18
18
  };
19
- export declare function Item({ label, description, visual, icon, style, spacing, action, hasAction, onClick, selected, disabled, className, href, target }: ItemProps): React.JSX.Element;
19
+ export declare function Item({ label, description, visual, icon, style, spacing, action, hasAction, onClick, selected, disabled, className, href, target, }: ItemProps): React.JSX.Element;
20
20
  export declare namespace Item {
21
21
  var Entry: (props: EntryItemProps) => React.JSX.Element;
22
22
  var Avatar: ({ description, hasAction, ...otherProps }: AvatarItemProps) => React.JSX.Element;
@@ -1,20 +1,24 @@
1
- import React from "react";
1
+ import React, { ComponentType, ReactNode } from "react";
2
2
  import { CheckboxProps } from "./Checkbox";
3
3
  export interface TreeProps {
4
- children?: React.ReactNode;
4
+ children?: ReactNode;
5
5
  isBoxed?: boolean;
6
6
  isLoading?: boolean;
7
+ tailwindIconTextColor?: string;
8
+ variant?: "navigator" | "finder";
7
9
  }
8
- export declare function Tree({ children, isLoading, isBoxed }: TreeProps): React.JSX.Element;
10
+ export declare function Tree({ children, isLoading, isBoxed, tailwindIconTextColor, variant, }: TreeProps): React.JSX.Element;
9
11
  export declare namespace Tree {
10
- var Item: ({ label, type, className, variant, size, visual, checkbox, onChevronClick, collapsed, defaultCollapsed, actions, areActionsFading, renderTreeItems, children, isSelected, onItemClick, }: TreeItemPropsWithChildren | TreeItemPropsWithRender) => React.JSX.Element;
12
+ var Item: ({ label, type, className, size, tailwindIconTextColor, visual, checkbox, onChevronClick, collapsed, defaultCollapsed, actions, areActionsFading, renderTreeItems, children, isNavigatable, isSelected, onItemClick, }: TreeItemPropsWithChildren | TreeItemPropsWithRender) => React.JSX.Element;
11
13
  }
12
14
  interface TreeItemProps {
13
15
  label?: string;
14
16
  type?: "node" | "item" | "leaf";
15
- variant?: "file" | "folder" | "database" | "channel";
16
17
  size?: "sm" | "md";
17
- visual?: React.ReactNode;
18
+ tailwindIconTextColor?: string;
19
+ visual?: ComponentType<{
20
+ className?: string;
21
+ }>;
18
22
  checkbox?: CheckboxProps;
19
23
  onChevronClick?: () => void;
20
24
  collapsed?: boolean;
@@ -22,6 +26,7 @@ interface TreeItemProps {
22
26
  className?: string;
23
27
  actions?: React.ReactNode;
24
28
  areActionsFading?: boolean;
29
+ isNavigatable?: boolean;
25
30
  isSelected?: boolean;
26
31
  onItemClick?: () => void;
27
32
  }
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgArrowDownS: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgArrowDownS;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgArrowLeftS: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgArrowLeftS;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgArrowRightS: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgArrowRightS;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgArrowUpS: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgArrowUpS;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgChevronDoubleLeft: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgChevronDoubleLeft;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgChevronDoubleRight: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgChevronDoubleRight;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgCompany: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgCompany;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgFilter: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgFilter;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgHeart: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgHeart;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgHistory: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgHistory;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgHome: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgHome;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgMarkPen: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgMarkPen;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgTranslate: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgTranslate;
@@ -1,11 +1,15 @@
1
1
  export { default as ArrowDown } from "./ArrowDown";
2
2
  export { default as ArrowDownCircle } from "./ArrowDownCircle";
3
3
  export { default as ArrowDownOnSquare } from "./ArrowDownOnSquare";
4
+ export { default as ArrowDownS } from "./ArrowDownS";
4
5
  export { default as ArrowLeft } from "./ArrowLeft";
6
+ export { default as ArrowLeftS } from "./ArrowLeftS";
5
7
  export { default as ArrowPath } from "./ArrowPath";
6
8
  export { default as ArrowRight } from "./ArrowRight";
9
+ export { default as ArrowRightS } from "./ArrowRightS";
7
10
  export { default as ArrowUp } from "./ArrowUp";
8
11
  export { default as ArrowUpOnSquare } from "./ArrowUpOnSquare";
12
+ export { default as ArrowUpS } from "./ArrowUpS";
9
13
  export { default as Attachment } from "./Attachment";
10
14
  export { default as Backspace } from "./Backspace";
11
15
  export { default as Bookmark } from "./Bookmark";
@@ -18,6 +22,8 @@ export { default as ChatBubbleLeftRight } from "./ChatBubbleLeftRight";
18
22
  export { default as ChatBubbleThought } from "./ChatBubbleThought";
19
23
  export { default as Check } from "./Check";
20
24
  export { default as CheckCircle } from "./CheckCircle";
25
+ export { default as ChevronDoubleLeft } from "./ChevronDoubleLeft";
26
+ export { default as ChevronDoubleRight } from "./ChevronDoubleRight";
21
27
  export { default as ChevronDown } from "./ChevronDown";
22
28
  export { default as ChevronLeft } from "./ChevronLeft";
23
29
  export { default as ChevronRight } from "./ChevronRight";
@@ -34,6 +40,7 @@ export { default as CloudX } from "./CloudX";
34
40
  export { default as Cog6Tooth } from "./Cog6Tooth";
35
41
  export { default as Command } from "./Command";
36
42
  export { default as CommandLine } from "./CommandLine";
43
+ export { default as Company } from "./Company";
37
44
  export { default as Cube } from "./Cube";
38
45
  export { default as Dash } from "./Dash";
39
46
  export { default as Document } from "./Document";
@@ -48,6 +55,7 @@ export { default as ExclamationCircle } from "./ExclamationCircle";
48
55
  export { default as ExternalLink } from "./ExternalLink";
49
56
  export { default as Eye } from "./Eye";
50
57
  export { default as EyeSlash } from "./EyeSlash";
58
+ export { default as Filter } from "./Filter";
51
59
  export { default as Fire } from "./Fire";
52
60
  export { default as Flag } from "./Flag";
53
61
  export { default as Folder } from "./Folder";
@@ -58,8 +66,11 @@ export { default as GlobeAlt } from "./GlobeAlt";
58
66
  export { default as Grab } from "./Grab";
59
67
  export { default as HandThumbDown } from "./HandThumbDown";
60
68
  export { default as HandThumbUp } from "./HandThumbUp";
69
+ export { default as Heart } from "./Heart";
61
70
  export { default as HeartAlt } from "./HeartAlt";
62
71
  export { default as Hexagon } from "./Hexagon";
72
+ export { default as History } from "./History";
73
+ export { default as Home } from "./Home";
63
74
  export { default as Image } from "./Image";
64
75
  export { default as InformationCircle } from "./InformationCircle";
65
76
  export { default as Key } from "./Key";
@@ -74,6 +85,7 @@ export { default as Login } from "./Login";
74
85
  export { default as Logout } from "./Logout";
75
86
  export { default as Magic } from "./Magic";
76
87
  export { default as MagnifyingGlass } from "./MagnifyingGlass";
88
+ export { default as MarkPen } from "./MarkPen";
77
89
  export { default as Menu } from "./Menu";
78
90
  export { default as More } from "./More";
79
91
  export { default as MovingMail } from "./MovingMail";
@@ -106,6 +118,7 @@ export { default as Tag } from "./Tag";
106
118
  export { default as Template } from "./Template";
107
119
  export { default as TestTube } from "./TestTube";
108
120
  export { default as Time } from "./Time";
121
+ export { default as Translate } from "./Translate";
109
122
  export { default as Trash } from "./Trash";
110
123
  export { default as Triangle } from "./Triangle";
111
124
  export { default as User } from "./User";
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgArrowDownS: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgArrowDownS;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgArrowLeftS: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgArrowLeftS;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgArrowRightS: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgArrowRightS;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgArrowUpS: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgArrowUpS;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgChevronDoubleLeft: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgChevronDoubleLeft;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgChevronDoubleRight: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgChevronDoubleRight;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgCompany: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgCompany;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgFilter: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgFilter;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgHeart: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgHeart;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgHistory: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgHistory;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgHome: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgHome;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgMarkPen: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgMarkPen;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgTranslate: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgTranslate;
@@ -1,11 +1,15 @@
1
1
  export { default as ArrowDown } from "./ArrowDown";
2
2
  export { default as ArrowDownCircle } from "./ArrowDownCircle";
3
3
  export { default as ArrowDownOnSquare } from "./ArrowDownOnSquare";
4
+ export { default as ArrowDownS } from "./ArrowDownS";
4
5
  export { default as ArrowLeft } from "./ArrowLeft";
6
+ export { default as ArrowLeftS } from "./ArrowLeftS";
5
7
  export { default as ArrowPath } from "./ArrowPath";
6
8
  export { default as ArrowRight } from "./ArrowRight";
9
+ export { default as ArrowRightS } from "./ArrowRightS";
7
10
  export { default as ArrowUp } from "./ArrowUp";
8
11
  export { default as ArrowUpOnSquare } from "./ArrowUpOnSquare";
12
+ export { default as ArrowUpS } from "./ArrowUpS";
9
13
  export { default as Attachment } from "./Attachment";
10
14
  export { default as Backspace } from "./Backspace";
11
15
  export { default as Bookmark } from "./Bookmark";
@@ -18,6 +22,8 @@ export { default as ChatBubbleLeftRight } from "./ChatBubbleLeftRight";
18
22
  export { default as ChatBubbleThought } from "./ChatBubbleThought";
19
23
  export { default as Check } from "./Check";
20
24
  export { default as CheckCircle } from "./CheckCircle";
25
+ export { default as ChevronDoubleLeft } from "./ChevronDoubleLeft";
26
+ export { default as ChevronDoubleRight } from "./ChevronDoubleRight";
21
27
  export { default as ChevronDown } from "./ChevronDown";
22
28
  export { default as ChevronLeft } from "./ChevronLeft";
23
29
  export { default as ChevronRight } from "./ChevronRight";
@@ -34,6 +40,7 @@ export { default as CloudX } from "./CloudX";
34
40
  export { default as Cog6Tooth } from "./Cog6Tooth";
35
41
  export { default as Command } from "./Command";
36
42
  export { default as CommandLine } from "./CommandLine";
43
+ export { default as Company } from "./Company";
37
44
  export { default as Cube } from "./Cube";
38
45
  export { default as Dash } from "./Dash";
39
46
  export { default as Document } from "./Document";
@@ -48,6 +55,7 @@ export { default as ExclamationCircle } from "./ExclamationCircle";
48
55
  export { default as ExternalLink } from "./ExternalLink";
49
56
  export { default as Eye } from "./Eye";
50
57
  export { default as EyeSlash } from "./EyeSlash";
58
+ export { default as Filter } from "./Filter";
51
59
  export { default as Fire } from "./Fire";
52
60
  export { default as Flag } from "./Flag";
53
61
  export { default as Folder } from "./Folder";
@@ -58,8 +66,11 @@ export { default as GlobeAlt } from "./GlobeAlt";
58
66
  export { default as Grab } from "./Grab";
59
67
  export { default as HandThumbDown } from "./HandThumbDown";
60
68
  export { default as HandThumbUp } from "./HandThumbUp";
69
+ export { default as Heart } from "./Heart";
61
70
  export { default as HeartAlt } from "./HeartAlt";
62
71
  export { default as Hexagon } from "./Hexagon";
72
+ export { default as History } from "./History";
73
+ export { default as Home } from "./Home";
63
74
  export { default as Image } from "./Image";
64
75
  export { default as InformationCircle } from "./InformationCircle";
65
76
  export { default as Key } from "./Key";
@@ -74,6 +85,7 @@ export { default as Login } from "./Login";
74
85
  export { default as Logout } from "./Logout";
75
86
  export { default as Magic } from "./Magic";
76
87
  export { default as MagnifyingGlass } from "./MagnifyingGlass";
88
+ export { default as MarkPen } from "./MarkPen";
77
89
  export { default as Menu } from "./Menu";
78
90
  export { default as More } from "./More";
79
91
  export { default as MovingMail } from "./MovingMail";
@@ -106,6 +118,7 @@ export { default as Tag } from "./Tag";
106
118
  export { default as Template } from "./Template";
107
119
  export { default as TestTube } from "./TestTube";
108
120
  export { default as Time } from "./Time";
121
+ export { default as Translate } from "./Translate";
109
122
  export { default as Trash } from "./Trash";
110
123
  export { default as Triangle } from "./Triangle";
111
124
  export { default as User } from "./User";