@nuskin/react-loyalty-elements 1.0.7-react-import.1 → 1.0.8-nge2-2523.1
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/CircularProgressBar/CircularProgressBar.styled.d.ts +15 -0
- package/dist/CircularProgressBar/RewardProgressBar.d.ts +0 -1
- package/dist/CircularProgressBar/RewardSubscriptionMonthDescription.d.ts +0 -1
- package/dist/CircularProgressBar/RewardSubscriptionTotal.d.ts +0 -1
- package/dist/CircularProgressBar/index.js +1 -1
- package/dist/CircularProgressBar/index.js.map +1 -1
- package/dist/CircularProgressBar/index.mjs +1 -11
- package/dist/CircularProgressBar/index.mjs.map +1 -1
- package/dist/CircularProgressBar/logic/calculateMonthCompletionValues.d.ts +10 -2
- package/dist/CircularProgressBar/types.d.ts +65 -3
- package/dist/SubscriptionRewardBanner/index.js +12 -1
- package/dist/SubscriptionRewardBanner/index.js.map +1 -1
- package/dist/SubscriptionRewardBanner/index.mjs +1 -1
- package/dist/SubscriptionRewardBanner/index.mjs.map +1 -1
- package/dist/SubscriptionRewardModal/SubscriptionRewardModal.d.ts +1 -1
- package/dist/SubscriptionRewardModal/index.js +12 -1
- package/dist/SubscriptionRewardModal/index.js.map +1 -1
- package/dist/SubscriptionRewardModal/index.mjs +1 -1
- package/dist/SubscriptionRewardModal/index.mjs.map +1 -1
- package/dist/SubscriptionRewardModal/types.d.ts +1 -1
- package/dist/chunk-Z6ATMGBY.mjs +12 -0
- package/dist/chunk-Z6ATMGBY.mjs.map +1 -0
- package/package.json +1 -1
- package/dist/chunk-4FHSDUA7.mjs +0 -1
- package/dist/chunk-4FHSDUA7.mjs.map +0 -1
|
@@ -39,3 +39,18 @@ export declare const SeparatorInnerCard: import("@emotion/styled").StyledCompone
|
|
|
39
39
|
theme?: import("@emotion/react").Theme | undefined;
|
|
40
40
|
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
41
41
|
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
42
|
+
export declare const TooltipStyles: {
|
|
43
|
+
tooltip: {
|
|
44
|
+
sx: {
|
|
45
|
+
color: string;
|
|
46
|
+
backgroundColor: string;
|
|
47
|
+
fontFamily: string;
|
|
48
|
+
fontWeight: number;
|
|
49
|
+
fontSize: string;
|
|
50
|
+
lineHeight: string;
|
|
51
|
+
'& .MuiTooltip-arrow': {
|
|
52
|
+
color: string;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
};
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { RewardProgressBarProps } from './types';
|
|
3
3
|
declare class RewardProgressBar extends React.Component<RewardProgressBarProps> {
|
|
4
|
-
constructor(props: RewardProgressBarProps);
|
|
5
4
|
render(): import("react/jsx-runtime").JSX.Element;
|
|
6
5
|
}
|
|
7
6
|
export default RewardProgressBar;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { RewardSubscriptionMonthDescriptionProps } from './types';
|
|
3
3
|
declare class RewardSubscriptionMonthDescription extends React.Component<RewardSubscriptionMonthDescriptionProps> {
|
|
4
|
-
constructor(props: RewardSubscriptionMonthDescriptionProps);
|
|
5
4
|
render(): import("react/jsx-runtime").JSX.Element;
|
|
6
5
|
}
|
|
7
6
|
export default RewardSubscriptionMonthDescription;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { RewardProgressBarProps } from './types';
|
|
3
3
|
declare class RewardSubscriptionTotal extends React.Component<RewardProgressBarProps> {
|
|
4
|
-
constructor(props: RewardProgressBarProps);
|
|
5
4
|
render(): import("react/jsx-runtime").JSX.Element;
|
|
6
5
|
}
|
|
7
6
|
export default RewardSubscriptionTotal;
|