@club-employes/utopia 4.27.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 +12 -0
- package/dist/index.js +1447 -1353
- package/dist/utopia.css +1 -1
- package/package.json +1 -1
package/dist/icons-list.json
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -220,6 +220,17 @@ export interface ThemeProviderProps {
|
|
|
220
220
|
theme: ThemeConfig
|
|
221
221
|
}
|
|
222
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
|
+
|
|
223
234
|
// Component exports
|
|
224
235
|
export declare const Badge: DefineComponent<BadgeProps>
|
|
225
236
|
export declare const Button: DefineComponent<ButtonProps>
|
|
@@ -249,6 +260,7 @@ export declare const DefaultLayout: DefineComponent<{}>
|
|
|
249
260
|
export declare const AuthLayout: DefineComponent<{}>
|
|
250
261
|
export declare const Slider: DefineComponent<{}>
|
|
251
262
|
export declare const Breadscrum: DefineComponent<BreadscrumProps>
|
|
263
|
+
export declare const Link: DefineComponent<LinkProps>
|
|
252
264
|
// Theme exports
|
|
253
265
|
export declare const clubEmployesLight: ThemeConfig
|
|
254
266
|
export declare const clubEmployesDark: ThemeConfig
|