@club-employes/utopia 4.28.0 → 4.30.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-24T09:18:25.561Z",
2
+ "generated": "2025-10-27T10:44:10.545Z",
3
3
  "count": 1238,
4
4
  "icons": [
5
5
  "Accessibility",
package/dist/index.d.ts CHANGED
@@ -210,10 +210,15 @@ 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
213
+ export interface BreadcrumbsItem {
214
+ label: string;
215
+ to?: string;
216
+ iconLeft?: string;
217
+ iconRight?: string;
218
+ }
219
+
220
+ export interface BreadcrumbsProps {
221
+ items: BreadcrumbsItem[]
217
222
  }
218
223
 
219
224
  export interface ThemeProviderProps {
@@ -259,7 +264,7 @@ export declare const ThemeProvider: DefineComponent<ThemeProviderProps>
259
264
  export declare const DefaultLayout: DefineComponent<{}>
260
265
  export declare const AuthLayout: DefineComponent<{}>
261
266
  export declare const Slider: DefineComponent<{}>
262
- export declare const Breadscrum: DefineComponent<BreadscrumProps>
267
+ export declare const Breadcrumbs: DefineComponent<BreadcrumbsProps>
263
268
  export declare const Link: DefineComponent<LinkProps>
264
269
  // Theme exports
265
270
  export declare const clubEmployesLight: ThemeConfig