@club-employes/utopia 4.200.0 → 4.201.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.
@@ -1,4 +1,6 @@
1
1
  import { SectionTitleProps } from './types';
2
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>;
3
+ declare const _default: DefineComponent<SectionTitleProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SectionTitleProps> & Readonly<{}>, {
4
+ icon3dSize: number;
5
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
4
6
  export default _default;
@@ -1,5 +1,8 @@
1
+ import { Icon3DName } from '../Icon3D/types';
1
2
  export interface SectionTitleProps {
2
3
  title: string;
3
4
  image?: string;
5
+ icon3d?: Icon3DName;
6
+ icon3dSize?: number;
4
7
  intro?: string;
5
8
  }
@@ -0,0 +1,6 @@
1
+ import { WelcomeUserProps } from './types';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare const _default: DefineComponent<WelcomeUserProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<WelcomeUserProps> & Readonly<{}>, {
4
+ variant: "default" | "primary" | "secondary";
5
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
6
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as WelcomeUser } from './WelcomeUser';
@@ -0,0 +1,6 @@
1
+ export interface WelcomeUserProps {
2
+ name: string;
3
+ message: string;
4
+ variant?: 'default' | 'primary' | 'secondary';
5
+ disabled?: boolean;
6
+ }
@@ -26,5 +26,7 @@ export type IconColor = 'primary' | 'secondary' | 'success' | 'warning' | 'dange
26
26
  export type Currency = '€' | '£';
27
27
  export { FavoriteToggle, type FavoriteToggleProps } from './FavoriteToggle';
28
28
  export { CopyCode, type CopyCodeProps } from './CopyCode';
29
+ export { WelcomeUser } from './WelcomeUser';
30
+ export type { WelcomeUserProps } from './WelcomeUser';
29
31
  export { Icon3D } from './Icon3D';
30
32
  export type { Icon3DName, Icon3DProps, Icon3DResolution } from './Icon3D';
@@ -0,0 +1,10 @@
1
+ import { ContactBlocProps } from './types';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare const _default: DefineComponent<ContactBlocProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
4
+ "cta-click": (...args: any[]) => void;
5
+ }, string, PublicProps, Readonly<ContactBlocProps> & Readonly<{
6
+ "onCta-click"?: ((...args: any[]) => any) | undefined;
7
+ }>, {
8
+ variant: "default" | "primary" | "secondary";
9
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
10
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as ContactBloc } from './ContactBloc';
@@ -0,0 +1,10 @@
1
+ export interface ContactBlocProps {
2
+ title: string;
3
+ email?: string;
4
+ phone: string;
5
+ address: string;
6
+ ctaLabel?: string;
7
+ ctaIcon?: string;
8
+ ctaLink?: string;
9
+ variant?: 'default' | 'primary' | 'secondary';
10
+ }
@@ -23,6 +23,7 @@ declare const __VLS_component: DefineComponent<RadioCardProps, {}, {}, {}, {}, C
23
23
  disabled: boolean;
24
24
  modelValue: any;
25
25
  value: any;
26
+ icon3dSize: number;
26
27
  bigPicto: boolean;
27
28
  hideRadio: boolean;
28
29
  collapsible: boolean;
@@ -1,3 +1,4 @@
1
+ import { Icon3DName } from '../../atoms/Icon3D/types';
1
2
  export interface RadioCardProps {
2
3
  modelValue?: any;
3
4
  value?: any;
@@ -6,6 +7,8 @@ export interface RadioCardProps {
6
7
  description?: string;
7
8
  tag?: string;
8
9
  icon?: string;
10
+ icon3d?: Icon3DName;
11
+ icon3dSize?: number;
9
12
  disabled?: boolean;
10
13
  number?: string;
11
14
  bigPicto?: boolean;
@@ -40,5 +40,7 @@ export { RepeatableGroup } from './RepeatableGroup';
40
40
  export type { RepeatableGroupProps } from './RepeatableGroup';
41
41
  export { OptionSelect } from './OptionSelect';
42
42
  export type { OptionSelectProps } from './OptionSelect';
43
+ export { ContactBloc } from './ContactBloc';
44
+ export type { ContactBlocProps } from './ContactBloc';
43
45
  export { Toast, ToastService, ToastServiceKey, useToast } from './Toast';
44
46
  export type { ToastProps, ToastOptions, ToastItem, ToastAction, ToastPosition, ToastSize, ToastVariant, ToastServiceApi, ToastServiceOptions } from './Toast';
@@ -5,6 +5,7 @@ type __VLS_Props = {
5
5
  title: string;
6
6
  modelValue: boolean;
7
7
  items: MenuSectionItem[];
8
+ icon?: string;
8
9
  activeLabel?: string;
9
10
  settingsLabel?: string;
10
11
  deleteLabel?: string;
@@ -77,6 +78,7 @@ declare const _default: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOp
77
78
  order: Id[];
78
79
  }) => any) | undefined;
79
80
  }>, {
81
+ icon: string;
80
82
  activeLabel: string;
81
83
  settingsLabel: string;
82
84
  deleteLabel: string;
package/dist/index.d.ts CHANGED
@@ -25,6 +25,7 @@ export type { SwitchProps } from './components/atoms/Switch/types';
25
25
  export type { TextAreaProps } from './components/atoms/TextArea/types';
26
26
  export type { TipsProps } from './components/atoms/Tips/types';
27
27
  export type { CopyCodeProps } from './components/atoms/CopyCode/types';
28
+ export type { WelcomeUserProps } from './components/atoms/WelcomeUser/types';
28
29
  export type { Icon3DProps } from './components/atoms/Icon3D/types';
29
30
  export type { BottomSheetChangeReason, BottomSheetProps } from './components/molecules/BottomSheet/types';
30
31
  export type { CounterButtonsProps } from './components/molecules/CounterButtons/types';
@@ -50,6 +51,7 @@ export type { PriceTagProps } from './components/molecules/PriceTag/types';
50
51
  export type { RadioCardProps } from './components/molecules/RadioCard/types';
51
52
  export type { TooltipProps } from './components/molecules/Tooltip/types';
52
53
  export type { ProductImageType, ProductImageProps } from './components/molecules/ProductImage/types';
54
+ export type { ContactBlocProps } from './components/molecules/ContactBloc/types';
53
55
  export type { ToastProps, ToastOptions, ToastItem } from './components/molecules/Toast/types';
54
56
  export { ToastService, ToastServiceKey, useToast } from './components/molecules/Toast';
55
57
  export type { ToastServiceApi, ToastServiceOptions } from './components/molecules/Toast';