@scm-manager/ui-forms 2.48.2-20231027-090921 → 3.0.0-20231029-183202
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/.turbo/turbo-build.log
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@scm-manager/ui-forms:build: cache hit, replaying output
|
|
1
|
+
@scm-manager/ui-forms:build: cache hit, replaying output fb76b1aa9a873510
|
|
2
2
|
@scm-manager/ui-forms:build: $ tsup ./src/index.ts -d build --format esm,cjs --dts
|
|
3
3
|
@scm-manager/ui-forms:build: CLI Building entry: ./src/index.ts
|
|
4
4
|
@scm-manager/ui-forms:build: CLI Using tsconfig: tsconfig.json
|
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
@scm-manager/ui-forms:build: ESM Build start
|
|
8
8
|
@scm-manager/ui-forms:build: CJS Build start
|
|
9
9
|
@scm-manager/ui-forms:build: ESM build/index.mjs 57.33 KB
|
|
10
|
-
@scm-manager/ui-forms:build: ESM ⚡️ Build success in
|
|
10
|
+
@scm-manager/ui-forms:build: ESM ⚡️ Build success in 163ms
|
|
11
11
|
@scm-manager/ui-forms:build: CJS build/index.js 64.82 KB
|
|
12
|
-
@scm-manager/ui-forms:build: CJS ⚡️ Build success in
|
|
12
|
+
@scm-manager/ui-forms:build: CJS ⚡️ Build success in 147ms
|
|
13
13
|
@scm-manager/ui-forms:build: DTS Build start
|
|
14
|
-
@scm-manager/ui-forms:build: DTS ⚡️ Build success in
|
|
14
|
+
@scm-manager/ui-forms:build: DTS ⚡️ Build success in 20101ms
|
|
15
15
|
@scm-manager/ui-forms:build: DTS build/index.d.ts 74.98 KB
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scm-manager/ui-forms",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "3.0.0-20231029-183202",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
7
7
|
"module": "build/index.mjs",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"@scm-manager/eslint-config": "^2.16.0",
|
|
17
17
|
"@scm-manager/prettier-config": "^2.10.1",
|
|
18
18
|
"@scm-manager/tsconfig": "^2.13.0",
|
|
19
|
-
"@scm-manager/ui-styles": "
|
|
19
|
+
"@scm-manager/ui-styles": "3.0.0-20231029-183202",
|
|
20
20
|
"@storybook/addon-actions": "^6.5.10",
|
|
21
21
|
"@storybook/addon-docs": "^6.5.14",
|
|
22
22
|
"@storybook/addon-essentials": "^6.5.10",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"tsup": "^6.2.3"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
|
-
"@scm-manager/ui-components": "
|
|
35
|
+
"@scm-manager/ui-components": "3.0.0-20231029-183202",
|
|
36
36
|
"classnames": "^2.3.1",
|
|
37
37
|
"react": "17",
|
|
38
38
|
"react-hook-form": "7",
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
"@radix-ui/react-radio-group": "^1.1.3",
|
|
46
46
|
"@radix-ui/react-slot": "^1.0.1",
|
|
47
47
|
"@radix-ui/react-visually-hidden": "^1.0.3",
|
|
48
|
-
"@scm-manager/ui-api": "
|
|
49
|
-
"@scm-manager/ui-buttons": "
|
|
50
|
-
"@scm-manager/ui-overlays": "
|
|
48
|
+
"@scm-manager/ui-api": "3.0.0-20231029-183202",
|
|
49
|
+
"@scm-manager/ui-buttons": "3.0.0-20231029-183202",
|
|
50
|
+
"@scm-manager/ui-overlays": "3.0.0-20231029-183202"
|
|
51
51
|
},
|
|
52
52
|
"prettier": "@scm-manager/prettier-config",
|
|
53
53
|
"eslintConfig": {
|
|
@@ -162,7 +162,7 @@ function ComboboxComponent<T>(props: ComboboxProps<T>, ref: ForwardedRef<HTMLInp
|
|
|
162
162
|
onBlur={props.onBlur}
|
|
163
163
|
autoComplete="off"
|
|
164
164
|
onKeyDown={(e) => {
|
|
165
|
-
props.onKeyDown && props.onKeyDown(e)
|
|
165
|
+
props.onKeyDown && props.onKeyDown(e);
|
|
166
166
|
}}
|
|
167
167
|
{...createAttributesForTesting(props.testId)}
|
|
168
168
|
/>
|