playbook_ui 13.15.0.pre.alpha.PLAY10851907 → 13.15.0.pre.alpha.play10841940

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/app/pb_kits/playbook/pb_label_value/_label_value.tsx +1 -1
  3. data/app/pb_kits/playbook/pb_layout/_layout.tsx +2 -1
  4. data/app/pb_kits/playbook/pb_layout/layout.test.js +8 -4
  5. data/app/pb_kits/playbook/pb_legend/_legend.tsx +6 -6
  6. data/app/pb_kits/playbook/pb_lightbox/Carousel/Slides.tsx +4 -4
  7. data/app/pb_kits/playbook/pb_lightbox/Carousel/Thumbnail.tsx +1 -1
  8. data/app/pb_kits/playbook/pb_lightbox/Carousel/index.tsx +3 -3
  9. data/app/pb_kits/playbook/pb_lightbox/Header/_lightbox_header.tsx +30 -22
  10. data/app/pb_kits/playbook/pb_lightbox/_lightbox.tsx +5 -5
  11. data/app/pb_kits/playbook/pb_line_graph/_line_graph.tsx +4 -4
  12. data/app/pb_kits/playbook/pb_list/_list.tsx +15 -15
  13. data/app/pb_kits/playbook/pb_list/_list_item.tsx +1 -1
  14. data/app/pb_kits/playbook/pb_loading_inline/_loading_inline.tsx +9 -9
  15. data/app/pb_kits/playbook/pb_map/_map.tsx +8 -8
  16. data/app/pb_kits/playbook/pb_map/_map_controls.tsx +15 -7
  17. data/app/pb_kits/playbook/pb_map/_map_custom_button.tsx +4 -2
  18. data/app/pb_kits/playbook/pb_message/_message.tsx +1 -1
  19. data/app/pb_kits/playbook/pb_message/_message_mention.tsx +6 -6
  20. data/app/pb_kits/playbook/pb_multi_level_select/_multi_level_select.tsx +46 -42
  21. data/app/pb_kits/playbook/pb_multiple_users_stacked/_multiple_users_stacked.tsx +20 -20
  22. data/app/pb_kits/playbook/pb_nav/_item.tsx +56 -47
  23. data/app/pb_kits/playbook/pb_nav/_nav.tsx +15 -15
  24. data/app/pb_kits/playbook/pb_passphrase/_passphrase.tsx +50 -51
  25. data/app/pb_kits/playbook/pb_person_contact/_person_contact.tsx +19 -20
  26. data/app/pb_kits/playbook/pb_phone_number_input/_phone_number_input.tsx +3 -4
  27. data/app/pb_kits/playbook/pb_popover/_popover.tsx +4 -6
  28. data/app/pb_kits/playbook/pb_progress_pills/_progress_pills.tsx +20 -20
  29. data/app/pb_kits/playbook/pb_progress_simple/_progress_simple.tsx +4 -4
  30. data/app/pb_kits/playbook/pb_rich_text_editor/TipTap/EditorButton.tsx +17 -19
  31. data/app/pb_kits/playbook/pb_rich_text_editor/TipTap/EditorTypes.ts +1 -1
  32. data/app/pb_kits/playbook/pb_rich_text_editor/TipTap/MoreExtensionsDropdown.tsx +21 -23
  33. data/app/pb_kits/playbook/pb_rich_text_editor/TipTap/Toolbar.tsx +10 -18
  34. data/app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarDropdown.tsx +23 -46
  35. data/app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx +8 -8
  36. data/app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarNodes.tsx +7 -7
  37. data/app/pb_kits/playbook/pb_rich_text_editor/_rich_text_editor.tsx +15 -17
  38. data/app/pb_kits/playbook/pb_section_separator/_section_separator.tsx +7 -9
  39. data/app/pb_kits/playbook/pb_select/_select.tsx +1 -1
  40. data/app/pb_kits/playbook/pb_selectable_card_icon/_selectable_card_icon.tsx +24 -25
  41. data/app/pb_kits/playbook/pb_selectable_icon/_selectable_icon.tsx +26 -27
  42. data/app/pb_kits/playbook/pb_selectable_list/_selectable_list.tsx +1 -2
  43. data/app/pb_kits/playbook/pb_source/_source.tsx +15 -15
  44. data/dist/playbook-rails.js +2 -2
  45. data/lib/playbook/version.rb +1 -1
  46. metadata +2 -2
