@club-employes/utopia 4.34.0 → 4.36.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/icons-list.json +1 -1
- package/dist/index.d.ts +8 -3
- package/dist/index.js +400 -394
- package/dist/utopia.css +1 -1
- package/package.json +1 -1
package/dist/icons-list.json
CHANGED
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 {
|
|
@@ -359,14 +364,14 @@ export interface UseFaviconReturn {
|
|
|
359
364
|
}
|
|
360
365
|
|
|
361
366
|
export interface TooltipProps {
|
|
362
|
-
placement?: 'top' | 'bottom' | 'left' | 'right' | '
|
|
367
|
+
placement?: 'top' | 'bottom' | 'left' | 'right' | 'auto' | 'top_left' | 'top_right' | 'top_center' | 'bottom_left' | 'bottom_right' | 'bottom_center'
|
|
363
368
|
openDelay?: number
|
|
364
369
|
closeDelay?: number
|
|
365
370
|
offset?: number
|
|
366
371
|
withArrow?: boolean
|
|
372
|
+
active?: boolean
|
|
367
373
|
disabled?: boolean
|
|
368
|
-
|
|
369
|
-
defaultOpen?: boolean
|
|
374
|
+
interactive?: boolean
|
|
370
375
|
}
|
|
371
376
|
|
|
372
377
|
export declare const Tooltip: DefineComponent<TooltipProps>
|