@ultraviolet/plus 0.22.2 → 0.22.3
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/components/EstimateCost/Components/Item.cjs +12 -10
- package/dist/components/EstimateCost/Components/Item.d.ts +2 -1
- package/dist/components/EstimateCost/Components/Item.js +12 -10
- package/dist/components/EstimateCost/EstimateCost.d.ts +3 -1
- package/dist/components/Navigation/components/Item.cjs +19 -21
- package/dist/components/Navigation/components/Item.js +19 -21
- package/package.json +3 -3
|
@@ -9,7 +9,7 @@ declare const EstimateCost: {
|
|
|
9
9
|
} & {
|
|
10
10
|
isActive?: boolean;
|
|
11
11
|
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
12
|
-
Item: import("react").MemoExoticComponent<({ discount, priceText, discountText, label, tooltipInfo, subLabel, price: basePrice, monthlyPrice, unit: baseUnit, amount: currentAmount, onAmountChange, amountFree, maxAmount, longFractionDigits, noIteration, noIterationText, noBorder, noPrice, isDefined, children, isFirstElement, isLastElement, isPrimaryBackground, productsCallback, iteration: receivedIteration, shouldBeHidden, hideFromOverlay, textNotDefined, animated, tabulation, labelTextVariant, labelTextProminence, notice, }: {
|
|
12
|
+
Item: import("react").MemoExoticComponent<({ discount, priceText, discountText, label, tooltipInfo, subLabel, price: basePrice, monthlyPrice, unit: baseUnit, amount: currentAmount, onAmountChange, amountFree, maxAmount, longFractionDigits, noIteration, noIterationText, noBorder, noPrice, isDefined, children, isFirstElement, isLastElement, isPrimaryBackground, productsCallback, iteration: receivedIteration, shouldBeHidden, hideFromOverlay, textNotDefined, animated, tabulation, labelTextVariant, labelTextProminence, notice, strikeThrough, }: {
|
|
13
13
|
amount?: number;
|
|
14
14
|
amountFree?: number;
|
|
15
15
|
animated?: boolean;
|
|
@@ -46,6 +46,7 @@ declare const EstimateCost: {
|
|
|
46
46
|
textNotDefined?: string;
|
|
47
47
|
tooltipInfo?: string;
|
|
48
48
|
unit?: "mb" | "gb" | "tb" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | (string & NonNullable<unknown>);
|
|
49
|
+
strikeThrough?: boolean;
|
|
49
50
|
}) => import("@emotion/react/jsx-runtime").JSX.Element>;
|
|
50
51
|
NumberInput: ({ amount, minValue, maxValue, getAmountValue, itemCallback, controls, }: {
|
|
51
52
|
amount?: number;
|
|
@@ -129,6 +130,7 @@ declare const EstimateCost: {
|
|
|
129
130
|
textNotDefined?: string;
|
|
130
131
|
tooltipInfo?: string;
|
|
131
132
|
unit?: "mb" | "gb" | "tb" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | (string & NonNullable<unknown>);
|
|
133
|
+
strikeThrough?: boolean;
|
|
132
134
|
}, "hideFromOverlay">) => import("@emotion/react/jsx-runtime").JSX.Element>;
|
|
133
135
|
Zone: import("react").MemoExoticComponent<({ label, image, shouldBeHidden, priceText, animated, isFirstElement, isLastElement, productsCallback, iteration, discount, noBorder, noPrice, }: {
|
|
134
136
|
shouldBeHidden?: boolean;
|