@club-employes/utopia 4.26.0 → 4.28.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-10-17T08:58:55.975Z",
2
+ "generated": "2025-10-24T09:18:25.561Z",
3
3
  "count": 1238,
4
4
  "icons": [
5
5
  "Accessibility",
package/dist/index.d.ts CHANGED
@@ -210,10 +210,27 @@ export interface ThemeConfig {
210
210
  cssFile: string
211
211
  }
212
212
 
213
+ export interface BreadscrumProps {
214
+ variant?: 'default' | 'primary' | 'secondary'
215
+ size?: 'small' | 'medium' | 'large'
216
+ disabled?: boolean
217
+ }
218
+
213
219
  export interface ThemeProviderProps {
214
220
  theme: ThemeConfig
215
221
  }
216
222
 
223
+ export interface LinkProps {
224
+ label: string
225
+ to: string
226
+ iconLeft?: string
227
+ iconRight?: string
228
+ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl'
229
+ variant?: 'primary' | 'secondary'
230
+ active?: boolean
231
+ disabled?: boolean
232
+ }
233
+
217
234
  // Component exports
218
235
  export declare const Badge: DefineComponent<BadgeProps>
219
236
  export declare const Button: DefineComponent<ButtonProps>
@@ -242,7 +259,8 @@ export declare const ThemeProvider: DefineComponent<ThemeProviderProps>
242
259
  export declare const DefaultLayout: DefineComponent<{}>
243
260
  export declare const AuthLayout: DefineComponent<{}>
244
261
  export declare const Slider: DefineComponent<{}>
245
-
262
+ export declare const Breadscrum: DefineComponent<BreadscrumProps>
263
+ export declare const Link: DefineComponent<LinkProps>
246
264
  // Theme exports
247
265
  export declare const clubEmployesLight: ThemeConfig
248
266
  export declare const clubEmployesDark: ThemeConfig