playbook_ui 9.8.0 → 9.9.0.alpha.inline1

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 (55) hide show
  1. checksums.yaml +4 -4
  2. data/app/pb_kits/playbook/pb_badge/_badge.jsx +26 -1
  3. data/app/pb_kits/playbook/pb_date_picker/_date_picker.jsx +6 -1
  4. data/app/pb_kits/playbook/pb_date_picker/date_picker_helper.js +3 -0
  5. data/app/pb_kits/playbook/pb_form_pill/_form_pill.jsx +12 -2
  6. data/app/pb_kits/playbook/pb_form_pill/_form_pill.scss +19 -0
  7. data/app/pb_kits/playbook/pb_form_pill/docs/_form_pill_size.html.erb +13 -0
  8. data/app/pb_kits/playbook/pb_form_pill/docs/_form_pill_size.jsx +25 -0
  9. data/app/pb_kits/playbook/pb_form_pill/docs/_form_pill_user.html.erb +4 -5
  10. data/app/pb_kits/playbook/pb_form_pill/docs/_form_pill_user.jsx +2 -6
  11. data/app/pb_kits/playbook/pb_form_pill/docs/example.yml +2 -0
  12. data/app/pb_kits/playbook/pb_form_pill/docs/index.js +1 -0
  13. data/app/pb_kits/playbook/pb_form_pill/form_pill.html.erb +1 -1
  14. data/app/pb_kits/playbook/pb_form_pill/form_pill.rb +5 -0
  15. data/app/pb_kits/playbook/pb_passphrase/_passphrase.jsx +12 -9
  16. data/app/pb_kits/playbook/pb_passphrase/docs/_passphrase_breached.html.erb +1 -0
  17. data/app/pb_kits/playbook/pb_passphrase/docs/_passphrase_breached.jsx +24 -0
  18. data/app/pb_kits/playbook/pb_passphrase/docs/_passphrase_breached.md +3 -0
  19. data/app/pb_kits/playbook/pb_passphrase/docs/_passphrase_default.jsx +1 -0
  20. data/app/pb_kits/playbook/pb_passphrase/docs/example.yml +2 -0
  21. data/app/pb_kits/playbook/pb_passphrase/docs/index.js +1 -0
  22. data/app/pb_kits/playbook/pb_passphrase/passphrase.rb +2 -0
  23. data/app/pb_kits/playbook/pb_passphrase/passphrase.test.jsx +12 -0
  24. data/app/pb_kits/playbook/pb_passphrase/useHaveIBeenPwned.js +52 -0
  25. data/app/pb_kits/playbook/pb_passphrase/useZxcvbn.js +58 -0
  26. data/app/pb_kits/playbook/pb_rich_text_editor/_rich_text_editor.jsx +10 -0
  27. data/app/pb_kits/playbook/pb_rich_text_editor/_rich_text_editor.scss +61 -0
  28. data/app/pb_kits/playbook/pb_rich_text_editor/docs/_rich_text_editor_inline.html.erb +6 -0
  29. data/app/pb_kits/playbook/pb_rich_text_editor/docs/_rich_text_editor_inline.jsx +16 -0
  30. data/app/pb_kits/playbook/pb_rich_text_editor/docs/_rich_text_editor_toolbar_bottom.html.erb +4 -0
  31. data/app/pb_kits/playbook/pb_rich_text_editor/docs/_rich_text_editor_toolbar_bottom.jsx +14 -0
  32. data/app/pb_kits/playbook/pb_rich_text_editor/docs/example.yml +4 -0
  33. data/app/pb_kits/playbook/pb_rich_text_editor/docs/index.js +2 -0
  34. data/app/pb_kits/playbook/pb_rich_text_editor/rich_text_editor.rb +9 -2
  35. data/app/pb_kits/playbook/pb_text_input/_text_input.jsx +3 -0
  36. data/app/pb_kits/playbook/pb_text_input/_text_input.scss +8 -0
  37. data/app/pb_kits/playbook/pb_text_input/docs/_text_input_inline.html.erb +5 -0
  38. data/app/pb_kits/playbook/pb_text_input/docs/_text_input_inline.jsx +22 -0
  39. data/app/pb_kits/playbook/pb_text_input/docs/example.yml +2 -0
  40. data/app/pb_kits/playbook/pb_text_input/docs/index.js +1 -0
  41. data/app/pb_kits/playbook/pb_text_input/text_input.rb +7 -1
  42. data/app/pb_kits/playbook/pb_typeahead/_typeahead.jsx +11 -2
  43. data/app/pb_kits/playbook/pb_typeahead/_typeahead.scss +23 -0
  44. data/app/pb_kits/playbook/pb_typeahead/components/MultiValue.jsx +23 -11
  45. data/app/pb_kits/playbook/pb_typeahead/components/Placeholder.jsx +17 -4
  46. data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_inline.html.erb +36 -0
  47. data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_inline.jsx +43 -0
  48. data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_multi_kit.html.erb +35 -0
  49. data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_multi_kit.jsx +44 -0
  50. data/app/pb_kits/playbook/pb_typeahead/docs/example.yml +4 -0
  51. data/app/pb_kits/playbook/pb_typeahead/docs/index.js +7 -5
  52. data/app/pb_kits/playbook/pb_typeahead/typeahead.html.erb +1 -1
  53. data/app/pb_kits/playbook/pb_typeahead/typeahead.rb +18 -2
  54. data/lib/playbook/version.rb +1 -1
  55. metadata +22 -6
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Playbook
4
- VERSION = "9.8.0"
4
+ VERSION = "9.9.0.alpha.inline1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: playbook_ui
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.8.0
4
+ version: 9.9.0.alpha.inline1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Power UX
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-04-21 00:00:00.000000000 Z
12
+ date: 2021-04-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: actionpack
@@ -1021,6 +1021,8 @@ files:
1021
1021
  - app/pb_kits/playbook/pb_form_group/form_group.rb
