groovinads-ui 1.9.93 → 1.9.95

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/index.d.ts CHANGED
@@ -5,6 +5,7 @@ import { ReactNode, MouseEventHandler, ChangeEventHandler, CSSProperties, Dispat
5
5
  // ============================================================================
6
6
 
7
7
  export interface ButtonProps {
8
+ badge?: string;
8
9
  children?: ReactNode;
9
10
  className?: string;
10
11
  disabled?: boolean;
@@ -301,10 +302,11 @@ export interface EditableContentProps {
301
302
  export const EditableContent: React.FC<EditableContentProps>;
302
303
 
303
304
  export interface IconProps {
305
+ animation?: 'beat' | 'fade' | 'beat-fade' | 'bounce' | 'flip' | 'shake' | 'spin' | 'spin-reverse' | 'pulse';
304
306
  className?: string;
305
- iconName: string;
306
- scale?: number;
307
- style?: 'solid' | 'regular' | 'light' | 'thin' | 'duotone' | 'brands';
307
+ name?: string;
308
+ scale?: 0.7 | 1 | 2 | 3 | 4;
309
+ style?: 'solid' | 'regular' | 'duotone' | 'brands';
308
310
  }
309
311
 
310
312
  export const Icon: React.FC<IconProps>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "groovinads-ui",
3
3
  "description": "Groovinads UI is a React component library designed exclusively for Groovinads applications. It provides ready-to-use UI elements styled according to Groovinads design guidelines to facilitate rapid development.",
4
- "version": "1.9.93",
4
+ "version": "1.9.95",
5
5
  "type": "module",
6
6
  "keywords": [
7
7
  "css",
@@ -71,12 +71,23 @@
71
71
  "vitest": "^4.0.14"
72
72
  },
73
73
  "peerDependencies": {
74
+ "@awesome.me/kit-9889deefc5": "^1.0.3",
75
+ "@fortawesome/duotone-regular-svg-icons": "^7.1.0",
76
+ "@fortawesome/fontawesome-svg-core": "^7.1.0",
77
+ "@fortawesome/free-brands-svg-icons": "^7.1.0",
78
+ "@fortawesome/pro-duotone-svg-icons": "^7.1.0",
79
+ "@fortawesome/pro-regular-svg-icons": "^7.1.0",
80
+ "@fortawesome/pro-solid-svg-icons": "^7.1.0",
81
+ "@fortawesome/react-fontawesome": "^3.1.1",
74
82
  "axios": "^1.7.2",
75
83
  "babel-loader": "^9.1.3",
76
84
  "js-cookie": "^3.0.5",
77
85
  "react": "^19.1.0",
78
86
  "react-bootstrap": "^2.10.4",
79
- "react-dom": "^19.1.0"
87
+ "react-datepicker": "^7.3.0",
88
+ "react-dom": "^19.1.0",
89
+ "react-loading-skeleton": "^3.5.0",
90
+ "react-responsive": "^10.0.0"
80
91
  },
81
92
  "packageManager": "yarn@4.1.1",
82
93
  "scripts": {
@@ -85,9 +96,6 @@
85
96
  "build-lib": "rollup -c"
86
97
  },
87
98
  "dependencies": {
88
- "date-fns": "^4.1.0",
89
- "react-datepicker": "^7.3.0",
90
- "react-loading-skeleton": "^3.5.0",
91
- "react-responsive": "^10.0.0"
99
+ "date-fns": "^4.1.0"
92
100
  }
93
101
  }