reshaped 3.8.0-canary.1 → 3.8.0-canary.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/CHANGELOG.md
CHANGED
@@ -1,47 +1,36 @@
|
|
1
|
-
## 3.8.0-canary.
|
2
|
-
|
3
|
-
|
4
|
-
### Bug Fixes
|
5
|
-
|
6
|
-
* **Flyout:** fixed fallbackAdjustLayout positioning ([eaa9739](https://github.com/reshaped-ui/reshaped/commit/eaa9739bd340a60e942e3689fef46fa3ccd94f31))
|
7
|
-
* **PinField:** fixed incorrect overwrite behavior edge case when default value is provided ([8a3d269](https://github.com/reshaped-ui/reshaped/commit/8a3d269fbffad5530669445f2f0c9e107ac93eb0))
|
1
|
+
## 3.8.0-canary.2
|
8
2
|
|
9
3
|
|
10
4
|
### Features
|
11
5
|
|
12
|
-
* **
|
13
|
-
* **Flyout:** added fallbackAdjustLayout ([88255e4](https://github.com/reshaped-ui/reshaped/commit/88255e47b71e9166db31a5f54239be2ea59c2fb0))
|
14
|
-
|
15
|
-
## 3.8.1-canary.0
|
6
|
+
* **ToggleButton:** relaxed variant types ([416ddaa](https://github.com/reshaped-ui/reshaped/commit/416ddaa3ebbeed9e12acfdc7e0fb3027943dfbbf))
|
16
7
|
|
8
|
+
## 3.8.0-canary.1
|
17
9
|
|
18
10
|
### Bug Fixes
|
19
11
|
|
20
|
-
|
21
|
-
|
22
|
-
|
12
|
+
- **Flyout:** fixed fallbackAdjustLayout positioning ([eaa9739](https://github.com/reshaped-ui/reshaped/commit/eaa9739bd340a60e942e3689fef46fa3ccd94f31))
|
13
|
+
- **PinField:** fixed incorrect overwrite behavior edge case when default value is provided ([8a3d269](https://github.com/reshaped-ui/reshaped/commit/8a3d269fbffad5530669445f2f0c9e107ac93eb0))
|
23
14
|
|
24
15
|
### Features
|
25
16
|
|
26
|
-
|
27
|
-
|
17
|
+
- **flyout:** add shiftIntoView fallback for constrained containers ([7547e9a](https://github.com/reshaped-ui/reshaped/commit/7547e9ad7bd445a49463b60f87d87fcd8eed430b)), closes [#423](https://github.com/reshaped-ui/reshaped/issues/423)
|
18
|
+
- **Flyout:** added fallbackAdjustLayout ([88255e4](https://github.com/reshaped-ui/reshaped/commit/88255e47b71e9166db31a5f54239be2ea59c2fb0))
|
28
19
|
|
29
20
|
## 3.8.0-canary.0
|
30
21
|
|
31
|
-
|
32
22
|
### Bug Fixes
|
33
23
|
|
34
|
-
|
35
|
-
|
36
|
-
|
24
|
+
- **Flyout:** added support for attributes.style ([24a414f](https://github.com/formaat-design/reshaped-source/commit/24a414fa050bd3f6f91d0d0dae37030dd1677aba))
|
25
|
+
- **Theme:** added additional check when used without name and there is no parent theme ([3cca4d1](https://github.com/formaat-design/reshaped-source/commit/3cca4d1ea0bb1a33f706bdc74f28f8f955a6a841))
|
37
26
|
|
38
27
|
### Features
|
39
28
|
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
29
|
+
- **Grid:** added columnGap and rowGap properties ([3aaaea6](https://github.com/formaat-design/reshaped-source/commit/3aaaea66e497636638397b2672e57e5d0a8be9ee))
|
30
|
+
- **ProgressIndicator:** updated the dots design and simplified the implementation ([e881361](https://github.com/formaat-design/reshaped-source/commit/e881361880b8d6381f56431078b253a78cec293b))
|
31
|
+
- remove chromatic token ([18685a7](https://github.com/formaat-design/reshaped-source/commit/18685a7b100c85094cc64d34a47f605bbb41c580))
|
32
|
+
- **Tabs:** removed hover effect from the active tabs ([5708280](https://github.com/formaat-design/reshaped-source/commit/5708280515f164b1b21c8ab5ea84eaadaa7f5379))
|
33
|
+
- **themes:** added transform helper to the exports ([ca8dd87](https://github.com/formaat-design/reshaped-source/commit/ca8dd870974920da01b93dfcff16e918080b0125))
|
45
34
|
|
46
35
|
## 3.7.4
|
47
36
|
|
@@ -3,7 +3,7 @@ type BaseProps = Omit<ButtonProps, "variant" | "higlighted"> & {
|
|
3
3
|
/** Component render variant
|
4
4
|
* @default "outline"
|
5
5
|
*/
|
6
|
-
variant?:
|
6
|
+
variant?: ButtonProps["variant"];
|
7
7
|
/** Value of the toggle button, enables controlled mode for the ToggleButtonGroup */
|
8
8
|
value?: string;
|
9
9
|
/** Callback when the toggle button value changes */
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "reshaped",
|
3
3
|
"description": "Professionally crafted design system in React & Figma for building products of any scale and complexity",
|
4
|
-
"version": "3.8.0-canary.
|
4
|
+
"version": "3.8.0-canary.2",
|
5
5
|
"license": "MIT",
|
6
6
|
"email": "hello@reshaped.so",
|
7
7
|
"homepage": "https://reshaped.so",
|