1022
1022
  - app/pb_kits/playbook/pb_form_pill/_form_pill.jsx
1023
1023
  - app/pb_kits/playbook/pb_form_pill/_form_pill.scss
1024
+ - app/pb_kits/playbook/pb_form_pill/docs/_form_pill_size.html.erb
1025
+ - app/pb_kits/playbook/pb_form_pill/docs/_form_pill_size.jsx
1024
1026
  - app/pb_kits/playbook/pb_form_pill/docs/_form_pill_tag.html.erb
1025
1027
  - app/pb_kits/playbook/pb_form_pill/docs/_form_pill_tag.jsx
1026
1028
  - app/pb_kits/playbook/pb_form_pill/docs/_form_pill_user.html.erb
@@ -1383,6 +1385,9 @@ files:
1383
1385
  - app/pb_kits/playbook/pb_online_status/online_status.rb
1384
1386
  - app/pb_kits/playbook/pb_passphrase/_passphrase.jsx
1385
1387
  - app/pb_kits/playbook/pb_passphrase/_passphrase.scss
1388
+ - app/pb_kits/playbook/pb_passphrase/docs/_passphrase_breached.html.erb
1389
+ - app/pb_kits/playbook/pb_passphrase/docs/_passphrase_breached.jsx
1390
+ - app/pb_kits/playbook/pb_passphrase/docs/_passphrase_breached.md
1386
1391
  - app/pb_kits/playbook/pb_passphrase/docs/_passphrase_common.jsx
1387
1392
  - app/pb_kits/playbook/pb_passphrase/docs/_passphrase_default.html.erb
1388
1393
  - app/pb_kits/playbook/pb_passphrase/docs/_passphrase_default.jsx
@@ -1404,6 +1409,8 @@ files:
1404
1409
  - app/pb_kits/playbook/pb_passphrase/passphrase.rb
1405
1410
  - app/pb_kits/playbook/pb_passphrase/passphrase.test.jsx
1406
1411
  - app/pb_kits/playbook/pb_passphrase/passwordStrength.js
1412
+ - app/pb_kits/playbook/pb_passphrase/useHaveIBeenPwned.js
1413
+ - app/pb_kits/playbook/pb_passphrase/useZxcvbn.js
1407
1414
  - app/pb_kits/playbook/pb_person/_person.jsx
1408
1415
  - app/pb_kits/playbook/pb_person/_person.scss
