reshaped 2.5.9 → 2.6.0
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 +53 -0
- package/LICENSE-SOURCE.md +40 -0
- package/bundle.css +1 -1
- package/bundle.d.ts +2 -0
- package/bundle.js +15 -15
- package/components/FileUpload/FileUpload.d.ts +7 -0
- package/components/FileUpload/FileUpload.js +56 -0
- package/components/FileUpload/FileUpload.module.css +1 -0
- package/components/FileUpload/FileUpload.types.d.ts +13 -0
- package/components/FileUpload/FileUpload.types.js +1 -0
- package/components/FileUpload/index.d.ts +2 -0
- package/components/FileUpload/index.js +1 -0
- package/components/FileUpload/tests/FileUpload.stories.d.ts +6 -0
- package/components/FileUpload/tests/FileUpload.stories.js +43 -0
- package/components/HiddenVisually/HiddenVisually.module.css +1 -1
- package/components/TextField/tests/TextField.stories.js +4 -0
- package/components/View/View.module.css +1 -1
- package/index.d.ts +2 -0
- package/index.js +1 -0
- package/package.json +21 -21
package/CHANGELOG.md
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## [2.5.9](https://github.com/formaat-design/reshaped-source/compare/v2.5.8...v2.5.9) (2023-11-07)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* **Breadcrumbs:** fixed breadcrumbs rendering when used in RSC ([98c14bc](https://github.com/formaat-design/reshaped-source/commit/98c14bc885707431ea2421fe865e9acf436ec650))
|
9
|
+
* **Themes:** added a way control individual "on" colors to fix themes with non-gray foreground color ([506e38c](https://github.com/formaat-design/reshaped-source/commit/506e38c4f0b3b45ce8c240f5fac6304a427de2b1))
|
10
|
+
|
11
|
+
## [2.5.8](https://github.com/formaat-design/reshaped-source/compare/v2.5.7...v2.5.8) (2023-11-04)
|
12
|
+
|
13
|
+
|
14
|
+
### Bug Fixes
|
15
|
+
|
16
|
+
* **Select:** fixed custom trigger start padding when used without slots ([e3c81a9](https://github.com/formaat-design/reshaped-source/commit/e3c81a92c13f159ecdb9a529e832ea25cd0ec6a5))
|
17
|
+
|
18
|
+
## [2.5.7](https://github.com/formaat-design/reshaped-source/compare/v2.5.6...v2.5.7) (2023-11-04)
|
19
|
+
|
20
|
+
|
21
|
+
### Bug Fixes
|
22
|
+
|
23
|
+
* **Popover:** fixed default render styles and improved transition for trigger width ([e4e4584](https://github.com/formaat-design/reshaped-source/commit/e4e4584b34d6d6b9f43107b6a6c591a6c549542d))
|
24
|
+
|
25
|
+
## [2.5.6](https://github.com/formaat-design/reshaped-source/compare/v2.5.5...v2.5.6) (2023-11-01)
|
26
|
+
|
27
|
+
|
28
|
+
### Bug Fixes
|
29
|
+
|
30
|
+
* **Flyout:** added support for automatic positioning inside position: fixed parent ([04c8239](https://github.com/formaat-design/reshaped-source/commit/04c8239264397b1aae90bbef3cb6bd6f75227707))
|
31
|
+
* **Toast:** removed logs ([15ee2c5](https://github.com/formaat-design/reshaped-source/commit/15ee2c5fe758287c11fccaef0fc49a36a38cf0bb))
|
32
|
+
|
33
|
+
## [2.5.5](https://github.com/formaat-design/reshaped-source/compare/v2.5.4...v2.5.5) (2023-10-31)
|
34
|
+
|
35
|
+
|
36
|
+
### Bug Fixes
|
37
|
+
|
38
|
+
* **deps:** update dependency autoprefixer to v10.4.16 ([f9a4361](https://github.com/formaat-design/reshaped-source/commit/f9a4361398eb17b8c0675e3f1259dfb731723fe1))
|
39
|
+
|
40
|
+
# 2.5.4 (2023-10-31)
|
41
|
+
|
42
|
+
### Bug Fixes
|
43
|
+
|
44
|
+
- **deps:** update dependency autoprefixer to v10.4.15 ([66b415c](https://github.com/formaat-design/reshaped-source/commit/66b415c308544779017b6799d9432c9ab168ef38))
|
45
|
+
- **Themes:** improved baseThemeDefiniion typings ([1bbb457](https://github.com/formaat-design/reshaped-source/commit/1bbb457c8ba1e76ced1a488aec308c8a7b14525e)), closes [#183](https://github.com/formaat-design/reshaped-source/issues/183)
|
46
|
+
|
47
|
+
2.6
|
48
|
+
|
49
|
+
* TextArea
|
50
|
+
- Added support for passing `rows` to `inputAttributes`
|
51
|
+
- Updated onFocus and onBlur typings to use correct html element reference
|
52
|
+
* TextField
|
53
|
+
- Updated onFocus and onBlur typings to use correct html element reference
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# Reshaped Pro License
|
2
|
+
|
3
|
+
Reshaped grants you a non-exclusive license and permission to use the Design system.
|
4
|
+
When using the Reshaped Pro License it grants the same permissions to all Employees and Contractors of the Licensee to access and use the Design system.
|
5
|
+
|
6
|
+
Reshaped Pro license is only including the Design system source code.
|
7
|
+
Reshaped package publicly distributed on NPM is using a separate MIT license and is provided together with the package when it's installed.
|
8
|
+
|
9
|
+
You can:
|
10
|
+
|
11
|
+
- Modify the Design system components to create custom components. Those components are subject to this license.
|
12
|
+
- Use the Design system to create unlimited Products for yourself, your company or a Client.
|
13
|
+
- Sell products created with the Design system to the Users.
|
14
|
+
|
15
|
+
You cannot:
|
16
|
+
|
17
|
+
- Share your access to the Design system with other people.
|
18
|
+
- Redistribute the Design System under other names.
|
19
|
+
- Reimplement the Design System using other frameworks and make it available publicly or for sale.
|
20
|
+
- Distribute design kits based on the Design system.
|
21
|
+
- Distribute design or development tools for building Products using the Design system components.
|
22
|
+
- Distribute page templates or UI libraries based on the Design system.
|
23
|
+
- Create any Product that is not the sole property of either you, your company or a Client. For example your Employees and Contractors can't use your company Reshaped Pro license to build their own websites or side projects.
|
24
|
+
|
25
|
+
## License Definitions
|
26
|
+
|
27
|
+
- Licensee is a person or a business entity who has purchased a License.
|
28
|
+
- Design system is the source code and design assets made available to the Licensee after purchasing an Reshaped license.
|
29
|
+
- Product is any artifact produced that incorporates the Design system.
|
30
|
+
- User is a user of a Product.
|
31
|
+
- Employee is a full-time or part-time employee of the Licensee.
|
32
|
+
- Contractor is an individual or business entity contracted to perform services for the Licensee.
|
33
|
+
- Client is an individual or entity receiving custom professional services directly from the Licensee, produced specifically for that individual or entity.
|
34
|
+
|
35
|
+
The ownership of the Design system remains with the Reshaped development team.
|
36
|
+
You are required to abide by the licensing terms to avoid termination in case of non-compliance with the agreed terms.
|
37
|
+
|
38
|
+
---
|
39
|
+
|
40
|
+
Got any further questions? [Send us an email](mailto:hello@reshaped.so)
|