shoelace/src/shoelace.ts

65 wiersze
4.3 KiB
TypeScript
Czysty Zwykły widok Historia

2021-05-12 11:33:56 +00:00
// Components
2021-03-09 00:14:32 +00:00
export { default as SlAlert } from './components/alert/alert';
2021-10-16 12:29:25 +00:00
export { default as SlAnimatedImage } from './components/animated-image/animated-image';
2021-03-09 00:14:32 +00:00
export { default as SlAnimation } from './components/animation/animation';
export { default as SlAvatar } from './components/avatar/avatar';
export { default as SlBadge } from './components/badge/badge';
2021-09-01 13:06:19 +00:00
export { default as SlBreadcrumb } from './components/breadcrumb/breadcrumb';
export { default as SlBreadcrumbItem } from './components/breadcrumb-item/breadcrumb-item';
2021-03-09 00:14:32 +00:00
export { default as SlButton } from './components/button/button';
export { default as SlButtonGroup } from './components/button-group/button-group';
export { default as SlCard } from './components/card/card';
feat: add carousel component feat: add nav indicators wip wip wip fix: minor fixes fix: minor fixes fix: some refactor chore: update docs chore: update docs fix: remove slide component feat: create sl-carousel-item feat: code refactoring and improvements chore: update docs with more examples chore: fix docs feat: add autoplay feat: implement accessibility fix: change icons for rtl chore: minor change feat: improve accessibility fix: minor regression fix: minor regression chore: fix docs fix: improve accessibility and minor fixes fix: remove heading and refactor component chore: add custom style exmaple fix: address review commnets * Removed header from carousel * Added `ArrowUp` and `ArrowDown` in keyboard navigation * Added `--scroll-hint-margin` css property * Added an example with customized carousel layout * Fixed thumbnails navigation in demo * Renamed show-controls to show-arrows and updated the corresponding parts/css accordingly * Changed `activeSlideElement` getter to a private method * Changed pagination colors * Added `--slide-width` and `--slide-height` css properties chore: update docs fix: integrate latest repo changes fix: add aspect ratio and rebase chore: remove ignore path feat: multiple slides per page feat: multiple slide per page fix: various improvements chore: minor changes chore: minor changes chore: add bit of documentation chore: improve documentation fix: add unit tests and fix minor issues chore: update documentation and unit tests chore: update tests
2022-08-06 08:45:45 +00:00
export { default as SlCarousel } from './components/carousel/carousel';
export { default as SlCarouselItem } from './components/carousel-item/carousel-item';
2021-03-09 00:14:32 +00:00
export { default as SlCheckbox } from './components/checkbox/checkbox';
export { default as SlColorPicker } from './components/color-picker/color-picker';
export { default as SlDetails } from './components/details/details';
export { default as SlDialog } from './components/dialog/dialog';
2021-09-29 12:03:03 +00:00
export { default as SlDivider } from './components/divider/divider';
2021-03-09 00:14:32 +00:00
export { default as SlDrawer } from './components/drawer/drawer';
export { default as SlDropdown } from './components/dropdown/dropdown';
export { default as SlFormatBytes } from './components/format-bytes/format-bytes';
export { default as SlFormatDate } from './components/format-date/format-date';
export { default as SlFormatNumber } from './components/format-number/format-number';
export { default as SlIcon } from './components/icon/icon';
export { default as SlIconButton } from './components/icon-button/icon-button';
export { default as SlImageComparer } from './components/image-comparer/image-comparer';
export { default as SlInclude } from './components/include/include';
export { default as SlInput } from './components/input/input';
export { default as SlMenu } from './components/menu/menu';
export { default as SlMenuItem } from './components/menu-item/menu-item';
export { default as SlMenuLabel } from './components/menu-label/menu-label';
2021-09-30 22:32:59 +00:00
export { default as SlMutationObserver } from './components/mutation-observer/mutation-observer';
2022-08-05 13:17:58 +00:00
export { default as SlPopup } from './components/popup/popup';
2021-03-09 00:14:32 +00:00
export { default as SlProgressBar } from './components/progress-bar/progress-bar';
export { default as SlProgressRing } from './components/progress-ring/progress-ring';
2021-04-22 19:42:23 +00:00
export { default as SlQrCode } from './components/qr-code/qr-code';
2021-03-09 00:14:32 +00:00
export { default as SlRadio } from './components/radio/radio';
2022-03-15 21:42:59 +00:00
export { default as SlRadioButton } from './components/radio-button/radio-button';
2021-04-09 12:15:33 +00:00
export { default as SlRadioGroup } from './components/radio-group/radio-group';
2021-03-09 00:14:32 +00:00
export { default as SlRange } from './components/range/range';
export { default as SlRating } from './components/rating/rating';
export { default as SlRelativeTime } from './components/relative-time/relative-time';
export { default as SlResizeObserver } from './components/resize-observer/resize-observer';
export { default as SlSelect } from './components/select/select';
export { default as SlSkeleton } from './components/skeleton/skeleton';
export { default as SlSpinner } from './components/spinner/spinner';
2021-12-22 23:32:27 +00:00
export { default as SlSplitPanel } from './components/split-panel/split-panel';
2021-03-09 00:14:32 +00:00
export { default as SlSwitch } from './components/switch/switch';
export { default as SlTab } from './components/tab/tab';
export { default as SlTabGroup } from './components/tab-group/tab-group';
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';
export { default as SlTree } from './components/tree/tree';
export { default as SlTreeItem } from './components/tree-item/tree-item';
2022-07-26 19:53:24 +00:00
export { default as SlVisuallyHidden } from './components/visually-hidden/visually-hidden';
2022-12-17 16:27:30 +00:00
export { default as SlOption } from './components/option/option';
2021-06-18 14:07:17 +00:00
/* plop:component */
2021-05-12 11:33:56 +00:00
// Utilities
export * from './utilities/animation';
export * from './utilities/base-path';
export * from './utilities/icon-library';