@club-employes/utopia 4.343.0 → 4.345.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.
@@ -3,7 +3,7 @@ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOp
3
3
  declare const _default: DefineComponent<DefaultImageProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DefaultImageProps> & Readonly<{}>, {
4
4
  loading: boolean;
5
5
  radius: number;
6
- fit: "cover" | "contain" | "fill";
6
+ fit: "cover" | "contain" | "fill" | "logo";
7
7
  aspectRatio: number;
8
8
  hoverZoom: boolean;
9
9
  inactive: boolean;
@@ -16,7 +16,7 @@ export interface DefaultImageProps {
16
16
  * How the image should fit in the container.
17
17
  * @default 'cover'
18
18
  */
19
- fit?: 'cover' | 'contain' | 'fill';
19
+ fit?: 'cover' | 'contain' | 'fill' | 'logo';
20
20
  /**
21
21
  * Whether to enable hover zoom on the image.
22
22
  * @default false
@@ -30,6 +30,7 @@ declare const _default: DefineComponent<DropDownProps, {}, {}, {}, {}, Component
30
30
  placeholder: string;
31
31
  state: "default" | "error" | "valid" | "incomplete" | "completed";
32
32
  readonly: boolean;
33
+ language: string;
33
34
  multiple: boolean;
34
35
  searchable: boolean;
35
36
  clearable: boolean;
@@ -38,6 +39,7 @@ declare const _default: DefineComponent<DropDownProps, {}, {}, {}, {}, Component
38
39
  compact: boolean;
39
40
  chipsPosition: "inside" | "outside";
40
41
  boldLabel: boolean;
42
+ withAll: boolean;
41
43
  }, {}, {}, {}, string, ComponentProvideOptions, false, {
42
44
  triggerRef: HTMLButtonElement;
43
45
  chipsScrollRef: HTMLDivElement;
@@ -26,4 +26,6 @@ export interface DropDownProps {
26
26
  innerModalId?: string;
27
27
  maxVisibleChips?: number;
28
28
  boldLabel?: boolean;
29
+ language?: string;
30
+ withAll?: boolean;
29
31
  }
@@ -30,6 +30,7 @@ interface GrantTreeNode {
30
30
  type __VLS_Props = {
31
31
  modelValue?: string | number | boolean;
32
32
  node: GrantTreeNode;
33
+ groupEnabled?: boolean;
33
34
  };
34
35
  declare function __VLS_template(): {
35
36
  attrs: Partial<{}>;
@@ -143,6 +143,7 @@ declare const _default: DefineComponent<InputPhoneProps, {}, {}, {}, {}, Compone
143
143
  placeholder: string;
144
144
  state: "default" | "error" | "valid" | "incomplete" | "completed";
145
145
  readonly: boolean;
146
+ language: string;
146
147
  multiple: boolean;
147
148
  searchable: boolean;
148
149
  clearable: boolean;
@@ -151,6 +152,7 @@ declare const _default: DefineComponent<InputPhoneProps, {}, {}, {}, {}, Compone
151
152
  compact: boolean;
152
153
  chipsPosition: "inside" | "outside";
153
154
  boldLabel: boolean;
155
+ withAll: boolean;
154
156
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
155
157
  triggerRef: HTMLButtonElement;
156
158
  chipsScrollRef: HTMLDivElement;
@@ -261,6 +263,7 @@ declare const _default: DefineComponent<InputPhoneProps, {}, {}, {}, {}, Compone
261
263
  placeholder: string;
262
264
  state: "default" | "error" | "valid" | "incomplete" | "completed";
263
265
  readonly: boolean;
266
+ language: string;
264
267
  multiple: boolean;
265
268
  searchable: boolean;
266
269
  clearable: boolean;
@@ -269,6 +272,7 @@ declare const _default: DefineComponent<InputPhoneProps, {}, {}, {}, {}, Compone
269
272
  compact: boolean;
270
273
  chipsPosition: "inside" | "outside";
271
274
  boldLabel: boolean;
275
+ withAll: boolean;
272
276
  }> | null;
273
277
  }, HTMLDivElement>;
274
278
  export default _default;
@@ -1,7 +1,7 @@
1
1
  export interface ProductImageType {
2
2
  url: string;
3
3
  alt: string;
4
- fit?: 'cover' | 'contain' | 'fill';
4
+ fit?: 'cover' | 'contain' | 'fill' | 'logo';
5
5
  }
6
6
  export interface ProductImageProps {
7
7
  images: ProductImageType[];
@@ -11,6 +11,6 @@ declare const _default: DefineComponent<TableEmptyStateProps, {}, {}, {}, {}, Co
11
11
  state: "NO_RESULTS_FOR_SEARCH" | "NO_DATA";
12
12
  description: string;
13
13
  actionLabel: string;
14
- context: "USERS" | "CAMPAIGNS" | "RESTAURANTS";
14
+ context: "USERS" | "CAMPAIGNS" | "RESTAURANTS" | "OTHER";
15
15
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
16
16
  export default _default;
@@ -813,7 +813,7 @@ export interface TableRequestDataWithSelection extends TableRequestData {
813
813
  export interface TableEmptyStateProps {
814
814
  icon?: string;
815
815
  loading?: boolean;
816
- context?: 'USERS' | 'CAMPAIGNS' | 'RESTAURANTS';
816
+ context?: 'USERS' | 'CAMPAIGNS' | 'RESTAURANTS' | 'OTHER';
817
817
  state?: 'NO_RESULTS_FOR_SEARCH' | 'NO_DATA';
818
818
  title?: string;
819
819
  description?: string;
@@ -20,6 +20,20 @@ interface TableTranslations {
20
20
  between: string;
21
21
  notBetween: string;
22
22
  };
23
+ emptyState: {
24
+ loading: {
25
+ title: string;
26
+ description: string;
27
+ };
28
+ noData: {
29
+ title: string;
30
+ description: string;
31
+ };
32
+ noSearchResults: {
33
+ title: string;
34
+ description: string;
35
+ };
36
+ };
23
37
  editModeLabelOn: string;
24
38
  editModeLabelOff: string;
25
39
  }