@nuskin/react-loyalty-elements 1.1.0-dev-sea.1 → 1.1.0-dev-sea.2

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.
Files changed (40) hide show
  1. package/dist/CircularProgressBar/ApproximateMonthlyAmount.d.ts +4 -1
  2. package/dist/CircularProgressBar/AvailableVouchers.d.ts +4 -1
  3. package/dist/CircularProgressBar/LoyaltyRewardsHeader.d.ts +4 -1
  4. package/dist/CircularProgressBar/RadialSeparator.d.ts +3 -0
  5. package/dist/CircularProgressBar/RewardProgressBar.d.ts +1 -0
  6. package/dist/CircularProgressBar/RewardSubscriptionMonthDescription.d.ts +1 -0
  7. package/dist/CircularProgressBar/RewardSubscriptionTotal.d.ts +1 -0
  8. package/dist/CircularProgressBar/SubscriptionReward.d.ts +4 -1
  9. package/dist/CircularProgressBar/SubscriptionRewardMobile.d.ts +4 -1
  10. package/dist/CircularProgressBar/index.js +1 -1
  11. package/dist/CircularProgressBar/index.js.map +1 -1
  12. package/dist/CircularProgressBar/index.mjs +1 -1
  13. package/dist/CircularProgressBar/index.mjs.map +1 -1
  14. package/dist/CircularProgressBar/logic/getRewardTrackingText.d.ts +12 -0
  15. package/dist/CircularProgressBar/types.d.ts +8 -0
  16. package/dist/GiftProgressBar/GiftProgressBar.d.ts +4 -1
  17. package/dist/GiftProgressBar/GiftProgressBarMobile.d.ts +4 -1
  18. package/dist/GiftProgressBar/GiftProgressBarMonthDescription.d.ts +4 -1
  19. package/dist/GiftProgressBar/GiftReward.d.ts +4 -1
  20. package/dist/GiftProgressBar/GiftWheelCenterContent.d.ts +4 -1
  21. package/dist/GiftProgressBar/index.d.ts +1 -1
  22. package/dist/GiftProgressBar/index.js +1 -1
  23. package/dist/GiftProgressBar/index.js.map +1 -1
  24. package/dist/GiftProgressBar/index.mjs +1 -1
  25. package/dist/GiftProgressBar/index.mjs.map +1 -1
  26. package/dist/GiftProgressBar/logic/readGiftProperties.d.ts +3 -3
  27. package/dist/GiftProgressBar/types.d.ts +3 -3
  28. package/dist/GiftRoadmap/index.mjs +1 -1
  29. package/dist/GiftRoadmap/index.mjs.map +1 -1
  30. package/dist/chunk-3RJWIGAN.mjs +1 -0
  31. package/dist/chunk-3RJWIGAN.mjs.map +1 -0
  32. package/dist/chunk-NVD2PQ2C.mjs +1 -0
  33. package/dist/chunk-NVD2PQ2C.mjs.map +1 -0
  34. package/dist/{chunk-M6F5BD5Q.mjs → chunk-UHWCPMTT.mjs} +1 -1
  35. package/dist/{chunk-M6F5BD5Q.mjs.map → chunk-UHWCPMTT.mjs.map} +1 -1
  36. package/package.json +1 -1
  37. package/dist/chunk-THTK5CGU.mjs +0 -1
  38. package/dist/chunk-THTK5CGU.mjs.map +0 -1
  39. package/dist/chunk-TURO34CN.mjs +0 -1
  40. package/dist/chunk-TURO34CN.mjs.map +0 -1
