@ultraviolet/plus 0.6.12 → 0.6.13
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.ts
CHANGED
|
@@ -213,7 +213,7 @@ type EstimateProduct = BareEstimateProduct & {
|
|
|
213
213
|
};
|
|
214
214
|
|
|
215
215
|
declare const EstimateCost: {
|
|
216
|
-
({ description, alert, alertVariant, defaultTimeUnit, timeUnits, hideOverlay, disableOverlayLeft, disableOverlayRight, hideTimeUnit, hideTotal, discount, OverlayRight, OverlayLeft, isBeta, commitmentFees, commitmentFeesContent, monthlyFees, monthlyFeesLabel, monthlyFeesContent, overlayUnit, children, locales, numberLocales, currency, }: EstimateCostProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
216
|
+
({ description, alert, alertTitle, alertVariant, defaultTimeUnit, timeUnits, hideOverlay, disableOverlayLeft, disableOverlayRight, hideTimeUnit, hideTotal, discount, OverlayRight, OverlayLeft, isBeta, commitmentFees, commitmentFeesContent, monthlyFees, monthlyFeesLabel, monthlyFeesContent, overlayUnit, children, locales, numberLocales, currency, }: EstimateCostProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
217
217
|
LineThrough: _emotion_styled.StyledComponent<{
|
|
218
218
|
theme?: _emotion_react.Theme | undefined;
|
|
219
219
|
as?: react.ElementType<any, keyof react.JSX.IntrinsicElements> | undefined;
|
|
@@ -24,6 +24,7 @@ const DEFAULT_UNIT_LIST = ['hours', 'days', 'months'];
|
|
|
24
24
|
const EstimateCost = ({
|
|
25
25
|
description,
|
|
26
26
|
alert,
|
|
27
|
+
alertTitle,
|
|
27
28
|
alertVariant = 'warning',
|
|
28
29
|
defaultTimeUnit = 'hours',
|
|
29
30
|
timeUnits = DEFAULT_UNIT_LIST,
|
|
@@ -53,6 +54,7 @@ const EstimateCost = ({
|
|
|
53
54
|
children: jsx(EstimateCostContent, {
|
|
54
55
|
description: description,
|
|
55
56
|
alert: alert,
|
|
57
|
+
alertTitle: alertTitle,
|
|
56
58
|
alertVariant: alertVariant,
|
|
57
59
|
defaultTimeUnit: defaultTimeUnit,
|
|
58
60
|
timeUnits: timeUnits,
|