@tangible/ui 0.0.1 → 0.0.2

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 (129) hide show
  1. package/components/Card/Card.d.ts +1 -0
  2. package/components/Card/Card.js +17 -20
  3. package/components/Checkbox/Checkbox.d.ts +9 -0
  4. package/components/Checkbox/Checkbox.js +92 -0
  5. package/components/Checkbox/index.d.ts +2 -0
  6. package/components/Checkbox/index.js +1 -0
  7. package/components/Checkbox/types.d.ts +10 -0
  8. package/components/Checkbox/types.js +1 -0
  9. package/components/Chip/Chip.d.ts +4 -1
  10. package/components/Chip/Chip.js +32 -7
  11. package/components/ChipGroup/ChipGroup.d.ts +5 -0
  12. package/components/ChipGroup/ChipGroup.js +68 -0
  13. package/components/ChipGroup/ChipGroupContext.d.ts +3 -0
  14. package/components/ChipGroup/ChipGroupContext.js +5 -0
  15. package/components/ChipGroup/index.d.ts +3 -0
  16. package/components/ChipGroup/index.js +2 -0
  17. package/components/ChipGroup/types.d.ts +36 -0
  18. package/components/ChipGroup/types.js +1 -0
  19. package/components/Chips/Chips.d.ts +2 -0
  20. package/components/Chips/Chips.js +1 -1
  21. package/components/Combobox/Combobox.d.ts +33 -0
  22. package/components/Combobox/Combobox.js +466 -0
  23. package/components/Combobox/ComboboxContext.d.ts +8 -0
  24. package/components/Combobox/ComboboxContext.js +36 -0
  25. package/components/Combobox/index.d.ts +2 -0
  26. package/components/Combobox/index.js +1 -0
  27. package/components/Combobox/types.d.ts +204 -0
  28. package/components/Combobox/types.js +1 -0
  29. package/components/Dropdown/Dropdown.js +2 -1
  30. package/components/Field/Field.d.ts +39 -0
  31. package/components/Field/Field.js +92 -0
  32. package/components/Field/FieldContext.d.ts +16 -0
  33. package/components/Field/FieldContext.js +10 -0
  34. package/components/Field/index.d.ts +2 -0
  35. package/components/Field/index.js +1 -0
  36. package/components/Modal/Modal.d.ts +4 -4
  37. package/components/Modal/Modal.js +14 -12
  38. package/components/MultiSelect/MultiSelect.d.ts +39 -0
  39. package/components/MultiSelect/MultiSelect.js +623 -0
  40. package/components/MultiSelect/MultiSelectContext.d.ts +20 -0
  41. package/components/MultiSelect/MultiSelectContext.js +56 -0
  42. package/components/MultiSelect/index.d.ts +2 -0
  43. package/components/MultiSelect/index.js +1 -0
  44. package/components/MultiSelect/types.d.ts +218 -0
  45. package/components/MultiSelect/types.js +3 -0
  46. package/components/Notice/Notice.d.ts +1 -1
  47. package/components/Notice/Notice.js +1 -1
  48. package/components/Progress/Progress.js +1 -1
  49. package/components/Progress/types.d.ts +7 -7
  50. package/components/Radio/Radio.d.ts +2 -0
  51. package/components/Radio/Radio.js +50 -0
  52. package/components/Radio/RadioGroup.d.ts +2 -0
  53. package/components/Radio/RadioGroup.js +54 -0
  54. package/components/Radio/RadioGroupContext.d.ts +3 -0
  55. package/components/Radio/RadioGroupContext.js +9 -0
  56. package/components/Radio/index.d.ts +8 -0
  57. package/components/Radio/index.js +6 -0
  58. package/components/Radio/types.d.ts +32 -0
  59. package/components/Radio/types.js +1 -0
  60. package/components/Rating/Rating.d.ts +5 -5
  61. package/components/Rating/Rating.js +2 -2
  62. package/components/SegmentedControl/SegmentedControl.js +20 -104
  63. package/components/SegmentedControl/types.d.ts +4 -8
  64. package/components/Select/Select.d.ts +39 -0
  65. package/components/Select/Select.js +497 -0
  66. package/components/Select/SelectContext.d.ts +20 -0
  67. package/components/Select/SelectContext.js +56 -0
  68. package/components/Select/index.d.ts +3 -0
  69. package/components/Select/index.js +1 -0
  70. package/components/Select/types.d.ts +216 -0
  71. package/components/Select/types.js +11 -0
  72. package/components/Sidebar/Sidebar.js +12 -12
  73. package/components/Sidebar/types.d.ts +5 -5
  74. package/components/StepIndicator/StepIndicator.js +1 -1
  75. package/components/StepList/StepList.js +2 -2
  76. package/components/StepList/types.d.ts +4 -4
  77. package/components/Switch/Switch.d.ts +9 -0
  78. package/components/Switch/Switch.js +91 -0
  79. package/components/Switch/index.d.ts +2 -0
  80. package/components/Switch/index.js +1 -0
  81. package/components/Switch/types.d.ts +11 -0
  82. package/components/Switch/types.js +1 -0
  83. package/components/TextInput/TextInput.d.ts +8 -0
  84. package/components/TextInput/TextInput.js +25 -0
  85. package/components/TextInput/index.d.ts +2 -0
  86. package/components/TextInput/index.js +1 -0
  87. package/components/TextInput/types.d.ts +32 -0
  88. package/components/TextInput/types.js +1 -0
  89. package/components/Textarea/Textarea.d.ts +6 -0
  90. package/components/Textarea/Textarea.js +49 -0
  91. package/components/Textarea/index.d.ts +2 -0
  92. package/components/Textarea/index.js +1 -0
  93. package/components/Textarea/types.d.ts +25 -0
  94. package/components/Textarea/types.js +1 -0
  95. package/components/index.d.ts +20 -0
  96. package/components/index.js +10 -0
  97. package/icons/icons.svg +1 -0
  98. package/icons/manifest.json +8 -0
  99. package/icons/registry.d.ts +2 -0
  100. package/icons/registry.js +1 -0
  101. package/icons/system/index.d.ts +2 -0
  102. package/icons/system/index.js +11 -0
  103. package/package.json +1 -1
  104. package/styles/all.css +1 -1
  105. package/styles/all.expanded.css +1187 -96
  106. package/styles/all.expanded.unlayered.css +1187 -96
  107. package/styles/all.unlayered.css +1 -1
  108. package/styles/components/_bundle.scss +20 -0
  109. package/styles/components/input/index.scss +5 -20
  110. package/styles/index.scss +16 -0
  111. package/styles/system/_control.scss +34 -0
  112. package/styles/system/_tokens.scss +8 -0
  113. package/styles/system/index.scss +2 -1
  114. package/styles/utilities/_index.scss +50 -0
  115. package/tui-manifest.json +632 -61
  116. package/utils/compose-events.d.ts +15 -0
  117. package/utils/compose-events.js +27 -0
  118. package/utils/hash.d.ts +15 -0
  119. package/utils/hash.js +32 -0
  120. package/utils/index.d.ts +3 -0
  121. package/utils/index.js +6 -0
  122. package/utils/is-dev.d.ts +5 -0
  123. package/utils/is-dev.js +7 -0
  124. package/utils/use-controllable-state.d.ts +19 -0
  125. package/utils/use-controllable-state.js +59 -0
  126. package/utils/use-roving-group.d.ts +33 -0
  127. package/utils/use-roving-group.js +123 -0
  128. package/utils/value-key.d.ts +16 -0
  129. package/utils/value-key.js +14 -0
