Skip to content

Commit

Permalink
refactor: Update form field components to align with the new design s…
Browse files Browse the repository at this point in the history
…pec (#842)

* Remove unused `secondaryLabel` from form field components

* Merge `hint`/`message` into `message` in form field components

* Review form field components story controls

* Update `readOnly` style for `TextField` and `TextArea` components

* Add option to only disable manual resize to `TextArea` component

* Add character count with limit to `TextField` and `TextArea` components

* Add deprecation notice to `auxiliaryLabel` on `BaseField`

* Add `endSlot` support to `PasswordField`

* docs: Update `CHANGELOG.md`

* chore: Bump version to `v26.0.0`

* build: TEMPORARY FOR TESTING PURPOSES
  • Loading branch information
rfgamaral authored Oct 7, 2024
1 parent c010b85 commit cc876ef
Show file tree
Hide file tree
Showing 570 changed files with 57,971 additions and 372 deletions.
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ node_modules
.cache
.eslintcache
.env
dist/
es/
lib/
docs/
/styles/
coverage/
.vscode/
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

Reactist follows [semantic versioning](https://semver.org/) and doesn't introduce breaking changes (API-wise) in minor or patch releases. However, the appearance of a component might change in a minor or patch release so keep an eye on redesigns and make sure your app still looks and feels like you expect it.

# v26.0.0

- [BREAKING] Remove unused `secondaryLabel` from `TexTfield`, `PasswordField`, `SelectField`, `TextArea`, and `SwitchField`.
- [BREAKING] Remove `hint` from from `TexTfield`, `PasswordField`, `SelectField`, `TextArea`, and `SwitchField`.
- Please use `message` instead.
- [Feat] Update read only style for `TextField` and `TextArea` when `readOnly` is `true`.
- [Feat] Add `disableResize` option to `TextArea` to disallow manual resizing.
- [Feat] Add character count (with limit) to `TextField` and `TextArea`.
- Will show a character count indicator below the field when `maxLength` is set.
- [Feat] Add `endSlot` support to `PasswordField`.
- [Chore] Deprecate `auxiliaryLabel` from `TexTfield`, `PasswordField`, `SelectField`, and `TextArea`.

# v25.2.0

- [Feat] Add `ref` support to `ModalBody` component
Expand Down
3,915 changes: 3,915 additions & 0 deletions dist/reactist.cjs.development.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/reactist.cjs.development.js.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions dist/reactist.cjs.production.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/reactist.cjs.production.min.js.map

Large diffs are not rendered by default.

96 changes: 96 additions & 0 deletions es/_virtual/_rollupPluginBabelHelpers.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions es/_virtual/_rollupPluginBabelHelpers.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

72 changes: 72 additions & 0 deletions es/alert/alert.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions es/alert/alert.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions es/alert/alert.module.css.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions es/alert/alert.module.css.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

83 changes: 83 additions & 0 deletions es/avatar/avatar.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions es/avatar/avatar.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 30 additions & 0 deletions es/avatar/avatar.module.css.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions es/avatar/avatar.module.css.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 33 additions & 0 deletions es/avatar/utils.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit cc876ef

Please sign in to comment.