Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: Update form field components to align with the new design spec #842

Merged
merged 11 commits into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
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
Loading