@@ -8,7 +8,10 @@ type ApproximateMonthlyAmountProps = Readonly<{
8
8
  * RewardSubscriptionTotal (voucher-only card) and LoyaltyRewardsHeader (combined card) so the two
9
9
  * places that show this figure can't drift apart.
10
10
  */
11
- declare const ApproximateMonthlyAmount: ({ approximateMonthlyText, amountShowText, estimateDisclaimer, }: ApproximateMonthlyAmountProps) => import("react/jsx-runtime").JSX.Element;
11
+ declare const ApproximateMonthlyAmount: {
12
+ ({ approximateMonthlyText, amountShowText, estimateDisclaimer, }: ApproximateMonthlyAmountProps): import("react/jsx-runtime").JSX.Element;
13
+ displayName: string;
14
+ };
12
15
  export default ApproximateMonthlyAmount;
13
16
  export { ApproximateMonthlyAmount };
14
17
  export type { ApproximateMonthlyAmountProps };
@@ -3,6 +3,9 @@ type AvailableVouchersProps = Readonly<{
3
3
  loyaltyData?: LoyaltyProps;
4
4
  translationConfig?: Pick<TranslationConfig, 'voucherAvailable' | 'voucherExpires'>;
5
5
  }>;
6
- declare const AvailableVouchers: ({ loyaltyData, translationConfig }: Readonly<AvailableVouchersProps>) => import("react/jsx-runtime").JSX.Element | null;
6
+ declare const AvailableVouchers: {
7
+ ({ loyaltyData, translationConfig }: Readonly<AvailableVouchersProps>): import("react/jsx-runtime").JSX.Element | null;
8
+ displayName: string;
9
+ };
7
10
  export default AvailableVouchers;
8
11
  export { AvailableVouchers };
@@ -5,6 +5,9 @@ import { LoyaltyRewardsHeaderProps } from './types';
5
5
  * calculation is repeated here. The threshold warnings stay per-widget because the voucher and the
6
6
  * gift qualify at different amounts.
7
7
  */
8
- declare const LoyaltyRewardsHeader: (props: LoyaltyRewardsHeaderProps) => import("react/jsx-runtime").JSX.Element;
8
+ declare const LoyaltyRewardsHeader: {
9
+ (props: LoyaltyRewardsHeaderProps): import("react/jsx-runtime").JSX.Element;
10
+ displayName: string;
11
+ };
9
12
  export default LoyaltyRewardsHeader;
10
13
  export { LoyaltyRewardsHeader };
@@ -1,4 +1,7 @@
1
1
  declare function RadialSeparators(props: {
2
2
  count: number;
3
3
  }): import("react/jsx-runtime").JSX.Element[];
4
+ declare namespace RadialSeparators {
5
+ var displayName: string;
6
+ }
4
7
  export default RadialSeparators;
@@ -1,6 +1,7 @@
1
1
  import React from 'react';
2
2
  import { RewardProgressBarProps } from './types';
3
3
  declare class RewardProgressBar extends React.Component<RewardProgressBarProps> {
4
+ static readonly displayName = "RewardProgressBar";
4
5
  render(): import("react/jsx-runtime").JSX.Element;
5
6
  }
6
7
  export default RewardProgressBar;
@@ -1,6 +1,7 @@
1
1
  import React from 'react';
2
2
  import { RewardSubscriptionMonthDescriptionProps } from './types';
3
3
  declare class RewardSubscriptionMonthDescription extends React.Component<RewardSubscriptionMonthDescriptionProps> {
4
+ static readonly displayName = "RewardSubscriptionMonthDescription";
4
5
  render(): import("react/jsx-runtime").JSX.Element;
5
6
  }
6
7
  export default RewardSubscriptionMonthDescription;
@@ -1,6 +1,7 @@
1
1
  import React from 'react';
2
2
  import { RewardProgressBarProps } from './types';
3
3
  declare class RewardSubscriptionTotal extends React.Component<RewardProgressBarProps> {
4
+ static readonly displayName = "RewardSubscriptionTotal";
4
5
  render(): import("react/jsx-runtime").JSX.Element;
5
6
  }
6
7
  export default RewardSubscriptionTotal;
@@ -1,4 +1,7 @@
1
1
  import { RewardProgressBarProps } from './types';
2
- declare const SubscriptionReward: (props: RewardProgressBarProps) => import("react/jsx-runtime").JSX.Element;
2
+ declare const SubscriptionReward: {
3
+ (props: RewardProgressBarProps): import("react/jsx-runtime").JSX.Element;
4
+ displayName: string;
5
+ };
3
6
  export default SubscriptionReward;
4
7
  export { SubscriptionReward };
@@ -1,4 +1,7 @@
1
1
  import { RewardProgressBarProps } from './types';
2
- declare const SubscriptionRewardMobile: (props: RewardProgressBarProps) => import("react/jsx-runtime").JSX.Element;
2
+ declare const SubscriptionRewardMobile: {
3
+ (props: RewardProgressBarProps): import("react/jsx-runtime").JSX.Element;
4
+ displayName: string;
5
+ };
3
6
  export default SubscriptionRewardMobile;
4
7
  export { SubscriptionRewardMobile };