@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.
- package/dist/icons-list.json +1 -1
- package/dist/index.d.ts +19 -1
- package/dist/index.js +1556 -1433
- 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,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
|