@sikka/hawa 0.19.19-next → 0.19.20-next
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.
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -11051,7 +11051,7 @@ var PricingPlans = ({
|
|
|
11051
11051
|
Radio,
|
|
11052
11052
|
{
|
|
11053
11053
|
design: "tabs",
|
|
11054
|
-
defaultValue: props.currentCycle,
|
|
11054
|
+
defaultValue: props.currentCycle.value,
|
|
11055
11055
|
options: props.billingCycles,
|
|
11056
11056
|
onChangeTab: (e) => {
|
|
11057
11057
|
if (props.onCycleChange) {
|
|
@@ -11063,7 +11063,7 @@ var PricingPlans = ({
|
|
|
11063
11063
|
Radio,
|
|
11064
11064
|
{
|
|
11065
11065
|
design: "tabs",
|
|
11066
|
-
defaultValue: props.currentCurrency,
|
|
11066
|
+
defaultValue: props.currentCurrency.value,
|
|
11067
11067
|
options: props.currencies,
|
|
11068
11068
|
onChangeTab: (e) => {
|
|
11069
11069
|
if (props.onCurrencyChange) {
|
package/dist/index.mjs
CHANGED
|
@@ -10835,7 +10835,7 @@ var PricingPlans = ({
|
|
|
10835
10835
|
Radio,
|
|
10836
10836
|
{
|
|
10837
10837
|
design: "tabs",
|
|
10838
|
-
defaultValue: props.currentCycle,
|
|
10838
|
+
defaultValue: props.currentCycle.value,
|
|
10839
10839
|
options: props.billingCycles,
|
|
10840
10840
|
onChangeTab: (e) => {
|
|
10841
10841
|
if (props.onCycleChange) {
|
|
@@ -10847,7 +10847,7 @@ var PricingPlans = ({
|
|
|
10847
10847
|
Radio,
|
|
10848
10848
|
{
|
|
10849
10849
|
design: "tabs",
|
|
10850
|
-
defaultValue: props.currentCurrency,
|
|
10850
|
+
defaultValue: props.currentCurrency.value,
|
|
10851
10851
|
options: props.currencies,
|
|
10852
10852
|
onChangeTab: (e) => {
|
|
10853
10853
|
if (props.onCurrencyChange) {
|