@club-employes/utopia 4.96.0 → 4.97.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/README.md +3 -3
- package/dist/components/atoms/Checkbox/Checkbox.d.ts +1 -0
- package/dist/components/atoms/Checkbox/index.d.ts +1 -0
- package/dist/components/atoms/Checkbox/types.d.ts +1 -0
- package/dist/components/atoms/FilterButton/FilterButton.d.ts +13 -0
- package/dist/components/atoms/FilterButton/index.d.ts +2 -0
- package/dist/components/atoms/FilterButton/types.d.ts +8 -0
- package/dist/components/atoms/InputText/index.d.ts +1 -0
- package/dist/components/atoms/ProgressBar/index.d.ts +1 -0
- package/dist/components/atoms/RadioBox/index.d.ts +1 -0
- package/dist/components/atoms/index.d.ts +9 -13
- package/dist/components/molecules/DropDown/DropDown.d.ts +1 -1
- package/dist/components/molecules/FilterSelect/types.d.ts +1 -0
- package/dist/components/molecules/InputPhone/InputPhone.d.ts +1 -1
- package/dist/components/molecules/Modal/Modal.d.ts +1 -0
- package/dist/components/molecules/PriceSummary/PriceSummary.d.ts +9 -0
- package/dist/components/molecules/PriceSummary/index.d.ts +2 -0
- package/dist/components/molecules/PriceSummary/types.d.ts +9 -0
- package/dist/components/molecules/RadioCard/index.d.ts +1 -0
- package/dist/components/molecules/index.d.ts +2 -2
- package/dist/components/organisms/DropFile/DropFile.d.ts +2 -1
- package/dist/components/organisms/FilterGroup/FilterGroup.d.ts +1 -1
- package/dist/components/organisms/FilterGroup/types.d.ts +1 -0
- package/dist/icons-list.json +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +6941 -6660
- package/dist/utopia.css +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -274,9 +274,9 @@ Components are mobile-first and responsive by default:
|
|
|
274
274
|
```vue
|
|
275
275
|
<template>
|
|
276
276
|
<Button
|
|
277
|
-
size="small"
|
|
278
|
-
|
|
279
|
-
|
|
277
|
+
size="small" <!-- Mobile -->
|
|
278
|
+
size-md="medium" <!-- Tablet -->
|
|
279
|
+
size-lg="large" <!-- Desktop -->
|
|
280
280
|
>
|
|
281
281
|
Responsive Button
|
|
282
282
|
</Button>
|
|
@@ -17,6 +17,7 @@ declare const __VLS_component: DefineComponent<CheckboxProps, {}, {}, {}, {}, Co
|
|
|
17
17
|
size: "small" | "medium" | "large";
|
|
18
18
|
disabled: boolean;
|
|
19
19
|
modelValue: boolean;
|
|
20
|
+
partial: boolean;
|
|
20
21
|
focusable: boolean;
|
|
21
22
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLabelElement>;
|
|
22
23
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { FilterButtonProps } from './types';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
+
declare const _default: DefineComponent<FilterButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4
|
+
toggle: (args_0: boolean) => any;
|
|
5
|
+
}, string, PublicProps, Readonly<FilterButtonProps> & Readonly<{
|
|
6
|
+
onToggle?: ((args_0: boolean) => any) | undefined;
|
|
7
|
+
}>, {
|
|
8
|
+
active: boolean;
|
|
9
|
+
count: number;
|
|
10
|
+
opened: boolean;
|
|
11
|
+
fullWidth: boolean;
|
|
12
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
13
|
+
export default _default;
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
export { Button } from './Button';
|
|
2
|
-
export { Card } from './Card';
|
|
3
|
-
export type
|
|
4
|
-
export {
|
|
5
|
-
export {
|
|
6
|
-
export type
|
|
7
|
-
export {
|
|
8
|
-
export { InputText } from './InputText';
|
|
9
|
-
export { Logo } from './Logo';
|
|
10
|
-
export type { LogoBrand, LogoSize, LogoVariant } from './Logo';
|
|
2
|
+
export { Card, type CardProps } from './Card';
|
|
3
|
+
export { Checkbox, type CheckboxProps } from './Checkbox';
|
|
4
|
+
export { Chip, type ChipProps } from './Chip';
|
|
5
|
+
export { Icon, type IconProps } from './Icon';
|
|
6
|
+
export { InputText, type InputTextProps } from './InputText';
|
|
7
|
+
export { Logo, type LogoBrand, type LogoSize, type LogoVariant } from './Logo';
|
|
11
8
|
export { Skeleton, SkeletonAvatar, SkeletonText } from './Skeleton';
|
|
12
9
|
export { Switch } from './Switch';
|
|
13
10
|
export { Link } from './Link';
|
|
14
11
|
export { Text } from './Text';
|
|
15
12
|
export { RangeSlider } from './RangeSlider';
|
|
13
|
+
export { ProgressBar, type ProgressBarProps } from './ProgressBar';
|
|
14
|
+
export { RadioBox, type RadioBoxProps } from './RadioBox';
|
|
15
|
+
export { FilterButton, type FilterButtonProps } from './FilterButton';
|
|
16
16
|
export type BadgeVariant = 'default' | 'success' | 'warning' | 'danger';
|
|
17
17
|
export type BadgeSize = 'small' | 'medium';
|
|
18
18
|
export type ButtonVariant = 'primary' | 'secondary' | 'outline' | 'ghost' | 'danger';
|
|
@@ -21,7 +21,3 @@ export type IconName = string;
|
|
|
21
21
|
export type IconSize = 'extra-small' | 'small' | 'medium' | 'large';
|
|
22
22
|
export type IconColor = 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'neutral' | 'current';
|
|
23
23
|
export type Currency = '€' | '£';
|
|
24
|
-
export { ProgressBar } from './ProgressBar';
|
|
25
|
-
export type { ProgressBarProps } from './ProgressBar';
|
|
26
|
-
export { RadioBox } from './RadioBox';
|
|
27
|
-
export type { RadioBoxProps } from './RadioBox';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DropDownOption, DropDownProps } from './types';
|
|
2
2
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, GlobalComponents, GlobalDirectives } from 'vue';
|
|
3
|
-
import { InputTextProps } from '
|
|
3
|
+
import { InputTextProps } from '../..';
|
|
4
4
|
declare const _default: DefineComponent<DropDownProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
5
5
|
blur: (event: FocusEvent) => any;
|
|
6
6
|
change: (value: string | number | boolean | (string | number)[] | undefined) => any;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { DropDownOption, DropDownProps } from '../DropDown/types';
|
|
2
2
|
import { InputPhoneProps } from './types';
|
|
3
3
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, GlobalComponents, GlobalDirectives } from 'vue';
|
|
4
|
-
import { InputTextProps } from '
|
|
4
|
+
import { InputTextProps } from '../..';
|
|
5
5
|
declare const _default: DefineComponent<InputPhoneProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6
6
|
blur: () => any;
|
|
7
7
|
change: (value: string | null) => any;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PriceSummaryProps } from './types';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
+
declare const _default: DefineComponent<PriceSummaryProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<PriceSummaryProps> & Readonly<{}>, {
|
|
4
|
+
currency: string;
|
|
5
|
+
totalLabel: string;
|
|
6
|
+
showSavingInfo: boolean;
|
|
7
|
+
savingInfoLabel: string;
|
|
8
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
9
|
+
export default _default;
|
|
@@ -23,5 +23,5 @@ 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 { RadioCard } from './RadioCard';
|
|
27
|
-
export type
|
|
26
|
+
export { RadioCard, type RadioCardProps } from './RadioCard';
|
|
27
|
+
export { PriceSummary, type PriceSummaryProps } from './PriceSummary';
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { DropFileProps, DropFileVariant } from './types';
|
|
2
2
|
import { CreateComponentPublicInstanceWithMixins, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, DefineComponent } from 'vue';
|
|
3
|
-
import { InputTextProps
|
|
3
|
+
import { InputTextProps } from '../..';
|
|
4
|
+
import { ButtonProps } from '../../..';
|
|
4
5
|
type __VLS_Props = DropFileProps & {
|
|
5
6
|
enableImageEditor?: boolean;
|
|
6
7
|
editorOptions?: Record<string, unknown>;
|
|
@@ -9,5 +9,5 @@ declare const _default: DefineComponent<FilterGroupProps, {}, {}, {}, {}, Compon
|
|
|
9
9
|
}>, {
|
|
10
10
|
label: string;
|
|
11
11
|
resetFiltersLabel: string;
|
|
12
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
|
12
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
13
13
|
export default _default;
|
package/dist/icons-list.json
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export type { SkeletonAvatarProps, SkeletonProps, SkeletonTextProps } from './co
|
|
|
17
17
|
export type { SwitchProps } from './components/atoms/Switch/types';
|
|
18
18
|
export type { ProgressBarProps } from './components/atoms/ProgressBar/types';
|
|
19
19
|
export type { RadioBoxProps } from './components/atoms/RadioBox/types';
|
|
20
|
+
export type { FilterButtonProps } from './components/atoms/FilterButton/types';
|
|
20
21
|
export type { BottomSheetChangeReason, BottomSheetProps } from './components/molecules/BottomSheet/types';
|
|
21
22
|
export type { DatePickerProps } from './components/molecules/DatePicker/types';
|
|
22
23
|
export type { DropDownOption, DropDownProps } from './components/molecules/DropDown/types';
|
|
@@ -30,6 +31,7 @@ export type { PriceTagProps } from './components/molecules/PriceTag/types';
|
|
|
30
31
|
export type { TooltipProps } from './components/molecules/Tooltip/types';
|
|
31
32
|
export type { FilterLocationProps } from './components/molecules/FilterLocation/types';
|
|
32
33
|
export type { RadioCardProps } from './components/molecules/RadioCard/types';
|
|
34
|
+
export type { PriceSummaryProps } from './components/molecules/PriceSummary/types';
|
|
33
35
|
export type { BreadcrumbsItem, BreadcrumbsProps } from './components/organisms/Breadcrumbs/types';
|
|
34
36
|
export type { Filter, FilterGroupProps, Sort } from './components/organisms/FilterGroup/types';
|
|
35
37
|
export type { FilterPriceProps } from './components/organisms/FilterPrice/types';
|