playbook_ui 14.6.0.pre.alpha.PBNTR5554217 → 14.6.0.pre.alpha.play1586datearea4218

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 (34) hide show
  1. checksums.yaml +4 -4
  2. data/app/pb_kits/playbook/pb_currency/_currency.tsx +6 -16
  3. data/app/pb_kits/playbook/pb_currency/currency.rb +11 -38
  4. data/app/pb_kits/playbook/pb_currency/currency.test.js +0 -35
  5. data/app/pb_kits/playbook/pb_currency/docs/example.yml +1 -3
  6. data/app/pb_kits/playbook/pb_currency/docs/index.js +0 -1
  7. data/app/pb_kits/playbook/pb_timeline/_item.tsx +59 -23
  8. data/app/pb_kits/playbook/pb_timeline/_timeline.tsx +8 -0
  9. data/app/pb_kits/playbook/pb_timeline/date_area.html.erb +12 -0
  10. data/app/pb_kits/playbook/pb_timeline/date_area.rb +13 -0
  11. data/app/pb_kits/playbook/pb_timeline/detail_area.html.erb +3 -0
  12. data/app/pb_kits/playbook/pb_timeline/detail_area.rb +11 -0
  13. data/app/pb_kits/playbook/pb_timeline/docs/_timeline_with_children.html.erb +43 -0
  14. data/app/pb_kits/playbook/pb_timeline/docs/_timeline_with_children.jsx +68 -0
  15. data/app/pb_kits/playbook/pb_timeline/docs/_timeline_with_children.md +4 -0
  16. data/app/pb_kits/playbook/pb_timeline/docs/example.yml +2 -1
  17. data/app/pb_kits/playbook/pb_timeline/docs/index.js +1 -0
  18. data/app/pb_kits/playbook/pb_timeline/item.html.erb +17 -21
  19. data/app/pb_kits/playbook/pb_timeline/item.rb +4 -0
  20. data/app/pb_kits/playbook/pb_timeline/node_area.html.erb +14 -0
  21. data/app/pb_kits/playbook/pb_timeline/node_area.rb +16 -0
  22. data/app/pb_kits/playbook/pb_timeline/subcomponents/Detail.tsx +29 -0
  23. data/app/pb_kits/playbook/pb_timeline/subcomponents/Label.tsx +38 -0
  24. data/app/pb_kits/playbook/pb_timeline/subcomponents/Step.tsx +42 -0
  25. data/app/pb_kits/playbook/pb_timeline/subcomponents/index.tsx +3 -0
  26. data/app/pb_kits/playbook/pb_timeline/timeline.test.js +84 -0
  27. data/dist/chunks/_weekday_stacked-C-VEa5Ar.js +45 -0
  28. data/dist/chunks/vendor.js +1 -1
  29. data/dist/playbook-doc.js +1 -1
  30. data/lib/playbook/version.rb +1 -1
  31. metadata +15 -4
  32. data/app/pb_kits/playbook/pb_currency/docs/_currency_comma_separator.html.erb +0 -7
  33. data/app/pb_kits/playbook/pb_currency/docs/_currency_comma_separator.jsx +0 -18
  34. data/dist/chunks/_weekday_stacked-C2icYweq.js +0 -45
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Playbook
4
4
  PREVIOUS_VERSION = "14.6.0"
5
- VERSION = "14.6.0.pre.alpha.PBNTR5554217"
5
+ VERSION = "14.6.0.pre.alpha.play1586datearea4218"
6
6
  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: 14.6.0.pre.alpha.PBNTR5554217
4
+ version: 14.6.0.pre.alpha.play1586datearea4218
5
5
  platform: ruby
6
6
  authors:
7
7
  - Power UX
@@ -762,8 +762,6 @@ files:
762
762
  - app/pb_kits/playbook/pb_currency/docs/_currency_alignment.html.erb
763
763
  - app/pb_kits/playbook/pb_currency/docs/_currency_alignment.jsx
764
764
  - app/pb_kits/playbook/pb_currency/docs/_currency_alignment_swift.md
765
- - app/pb_kits/playbook/pb_currency/docs/_currency_comma_separator.html.erb
766
- - app/pb_kits/playbook/pb_currency/docs/_currency_comma_separator.jsx
767
765
  - app/pb_kits/playbook/pb_currency/docs/_currency_matching_decimals.html.erb
768
766
  - app/pb_kits/playbook/pb_currency/docs/_currency_matching_decimals.jsx