@@ -18,7 +18,7 @@ type ProgressSimpleProps = {
18
18
  width: string,
19
19
  }
20
20
 
21
- const ProgressSimple = (props: ProgressSimpleProps): React.ReactElement => {
21
+ const ProgressSimple = (props: ProgressSimpleProps) => {
22
22
  const {
23
23
  align,
24
24
  className,
@@ -57,9 +57,9 @@ const ProgressSimple = (props: ProgressSimpleProps): React.ReactElement => {
57
57
 
58
58
  return (
59
59
  <div
60
- {...dataProps}
61
- {...htmlProps}
62
- className={wrapperClass}
60
+ {...dataProps}
61
+ {...htmlProps}
62
+ className={wrapperClass}
63
63
  >
64
64
  <div
65
65
  className={kitClass}
@@ -7,7 +7,7 @@ import Tooltip from "../../pb_tooltip/_tooltip";
7
7
 
8
8
  type EditorButtonProps = {
9
9
  classname?: string,
10
- onclick?: () => undefined | void,
10
+ onclick?: () => {} | void,
11
11
  icon?: string;
12
12
  text?: string;
13
13
  disable?: boolean
@@ -19,31 +19,29 @@ const EditorButton = ({
19
19
  onclick,
20
20
  icon,
21
21
  text,
22
- }: EditorButtonProps): React.ReactElement => {
22
+ }: EditorButtonProps) => {
23
23
  return (
24
- <Tooltip
25
- delay={{
24
+ <Tooltip
25
+ delay={{
26
26
  open: 2000
27
27
  }}
28
- interaction
29
- placement="top"
30
- text={text}
28
+ interaction
29
+ placement="top"
30
+ text={text}
31
31
  >
32
32
  <button
33
- className={classname}
34
- disabled={disable}
35
- onClick={onclick}
36
- role="button"
37
- type="button"
33
+ className={classname}
34
+ disabled={disable}
35
+ onClick={onclick}
36
+ role="button"
37
+ type="button"
38
38
  >
39
- <Flex
40
- align="center"
41
- className="toolbar_button_icon"
42
- justify="center"
39
+ <Flex
40
+ align="center"
41
+ className="toolbar_button_icon"
42
+ justify="center"
43
43
  >
44
- <Icon icon={icon}
45
- size="lg"
46
- />
44
+ <Icon icon={icon} size="lg" />
47
45
  </Flex>
48
46
  </button>
49
47
  </Tooltip>
@@ -3,7 +3,7 @@ export type ToolbarTypes = {
3
3
  icon?: string,
4
4
  isActive?: string | null,
5
5
  text?: string,
6
- onclick?: () => undefined
6
+ onclick?: () => {}
7
7
  classname?: string
8
8
  disable?: boolean
9
9
  }
@@ -20,19 +20,17 @@ const MoreExtensionsDropdown = ({extensions}: any) => {
20
20
 
21
21
  const popoverReference = (
22
22
  <button
23
- className="toolbar_button"
24
- onClick={handleTogglePopover}
25
- role="button"
26
- type="button"
23
+ className="toolbar_button"
24
+ onClick={handleTogglePopover}
25
+ role="button"
26
+ type="button"
27
27
  >
28
28
  <Flex
29
- align="center"
30
- className="toolbar_button_icon"
31
- justify="center"
29
+ align="center"
30
+ className="toolbar_button_icon"
31
+ justify="center"
32
32
  >
33
- <Icon icon="ellipsis"
34
- size="lg"
35
- />
33
+ <Icon icon="ellipsis" size="lg" />
36
34
  </Flex>
37
35
  </button>
38
36
 
@@ -48,21 +46,21 @@ const popoverReference = (
48
46
  show={showPopover}
49
47
  >
50
48
  <Nav
51
- paddingBottom={extensions.length > 1 ? "xs" : "none"}
52
- paddingTop={extensions.length > 1 ? "xs" : "none"}
53
- variant="subtle"
49
+ paddingTop={extensions.length > 1 ? "xs" : "none"}
50
+ paddingBottom={extensions.length > 1 ? "xs" : "none"}
51
+ variant="subtle"
54
52
  >
55
- {extensions && extensions.map(({ icon, text, onclick, isActive}: any, index: number) => (
53
+ {extensions && extensions.map(({ icon, text, onclick, isActive}:any, index:number) => (
56
54
  <NavItem
57
- className={`pb_tiptap_toolbar_dropdown_list_item ${isActive ? "is-active" : ""}`}
58
- cursor="pointer"
59
- iconLeft={icon}
60
- key={`${text}_${index}`}
61
- margin='none'
62
- onClick={()=> {onclick(); setShowPopover(false)}}
63
- paddingBottom='xxs'
64
- paddingTop='xxs'
65
- text={text}
55
+ cursor="pointer"
56
+ className={`pb_tiptap_toolbar_dropdown_list_item ${isActive ? "is-active" : ""}`}
57
+ iconLeft={icon}
58
+ key={`${text}_${index}`}
59
+ margin='none'
60
+ onClick={()=> {onclick(); setShowPopover(false)}}
61
+ text={text}
62
+ paddingTop='xxs'
63
+ paddingBottom='xxs'
66
64
  />
67
65
  ))}
68
66
  </Nav>
@@ -11,7 +11,7 @@ import { ToolbarTypes } from "./EditorTypes";
11
11
  import ToolbarHistoryItems from "./ToolbarHistory";
12
12
  import MoreExtensionsDropdown from "./MoreExtensionsDropdown";
13
13
 
14
- const EditorToolbar = ({ editor, extensions }: any): React.ReactElement => {
14
+ const EditorToolbar = ({ editor, extensions }:any) => {
15
15
  const toolbaritems = [
16
16
  {
17
17
  icon: "bold",
@@ -34,27 +34,19 @@ const EditorToolbar = ({ editor, extensions }: any): React.ReactElement => {
34
34
  ]
35
35
 
36
36
  return (
37
- <Background backgroundColor="white"
38
- className="toolbar"
39
- >
40
- <Flex flex="0"
41
- justify="between"
42
- paddingX="sm"
43
- paddingY="xxs"
44
- >
45
- <FlexItem className="toolbar_block"
46
- displayFlex
47
- >
37
+ <Background backgroundColor="white" className="toolbar">
38
+ <Flex flex="0" justify="between" paddingX="sm" paddingY="xxs">
39
+ <FlexItem className="toolbar_block" displayFlex>
48
40
  <ToolbarDropdown editor={editor}/>
49
41
  <SectionSeparator orientation="vertical" />
50
42
  {toolbaritems && toolbaritems.map(
51
- ({ icon, text, classname, onclick}: ToolbarTypes, index: number) => (
43
+ ({ icon, text, classname, onclick}:ToolbarTypes, index:number) => (
52
44
  <EditorButton
53
- classname={classname}
54
- icon={icon}
55
- key={index}
56
- onclick={onclick}
57
- text={text}
45
+ classname={classname}
46
+ icon={icon}
47
+ key={index}
48
+ text={text}
49
+ onclick={onclick}
58
50
  />
59
51
  )
60
52
  )}
@@ -9,7 +9,7 @@ import NavItem from '../../pb_nav/_item'
9
9
 
10
10
  import { ToolbarTypes } from './EditorTypes'
11
11
 
12
- const ToolbarDropdown = ({editor}: any): React.ReactElement => {
12
+ const ToolbarDropdown = ({editor}: any) => {
13
13
  const [showPopover, setShowPopover] = useState(false)
14
14
 
15
15
  const toolbarDropdownItems = [
@@ -81,21 +81,11 @@ for (const { text, isActive, icon } of toolbarDropdownItems) {
81
81
  if (isActive) {
82
82
  activeCount ++
83
83
  activeItems.push(
84
- <Flex align="center"
85
- gap="xs"
86
- key={icon}
87
- >
88
- <Icon icon={icon}
89
- size="lg"
90
- />
84
+ <Flex align="center" key={icon} gap="xs">
85
+ <Icon icon={icon} size="lg" />
91
86
  <div>{text}</div>
92
- <Flex className={showPopover ? "fa-flip-vertical" : ""}
93
- display="inline_flex"
94
- >
95
- <Icon fixedWidth
96
- icon="angle-down"
97
- margin-left="xs"
98
- />
87
+ <Flex className={showPopover ? "fa-flip-vertical" : ""} display="inline_flex">
88
+ <Icon fixedWidth icon="angle-down" margin-left="xs" />
99
89
  </Flex>
100
90
  </Flex>
101
91
  );
@@ -103,10 +93,7 @@ for (const { text, isActive, icon } of toolbarDropdownItems) {
103
93
  }
104
94
 
105
95
  const popoverReference = (
106
- <Button className="editor-dropdown-button"
107
- onClick={handleTogglePopover}
108
- variant="secondary"
109
- >
96
+ <Button className="editor-dropdown-button" onClick={handleTogglePopover} variant="secondary">
110
97
  {
111
98
  activeCount === 2 ? (
112
99
  activeItems[1]
@@ -114,21 +101,11 @@ const popoverReference = (
114
101
  activeCount === 1 ? (
115
102
  activeItems[0] || null
116
103
  ) : (
117
- <Flex align="center"
118
- gap="xs"
119
- key="paragraph"
120
- >
121
- <Icon icon="paragraph"
122
- size="lg"
123
- />
104
+ <Flex align="center" key="paragraph" gap="xs">
105
+ <Icon icon="paragraph" size="lg" />
124
106
  <div>Paragraph</div>
125
- <Flex className={showPopover ? "fa-flip-vertical" : ""}
126
- display="inline_flex"
127
- >
128
- <Icon fixedWidth
129
- icon="angle-down"
130
- margin-left="xs"
131
- />
107
+ <Flex className={showPopover ? "fa-flip-vertical" : ""} display="inline_flex">
108
+ <Icon fixedWidth icon="angle-down" margin-left="xs" />
132
109
  </Flex>
133
110
  </Flex>
134
111
  )
@@ -147,21 +124,21 @@ const popoverReference = (
147
124
  show={showPopover}
148
125
  >
149
126
  <Nav
150
- paddingBottom="xs"
151
- paddingTop="xs"
152
- variant="subtle"
127
+ paddingTop="xs"
128
+ paddingBottom="xs"
129
+ variant="subtle"
153
130
  >
154
- {toolbarDropdownItems.map(({ icon, text, onclick, isActive}: ToolbarTypes, index: number) => (
131
+ {toolbarDropdownItems.map(({ icon, text, onclick, isActive}:ToolbarTypes, index:number) => (
155
132
  <NavItem
156
- className={`pb_tiptap_toolbar_dropdown_list_item ${isActive ? "is-active" : ""}`}
157
- cursor="pointer"
158
- iconLeft={icon}
159
- key={`${text}_${index}`}
160
- margin='none'
161
- onClick={()=> {onclick(); setShowPopover(false)}}
162
- paddingBottom='xxs'
163
- paddingTop='xxs'
164
- text={text}
133
+ cursor="pointer"
134
+ className={`pb_tiptap_toolbar_dropdown_list_item ${isActive ? "is-active" : ""}`}
135
+ iconLeft={icon}
136
+ key={`${text}_${index}`}
137
+ margin='none'
138
+ onClick={()=> {onclick(); setShowPopover(false)}}
139
+ text={text}
140
+ paddingTop='xxs'
141
+ paddingBottom='xxs'
165
142
  />
166
143
  ))}
167
144
  </Nav>
@@ -3,7 +3,7 @@ import FlexItem from "../../pb_flex/_flex_item";
3
3
  import EditorButton from "./EditorButton";
4
4
  import { ToolbarTypes } from "./EditorTypes";
5
5
 
6
- const ToolbarHistoryItems = ({editor}: any): React.ReactElement => {
6
+ const ToolbarHistoryItems = ({editor}:any) => {
7
7
 
8
8
  const toolbarHistoryItems = [
9
9
  {
@@ -26,14 +26,14 @@ const toolbarHistoryItems = [
26
26
  <>
27
27
  <FlexItem displayFlex>
28
28
  {toolbarHistoryItems.map(
29
- ({ onclick, classname, disable, icon, text }: ToolbarTypes, index: number) => (
29
+ ({ onclick, classname, disable, icon, text }:ToolbarTypes, index:number) => (
30
30
  <EditorButton
31
- classname={classname}
32
- disable={disable}
33
- icon={icon}
34
- key={index}
35
- onclick={onclick}
36
- text={text}
31
+ classname={classname}
32
+ onclick={onclick}
33
+ disable={disable}
34
+ icon={icon}
35
+ key={index}
36
+ text={text}
37
37
  />
38
38
  )
39
39
  )}
@@ -2,7 +2,7 @@ import React, {useCallback} from "react";
2
2
  import EditorButton from "./EditorButton";
3
3
  import { ToolbarTypes } from "./EditorTypes";
4
4
 
5
- const ToolbarNodes = ({editor}: any): React.ReactElement => {
5
+ const ToolbarNodes = ({editor}:any) => {
6
6
 
7
7
  // eslint-disable-next-line react-hooks/rules-of-hooks
8
8
  const setLink = useCallback(() => {
@@ -42,13 +42,13 @@ const toolbarNodesItems = [
42
42
 
43
43
  return (
44
44
  <>
45
- {toolbarNodesItems.map(({ onclick, icon, text, isActive }: ToolbarTypes, index: number) => (
45
+ {toolbarNodesItems.map(({ onclick, icon, text, isActive }:ToolbarTypes, index:number) => (
46
46
  <EditorButton
47
- classname={`toolbar_button ${isActive ? 'is-active' : ''}`}
48
- icon={icon}
49
- key={index}
50
- onclick={onclick}
51
- text={text}
47
+ classname={`toolbar_button ${isActive ? 'is-active' : ''}`}
48
+ onclick={onclick}
49
+ icon={icon}
50
+ key={index}
51
+ text={text}
52
52
  />
53
53
  ))}
54
54
  </>
@@ -17,27 +17,27 @@ import { TrixEditor } from "react-trix"
17
17
  import EditorToolbar from './TipTap/Toolbar'
18
18
 
19
19
  type Editor = {
20
- attributeIsActive?: ([any]: string) => boolean,
20
+ attributeIsActive?: Function,
21
21
  element?: HTMLElement,
22
- getSelectedDocument?: () => any,
22
+ getSelectedDocument?: Function,
23
23
  getSelectedRange?: () => Array<number>,
24
- insertHTML?: ([any]: string) => void,
25
- loadHTML?: ([any]: string) => void,
26
- setSelectedRange?: (range: Array<number>) => void,
24
+ insertHTML?: Function,
25
+ loadHTML?: Function,
26
+ setSelectedRange?: (range: Array<number>) => void,
27
27
  }
28
28
 
29
29
  type RichTextEditorProps = {
30
30
  aria?: { [key: string]: string },
31
31
  advancedEditor?: any,
32
32
  advancedEditorToolbar?: boolean,
33
- toolbarBottom?: boolean,
33
+ toolbarBottom?: Boolean,
34
34
  children?: React.ReactNode | React.ReactNode[]
35
35
  className?: string,
36
36
  data?: { [key: string]: string },
37
37
  focus?: boolean,
38
38
  htmlOptions?: {[key: string]: string | number | boolean | (() => void)},
39
39
  id?: string,
40
- inline?: boolean,
40
+ inline?: boolean,
41
41
  extensions?: { [key: string]: string }[],
42
42
  name?: string,
43
43
  onChange: (html: string, text: string) => void,
@@ -49,7 +49,7 @@ type RichTextEditorProps = {
49
49
  maxWidth?: string
50
50
  } & GlobalProps
51
51
 
52
- const RichTextEditor = (props: RichTextEditorProps): React.ReactElement => {
52
+ const RichTextEditor = (props: RichTextEditorProps) => {
53
53
  const {
54
54
  aria = {},
55
55
  advancedEditor,
@@ -81,6 +81,7 @@ const RichTextEditor = (props: RichTextEditorProps): React.ReactElement => {
81
81
  const handleOnEditorReady = (editorInstance: Editor) => setEditor(editorInstance),
82
82
  element = editor?.element
83
83
 
84
+
84
85
  // DOM manipulation must wait for editor to be ready
85
86
  if (editor) {
86
87
  const toolbarElement = element.parentElement.querySelector('trix-toolbar') as HTMLElement,
@@ -116,7 +117,6 @@ const RichTextEditor = (props: RichTextEditorProps): React.ReactElement => {
116
117
  focus
117
118
  ? (document.addEventListener('trix-focus', useFocus),
118
119
  document.addEventListener('trix-blur', useFocus),
119
- // eslint-disable-next-line react-hooks/rules-of-hooks
120
120
  useFocus())
121
121
  : null
122
122
 
@@ -164,10 +164,10 @@ const RichTextEditor = (props: RichTextEditorProps): React.ReactElement => {
164
164
 
165
165
  return (
166
166
  <div
167
- {...ariaProps}
168
- {...dataProps}
169
- {...htmlProps}
170
- className={css}
167
+ {...ariaProps}
168
+ {...dataProps}
169
+ {...htmlProps}
170
+ className={css}
171
171
  >
172
172
  {
173
173
  advancedEditor ? (
@@ -175,11 +175,9 @@ const RichTextEditor = (props: RichTextEditorProps): React.ReactElement => {
175
175
  className={classnames("pb_rich_text_editor_advanced_container", {
176
176
  ["toolbar-active"]: advancedEditorToolbar,
177
177
  })}
178
- >
178
+ >
179
179
  {advancedEditorToolbar && (
180
- <EditorToolbar editor={advancedEditor}
181
- extensions={extensions}
182
- />
180
+ <EditorToolbar extensions={extensions} editor={advancedEditor}/>
183
181
  )}
184
182
  { children }
185
183
  </div>
@@ -20,7 +20,7 @@ type SectionSeparatorProps = {
20
20
  variant?: "card" | "background",
21
21
  }
22
22
 
23
- const SectionSeparator = (props: SectionSeparatorProps): React.ReactElement => {
23
+ const SectionSeparator = (props: SectionSeparatorProps) => {
24
24
  const {
25
25
  aria = {},
26
26
  children,
@@ -42,19 +42,17 @@ const SectionSeparator = (props: SectionSeparatorProps): React.ReactElement => {
42
42
  return (
43
43
 
44
44
  <div
45
- {...ariaProps}
46
- {...dataProps}
47
- {...htmlProps}
48
- className={classes}
49
- id={id}
45
+ {...ariaProps}
46
+ {...dataProps}
47
+ {...htmlProps}
48
+ className={classes}
49
+ id={id}
50
50
  >
51
51
  {
52
52
  children && children ||
53
53
  text && (
54
54
  <span>
55
- <Caption dark={dark}
56
- text={text}
57
- />
55
+ <Caption text={text} dark={dark} />
58
56
  </span>
59
57
  )
60
58
  }
@@ -63,7 +63,7 @@ const Select = ({
63
63
  inline = false,
64
64
  multiple = false,
65
65
  name,
66
- onChange = () => undefined,
66
+ onChange = () => {},
67
67
  options = [],
68
68
  required = false,
69
69
  value,
@@ -33,7 +33,7 @@ type SelectableCardIconProps = {
33
33
  onChange?: (event: React.FormEvent<HTMLInputElement>) => void,
34
34
  }
35
35
 
36
- const SelectableCardIcon = (props: SelectableCardIconProps): React.ReactElement => {
36
+ const SelectableCardIcon = (props: SelectableCardIconProps) => {
37
37
  const {
38
38
  aria = {},
39
39
  checkmark = false,
@@ -70,37 +70,36 @@ const SelectableCardIcon = (props: SelectableCardIconProps): React.ReactElement
70
70
 
71
71
  return (
72
72
  <div
73
- {...ariaProps}
74
- {...dataProps}
75
- {...htmlProps}
76
- className={classes}
73
+ {...ariaProps}
74
+ {...dataProps}
75
+ {...htmlProps}
76
+ className={classes}
77
77
  >
78
78
  <SelectableCard
79
- checked={checked}
80
- customIcon={customIcon}
81
- dark={dark}
82
- disabled={disabled}
83
- icon={checkmark}
84
- inputId={inputId}
85
- multi={multi}
86
- name={name}
87
- onChange={onChange}
88
- value={value}
79
+ checked={checked}
80
+ customIcon={customIcon}
81
+ dark={dark}
82
+ disabled={disabled}
83
+ icon={checkmark}
84
+ inputId={inputId}
85
+ multi={multi}
86
+ name={name}
87
+ onChange={onChange}
88
+ value={value}
89
89
  >
90
90
  {
91
91
  <>
92
92
  <SelectableIcon
93
- customIcon={customIcon}
94
- icon={icon}
95
- inputId={''}
96
- inputs="disabled"
97
- name={''}
98
- text={titleText}
99
- />
93
+ customIcon={customIcon}
94
+ icon={icon}
95
+ inputId={''}
96
+ inputs="disabled"
97
+ name={''}
98
+ text={titleText} />
100
99
  <Body
101
- color="light"
102
- dark={dark}
103
- text={bodyText}
100
+ color="light"
101
+ dark={dark}
102
+ text={bodyText}
104
103
  />
105
104
  </>
106
105
  }