playbook_ui_docs 14.6.0.pre.alpha.PBNTR5554223 → 14.6.0.pre.alpha.PLAY1485selectablecardoverflowoutlinebug4222

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.PBNTR5554223
4
+ version: 14.6.0.pre.alpha.PLAY1485selectablecardoverflowoutlinebug4222
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: 2024-10-24 00:00:00.000000000 Z
12
+ date: 2024-10-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: playbook_ui
@@ -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
@@ -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