@club-employes/utopia 4.33.0 → 4.35.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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "generated": "2025-11-12T14:06:47.737Z",
2
+ "generated": "2025-11-17T15:03:52.110Z",
3
3
  "count": 1238,
4
4
  "icons": [
5
5
  "Accessibility",
package/dist/index.d.ts CHANGED
@@ -88,17 +88,22 @@ export interface InputTextProps {
88
88
  label?: string
89
89
  placeholder?: string
90
90
  type?: 'text' | 'email' | 'password' | 'number' | 'tel' | 'url'
91
+ inputmode?: 'none' | 'text' | 'decimal' | 'numeric' | 'tel' | 'search' | 'email' | 'url'
91
92
  state?: 'default' | 'error' | 'valid' | 'incomplete' | 'completed'
92
93
  size?: 'small' | 'medium' | 'large'
93
94
  disabled?: boolean
94
95
  readonly?: boolean
95
96
  icon?: string
97
+ iconPosition?: 'left' | 'right'
98
+ iconClickable?: boolean
96
99
  message?: string
97
100
  required?: boolean
98
101
  min?: number
99
102
  max?: number
100
103
  step?: number
104
+ maxlength?: number
101
105
  isCode?: boolean
106
+ forceModelValueOnBlur?: boolean
102
107
  }
103
108
 
104
109
  export interface DropDownOption {
@@ -304,6 +309,20 @@ export declare const AuthLayout: DefineComponent<{}>
304
309
  export declare const Slider: DefineComponent<{}>
305
310
  export declare const Breadcrumbs: DefineComponent<BreadcrumbsProps>
306
311
  export declare const Link: DefineComponent<LinkProps>
312
+
313
+ export interface ErrorStateProps {
314
+ title?: string
315
+ description?: string
316
+ actionLabel?: string
317
+ retryAction?: () => void
318
+ spinning?: boolean
319
+ imageSrc?: string
320
+ imageAlt?: string
321
+ preset?: 'gears' | 'search'
322
+ }
323
+ export declare const ErrorState: DefineComponent<ErrorStateProps>
324
+ export declare const FeedbackState: DefineComponent<ErrorStateProps>
325
+
307
326
  export declare const PriceTag: DefineComponent<PriceTagProps>
308
327
  export declare const ProductCard: DefineComponent<ProductCardProps>
309
328
  export declare const FilterPrice: DefineComponent<FilterPriceProps>