@club-employes/utopia 4.6.0 → 4.8.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/README.md +0 -6
- package/dist/icons-list.json +1 -1
- package/dist/index.d.ts +25 -0
- package/dist/index.js +1032 -976
- package/dist/utopia.css +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
package/dist/icons-list.json
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -152,6 +152,28 @@ export interface DataTableProps {
|
|
|
152
152
|
rowKey?: string | ((row: any) => string)
|
|
153
153
|
}
|
|
154
154
|
|
|
155
|
+
export interface SkeletonProps {
|
|
156
|
+
width?: string | number
|
|
157
|
+
height?: string | number
|
|
158
|
+
variant?: 'text' | 'rectangular' | 'circular'
|
|
159
|
+
animation?: 'pulse' | 'wave' | 'none'
|
|
160
|
+
radius?: number
|
|
161
|
+
bg?: boolean
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
export interface SkeletonAvatarProps {
|
|
165
|
+
size?: 'small' | 'medium' | 'large' | number
|
|
166
|
+
variant?: 'circular' | 'rounded' | 'square'
|
|
167
|
+
animation?: 'pulse' | 'wave' | 'none'
|
|
168
|
+
rounded?: boolean
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
export interface SkeletonTextProps {
|
|
172
|
+
lines?: number
|
|
173
|
+
width?: string | string[] | number
|
|
174
|
+
animation?: 'pulse' | 'wave' | 'none'
|
|
175
|
+
}
|
|
176
|
+
|
|
155
177
|
export interface ThemeConfig {
|
|
156
178
|
name: string
|
|
157
179
|
mode: 'light' | 'dark'
|
|
@@ -181,6 +203,9 @@ export declare const InputText: DefineComponent<InputTextProps>
|
|
|
181
203
|
export declare const DropDown: DefineComponent<DropDownProps>
|
|
182
204
|
export declare const InputCode: DefineComponent<InputCodeProps>
|
|
183
205
|
export declare const DataTable: DefineComponent<DataTableProps>
|
|
206
|
+
export declare const Skeleton: DefineComponent<SkeletonProps>
|
|
207
|
+
export declare const SkeletonAvatar: DefineComponent<SkeletonAvatarProps>
|
|
208
|
+
export declare const SkeletonText: DefineComponent<SkeletonTextProps>
|
|
184
209
|
export declare const ThemeProvider: DefineComponent<ThemeProviderProps>
|
|
185
210
|
export declare const DefaultLayout: DefineComponent<{}>
|
|
186
211
|
export declare const AuthLayout: DefineComponent<{}>
|