@vygruppen/spor-react 12.5.0 → 12.5.2
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 +12 -12
- package/.turbo/turbo-postinstall.log +3 -2
- package/CHANGELOG.md +12 -0
- package/dist/index.d.mts +1 -7
- package/dist/index.d.ts +1 -7
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/input/Combobox.tsx +1 -0
- package/src/input/PhoneNumberInput.tsx +1 -1
package/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@12.5.
|
2
|
+
> @vygruppen/spor-react@12.5.2 build /home/runner/work/spor/spor/packages/spor-react
|
3
3
|
> tsup
|
4
4
|
|
5
5
|
CLI Building entry: src/index.tsx, src/icons/index.tsx
|
@@ -10,18 +10,18 @@ CLI Target: node16
|
|
10
10
|
CJS Build start
|
11
11
|
ESM Build start
|
12
12
|
DTS Build start
|
13
|
-
|
14
|
-
ESM dist/icons/index.mjs 110.00 B
|
15
|
-
ESM dist/index.mjs.map 622.79 KB
|
16
|
-
ESM dist/icons/index.mjs.map 157.00 B
|
17
|
-
ESM ⚡️ Build success in 2974ms
|
13
|
+
CJS dist/index.js 311.03 KB
|
18
14
|
CJS dist/icons/index.js 380.00 B
|
19
|
-
CJS dist/index.js
|
15
|
+
CJS dist/index.js.map 622.85 KB
|
20
16
|
CJS dist/icons/index.js.map 157.00 B
|
21
|
-
CJS
|
22
|
-
|
23
|
-
|
17
|
+
CJS ⚡️ Build success in 2636ms
|
18
|
+
ESM dist/index.mjs 290.49 KB
|
19
|
+
ESM dist/icons/index.mjs 110.00 B
|
20
|
+
ESM dist/index.mjs.map 622.85 KB
|
21
|
+
ESM dist/icons/index.mjs.map 157.00 B
|
22
|
+
ESM ⚡️ Build success in 2634ms
|
23
|
+
DTS ⚡️ Build success in 29169ms
|
24
24
|
DTS dist/icons/index.d.ts 44.00 B
|
25
|
-
DTS dist/index.d.ts 153.
|
25
|
+
DTS dist/index.d.ts 153.53 KB
|
26
26
|
DTS dist/icons/index.d.mts 44.00 B
|
27
|
-
DTS dist/index.d.mts 153.
|
27
|
+
DTS dist/index.d.mts 153.53 KB
|
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@12.5.
|
2
|
+
> @vygruppen/spor-react@12.5.2 postinstall /home/runner/work/spor/spor/packages/spor-react
|
3
3
|
> chakra typegen src/theme/index.ts
|
4
4
|
|
5
5
|
[90m┌[39m Chakra CLI ⚡️
|
@@ -12,7 +12,8 @@
|
|
12
12
|
[?25h[?25l[90m│[39m
|
13
13
|
[32m◇[39m ✅ Generated utility typings
|
14
14
|
[?25h[?25l[90m│[39m
|
15
|
-
[
|
15
|
+
[35m◒[39m Generating token types...
|
16
|
+
[999D[J[32m◇[39m ✅ Generated token typings
|
16
17
|
[?25h[?25l[90m│[39m
|
17
18
|
[35m◒[39m Generating system types...
|
18
19
|
[999D[J[32m◇[39m ✅ Generated system types
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 12.5.2
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- 0e56389: Fix typing of value field on PhoneNumberInput
|
8
|
+
|
9
|
+
## 12.5.1
|
10
|
+
|
11
|
+
### Patch Changes
|
12
|
+
|
13
|
+
- 395a22b: Pass listbox props to autocomplete listbox
|
14
|
+
|
3
15
|
## 12.5.0
|
4
16
|
|
5
17
|
### Minor Changes
|
package/dist/index.d.mts
CHANGED
@@ -1503,13 +1503,7 @@ type CountryCodeAndPhoneNumber = {
|
|
1503
1503
|
* />
|
1504
1504
|
* ```
|
1505
1505
|
*/
|
1506
|
-
declare const PhoneNumberInput: React$1.ForwardRefExoticComponent<
|
1507
|
-
children?: React$1.ReactNode | undefined;
|
1508
|
-
} & FieldBaseProps & {
|
1509
|
-
label: React$1.ReactNode;
|
1510
|
-
startElement?: React.ReactNode;
|
1511
|
-
endElement?: React.ReactNode;
|
1512
|
-
} & {
|
1506
|
+
declare const PhoneNumberInput: React$1.ForwardRefExoticComponent<Omit<InputProps, "value"> & {
|
1513
1507
|
/** The label. Defaults to a localized version of "Phone number" */
|
1514
1508
|
label?: string;
|
1515
1509
|
/** Callback for when the country code or phone number changes */
|
package/dist/index.d.ts
CHANGED
@@ -1503,13 +1503,7 @@ type CountryCodeAndPhoneNumber = {
|
|
1503
1503
|
* />
|
1504
1504
|
* ```
|
1505
1505
|
*/
|
1506
|
-
declare const PhoneNumberInput: React$1.ForwardRefExoticComponent<
|
1507
|
-
children?: React$1.ReactNode | undefined;
|
1508
|
-
} & FieldBaseProps & {
|
1509
|
-
label: React$1.ReactNode;
|
1510
|
-
startElement?: React.ReactNode;
|
1511
|
-
endElement?: React.ReactNode;
|
1512
|
-
} & {
|
1506
|
+
declare const PhoneNumberInput: React$1.ForwardRefExoticComponent<Omit<InputProps, "value"> & {
|
1513
1507
|
/** The label. Defaults to a localized version of "Phone number" */
|
1514
1508
|
label?: string;
|
1515
1509
|
/** Callback for when the country code or phone number changes */
|
package/dist/index.js
CHANGED