@versini/ui-button 10.0.7 → 11.0.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/common/constants.js +3 -3
- package/dist/components/Button/Button.js +3 -3
- package/dist/components/Button/ButtonCopy.js +3 -3
- package/dist/components/Button/ButtonIcon.js +9 -5
- package/dist/components/Button/ButtonLink.js +3 -3
- package/dist/components/Button/utilities.js +3 -3
- package/dist/components/index.js +3 -3
- package/dist/components/private/BaseButton.js +3 -3
- package/dist/components/private/ButtonSort.js +3 -3
- package/package.json +3 -3
package/dist/common/constants.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-button
|
|
2
|
+
@versini/ui-button v11.0.0
|
|
3
3
|
© 2025 gizmette.com
|
|
4
4
|
*/
|
|
5
5
|
try {
|
|
6
6
|
if (!window.__VERSINI_UI_BUTTON__) {
|
|
7
7
|
window.__VERSINI_UI_BUTTON__ = {
|
|
8
|
-
version: "
|
|
9
|
-
buildTime: "12/
|
|
8
|
+
version: "11.0.0",
|
|
9
|
+
buildTime: "12/16/2025 06:21 PM EST",
|
|
10
10
|
homepage: "https://www.npmjs.com/package/@versini/ui-button",
|
|
11
11
|
license: "MIT",
|
|
12
12
|
};
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-button
|
|
2
|
+
@versini/ui-button v11.0.0
|
|
3
3
|
© 2025 gizmette.com
|
|
4
4
|
*/
|
|
5
5
|
try {
|
|
6
6
|
if (!window.__VERSINI_UI_BUTTON__) {
|
|
7
7
|
window.__VERSINI_UI_BUTTON__ = {
|
|
8
|
-
version: "
|
|
9
|
-
buildTime: "12/
|
|
8
|
+
version: "11.0.0",
|
|
9
|
+
buildTime: "12/16/2025 06:21 PM EST",
|
|
10
10
|
homepage: "https://www.npmjs.com/package/@versini/ui-button",
|
|
11
11
|
license: "MIT",
|
|
12
12
|
};
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-button
|
|
2
|
+
@versini/ui-button v11.0.0
|
|
3
3
|
© 2025 gizmette.com
|
|
4
4
|
*/
|
|
5
5
|
try {
|
|
6
6
|
if (!window.__VERSINI_UI_BUTTON__) {
|
|
7
7
|
window.__VERSINI_UI_BUTTON__ = {
|
|
8
|
-
version: "
|
|
9
|
-
buildTime: "12/
|
|
8
|
+
version: "11.0.0",
|
|
9
|
+
buildTime: "12/16/2025 06:21 PM EST",
|
|
10
10
|
homepage: "https://www.npmjs.com/package/@versini/ui-button",
|
|
11
11
|
license: "MIT",
|
|
12
12
|
};
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-button
|
|
2
|
+
@versini/ui-button v11.0.0
|
|
3
3
|
© 2025 gizmette.com
|
|
4
4
|
*/
|
|
5
5
|
try {
|
|
6
6
|
if (!window.__VERSINI_UI_BUTTON__) {
|
|
7
7
|
window.__VERSINI_UI_BUTTON__ = {
|
|
8
|
-
version: "
|
|
9
|
-
buildTime: "12/
|
|
8
|
+
version: "11.0.0",
|
|
9
|
+
buildTime: "12/16/2025 06:21 PM EST",
|
|
10
10
|
homepage: "https://www.npmjs.com/package/@versini/ui-button",
|
|
11
11
|
license: "MIT",
|
|
12
12
|
};
|
|
@@ -16,14 +16,17 @@ try {
|
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
19
|
-
import { useMergeRefs
|
|
19
|
+
import { useMergeRefs } from "@versini/ui-hooks/use-merge-refs";
|
|
20
|
+
import { useResizeObserver } from "@versini/ui-hooks/use-resize-observer";
|
|
20
21
|
import react, { useEffect, useLayoutEffect, useRef } from "react";
|
|
21
22
|
import { BaseButton_private } from "../private/BaseButton.js";
|
|
22
23
|
import { TYPE_ICON, getButtonClasses, getButtonIconLabelClasses, getIconClasses } from "./utilities.js";
|
|
23
24
|
|
|
24
25
|
;// CONCATENATED MODULE: external "react/jsx-runtime"
|
|
25
26
|
|
|
26
|
-
;// CONCATENATED MODULE: external "@versini/ui-hooks"
|
|
27
|
+
;// CONCATENATED MODULE: external "@versini/ui-hooks/use-merge-refs"
|
|
28
|
+
|
|
29
|
+
;// CONCATENATED MODULE: external "@versini/ui-hooks/use-resize-observer"
|
|
27
30
|
|
|
28
31
|
;// CONCATENATED MODULE: external "react"
|
|
29
32
|
|
|
@@ -37,6 +40,7 @@ import { TYPE_ICON, getButtonClasses, getButtonIconLabelClasses, getIconClasses
|
|
|
37
40
|
|
|
38
41
|
|
|
39
42
|
|
|
43
|
+
|
|
40
44
|
const WIDTH = {
|
|
41
45
|
small: 24,
|
|
42
46
|
medium: 32,
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-button
|
|
2
|
+
@versini/ui-button v11.0.0
|
|
3
3
|
© 2025 gizmette.com
|
|
4
4
|
*/
|
|
5
5
|
try {
|
|
6
6
|
if (!window.__VERSINI_UI_BUTTON__) {
|
|
7
7
|
window.__VERSINI_UI_BUTTON__ = {
|
|
8
|
-
version: "
|
|
9
|
-
buildTime: "12/
|
|
8
|
+
version: "11.0.0",
|
|
9
|
+
buildTime: "12/16/2025 06:21 PM EST",
|
|
10
10
|
homepage: "https://www.npmjs.com/package/@versini/ui-button",
|
|
11
11
|
license: "MIT",
|
|
12
12
|
};
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-button
|
|
2
|
+
@versini/ui-button v11.0.0
|
|
3
3
|
© 2025 gizmette.com
|
|
4
4
|
*/
|
|
5
5
|
try {
|
|
6
6
|
if (!window.__VERSINI_UI_BUTTON__) {
|
|
7
7
|
window.__VERSINI_UI_BUTTON__ = {
|
|
8
|
-
version: "
|
|
9
|
-
buildTime: "12/
|
|
8
|
+
version: "11.0.0",
|
|
9
|
+
buildTime: "12/16/2025 06:21 PM EST",
|
|
10
10
|
homepage: "https://www.npmjs.com/package/@versini/ui-button",
|
|
11
11
|
license: "MIT",
|
|
12
12
|
};
|
package/dist/components/index.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-button
|
|
2
|
+
@versini/ui-button v11.0.0
|
|
3
3
|
© 2025 gizmette.com
|
|
4
4
|
*/
|
|
5
5
|
try {
|
|
6
6
|
if (!window.__VERSINI_UI_BUTTON__) {
|
|
7
7
|
window.__VERSINI_UI_BUTTON__ = {
|
|
8
|
-
version: "
|
|
9
|
-
buildTime: "12/
|
|
8
|
+
version: "11.0.0",
|
|
9
|
+
buildTime: "12/16/2025 06:21 PM EST",
|
|
10
10
|
homepage: "https://www.npmjs.com/package/@versini/ui-button",
|
|
11
11
|
license: "MIT",
|
|
12
12
|
};
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-button
|
|
2
|
+
@versini/ui-button v11.0.0
|
|
3
3
|
© 2025 gizmette.com
|
|
4
4
|
*/
|
|
5
5
|
try {
|
|
6
6
|
if (!window.__VERSINI_UI_BUTTON__) {
|
|
7
7
|
window.__VERSINI_UI_BUTTON__ = {
|
|
8
|
-
version: "
|
|
9
|
-
buildTime: "12/
|
|
8
|
+
version: "11.0.0",
|
|
9
|
+
buildTime: "12/16/2025 06:21 PM EST",
|
|
10
10
|
homepage: "https://www.npmjs.com/package/@versini/ui-button",
|
|
11
11
|
license: "MIT",
|
|
12
12
|
};
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-button
|
|
2
|
+
@versini/ui-button v11.0.0
|
|
3
3
|
© 2025 gizmette.com
|
|
4
4
|
*/
|
|
5
5
|
try {
|
|
6
6
|
if (!window.__VERSINI_UI_BUTTON__) {
|
|
7
7
|
window.__VERSINI_UI_BUTTON__ = {
|
|
8
|
-
version: "
|
|
9
|
-
buildTime: "12/
|
|
8
|
+
version: "11.0.0",
|
|
9
|
+
buildTime: "12/16/2025 06:21 PM EST",
|
|
10
10
|
homepage: "https://www.npmjs.com/package/@versini/ui-button",
|
|
11
11
|
license: "MIT",
|
|
12
12
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versini/ui-button",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "11.0.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Arno Versini",
|
|
6
6
|
"publishConfig": {
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
69
|
"@tailwindcss/typography": "0.5.19",
|
|
70
|
-
"@versini/ui-hooks": "
|
|
70
|
+
"@versini/ui-hooks": "6.0.0",
|
|
71
71
|
"@versini/ui-icons": "4.15.1",
|
|
72
72
|
"clsx": "2.1.1",
|
|
73
73
|
"tailwindcss": "4.1.18"
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"sideEffects": [
|
|
76
76
|
"**/*.css"
|
|
77
77
|
],
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "30d86d13d4369cc841fc267c970cca423d27bf2f"
|
|
79
79
|
}
|