@club-employes/utopia 4.110.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.
@@ -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,5 @@
1
+ export interface SectionTitleProps {
2
+ title: string;
3
+ image?: string;
4
+ intro?: string;
5
+ }
@@ -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';
@@ -1,5 +1,5 @@
1
1
  {
2
- "generated": "2026-01-26T11:15:39.871Z",
2
+ "generated": "2026-01-26T14:45:01.352Z",
3
3
  "count": 1239,
4
4
  "icons": [
5
5
  "Accessibility",
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';