* 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
19 lines
583 B
TypeScript
19 lines
583 B
TypeScript
import './auth-panel.css';
|
|
|
|
import './__readonly-label/auth-panel__readonly-label.css';
|
|
|
|
import './__column/auth-panel__column.css';
|
|
import './__select/auth-panel__select.css';
|
|
import './__select-label/auth-panel__select-label.css';
|
|
import './__select-label-value/auth-panel__select-label-value.css';
|
|
import './__sort/auth-panel__sort.css';
|
|
|
|
import './__user-id/auth-panel__user-id.css';
|
|
|
|
import './_theme/_dark/auth-panel_theme_dark.css';
|
|
import './_theme/_light/auth-panel_theme_light.css';
|
|
|
|
import './_logged-in/auth-panel_logged-in.css';
|
|
|
|
export { default } from './auth-panel';
|