remove src/utilities/index

pull/463/head
Cory LaViska 2021-05-12 07:33:56 -04:00
rodzic 703cb4dc7a
commit ebd1b95ba0
3 zmienionych plików z 7 dodań i 5 usunięć

Wyświetl plik

@ -14,6 +14,7 @@ _During the beta period, these restrictions may be relaxed in the event of a mis
- Fixed a bug where the scrollbar would reposition `sl-dialog` on hide causing it to jump [#424](https://github.com/shoelace-style/shoelace/issues/424)
- Fixed a bug that prevented the project from being built in a Windows environment
- Improved a11y in `sl-progress-ring`
- Removed `src/utilities/index.ts` to prevent tree-shaking confusion (please import utilities directly from their respective modules)
- Updated to Bootstrap Icons 1.5.0
- Updated React docs to use [`@shoelace-style/react`](https://github.com/shoelace-style/react)
- Updated NextJS docs [#434](https://github.com/shoelace-style/shoelace/pull/434)

Wyświetl plik

@ -1,5 +1,4 @@
export * from './utilities';
// Components
export { default as SlAlert } from './components/alert/alert';
export { default as SlAnimation } from './components/animation/animation';
export { default as SlAvatar } from './components/avatar/avatar';
@ -46,3 +45,8 @@ export { default as SlTabPanel } from './components/tab-panel/tab-panel';
export { default as SlTag } from './components/tag/tag';
export { default as SlTextarea } from './components/textarea/textarea';
export { default as SlTooltip } from './components/tooltip/tooltip';
// Utilities
export * from './utilities/animation';
export * from './utilities/base-path';
export * from './utilities/icon-library';

Wyświetl plik

@ -1,3 +0,0 @@
export * from './animation';
export * from './base-path';
export * from './icon-library';