@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 CHANGED
@@ -21,12 +21,6 @@
21
21
 
22
22
  ## 🚀 Quick Start
23
23
 
24
- ### Installation
25
-
26
- ```bash
27
- npm install @club-employes/utopia vue@^3.1.0
28
- ```
29
-
30
24
  ### Basic Usage
31
25
 
32
26
  ```vue
@@ -1,5 +1,5 @@
1
1
  {
2
- "generated": "2025-09-05T09:09:12.990Z",
2
+ "generated": "2025-09-08T09:27:12.556Z",
3
3
  "count": 1238,
4
4
  "icons": [
5
5
  "Accessibility",
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<{}>