@club-employes/utopia 4.29.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.
- package/dist/icons-list.json +1 -1
- package/dist/index.d.ts +10 -5
- package/dist/index.js +910 -895
- package/dist/utopia.css +1 -1
- package/package.json +1 -1
package/dist/icons-list.json
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -210,10 +210,15 @@ export interface ThemeConfig {
|
|
|
210
210
|
cssFile: string
|
|
211
211
|
}
|
|
212
212
|
|
|
213
|
-
export interface
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
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
|
|
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
|