shoelace/docs/resources/changelog.md

490 wiersze
33 KiB
Markdown
Czysty Zwykły widok Historia

# Changelog
Shoelace follows [Semantic Versioning](https://semver.org/). Breaking changes in components with the <sl-badge type="primary" pill>Stable</sl-badge> badge will not be accepted until the next major version. As such, all contributions must consider the project's roadmap and take this into consideration. Features that are deemed no longer necessary will be deprecated but not removed.
Components with the <sl-badge type="warning" pill>Experimental</sl-badge> badge should not be used in production. They are made available as release candidates for development and testing purposes. As such, changes to experimental components will not be subject to semantic versioning.
_During the beta period, these restrictions may be relaxed in the event of a mission-critical bug._ 🐛
2021-03-31 16:03:20 +00:00
## Next
2021-04-01 12:40:48 +00:00
- Added `click()` method to `sl-checkbox`, `sl-radio`, and `sl-switch`
2021-04-05 20:58:33 +00:00
- Added the `activation` prop to `sl-tab-group` to allow for automatic and manual tab activation
2021-04-01 11:50:27 +00:00
- Fixed a bug in `sl-tooltip` where events weren't properly cleaned up on disconnect
- Fixed a bug in `sl-tooltip` where they wouldn't display after toggling `disabled` off and on again [#391](https://github.com/shoelace-style/shoelace/issues/391)
2021-04-01 13:02:25 +00:00
- Fixed a bug in `sl-details` where `show()` and `hide()` would toggle the control when disabled
2021-04-07 14:01:31 +00:00
- Fixed a bug in `sl-color-picker` where setting `value` wouldn't update the control
2021-04-01 12:50:32 +00:00
- Fixed incorrect event names for `sl-after-show` and `sl-after-hide` in `sl-details`
2021-03-31 16:03:20 +00:00
- Improved a11y for disabled buttons that are rendered as links
- Improved a11y for `sl-button-group` by adding the correct `role` attribute
- Improved a11y for `sl-input`, `sl-range`, `sl-select`, and `sl-textarea` so labels and helper text are read properly by screen readers
2021-04-01 13:17:05 +00:00
- Removed `sl-show`, `sl-hide`, `sl-after-show`, `sl-after-hide` events from `sl-color-picker` (the color picker's visibility cannot be controlled programmatically so these shouldn't have been exposed; the dropdown events now bubble up so you can listen for those instead)
- Reworked `sl-button-group` so it doesn't require light DOM styles
2021-03-31 16:03:20 +00:00
2021-03-30 13:30:16 +00:00
## 2.0.0-beta.36
- 🚨 BREAKING: renamed `setFocus()` to `focus()` in button, checkbox, input, menu item, radio, range, rating, select, switch, and tab
- 🚨 BREAKING: renamed `removeFocus()` to `blur()` in button, checkbox, input, menu item, radio, range, rating, select, switch, and tab
2021-03-30 13:11:35 +00:00
- Added `click()` method to `sl-button`
2021-03-30 12:33:43 +00:00
- Fixed a bug where toggling `open` on `sl-drawer` would skip the transition
2021-03-30 12:44:41 +00:00
- Fixed a bug where `sl-color-picker` could be opened when disabled
2021-03-30 13:03:36 +00:00
- Fixed a bug in `sl-color-picker` that caused erratic slider behaviors [#388](https://github.com/shoelace-style/shoelace/issues/388) [#389](https://github.com/shoelace-style/shoelace/issues/389)
2021-03-30 13:30:00 +00:00
- Fixed a bug where `sl-details` wouldn't always render the correct height when open initially [#357](https://github.com/shoelace-style/shoelace/issues/357)
2021-03-25 12:15:26 +00:00
- Renamed `components.json` to `metadata.json`
- Updated to the prerelease versions of LitElement and lit-html
2021-03-30 12:49:58 +00:00
- Updated to Bootstrap Icons 1.4.1
2021-03-23 21:14:03 +00:00
## 2.0.0-beta.35
2021-03-22 12:31:01 +00:00
2021-03-22 15:23:58 +00:00
- Fixed a bug in `sl-animation` where `sl-cancel` and `sl-finish` events would never fire
2021-03-22 15:03:24 +00:00
- Fixed a bug where `sl-alert` wouldn't always transition properly
2021-03-22 12:31:01 +00:00
- Fixed a bug where using `sl-menu` inside a shadow root would break keyboard selections [#382](https://github.com/shoelace-style/shoelace/issues/382)
2021-03-22 19:12:14 +00:00
- Fixed a bug where toggling `multiple` in `sl-select` would lead to a stale display label
2021-03-22 21:26:56 +00:00
- Fixed a bug in `sl-tab-group` where changing `placement` could result in the active tab indicator being drawn a few pixels off
2021-03-24 15:33:44 +00:00
- Fixed a bug in `sl-button` where link buttons threw an error on focus, blur, and click
- Improved `@watch` decorator to run after update instead of during
2021-03-22 15:35:50 +00:00
- Updated `sl-menu-item` checked icon to `check` instead of `check2`
2021-03-23 12:43:38 +00:00
- Upgraded the status of `sl-resize-observer` from experimental to stable
2021-03-22 12:31:01 +00:00
2021-03-18 13:04:23 +00:00
## 2.0.0-beta.34
2021-03-18 13:04:23 +00:00
This release changes the way components are registered if you're [cherry picking](/getting-started/installation?id=cherry-picking) or [using a bundler](/getting-started/installation?id=bundling). This recommendation came from the LitElement team and simplifies Shoelace's dependency graph. It also eliminates the need to call a `register()` function before using each component.
From now on, importing a component will register it automatically. The caveat is that bundlers may not tree shake the library properly if you import from `@shoelace-style/shoelace`, so the recommendation is to import components and utilities from their corresponding files instead.
- 🚨 BREAKING: removed `all.shoelace.js` (use `shoelace.js` instead)
- 🚨 BREAKING: component modules now have a side effect, so bundlers may not tree shake properly when importing from `@shoelace-style/shoelace` (see the [installation page](/getting-started/installation?id=bundling) for more details and how to update)
2021-03-16 12:23:23 +00:00
- Added `sl-clear` event to `sl-select`
- Fixed a bug where dynamically changing menu items in `sl-select` would cause the display label to be blank [#374](https://github.com/shoelace-style/shoelace/discussions/374)
2021-03-16 13:03:15 +00:00
- Fixed a bug where setting the `value` attribute or property on `sl-input` and `sl-textarea` would trigger validation too soon
2021-03-16 13:16:11 +00:00
- Fixed the margin in `sl-menu-label` to align with menu items
- Fixed `autofocus` attributes in `sl-input` and `sl-textarea`
- Improved types for `autocapitalize` in `sl-input` and `sl-textarea`
2021-03-18 13:04:23 +00:00
- Reverted the custom `@tag` decorator in favor of `@customElement` to enable auto-registration
2021-03-15 17:03:49 +00:00
## 2.0.0-beta.33
2021-03-15 11:58:46 +00:00
- Fixed a bug where link buttons could have incorrect `target`, `download`, and `rel` props
- Fixed `aria-label` and `aria-labelledby` props in `sl-dialog` and `sl-drawer`
- Fixed `tabindex` prop in `sl-menu`
2021-03-15 12:03:32 +00:00
- Fixed a bug in `sl-select` where tags would always render as pills
2021-03-15 17:03:01 +00:00
- Fixed a bug in `sl-button` where calling `setFocus()` would throw an error
2021-03-15 11:58:46 +00:00
2021-03-12 14:10:15 +00:00
## 2.0.0-beta.32
2021-03-12 14:09:55 +00:00
- Added tag name maps so TypeScript can identify Shoelace elements [#371](https://github.com/shoelace-style/shoelace/pull/371)
2021-03-11 14:20:54 +00:00
- Fixed a bug where the active tab indicator wouldn't render properly on tabs styled with `flex-end` [#355](https://github.com/shoelace-style/shoelace/issues/355)
2021-03-11 17:51:41 +00:00
- Fixed a bug where `sl-change` wasn't emitted by `sl-checkbox` or `sl-switch` [#370](https://github.com/shoelace-style/shoelace/issues/370)
2021-03-11 17:56:45 +00:00
- Fixed a bug where some props weren't being watched correctly in `sl-alert` and `sl-color-picker`
- Improved `@watch` decorator so watch handlers don't run before the first render
- Removed guards that were added due to previous watch handler behavior
2021-03-10 13:34:06 +00:00
## 2.0.0-beta.31
2021-03-09 14:22:51 +00:00
- Add touch support to `sl-rating` [#362](https://github.com/shoelace-style/shoelace/pull/362)
2021-03-09 17:52:36 +00:00
- Fixed a bug where the `open` attribute on `sl-details` would prevent it from opening [#357](https://github.com/shoelace-style/shoelace/issues/357)
2021-03-10 13:33:50 +00:00
- Fixed event detail type parsing so component class names are shown instead of `default`
2021-03-09 14:22:51 +00:00
2021-03-09 00:14:32 +00:00
## 2.0.0-beta.30
2021-03-09 00:19:34 +00:00
- Fix default exports for all components so cherry picking works again [#365](https://github.com/shoelace-style/shoelace/issues/365)
2021-03-09 00:14:32 +00:00
- Revert FOUC base style because it interferes with some framework and custom element use cases
2021-03-06 17:01:39 +00:00
## 2.0.0-beta.29
2021-03-02 22:23:49 +00:00
2021-03-06 17:01:39 +00:00
**This release migrates component implementations from Shoemaker to LitElement.** Due to feedback from the community, Shoelace will rely on a more heavily tested library for component implementations. This gives you a more solid foundation and reduces my maintenance burden. Thank you for all your comments, concerns, and encouragement! Aside from that, everything else from beta.28 still applies plus the following.
- 🚨 BREAKING: removed the `symbol` prop from `sl-rating` and reverted to `getSymbol` for optimal flexibility
- Added `vscode.html-custom-data.json` to the build to support IntelliSense (see [the usage section](/getting-started/usage#code-completion) for details)
2021-03-08 14:09:38 +00:00
- Added a base style to prevent FOUC before components are defined
2021-03-07 13:54:30 +00:00
- Fixed bug where TypeScript types weren't being generated [#364](https://github.com/shoelace-style/shoelace/pull/364)
2021-03-07 14:20:20 +00:00
- Improved vertical padding in `sl-tooltip`
2021-03-02 22:23:49 +00:00
- Moved chunk files into a separate folder
2021-03-08 14:09:38 +00:00
- Reverted menu item active styles
2021-03-02 22:23:49 +00:00
- Updated esbuild to 0.8.54
2021-02-26 14:09:13 +00:00
## 2.0.0-beta.28
2021-02-10 16:25:13 +00:00
2021-03-06 17:01:39 +00:00
**This release includes a major under the hood overhaul of the library and how it's distributed.** Until now, Shoelace was developed with Stencil. This release moves to a lightweight tool called Shoemaker, a homegrown utility that provides declarative templating and data binding while reducing the boilerplate required for said features.
2021-02-26 14:09:13 +00:00
This change in tooling addresses a number of longstanding bugs and limitations. It also gives us more control over the library and build process while streamlining development and maintenance. Instead of two different distributions, Shoelace now offers a single, standards-compliant collection of ES modules. This may affect how you install and use the library, so please refer to the [installation page](/getting-started/installation) for details.
!> Due to the large number of internal changes, I would consider this update to be less stable than previous ones. If you're using Shoelace in a production app, consider holding off until the next beta to allow for more exhaustive testing from the community. Please report any bugs you find on the [issue tracker](https://github.com/shoelace-style/shoelace/issues).
The component API remains the same except for the changes noted below. Thanks for your patience as I work diligently to make Shoelace more stable and future-proof. 🙌
- 🚨 BREAKING: removed the custom elements bundle (you can import ES modules directly)
- 🚨 BREAKING: removed `getAnimationNames()` and `getEasingNames()` methods from `sl-animation` (you can import them from `utilities/animation.js` instead)
- 🚨 BREAKING: removed the `sl-icon-library` component since it required imperative initialization (you can import the `registerIconLibrary()` function from `utilities/icon-library.js` instead)
- 🚨 BREAKING: removed the experimental `sl-theme` component due to limitations (you should set the `sl-theme-[name]` class on the `<body>` instead)
- 🚨 BREAKING: moved the base stylesheet from `dist/shoelace.css` to `dist/themes/base.css`
- 🚨 BREAKING: moved `icons` into `assets/icons` to make future assets easier to colocate
- 🚨 BREAKING: changed `getSymbol` prop in `sl-rating` to `symbol` (it now accepts a string or a function that returns an icon name)
- 🚨 BREAKING: renamed `setAssetPath()` to `setBasePath()` and added the ability to set the library's base path with a `data-shoelace` attribute (`setBasePath()` is exported from `utilities/base-path.js`)
- Fixed `min` and `max` types in `sl-input` to allow numbers and strings [#330](https://github.com/shoelace-style/shoelace/issues/330)
2021-02-24 12:14:24 +00:00
- Fixed a bug where `sl-checkbox`, `sl-radio`, and `sl-switch` controls would shrink with long labels [#325](https://github.com/shoelace-style/shoelace/issues/325)
2021-02-26 14:09:13 +00:00
- Fixed a bug in `sl-select` where the dropdown menu wouldn't reposition when the box resized [#340](https://github.com/shoelace-style/shoelace/issues/340)
2021-02-24 12:14:24 +00:00
- Fixed a bug where ignoring clicks and clicking the overlay would prevent the escape key from closing the dialog/drawer [#344](https://github.com/shoelace-style/shoelace/pull/344)
2021-02-26 14:09:13 +00:00
- Removed the lazy loading dist (importing `shoelace.js` will load and register all components now)
- Switched from Stencil to Shoemaker
- Switched to a custom build powered by [esbuild](https://esbuild.github.io/)
- Updated to Bootstrap Icons 1.4.0
2021-02-10 16:25:13 +00:00
2021-02-10 14:28:20 +00:00
## 2.0.0-beta.27
2021-01-20 17:06:03 +00:00
2021-01-25 13:56:59 +00:00
- Added `handle-icon` slot to `sl-image-comparer` [#311](https://github.com/shoelace-style/shoelace/issues/311)
2021-02-04 15:22:04 +00:00
- Added `label` and `helpText` props and slots to `sl-range` [#318](https://github.com/shoelace-style/shoelace/issues/318)
2021-02-08 15:32:35 +00:00
- Added "Integrating with NextJS" tutorial to the docs, courtesy of [crutchcorn](https://github.com/crutchcorn)
2021-02-08 16:02:21 +00:00
- Added `content` slot to `sl-tooltip` [#322](https://github.com/shoelace-style/shoelace/pull/322)
2021-01-20 17:09:48 +00:00
- Fixed a bug in `sl-select` where removing a tag would toggle the dropdown
2021-01-25 21:06:43 +00:00
- Fixed a bug in `sl-input` and `sl-textarea` where the input might not exist when the value watcher is called [#313](https://github.com/shoelace-style/shoelace/issues/313)
2021-02-05 21:09:05 +00:00
- Fixed a bug in `sl-details` where hidden elements would receive focus when tabbing [#323](https://github.com/shoelace-style/shoelace/issues/323)
2021-02-10 14:26:27 +00:00
- Fixed a bug in `sl-icon` where `sl-error` would only be emitted for network failures [#326](https://github.com/shoelace-style/shoelace/pull/326)
2021-02-08 16:02:21 +00:00
- Reduced the default line-height for `sl-tooltip`
2021-01-20 17:06:03 +00:00
- Updated `sl-menu-item` focus styles
2021-01-21 14:40:33 +00:00
- Updated `sl-select` so tags will wrap when `multiple` is true
2021-02-04 15:24:19 +00:00
- Updated to Stencil 2.4.0
2021-01-20 17:06:03 +00:00
2021-01-18 19:05:49 +00:00
## 2.0.0-beta.26
2020-12-29 20:21:15 +00:00
2021-02-26 14:09:13 +00:00
- 🚨 BREAKING: Fixed animations bloat
2020-12-29 20:21:15 +00:00
- Removed ~400 baked-in Animista animations because they were causing ~200KB of bloat (they can still be used with custom keyframes)
- Reworked animations into a separate module ([`@shoelace-style/animations`](https://github.com/shoelace-style/animations)) so it's more maintainable and animations are sync with the latest version of animate.css
- Animation and easing names are now camelcase (e.g. `easeInOut` instead of `ease-in-out`)
2020-12-30 18:53:44 +00:00
- Added initial E2E tests [#169](https://github.com/shoelace-style/shoelace/pull/169)
- Added the `FocusOptions` argument to all components that have a `setFocus()` method
- Added `sl-initial-focus` event to `sl-dialog` and `sl-drawer` so focus can be customized to a specific element
- Added `close-button` part to `sl-tab` so the close button can be customized
- Added `scroll-button` part to `sl-tab-group` so the scroll buttons can be customized
2020-12-30 18:53:44 +00:00
- Fixed a bug where `sl-hide` would be emitted twice when closing an alert with `hide()`
2020-12-29 20:40:04 +00:00
- Fixed a bug in `sl-color-picker` where the toggle button was smaller than the preview button in Safari
2021-01-05 13:41:56 +00:00
- Fixed a bug in `sl-tab-group` where activating a nested tab group didn't work properly [#299](https://github.com/shoelace-style/shoelace/issues/299)
2021-01-18 19:03:59 +00:00
- Fixed a bug in `sl-tab-group` where removing tabs would throw an error
- Fixed a bug in `sl-alert`, `sl-dialog`, `sl-drawer`, `sl-select`, and `sl-tag` where the close button's base wasn't exported so it couldn't be styled
2021-01-13 23:01:36 +00:00
- Removed `text` type from `sl-badge` as it was erroneously copied and never had styles
2021-01-11 17:18:25 +00:00
- Updated `sl-tab-group` so the `active` prop is reflected to the attribute
2021-01-06 17:59:36 +00:00
- Updated the docs to show dependencies instead of dependents which is much more useful when working with the custom elements bundle
2021-01-07 22:05:41 +00:00
- Updated to Bootstrap Icons 1.3.0
2020-12-29 20:21:15 +00:00
2020-12-23 22:04:29 +00:00
## 2.0.0-beta.25
2020-12-10 22:36:39 +00:00
2021-02-26 14:09:13 +00:00
- 🚨 BREAKING: Reworked color tokens
2020-12-22 14:40:11 +00:00
- Theme colors are now inspired by Tailwind's professionally-designed color palette
- Color token variations now range from 50, 100, 200, 300, 400, 500, 600, 700, 800, 900, 950
- Color token variations were inverted, e.g. 50 is lightest and 950 is darkest
- All component styles were adapted to use the new color tokens, but visual changes are subtle
- The dark theme was adapted use the new color tokens
- HSL is no longer used because it is not perceptually uniform (this may be revisited when all browsers support [LCH colors](https://lea.verou.me/2020/04/lch-colors-in-css-what-why-and-how/))
2021-02-26 14:09:13 +00:00
- 🚨 BREAKING: Refactored `sl-select` to improve accessibility [#216](https://github.com/shoelace-style/shoelace/issues/216)
2020-12-11 22:10:30 +00:00
- Removed the internal `sl-input` because it was causing problems with a11y and virtual keyboards
- Removed `input`, `prefix` and `suffix` parts
2021-02-26 14:09:13 +00:00
- 🚨 BREAKING: Removed `copy-button` part from `sl-color-picker` since copying is now done by clicking the preview
2020-12-11 22:10:30 +00:00
- Added `getFormattedValue()` method to `sl-color-picker` so you can retrieve the current value in any format
- Added visual separators between solid buttons in `sl-button-group`
2020-12-23 20:47:13 +00:00
- Added `help-text` prop to `sl-input`, `sl-textarea`, and `sl-select`
2020-12-11 22:10:30 +00:00
- Fixed a bug where moving the mouse while `sl-dropdown` is closing would remove focus from the trigger
2020-12-11 22:23:41 +00:00
- Fixed a bug where `sl-menu-item` didn't set a default color in the dark theme
2020-12-11 22:10:30 +00:00
- Fixed a bug where `sl-color-picker` preview wouldn't update in Safari
- Fixed a bug where removing an icon's `name` or `src` wouldn't remove the previously rendered SVG [#285](https://github.com/shoelace-style/shoelace/issues/285)
2020-12-22 14:40:11 +00:00
- Fixed a bug where disabled link buttons didn't appear disabled
2020-12-22 22:40:37 +00:00
- Improved button spacings and added split button example
2020-12-22 14:40:11 +00:00
- Improved elevation tokens in dark theme
- Improved accessibility in `sl-tooltip` by allowing escape to dismiss it [#219](https://github.com/shoelace-style/shoelace/issues/219)
2020-12-22 22:08:19 +00:00
- Improved slot detection in `sl-card`, `sl-dialog`, and `sl-drawer`
- Made `@types/resize-observer-browser` a dependency so users don't have to install it manually
2020-12-23 20:47:13 +00:00
- Refactored internal label + help text logic into a functional component used by `sl-input`, `sl-textarea`, and `sl-select`
2020-12-11 22:24:31 +00:00
- Removed `sl-blur` and `sl-focus` events from `sl-menu` since menus can't have focus as of 2.0.0-beta.22
- Updated `sl-spinner` so the indicator is more obvious
2020-12-23 20:48:21 +00:00
- Updated to Bootstrap Icons 1.2.2
2020-12-10 22:36:39 +00:00
2020-12-09 14:20:34 +00:00
## 2.0.0-beta.24
2020-11-23 14:44:49 +00:00
2020-11-25 21:20:55 +00:00
- Added `sl-format-date` component
- Added `indeterminate` state to `sl-progress-bar` [#274](https://github.com/shoelace-style/shoelace/issues/274)
2020-11-30 14:00:43 +00:00
- Added `--track-color`, `--indicator-color`, and `--label-color` to `sl-progress-bar` [#276](https://github.com/shoelace-style/shoelace/issues/276)
2020-12-08 14:18:29 +00:00
- Added `allow-scripts` prop to `sl-include` [#280](https://github.com/shoelace-style/shoelace/issues/280)
2020-11-23 14:44:49 +00:00
- Fixed a bug where `sl-menu-item` color variable was incorrect [#272](https://github.com/shoelace-style/shoelace/issues/272)
2020-11-25 14:26:52 +00:00
- Fixed a bug where `sl-dialog` and `sl-drawer` would emit the `sl-hide` event twice [#275](https://github.com/shoelace-style/shoelace/issues/275)
2020-12-02 22:17:34 +00:00
- Fixed a bug where calling `event.preventDefault()` on certain form elements wouldn't prevent `sl-form` from submitting [#277](https://github.com/shoelace-style/shoelace/issues/277)
2020-12-09 13:17:18 +00:00
- Fixed drag handle orientation in `sl-image-comparer`
2020-12-03 14:35:41 +00:00
- Restyled `sl-spinner` so the track is visible and the indicator is smaller.
2020-12-07 22:29:55 +00:00
- Removed `resize-observer-polyfill` in favor of `@types/resize-observer-browser` since all target browsers support `ResizeObserver`
2020-12-09 13:17:49 +00:00
- Upgraded the status of `sl-form`, `sl-image-comparer`, and `sl-include` from experimental to stable
2020-12-07 22:29:55 +00:00
2020-11-20 22:03:28 +00:00
## 2.0.0-beta.23
2020-10-28 11:48:51 +00:00
2020-11-09 14:38:30 +00:00
- Added `sl-format-number` component
2020-11-11 22:31:53 +00:00
- Added `sl-relative-time` component
2020-11-09 14:38:30 +00:00
- Added `closable` prop to `sl-tab`
2020-10-29 22:15:48 +00:00
- Added experimental `sl-resize-observer` utility
- Added experimental `sl-theme` utility and updated theming documentation
2020-10-28 11:48:51 +00:00
- Fixed a bug where `sl-menu-item` wouldn't render properly in the dark theme
2020-11-05 14:10:02 +00:00
- Fixed a bug where `sl-select` would show an autocomplete menu
2020-10-28 12:30:39 +00:00
- Improved placeholder contrast in dark theme
2020-11-06 21:31:36 +00:00
- Updated to Boostrap Icons 1.1.0
- Updated to Stencil 2.3.0
2020-10-28 11:48:51 +00:00
2020-10-27 12:49:10 +00:00
## 2.0.0-beta.22
2020-10-16 14:00:58 +00:00
2021-02-26 14:09:13 +00:00
- 🚨 BREAKING: Refactored `sl-menu` and `sl-menu-item` to improve accessibility by using proper focus states [#217](https://github.com/shoelace-style/shoelace/issues/217)
2020-10-27 12:21:46 +00:00
- Moved `tabindex` from `sl-menu` to `sl-menu-item`
- Removed the `active` prop from `sl-menu-item` because synthetic focus states are bad for accessibility
- Removed the `sl-activate` and `sl-deactivate` events from `sl-menu-item` (listen for `focus` and `blur` instead)
- Updated `sl-select` so keyboard navigation still works
2020-10-23 04:17:19 +00:00
- Added `no-scroll-controls` prop to `sl-tab-group` [#253](https://github.com/shoelace-style/shoelace/issues/253)
- Fixed a bug where setting `open` initially wouldn't show `sl-dialog` or `sl-drawer` [#255](https://github.com/shoelace-style/shoelace/issues/255)
- Fixed a bug where `disabled` could be set when buttons are rendered as links
2020-10-23 04:17:50 +00:00
- Fixed a bug where hoisted dropdowns would render in the wrong position when placed inside `sl-dialog` [#252](https://github.com/shoelace-style/shoelace/issues/252)
2020-10-23 02:45:41 +00:00
- Fixed a bug where boolean aria attributes didn't explicitly set `true|false` string values in the DOM
- Fixed a bug where `aria-describedby` was never set on tooltip targets in `sl-tooltip`
2020-10-27 12:07:14 +00:00
- Fixed a bug where setting `position` on `sl-image-comparer` wouldn't update the divider's position
2020-10-27 12:21:04 +00:00
- Fixed a bug where the check icon was announced to screen readers in `sl-menu-item`
2020-10-23 04:17:19 +00:00
- Improved `sl-icon-button` accessibility by encouraging proper use of `label` and hiding the internal icon from screen readers [#220](https://github.com/shoelace-style/shoelace/issues/220)
2020-10-16 21:04:35 +00:00
- Improved `sl-dropdown` accessibility by attaching `aria-haspopup` and `aria-expanded` to the slotted trigger
2020-10-27 12:07:14 +00:00
- Refactored position logic to remove an unnecessary state variable in `sl-image-comparer`
- Refactored design tokens to use `rem` instead of `px` for input height and spacing [#221](https://github.com/shoelace-style/shoelace/issues/221)
2020-10-16 14:00:58 +00:00
- Removed `console.log` from modal utility
2020-10-27 22:07:25 +00:00
- Updated to Stencil 2.2.0
2020-10-16 14:00:58 +00:00
2020-10-16 13:29:35 +00:00
## 2.0.0-beta.21
2020-10-12 12:48:50 +00:00
- Added `label` slot to `sl-input`, `sl-select`, and `sl-textarea` [#248](https://github.com/shoelace-style/shoelace/issues/248)
2020-10-15 20:54:38 +00:00
- Added `label` slot to `sl-dialog` and `sl-drawer`
2020-10-16 12:57:02 +00:00
- Added experimental `sl-include` component
2020-10-16 13:29:35 +00:00
- Added status code to the `sl-error` event in `sl-icon`
2020-10-13 12:26:03 +00:00
- Fixed a bug where initial transitions didn't show in `sl-dialog` and `sl-drawer` [#247](https://github.com/shoelace-style/shoelace/issues/247)
2020-10-15 13:18:20 +00:00
- Fixed a bug where indeterminate checkboxes would maintain the indeterminate state when toggled
2020-10-15 17:55:42 +00:00
- Fixed a bug where concurrent active modals (i.e. dialog, drawer) would try to steal focus from each other
2020-10-13 12:26:03 +00:00
- Improved `sl-color-picker` grid and slider handles [#246](https://github.com/shoelace-style/shoelace/issues/246)
2020-10-16 13:29:35 +00:00
- Refactored `sl-icon` request logic and removed unused cache map
2020-10-13 16:41:57 +00:00
- Reworked show/hide logic in `sl-alert`, `sl-dialog`, and `sl-drawer` to not use reflow hacks and the `hidden` attribute
2020-10-15 20:35:11 +00:00
- Reworked slot logic in `sl-card`, `sl-dialog`, and `sl-drawer`
2020-10-13 12:26:03 +00:00
- Updated to Popper 2.5.3 to address a fixed position bug in Firefox
2020-10-12 12:48:50 +00:00
2020-10-09 22:11:06 +00:00
## 2.0.0-beta.20
2021-02-26 14:09:13 +00:00
- 🚨 BREAKING: Transformed all Shoelace events to lowercase ([details](#why-did-event-names-change))
- Added support for dropdowns and non-icon elements to `sl-input`
2020-10-02 19:46:58 +00:00
- Added `spellcheck` prop to `sl-input`
2020-10-07 13:34:05 +00:00
- Added `sl-icon-library` to allow custom icon library registration
- Added `library` prop to `sl-icon` and `sl-icon-button`
- Added "Integrating with Rails" tutorial to the docs, courtesy of [ParamagicDev](https://github.com/ParamagicDev)
- Fixed a bug where `sl-progress-ring` rendered incorrectly when zoomed in Safari [#227](https://github.com/shoelace-style/shoelace/issues/227)
- Fixed a bug where tabbing into slotted elements closes `sl-dropdown` when used in a shadow root [#223](https://github.com/shoelace-style/shoelace/issues/223)
- Fixed a bug where scroll anchoring caused undesirable scrolling when `sl-details` are grouped
2020-10-09 21:45:16 +00:00
### Why did event names change?
Shoelace events were updated to use a lowercase, kebab-style naming convention. Instead of event names such as `slChange` and `slAfterShow`, you'll need to use `sl-change` and `sl-after-show` now.
This change was necessary to address a critical issue in frameworks that use DOM templates with declarative event bindings such as `<sl-button @slChange="handler">`. Due to HTML's case-insensitivity, browsers translate attribute names to lowercase, turning `@slChange` into `@slchange`, making it impossible to listen to `slChange`.
While declarative event binding is a non-standard feature, not supporting it would make Shoelace much harder to use in popular frameworks. To accommodate those users and provide a better developer experience, we decided to change the naming convention while Shoelace is still in beta.
The following pages demonstrate why this change was necessary.
2020-10-12 13:36:25 +00:00
- [This Polymer FAQ from Custom Elements Everywhere](https://custom-elements-everywhere.com/#faq-polymer)
2020-10-09 21:45:16 +00:00
- [Vue's Event Names documentation](https://vuejs.org/v2/guide/components-custom-events.html#Event-Names)
## 2.0.0-beta.19
- Added `input`, `label`, `prefix`, `clear-button`, `suffix`, `help-text` exported parts to `sl-select` to make the input customizable
- Added toast notifications through the `toast()` method on `sl-alert`
- Fixed a bug where mouse events would bubble up when `sl-button` was disabled, causing tooltips to erroneously appear
- Fixed a bug where pressing space would open and immediately close `sl-dropdown` panels in Firefox
- Fixed a bug where `sl-tooltip` would throw an error on init
- Fixed a bug in custom keyframes animation example
- Refactored clear logic in `sl-input`
## 2.0.0-beta.18
- Added `name` and `invalid` prop to `sl-color-picker`
- Added support for form submission and validation to `sl-color-picker`
- Added touch support to demo resizers in the docs
- Added `sl-responsive-embed` component
- Fixed a bug where swapping an animated element wouldn't restart the animation in `sl-animation`
- Fixed a bug where the cursor was incorrect when `sl-select` was disabled
2020-10-09 21:45:16 +00:00
- Fixed a bug where `slblur` and `slfocus` were emitted twice in `sl-select`
- Fixed a bug where clicking on `sl-menu` wouldn't focus it
- Fixed a bug in the popover utility where `onAfterShow` would fire too soon
- Fixed a bug where `bottom` and `right` placements didn't render properly in `sl-tab-group`
- Improved keyboard logic in `sl-dropdown`, `sl-menu`, and `sl-select`
- Updated `sl-animation` to stable
- Updated to Stencil 2.0 (you may need to purge `node_modules` and run `npm install` after pulling)
- Updated entry points in `package.json` to reflect new filenames generated by Stencil 2
## 2.0.0-beta.17
- Added `minlength` and `spellcheck` attributes to `sl-textarea`
- Fixed a bug where clicking a tag in `sl-select` wouldn't toggle the menu
- Fixed a bug where options where `sl-select` options weren't always visible or scrollable
- Fixed a bug where setting `null` on `sl-input`, `sl-textarea`, or `sl-select` would throw an error
- Fixed a bug where `role` was on the wrong element and aria attribute weren't explicit in `sl-checkbox`, `sl-switch`, and `sl-radio`
- Fixed a bug where dynamically adding/removing a slot wouldn't work as expected in `sl-card`, `sl-dialog`, and `sl-drawer`
- Fixed a bug where the value wasn't updated and events weren't emitted when using `setRangeText` in `sl-input` and `sl-textarea`
- Optimized `hasSlot` utility by using a simpler selector
2020-10-29 12:03:13 +00:00
- Updated Bootstrap Icons to 1.0.0 with many icons redrawn and improved
- Updated contribution guidelines
**Form validation has been reworked and is much more powerful now!**
- The `invalid` prop now reflects the control's validity as determined by the browser's constraint validation API
- Added `required` to `sl-checkbox`, `sl-select`, and `sl-switch`
- Added `reportValidity()` and `setCustomValidity()` methods to all form controls
- Added validation checking for custom and native form controls to `sl-form`
- Added `novalidate` prop to `sl-form` to disable validation
- Removed the `valid` prop from all form controls
- Removed valid and invalid design tokens and related styles (you can use your own custom styles to achieve this)
## 2.0.0-beta.16
- Add `hoist` prop to `sl-color-picker`, `sl-dropdown`, and `sl-select` to work around panel clipping
- Add `sl-format-bytes` utility component
- Add `clearable` and `required` props to `sl-select`
2020-10-09 21:45:16 +00:00
- Add `slclear` event to `sl-input`
- Added keyboard support to the preview resizer in the docs
- Fixed a bug where the `aria-selected` state was incorrect in `sl-menu-item`
- Fixed a bug where custom properties applied to `sl-tooltip` didn't affect show/hide transitions
2021-03-31 16:03:20 +00:00
- Fixed a bug where `--sl-input-color-*` custom properties had no effect on `sl-input` and `sl-textarea`
- Refactored `sl-dropdown` and `sl-tooltip` to use positioner elements so panels/tooltips can be customized easier
## 2.0.0-beta.15
- Added `image-comparer` component
- Added `--width`, `--height`, and `--thumb-size` custom props to `sl-switch`
- Fixed an `aria-labelledby` attribute typo in a number of components
- Fixed a bug where the `change` event wasn't updating the value in `sl-input`
- Fixed a bug where `sl-color-picker` had the wrong border color in the dark theme
- Fixed a bug where `sl-menu-item` had the wrong color in dark mode when disabled
- Fixed a bug where WebKit's autocomplete styles made inputs looks broken
- Fixed a bug where aria labels were wrong in `sl-select`
- Fixed a bug where clicking the label wouldn't focus the control in `sl-select`
## 2.0.0-beta.14
- Added dark theme
- Added `--sl-panel-background-color` and `--sl-panel-border-color` tokens
- Added `--tabs-border-color` custom property to `sl-tab-group`
- Added `--track-color` custom property to `sl-range`
- Added `tag` part to `sl-select`
- Updated `package.json` so custom elements imports can be consumed from the root
- Fixed a bug where scrolling dialogs didn't resize properly in Safari
2020-10-09 21:45:16 +00:00
- Fixed a bug where `slshow` and `slhide` would be emitted twice in some components
- Fixed a bug where `custom-elements/index.d.ts` was broken due to an unclosed comment (fixed in Stencil 1.17.3)
- Fixed bug where inputs were not using border radius tokens
- Fixed a bug where the text color was being erroneously set in `sl-progress-ring`
- Fixed a bug where `sl-progress-bar` used the wrong part name internally for `indicator`
- Removed background color from `sl-menu`
- Updated to Stencil 1.17.3
## 2.0.0-beta.13
2020-10-09 21:45:16 +00:00
- Added `slactivate` and `sldeactivate` events to `sl-menu-item`
- Added experimental `sl-animation` component
- Added shields to documentation
- Fixed a bug where link buttons would have `type="button"`
- Fixed a bug where button groups with tooltips experienced an odd spacing issue in Safari
- Fixed a bug where scrolling in dropdowns/selects didn't work properly on Windows (special thanks to [Trendy](http://github.com/trendy) for helping troubleshoot!)
- Fixed a bug where selecting a menu item in a dropdown would cause Safari to scroll
- Fixed a bug where type to select wouldn't accept symbols
- Moved scrolling logic from `sl-menu` to `sl-dropdown`
## 2.0.0-beta.12
- Added support for `href`, `target`, and `download` to buttons
- Fixed a bug where buttons would have horizontal spacing in Safari
- Fixed a bug that caused an import resolution error when using Shoelace in a Stencil app
## 2.0.0-beta.11
- Added button group component
- Fixed icon button alignment
- Fixed a bug where focus visible observer wasn't removed from `sl-details`
- Replaced the deprecated `componentDidUnload` lifecycle method with `disconnectedCallback` to prevent issues with frameworks
## 2.0.0-beta.10
- Added community page to the docs
- Fixed a bug where many components would erroneously receive an `id` when using the custom elements bundle
- Fixed a bug where tab groups weren't scrollable with the mouse
## 2.0.0-beta.9
- Added the icon button component
- Added the skeleton component
- Added the `typeToSelect` method to menu so type-to-select behavior can be controlled externally
- Added the `pulse` prop to badge
- Fixed a bug where hovering over select showed the wrong cursor
- Fixed a bug where tabbing into a select control would highlight the label
- Fixed a bug where tabbing out of a select control wouldn't close it
- Fixed a bug where closing dropdowns wouldn't give focus back to the trigger
- Fixed a bug where type-to-select wasn't working after the first letter
- Fixed a bug where clicking on menu items and dividers would steal focus from the menu
- Fix a bug where the color picker wouldn't parse uppercase values
- Removed `noFooter` prop from dialog and drawer (slot detection is automatic, so the prop is not required)
- Removed `close-icon` slot from alert
- Replaced make-shift icon buttons with `sl-icon-button` in alert, dialog, drawer, and tag
- Updated Stencil to 1.17.1
- Switched to jsDelivr for better CDN performance
## 2.0.0-beta.8
- Added the card component
- Added `--focus-ring` custom property to tab
- Fixed a bug where range tooltips didn't appear on iOS
- Fixed constructor bindings so they don't break the custom elements bundle
- Fixed tag color contrast to be AA compliant
- Fixed a bug that made it difficult to vertically align rating
- Fixed a bug where dropdowns would always close on mousedown when inside a shadow root
- Made tag text colors AA compliant
- Promoted badge to stable
- Refactored `:host` variables and moved non-display props to base elements
- Refactored event handler bindings to occur in `connectedCallback` instead of the constructor
- Refactored scroll locking logic to use `Set` instead of an array
- Updated the custom elements bundle documentation and added bundler examples
- Upgraded Stencil to 1.17.0-0 (next) to fix custom elements bundle
## 2.0.0-beta.7
- Added links to version 1 resources to the docs
- Added rating component
- Fixed a bug where some build files were missing
- Fixed clearable tags demo
- Fixed touch icon size in docs
## 2.0.0-beta.6
- Enabled the `dist-custom-elements-bundle` output target
- Fixed a bug where nested form controls were ignored in `<sl-form>`
## 2.0.0-beta.5
- Fixed bug where `npm install` would fail due to postinstall script
- Removed unused dependency
## 2.0.0-beta.4
- Added `pill` variation to badges
- Fixed a bug where all badges had `pointer-events: none`
- Fixed `@since` props to show 2.0 instead of 1.0
- Fixed giant cursors in inputs in Safari
- Fixed color picker input width in Safari
- Fixed initial transitions for drawer, dialog, and popover consumers
- Fixed a bug where dialog, dropdown, and drawer would sometimes not transition in on the first open
- Fixed various documentation typos
## 2.0.0-beta.3
- Fix version in docs
- Remove custom elements bundle
## 2.0.0-beta.2
- Fix quick start and installation URLs
- Switch Docsify theme
- Update line heights tokens
## 2.0.0-beta.1
- Initial release