@club-employes/utopia 4.112.0 → 4.114.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/DropFilter/DropFilter.d.ts +3 -1
- package/dist/components/molecules/FilterLocation/FilterLocation.d.ts +2 -0
- package/dist/components/molecules/FilterSelect/FilterSelect.d.ts +2 -0
- package/dist/components/molecules/Modal/Modal.d.ts +1 -0
- package/dist/components/molecules/Modal/types.d.ts +1 -0
- package/dist/components/organisms/FilterPrice/FilterPrice.d.ts +2 -0
- package/dist/icons-list.json +1 -1
- package/dist/index.js +772 -765
- package/dist/utopia.css +1 -1
- package/package.json +1 -1
|
@@ -3,7 +3,9 @@ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOp
|
|
|
3
3
|
declare function __VLS_template(): {
|
|
4
4
|
attrs: Partial<{}>;
|
|
5
5
|
slots: {
|
|
6
|
-
default?(_: {
|
|
6
|
+
default?(_: {
|
|
7
|
+
toggleModal: (value?: boolean) => Promise<void>;
|
|
8
|
+
}): any;
|
|
7
9
|
};
|
|
8
10
|
refs: {
|
|
9
11
|
triggerRef: HTMLDivElement;
|
|
@@ -2,8 +2,10 @@ import { FilterLocationProps, FilterLocationValue } from './types';
|
|
|
2
2
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
3
|
declare const _default: DefineComponent<FilterLocationProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4
4
|
"update:modelValue": (value: FilterLocationValue) => any;
|
|
5
|
+
closeModal: () => any;
|
|
5
6
|
}, string, PublicProps, Readonly<FilterLocationProps> & Readonly<{
|
|
6
7
|
"onUpdate:modelValue"?: ((value: FilterLocationValue) => any) | undefined;
|
|
8
|
+
onCloseModal?: (() => any) | undefined;
|
|
7
9
|
}>, {
|
|
8
10
|
departmentsLabel: string;
|
|
9
11
|
orLabel: string;
|
|
@@ -2,8 +2,10 @@ import { FilterSelectOption, FilterSelectProps } from './types';
|
|
|
2
2
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
3
|
declare const _default: DefineComponent<FilterSelectProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4
4
|
"update:modelValue": (value: FilterSelectOption[]) => any;
|
|
5
|
+
closeModal: () => any;
|
|
5
6
|
}, string, PublicProps, Readonly<FilterSelectProps> & Readonly<{
|
|
6
7
|
"onUpdate:modelValue"?: ((value: FilterSelectOption[]) => any) | undefined;
|
|
8
|
+
onCloseModal?: (() => any) | undefined;
|
|
7
9
|
}>, {
|
|
8
10
|
size: "xs" | "sm" | "md" | "lg";
|
|
9
11
|
multiple: boolean;
|
|
@@ -108,6 +108,7 @@ declare const __VLS_component: DefineComponent<ModalProps, {}, {}, {}, {}, Compo
|
|
|
108
108
|
focusTrap: boolean;
|
|
109
109
|
blurBackdrop: boolean;
|
|
110
110
|
mobileBehavior: ModalMobileBehavior;
|
|
111
|
+
forceVisible: boolean;
|
|
111
112
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
112
113
|
panelRef: HTMLDivElement;
|
|
113
114
|
closeButtonRef: ({
|
|
@@ -19,6 +19,7 @@ export interface ModalProps {
|
|
|
19
19
|
animation?: ModalAnimation;
|
|
20
20
|
/** Comportement sur mobile : 'bottom-sheet' (par défaut) ou 'center' */
|
|
21
21
|
mobileBehavior?: ModalMobileBehavior;
|
|
22
|
+
forceVisible?: boolean;
|
|
22
23
|
onOpenChange?: (open: boolean, reason: ModalChangeReason) => void;
|
|
23
24
|
}
|
|
24
25
|
export interface ModalOpenChangePayload {
|
|
@@ -3,8 +3,10 @@ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOp
|
|
|
3
3
|
import { Currency } from '../..';
|
|
4
4
|
declare const _default: DefineComponent<FilterPriceProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
5
5
|
"update:modelValue": (value: [number, number]) => any;
|
|
6
|
+
closeModal: () => any;
|
|
6
7
|
}, string, PublicProps, Readonly<FilterPriceProps> & Readonly<{
|
|
7
8
|
"onUpdate:modelValue"?: ((value: [number, number]) => any) | undefined;
|
|
9
|
+
onCloseModal?: (() => any) | undefined;
|
|
8
10
|
}>, {
|
|
9
11
|
min: number;
|
|
10
12
|
currency: Currency;
|
package/dist/icons-list.json
CHANGED