@versini/ui-button 11.3.1 → 11.3.3
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/common/constants.js +1 -1
- package/dist/components/Button/Button.js +1 -1
- package/dist/components/Button/ButtonCopy.js +1 -1
- package/dist/components/Button/ButtonIcon.js +4 -1
- package/dist/components/Button/ButtonLink.js +1 -1
- package/dist/components/Button/utilities.js +1 -1
- package/dist/components/index.js +1 -1
- package/dist/components/private/BaseButton.js +1 -1
- package/dist/components/private/ButtonSort.js +1 -1
- package/package.json +3 -3
package/dist/common/constants.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-button v11.3.
|
|
2
|
+
@versini/ui-button v11.3.3
|
|
3
3
|
© 2026 gizmette.com
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -213,6 +213,9 @@ function ButtonIcon({ children, disabled = false, mode = "system", focusMode = "
|
|
|
213
213
|
});
|
|
214
214
|
}
|
|
215
215
|
const ButtonLabel = ({ labelRef, labelClass, label, labelInnerClass, initiallyHidden = false })=>{
|
|
216
|
+
if (!label && !initiallyHidden) {
|
|
217
|
+
return null;
|
|
218
|
+
}
|
|
216
219
|
return /*#__PURE__*/ jsx("span", {
|
|
217
220
|
ref: labelRef,
|
|
218
221
|
className: labelClass,
|
package/dist/components/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versini/ui-button",
|
|
3
|
-
"version": "11.3.
|
|
3
|
+
"version": "11.3.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Arno Versini",
|
|
6
6
|
"publishConfig": {
|
|
@@ -68,12 +68,12 @@
|
|
|
68
68
|
"dependencies": {
|
|
69
69
|
"@tailwindcss/typography": "0.5.19",
|
|
70
70
|
"@versini/ui-hooks": "6.1.1",
|
|
71
|
-
"@versini/ui-icons": "4.16.
|
|
71
|
+
"@versini/ui-icons": "4.16.1",
|
|
72
72
|
"clsx": "2.1.1",
|
|
73
73
|
"tailwindcss": "4.1.18"
|
|
74
74
|
},
|
|
75
75
|
"sideEffects": [
|
|
76
76
|
"**/*.css"
|
|
77
77
|
],
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "b46abc9c2e87588d6c9b438f70e68a4ffd05c28c"
|
|
79
79
|
}
|