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.
- checksums.yaml +4 -4
- data/app/pb_kits/playbook/pb_currency/docs/example.yml +1 -3
- data/app/pb_kits/playbook/pb_currency/docs/index.js +0 -1
- data/app/pb_kits/playbook/pb_timeline/docs/_timeline_with_children.html.erb +43 -0
- data/app/pb_kits/playbook/pb_timeline/docs/_timeline_with_children.jsx +68 -0
- data/app/pb_kits/playbook/pb_timeline/docs/_timeline_with_children.md +4 -0
- data/app/pb_kits/playbook/pb_timeline/docs/example.yml +2 -1
- data/app/pb_kits/playbook/pb_timeline/docs/index.js +1 -0
- data/dist/playbook-doc.js +1 -1
- metadata +4 -3
- data/app/pb_kits/playbook/pb_currency/docs/_currency_comma_separator.html.erb +0 -7
- data/app/pb_kits/playbook/pb_currency/docs/_currency_comma_separator.jsx +0 -18
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.
|
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,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
|