playbook_ui 13.15.0.pre.alpha.PLAY10851907 → 13.15.0.pre.alpha.PLAY11311893

Sign up to get free protection for your applications and to get access to all the features.
Files changed (30) hide show
  1. checksums.yaml +4 -4
  2. data/app/pb_kits/playbook/pb_passphrase/_passphrase.tsx +50 -51
  3. data/app/pb_kits/playbook/pb_person_contact/_person_contact.tsx +19 -20
  4. data/app/pb_kits/playbook/pb_phone_number_input/_phone_number_input.tsx +3 -4
  5. data/app/pb_kits/playbook/pb_popover/_popover.tsx +4 -6
  6. data/app/pb_kits/playbook/pb_progress_pills/_progress_pills.tsx +20 -20
  7. data/app/pb_kits/playbook/pb_progress_simple/_progress_simple.tsx +4 -4
  8. data/app/pb_kits/playbook/pb_rich_text_editor/TipTap/EditorButton.tsx +17 -19
  9. data/app/pb_kits/playbook/pb_rich_text_editor/TipTap/EditorTypes.ts +1 -1
  10. data/app/pb_kits/playbook/pb_rich_text_editor/TipTap/MoreExtensionsDropdown.tsx +21 -23
  11. data/app/pb_kits/playbook/pb_rich_text_editor/TipTap/Toolbar.tsx +10 -18
  12. data/app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarDropdown.tsx +23 -46
  13. data/app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarHistory.tsx +8 -8
  14. data/app/pb_kits/playbook/pb_rich_text_editor/TipTap/ToolbarNodes.tsx +7 -7
  15. data/app/pb_kits/playbook/pb_rich_text_editor/_rich_text_editor.tsx +15 -17
  16. data/app/pb_kits/playbook/pb_section_separator/_section_separator.tsx +7 -9
  17. data/app/pb_kits/playbook/pb_select/_select.scss +13 -4
  18. data/app/pb_kits/playbook/pb_select/_select.tsx +6 -3
  19. data/app/pb_kits/playbook/pb_select/docs/_select_inline_show_arrow.html.erb +24 -0
  20. data/app/pb_kits/playbook/pb_select/docs/_select_inline_show_arrow.jsx +38 -0
  21. data/app/pb_kits/playbook/pb_select/docs/example.yml +2 -0
  22. data/app/pb_kits/playbook/pb_select/docs/index.js +1 -0
  23. data/app/pb_kits/playbook/pb_select/select.rb +6 -1
  24. data/app/pb_kits/playbook/pb_selectable_card_icon/_selectable_card_icon.tsx +24 -25
  25. data/app/pb_kits/playbook/pb_selectable_icon/_selectable_icon.tsx +26 -27
  26. data/app/pb_kits/playbook/pb_selectable_list/_selectable_list.tsx +1 -2
  27. data/app/pb_kits/playbook/pb_source/_source.tsx +15 -15
  28. data/dist/playbook-rails.js +2 -2
  29. data/lib/playbook/version.rb +1 -1
  30. metadata +4 -2
@@ -32,7 +32,7 @@ const Source = ({
32
32
  source,
33
33
  type = 'inbound',
34
34
  user = {},
35
- }: SourceProps): React.ReactElement => {
35
+ }: SourceProps) => {
36
36
  const dataProps = buildDataProps(data)
37
37
  const htmlProps = buildHtmlProps(htmlOptions)
38
38
  const ariaProps = buildAriaProps(aria)
@@ -72,11 +72,11 @@ const Source = ({
72
72
 
73
73
  return (
74
74
  <div
75
- {...ariaProps}
76
- {...dataProps}
77
- {...htmlProps}
78
- className={css}
79
- id={id}
75
+ {...ariaProps}
76
+ {...dataProps}
77
+ {...htmlProps}
78
+ className={css}
79
+ id={id}
80
80
  >
81
81
 
82
82
  <div className="pb__source_layout">
@@ -84,13 +84,13 @@ const Source = ({
84
84
  <>
85
85
  {showIcon() &&
86
86
  <IconCircle
87
- icon={typeIconNames[type]}
88
- size="sm"
87
+ icon={typeIconNames[type]}
88
+ size="sm"
89
89
  />
90
90
  }
91
91
  {!showIcon() &&
92
92
  <Avatar
93
- {...avatar()}
93
+ {...avatar()}
94
94
  />
95
95
  }
96
96
  </>
@@ -98,20 +98,20 @@ const Source = ({
98
98
 
99
99
  <div className="pb__source_content">
100
100
  <Title
101
- size={4}
102
- tag="h4"
103
- text={source}
101
+ size={4}
102
+ tag="h4"
103
+ text={source}
104
104
  />
105
105
 
106
106
  <div className="pb__source_value">
107
107
  <Body
108
- color="light"
109
- text={typeText()}
108
+ color="light"
109
+ text={typeText()}
110
110
  />
111
111
 
112
112
  {user.userId &&
113
113
  <Caption
114
- text={user.userId}
114
+ text={user.userId}
115
115
  />
116
116
  }
117
117
  </div>