@club-employes/utopia 2.15.1 → 2.16.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 +18 -0
- package/dist/index.js +1158 -1016
- package/dist/utopia.css +1 -1
- package/package.json +6 -3
package/dist/icons-list.json
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -92,6 +92,10 @@ export interface InputTextProps {
|
|
|
92
92
|
icon?: string
|
|
93
93
|
message?: string
|
|
94
94
|
required?: boolean
|
|
95
|
+
min?: number
|
|
96
|
+
max?: number
|
|
97
|
+
step?: number
|
|
98
|
+
isCode?: boolean
|
|
95
99
|
}
|
|
96
100
|
|
|
97
101
|
export interface DropDownOption {
|
|
@@ -117,6 +121,19 @@ export interface DropDownProps {
|
|
|
117
121
|
maxHeight?: string
|
|
118
122
|
}
|
|
119
123
|
|
|
124
|
+
export interface InputCodeProps {
|
|
125
|
+
modelValue?: string
|
|
126
|
+
label?: string
|
|
127
|
+
length?: number
|
|
128
|
+
type?: 'text' | 'number'
|
|
129
|
+
size?: 'small' | 'medium' | 'large'
|
|
130
|
+
state?: 'default' | 'error' | 'valid'
|
|
131
|
+
disabled?: boolean
|
|
132
|
+
message?: string
|
|
133
|
+
required?: boolean
|
|
134
|
+
autoFocus?: boolean
|
|
135
|
+
}
|
|
136
|
+
|
|
120
137
|
export interface DataTableProps {
|
|
121
138
|
columns: Array<{
|
|
122
139
|
key: string
|
|
@@ -162,6 +179,7 @@ export declare const SearchBox: DefineComponent<SearchBoxProps>
|
|
|
162
179
|
export declare const Switch: DefineComponent<SwitchProps>
|
|
163
180
|
export declare const InputText: DefineComponent<InputTextProps>
|
|
164
181
|
export declare const DropDown: DefineComponent<DropDownProps>
|
|
182
|
+
export declare const InputCode: DefineComponent<InputCodeProps>
|
|
165
183
|
export declare const DataTable: DefineComponent<DataTableProps>
|
|
166
184
|
export declare const ThemeProvider: DefineComponent<ThemeProviderProps>
|
|
167
185
|
export declare const DefaultLayout: DefineComponent<{}>
|