@@ -0,0 +1 @@
1
+ export { Textarea } from './Textarea.js';
@@ -0,0 +1,25 @@
1
+ import type { TextareaHTMLAttributes } from 'react';
2
+ import type { SizeStandard } from '../../types/sizes';
3
+ export type TextareaResize = 'none' | 'vertical' | 'horizontal' | 'both';
4
+ export type TextareaProps = Omit<TextareaHTMLAttributes<HTMLTextAreaElement>, 'size'> & {
5
+ /**
6
+ * Control size.
7
+ * @default 'md'
8
+ */
9
+ size?: SizeStandard;
10
+ /**
11
+ * Resize behaviour.
12
+ * Ignored when `autoResize` is true (resize is disabled to avoid conflict).
13
+ * @default 'vertical'
14
+ */
15
+ resize?: TextareaResize;
16
+ /**
17
+ * Automatically grow height to fit content.
18
+ * Disables manual resize and scrollbar.
19
+ */
20
+ autoResize?: boolean;
21
+ /**
22
+ * Class name applied to the textarea element.
23
+ */
24
+ className?: string;
25
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -5,10 +5,16 @@ export { Accordion } from './Accordion';
5
5
  export { Avatar, AvatarGroup } from './Avatar';
6
6
  export { Button } from './Button';
7
7
  export { Card } from './Card';
8
+ export { Checkbox } from './Checkbox';
8
9
  export { Chip } from './Chip';
10
+ export { ChipGroup } from './ChipGroup';
9
11
  export { Chips } from './Chips';
10
12
  export { ContentIndicator } from './ContentIndicator';
13
+ export { Combobox, ComboboxContent, ComboboxOption, ComboboxGroup, ComboboxLabel, useCombobox } from './Combobox';
11
14
  export { Dropdown, DropdownTrigger, DropdownContent, DropdownItem, useDropdown } from './Dropdown';
15
+ export { Field } from './Field';
16
+ export { MultiSelect, MultiSelectTrigger, MultiSelectContent, MultiSelectOption, MultiSelectGroup, MultiSelectLabel, useMultiSelect } from './MultiSelect';
17
+ export { Select, SelectTrigger, SelectContent, SelectOption, SelectGroup, SelectLabel, useSelect } from './Select';
12
18
  export { Icon } from './Icon';
13
19
  export { IconButton } from './IconButton';
14
20
  export { Modal } from './Modal';
@@ -16,13 +22,17 @@ export { Notice } from './Notice';
16
22
  export { OverlapStack } from './OverlapStack';
17
23
  export { Pager } from './Pager';
18
24
  export { Progress } from './Progress';
25
+ export { RadioGroup, Radio } from './Radio';
19
26
  export { Rating } from './Rating';
20
27
  export { SegmentedControl } from './SegmentedControl';
21
28
  export { Sidebar } from './Sidebar';
22
29
  export { StepIndicator } from './StepIndicator';
23
30
  export { StepList } from './StepList';
24
31
  export { DataTable } from './Table';
32
+ export { Switch } from './Switch';
25
33
  export { Tabs } from './Tabs';
34
+ export { Textarea } from './Textarea';
35
+ export { TextInput } from './TextInput';
26
36
  export { Toolbar } from './Toolbar';
27
37
  export { Tooltip, TooltipProvider, TooltipTrigger, TooltipContent } from './Tooltip';
28
38
  export type { AccordionProps, AccordionSingleProps, AccordionMultipleProps, AccordionItemProps, AccordionTriggerProps, AccordionPanelProps, } from './Accordion';
@@ -30,10 +40,16 @@ export type { AvatarProps, AvatarGroupProps, AvatarSize, AvatarShape, AvatarColo
30
40
  export { AVATAR_COLORS } from './Avatar';
31
41
  export type { ButtonProps } from './Button';
32
42
  export type { CardRootProps } from './Card';
43
+ export type { CheckboxProps } from './Checkbox';
33
44
  export type { ChipProps } from './Chip';
45
+ export type { ChipGroupProps, ChipGroupSingleProps, ChipGroupMultipleProps } from './ChipGroup';
34
46
  export type { ChipsProps, ChipOption } from './Chips';
35
47
  export type { ContentIndicatorProps } from './ContentIndicator';
36
48
  export type { DropdownProps, DropdownTriggerProps, DropdownContentProps, DropdownItemProps, } from './Dropdown';
49
+ export type { ComboboxProps, ComboboxContentProps, ComboboxOptionProps, ComboboxGroupProps, ComboboxLabelProps, ComboboxRegisteredOption, } from './Combobox';
50
+ export type { FieldProps } from './Field';
51
+ export type { MultiSelectProps, MultiSelectTriggerProps, MultiSelectContentProps, MultiSelectOptionProps, MultiSelectGroupProps, MultiSelectLabelProps, MultiSelectValue, OptionValue as MultiSelectOptionValue, DisplayMode as MultiSelectDisplayMode, MultiSelectRegisteredOption, } from './MultiSelect';
52
+ export type { SelectProps, SelectTriggerProps, SelectContentProps, SelectOptionProps, SelectGroupProps, SelectLabelProps, } from './Select';
37
53
  export type { IconProps } from './Icon';
38
54
  export type { IconButtonProps } from './IconButton';
39
55
  export type { ModalProps } from './Modal';
@@ -41,6 +57,7 @@ export type { NoticeProps } from './Notice';
41
57
  export type { OverlapStackProps, OverlapStackOverflowProps } from './OverlapStack';
42
58
  export type { PagerProps, PagerMode } from './Pager';
43
59
  export type { ProgressProps } from './Progress';
60
+ export type { RadioGroupProps, RadioProps } from './Radio';
44
61
  export type { RatingProps } from './Rating';
45
62
  export type { SegmentedControlProps, SegmentedControlItemProps, SegmentedControlValue, SegmentedControlVariant, SegmentedControlSize, SegmentedControlOrientation, } from './SegmentedControl';
46
63
  export type { SidebarProps, SidebarHeaderProps, SidebarNavProps } from './Sidebar';
@@ -48,5 +65,8 @@ export type { StepIndicatorProps, StepStatus } from './StepIndicator';
48
65
  export type { StepListProps, StepListItemProps } from './StepList';
49
66
  export type { DataTableProps } from './Table';
50
67
  export type { TabsProps, TabsListProps, TabProps, TabPanelProps, TabsVariant, TabsActivationMode, TabsOrientation, } from './Tabs';
68
+ export type { SwitchProps } from './Switch';
69
+ export type { TextareaProps, TextareaResize } from './Textarea';
70
+ export type { TextInputProps, TextInputType } from './TextInput';
51
71
  export type { ToolbarProps, ToolbarGroupProps, ToolbarItemProps, ToolbarOrientation } from './Toolbar';
52
72
  export type { TooltipProps, TooltipProviderProps, TooltipTriggerProps, TooltipContentProps } from './Tooltip';
@@ -3,10 +3,16 @@ export { Accordion } from './Accordion/index.js';
3
3
  export { Avatar, AvatarGroup } from './Avatar/index.js';
4
4
  export { Button } from './Button/index.js';
5
5
  export { Card } from './Card/index.js';
6
+ export { Checkbox } from './Checkbox/index.js';
6
7
  export { Chip } from './Chip/index.js';
8
+ export { ChipGroup } from './ChipGroup/index.js';
7
9
  export { Chips } from './Chips/index.js';
8
10
  export { ContentIndicator } from './ContentIndicator/index.js';
11
+ export { Combobox, ComboboxContent, ComboboxOption, ComboboxGroup, ComboboxLabel, useCombobox } from './Combobox/index.js';
9
12
  export { Dropdown, DropdownTrigger, DropdownContent, DropdownItem, useDropdown } from './Dropdown/index.js';
13
+ export { Field } from './Field/index.js';
14
+ export { MultiSelect, MultiSelectTrigger, MultiSelectContent, MultiSelectOption, MultiSelectGroup, MultiSelectLabel, useMultiSelect } from './MultiSelect/index.js';
15
+ export { Select, SelectTrigger, SelectContent, SelectOption, SelectGroup, SelectLabel, useSelect } from './Select/index.js';
10
16
  export { Icon } from './Icon/index.js';
11
17
  export { IconButton } from './IconButton/index.js';
12
18
  export { Modal } from './Modal/index.js';
@@ -14,13 +20,17 @@ export { Notice } from './Notice/index.js';
14
20
  export { OverlapStack } from './OverlapStack/index.js';
15
21
  export { Pager } from './Pager/index.js';
16
22
  export { Progress } from './Progress/index.js';
23
+ export { RadioGroup, Radio } from './Radio/index.js';
17
24
  export { Rating } from './Rating/index.js';
18
25
  export { SegmentedControl } from './SegmentedControl/index.js';
19
26
  export { Sidebar } from './Sidebar/index.js';
20
27
  export { StepIndicator } from './StepIndicator/index.js';
21
28
  export { StepList } from './StepList/index.js';
22
29
  export { DataTable } from './Table/index.js';
30
+ export { Switch } from './Switch/index.js';
23
31
  export { Tabs } from './Tabs/index.js';
32
+ export { Textarea } from './Textarea/index.js';
33
+ export { TextInput } from './TextInput/index.js';
24
34
  export { Toolbar } from './Toolbar/index.js';
25
35
  export { Tooltip, TooltipProvider, TooltipTrigger, TooltipContent } from './Tooltip/index.js';
26
36
  export { AVATAR_COLORS } from './Avatar/index.js';
package/icons/icons.svg CHANGED
@@ -139,6 +139,7 @@
139
139
  <symbol id="tui-system-plus" viewBox="0 0 24 24"><path d="M11.25 12.75V16h1.5v-3.25H16v-1.5h-3.25V8h-1.5v3.25H8v1.5z"/></symbol>
140
140
  <symbol id="tui-system-recurring" viewBox="0 0 24 24"><path d="M11.592 5.763a6.25 6.25 0 0 1 6.135 3.733l-2.572-.542-.31 1.468 5.162 1.088 1.378-5.322-1.453-.376-.81 3.131a7.75 7.75 0 1 0-.41 6.932l-1.299-.75a6.25 6.25 0 1 1-5.821-9.362"/><path d="M12 7.25a.75.75 0 0 1 .75.75v3.598l2.666 1.778a.75.75 0 0 1-.832 1.248l-2.986-1.991a.8.8 0 0 1-.232-.232.75.75 0 0 1-.116-.401V8a.75.75 0 0 1 .75-.75"/></symbol>
141
141
  <symbol id="tui-system-reverse" viewBox="0 0 24 24"><path d="m14.474 4.53 2.72 2.72H6.003v1.5h11.191l-2.72 2.72 1.061 1.06L20.065 8l-4.53-4.53zM9.53 19.47l-2.72-2.72h11.192v-1.5H6.811l2.72-2.72-1.061-1.06L3.94 16l4.53 4.53z"/></symbol>
142
+ <symbol id="tui-system-search" viewBox="0 0 24 24"><path fill-rule="evenodd" clip-rule="evenodd" d="M19.0001 11C19.0001 14.3137 16.3138 17 13.0001 17C11.6135 17 10.3369 16.5297 9.32086 15.7399L5.53039 19.5304L4.46973 18.4697L8.26019 14.6793C7.47038 13.6632 7.00006 12.3865 7.00006 11C7.00006 7.68629 9.68635 5 13.0001 5C16.3138 5 19.0001 7.68629 19.0001 11ZM17.5001 11C17.5001 13.4853 15.4853 15.5 13.0001 15.5C10.5148 15.5 8.50006 13.4853 8.50006 11C8.50006 8.51472 10.5148 6.5 13.0001 6.5C15.4853 6.5 17.5001 8.51472 17.5001 11Z" /></symbol>
142
143
  <symbol id="tui-system-send" viewBox="0 0 24 24"><path d="M6.332 5.748c-1.03-.426-2.06.607-1.632 1.636l1.702 3.93 7.481.575c.123.01.123.19 0 .2l-7.483.575-1.7 3.909c-.429 1.029.602 2.062 1.632 1.636l12.265-5.076c1.03-.426 1.03-1.884 0-2.31z"/></symbol>
143
144
  <symbol id="tui-system-settings" viewBox="0 0 24 24"><path d="M7.114 8.5H4V7h3.114a2.501 2.501 0 0 1 4.772 0H20v1.5h-8.114a2.501 2.501 0 0 1-4.772 0M4 17h8.115a2.501 2.501 0 0 0 4.77 0H20v-1.5h-3.114a2.501 2.501 0 0 0-4.771 0H4z"/></symbol>
144
145
  <symbol id="tui-system-show" viewBox="0 0 24 24"><path d="m4 13 .67.336.003-.005.017-.032.077-.138c.07-.122.18-.302.328-.52.298-.435.75-1.017 1.36-1.598C7.672 9.883 9.496 8.75 12 8.75c2.502 0 4.326 1.132 5.545 2.293.61.581 1.061 1.163 1.359 1.599a8 8 0 0 1 .422.689l.003.005L20 13l.671-.336-.001-.003-.003-.005-.008-.015-.027-.052-.1-.18a10 10 0 0 0-.389-.613c-.343-.502-.86-1.17-1.563-1.84C17.173 8.619 14.997 7.25 12 7.25S6.827 8.618 5.42 9.957a11.6 11.6 0 0 0-1.562 1.839 10 10 0 0 0-.516.845l-.008.015-.003.005v.002s-.001.002.67.337m8 3a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7"/></symbol>
@@ -1119,6 +1119,14 @@
1119
1119
  "viewBox": "0 0 24 24",
1120
1120
  "sprite": true
1121
1121
  },
1122
+ "system/search": {
1123
+ "id": "tui-system-search",
1124
+ "set": "system",
1125
+ "name": "search",
1126
+ "file": "system/search.svg",
1127
+ "viewBox": "0 0 24 24",
1128
+ "sprite": true
1129
+ },
1122
1130
  "system/send": {
1123
1131
  "id": "tui-system-send",
1124
1132
  "set": "system",
@@ -143,6 +143,7 @@ export type IconName =
143
143
  | 'system/plus'
144
144
  | 'system/recurring'
145
145
  | 'system/reverse'
146
+ | 'system/search'
146
147
  | 'system/send'
147
148
  | 'system/settings'
148
149
  | 'system/show'
@@ -298,6 +299,7 @@ export declare const iconRegistry: {
298
299
  'system/plus': IconComponent;
299
300
  'system/recurring': IconComponent;
300
301
  'system/reverse': IconComponent;
302
+ 'system/search': IconComponent;
301
303
  'system/send': IconComponent;
302
304
  'system/settings': IconComponent;
303
305
  'system/show': IconComponent;
package/icons/registry.js CHANGED
@@ -145,6 +145,7 @@ export const iconRegistry = {
145
145
  'system/plus': systemIcons['plus'],
146
146
  'system/recurring': systemIcons['recurring'],
147
147
  'system/reverse': systemIcons['reverse'],
148
+ 'system/search': systemIcons['search'],
148
149
  'system/send': systemIcons['send'],
149
150
  'system/settings': systemIcons['settings'],
150
151
  'system/show': systemIcons['show'],
@@ -63,6 +63,7 @@ export declare const PlusCircleOutline: IconComponent;
63
63
  export declare const Plus: IconComponent;
64
64
  export declare const Recurring: IconComponent;
65
65
  export declare const Reverse: IconComponent;
66
+ export declare const Search: IconComponent;
66
67
  export declare const Send: IconComponent;
67
68
  export declare const Settings: IconComponent;
68
69
  export declare const Show: IconComponent;
@@ -139,6 +140,7 @@ export declare const systemIcons: {
139
140
  'plus': IconComponent;
140
141
  'recurring': IconComponent;
141
142
  'reverse': IconComponent;
143
+ 'search': IconComponent;
142
144
  'send': IconComponent;
143
145
  'settings': IconComponent;
144
146
  'show': IconComponent;
@@ -610,6 +610,16 @@ export function Reverse(props) {
610
610
  }, props), _c("path", {d:"m14.474 4.53 2.72 2.72H6.003v1.5h11.191l-2.72 2.72 1.061 1.06L20.065 8l-4.53-4.53zM9.53 19.47l-2.72-2.72h11.192v-1.5H6.811l2.72-2.72-1.061-1.06L3.94 16l4.53 4.53z"}));
611
611
  }
612
612
 
613
+ export function Search(props) {
614
+ return _c("svg", Object.assign({
615
+ xmlns: "http://www.w3.org/2000/svg",
616
+ viewBox: "0 0 24 24",
617
+ width: "1em",
618
+ height: "1em",
619
+ fill: "currentColor"
620
+ }, props), _c("path", {fillRule:"evenodd",clipRule:"evenodd",d:"M19.0001 11C19.0001 14.3137 16.3138 17 13.0001 17C11.6135 17 10.3369 16.5297 9.32086 15.7399L5.53039 19.5304L4.46973 18.4697L8.26019 14.6793C7.47038 13.6632 7.00006 12.3865 7.00006 11C7.00006 7.68629 9.68635 5 13.0001 5C16.3138 5 19.0001 7.68629 19.0001 11ZM17.5001 11C17.5001 13.4853 15.4853 15.5 13.0001 15.5C10.5148 15.5 8.50006 13.4853 8.50006 11C8.50006 8.51472 10.5148 6.5 13.0001 6.5C15.4853 6.5 17.5001 8.51472 17.5001 11Z"}));
621
+ }
622
+
613
623
  export function Send(props) {
614
624
  return _c("svg", Object.assign({
615
625
  xmlns: "http://www.w3.org/2000/svg",
@@ -802,6 +812,7 @@ export const systemIcons = {
802
812
  'plus': Plus,
803
813
  'recurring': Recurring,
804
814
  'reverse': Reverse,
815
+ 'search': Search,
805
816
  'send': Send,
806
817
  'settings': Settings,
807
818
  'show': Show,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tangible/ui",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Tangible Design System",
5
5
  "type": "module",
6
6
  "main": "./components/index.js",