769
767
  - app/pb_kits/playbook/pb_currency/docs/_currency_no_symbol.html.erb
@@ -2720,11 +2718,18 @@ files:
2720
2718
  - app/pb_kits/playbook/pb_timeline/_item.tsx
2721
2719
  - app/pb_kits/playbook/pb_timeline/_timeline.scss
2722
2720
  - app/pb_kits/playbook/pb_timeline/_timeline.tsx
2721
+ - app/pb_kits/playbook/pb_timeline/date_area.html.erb
2722
+ - app/pb_kits/playbook/pb_timeline/date_area.rb
2723
+ - app/pb_kits/playbook/pb_timeline/detail_area.html.erb
2724
+ - app/pb_kits/playbook/pb_timeline/detail_area.rb
2723
2725
  - app/pb_kits/playbook/pb_timeline/docs/_description.md
2724
2726
  - app/pb_kits/playbook/pb_timeline/docs/_timeline_default.html.erb
2725
2727
  - app/pb_kits/playbook/pb_timeline/docs/_timeline_default.jsx
2726
2728
  - app/pb_kits/playbook/pb_timeline/docs/_timeline_vertical.html.erb
2727
2729
  - app/pb_kits/playbook/pb_timeline/docs/_timeline_vertical.jsx
2730
+ - app/pb_kits/playbook/pb_timeline/docs/_timeline_with_children.html.erb
2731
+ - app/pb_kits/playbook/pb_timeline/docs/_timeline_with_children.jsx
2732
+ - app/pb_kits/playbook/pb_timeline/docs/_timeline_with_children.md
2728
2733
  - app/pb_kits/playbook/pb_timeline/docs/_timeline_with_date.html.erb
2729
2734
  - app/pb_kits/playbook/pb_timeline/docs/_timeline_with_date.jsx
2730
2735
  - app/pb_kits/playbook/pb_timeline/docs/_timeline_with_date.md
@@ -2732,6 +2737,12 @@ files:
2732
2737
  - app/pb_kits/playbook/pb_timeline/docs/index.js
2733
2738
  - app/pb_kits/playbook/pb_timeline/item.html.erb
2734
2739
  - app/pb_kits/playbook/pb_timeline/item.rb
2740
+ - app/pb_kits/playbook/pb_timeline/node_area.html.erb
2741
+ - app/pb_kits/playbook/pb_timeline/node_area.rb
2742
+ - app/pb_kits/playbook/pb_timeline/subcomponents/Detail.tsx
2743
+ - app/pb_kits/playbook/pb_timeline/subcomponents/Label.tsx
2744
+ - app/pb_kits/playbook/pb_timeline/subcomponents/Step.tsx
2745
+ - app/pb_kits/playbook/pb_timeline/subcomponents/index.tsx
2735
2746
  - app/pb_kits/playbook/pb_timeline/timeline.html.erb
2736
2747
  - app/pb_kits/playbook/pb_timeline/timeline.rb
2737
2748
  - app/pb_kits/playbook/pb_timeline/timeline.test.js
@@ -3102,7 +3113,7 @@ files:
3102
3113
  - app/pb_kits/playbook/utilities/text.ts
3103
3114
  - app/pb_kits/playbook/utilities/validEmojiChecker.ts
3104
3115
  - dist/chunks/_typeahead-BhHnXJjy.js
3105
- - dist/chunks/_weekday_stacked-C2icYweq.js
3116
+ - dist/chunks/_weekday_stacked-C-VEa5Ar.js
3106
3117
  - dist/chunks/lazysizes-B7xYodB-.js
3107
3118
  - dist/chunks/lib-D-mTv-kp.js
3108
3119
  - dist/chunks/pb_form_validation-BkWGwJsl.js
@@ -1,7 +0,0 @@
1
- <%= pb_rails("currency", props: {
2
- amount: '1234567.89',
3
- comma_separator: true,
4
- size: 'lg',
5
- emphasized: false,
6
- decimals: 'matching',
7
- }) %>
@@ -1,18 +0,0 @@
1
- import React from "react"
2
-
3
- import Currency from "../_currency"
4
-
5
- const CurrencyCommaSeparator = (props) => {
6
- return (
7
- <Currency
8
- amount='1234567.89'
9
- commaSeparator
10
- decimals="matching"
11
- emphasized={false}
12
- size="lg"
13
- {...props}
14
- />
15
- )
16
- }
17
-
18
- export default CurrencyCommaSeparator