* change root dit and change way to import modules * update deps to latest versions * use latest tools for building bundles * rewrite webpack config * use nomodule technique for loading modern bundle * inject polyfills by babel usebuiltins * update eslint rules * rename all style files to CSS * use postcss preset env for building styles * proper typescript typing * put all html files to templates folder * etc
14 lines
410 B
TypeScript
14 lines
410 B
TypeScript
import './dropdown.css';
|
|
import './_active/dropdown_active.css';
|
|
|
|
import './__item/dropdown__item.css';
|
|
import './__items/dropdown__items.css';
|
|
import './__title/dropdown__title.css';
|
|
import './__content/dropdown__content.css';
|
|
|
|
import './_theme/_dark/dropdown_theme_dark.css';
|
|
import './_theme/_light/dropdown_theme_light.css';
|
|
|
|
export { Dropdown } from './dropdown';
|
|
export { DropdownItem } from './__item';
|