playbook_ui_docs 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.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: playbook_ui_docs
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
@@ -409,8 +409,6 @@ files:
409
409
  - app/pb_kits/playbook/pb_currency/docs/_currency_alignment.html.erb
410
410
  - app/pb_kits/playbook/pb_currency/docs/_currency_alignment.jsx
411
411
  - app/pb_kits/playbook/pb_currency/docs/_currency_alignment_swift.md
412
- - app/pb_kits/playbook/pb_currency/docs/_currency_comma_separator.html.erb
413
- - app/pb_kits/playbook/pb_currency/docs/_currency_comma_separator.jsx
414
412
  - app/pb_kits/playbook/pb_currency/docs/_currency_matching_decimals.html.erb
415
413
  - app/pb_kits/playbook/pb_currency/docs/_currency_matching_decimals.jsx
416
414
  - app/pb_kits/playbook/pb_currency/docs/_currency_no_symbol.html.erb
@@ -1800,6 +1798,9 @@ files:
1800
1798
  - app/pb_kits/playbook/pb_timeline/docs/_timeline_default.jsx
1801
1799
  - app/pb_kits/playbook/pb_timeline/docs/_timeline_vertical.html.erb
1802
1800
  - app/pb_kits/playbook/pb_timeline/docs/_timeline_vertical.jsx
1801
+ - app/pb_kits/playbook/pb_timeline/docs/_timeline_with_children.html.erb
1802
+ - app/pb_kits/playbook/pb_timeline/docs/_timeline_with_children.jsx
1803
+ - app/pb_kits/playbook/pb_timeline/docs/_timeline_with_children.md
1803
1804
  - app/pb_kits/playbook/pb_timeline/docs/_timeline_with_date.html.erb
1804
1805
  - app/pb_kits/playbook/pb_timeline/docs/_timeline_with_date.jsx
1805
1806
  - app/pb_kits/playbook/pb_timeline/docs/_timeline_with_date.md
@@ -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