@club-employes/utopia 4.428.0 → 4.430.0
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/molecules/CartStepperRing/CartStepperRing.d.ts +13 -0
- package/dist/components/molecules/CartStepperRing/__tests__/CartStepperRing.spec.d.ts +1 -0
- package/dist/components/molecules/CartStepperRing/index.d.ts +2 -0
- package/dist/components/molecules/CartStepperRing/types.d.ts +19 -0
- package/dist/components/molecules/index.d.ts +1 -0
- package/dist/i18n/messages/fr.d.ts +2 -0
- package/dist/index.js +1186 -1083
- package/dist/utopia.css +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { CartStepperRingProps } from './types';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
+
declare const _default: DefineComponent<CartStepperRingProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4
|
+
"previous-click": () => any;
|
|
5
|
+
}, string, PublicProps, Readonly<CartStepperRingProps> & Readonly<{
|
|
6
|
+
"onPrevious-click"?: (() => any) | undefined;
|
|
7
|
+
}>, {
|
|
8
|
+
stepLabel: string;
|
|
9
|
+
returnHomeLabel: string;
|
|
10
|
+
nextLabel: string;
|
|
11
|
+
lastStepLabel: string;
|
|
12
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
13
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { CartStepperStep } from '../CartStepper/types';
|
|
2
|
+
/**
|
|
3
|
+
* CartStepperRing — variante mobile compacte du CartStepper : une seule
|
|
4
|
+
* rangée [bouton retour · anneau de progression avec l'icône de l'étape ·
|
|
5
|
+
* titre + « Étape n/N · Ensuite : … »]. Même contrat de données que
|
|
6
|
+
* CartStepper (steps/currentStepKey/previous-click) pour un swap trivial.
|
|
7
|
+
*/
|
|
8
|
+
export interface CartStepperRingProps {
|
|
9
|
+
steps: CartStepperStep[];
|
|
10
|
+
currentStepKey: string;
|
|
11
|
+
/** Surcharge du « Étape » de la ligne méta (défaut : i18n interne). */
|
|
12
|
+
stepLabel?: string;
|
|
13
|
+
/** Surcharge du « Ensuite : » (défaut : i18n interne). */
|
|
14
|
+
nextLabel?: string;
|
|
15
|
+
/** Surcharge du « Dernière étape » (défaut : i18n interne). */
|
|
16
|
+
lastStepLabel?: string;
|
|
17
|
+
/** aria-label du bouton retour (défaut : returnHomeLabel i18n interne). */
|
|
18
|
+
returnHomeLabel?: string;
|
|
19
|
+
}
|
|
@@ -63,6 +63,7 @@ export { TromboItem, TromboItemEmptyState, type TromboItemProps } from './Trombo
|
|
|
63
63
|
export { CountryDropDown, countriesToDropDownOptions, countryDisplayName, countryLabelForCode, countryToDropDownOption, filterCountriesByCodes, orderedCountriesForPicker, type CountryDropDownProps, type CountryDropDownPassthroughProps, type CountryDropDownBaseProps } from './CountryDropDown';
|
|
64
64
|
export { GrantSelect, GrantSelectTree, type GrantSelectItemProps } from './GrantSelect';
|
|
65
65
|
export { CartStepper, type CartStepperProps, type CartStepperStep } from './CartStepper';
|
|
66
|
+
export { CartStepperRing, type CartStepperRingProps } from './CartStepperRing';
|
|
66
67
|
export { CartPreviewItem, type CartPreviewItemProps } from './CartPreviewItem';
|
|
67
68
|
export { DateRange, type DateRangeProps, type DateRangeValue, type DateRangeTrigger } from './DateRange';
|
|
68
69
|
export { DeliveryMethodCard, type DeliveryMethodCardProps } from './DeliveryMethodCard';
|