@club-employes/utopia 4.381.0 → 4.383.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 @@ export interface CartStepperStep {
3
3
  key: string;
4
4
  label: string;
5
5
  icon: IconName;
6
- iconUpcoming?: IconName;
6
+ inactiveIcon?: IconName;
7
7
  }
8
8
  export interface CartStepperProps {
9
9
  stepLabel?: string;
@@ -2,6 +2,7 @@ import { DropDownOption, DropDownProps } from './types';
2
2
  import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, GlobalComponents, GlobalDirectives } from 'vue';
3
3
  import { InputTextProps } from '../..';
4
4
  declare const _default: DefineComponent<DropDownProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
5
+ search: (value: string) => any;
5
6
  blur: (event: FocusEvent) => any;
6
7
  change: (value: string | number | boolean | (string | number | boolean)[] | undefined) => any;
7
8
  close: () => any;
@@ -11,6 +12,7 @@ declare const _default: DefineComponent<DropDownProps, {}, {}, {}, {}, Component
11
12
  "update:message": (value: string) => any;
12
13
  open: () => any;
13
14
  }, string, PublicProps, Readonly<DropDownProps> & Readonly<{
15
+ onSearch?: ((value: string) => any) | undefined;
14
16
  onBlur?: ((event: FocusEvent) => any) | undefined;
15
17
  onChange?: ((value: string | number | boolean | (string | number | boolean)[] | undefined) => any) | undefined;
16
18
  onClose?: (() => any) | undefined;
@@ -25,6 +27,7 @@ declare const _default: DefineComponent<DropDownProps, {}, {}, {}, {}, Component
25
27
  message: string;
26
28
  size: "extra-small" | "small" | "medium" | "large";
27
29
  disabled: boolean;
30
+ loading: boolean;
28
31
  modelValue: string | number | boolean | (string | number | boolean)[] | null;
29
32
  options: DropDownOption[];
30
33
  placeholder: string;
@@ -26,6 +26,7 @@ export interface DropDownProps {
26
26
  innerModalId?: string;
27
27
  maxVisibleChips?: number;
28
28
  boldLabel?: boolean;
29
+ loading?: boolean;
29
30
  language?: string;
30
31
  withAll?: boolean;
31
32
  }
@@ -115,6 +115,7 @@ declare const _default: DefineComponent<InputPhoneProps, {}, {}, {}, {}, Compone
115
115
  showNumberStepper: boolean;
116
116
  }> | null;
117
117
  countryDropdownRef: CreateComponentPublicInstanceWithMixins<Readonly< DropDownProps> & Readonly<{
118
+ onSearch?: ((value: string) => any) | undefined;
118
119
  onBlur?: ((event: FocusEvent) => any) | undefined;
119
120
  onChange?: ((value: string | number | boolean | (string | number | boolean)[] | undefined) => any) | undefined;
120
121
  onClose?: (() => any) | undefined;
@@ -124,6 +125,7 @@ declare const _default: DefineComponent<InputPhoneProps, {}, {}, {}, {}, Compone
124
125
  "onUpdate:message"?: ((value: string) => any) | undefined;
125
126
  onOpen?: (() => any) | undefined;
126
127
  }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
128
+ search: (value: string) => any;
127
129
  blur: (event: FocusEvent) => any;
128
130
  change: (value: string | number | boolean | (string | number | boolean)[] | undefined) => any;
129
131
  close: () => any;
@@ -138,6 +140,7 @@ declare const _default: DefineComponent<InputPhoneProps, {}, {}, {}, {}, Compone
138
140
  message: string;
139
141
  size: "extra-small" | "small" | "medium" | "large";
140
142
  disabled: boolean;
143
+ loading: boolean;
141
144
  modelValue: string | number | boolean | (string | number | boolean)[] | null;
142
145
  options: DropDownOption[];
143
146
  placeholder: string;
@@ -244,6 +247,7 @@ declare const _default: DefineComponent<InputPhoneProps, {}, {}, {}, {}, Compone
244
247
  M: {};
245
248
  Defaults: {};
246
249
  }, Readonly< DropDownProps> & Readonly<{
250
+ onSearch?: ((value: string) => any) | undefined;
247
251
  onBlur?: ((event: FocusEvent) => any) | undefined;
248
252
  onChange?: ((value: string | number | boolean | (string | number | boolean)[] | undefined) => any) | undefined;
249
253
  onClose?: (() => any) | undefined;
@@ -258,6 +262,7 @@ declare const _default: DefineComponent<InputPhoneProps, {}, {}, {}, {}, Compone
258
262
  message: string;
259
263
  size: "extra-small" | "small" | "medium" | "large";
260
264
  disabled: boolean;
265
+ loading: boolean;
261
266
  modelValue: string | number | boolean | (string | number | boolean)[] | null;
262
267
  options: DropDownOption[];
263
268
  placeholder: string;