@club-employes/utopia 2.14.0 → 2.15.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-08-18T15:04:21.873Z",
2
+ "generated": "2025-08-19T10:41:11.553Z",
3
3
  "count": 1238,
4
4
  "icons": [
5
5
  "Accessibility",
package/dist/index.d.ts CHANGED
@@ -8,9 +8,12 @@ export interface BadgeProps {
8
8
  }
9
9
 
10
10
  export interface ButtonProps {
11
- variant?: 'primary' | 'secondary' | 'outline' | 'ghost' | 'danger'
12
- size?: 'small' | 'medium' | 'large'
11
+ variant?: 'primary' | 'secondary' | 'tertiary'
12
+ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl'
13
13
  disabled?: boolean
14
+ loading?: boolean
15
+ icon?: string
16
+ iconPosition?: 'left' | 'right'
14
17
  }
15
18
 
16
19
  export interface IconProps {
@@ -146,8 +149,8 @@ export declare function useFavicon(): UseFaviconReturn
146
149
  // Type exports
147
150
  export type BadgeVariant = 'default' | 'success' | 'warning' | 'danger'
148
151
  export type BadgeSize = 'small' | 'medium'
149
- export type ButtonVariant = 'primary' | 'secondary' | 'outline' | 'ghost' | 'danger'
150
- export type ButtonSize = 'small' | 'medium' | 'large'
152
+ export type ButtonVariant = 'primary' | 'secondary' | 'tertiary'
153
+ export type ButtonSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl'
151
154
  export type IconName = string
152
155
  export type IconSize = 'small' | 'medium' | 'large'
153
156
  export type IconColor = 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'neutral' | 'current'