playbook_ui_docs 14.14.0.pre.alpha.pbntr500currencykithandlingofnullvalues6275 → 14.14.0.pre.alpha.play1868dependencyremovallodash6286

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.14.0.pre.alpha.pbntr500currencykithandlingofnullvalues6275
4
+ version: 14.14.0.pre.alpha.play1868dependencyremovallodash6286
5
5
  platform: ruby
6
6
  authors:
7
7
  - Power UX
@@ -455,8 +455,6 @@ files:
455
455
  - app/pb_kits/playbook/pb_currency/docs/_currency_negative.jsx
456
456
  - app/pb_kits/playbook/pb_currency/docs/_currency_no_symbol.html.erb
457
457
  - app/pb_kits/playbook/pb_currency/docs/_currency_no_symbol.jsx
458
- - app/pb_kits/playbook/pb_currency/docs/_currency_null_display.html.erb
459
- - app/pb_kits/playbook/pb_currency/docs/_currency_null_display.jsx
460
458
  - app/pb_kits/playbook/pb_currency/docs/_currency_props_swift.md
461
459
  - app/pb_kits/playbook/pb_currency/docs/_currency_size.html.erb
462
460
  - app/pb_kits/playbook/pb_currency/docs/_currency_size.jsx
@@ -1032,8 +1030,11 @@ files:
1032
1030
  - app/pb_kits/playbook/pb_icon/docs/example.yml
1033
1031
  - app/pb_kits/playbook/pb_icon/docs/index.js
1034
1032
  - app/pb_kits/playbook/pb_icon_button/docs/_icon_button_default.html.erb
1033
+ - app/pb_kits/playbook/pb_icon_button/docs/_icon_button_default.jsx
1035
1034
  - app/pb_kits/playbook/pb_icon_button/docs/_icon_button_sizes.html.erb
1035
+ - app/pb_kits/playbook/pb_icon_button/docs/_icon_button_sizes.jsx
1036
1036
  - app/pb_kits/playbook/pb_icon_button/docs/example.yml
1037
+ - app/pb_kits/playbook/pb_icon_button/docs/index.js
1037
1038
  - app/pb_kits/playbook/pb_icon_circle/docs/_description.md
1038
1039
  - app/pb_kits/playbook/pb_icon_circle/docs/_footer.md
1039
1040
  - app/pb_kits/playbook/pb_icon_circle/docs/_icon_circle_color.html.erb
@@ -1,20 +0,0 @@
1
- <%= pb_rails("currency", props: {
2
- amount: "",
3
- label: "Nil",
4
- margin_bottom: "md",
5
- null_display: "--",
6
- }) %>
7
-
8
- <%= pb_rails("currency", props: {
9
- amount: "",
10
- label: "Nil",
11
- margin_bottom: "md",
12
- null_display: "$0.00",
13
- }) %>
14
-
15
- <%= pb_rails("currency", props: {
16
- amount: "",
17
- label: "Nil",
18
- margin_bottom: "md",
19
- null_display: " ",
20
- }) %>
@@ -1,34 +0,0 @@
1
- import React from 'react'
2
- import { Currency } from 'playbook-ui'
3
-
4
- const CurrencyNullDisplay = (props) => {
5
- return (
6
- <>
7
- <Currency
8
- amount=""
9
- label="Null"
10
- marginBottom="md"
11
- nullDisplay="--"
12
- {...props}
13
- />
14
-
15
- <Currency
16
- amount=""
17
- label="Null"
18
- marginBottom="md"
19
- nullDisplay="$0.00"
20
- {...props}
21
- />
22
-
23
- <Currency
24
- amount=""
25
- label="Null"
26
- marginBottom="md"
27
- nullDisplay=" "
28
- {...props}
29
- />
30
- </>
31
- )
32
- }
33
-
34
- export default CurrencyNullDisplay