@club-employes/utopia 4.26.0 → 4.27.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 +7 -1
- package/dist/index.js +767 -738
- package/dist/utopia.css +1 -1
- package/package.json +1 -1
package/dist/icons-list.json
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -210,6 +210,12 @@ 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
|
}
|
|
@@ -242,7 +248,7 @@ export declare const ThemeProvider: DefineComponent<ThemeProviderProps>
|
|
|
242
248
|
export declare const DefaultLayout: DefineComponent<{}>
|
|
243
249
|
export declare const AuthLayout: DefineComponent<{}>
|
|
244
250
|
export declare const Slider: DefineComponent<{}>
|
|
245
|
-
|
|
251
|
+
export declare const Breadscrum: DefineComponent<BreadscrumProps>
|
|
246
252
|
// Theme exports
|
|
247
253
|
export declare const clubEmployesLight: ThemeConfig
|
|
248
254
|
export declare const clubEmployesDark: ThemeConfig
|