@club-employes/utopia 4.111.0 → 4.113.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/GrantUsersSelection/GrantUsersSelection.d.ts +12 -0
- package/dist/components/molecules/GrantUsersSelection/index.d.ts +1 -0
- package/dist/components/molecules/GrantUsersSelection/types.d.ts +7 -0
- package/dist/components/molecules/index.d.ts +3 -4
- package/dist/components/organisms/FilterPrice/FilterPrice.d.ts +2 -0
- package/dist/icons-list.json +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +5642 -5423
- 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;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { GrantUsersSelectionProps } from './types';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
+
declare const _default: DefineComponent<GrantUsersSelectionProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4
|
+
"update:modelValue": (value: string) => any;
|
|
5
|
+
}, string, PublicProps, Readonly<GrantUsersSelectionProps> & Readonly<{
|
|
6
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
7
|
+
}>, {
|
|
8
|
+
name: string;
|
|
9
|
+
disabled: boolean;
|
|
10
|
+
modelValue: string;
|
|
11
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
12
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as GrantUsersSelection } from './GrantUsersSelection';
|
|
@@ -23,10 +23,9 @@ export { Tab, Tabs } from './Tabs';
|
|
|
23
23
|
export type { TabProps, TabsProps } from './Tabs/types';
|
|
24
24
|
export { Tooltip } from './Tooltip';
|
|
25
25
|
export { FilterLocation, type FilterLocationProps } from './FilterLocation';
|
|
26
|
-
export { PageHeader } from './PageHeader';
|
|
27
|
-
export type { PageHeaderProps } from './PageHeader';
|
|
26
|
+
export { PageHeader, type PageHeaderProps } from './PageHeader';
|
|
28
27
|
export { RadioCard, type RadioCardProps } from './RadioCard';
|
|
29
28
|
export { PriceSummary, type PriceSummaryProps } from './PriceSummary';
|
|
30
|
-
export {
|
|
31
|
-
export type
|
|
29
|
+
export { GrantUsersSelection, type GrantUsersSelectionProps } from './GrantUsersSelection';
|
|
30
|
+
export { FooterAction, type FooterActionProps } from './FooterAction';
|
|
32
31
|
export { CounterButtons, type CounterButtonsProps } from './CounterButtons';
|
|
@@ -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
package/dist/index.d.ts
CHANGED
|
@@ -38,6 +38,7 @@ export { PageHeader } from './components/molecules/PageHeader';
|
|
|
38
38
|
export type { PageHeaderProps } from './components/molecules/PageHeader/types';
|
|
39
39
|
export type { RadioCardProps } from './components/molecules/RadioCard/types';
|
|
40
40
|
export type { PriceSummaryProps } from './components/molecules/PriceSummary/types';
|
|
41
|
+
export type { GrantUsersSelectionProps } from './components/molecules/GrantUsersSelection/types';
|
|
41
42
|
export type { FooterActionProps } from './components/molecules/FooterAction/types';
|
|
42
43
|
export type { CounterButtonsProps } from './components/molecules/CounterButtons/types';
|
|
43
44
|
export type { BreadcrumbsItem, BreadcrumbsProps } from './components/organisms/Breadcrumbs/types';
|