playbook_ui 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.
- checksums.yaml +4 -4
- data/app/pb_kits/playbook/pb_card/_card_mixin.scss +1 -2
- data/app/pb_kits/playbook/pb_currency/_currency.tsx +6 -16
- data/app/pb_kits/playbook/pb_currency/currency.rb +11 -38
- data/app/pb_kits/playbook/pb_currency/currency.test.js +0 -35
- 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_selectable_card/_selectable_card.scss +67 -1
- data/app/pb_kits/playbook/pb_selectable_card/_selectable_card.tsx +1 -0
- data/app/pb_kits/playbook/pb_selectable_card/selectable_card.html.erb +1 -1
- data/app/pb_kits/playbook/pb_selectable_card/selectable_card.rb +5 -1
- data/dist/chunks/_weekday_stacked-DdxTfWNt.js +45 -0
- data/dist/chunks/vendor.js +1 -1
- data/dist/playbook-doc.js +1 -1
- data/dist/playbook.css +1 -1
- data/lib/playbook/version.rb +1 -1
- metadata +3 -5
- 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
- data/dist/chunks/_weekday_stacked-DTjG8w_B.js +0 -45
data/lib/playbook/version.rb
CHANGED
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.
|
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-
|
12
|
+
date: 2024-10-23 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: actionpack
|
@@ -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
|
@@ -3102,7 +3100,7 @@ files:
|
|
3102
3100
|
- app/pb_kits/playbook/utilities/text.ts
|
3103
3101
|
- app/pb_kits/playbook/utilities/validEmojiChecker.ts
|
3104
3102
|
- dist/chunks/_typeahead-BV_n6U5W.js
|
3105
|
-
- dist/chunks/_weekday_stacked-
|
3103
|
+
- dist/chunks/_weekday_stacked-DdxTfWNt.js
|
3106
3104
|
- dist/chunks/lazysizes-B7xYodB-.js
|
3107
3105
|
- dist/chunks/lib-D-mTv-kp.js
|
3108
3106
|
- dist/chunks/pb_form_validation-BkWGwJsl.js
|
@@ -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
|