1409
1416
  - app/pb_kits/playbook/pb_person/docs/_description.md
@@ -1535,6 +1542,8 @@ files:
1535
1542
  - app/pb_kits/playbook/pb_rich_text_editor/docs/_rich_text_editor_default.jsx
1536
1543
  - app/pb_kits/playbook/pb_rich_text_editor/docs/_rich_text_editor_focus.html.erb
1537
1544
  - app/pb_kits/playbook/pb_rich_text_editor/docs/_rich_text_editor_focus.jsx
1545
+ - app/pb_kits/playbook/pb_rich_text_editor/docs/_rich_text_editor_inline.html.erb
1546
+ - app/pb_kits/playbook/pb_rich_text_editor/docs/_rich_text_editor_inline.jsx
1538
1547
  - app/pb_kits/playbook/pb_rich_text_editor/docs/_rich_text_editor_preview.html.erb
1539
1548
  - app/pb_kits/playbook/pb_rich_text_editor/docs/_rich_text_editor_preview.jsx
1540
1549
  - app/pb_kits/playbook/pb_rich_text_editor/docs/_rich_text_editor_simple.html.erb
@@ -1543,6 +1552,8 @@ files:
1543
1552
  - app/pb_kits/playbook/pb_rich_text_editor/docs/_rich_text_editor_sticky.jsx
1544
1553
  - app/pb_kits/playbook/pb_rich_text_editor/docs/_rich_text_editor_templates.html.erb
1545
1554
  - app/pb_kits/playbook/pb_rich_text_editor/docs/_rich_text_editor_templates.jsx
1555
+ - app/pb_kits/playbook/pb_rich_text_editor/docs/_rich_text_editor_toolbar_bottom.html.erb
1556
+ - app/pb_kits/playbook/pb_rich_text_editor/docs/_rich_text_editor_toolbar_bottom.jsx
1546
1557
  - app/pb_kits/playbook/pb_rich_text_editor/docs/example.yml
1547
1558
  - app/pb_kits/playbook/pb_rich_text_editor/docs/index.js
1548
1559
  - app/pb_kits/playbook/pb_rich_text_editor/docs/templates.js
@@ -1798,6 +1809,8 @@ files:
1798
1809
  - app/pb_kits/playbook/pb_text_input/docs/_text_input_error.html.erb
1799
1810
  - app/pb_kits/playbook/pb_text_input/docs/_text_input_error.jsx
1800
1811
  - app/pb_kits/playbook/pb_text_input/docs/_text_input_error.md
1812
+ - app/pb_kits/playbook/pb_text_input/docs/_text_input_inline.html.erb
1813
+ - app/pb_kits/playbook/pb_text_input/docs/_text_input_inline.jsx
1801
1814
  - app/pb_kits/playbook/pb_text_input/docs/example.yml
1802
1815
  - app/pb_kits/playbook/pb_text_input/docs/index.js
1803
1816
  - app/pb_kits/playbook/pb_text_input/text_input.html.erb
@@ -1975,6 +1988,10 @@ files:
1975
1988
  - app/pb_kits/playbook/pb_typeahead/docs/_footer.md
1976
1989
  - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_default.html.erb
1977
1990
  - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_default.jsx
1991
+ - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_inline.html.erb
1992
+ - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_inline.jsx
1993
+ - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_multi_kit.html.erb
1994
+ - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_multi_kit.jsx
1978
1995
  - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_with_context.html.erb
1979
1996
  - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_with_pills.html.erb
1980
1997
  - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_with_pills.jsx
@@ -2129,12 +2146,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
2129
2146
  version: '0'
2130
2147
  required_rubygems_version: !ruby/object:Gem::Requirement
2131
2148
  requirements:
2132
- - - ">="
2149
+ - - ">"
2133
2150
  - !ruby/object:Gem::Version
2134
- version: '0'
2151
+ version: 1.3.1
2135
2152
  requirements: []
2136
- rubyforge_project:
2137
- rubygems_version: 2.7.3
2153
+ rubygems_version: 3.1.4
2138
2154
  signing_key:
2139
2155
  specification_version: 4
2140
2156
  summary: Playbook Design System