@versini/ui-card 6.1.2 → 6.2.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/index.js +2 -9
- package/package.json +3 -4
package/dist/index.js
CHANGED
|
@@ -1,22 +1,17 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-card v6.
|
|
3
|
-
©
|
|
2
|
+
@versini/ui-card v6.2.0
|
|
3
|
+
© 2026 gizmette.com
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
7
7
|
import { useUniqueId } from "@versini/ui-hooks/use-unique-id";
|
|
8
8
|
import clsx from "clsx";
|
|
9
9
|
|
|
10
|
-
;// CONCATENATED MODULE: ./src/common/constants.ts
|
|
11
10
|
const CARD_CLASSNAME = "av-card";
|
|
12
11
|
|
|
13
|
-
;// CONCATENATED MODULE: external "react/jsx-runtime"
|
|
14
12
|
|
|
15
|
-
;// CONCATENATED MODULE: external "@versini/ui-hooks/use-unique-id"
|
|
16
13
|
|
|
17
|
-
;// CONCATENATED MODULE: external "clsx"
|
|
18
14
|
|
|
19
|
-
;// CONCATENATED MODULE: ./src/components/Card/utilities.ts
|
|
20
15
|
|
|
21
16
|
|
|
22
17
|
const getCardClasses = ({ className, headerClassName, bodyClassName, footerClassName, mode, compact, noBorder })=>{
|
|
@@ -50,7 +45,6 @@ const getCardClasses = ({ className, headerClassName, bodyClassName, footerClass
|
|
|
50
45
|
};
|
|
51
46
|
};
|
|
52
47
|
|
|
53
|
-
;// CONCATENATED MODULE: ./src/components/Card/Card.tsx
|
|
54
48
|
|
|
55
49
|
|
|
56
50
|
|
|
@@ -149,7 +143,6 @@ const Card = ({ header, headerClassName, footer, footerClassName, children, clas
|
|
|
149
143
|
});
|
|
150
144
|
};
|
|
151
145
|
|
|
152
|
-
;// CONCATENATED MODULE: ./src/components/index.ts
|
|
153
146
|
|
|
154
147
|
|
|
155
148
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versini/ui-card",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.2.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Arno Versini",
|
|
6
6
|
"publishConfig": {
|
|
@@ -38,10 +38,9 @@
|
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@testing-library/jest-dom": "6.9.1",
|
|
41
|
-
"@versini/ui-types": "8.
|
|
41
|
+
"@versini/ui-types": "8.3.0"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@tailwindcss/typography": "0.5.19",
|
|
45
44
|
"@versini/ui-hooks": "6.1.1",
|
|
46
45
|
"clsx": "2.1.1",
|
|
47
46
|
"tailwindcss": "4.1.18"
|
|
@@ -49,5 +48,5 @@
|
|
|
49
48
|
"sideEffects": [
|
|
50
49
|
"**/*.css"
|
|
51
50
|
],
|
|
52
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "6f0ba5933ab114566dc2065b20ca9ffb14c5aba4"
|
|
53
52
|
}
|