reshaped 3.8.0-canary.13 → 3.8.0-canary.15

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.
@@ -87,7 +87,7 @@ export type Props<TagName extends keyof React.JSX.IntrinsicElements = "div"> = {
87
87
  /** z-index style */
88
88
  zIndex?: number;
89
89
  /** Shadow style, based on the shadow tokens */
90
- shadow?: "raised" | "overlay" | "inset";
90
+ shadow?: "raised" | "overlay";
91
91
  /** Overflow style */
92
92
  overflow?: "hidden" | "auto";
93
93
  /** Add transition for the properties */
package/package.json CHANGED
@@ -1,202 +1,195 @@
1
1
  {
2
- "name": "reshaped",
3
- "description": "Professionally crafted design system in React & Figma for building products of any scale and complexity",
4
- "version": "3.8.0-canary.13",
5
- "license": "MIT",
6
- "email": "hello@reshaped.so",
7
- "homepage": "https://reshaped.so",
8
- "keywords": [
9
- "react",
10
- "ui",
11
- "design-system",
12
- "react-components",
13
- "component-library",
14
- "components",
15
- "css-modules",
16
- "figma",
17
- "ui-kit",
18
- "accessibility",
19
- "accessible"
20
- ],
21
- "repository": {
22
- "type": "git",
23
- "url": "https://github.com/reshaped-ui/reshaped.git"
24
- },
25
- "bugs": {
26
- "url": "https://github.com/reshaped-ui/reshaped/issues"
27
- },
28
- "author": {
29
- "name": "Dmitry Belyaev",
30
- "email": "blv.dmitry@gmail.com",
31
- "url": "https://reshaped.so"
32
- },
33
- "sideEffects": [
34
- "*.css"
35
- ],
36
- "files": [
37
- "bin/cli.js",
38
- "dist/**/*"
39
- ],
40
- "types": "./dist/index.d.ts",
41
- "exports": {
42
- ".": {
43
- "types": "./dist/index.d.ts",
44
- "import": "./dist/index.js"
45
- },
46
- "./themes": {
47
- "types": "./dist/themes/index.d.ts",
48
- "default": "./dist/cjs/themes/index.js"
49
- },
50
- "./config/postcss": {
51
- "types": "./dist/config/postcss.d.ts",
52
- "default": "./dist/cjs/config/postcss.js"
53
- },
54
- "./config/tailwind": {
55
- "types": "./dist/config/tailwind.d.ts",
56
- "default": "./dist/cjs/config/tailwind.js"
57
- },
58
- "./bundle": {
59
- "types": "./dist/bundle.d.ts",
60
- "import": "./dist/bundle.js"
61
- },
62
- "./bundle.css": "./dist/bundle.css",
63
- "./themes/reshaped/*": "./dist/themes/reshaped/*",
64
- "./themes/slate/*": "./dist/themes/slate/*",
65
- "./themes/figma/*": "./dist/themes/figma/*",
66
- "./themes/fragments/twitter/*": "./dist/themes/fragments/twitter/*",
67
- "./package.json": "./package.json"
68
- },
69
- "bin": {
70
- "reshaped": "./bin/cli.js"
71
- },
72
- "scripts": {
73
- "dev": "storybook dev -p 3001 --disable-telemetry",
74
- "clean": "sh ./bin/clean.sh",
75
- "build": "pnpm clean && pnpm build:stories && pnpm build:esm && pnpm build:css && pnpm build:cjs && pnpm build:bundle",
76
- "build:themes": "node bin/cli.js theming --config dist/cjs/cli/theming/reshaped.config.js --output src/themes",
77
- "build:esm": "tsc -p tsconfig.esm.json && resolve-tspaths -p tsconfig.esm.json",
78
- "build:cjs": "tsc -p tsconfig.cjs.json && resolve-tspaths -p tsconfig.cjs.json && node ./bin/format-cjs-build.js",
79
- "build:css": "postcss \"src/**/*.css\" --dir dist --base src --config tools/build",
80
- "build:stories": "tsc -p tsconfig.stories.json && resolve-tspaths -p tsconfig.stories.json",
81
- "build:bundle": "vite build && cp dist/index.d.ts dist/bundle.d.ts",
82
- "build:size": "pnpm clean && pnpm build:esm && pnpm build:bundle",
83
- "build:storybook": "storybook build -o dist/app --disable-telemetry",
84
- "build:chromatic": "STORYBOOK_ENV=chromatic storybook build",
85
- "changelog": "node bin/generate-changelog.js",
86
- "version": "pnpm changelog && git add CHANGELOG.md",
87
- "release": "node bin/release.js",
88
- "release:patch": "node bin/release.js patch",
89
- "release:minor": "node bin/release.js minor",
90
- "release:major": "node bin/release.js major",
91
- "release:lib": "pnpm build && pnpm publish",
92
- "release:canary": "pnpm build && yarn publish --tag canary && git push --follow-tags",
93
- "release:test": "pnpm build && pnpm pack --out reshaped-test.tgz",
94
- "release:copy": "sh ./bin/release-copy.sh",
95
- "chromatic": "chromatic -b build:chromatic --project-token=$(cat .chromatic)",
96
- "test:vrt": "pnpm chromatic",
97
- "test:vrt:turbo": "pnpm chromatic --only-changed",
98
- "test:browser": "vitest run --project=storybook",
99
- "test:unit": "vitest run --project=unit",
100
- "test:size": "size-limit",
101
- "lint": "pnpm lint:js && pnpm lint:css",
102
- "lint:js": "eslint './src/**/*.{ts,tsx}' --fix",
103
- "lint:css": "stylelint 'src/**/*.css'",
104
- "commit": "git-cz"
105
- },
106
- "browserslist": [
107
- "defaults and not IE 11"
108
- ],
109
- "devDependencies": {
110
- "@commitlint/cli": "19.8.1",
111
- "@commitlint/config-conventional": "19.8.1",
112
- "@commitlint/types": "19.8.1",
113
- "@eslint/js": "9.37.0",
114
- "@size-limit/preset-big-lib": "11.2.0",
115
- "@storybook/addon-a11y": "9.1.10",
116
- "@storybook/addon-docs": "9.1.10",
117
- "@storybook/addon-vitest": "9.1.10",
118
- "@storybook/react": "9.1.10",
119
- "@storybook/react-vite": "9.1.10",
120
- "@testing-library/user-event": "14.6.1",
121
- "@types/culori": "4.0.1",
122
- "@types/events": "3.0.3",
123
- "@types/node": "24.7.0",
124
- "@types/react": "19.2.1",
125
- "@types/react-dom": "19.2.0",
126
- "@vitejs/plugin-react": "4.6.0",
127
- "@vitest/browser": "3.2.4",
128
- "@vitest/coverage-istanbul": "3.2.4",
129
- "@vitest/coverage-v8": "3.2.4",
130
- "chromatic": "13.3.0",
131
- "conventional-changelog-cli": "5.0.0",
132
- "cz-conventional-changelog": "3.3.0",
133
- "eslint": "9.37.0",
134
- "eslint-config-prettier": "10.1.8",
135
- "eslint-plugin-jsx-a11y": "6.10.2",
136
- "eslint-plugin-prettier": "5.5.4",
137
- "eslint-plugin-react": "7.37.5",
138
- "eslint-plugin-react-hooks": "6.1.1",
139
- "lefthook": "1.13.6",
140
- "playwright": "1.56.0",
141
- "postcss": "8.5.6",
142
- "postcss-cli": "11.0.1",
143
- "postcss-each": "1.1.0",
144
- "postcss-nested": "7.0.2",
145
- "prettier": "3.6.2",
146
- "react": "18",
147
- "react-dom": "18",
148
- "react-shadow": "20.6.0",
149
- "resolve-tspaths": "0.8.23",
150
- "size-limit": "11.2.0",
151
- "storybook": "9.1.10",
152
- "stylelint": "16.25.0",
153
- "stylelint-config-prettier": "9.0.5",
154
- "stylelint-config-standard": "39.0.1",
155
- "ts-node": "10.9.2",
156
- "typescript": "5.9.3",
157
- "typescript-eslint": "8.46.0",
158
- "vite": "7.1.9",
159
- "vite-tsconfig-paths": "5.1.4",
160
- "vitest": "3.2.4",
161
- "vitest-browser-react": "1.0.1"
162
- },
163
- "peerDependencies": {
164
- "postcss": "^8",
165
- "react": "^18 || ^19",
166
- "react-dom": "^18 || ^19"
167
- },
168
- "dependencies": {
169
- "@csstools/postcss-global-data": "3.1.0",
170
- "chalk": "4.1.2",
171
- "commander": "14.0.1",
172
- "cssnano": "7.1.1",
173
- "csstype": "3.1.3",
174
- "culori": "4.0.2",
175
- "postcss-custom-media": "11.0.6"
176
- },
177
- "size-limit": [
178
- {
179
- "name": "Library / JS",
180
- "path": "dist/bundle.js",
181
- "webpack": false
182
- },
183
- {
184
- "name": "Library / CSS",
185
- "path": "dist/bundle.css",
186
- "webpack": false
187
- },
188
- {
189
- "name": "Theming / JS",
190
- "path": "dist/tests/themingWithoutDefinition.js",
191
- "webpack": true
192
- },
193
- {
194
- "name": "Theming with a default theme definition / JS",
195
- "path": "dist/tests/themingWithDefinition.js",
196
- "webpack": true
197
- }
198
- ],
199
- "engines": {
200
- "node": ">=22"
201
- }
202
- }
2
+ "name": "reshaped",
3
+ "description": "Professionally crafted design system in React & Figma for building products of any scale and complexity",
4
+ "version": "3.8.0-canary.15",
5
+ "license": "MIT",
6
+ "email": "hello@reshaped.so",
7
+ "homepage": "https://reshaped.so",
8
+ "keywords": [
9
+ "react",
10
+ "ui",
11
+ "design-system",
12
+ "react-components",
13
+ "component-library",
14
+ "components",
15
+ "css-modules",
16
+ "figma",
17
+ "ui-kit",
18
+ "accessibility",
19
+ "accessible"
20
+ ],
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "https://github.com/reshaped-ui/reshaped.git"
24
+ },
25
+ "bugs": {
26
+ "url": "https://github.com/reshaped-ui/reshaped/issues"
27
+ },
28
+ "author": {
29
+ "name": "Dmitry Belyaev",
30
+ "email": "blv.dmitry@gmail.com",
31
+ "url": "https://reshaped.so"
32
+ },
33
+ "sideEffects": [
34
+ "*.css"
35
+ ],
36
+ "files": [
37
+ "bin/cli.js",
38
+ "dist/**/*"
39
+ ],
40
+ "types": "./dist/index.d.ts",
41
+ "exports": {
42
+ ".": {
43
+ "types": "./dist/index.d.ts",
44
+ "import": "./dist/index.js"
45
+ },
46
+ "./themes": {
47
+ "types": "./dist/themes/index.d.ts",
48
+ "default": "./dist/cjs/themes/index.js"
49
+ },
50
+ "./config/postcss": {
51
+ "types": "./dist/config/postcss.d.ts",
52
+ "default": "./dist/cjs/config/postcss.js"
53
+ },
54
+ "./config/tailwind": {
55
+ "types": "./dist/config/tailwind.d.ts",
56
+ "default": "./dist/cjs/config/tailwind.js"
57
+ },
58
+ "./bundle": {
59
+ "types": "./dist/bundle.d.ts",
60
+ "import": "./dist/bundle.js"
61
+ },
62
+ "./bundle.css": "./dist/bundle.css",
63
+ "./themes/reshaped/*": "./dist/themes/reshaped/*",
64
+ "./themes/slate/*": "./dist/themes/slate/*",
65
+ "./themes/figma/*": "./dist/themes/figma/*",
66
+ "./themes/fragments/twitter/*": "./dist/themes/fragments/twitter/*",
67
+ "./package.json": "./package.json"
68
+ },
69
+ "bin": {
70
+ "reshaped": "./bin/cli.js"
71
+ },
72
+ "browserslist": [
73
+ "defaults and not IE 11"
74
+ ],
75
+ "devDependencies": {
76
+ "@commitlint/cli": "19.8.1",
77
+ "@commitlint/config-conventional": "19.8.1",
78
+ "@commitlint/types": "19.8.1",
79
+ "@eslint/js": "9.37.0",
80
+ "@size-limit/preset-big-lib": "11.2.0",
81
+ "@storybook/addon-a11y": "9.1.10",
82
+ "@storybook/addon-docs": "9.1.10",
83
+ "@storybook/addon-vitest": "9.1.10",
84
+ "@storybook/react": "9.1.10",
85
+ "@storybook/react-vite": "9.1.10",
86
+ "@testing-library/user-event": "14.6.1",
87
+ "@types/culori": "4.0.1",
88
+ "@types/events": "3.0.3",
89
+ "@types/node": "24.7.0",
90
+ "@types/react": "19.2.1",
91
+ "@types/react-dom": "19.2.0",
92
+ "@vitejs/plugin-react": "4.6.0",
93
+ "@vitest/browser": "3.2.4",
94
+ "@vitest/coverage-istanbul": "3.2.4",
95
+ "@vitest/coverage-v8": "3.2.4",
96
+ "@changesets/cli": "2.27.8",
97
+ "chromatic": "13.3.0",
98
+ "eslint": "9.37.0",
99
+ "eslint-config-prettier": "10.1.8",
100
+ "eslint-plugin-jsx-a11y": "6.10.2",
101
+ "eslint-plugin-prettier": "5.5.4",
102
+ "eslint-plugin-react": "7.37.5",
103
+ "eslint-plugin-react-hooks": "6.1.1",
104
+ "lefthook": "1.13.6",
105
+ "playwright": "1.56.0",
106
+ "postcss": "8.5.6",
107
+ "postcss-cli": "11.0.1",
108
+ "postcss-each": "1.1.0",
109
+ "postcss-nested": "7.0.2",
110
+ "prettier": "3.6.2",
111
+ "react": "18",
112
+ "react-dom": "18",
113
+ "react-shadow": "20.6.0",
114
+ "resolve-tspaths": "0.8.23",
115
+ "size-limit": "11.2.0",
116
+ "storybook": "9.1.10",
117
+ "stylelint": "16.25.0",
118
+ "stylelint-config-prettier": "9.0.5",
119
+ "stylelint-config-standard": "39.0.1",
120
+ "ts-node": "10.9.2",
121
+ "typescript": "5.9.3",
122
+ "typescript-eslint": "8.46.0",
123
+ "vite": "7.1.9",
124
+ "vite-tsconfig-paths": "5.1.4",
125
+ "vitest": "3.2.4",
126
+ "vitest-browser-react": "1.0.1"
127
+ },
128
+ "peerDependencies": {
129
+ "postcss": "^8",
130
+ "react": "^18 || ^19",
131
+ "react-dom": "^18 || ^19"
132
+ },
133
+ "dependencies": {
134
+ "@csstools/postcss-global-data": "3.1.0",
135
+ "chalk": "4.1.2",
136
+ "commander": "14.0.1",
137
+ "cssnano": "7.1.1",
138
+ "csstype": "3.1.3",
139
+ "culori": "4.0.2",
140
+ "postcss-custom-media": "11.0.6"
141
+ },
142
+ "size-limit": [
143
+ {
144
+ "name": "Library / JS",
145
+ "path": "dist/bundle.js",
146
+ "webpack": false
147
+ },
148
+ {
149
+ "name": "Library / CSS",
150
+ "path": "dist/bundle.css",
151
+ "webpack": false
152
+ },
153
+ {
154
+ "name": "Theming / JS",
155
+ "path": "dist/tests/themingWithoutDefinition.js",
156
+ "webpack": true
157
+ },
158
+ {
159
+ "name": "Theming with a default theme definition / JS",
160
+ "path": "dist/tests/themingWithDefinition.js",
161
+ "webpack": true
162
+ }
163
+ ],
164
+ "engines": {
165
+ "node": ">=22"
166
+ },
167
+ "scripts": {
168
+ "dev": "storybook dev -p 3001 --disable-telemetry",
169
+ "clean": "sh ./bin/clean.sh",
170
+ "commit": "git-cz",
171
+ "changeset": "changeset",
172
+ "build": "pnpm clean && pnpm build:stories && pnpm build:esm && pnpm build:css && pnpm build:cjs && pnpm build:bundle",
173
+ "build:themes": "node bin/cli.js theming --config dist/cjs/cli/theming/reshaped.config.js --output src/themes",
174
+ "build:esm": "tsc -p tsconfig.esm.json && resolve-tspaths -p tsconfig.esm.json",
175
+ "build:cjs": "tsc -p tsconfig.cjs.json && resolve-tspaths -p tsconfig.cjs.json && node ./bin/format-cjs-build.js",
176
+ "build:css": "postcss \"src/**/*.css\" --dir dist --base src --config tools/build",
177
+ "build:stories": "tsc -p tsconfig.stories.json && resolve-tspaths -p tsconfig.stories.json",
178
+ "build:bundle": "vite build && cp dist/index.d.ts dist/bundle.d.ts",
179
+ "build:size": "pnpm clean && pnpm build:esm && pnpm build:bundle",
180
+ "build:storybook": "storybook build -o dist/app --disable-telemetry",
181
+ "build:chromatic": "STORYBOOK_ENV=chromatic storybook build",
182
+ "release": "sh ./bin/release.sh",
183
+ "release:canary": "sh ./bin/release-canary.sh",
184
+ "release:local": "pnpm build && pnpm pack --out reshaped-local.tgz",
185
+ "chromatic": "chromatic -b build:chromatic --project-token=$(cat .chromatic)",
186
+ "test:vrt": "pnpm chromatic",
187
+ "test:vrt:turbo": "pnpm chromatic --only-changed",
188
+ "test:browser": "vitest run --project=storybook",
189
+ "test:unit": "vitest run --project=unit",
190
+ "test:size": "size-limit",
191
+ "lint": "pnpm lint:js && pnpm lint:css",
192
+ "lint:js": "eslint './src/**/*.{ts,tsx}' --fix",
193
+ "lint:css": "stylelint 'src/**/*.css'"
194
+ }
195
+ }
@@ -1,3 +0,0 @@
1
- ## Additional changelog notes for the release
2
-
3
- - Figma: Migrated to lucide icons
package/CHANGELOG.md DELETED
@@ -1,167 +0,0 @@
1
- ## 3.8.0-canary.13
2
-
3
-
4
- ### Features
5
-
6
- * **ToggleButton,ToggleButtonGroup:** added selectedColor ([#466](https://github.com/reshaped-ui/reshaped/issues/466)) ([e5987e4](https://github.com/reshaped-ui/reshaped/commit/e5987e454dc8cb2b93c45089b68c07a82ed6ac93))
7
- * **useKeyboardArrowNavigation:** added new hook ([#465](https://github.com/reshaped-ui/reshaped/issues/465)) ([104947f](https://github.com/reshaped-ui/reshaped/commit/104947f4bd000b1c62964b1b5ebad764e9bc4c7c))
8
-
9
- ## 3.8.0-canary.12
10
-
11
-
12
- ### Bug Fixes
13
-
14
- * **Text:** fixed text css reset ([f6526ef](https://github.com/reshaped-ui/reshaped/commit/f6526ef1865280c93688deacbb2b50f7ecf8b459))
15
-
16
-
17
- ### Features
18
-
19
- * **TextField:** startSlotPadding and endSlotPadding support ([#464](https://github.com/reshaped-ui/reshaped/issues/464)) ([2f33180](https://github.com/reshaped-ui/reshaped/commit/2f33180630773ebd119fa65575b2ff6c437d7970))
20
-
21
- ## 3.8.0-canary.11
22
-
23
-
24
- ### Bug Fixes
25
-
26
- * **useOnClickOutside:** removed pointerType check blocking ios17 execution ([2f4ec1d](https://github.com/reshaped-ui/reshaped/commit/2f4ec1d8e3aa53fb7107050950c6895559c41e1e))
27
- * **useScrollLock:** fixed reset conflict when using container on ios ([#459](https://github.com/reshaped-ui/reshaped/issues/459)) ([d13c364](https://github.com/reshaped-ui/reshaped/commit/d13c364ee719e6a8b78d4f38167d802220b3e9a6))
28
-
29
-
30
- ### Features
31
-
32
- * **Flyout:** exposed TriggerAttributes types ([#458](https://github.com/reshaped-ui/reshaped/issues/458)) ([b5230ed](https://github.com/reshaped-ui/reshaped/commit/b5230edecc7aac21a8a866b7f7101e1f87f4a213))
33
- * **Text:** added low priority css reset for global styles ([#460](https://github.com/reshaped-ui/reshaped/issues/460)) ([04090ec](https://github.com/reshaped-ui/reshaped/commit/04090ec23285e05975a24e0f2e6789d25aa96de1))
34
-
35
- ## 3.8.0-canary.10
36
-
37
-
38
- ### Bug Fixes
39
-
40
- * **useScrollLock:** fixed reset conflict when using container on ios ([#459](https://github.com/reshaped-ui/reshaped/issues/459)) ([d13c364](https://github.com/reshaped-ui/reshaped/commit/d13c364ee719e6a8b78d4f38167d802220b3e9a6))
41
-
42
-
43
- ### Features
44
-
45
- * **Flyout:** exposed TriggerAttributes types ([#458](https://github.com/reshaped-ui/reshaped/issues/458)) ([b5230ed](https://github.com/reshaped-ui/reshaped/commit/b5230edecc7aac21a8a866b7f7101e1f87f4a213))
46
-
47
- ## 3.8.0-canary.9
48
-
49
-
50
- ### Bug Fixes
51
-
52
- * updated selector for variable based css utilities ([54174aa](https://github.com/reshaped-ui/reshaped/commit/54174aa522fb0a208f5df60add7c8681274bba18))
53
-
54
- ## 3.8.0-canary.8
55
-
56
-
57
- ### Bug Fixes
58
-
59
- * **Modal, Select, TextField, TextArea:** fixed mobile scrolling and border dimensions ([#457](https://github.com/reshaped-ui/reshaped/issues/457)) ([9b422c9](https://github.com/reshaped-ui/reshaped/commit/9b422c98b6ccaeb5687c7dc961540c459a1b5fab))
60
-
61
-
62
- ### Features
63
-
64
- * **Select:** added multiple support ([#453](https://github.com/reshaped-ui/reshaped/issues/453)) ([01eea4a](https://github.com/reshaped-ui/reshaped/commit/01eea4a6b72fc8269f9e7af034a44842267f8119))
65
-
66
- ## 3.8.0-canary.7
67
-
68
-
69
- ### Bug Fixes
70
-
71
- * added child id to all components used in React.Children.map ([179bc06](https://github.com/reshaped-ui/reshaped/commit/179bc06b0c016753de0a92221b711d604101140f))
72
-
73
-
74
- ### Features
75
-
76
- * **DropdownMenu:** pass through more menu props to submenu ([9a46c7e](https://github.com/reshaped-ui/reshaped/commit/9a46c7e3a260c560aec795afa73a87b31fc1dd29))
77
- * **Select:** added custom select support ([d9fa60f](https://github.com/reshaped-ui/reshaped/commit/d9fa60f810abefe18735d23346cb22ba0353e57b))
78
- * **Select:** added keyboard selection ([3734ba0](https://github.com/reshaped-ui/reshaped/commit/3734ba0b0bb59096b70c63b2ecf16f9ece498f2d))
79
- * **Stepper:** make gap property configurable ([6a391e4](https://github.com/reshaped-ui/reshaped/commit/6a391e464db6f78e82a08da2afcbd854baf9aefa))
80
-
81
- ## 3.8.0-canary.6
82
-
83
-
84
- ### Features
85
-
86
- * **Flyout, Popover, DropdownMenu, Autocomplete:** added size calculations for fallbackAdjustLayout, added fallbackMinWidth and fallbackMinHeight ([16cbbd0](https://github.com/reshaped-ui/reshaped/commit/16cbbd0a2ee4c081ac836fec821d686af0305a2f))
87
- * **Flyout, Popover, DropdownMenu, Autocomplete:** added size for fallbackAdjustLayout, fallbackMinWidth and fallbackMinHeight ([a3ef7d0](https://github.com/reshaped-ui/reshaped/commit/a3ef7d0c2b5a258f53c28d764b471db91a5288b6))
88
- * **Icon:** blank icon support ([40dec33](https://github.com/reshaped-ui/reshaped/commit/40dec336607cae9b6ec3d1acad0458e37f552807))
89
-
90
- ## 3.8.0-canary.5
91
-
92
-
93
- ### Bug Fixes
94
-
95
- * **Modal:** additional fix for the nested closing modals ([9da48ba](https://github.com/reshaped-ui/reshaped/commit/9da48ba42c41af914af9da6748997b7c229f8083))
96
-
97
- ## 3.8.0-canary.4
98
-
99
-
100
- ### Bug Fixes
101
-
102
- * **Modal:** fixed nested modals not closing one by one ([e8af4ed](https://github.com/reshaped-ui/reshaped/commit/e8af4ed80b8eabd1b7e5466fd0be6adb90a9d70f))
103
-
104
- ## 3.8.0-canary.3
105
-
106
-
107
- ### Features
108
-
109
- * **Actionable, Link, Button, MenuItem:** added render prop ([104e594](https://github.com/reshaped-ui/reshaped/commit/104e594dcb086fd9f6a38c8085ebceda8a2ec9cf))
110
-
111
- ## 3.8.0-canary.2
112
-
113
-
114
- ### Features
115
-
116
- * **ToggleButton:** relaxed variant types ([416ddaa](https://github.com/reshaped-ui/reshaped/commit/416ddaa3ebbeed9e12acfdc7e0fb3027943dfbbf))
117
-
118
- ## 3.8.0-canary.1
119
-
120
- ### Bug Fixes
121
-
122
- - **Flyout:** fixed fallbackAdjustLayout positioning ([eaa9739](https://github.com/reshaped-ui/reshaped/commit/eaa9739bd340a60e942e3689fef46fa3ccd94f31))
123
- - **PinField:** fixed incorrect overwrite behavior edge case when default value is provided ([8a3d269](https://github.com/reshaped-ui/reshaped/commit/8a3d269fbffad5530669445f2f0c9e107ac93eb0))
124
-
125
- ### Features
126
-
127
- - **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)
128
- - **Flyout:** added fallbackAdjustLayout ([88255e4](https://github.com/reshaped-ui/reshaped/commit/88255e47b71e9166db31a5f54239be2ea59c2fb0))
129
-
130
- ## 3.8.0-canary.0
131
-
132
- ### Bug Fixes
133
-
134
- - **Flyout:** added support for attributes.style ([24a414f](https://github.com/formaat-design/reshaped-source/commit/24a414fa050bd3f6f91d0d0dae37030dd1677aba))
135
- - **Theme:** added additional check when used without name and there is no parent theme ([3cca4d1](https://github.com/formaat-design/reshaped-source/commit/3cca4d1ea0bb1a33f706bdc74f28f8f955a6a841))
136
-
137
- ### Features
138
-
139
- - **Grid:** added columnGap and rowGap properties ([3aaaea6](https://github.com/formaat-design/reshaped-source/commit/3aaaea66e497636638397b2672e57e5d0a8be9ee))
140
- - **ProgressIndicator:** updated the dots design and simplified the implementation ([e881361](https://github.com/formaat-design/reshaped-source/commit/e881361880b8d6381f56431078b253a78cec293b))
141
- - remove chromatic token ([18685a7](https://github.com/formaat-design/reshaped-source/commit/18685a7b100c85094cc64d34a47f605bbb41c580))
142
- - **Tabs:** removed hover effect from the active tabs ([5708280](https://github.com/formaat-design/reshaped-source/commit/5708280515f164b1b21c8ab5ea84eaadaa7f5379))
143
- - **themes:** added transform helper to the exports ([ca8dd87](https://github.com/formaat-design/reshaped-source/commit/ca8dd870974920da01b93dfcff16e918080b0125))
144
-
145
- ## 3.7.4
146
-
147
- ### Bug Fixes
148
-
149
- - **Autocomplete:** correct backspace handling ([c6eb011](https://github.com/formaat-design/reshaped-source/commit/c6eb011f4c8a64aca15997d9194d0b1d12ad2709))
150
-
151
- ## 3.7.3
152
-
153
- ### Bug Fixes
154
-
155
- - **Tabs:** item equal scroll ([d1ce792](https://github.com/formaat-design/reshaped-source/commit/d1ce792de460092a9381fa61276db30209faf324))
156
-
157
- ## 3.7.2
158
-
159
- ### Bug Fixes
160
-
161
- - padding fallbacks ([250fa5b](https://github.com/formaat-design/reshaped-source/commit/250fa5be907c81699ff8a9c2e9646c70194183b6))
162
-
163
- ## 3.8.0
164
-
165
- - Added tsdoc for all components
166
-
167
- - DropdownMenu: Added support for attributes.style on the content