@club-employes/utopia 4.109.0 → 4.111.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/atoms/SectionTitle/SectionTitle.d.ts +4 -0
- package/dist/components/atoms/SectionTitle/index.d.ts +1 -0
- package/dist/components/atoms/SectionTitle/types.d.ts +5 -0
- package/dist/components/atoms/Stepper/Stepper.d.ts +8 -0
- package/dist/components/atoms/Stepper/index.d.ts +1 -0
- package/dist/components/atoms/Stepper/types.d.ts +26 -0
- package/dist/components/atoms/index.d.ts +2 -0
- package/dist/components/molecules/FilterLocation/FilterLocation.d.ts +1 -0
- package/dist/components/molecules/FilterLocation/types.d.ts +1 -0
- package/dist/composables/useGeolocation.d.ts +1 -1
- package/dist/icons-list.json +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +6020 -5917
- package/dist/utopia.css +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { SectionTitleProps } from './types';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
+
declare const _default: DefineComponent<SectionTitleProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SectionTitleProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
4
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as SectionTitle } from './SectionTitle';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { StepperProps, Step } from './types';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
+
declare const _default: DefineComponent<StepperProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<StepperProps> & Readonly<{}>, {
|
|
4
|
+
variant: "default" | "bis" | "compact";
|
|
5
|
+
steps: Step[];
|
|
6
|
+
orientation: "horizontal" | "vertical";
|
|
7
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
8
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as Stepper } from './Stepper';
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export interface Step {
|
|
2
|
+
id: string | number;
|
|
3
|
+
label: string;
|
|
4
|
+
description?: string;
|
|
5
|
+
status?: 'pending' | 'current' | 'completed';
|
|
6
|
+
}
|
|
7
|
+
export interface StepperProps {
|
|
8
|
+
/**
|
|
9
|
+
* List of steps to display
|
|
10
|
+
*/
|
|
11
|
+
steps: Step[];
|
|
12
|
+
/**
|
|
13
|
+
* Index (0-based) or ID of the current active step
|
|
14
|
+
*/
|
|
15
|
+
currentStep?: number | string;
|
|
16
|
+
/**
|
|
17
|
+
* Visual variant of the stepper
|
|
18
|
+
* @default 'default'
|
|
19
|
+
*/
|
|
20
|
+
variant?: 'default' | 'bis' | 'compact';
|
|
21
|
+
/**
|
|
22
|
+
* Orientation of the stepper (mainly for mobile or specific layouts)
|
|
23
|
+
* @default 'horizontal'
|
|
24
|
+
*/
|
|
25
|
+
orientation?: 'horizontal' | 'vertical';
|
|
26
|
+
}
|
|
@@ -15,6 +15,8 @@ export { RadioBox, type RadioBoxProps } from './RadioBox';
|
|
|
15
15
|
export { FilterButton, type FilterButtonProps } from './FilterButton';
|
|
16
16
|
export { TextArea, type TextAreaProps } from './TextArea';
|
|
17
17
|
export { Tips, type TipsProps } from './Tips';
|
|
18
|
+
export { SectionTitle, type SectionTitleProps } from './SectionTitle';
|
|
19
|
+
export { Stepper, type StepperProps } from './Stepper';
|
|
18
20
|
export type BadgeVariant = 'default' | 'success' | 'warning' | 'danger';
|
|
19
21
|
export type BadgeSize = 'small' | 'medium';
|
|
20
22
|
export type ButtonVariant = 'primary' | 'secondary' | 'outline' | 'ghost' | 'danger';
|
|
@@ -9,6 +9,7 @@ declare const _default: DefineComponent<FilterLocationProps, {}, {}, {}, {}, Com
|
|
|
9
9
|
orLabel: string;
|
|
10
10
|
nearMeLabel: string;
|
|
11
11
|
geolocDisabledLabel: string;
|
|
12
|
+
geolocationEnabled: boolean;
|
|
12
13
|
maxDistance: number;
|
|
13
14
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
14
15
|
export default _default;
|
package/dist/icons-list.json
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -16,6 +16,8 @@ export type { LogoProps } from './components/atoms/Logo/types';
|
|
|
16
16
|
export type { SkeletonAvatarProps, SkeletonProps, SkeletonTextProps } from './components/atoms/Skeleton/types';
|
|
17
17
|
export type { SwitchProps } from './components/atoms/Switch/types';
|
|
18
18
|
export type { ProgressBarProps } from './components/atoms/ProgressBar/types';
|
|
19
|
+
export type { StepperProps } from './components/atoms/Stepper/types';
|
|
20
|
+
export type { SectionTitleProps } from './components/atoms/SectionTitle/types';
|
|
19
21
|
export type { TipsProps } from './components/atoms/Tips/types';
|
|
20
22
|
export type { TextAreaProps } from './components/atoms/TextArea/types';
|
|
21
23
|
export type { RadioBoxProps } from './components/atoms/RadioBox/types';
|