sodtrack-web-ui 0.109.7 → 0.109.8
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/components/button-menu.d.ts +1 -1
- package/package.json +18 -19
|
@@ -172,7 +172,7 @@ type ButtonMenuOption = {
|
|
|
172
172
|
onClick?: () => void;
|
|
173
173
|
};
|
|
174
174
|
type ButtonMenuStyleVariants = Omit<VariantProps<typeof buttonMenuStyles>, "loading">;
|
|
175
|
-
type ButtonMenuProps = Omit<React__default.ButtonHTMLAttributes<HTMLButtonElement>, "onSelect" | "disabled"> & ButtonMenuStyleVariants & {
|
|
175
|
+
type ButtonMenuProps = Omit<React__default.ButtonHTMLAttributes<HTMLButtonElement>, "onSelect" | "disabled" | "value"> & ButtonMenuStyleVariants & {
|
|
176
176
|
className?: React__default.ButtonHTMLAttributes<HTMLButtonElement>["className"];
|
|
177
177
|
label: string;
|
|
178
178
|
badgeText?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sodtrack-web-ui",
|
|
3
|
-
"version": "0.109.
|
|
3
|
+
"version": "0.109.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "UI components for Sodtrack Web",
|
|
6
6
|
"exports": {
|
|
@@ -33,27 +33,13 @@
|
|
|
33
33
|
"files": [
|
|
34
34
|
"dist"
|
|
35
35
|
],
|
|
36
|
-
"scripts": {
|
|
37
|
-
"test": "echo \"Error: no test specified\" && exit 1",
|
|
38
|
-
"prepare": "husky",
|
|
39
|
-
"check:trust-policy": "pnpm install --frozen-lockfile --config.trustPolicy=no-downgrade",
|
|
40
|
-
"check": "pnpm run format && pnpm run lint:strict",
|
|
41
|
-
"build": "tsup --publicDir",
|
|
42
|
-
"storybook": "storybook dev -p 6006",
|
|
43
|
-
"build-storybook": "storybook build",
|
|
44
|
-
"format": "prettier --check .",
|
|
45
|
-
"format:fix": "prettier --write .",
|
|
46
|
-
"lint": "oxlint",
|
|
47
|
-
"lint:fix": "oxlint --fix",
|
|
48
|
-
"lint:strict": "oxlint --deny-warnings"
|
|
49
|
-
},
|
|
50
36
|
"author": "",
|
|
51
37
|
"license": "ISC",
|
|
52
38
|
"engines": {
|
|
53
39
|
"node": "22.22.1"
|
|
54
40
|
},
|
|
55
41
|
"dependencies": {
|
|
56
|
-
"@ark-ui/react": "5.
|
|
42
|
+
"@ark-ui/react": "5.37.0",
|
|
57
43
|
"@fontsource-variable/inter": "5.2.8",
|
|
58
44
|
"@fontsource-variable/plus-jakarta-sans": "5.2.8",
|
|
59
45
|
"@lexical/html": "0.40.0",
|
|
@@ -106,9 +92,9 @@
|
|
|
106
92
|
"tsup": "8.5.1",
|
|
107
93
|
"typescript": "5.8.3",
|
|
108
94
|
"vite": "7.3.1",
|
|
109
|
-
"vite-plugin-svgr": "4.5.0"
|
|
95
|
+
"vite-plugin-svgr": "4.5.0",
|
|
96
|
+
"node": "runtime:22.22.1"
|
|
110
97
|
},
|
|
111
|
-
"packageManager": "pnpm@10.32.1",
|
|
112
98
|
"devEngines": {
|
|
113
99
|
"runtime": {
|
|
114
100
|
"name": "node",
|
|
@@ -125,5 +111,18 @@
|
|
|
125
111
|
"*.{json,md,css,yml,yaml}": [
|
|
126
112
|
"prettier --write"
|
|
127
113
|
]
|
|
114
|
+
},
|
|
115
|
+
"scripts": {
|
|
116
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
117
|
+
"check:trust-policy": "pnpm install --frozen-lockfile --config.trustPolicy=no-downgrade",
|
|
118
|
+
"check": "pnpm run format && pnpm run lint:strict",
|
|
119
|
+
"build": "tsup --publicDir",
|
|
120
|
+
"storybook": "storybook dev -p 6006",
|
|
121
|
+
"build-storybook": "storybook build",
|
|
122
|
+
"format": "prettier --check .",
|
|
123
|
+
"format:fix": "prettier --write .",
|
|
124
|
+
"lint": "oxlint",
|
|
125
|
+
"lint:fix": "oxlint --fix",
|
|
126
|
+
"lint:strict": "oxlint --deny-warnings"
|
|
128
127
|
}
|
|
129
|
-
}
|
|
128
|
+
}
|