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.
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Playbook
4
4
  PREVIOUS_VERSION = "14.6.0"
5
- VERSION = "14.6.0.pre.alpha.PBNTR5554223"
5
+ VERSION = "14.6.0.pre.alpha.PLAY1485selectablecardoverflowoutlinebug4222"
6
6
  end
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.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: 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-DTjG8w_B.js
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,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