├── README.md ├── components ├── barcodegenerator │ ├── CHANGELOG.md │ ├── README.md │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── barcode-generator │ │ │ ├── barcodegenerator-all.module.ts │ │ │ ├── barcodegenerator.component.ts │ │ │ ├── barcodegenerator.module.ts │ │ │ └── index.ts │ │ ├── datamatrix-generator │ │ │ ├── datamatrixgenerator-all.module.ts │ │ │ ├── datamatrixgenerator.component.ts │ │ │ ├── datamatrixgenerator.module.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ └── qrcode-generator │ │ │ ├── index.ts │ │ │ ├── qrcodegenerator-all.module.ts │ │ │ ├── qrcodegenerator.component.ts │ │ │ └── qrcodegenerator.module.ts │ ├── styles │ │ ├── barcode │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ └── tailwind3.scss │ └── tsconfig.json ├── base │ ├── CHANGELOG.md │ ├── README.md │ ├── demo │ │ └── app │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ └── main.ts │ ├── gulpfile.js │ ├── karma.conf.js │ ├── license │ ├── package.json │ ├── releasenotes │ │ └── README.md │ ├── spec │ │ ├── app.module.ts │ │ ├── app.pipe.ts │ │ ├── app.template.component.ts │ │ ├── complex-array-base.spec.ts │ │ ├── component-base.spec.ts │ │ ├── control.component.ts │ │ ├── form-base.spec.ts │ │ ├── form.component.ts │ │ ├── pipe.component.ts │ │ ├── sample.component.ts │ │ ├── sample.core.ts │ │ ├── template.component.ts │ │ ├── template.core.ts │ │ ├── template.spec.ts │ │ └── util.spec.ts │ ├── src │ │ ├── complex-array-base.ts │ │ ├── component-base.ts │ │ ├── form-base.ts │ │ ├── index.ts │ │ ├── template.ts │ │ └── util.ts │ ├── styles │ │ ├── bds.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── fabric-dark.scss │ │ ├── fabric.scss │ │ ├── fluent-dark.scss │ │ ├── fluent.scss │ │ ├── fluent2.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast.scss │ │ ├── material-dark.scss │ │ ├── material.scss │ │ ├── material3-dark.scss │ │ ├── material3.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind.scss │ │ └── tailwind3.scss │ ├── test-main.js │ └── tsconfig.json ├── buttons │ ├── CHANGELOG.md │ ├── README.md │ ├── ej2-angular-samples │ │ ├── Button │ │ │ └── default │ │ │ │ └── default.component.ts │ │ ├── CheckBox │ │ │ └── default │ │ │ │ └── default.component.ts │ │ ├── RadioButton │ │ │ └── default │ │ │ │ └── default.component.ts │ │ └── Switch │ │ │ └── default │ │ │ └── default.component.ts │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── button │ │ │ ├── button-all.module.ts │ │ │ ├── button.component.ts │ │ │ ├── button.module.ts │ │ │ └── index.ts │ │ ├── check-box │ │ │ ├── checkbox-all.module.ts │ │ │ ├── checkbox.component.ts │ │ │ ├── checkbox.module.ts │ │ │ └── index.ts │ │ ├── chips │ │ │ ├── chiplist-all.module.ts │ │ │ ├── chiplist.component.ts │ │ │ ├── chiplist.module.ts │ │ │ ├── chips.directive.ts │ │ │ └── index.ts │ │ ├── floating-action-button │ │ │ ├── fab-all.module.ts │ │ │ ├── fab.component.ts │ │ │ ├── fab.module.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── radio-button │ │ │ ├── index.ts │ │ │ ├── radiobutton-all.module.ts │ │ │ ├── radiobutton.component.ts │ │ │ └── radiobutton.module.ts │ │ ├── smart-paste-button │ │ │ ├── index.ts │ │ │ ├── smartpastebutton-all.module.ts │ │ │ ├── smartpastebutton.component.ts │ │ │ └── smartpastebutton.module.ts │ │ ├── speed-dial │ │ │ ├── index.ts │ │ │ ├── items.directive.ts │ │ │ ├── speeddial-all.module.ts │ │ │ ├── speeddial.component.ts │ │ │ └── speeddial.module.ts │ │ └── switch │ │ │ ├── index.ts │ │ │ ├── switch-all.module.ts │ │ │ ├── switch.component.ts │ │ │ └── switch.module.ts │ ├── styles │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── button │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── check-box │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── chips │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── floating-action-button │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── radio-button │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── speed-dial │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── switch │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ └── tailwind3.scss │ └── tsconfig.json ├── calendars │ ├── CHANGELOG.md │ ├── README.md │ ├── ej2-angular-samples │ │ ├── Calendar │ │ │ ├── daterange │ │ │ │ └── daterange.component.ts │ │ │ ├── disableddates │ │ │ │ └── disableddates.component.ts │ │ │ ├── multiselection │ │ │ │ └── multiselection.component.ts │ │ │ ├── views │ │ │ │ └── views.component.ts │ │ │ └── weeknumber │ │ │ │ └── weeknumber.component.ts │ │ ├── DatePicker │ │ │ ├── daterange │ │ │ │ └── daterange.component.ts │ │ │ ├── disableddates │ │ │ │ └── disableddates.component.ts │ │ │ ├── format │ │ │ │ └── format.component.ts │ │ │ ├── multiselection │ │ │ │ └── multiselection.component.ts │ │ │ ├── strictmode │ │ │ │ └── strictmode.component.ts │ │ │ └── views │ │ │ │ └── views.component.ts │ │ ├── DateRangePicker │ │ │ ├── daterange │ │ │ │ └── daterange.component.ts │ │ │ ├── dayspan │ │ │ │ └── dayspan.component.ts │ │ │ ├── disableddates │ │ │ │ └── disableddates.component.ts │ │ │ ├── format │ │ │ │ └── format.component.ts │ │ │ ├── presets │ │ │ │ └── presets.component.ts │ │ │ └── strictmode │ │ │ │ └── strictmode.component.ts │ │ ├── DateTimePicker │ │ │ ├── daterange │ │ │ │ └── daterange.component.ts │ │ │ ├── disableddates │ │ │ │ └── disableddates.component.ts │ │ │ ├── format │ │ │ │ └── format.component.ts │ │ │ ├── multiselection │ │ │ │ └── multiselection.component.ts │ │ │ ├── strictmode │ │ │ │ └── strictmode.component.ts │ │ │ └── views │ │ │ │ └── views.component.ts │ │ └── TimePicker │ │ │ ├── format │ │ │ └── format.component.ts │ │ │ ├── scrollto │ │ │ └── scrollto.component.ts │ │ │ ├── step │ │ │ └── step.component.ts │ │ │ ├── strictmode │ │ │ └── strictmode.component.ts │ │ │ └── timerange │ │ │ └── timerange.component.ts │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── calendar │ │ │ ├── calendar-all.module.ts │ │ │ ├── calendar.component.ts │ │ │ ├── calendar.module.ts │ │ │ └── index.ts │ │ ├── datepicker │ │ │ ├── datepicker-all.module.ts │ │ │ ├── datepicker.component.ts │ │ │ ├── datepicker.module.ts │ │ │ └── index.ts │ │ ├── daterangepicker │ │ │ ├── daterangepicker-all.module.ts │ │ │ ├── daterangepicker.component.ts │ │ │ ├── daterangepicker.module.ts │ │ │ ├── index.ts │ │ │ └── presets.directive.ts │ │ ├── datetimepicker │ │ │ ├── datetimepicker-all.module.ts │ │ │ ├── datetimepicker.component.ts │ │ │ ├── datetimepicker.module.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ └── timepicker │ │ │ ├── index.ts │ │ │ ├── timepicker-all.module.ts │ │ │ ├── timepicker.component.ts │ │ │ └── timepicker.module.ts │ ├── styles │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── calendar │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── datepicker │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── daterangepicker │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── datetimepicker │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ ├── tailwind3.scss │ │ └── timepicker │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ └── tsconfig.json ├── charts │ ├── CHANGELOG.md │ ├── README.md │ ├── ej2-angular-samples │ │ ├── Chart │ │ │ ├── axes-crossing │ │ │ │ └── axes-crossing.component.ts │ │ │ ├── crosshair │ │ │ │ ├── assets │ │ │ │ │ ├── chart-data.service.ts │ │ │ │ │ └── financial-data.ts │ │ │ │ └── crosshair.component.ts │ │ │ ├── donut │ │ │ │ └── donut.component.ts │ │ │ ├── line │ │ │ │ └── line.component.ts │ │ │ ├── multi-level-labels │ │ │ │ └── multi-level-labels.component.ts │ │ │ ├── pie │ │ │ │ └── pie.component.ts │ │ │ ├── rangenavigator │ │ │ │ ├── assets │ │ │ │ │ └── default-data.ts │ │ │ │ └── rangenavigator.component.ts │ │ │ ├── remotedata │ │ │ │ └── remotedata.component.ts │ │ │ ├── technical-indicator │ │ │ │ ├── assets │ │ │ │ │ └── financial-data.ts │ │ │ │ └── technical-indicator.component.ts │ │ │ ├── trackball │ │ │ │ └── trackball.component.ts │ │ │ └── zooming │ │ │ │ ├── assets │ │ │ │ └── chart-data.service.ts │ │ │ │ └── zooming.component.ts │ │ ├── Smithchart │ │ │ ├── admittance-rendering │ │ │ │ └── admittance-rendering.component.ts │ │ │ ├── animation │ │ │ │ └── animation.component.ts │ │ │ ├── default │ │ │ │ └── default.component.ts │ │ │ ├── label │ │ │ │ └── label.component.ts │ │ │ ├── legend │ │ │ │ └── legend.component.ts │ │ │ ├── marker │ │ │ │ └── marker.component.ts │ │ │ ├── multiple-series │ │ │ │ └── multiple-series.component.ts │ │ │ ├── print │ │ │ │ └── print.component.ts │ │ │ ├── radius │ │ │ │ └── radius.component.ts │ │ │ ├── series │ │ │ │ └── series.component.ts │ │ │ └── tooltip │ │ │ │ └── tooltip.component.ts │ │ └── Sparkline │ │ │ ├── area │ │ │ └── area.component.ts │ │ │ ├── column │ │ │ └── column.component.ts │ │ │ ├── line │ │ │ └── line.component.ts │ │ │ ├── range-band │ │ │ └── range-band.component.ts │ │ │ ├── track-line │ │ │ └── track-line.component.ts │ │ │ └── win-loss │ │ │ └── win-loss.component.ts │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── accumulation-chart │ │ │ ├── accumulationchart-all.module.ts │ │ │ ├── accumulationchart.component.ts │ │ │ ├── accumulationchart.module.ts │ │ │ ├── annotations.directive.ts │ │ │ ├── index.ts │ │ │ └── series.directive.ts │ │ ├── bullet-chart │ │ │ ├── bulletchart-all.module.ts │ │ │ ├── bulletchart.component.ts │ │ │ ├── bulletchart.module.ts │ │ │ ├── index.ts │ │ │ └── ranges.directive.ts │ │ ├── chart │ │ │ ├── annotations.directive.ts │ │ │ ├── axes.directive.ts │ │ │ ├── categories.directive.ts │ │ │ ├── chart-all.module.ts │ │ │ ├── chart.component.ts │ │ │ ├── chart.module.ts │ │ │ ├── columns.directive.ts │ │ │ ├── index.ts │ │ │ ├── indicators.directive.ts │ │ │ ├── multilevellabels.directive.ts │ │ │ ├── rangecolorsettings.directive.ts │ │ │ ├── rows.directive.ts │ │ │ ├── segments.directive.ts │ │ │ ├── selecteddataindexes.directive.ts │ │ │ ├── series.directive.ts │ │ │ ├── striplines.directive.ts │ │ │ └── trendlines.directive.ts │ │ ├── chart3d │ │ │ ├── axes.directive.ts │ │ │ ├── chart3d-all.module.ts │ │ │ ├── chart3d.component.ts │ │ │ ├── chart3d.module.ts │ │ │ ├── columns.directive.ts │ │ │ ├── index.ts │ │ │ ├── rows.directive.ts │ │ │ ├── selecteddataindexes.directive.ts │ │ │ └── series.directive.ts │ │ ├── circularchart3d │ │ │ ├── circularchart3d-all.module.ts │ │ │ ├── circularchart3d.component.ts │ │ │ ├── circularchart3d.module.ts │ │ │ ├── index.ts │ │ │ ├── selecteddataindexes.directive.ts │ │ │ └── series.directive.ts │ │ ├── index.ts │ │ ├── range-navigator │ │ │ ├── index.ts │ │ │ ├── rangenavigator-all.module.ts │ │ │ ├── rangenavigator.component.ts │ │ │ ├── rangenavigator.module.ts │ │ │ └── series.directive.ts │ │ ├── smithchart │ │ │ ├── index.ts │ │ │ ├── series.directive.ts │ │ │ ├── smithchart-all.module.ts │ │ │ ├── smithchart.component.ts │ │ │ └── smithchart.module.ts │ │ ├── sparkline │ │ │ ├── index.ts │ │ │ ├── rangebandsettings.directive.ts │ │ │ ├── sparkline-all.module.ts │ │ │ ├── sparkline.component.ts │ │ │ └── sparkline.module.ts │ │ └── stock-chart │ │ │ ├── annotations.directive.ts │ │ │ ├── axes.directive.ts │ │ │ ├── index.ts │ │ │ ├── indicators.directive.ts │ │ │ ├── periods.directive.ts │ │ │ ├── rows.directive.ts │ │ │ ├── selecteddataindexes.directive.ts │ │ │ ├── series.directive.ts │ │ │ ├── stockchart-all.module.ts │ │ │ ├── stockchart.component.ts │ │ │ ├── stockchart.module.ts │ │ │ ├── stockevents.directive.ts │ │ │ └── trendlines.directive.ts │ └── tsconfig.json ├── circulargauge │ ├── CHANGELOG.md │ ├── README.md │ ├── ej2-angular-samples │ │ └── CircularGauge │ │ │ ├── annotation │ │ │ ├── annotation-service.component.ts │ │ │ └── annotation.component.ts │ │ │ ├── arch-gauge │ │ │ └── arch-gauge.component.ts │ │ │ ├── default │ │ │ └── default.component.ts │ │ │ ├── direction │ │ │ └── direction.component.ts │ │ │ ├── label │ │ │ └── label.component.ts │ │ │ ├── multiple-axis │ │ │ └── multiple-axis.component.ts │ │ │ ├── pointer-image │ │ │ └── pointer-image.component.ts │ │ │ ├── range │ │ │ └── range.component.ts │ │ │ ├── semi-circle │ │ │ └── semi-circle.component.ts │ │ │ ├── speedometer │ │ │ └── speedometer.component.ts │ │ │ ├── tooltip │ │ │ └── tooltip.component.ts │ │ │ └── user-interaction │ │ │ └── user-interaction.component.ts │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── circular-gauge │ │ │ ├── annotations.directive.ts │ │ │ ├── axes.directive.ts │ │ │ ├── circulargauge-all.module.ts │ │ │ ├── circulargauge.component.ts │ │ │ ├── circulargauge.module.ts │ │ │ ├── index.ts │ │ │ ├── pointers.directive.ts │ │ │ └── ranges.directive.ts │ │ └── index.ts │ └── tsconfig.json ├── diagrams │ ├── CHANGELOG.md │ ├── README.md │ ├── ej2-angular-samples │ │ └── diagram │ │ │ ├── default-functionalities │ │ │ └── default-functionalities.component.ts │ │ │ ├── hierarchical-tree │ │ │ ├── assets │ │ │ │ └── diagram-data.ts │ │ │ └── hierarchical-tree.component.ts │ │ │ ├── organization-chart │ │ │ ├── assets │ │ │ │ └── diagram-data.ts │ │ │ └── organization-chart.component.ts │ │ │ ├── overview │ │ │ ├── assets │ │ │ │ └── overview-data.ts │ │ │ └── overview.component.ts │ │ │ └── radial-tree │ │ │ ├── assets │ │ │ └── diagram-data.ts │ │ │ └── radial-tree.component.ts │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── diagram │ │ │ ├── connector-annotation.directive.ts │ │ │ ├── connector-fixeduserhandle.directive.ts │ │ │ ├── connectors.directive.ts │ │ │ ├── customcursor.directive.ts │ │ │ ├── diagram-all.module.ts │ │ │ ├── diagram.component.ts │ │ │ ├── diagram.module.ts │ │ │ ├── index.ts │ │ │ ├── layers.directive.ts │ │ │ ├── node-annotation.directive.ts │ │ │ ├── node-fixeduserhandle.directive.ts │ │ │ ├── nodes.directive.ts │ │ │ └── ports.directive.ts │ │ ├── index.ts │ │ ├── overview │ │ │ ├── index.ts │ │ │ ├── overview-all.module.ts │ │ │ ├── overview.component.ts │ │ │ └── overview.module.ts │ │ └── symbol-palette │ │ │ ├── index.ts │ │ │ ├── palettes.directive.ts │ │ │ ├── symbolpalette-all.module.ts │ │ │ ├── symbolpalette.component.ts │ │ │ └── symbolpalette.module.ts │ ├── styles │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── diagram │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ └── tailwind3.scss │ └── tsconfig.json ├── documenteditor │ ├── CHANGELOG.md │ ├── README.md │ ├── ej2-angular-samples │ │ └── DocumentEditorContainer │ │ │ └── default │ │ │ ├── assets │ │ │ └── data.ts │ │ │ └── default.component.ts │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── document-editor-container │ │ │ ├── documenteditorcontainer-all.module.ts │ │ │ ├── documenteditorcontainer.component.ts │ │ │ ├── documenteditorcontainer.module.ts │ │ │ └── index.ts │ │ ├── document-editor │ │ │ ├── documenteditor-all.module.ts │ │ │ ├── documenteditor.component.ts │ │ │ ├── documenteditor.module.ts │ │ │ └── index.ts │ │ └── index.ts │ ├── styles │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── document-editor-container │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── document-editor │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ └── tailwind3.scss │ └── tsconfig.json ├── dropdowns │ ├── CHANGELOG.md │ ├── README.md │ ├── ej2-angular-samples │ │ ├── AutoComplete │ │ │ ├── custom-filtering │ │ │ │ └── custom-filtering.component.ts │ │ │ ├── default │ │ │ │ └── default.component.ts │ │ │ ├── diacritics-filtering │ │ │ │ └── diacritics-filtering.component.ts │ │ │ ├── highlight │ │ │ │ └── highlight.component.ts │ │ │ ├── reactive-form │ │ │ │ └── reactive-form.component.ts │ │ │ ├── template-driven │ │ │ │ └── template-driven.component.ts │ │ │ └── template │ │ │ │ └── template.component.ts │ │ ├── ComboBox │ │ │ ├── custom-value │ │ │ │ └── custom-value.component.ts │ │ │ ├── default │ │ │ │ └── default.component.ts │ │ │ ├── filtering │ │ │ │ └── filtering.component.ts │ │ │ ├── grouping │ │ │ │ └── grouping.component.ts │ │ │ ├── reactive-form │ │ │ │ └── reactive-form.component.ts │ │ │ ├── template-driven │ │ │ │ └── template-driven.component.ts │ │ │ └── template │ │ │ │ └── template.component.ts │ │ ├── DropDownList │ │ │ ├── cascading │ │ │ │ └── cascading.component.ts │ │ │ ├── default │ │ │ │ └── default.component.ts │ │ │ ├── filtering │ │ │ │ └── filtering.component.ts │ │ │ ├── inline │ │ │ │ └── inline.component.ts │ │ │ ├── reactive-form │ │ │ │ └── reactive-form.component.ts │ │ │ ├── template-driven │ │ │ │ └── template-driven.component.ts │ │ │ └── template │ │ │ │ └── template.component.ts │ │ └── MultiSelect │ │ │ ├── box-mode │ │ │ └── box-mode.component.ts │ │ │ ├── checkbox │ │ │ └── checkbox.component.ts │ │ │ ├── chip-customization │ │ │ └── chip-customization.component.ts │ │ │ ├── delimiter-mode │ │ │ └── delimiter-mode.component.ts │ │ │ ├── filtering │ │ │ └── filtering.component.ts │ │ │ ├── reactive-form │ │ │ └── reactive-form.component.ts │ │ │ ├── template-driven │ │ │ └── template-driven.component.ts │ │ │ └── template │ │ │ └── template.component.ts │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── auto-complete │ │ │ ├── autocomplete-all.module.ts │ │ │ ├── autocomplete.component.ts │ │ │ ├── autocomplete.module.ts │ │ │ └── index.ts │ │ ├── combo-box │ │ │ ├── combobox-all.module.ts │ │ │ ├── combobox.component.ts │ │ │ ├── combobox.module.ts │ │ │ └── index.ts │ │ ├── drop-down-list │ │ │ ├── dropdownlist-all.module.ts │ │ │ ├── dropdownlist.component.ts │ │ │ ├── dropdownlist.module.ts │ │ │ └── index.ts │ │ ├── drop-down-tree │ │ │ ├── dropdowntree-all.module.ts │ │ │ ├── dropdowntree.component.ts │ │ │ ├── dropdowntree.module.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── list-box │ │ │ ├── index.ts │ │ │ ├── listbox-all.module.ts │ │ │ ├── listbox.component.ts │ │ │ └── listbox.module.ts │ │ ├── mention │ │ │ ├── index.ts │ │ │ ├── mention-all.module.ts │ │ │ ├── mention.component.ts │ │ │ └── mention.module.ts │ │ └── multi-select │ │ │ ├── index.ts │ │ │ ├── multiselect-all.module.ts │ │ │ ├── multiselect.component.ts │ │ │ └── multiselect.module.ts │ ├── styles │ │ ├── auto-complete │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── combo-box │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── drop-down-base │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── drop-down-list │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── drop-down-tree │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── list-box │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── mention │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── multi-select │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ └── tailwind3.scss │ └── tsconfig.json ├── filemanager │ ├── CHANGELOG.md │ ├── README.md │ ├── ej2-angular-samples │ │ └── FileManager │ │ │ ├── default │ │ │ └── default.component.ts │ │ │ ├── localization │ │ │ └── localization.component.ts │ │ │ ├── overview │ │ │ └── overview.component.ts │ │ │ └── rtl │ │ │ └── rtl.component.ts │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── file-manager │ │ │ ├── filemanager-all.module.ts │ │ │ ├── filemanager.component.ts │ │ │ ├── filemanager.module.ts │ │ │ ├── index.ts │ │ │ └── toolbaritems.directive.ts │ │ └── index.ts │ ├── styles │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── file-manager │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ └── tailwind3.scss │ └── tsconfig.json ├── gantt │ ├── CHANGELOG.md │ ├── README.md │ ├── ej2-angular-samples │ │ └── Gantt │ │ │ ├── daymarkers │ │ │ ├── assets │ │ │ │ └── data-source.ts │ │ │ └── daymarkers.component.ts │ │ │ ├── default │ │ │ └── default.component.ts │ │ │ ├── editing │ │ │ ├── assets │ │ │ │ └── data-source.ts │ │ │ └── editing.component.ts │ │ │ └── localdata │ │ │ ├── assets │ │ │ └── data-source.ts │ │ │ └── localdata.component.ts │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── gantt │ │ │ ├── adddialogfields.directive.ts │ │ │ ├── columns.directive.ts │ │ │ ├── dayworkingtime.directive.ts │ │ │ ├── editdialogfields.directive.ts │ │ │ ├── eventmarkers.directive.ts │ │ │ ├── gantt-all.module.ts │ │ │ ├── gantt.component.ts │ │ │ ├── gantt.module.ts │ │ │ ├── holidays.directive.ts │ │ │ ├── index.ts │ │ │ └── weekworkingtime.directive.ts │ │ └── index.ts │ ├── styles │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── gantt │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ └── tailwind3.scss │ └── tsconfig.json ├── grids │ ├── CHANGELOG.md │ ├── README.md │ ├── ej2-angular-samples │ │ └── Grid │ │ │ ├── default │ │ │ └── default.component.ts │ │ │ └── feature │ │ │ └── feature.component.ts │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── grid │ │ │ ├── aggregate-columns.directive.ts │ │ │ ├── aggregates.directive.ts │ │ │ ├── columns.directive.ts │ │ │ ├── grid-all.module.ts │ │ │ ├── grid.component.ts │ │ │ ├── grid.module.ts │ │ │ ├── index.ts │ │ │ └── stacked-column.directive.ts │ │ ├── index.ts │ │ └── pager │ │ │ ├── index.ts │ │ │ ├── pager-all.module.ts │ │ │ ├── pager.component.ts │ │ │ └── pager.module.ts │ ├── styles │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── excel-filter │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── grid │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ └── tailwind3.scss │ └── tsconfig.json ├── heatmap │ ├── CHANGELOG.md │ ├── README.md │ ├── ej2-angular-samples │ │ └── HeatMap │ │ │ ├── bubbletype │ │ │ └── bubbletype.component.ts │ │ │ ├── palettetype │ │ │ └── palettetype.component.ts │ │ │ ├── renderingmode │ │ │ └── renderingmode.component.ts │ │ │ └── sizeandcolorbubble │ │ │ └── sizeandcolorbubble.component.ts │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── heatmap │ │ │ ├── heatmap-all.module.ts │ │ │ ├── heatmap.component.ts │ │ │ ├── heatmap.module.ts │ │ │ └── index.ts │ │ └── index.ts │ └── tsconfig.json ├── imageeditor │ ├── CHANGELOG.md │ ├── README.md │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── image-editor │ │ │ ├── imageeditor-all.module.ts │ │ │ ├── imageeditor.component.ts │ │ │ ├── imageeditor.module.ts │ │ │ └── index.ts │ │ └── index.ts │ ├── styles │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── image-editor │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ └── tailwind3.scss │ └── tsconfig.json ├── inplaceeditor │ ├── CHANGELOG.md │ ├── README.md │ ├── ej2-angular-samples │ │ └── InPlaceEditor │ │ │ ├── inline │ │ │ └── inline.component.ts │ │ │ ├── popup-position │ │ │ └── popup-position.component.ts │ │ │ ├── popup │ │ │ └── popup.component.ts │ │ │ ├── template │ │ │ └── template.component.ts │ │ │ └── validation │ │ │ └── validation.component.ts │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── inplace-editor │ │ │ ├── index.ts │ │ │ ├── inplaceeditor-all.module.ts │ │ │ ├── inplaceeditor.component.ts │ │ │ └── inplaceeditor.module.ts │ ├── styles │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── inplace-editor │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ └── tailwind3.scss │ └── tsconfig.json ├── inputs │ ├── CHANGELOG.md │ ├── README.md │ ├── ej2-angular-samples │ │ ├── ColorPicker │ │ │ └── default │ │ │ │ └── default.component.ts │ │ ├── MaskedTextBox │ │ │ ├── custommask │ │ │ │ └── custommask.component.ts │ │ │ ├── default │ │ │ │ └── default.component.ts │ │ │ └── formats │ │ │ │ └── formats.component.ts │ │ ├── NumericTextBox │ │ │ ├── customformat │ │ │ │ └── customformat.component.ts │ │ │ ├── decimals │ │ │ │ └── decimals.component.ts │ │ │ ├── default │ │ │ │ └── default.component.ts │ │ │ └── range │ │ │ │ └── range.component.ts │ │ ├── Slider │ │ │ ├── default │ │ │ │ └── default.component.ts │ │ │ ├── limits │ │ │ │ └── limits.component.ts │ │ │ ├── minrange │ │ │ │ └── minrange.component.ts │ │ │ ├── range │ │ │ │ └── range.component.ts │ │ │ ├── ticks │ │ │ │ └── ticks.component.ts │ │ │ └── vertical │ │ │ │ └── vertical.component.ts │ │ ├── TextBox │ │ │ └── floatinglabel │ │ │ │ └── floatinglabel.component.ts │ │ └── Uploader │ │ │ ├── autoupload │ │ │ └── autoupload.component.ts │ │ │ ├── chunkupload │ │ │ └── chunkupload.component.ts │ │ │ ├── directoryupload │ │ │ └── directoryupload.component.ts │ │ │ └── validation │ │ │ └── validation.component.ts │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── color-picker │ │ │ ├── colorpicker-all.module.ts │ │ │ ├── colorpicker.component.ts │ │ │ ├── colorpicker.module.ts │ │ │ └── index.ts │ │ ├── form-validator │ │ │ ├── form-validator.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── maskedtextbox │ │ │ ├── index.ts │ │ │ ├── maskedtextbox-all.module.ts │ │ │ ├── maskedtextbox.component.ts │ │ │ └── maskedtextbox.module.ts │ │ ├── numerictextbox │ │ │ ├── index.ts │ │ │ ├── numerictextbox-all.module.ts │ │ │ ├── numerictextbox.component.ts │ │ │ └── numerictextbox.module.ts │ │ ├── otp-input │ │ │ ├── index.ts │ │ │ ├── otpinput-all.module.ts │ │ │ ├── otpinput.component.ts │ │ │ └── otpinput.module.ts │ │ ├── rating │ │ │ ├── index.ts │ │ │ ├── rating-all.module.ts │ │ │ ├── rating.component.ts │ │ │ └── rating.module.ts │ │ ├── signature │ │ │ ├── index.ts │ │ │ ├── signature-all.module.ts │ │ │ ├── signature.component.ts │ │ │ └── signature.module.ts │ │ ├── slider │ │ │ ├── index.ts │ │ │ ├── slider-all.module.ts │ │ │ ├── slider.component.ts │ │ │ └── slider.module.ts │ │ ├── smart-textarea │ │ │ ├── index.ts │ │ │ ├── smarttextarea-all.module.ts │ │ │ ├── smarttextarea.component.ts │ │ │ └── smarttextarea.module.ts │ │ ├── speech-to-text │ │ │ ├── index.ts │ │ │ ├── speechtotext-all.module.ts │ │ │ ├── speechtotext.component.ts │ │ │ └── speechtotext.module.ts │ │ ├── textarea │ │ │ ├── index.ts │ │ │ ├── textarea-all.module.ts │ │ │ ├── textarea.component.ts │ │ │ └── textarea.module.ts │ │ ├── textbox │ │ │ ├── index.ts │ │ │ ├── textbox-all.module.ts │ │ │ ├── textbox.component.ts │ │ │ └── textbox.module.ts │ │ └── uploader │ │ │ ├── files.directive.ts │ │ │ ├── index.ts │ │ │ ├── uploader-all.module.ts │ │ │ ├── uploader.component.ts │ │ │ └── uploader.module.ts │ ├── styles │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── color-picker │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── data-form │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── input │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── maskedtextbox │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── numerictextbox │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── otp-input │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── rating │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── signature │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── slider │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── smart-textarea │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── speech-to-text │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ ├── tailwind3.scss │ │ ├── textarea │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── textbox │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ └── uploader │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ └── tsconfig.json ├── interactivechat │ ├── CHANGELOG.md │ ├── README.md │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── ai-assistview │ │ │ ├── aiassistview-all.module.ts │ │ │ ├── aiassistview.component.ts │ │ │ ├── aiassistview.module.ts │ │ │ ├── index.ts │ │ │ └── views.directive.ts │ │ ├── chat-ui │ │ │ ├── chatui-all.module.ts │ │ │ ├── chatui.component.ts │ │ │ ├── chatui.module.ts │ │ │ ├── index.ts │ │ │ └── messages.directive.ts │ │ └── index.ts │ ├── styles │ │ ├── ai-assistview │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── chat-ui │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ └── tailwind3.scss │ └── tsconfig.json ├── kanban │ ├── CHANGELOG.md │ ├── README.md │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── kanban │ │ │ ├── columns.directive.ts │ │ │ ├── index.ts │ │ │ ├── kanban-all.module.ts │ │ │ ├── kanban.component.ts │ │ │ ├── kanban.module.ts │ │ │ └── stackedheaders.directive.ts │ ├── styles │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── kanban │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ └── tailwind3.scss │ └── tsconfig.json ├── layouts │ ├── CHANGELOG.md │ ├── README.md │ ├── ej2-angular-samples │ │ ├── DashboardLayout │ │ │ ├── default │ │ │ │ └── default.component.ts │ │ │ ├── dragging │ │ │ │ └── dragging.component.ts │ │ │ ├── floating │ │ │ │ └── floating.component.ts │ │ │ ├── media-query │ │ │ │ └── media-query.component.ts │ │ │ └── resizing │ │ │ │ └── resizing.component.ts │ │ └── Splitter │ │ │ ├── horizontalsplitter │ │ │ └── horizontalsplitter.component.ts │ │ │ ├── nestedsplitter │ │ │ └── nestedsplitter.component.ts │ │ │ └── verticalsplitter │ │ │ └── verticalsplitter.component.ts │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── dashboard-layout │ │ │ ├── dashboardlayout-all.module.ts │ │ │ ├── dashboardlayout.component.ts │ │ │ ├── dashboardlayout.module.ts │ │ │ ├── index.ts │ │ │ └── panels.directive.ts │ │ ├── index.ts │ │ ├── splitter │ │ │ ├── index.ts │ │ │ ├── panesettings.directive.ts │ │ │ ├── splitter-all.module.ts │ │ │ ├── splitter.component.ts │ │ │ └── splitter.module.ts │ │ └── timeline │ │ │ ├── index.ts │ │ │ ├── items.directive.ts │ │ │ ├── timeline-all.module.ts │ │ │ ├── timeline.component.ts │ │ │ └── timeline.module.ts │ ├── styles │ │ ├── avatar │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── card │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── dashboard-layout │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── splitter │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ ├── tailwind3.scss │ │ └── timeline │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ └── tsconfig.json ├── lineargauge │ ├── CHANGELOG.md │ ├── README.md │ ├── ej2-angular-samples │ │ └── LinearGauge │ │ │ ├── annotation │ │ │ └── annotation.component.ts │ │ │ ├── axis-line │ │ │ └── axis-line.component.ts │ │ │ ├── bar-pointer │ │ │ └── bar-pointer.component.ts │ │ │ ├── container-rounded-rectangle │ │ │ └── container-rounded-rectangle.component.ts │ │ │ ├── container-thermometer │ │ │ └── container-thermometer.component.ts │ │ │ ├── customize-label │ │ │ └── customize-label.component.ts │ │ │ ├── customize-ticks │ │ │ └── customize-ticks.component.ts │ │ │ ├── customized-appearance │ │ │ └── customized-appearance.component.ts │ │ │ ├── default │ │ │ └── default.component.ts │ │ │ ├── inverse-axes │ │ │ └── inverse-axes.component.ts │ │ │ ├── label-offset │ │ │ └── label-offset.component.ts │ │ │ ├── marker-pointer-shape │ │ │ └── marker-pointer-shape.component.ts │ │ │ ├── marker-pointer │ │ │ └── marker-pointer.component.ts │ │ │ ├── multiple-axes │ │ │ └── multiple-axes.component.ts │ │ │ ├── multiple-pointer │ │ │ └── multiple-pointer.component.ts │ │ │ ├── multiple-range │ │ │ └── multiple-range.component.ts │ │ │ ├── pointer-animation │ │ │ └── pointer-animation.component.ts │ │ │ ├── pointer-interaction │ │ │ └── pointer-interaction.component.ts │ │ │ ├── range-width │ │ │ └── range-width.component.ts │ │ │ └── tooltip │ │ │ └── tooltip.component.ts │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── linear-gauge │ │ │ ├── annotations.directive.ts │ │ │ ├── axes.directive.ts │ │ │ ├── index.ts │ │ │ ├── lineargauge-all.module.ts │ │ │ ├── lineargauge.component.ts │ │ │ ├── lineargauge.module.ts │ │ │ ├── pointers.directive.ts │ │ │ └── ranges.directive.ts │ └── tsconfig.json ├── lists │ ├── CHANGELOG.md │ ├── README.md │ ├── ej2-angular-samples │ │ └── ListView │ │ │ ├── checklist │ │ │ └── checklist.component.ts │ │ │ ├── default │ │ │ └── default.component.ts │ │ │ ├── nestedlist │ │ │ └── nestedlist.component.ts │ │ │ ├── remotelist │ │ │ └── remotelist.component.ts │ │ │ ├── templatelist │ │ │ └── template.component.ts │ │ │ └── virtualization │ │ │ └── virtualization.component.ts │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── list-view │ │ │ ├── index.ts │ │ │ ├── listview-all.module.ts │ │ │ ├── listview.component.ts │ │ │ └── listview.module.ts │ ├── styles │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── list-view │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── sortable │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ └── tailwind3.scss │ └── tsconfig.json ├── maps │ ├── CHANGELOG.md │ ├── README.md │ ├── ej2-angular-samples │ │ └── Maps │ │ │ ├── annotation │ │ │ ├── annotation.component.ts │ │ │ └── assets │ │ │ │ └── africa-continent.ts │ │ │ ├── bubble │ │ │ ├── assets │ │ │ │ ├── population-data.ts │ │ │ │ └── world-map.ts │ │ │ └── bubble.component.ts │ │ │ ├── color-mapping │ │ │ ├── assets │ │ │ │ └── world-map.ts │ │ │ └── color-mapping.component.ts │ │ │ ├── default │ │ │ ├── assets │ │ │ │ └── world-map.ts │ │ │ └── default.component.ts │ │ │ ├── label │ │ │ ├── assets │ │ │ │ └── world-map.ts │ │ │ └── label.component.ts │ │ │ ├── legend │ │ │ ├── assets │ │ │ │ ├── default-datasource.ts │ │ │ │ └── world-map.ts │ │ │ └── legend.component.ts │ │ │ ├── marker │ │ │ ├── assets │ │ │ │ ├── default-datasource.ts │ │ │ │ └── world-map.ts │ │ │ └── marker.component.ts │ │ │ ├── navigation-line │ │ │ ├── assets │ │ │ │ ├── map-location.ts │ │ │ │ └── world-map.ts │ │ │ └── navigation-line.component.ts │ │ │ └── osm │ │ │ └── osm.component.ts │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── maps │ │ │ ├── annotations.directive.ts │ │ │ ├── bubblesettings.directive.ts │ │ │ ├── colormapping.directive.ts │ │ │ ├── index.ts │ │ │ ├── initialshapeselection.directive.ts │ │ │ ├── layers.directive.ts │ │ │ ├── maps-all.module.ts │ │ │ ├── maps.component.ts │ │ │ ├── maps.module.ts │ │ │ ├── markersettings.directive.ts │ │ │ └── navigationlinesettings.directive.ts │ └── tsconfig.json ├── multicolumncombobox │ ├── CHANGELOG.md │ ├── README.md │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── multicolumn-combobox │ │ │ ├── columns.directive.ts │ │ │ ├── index.ts │ │ │ ├── multicolumncombobox-all.module.ts │ │ │ ├── multicolumncombobox.component.ts │ │ │ └── multicolumncombobox.module.ts │ ├── styles │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── multicolumn-combobox │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ └── tailwind3.scss │ └── tsconfig.json ├── navigations │ ├── CHANGELOG.md │ ├── README.md │ ├── ej2-angular-samples │ │ ├── Accordion │ │ │ ├── default │ │ │ │ └── default.component.ts │ │ │ ├── html-template │ │ │ │ └── html-template.component.ts │ │ │ ├── multiple-expand │ │ │ │ └── multiple-expand.component.ts │ │ │ └── nested │ │ │ │ └── nested.component.ts │ │ ├── ContextMenu │ │ │ └── default │ │ │ │ └── default.component.ts │ │ ├── Menu │ │ │ └── default │ │ │ │ └── default.component.ts │ │ ├── Sidebar │ │ │ ├── backdrop │ │ │ │ └── backdrop.component.ts │ │ │ ├── dock │ │ │ │ └── dock.component.ts │ │ │ ├── target │ │ │ │ └── target.component.ts │ │ │ └── types │ │ │ │ └── types.component.ts │ │ ├── Tab │ │ │ ├── html-template │ │ │ │ └── html-template.component.ts │ │ │ ├── icon │ │ │ │ └── icon.component.ts │ │ │ ├── nested │ │ │ │ └── nested.component.ts │ │ │ ├── popup │ │ │ │ └── popup.component.ts │ │ │ ├── scrollable │ │ │ │ └── scrollable.component.ts │ │ │ └── vertical │ │ │ │ └── vertical.component.ts │ │ ├── Toolbar │ │ │ ├── alignment │ │ │ │ └── alignment.component.ts │ │ │ ├── extended │ │ │ │ └── extended.component.ts │ │ │ ├── html-template │ │ │ │ └── html-template.component.ts │ │ │ ├── multi-row │ │ │ │ └── multi-row.component.ts │ │ │ ├── popup │ │ │ │ └── popup.component.ts │ │ │ └── scrollable │ │ │ │ └── scrollable.component.ts │ │ └── TreeView │ │ │ ├── checkbox │ │ │ └── checkbox.component.ts │ │ │ ├── default │ │ │ └── default.component.ts │ │ │ ├── draganddrop │ │ │ └── draganddrop.component.ts │ │ │ ├── multiselection │ │ │ └── multiselection.component.ts │ │ │ ├── nodeediting │ │ │ └── nodeediting.component.ts │ │ │ ├── remotedata │ │ │ └── remotedata.component.ts │ │ │ └── treetemplate │ │ │ └── treetemplate.component.ts │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── accordion │ │ │ ├── accordion-all.module.ts │ │ │ ├── accordion.component.ts │ │ │ ├── accordion.module.ts │ │ │ ├── index.ts │ │ │ └── items.directive.ts │ │ ├── appbar │ │ │ ├── appbar-all.module.ts │ │ │ ├── appbar.component.ts │ │ │ ├── appbar.module.ts │ │ │ └── index.ts │ │ ├── breadcrumb │ │ │ ├── breadcrumb-all.module.ts │ │ │ ├── breadcrumb.component.ts │ │ │ ├── breadcrumb.module.ts │ │ │ ├── index.ts │ │ │ └── items.directive.ts │ │ ├── carousel │ │ │ ├── carousel-all.module.ts │ │ │ ├── carousel.component.ts │ │ │ ├── carousel.module.ts │ │ │ ├── index.ts │ │ │ └── items.directive.ts │ │ ├── context-menu │ │ │ ├── contextmenu-all.module.ts │ │ │ ├── contextmenu.component.ts │ │ │ ├── contextmenu.module.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── menu │ │ │ ├── index.ts │ │ │ ├── items.directive.ts │ │ │ ├── menu-all.module.ts │ │ │ ├── menu.component.ts │ │ │ └── menu.module.ts │ │ ├── sidebar │ │ │ ├── index.ts │ │ │ ├── sidebar-all.module.ts │ │ │ ├── sidebar.component.ts │ │ │ └── sidebar.module.ts │ │ ├── stepper │ │ │ ├── index.ts │ │ │ ├── stepper-all.module.ts │ │ │ ├── stepper.component.ts │ │ │ ├── stepper.module.ts │ │ │ └── steps.directive.ts │ │ ├── tab │ │ │ ├── index.ts │ │ │ ├── items.directive.ts │ │ │ ├── tab-all.module.ts │ │ │ ├── tab.component.ts │ │ │ └── tab.module.ts │ │ ├── toolbar │ │ │ ├── index.ts │ │ │ ├── items.directive.ts │ │ │ ├── toolbar-all.module.ts │ │ │ ├── toolbar.component.ts │ │ │ └── toolbar.module.ts │ │ └── treeview │ │ │ ├── index.ts │ │ │ ├── treeview-all.module.ts │ │ │ ├── treeview.component.ts │ │ │ └── treeview.module.ts │ ├── styles │ │ ├── accordion │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── appbar │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── breadcrumb │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── carousel │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── context-menu │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── h-scroll │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── menu │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── pager │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── sidebar │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── stepper │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── tab │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ ├── tailwind3.scss │ │ ├── toolbar │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── treeview │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ └── v-scroll │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ └── tsconfig.json ├── notifications │ ├── CHANGELOG.md │ ├── README.md │ ├── ej2-angular-samples │ │ └── Toast │ │ │ ├── default │ │ │ └── default.component.ts │ │ │ ├── position │ │ │ └── position.component.ts │ │ │ ├── template │ │ │ └── template.component.ts │ │ │ └── types │ │ │ └── types.component.ts │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── message │ │ │ ├── index.ts │ │ │ ├── message-all.module.ts │ │ │ ├── message.component.ts │ │ │ └── message.module.ts │ │ ├── skeleton │ │ │ ├── index.ts │ │ │ ├── skeleton-all.module.ts │ │ │ ├── skeleton.component.ts │ │ │ └── skeleton.module.ts │ │ └── toast │ │ │ ├── buttons.directive.ts │ │ │ ├── index.ts │ │ │ ├── toast-all.module.ts │ │ │ ├── toast.component.ts │ │ │ └── toast.module.ts │ ├── styles │ │ ├── badge │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── message │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── skeleton │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ ├── tailwind3.scss │ │ └── toast │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ └── tsconfig.json ├── pdfviewer │ ├── CHANGELOG.md │ ├── README.md │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── pdfviewer │ │ │ ├── index.ts │ │ │ ├── pdfviewer-all.module.ts │ │ │ ├── pdfviewer.component.ts │ │ │ └── pdfviewer.module.ts │ ├── styles │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── pdfviewer │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ └── tailwind3.scss │ └── tsconfig.json ├── pivotview │ ├── CHANGELOG.md │ ├── README.md │ ├── ej2-angular-samples │ │ └── PivotView │ │ │ ├── default │ │ │ └── default.component.ts │ │ │ └── fieldlist │ │ │ └── fieldlist.component.ts │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── pivotfieldlist │ │ │ ├── index.ts │ │ │ ├── pivotfieldlist-all.module.ts │ │ │ ├── pivotfieldlist.component.ts │ │ │ └── pivotfieldlist.module.ts │ │ └── pivotview │ │ │ ├── index.ts │ │ │ ├── pivotview-all.module.ts │ │ │ ├── pivotview.component.ts │ │ │ └── pivotview.module.ts │ ├── styles │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── pivotfieldlist │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── pivotview │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ └── tailwind3.scss │ └── tsconfig.json ├── popups │ ├── CHANGELOG.md │ ├── README.md │ ├── ej2-angular-samples │ │ ├── Dialog │ │ │ ├── customdialogs │ │ │ │ └── customdialogs.component.ts │ │ │ ├── defaultdialog │ │ │ │ └── defaultdialog.component.ts │ │ │ └── modaldialog │ │ │ │ └── modaldialog.component.ts │ │ └── Tooltip │ │ │ ├── default │ │ │ └── default.component.ts │ │ │ └── template │ │ │ └── template.component.ts │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── dialog │ │ │ ├── buttons.directive.ts │ │ │ ├── dialog-all.module.ts │ │ │ ├── dialog.component.ts │ │ │ ├── dialog.module.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ └── tooltip │ │ │ ├── index.ts │ │ │ ├── tooltip-all.module.ts │ │ │ ├── tooltip.component.ts │ │ │ └── tooltip.module.ts │ ├── styles │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── dialog │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── popup │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── spinner │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ ├── tailwind3.scss │ │ └── tooltip │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ └── tsconfig.json ├── progressbar │ ├── CHANGELOG.md │ ├── README.md │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── progressbar │ │ │ ├── annotations.directive.ts │ │ │ ├── index.ts │ │ │ ├── progressbar-all.module.ts │ │ │ ├── progressbar.component.ts │ │ │ ├── progressbar.module.ts │ │ │ └── rangecolors.directive.ts │ └── tsconfig.json ├── querybuilder │ ├── CHANGELOG.md │ ├── README.md │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── query-builder │ │ │ ├── columns.directive.ts │ │ │ ├── index.ts │ │ │ ├── querybuilder-all.module.ts │ │ │ ├── querybuilder.component.ts │ │ │ └── querybuilder.module.ts │ ├── styles │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── query-builder │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ └── tailwind3.scss │ └── tsconfig.json ├── ribbon │ ├── CHANGELOG.md │ ├── README.md │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── ribbon │ │ │ ├── collections.directive.ts │ │ │ ├── contextualtabs.directive.ts │ │ │ ├── groups.directive.ts │ │ │ ├── index.ts │ │ │ ├── items.directive.ts │ │ │ ├── ribbon-all.module.ts │ │ │ ├── ribbon.component.ts │ │ │ ├── ribbon.module.ts │ │ │ └── tabs.directive.ts │ ├── styles │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── ribbon │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ └── tailwind3.scss │ └── tsconfig.json ├── richtexteditor │ ├── CHANGELOG.md │ ├── README.md │ ├── ej2-angular-samples │ │ └── RichTextEditor │ │ │ ├── iframe │ │ │ └── iframe.component.ts │ │ │ ├── inline │ │ │ └── inline.component.ts │ │ │ ├── markdown │ │ │ └── markdown.component.ts │ │ │ ├── overview │ │ │ └── overview.component.ts │ │ │ ├── reactform │ │ │ └── reactform.component.ts │ │ │ └── templatedriven │ │ │ └── templatedriven.component.ts │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── rich-text-editor │ │ │ ├── index.ts │ │ │ ├── richtexteditor-all.module.ts │ │ │ ├── richtexteditor.component.ts │ │ │ └── richtexteditor.module.ts │ ├── styles │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── rich-text-editor │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ └── tailwind3.scss │ └── tsconfig.json ├── schedule │ ├── CHANGELOG.md │ ├── README.md │ ├── ej2-angular-samples │ │ └── Schedule │ │ │ ├── agenda-views │ │ │ ├── agenda-views.component.ts │ │ │ └── assets │ │ │ │ └── datasource.ts │ │ │ ├── calendar-views │ │ │ ├── assets │ │ │ │ └── datasource.ts │ │ │ └── calendar-views.component.ts │ │ │ ├── horizontal-grouping │ │ │ ├── assets │ │ │ │ └── datasource.ts │ │ │ └── horizontal-grouping.component.ts │ │ │ ├── time-scale │ │ │ ├── assets │ │ │ │ └── datasource.ts │ │ │ └── time-scale.component.ts │ │ │ ├── timeline-grouping │ │ │ ├── assets │ │ │ │ └── datasource.ts │ │ │ └── timeline-grouping.component.ts │ │ │ └── timeline-views │ │ │ ├── assets │ │ │ └── datasource.ts │ │ │ └── timeline-views.component.ts │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── recurrence-editor │ │ │ ├── index.ts │ │ │ ├── recurrenceeditor-all.module.ts │ │ │ ├── recurrenceeditor.component.ts │ │ │ └── recurrenceeditor.module.ts │ │ └── schedule │ │ │ ├── headerrows.directive.ts │ │ │ ├── index.ts │ │ │ ├── resources.directive.ts │ │ │ ├── schedule-all.module.ts │ │ │ ├── schedule.component.ts │ │ │ ├── schedule.module.ts │ │ │ ├── toolbaritems.directive.ts │ │ │ └── views.directive.ts │ ├── styles │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── recurrence-editor │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── schedule │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ └── tailwind3.scss │ └── tsconfig.json ├── splitbuttons │ ├── CHANGELOG.md │ ├── README.md │ ├── ej2-angular-samples │ │ ├── DropDownButton │ │ │ └── default │ │ │ │ └── default.component.ts │ │ ├── ProgressButton │ │ │ └── default │ │ │ │ └── default.component.ts │ │ └── SplitButton │ │ │ └── default │ │ │ └── default.component.ts │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── drop-down-button │ │ │ ├── dropdownbutton-all.module.ts │ │ │ ├── dropdownbutton.component.ts │ │ │ ├── dropdownbutton.module.ts │ │ │ ├── index.ts │ │ │ └── items.directive.ts │ │ ├── index.ts │ │ ├── progress-button │ │ │ ├── index.ts │ │ │ ├── progressbutton-all.module.ts │ │ │ ├── progressbutton.component.ts │ │ │ └── progressbutton.module.ts │ │ └── split-button │ │ │ ├── index.ts │ │ │ ├── items.directive.ts │ │ │ ├── splitbutton-all.module.ts │ │ │ ├── splitbutton.component.ts │ │ │ └── splitbutton.module.ts │ ├── styles │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── button-group │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── drop-down-button │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── progress-button │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── split-button │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ └── tailwind3.scss │ └── tsconfig.json ├── spreadsheet │ ├── CHANGELOG.md │ ├── README.md │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── spreadsheet │ │ │ ├── cells.directive.ts │ │ │ ├── chart.directive.ts │ │ │ ├── columns.directive.ts │ │ │ ├── conditionalformats.directive.ts │ │ │ ├── definednames.directive.ts │ │ │ ├── image.directive.ts │ │ │ ├── index.ts │ │ │ ├── ranges.directive.ts │ │ │ ├── rows.directive.ts │ │ │ ├── sheets.directive.ts │ │ │ ├── spreadsheet-all.module.ts │ │ │ ├── spreadsheet.component.ts │ │ │ └── spreadsheet.module.ts │ ├── styles │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── spreadsheet-ribbon │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── spreadsheet │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ └── tailwind3.scss │ └── tsconfig.json ├── treegrid │ ├── CHANGELOG.md │ ├── README.md │ ├── ej2-angular-samples │ │ └── TreeGrid │ │ │ ├── default │ │ │ └── default.component.ts │ │ │ └── feature │ │ │ └── feature.component.ts │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── treegrid │ │ │ ├── aggregate-columns.directive.ts │ │ │ ├── aggregates.directive.ts │ │ │ ├── columns.directive.ts │ │ │ ├── index.ts │ │ │ ├── stacked-column.directive.ts │ │ │ ├── treegrid-all.module.ts │ │ │ ├── treegrid.component.ts │ │ │ └── treegrid.module.ts │ ├── styles │ │ ├── bds-lite.scss │ │ ├── bds.scss │ │ ├── bootstrap-dark-lite.scss │ │ ├── bootstrap-dark.scss │ │ ├── bootstrap-lite.scss │ │ ├── bootstrap.scss │ │ ├── bootstrap4-lite.scss │ │ ├── bootstrap4.scss │ │ ├── bootstrap5-dark-lite.scss │ │ ├── bootstrap5-dark.scss │ │ ├── bootstrap5-lite.scss │ │ ├── bootstrap5.3-lite.scss │ │ ├── bootstrap5.3.scss │ │ ├── bootstrap5.scss │ │ ├── fabric-dark-lite.scss │ │ ├── fabric-dark.scss │ │ ├── fabric-lite.scss │ │ ├── fabric.scss │ │ ├── fluent-dark-lite.scss │ │ ├── fluent-dark.scss │ │ ├── fluent-lite.scss │ │ ├── fluent.scss │ │ ├── fluent2-lite.scss │ │ ├── fluent2.scss │ │ ├── highcontrast-light-lite.scss │ │ ├── highcontrast-light.scss │ │ ├── highcontrast-lite.scss │ │ ├── highcontrast.scss │ │ ├── material-dark-lite.scss │ │ ├── material-dark.scss │ │ ├── material-lite.scss │ │ ├── material.scss │ │ ├── material3-dark-lite.scss │ │ ├── material3-dark.scss │ │ ├── material3-lite.scss │ │ ├── material3.scss │ │ ├── tailwind-dark-lite.scss │ │ ├── tailwind-dark.scss │ │ ├── tailwind-lite.scss │ │ ├── tailwind.scss │ │ ├── tailwind3-lite.scss │ │ ├── tailwind3.scss │ │ └── treegrid │ │ │ ├── bds.scss │ │ │ ├── bootstrap-dark.scss │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap4.scss │ │ │ ├── bootstrap5-dark.scss │ │ │ ├── bootstrap5.3.scss │ │ │ ├── bootstrap5.scss │ │ │ ├── fabric-dark.scss │ │ │ ├── fabric.scss │ │ │ ├── fluent-dark.scss │ │ │ ├── fluent.scss │ │ │ ├── fluent2.scss │ │ │ ├── highcontrast-light.scss │ │ │ ├── highcontrast.scss │ │ │ ├── material-dark.scss │ │ │ ├── material.scss │ │ │ ├── material3-dark.scss │ │ │ ├── material3.scss │ │ │ ├── tailwind-dark.scss │ │ │ ├── tailwind.scss │ │ │ └── tailwind3.scss │ └── tsconfig.json └── treemap │ ├── CHANGELOG.md │ ├── README.md │ ├── ej2-angular-samples │ └── TreeMap │ │ ├── default │ │ ├── assets │ │ │ └── car-sale.ts │ │ └── default.component.ts │ │ ├── desaturation-color │ │ ├── assets │ │ │ └── metals.ts │ │ └── desaturation-color.component.ts │ │ ├── drilldown │ │ ├── assets │ │ │ └── drilldown-sample.ts │ │ └── drilldown.component.ts │ │ ├── equal-color │ │ ├── assets │ │ │ └── metals.ts │ │ └── equal-color.component.ts │ │ ├── highlight │ │ ├── assets │ │ │ └── car-sale.ts │ │ └── highlight.component.ts │ │ ├── label-hide │ │ ├── assets │ │ │ └── country-population.ts │ │ └── label-hide.component.ts │ │ ├── label-trim │ │ ├── assets │ │ │ └── country-population.ts │ │ └── label-trim.component.ts │ │ ├── label-wrap │ │ ├── assets │ │ │ └── country-population.ts │ │ └── label-wrap.component.ts │ │ ├── label-wrapbyword │ │ ├── assets │ │ │ └── country-population.ts │ │ └── label-wrapbyword.component.ts │ │ ├── layout-squarified │ │ ├── assets │ │ │ └── econmics.ts │ │ └── layout-squarified.component.ts │ │ ├── layout-type-four │ │ ├── assets │ │ │ └── econmics.ts │ │ └── layout-type-four.component.ts │ │ ├── layout-type-three │ │ ├── assets │ │ │ └── econmics.ts │ │ └── layout-type-three.component.ts │ │ ├── layout-type-two │ │ ├── assets │ │ │ └── econmics.ts │ │ └── layout-type-two.component.ts │ │ ├── leaf │ │ ├── assets │ │ │ └── econmics.ts │ │ └── leaf.component.ts │ │ ├── legend-default │ │ ├── assets │ │ │ └── election-data.ts │ │ └── legend-default.component.ts │ │ ├── legend-interaction │ │ ├── assets │ │ │ └── election-data.ts │ │ └── legend-interaction.component.ts │ │ ├── level │ │ ├── assets │ │ │ └── car-sale.ts │ │ └── level.component.ts │ │ ├── range-color │ │ ├── assets │ │ │ └── metals.ts │ │ └── range-color.component.ts │ │ ├── selection │ │ ├── assets │ │ │ └── car-sale.ts │ │ └── selection.component.ts │ │ └── tooltip │ │ ├── assets │ │ └── airport-count.ts │ │ └── tooltip.component.ts │ ├── gulpfile.js │ ├── license │ ├── package.json │ ├── src │ ├── index.ts │ └── treemap │ │ ├── colormapping.directive.ts │ │ ├── index.ts │ │ ├── levels.directive.ts │ │ ├── treemap-all.module.ts │ │ ├── treemap.component.ts │ │ └── treemap.module.ts │ └── tsconfig.json └── license /components/barcodegenerator/styles/bds-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-barcode-generator/styles/bds-lite.scss'; -------------------------------------------------------------------------------- /components/barcodegenerator/styles/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'barcode/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/barcodegenerator/styles/bootstrap-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'barcode/bootstrap-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/barcodegenerator/styles/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'barcode/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/barcodegenerator/styles/bootstrap4.scss: -------------------------------------------------------------------------------- 1 | @import 'barcode/bootstrap4.scss'; 2 | -------------------------------------------------------------------------------- /components/barcodegenerator/styles/bootstrap5-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'barcode/bootstrap5-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/barcodegenerator/styles/bootstrap5.3.scss: -------------------------------------------------------------------------------- 1 | @import 'barcode/bootstrap5.3.scss'; 2 | -------------------------------------------------------------------------------- /components/barcodegenerator/styles/bootstrap5.scss: -------------------------------------------------------------------------------- 1 | @import 'barcode/bootstrap5.scss'; 2 | -------------------------------------------------------------------------------- /components/barcodegenerator/styles/fabric-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'barcode/fabric-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/barcodegenerator/styles/fabric-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-barcode-generator/styles/fabric-lite.scss'; -------------------------------------------------------------------------------- /components/barcodegenerator/styles/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'barcode/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/barcodegenerator/styles/fluent-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'barcode/fluent-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/barcodegenerator/styles/fluent-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-barcode-generator/styles/fluent-lite.scss'; -------------------------------------------------------------------------------- /components/barcodegenerator/styles/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'barcode/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/barcodegenerator/styles/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'barcode/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/barcodegenerator/styles/highcontrast-light.scss: -------------------------------------------------------------------------------- 1 | @import 'barcode/highcontrast-light.scss'; 2 | -------------------------------------------------------------------------------- /components/barcodegenerator/styles/highcontrast.scss: -------------------------------------------------------------------------------- 1 | @import 'barcode/highcontrast.scss'; 2 | -------------------------------------------------------------------------------- /components/barcodegenerator/styles/material-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'barcode/material-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/barcodegenerator/styles/material.scss: -------------------------------------------------------------------------------- 1 | @import 'barcode/material.scss'; 2 | -------------------------------------------------------------------------------- /components/barcodegenerator/styles/material3-dark.scss: -------------------------------------------------------------------------------- 1 | 2 | @import 'barcode/material3-dark.scss'; 3 | -------------------------------------------------------------------------------- /components/barcodegenerator/styles/material3.scss: -------------------------------------------------------------------------------- 1 | 2 | @import 'barcode/material3.scss'; 3 | -------------------------------------------------------------------------------- /components/barcodegenerator/styles/tailwind-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'barcode/tailwind-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/barcodegenerator/styles/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'barcode/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/barcodegenerator/styles/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'barcode/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/base/styles/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-base/styles/definition/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/base/styles/bootstrap-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-base/styles/definition/bootstrap-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/base/styles/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-base/styles/definition/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/base/styles/bootstrap4.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-base/styles/definition/bootstrap4.scss'; 2 | -------------------------------------------------------------------------------- /components/base/styles/bootstrap5-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-base/styles/definition/bootstrap5-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/base/styles/bootstrap5.3.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-base/styles/definition/bootstrap5.3.scss'; 2 | -------------------------------------------------------------------------------- /components/base/styles/bootstrap5.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-base/styles/definition/bootstrap5.scss'; 2 | -------------------------------------------------------------------------------- /components/base/styles/fabric-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-base/styles/definition/fabric-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/base/styles/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-base/styles/definition/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/base/styles/fluent-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-base/styles/definition/fluent-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/base/styles/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-base/styles/definition/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/base/styles/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-base/styles/definition/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/base/styles/highcontrast.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-base/styles/definition/highcontrast.scss'; 2 | -------------------------------------------------------------------------------- /components/base/styles/material-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-base/styles/definition/material-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/base/styles/material.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-base/styles/definition/material.scss'; 2 | -------------------------------------------------------------------------------- /components/base/styles/material3-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-base/styles/definition/material3-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/base/styles/material3.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-base/styles/definition/material3.scss'; 2 | -------------------------------------------------------------------------------- /components/base/styles/tailwind-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-base/styles/definition/tailwind-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/base/styles/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-base/styles/definition/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/base/styles/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-base/styles/definition/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/bds-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/bds-lite.scss'; -------------------------------------------------------------------------------- /components/buttons/styles/bootstrap-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/bootstrap-dark-lite.scss'; -------------------------------------------------------------------------------- /components/buttons/styles/bootstrap-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/bootstrap-lite.scss'; -------------------------------------------------------------------------------- /components/buttons/styles/bootstrap4-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/bootstrap4-lite.scss'; -------------------------------------------------------------------------------- /components/buttons/styles/bootstrap5-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/bootstrap5-dark-lite.scss'; -------------------------------------------------------------------------------- /components/buttons/styles/bootstrap5-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/bootstrap5-lite.scss'; -------------------------------------------------------------------------------- /components/buttons/styles/bootstrap5.3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/bootstrap5.3-lite.scss'; -------------------------------------------------------------------------------- /components/buttons/styles/button/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/button/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/button/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/button/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/button/bootstrap4.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/button/bootstrap4.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/button/bootstrap5.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/button/bootstrap5.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/button/fabric-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/button/fabric-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/button/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/button/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/button/fluent-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/button/fluent-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/button/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/button/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/button/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/button/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/button/material.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/button/material.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/button/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/button/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/button/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/button/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/check-box/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/check-box/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/check-box/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/check-box/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/check-box/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/check-box/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/check-box/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/check-box/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/check-box/material.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/check-box/material.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/check-box/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/check-box/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/chips/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/chips/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/chips/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/chips/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/chips/bootstrap4.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/chips/bootstrap4.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/chips/bootstrap5.3.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/chips/bootstrap5.3.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/chips/bootstrap5.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/chips/bootstrap5.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/chips/fabric-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/chips/fabric-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/chips/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/chips/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/chips/fluent-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/chips/fluent-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/chips/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/chips/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/chips/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/chips/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/chips/highcontrast.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/chips/highcontrast.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/chips/material.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/chips/material.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/chips/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/chips/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/chips/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/chips/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/fabric-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/fabric-dark-lite.scss'; -------------------------------------------------------------------------------- /components/buttons/styles/fabric-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/fabric-lite.scss'; -------------------------------------------------------------------------------- /components/buttons/styles/fluent-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/fluent-dark-lite.scss'; -------------------------------------------------------------------------------- /components/buttons/styles/fluent-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/fluent-lite.scss'; -------------------------------------------------------------------------------- /components/buttons/styles/fluent2-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/fluent2-lite.scss'; -------------------------------------------------------------------------------- /components/buttons/styles/highcontrast-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/highcontrast-lite.scss'; -------------------------------------------------------------------------------- /components/buttons/styles/material-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/material-dark-lite.scss'; -------------------------------------------------------------------------------- /components/buttons/styles/material-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/material-lite.scss'; -------------------------------------------------------------------------------- /components/buttons/styles/material3-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/material3-dark-lite.scss'; -------------------------------------------------------------------------------- /components/buttons/styles/material3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/material3-lite.scss'; -------------------------------------------------------------------------------- /components/buttons/styles/radio-button/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/radio-button/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/speed-dial/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/speed-dial/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/speed-dial/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/speed-dial/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/speed-dial/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/speed-dial/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/speed-dial/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/speed-dial/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/switch/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/switch/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/switch/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/switch/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/switch/bootstrap4.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/switch/bootstrap4.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/switch/bootstrap5.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/switch/bootstrap5.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/switch/fabric-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/switch/fabric-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/switch/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/switch/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/switch/fluent-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/switch/fluent-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/switch/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/switch/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/switch/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/switch/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/switch/material.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/switch/material.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/switch/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/switch/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/switch/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/switch/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/buttons/styles/tailwind-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/tailwind-dark-lite.scss'; -------------------------------------------------------------------------------- /components/buttons/styles/tailwind-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/tailwind-lite.scss'; -------------------------------------------------------------------------------- /components/buttons/styles/tailwind3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-buttons/styles/tailwind3-lite.scss'; -------------------------------------------------------------------------------- /components/calendars/styles/bds-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-calendars/styles/bds-lite.scss'; -------------------------------------------------------------------------------- /components/calendars/styles/bootstrap-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-calendars/styles/bootstrap-dark-lite.scss'; -------------------------------------------------------------------------------- /components/calendars/styles/bootstrap-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-calendars/styles/bootstrap-lite.scss'; -------------------------------------------------------------------------------- /components/calendars/styles/bootstrap4-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-calendars/styles/bootstrap4-lite.scss'; -------------------------------------------------------------------------------- /components/calendars/styles/bootstrap5-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-calendars/styles/bootstrap5-lite.scss'; -------------------------------------------------------------------------------- /components/calendars/styles/bootstrap5.3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-calendars/styles/bootstrap5.3-lite.scss'; -------------------------------------------------------------------------------- /components/calendars/styles/calendar/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-calendars/styles/calendar/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/calendars/styles/calendar/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-calendars/styles/calendar/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/calendars/styles/calendar/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-calendars/styles/calendar/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/calendars/styles/calendar/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-calendars/styles/calendar/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/calendars/styles/datepicker/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-calendars/styles/datepicker/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/calendars/styles/fabric-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-calendars/styles/fabric-dark-lite.scss'; -------------------------------------------------------------------------------- /components/calendars/styles/fabric-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-calendars/styles/fabric-lite.scss'; -------------------------------------------------------------------------------- /components/calendars/styles/fluent-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-calendars/styles/fluent-dark-lite.scss'; -------------------------------------------------------------------------------- /components/calendars/styles/fluent-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-calendars/styles/fluent-lite.scss'; -------------------------------------------------------------------------------- /components/calendars/styles/fluent2-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-calendars/styles/fluent2-lite.scss'; -------------------------------------------------------------------------------- /components/calendars/styles/highcontrast-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-calendars/styles/highcontrast-lite.scss'; -------------------------------------------------------------------------------- /components/calendars/styles/material-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-calendars/styles/material-dark-lite.scss'; -------------------------------------------------------------------------------- /components/calendars/styles/material-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-calendars/styles/material-lite.scss'; -------------------------------------------------------------------------------- /components/calendars/styles/material3-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-calendars/styles/material3-dark-lite.scss'; -------------------------------------------------------------------------------- /components/calendars/styles/material3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-calendars/styles/material3-lite.scss'; -------------------------------------------------------------------------------- /components/calendars/styles/tailwind-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-calendars/styles/tailwind-dark-lite.scss'; -------------------------------------------------------------------------------- /components/calendars/styles/tailwind-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-calendars/styles/tailwind-lite.scss'; -------------------------------------------------------------------------------- /components/calendars/styles/tailwind3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-calendars/styles/tailwind3-lite.scss'; -------------------------------------------------------------------------------- /components/calendars/styles/timepicker/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-calendars/styles/timepicker/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/diagrams/styles/bds-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-diagrams/styles/bds-lite.scss'; -------------------------------------------------------------------------------- /components/diagrams/styles/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'diagram/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/diagrams/styles/bootstrap-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-diagrams/styles/bootstrap-dark-lite.scss'; -------------------------------------------------------------------------------- /components/diagrams/styles/bootstrap-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'diagram/bootstrap-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/diagrams/styles/bootstrap-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-diagrams/styles/bootstrap-lite.scss'; -------------------------------------------------------------------------------- /components/diagrams/styles/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'diagram/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/diagrams/styles/bootstrap4-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-diagrams/styles/bootstrap4-lite.scss'; -------------------------------------------------------------------------------- /components/diagrams/styles/bootstrap4.scss: -------------------------------------------------------------------------------- 1 | @import 'diagram/bootstrap4.scss'; 2 | -------------------------------------------------------------------------------- /components/diagrams/styles/bootstrap5-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-diagrams/styles/bootstrap5-dark-lite.scss'; -------------------------------------------------------------------------------- /components/diagrams/styles/bootstrap5-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'diagram/bootstrap5-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/diagrams/styles/bootstrap5-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-diagrams/styles/bootstrap5-lite.scss'; -------------------------------------------------------------------------------- /components/diagrams/styles/bootstrap5.3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-diagrams/styles/bootstrap5.3-lite.scss'; -------------------------------------------------------------------------------- /components/diagrams/styles/bootstrap5.3.scss: -------------------------------------------------------------------------------- 1 | @import 'diagram/bootstrap5.3.scss'; 2 | -------------------------------------------------------------------------------- /components/diagrams/styles/bootstrap5.scss: -------------------------------------------------------------------------------- 1 | @import 'diagram/bootstrap5.scss'; 2 | -------------------------------------------------------------------------------- /components/diagrams/styles/diagram/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-diagrams/styles/diagram/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/diagrams/styles/diagram/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-diagrams/styles/diagram/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/diagrams/styles/diagram/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-diagrams/styles/diagram/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/diagrams/styles/diagram/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-diagrams/styles/diagram/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/diagrams/styles/diagram/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-diagrams/styles/diagram/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/diagrams/styles/diagram/material.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-diagrams/styles/diagram/material.scss'; 2 | -------------------------------------------------------------------------------- /components/diagrams/styles/diagram/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-diagrams/styles/diagram/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/diagrams/styles/diagram/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-diagrams/styles/diagram/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/diagrams/styles/fabric-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-diagrams/styles/fabric-dark-lite.scss'; -------------------------------------------------------------------------------- /components/diagrams/styles/fabric-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'diagram/fabric-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/diagrams/styles/fabric-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-diagrams/styles/fabric-lite.scss'; -------------------------------------------------------------------------------- /components/diagrams/styles/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'diagram/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/diagrams/styles/fluent-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-diagrams/styles/fluent-dark-lite.scss'; -------------------------------------------------------------------------------- /components/diagrams/styles/fluent-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'diagram/fluent-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/diagrams/styles/fluent-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-diagrams/styles/fluent-lite.scss'; -------------------------------------------------------------------------------- /components/diagrams/styles/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'diagram/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/diagrams/styles/fluent2-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-diagrams/styles/fluent2-lite.scss'; -------------------------------------------------------------------------------- /components/diagrams/styles/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'diagram/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/diagrams/styles/highcontrast-light.scss: -------------------------------------------------------------------------------- 1 | @import 'diagram/highcontrast-light.scss'; 2 | -------------------------------------------------------------------------------- /components/diagrams/styles/highcontrast-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-diagrams/styles/highcontrast-lite.scss'; -------------------------------------------------------------------------------- /components/diagrams/styles/highcontrast.scss: -------------------------------------------------------------------------------- 1 | @import 'diagram/highcontrast.scss'; 2 | -------------------------------------------------------------------------------- /components/diagrams/styles/material-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-diagrams/styles/material-dark-lite.scss'; -------------------------------------------------------------------------------- /components/diagrams/styles/material-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'diagram/material-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/diagrams/styles/material-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-diagrams/styles/material-lite.scss'; -------------------------------------------------------------------------------- /components/diagrams/styles/material.scss: -------------------------------------------------------------------------------- 1 | @import 'diagram/material.scss'; 2 | -------------------------------------------------------------------------------- /components/diagrams/styles/material3-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-diagrams/styles/material3-dark-lite.scss'; -------------------------------------------------------------------------------- /components/diagrams/styles/material3-dark.scss: -------------------------------------------------------------------------------- 1 | 2 | @import 'diagram/material3-dark.scss'; 3 | -------------------------------------------------------------------------------- /components/diagrams/styles/material3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-diagrams/styles/material3-lite.scss'; -------------------------------------------------------------------------------- /components/diagrams/styles/material3.scss: -------------------------------------------------------------------------------- 1 | 2 | @import 'diagram/material3.scss'; 3 | -------------------------------------------------------------------------------- /components/diagrams/styles/tailwind-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-diagrams/styles/tailwind-dark-lite.scss'; -------------------------------------------------------------------------------- /components/diagrams/styles/tailwind-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'diagram/tailwind-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/diagrams/styles/tailwind-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-diagrams/styles/tailwind-lite.scss'; -------------------------------------------------------------------------------- /components/diagrams/styles/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'diagram/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/diagrams/styles/tailwind3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-diagrams/styles/tailwind3-lite.scss'; -------------------------------------------------------------------------------- /components/diagrams/styles/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'diagram/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/documenteditor/styles/bds-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-documenteditor/styles/bds-lite.scss'; -------------------------------------------------------------------------------- /components/documenteditor/styles/bootstrap-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-documenteditor/styles/bootstrap-lite.scss'; -------------------------------------------------------------------------------- /components/documenteditor/styles/fabric-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-documenteditor/styles/fabric-lite.scss'; -------------------------------------------------------------------------------- /components/documenteditor/styles/fluent-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-documenteditor/styles/fluent-lite.scss'; -------------------------------------------------------------------------------- /components/documenteditor/styles/fluent2-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-documenteditor/styles/fluent2-lite.scss'; -------------------------------------------------------------------------------- /components/documenteditor/styles/material-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-documenteditor/styles/material-lite.scss'; -------------------------------------------------------------------------------- /components/documenteditor/styles/material3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-documenteditor/styles/material3-lite.scss'; -------------------------------------------------------------------------------- /components/documenteditor/styles/tailwind-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-documenteditor/styles/tailwind-lite.scss'; -------------------------------------------------------------------------------- /components/documenteditor/styles/tailwind3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-documenteditor/styles/tailwind3-lite.scss'; -------------------------------------------------------------------------------- /components/dropdowns/styles/bds-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-dropdowns/styles/bds-lite.scss'; -------------------------------------------------------------------------------- /components/dropdowns/styles/bootstrap-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-dropdowns/styles/bootstrap-dark-lite.scss'; -------------------------------------------------------------------------------- /components/dropdowns/styles/bootstrap-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-dropdowns/styles/bootstrap-lite.scss'; -------------------------------------------------------------------------------- /components/dropdowns/styles/bootstrap4-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-dropdowns/styles/bootstrap4-lite.scss'; -------------------------------------------------------------------------------- /components/dropdowns/styles/bootstrap5-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-dropdowns/styles/bootstrap5-lite.scss'; -------------------------------------------------------------------------------- /components/dropdowns/styles/bootstrap5.3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-dropdowns/styles/bootstrap5.3-lite.scss'; -------------------------------------------------------------------------------- /components/dropdowns/styles/combo-box/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-dropdowns/styles/combo-box/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/dropdowns/styles/combo-box/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-dropdowns/styles/combo-box/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/dropdowns/styles/combo-box/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-dropdowns/styles/combo-box/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/dropdowns/styles/fabric-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-dropdowns/styles/fabric-dark-lite.scss'; -------------------------------------------------------------------------------- /components/dropdowns/styles/fabric-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-dropdowns/styles/fabric-lite.scss'; -------------------------------------------------------------------------------- /components/dropdowns/styles/fluent-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-dropdowns/styles/fluent-dark-lite.scss'; -------------------------------------------------------------------------------- /components/dropdowns/styles/fluent-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-dropdowns/styles/fluent-lite.scss'; -------------------------------------------------------------------------------- /components/dropdowns/styles/fluent2-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-dropdowns/styles/fluent2-lite.scss'; -------------------------------------------------------------------------------- /components/dropdowns/styles/highcontrast-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-dropdowns/styles/highcontrast-lite.scss'; -------------------------------------------------------------------------------- /components/dropdowns/styles/list-box/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-dropdowns/styles/list-box/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/dropdowns/styles/list-box/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-dropdowns/styles/list-box/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/dropdowns/styles/list-box/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-dropdowns/styles/list-box/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/dropdowns/styles/list-box/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-dropdowns/styles/list-box/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/dropdowns/styles/material-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-dropdowns/styles/material-dark-lite.scss'; -------------------------------------------------------------------------------- /components/dropdowns/styles/material-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-dropdowns/styles/material-lite.scss'; -------------------------------------------------------------------------------- /components/dropdowns/styles/material3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-dropdowns/styles/material3-lite.scss'; -------------------------------------------------------------------------------- /components/dropdowns/styles/mention/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-dropdowns/styles/mention/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/dropdowns/styles/mention/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-dropdowns/styles/mention/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/dropdowns/styles/mention/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-dropdowns/styles/mention/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/dropdowns/styles/tailwind-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-dropdowns/styles/tailwind-lite.scss'; -------------------------------------------------------------------------------- /components/dropdowns/styles/tailwind3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-dropdowns/styles/tailwind3-lite.scss'; -------------------------------------------------------------------------------- /components/filemanager/styles/bds-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-filemanager/styles/bds-lite.scss'; -------------------------------------------------------------------------------- /components/filemanager/styles/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'file-manager/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/filemanager/styles/bootstrap-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'file-manager/bootstrap-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/filemanager/styles/bootstrap-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-filemanager/styles/bootstrap-lite.scss'; -------------------------------------------------------------------------------- /components/filemanager/styles/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'file-manager/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/filemanager/styles/bootstrap4.scss: -------------------------------------------------------------------------------- 1 | @import 'file-manager/bootstrap4.scss'; 2 | -------------------------------------------------------------------------------- /components/filemanager/styles/bootstrap5-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'file-manager/bootstrap5-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/filemanager/styles/bootstrap5.3.scss: -------------------------------------------------------------------------------- 1 | @import 'file-manager/bootstrap5.3.scss'; 2 | -------------------------------------------------------------------------------- /components/filemanager/styles/bootstrap5.scss: -------------------------------------------------------------------------------- 1 | @import 'file-manager/bootstrap5.scss'; 2 | -------------------------------------------------------------------------------- /components/filemanager/styles/fabric-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'file-manager/fabric-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/filemanager/styles/fabric-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-filemanager/styles/fabric-lite.scss'; -------------------------------------------------------------------------------- /components/filemanager/styles/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'file-manager/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/filemanager/styles/fluent-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'file-manager/fluent-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/filemanager/styles/fluent-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-filemanager/styles/fluent-lite.scss'; -------------------------------------------------------------------------------- /components/filemanager/styles/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'file-manager/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/filemanager/styles/fluent2-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-filemanager/styles/fluent2-lite.scss'; -------------------------------------------------------------------------------- /components/filemanager/styles/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'file-manager/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/filemanager/styles/highcontrast.scss: -------------------------------------------------------------------------------- 1 | @import 'file-manager/highcontrast.scss'; 2 | -------------------------------------------------------------------------------- /components/filemanager/styles/material-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'file-manager/material-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/filemanager/styles/material-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-filemanager/styles/material-lite.scss'; -------------------------------------------------------------------------------- /components/filemanager/styles/material.scss: -------------------------------------------------------------------------------- 1 | @import 'file-manager/material.scss'; 2 | -------------------------------------------------------------------------------- /components/filemanager/styles/material3-dark.scss: -------------------------------------------------------------------------------- 1 | 2 | @import 'file-manager/material3-dark.scss'; 3 | -------------------------------------------------------------------------------- /components/filemanager/styles/material3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-filemanager/styles/material3-lite.scss'; -------------------------------------------------------------------------------- /components/filemanager/styles/material3.scss: -------------------------------------------------------------------------------- 1 | 2 | @import 'file-manager/material3.scss'; 3 | -------------------------------------------------------------------------------- /components/filemanager/styles/tailwind-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'file-manager/tailwind-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/filemanager/styles/tailwind-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-filemanager/styles/tailwind-lite.scss'; -------------------------------------------------------------------------------- /components/filemanager/styles/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'file-manager/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/filemanager/styles/tailwind3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-filemanager/styles/tailwind3-lite.scss'; -------------------------------------------------------------------------------- /components/filemanager/styles/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'file-manager/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/bds-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/bds-lite.scss'; -------------------------------------------------------------------------------- /components/gantt/styles/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'gantt/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/bootstrap-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/bootstrap-dark-lite.scss'; -------------------------------------------------------------------------------- /components/gantt/styles/bootstrap-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'gantt/bootstrap-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/bootstrap-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/bootstrap-lite.scss'; -------------------------------------------------------------------------------- /components/gantt/styles/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'gantt/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/bootstrap4-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/bootstrap4-lite.scss'; -------------------------------------------------------------------------------- /components/gantt/styles/bootstrap4.scss: -------------------------------------------------------------------------------- 1 | @import 'gantt/bootstrap4.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/bootstrap5-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/bootstrap5-dark-lite.scss'; -------------------------------------------------------------------------------- /components/gantt/styles/bootstrap5-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'gantt/bootstrap5-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/bootstrap5-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/bootstrap5-lite.scss'; -------------------------------------------------------------------------------- /components/gantt/styles/bootstrap5.3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/bootstrap5.3-lite.scss'; -------------------------------------------------------------------------------- /components/gantt/styles/bootstrap5.3.scss: -------------------------------------------------------------------------------- 1 | @import 'gantt/bootstrap5.3.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/bootstrap5.scss: -------------------------------------------------------------------------------- 1 | @import 'gantt/bootstrap5.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/fabric-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/fabric-dark-lite.scss'; -------------------------------------------------------------------------------- /components/gantt/styles/fabric-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'gantt/fabric-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/fabric-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/fabric-lite.scss'; -------------------------------------------------------------------------------- /components/gantt/styles/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'gantt/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/fluent-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/fluent-dark-lite.scss'; -------------------------------------------------------------------------------- /components/gantt/styles/fluent-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'gantt/fluent-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/fluent-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/fluent-lite.scss'; -------------------------------------------------------------------------------- /components/gantt/styles/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'gantt/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/fluent2-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/fluent2-lite.scss'; -------------------------------------------------------------------------------- /components/gantt/styles/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'gantt/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/gantt/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/gantt/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/gantt/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/gantt/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/gantt/bootstrap4.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/gantt/bootstrap4.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/gantt/bootstrap5.3.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/gantt/bootstrap5.3.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/gantt/bootstrap5.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/gantt/bootstrap5.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/gantt/fabric-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/gantt/fabric-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/gantt/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/gantt/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/gantt/fluent-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/gantt/fluent-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/gantt/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/gantt/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/gantt/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/gantt/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/gantt/highcontrast.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/gantt/highcontrast.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/gantt/material.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/gantt/material.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/gantt/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/gantt/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/gantt/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/gantt/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/highcontrast-light.scss: -------------------------------------------------------------------------------- 1 | @import 'gantt/highcontrast-light.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/highcontrast-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/highcontrast-lite.scss'; -------------------------------------------------------------------------------- /components/gantt/styles/highcontrast.scss: -------------------------------------------------------------------------------- 1 | @import 'gantt/highcontrast.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/material-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/material-dark-lite.scss'; -------------------------------------------------------------------------------- /components/gantt/styles/material-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'gantt/material-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/material-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/material-lite.scss'; -------------------------------------------------------------------------------- /components/gantt/styles/material.scss: -------------------------------------------------------------------------------- 1 | @import 'gantt/material.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/material3-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/material3-dark-lite.scss'; -------------------------------------------------------------------------------- /components/gantt/styles/material3-dark.scss: -------------------------------------------------------------------------------- 1 | 2 | @import 'gantt/material3-dark.scss'; 3 | -------------------------------------------------------------------------------- /components/gantt/styles/material3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/material3-lite.scss'; -------------------------------------------------------------------------------- /components/gantt/styles/material3.scss: -------------------------------------------------------------------------------- 1 | 2 | @import 'gantt/material3.scss'; 3 | -------------------------------------------------------------------------------- /components/gantt/styles/tailwind-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/tailwind-dark-lite.scss'; -------------------------------------------------------------------------------- /components/gantt/styles/tailwind-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'gantt/tailwind-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/tailwind-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/tailwind-lite.scss'; -------------------------------------------------------------------------------- /components/gantt/styles/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'gantt/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/gantt/styles/tailwind3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-gantt/styles/tailwind3-lite.scss'; -------------------------------------------------------------------------------- /components/gantt/styles/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'gantt/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/grids/styles/bds-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/bds-lite.scss'; -------------------------------------------------------------------------------- /components/grids/styles/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'excel-filter/bds.scss'; 2 | @import 'grid/bds.scss'; 3 | -------------------------------------------------------------------------------- /components/grids/styles/bootstrap-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/bootstrap-dark-lite.scss'; -------------------------------------------------------------------------------- /components/grids/styles/bootstrap-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/bootstrap-lite.scss'; -------------------------------------------------------------------------------- /components/grids/styles/bootstrap4-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/bootstrap4-lite.scss'; -------------------------------------------------------------------------------- /components/grids/styles/bootstrap5-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/bootstrap5-dark-lite.scss'; -------------------------------------------------------------------------------- /components/grids/styles/bootstrap5-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/bootstrap5-lite.scss'; -------------------------------------------------------------------------------- /components/grids/styles/bootstrap5.3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/bootstrap5.3-lite.scss'; -------------------------------------------------------------------------------- /components/grids/styles/excel-filter/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/excel-filter/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/grids/styles/fabric-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/fabric-dark-lite.scss'; -------------------------------------------------------------------------------- /components/grids/styles/fabric-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/fabric-lite.scss'; -------------------------------------------------------------------------------- /components/grids/styles/fluent-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/fluent-dark-lite.scss'; -------------------------------------------------------------------------------- /components/grids/styles/fluent-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/fluent-lite.scss'; -------------------------------------------------------------------------------- /components/grids/styles/fluent2-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/fluent2-lite.scss'; -------------------------------------------------------------------------------- /components/grids/styles/grid/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/grid/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/grids/styles/grid/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/grid/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/grids/styles/grid/bootstrap4.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/grid/bootstrap4.scss'; 2 | -------------------------------------------------------------------------------- /components/grids/styles/grid/bootstrap5.3.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/grid/bootstrap5.3.scss'; 2 | -------------------------------------------------------------------------------- /components/grids/styles/grid/bootstrap5.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/grid/bootstrap5.scss'; 2 | -------------------------------------------------------------------------------- /components/grids/styles/grid/fabric-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/grid/fabric-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/grids/styles/grid/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/grid/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/grids/styles/grid/fluent-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/grid/fluent-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/grids/styles/grid/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/grid/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/grids/styles/grid/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/grid/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/grids/styles/grid/highcontrast.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/grid/highcontrast.scss'; 2 | -------------------------------------------------------------------------------- /components/grids/styles/grid/material-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/grid/material-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/grids/styles/grid/material.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/grid/material.scss'; 2 | -------------------------------------------------------------------------------- /components/grids/styles/grid/tailwind-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/grid/tailwind-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/grids/styles/grid/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/grid/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/grids/styles/grid/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/grid/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/grids/styles/highcontrast-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/highcontrast-lite.scss'; -------------------------------------------------------------------------------- /components/grids/styles/material-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/material-dark-lite.scss'; -------------------------------------------------------------------------------- /components/grids/styles/material-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/material-lite.scss'; -------------------------------------------------------------------------------- /components/grids/styles/material3-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/material3-dark-lite.scss'; -------------------------------------------------------------------------------- /components/grids/styles/material3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/material3-lite.scss'; -------------------------------------------------------------------------------- /components/grids/styles/tailwind-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/tailwind-dark-lite.scss'; -------------------------------------------------------------------------------- /components/grids/styles/tailwind-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/tailwind-lite.scss'; -------------------------------------------------------------------------------- /components/grids/styles/tailwind3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-grids/styles/tailwind3-lite.scss'; -------------------------------------------------------------------------------- /components/imageeditor/styles/bds-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-image-editor/styles/bds-lite.scss'; -------------------------------------------------------------------------------- /components/imageeditor/styles/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'image-editor/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/imageeditor/styles/bootstrap-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'image-editor/bootstrap-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/imageeditor/styles/bootstrap-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-image-editor/styles/bootstrap-lite.scss'; -------------------------------------------------------------------------------- /components/imageeditor/styles/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'image-editor/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/imageeditor/styles/bootstrap4.scss: -------------------------------------------------------------------------------- 1 | @import 'image-editor/bootstrap4.scss'; 2 | -------------------------------------------------------------------------------- /components/imageeditor/styles/bootstrap5-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'image-editor/bootstrap5-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/imageeditor/styles/bootstrap5.3.scss: -------------------------------------------------------------------------------- 1 | @import 'image-editor/bootstrap5.3.scss'; 2 | -------------------------------------------------------------------------------- /components/imageeditor/styles/bootstrap5.scss: -------------------------------------------------------------------------------- 1 | @import 'image-editor/bootstrap5.scss'; 2 | -------------------------------------------------------------------------------- /components/imageeditor/styles/fabric-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'image-editor/fabric-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/imageeditor/styles/fabric-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-image-editor/styles/fabric-lite.scss'; -------------------------------------------------------------------------------- /components/imageeditor/styles/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'image-editor/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/imageeditor/styles/fluent-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'image-editor/fluent-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/imageeditor/styles/fluent-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-image-editor/styles/fluent-lite.scss'; -------------------------------------------------------------------------------- /components/imageeditor/styles/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'image-editor/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/imageeditor/styles/fluent2-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-image-editor/styles/fluent2-lite.scss'; -------------------------------------------------------------------------------- /components/imageeditor/styles/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'image-editor/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/imageeditor/styles/highcontrast.scss: -------------------------------------------------------------------------------- 1 | @import 'image-editor/highcontrast.scss'; 2 | -------------------------------------------------------------------------------- /components/imageeditor/styles/material-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'image-editor/material-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/imageeditor/styles/material-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-image-editor/styles/material-lite.scss'; -------------------------------------------------------------------------------- /components/imageeditor/styles/material.scss: -------------------------------------------------------------------------------- 1 | @import 'image-editor/material.scss'; 2 | -------------------------------------------------------------------------------- /components/imageeditor/styles/material3-dark.scss: -------------------------------------------------------------------------------- 1 | 2 | @import 'image-editor/material3-dark.scss'; 3 | -------------------------------------------------------------------------------- /components/imageeditor/styles/material3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-image-editor/styles/material3-lite.scss'; -------------------------------------------------------------------------------- /components/imageeditor/styles/material3.scss: -------------------------------------------------------------------------------- 1 | 2 | @import 'image-editor/material3.scss'; 3 | -------------------------------------------------------------------------------- /components/imageeditor/styles/tailwind-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'image-editor/tailwind-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/imageeditor/styles/tailwind-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-image-editor/styles/tailwind-lite.scss'; -------------------------------------------------------------------------------- /components/imageeditor/styles/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'image-editor/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/imageeditor/styles/tailwind3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-image-editor/styles/tailwind3-lite.scss'; -------------------------------------------------------------------------------- /components/imageeditor/styles/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'image-editor/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/inplaceeditor/styles/bds-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inplace-editor/styles/bds-lite.scss'; -------------------------------------------------------------------------------- /components/inplaceeditor/styles/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'inplace-editor/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/inplaceeditor/styles/bootstrap-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'inplace-editor/bootstrap-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/inplaceeditor/styles/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'inplace-editor/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/inplaceeditor/styles/bootstrap4.scss: -------------------------------------------------------------------------------- 1 | @import 'inplace-editor/bootstrap4.scss'; 2 | -------------------------------------------------------------------------------- /components/inplaceeditor/styles/bootstrap5-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'inplace-editor/bootstrap5-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/inplaceeditor/styles/bootstrap5.3.scss: -------------------------------------------------------------------------------- 1 | @import 'inplace-editor/bootstrap5.3.scss'; 2 | -------------------------------------------------------------------------------- /components/inplaceeditor/styles/bootstrap5.scss: -------------------------------------------------------------------------------- 1 | @import 'inplace-editor/bootstrap5.scss'; 2 | -------------------------------------------------------------------------------- /components/inplaceeditor/styles/fabric-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'inplace-editor/fabric-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/inplaceeditor/styles/fabric-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inplace-editor/styles/fabric-lite.scss'; -------------------------------------------------------------------------------- /components/inplaceeditor/styles/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'inplace-editor/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/inplaceeditor/styles/fluent-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'inplace-editor/fluent-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/inplaceeditor/styles/fluent-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inplace-editor/styles/fluent-lite.scss'; -------------------------------------------------------------------------------- /components/inplaceeditor/styles/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'inplace-editor/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/inplaceeditor/styles/fluent2-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inplace-editor/styles/fluent2-lite.scss'; -------------------------------------------------------------------------------- /components/inplaceeditor/styles/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'inplace-editor/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/inplaceeditor/styles/highcontrast.scss: -------------------------------------------------------------------------------- 1 | @import 'inplace-editor/highcontrast.scss'; 2 | -------------------------------------------------------------------------------- /components/inplaceeditor/styles/material-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'inplace-editor/material-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/inplaceeditor/styles/material.scss: -------------------------------------------------------------------------------- 1 | @import 'inplace-editor/material.scss'; 2 | -------------------------------------------------------------------------------- /components/inplaceeditor/styles/material3.scss: -------------------------------------------------------------------------------- 1 | 2 | @import 'inplace-editor/material3.scss'; 3 | -------------------------------------------------------------------------------- /components/inplaceeditor/styles/tailwind-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'inplace-editor/tailwind-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/inplaceeditor/styles/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'inplace-editor/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/inplaceeditor/styles/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'inplace-editor/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/src/form-validator/index.ts: -------------------------------------------------------------------------------- 1 | export { FormValidators } from './form-validator'; -------------------------------------------------------------------------------- /components/inputs/styles/bds-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/bds-lite.scss'; -------------------------------------------------------------------------------- /components/inputs/styles/bootstrap-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/bootstrap-dark-lite.scss'; -------------------------------------------------------------------------------- /components/inputs/styles/bootstrap-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/bootstrap-lite.scss'; -------------------------------------------------------------------------------- /components/inputs/styles/bootstrap4-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/bootstrap4-lite.scss'; -------------------------------------------------------------------------------- /components/inputs/styles/bootstrap5-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/bootstrap5-lite.scss'; -------------------------------------------------------------------------------- /components/inputs/styles/bootstrap5.3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/bootstrap5.3-lite.scss'; -------------------------------------------------------------------------------- /components/inputs/styles/color-picker/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/color-picker/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/data-form/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/data-form/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/data-form/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/data-form/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/data-form/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/data-form/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/data-form/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/data-form/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/fabric-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/fabric-dark-lite.scss'; -------------------------------------------------------------------------------- /components/inputs/styles/fabric-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/fabric-lite.scss'; -------------------------------------------------------------------------------- /components/inputs/styles/fluent-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/fluent-dark-lite.scss'; -------------------------------------------------------------------------------- /components/inputs/styles/fluent-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/fluent-lite.scss'; -------------------------------------------------------------------------------- /components/inputs/styles/fluent2-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/fluent2-lite.scss'; -------------------------------------------------------------------------------- /components/inputs/styles/highcontrast-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/highcontrast-lite.scss'; -------------------------------------------------------------------------------- /components/inputs/styles/input/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/input/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/input/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/input/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/input/bootstrap4.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/input/bootstrap4.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/input/bootstrap5.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/input/bootstrap5.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/input/fabric-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/input/fabric-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/input/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/input/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/input/fluent-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/input/fluent-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/input/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/input/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/input/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/input/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/input/material.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/input/material.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/input/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/input/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/input/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/input/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/maskedtextbox/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/maskedtextbox/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/material-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/material-dark-lite.scss'; -------------------------------------------------------------------------------- /components/inputs/styles/material-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/material-lite.scss'; -------------------------------------------------------------------------------- /components/inputs/styles/material3-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/material3-dark-lite.scss'; -------------------------------------------------------------------------------- /components/inputs/styles/material3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/material3-lite.scss'; -------------------------------------------------------------------------------- /components/inputs/styles/otp-input/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/otp-input/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/otp-input/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/otp-input/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/otp-input/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/otp-input/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/otp-input/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/otp-input/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/rating/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/rating/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/rating/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/rating/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/rating/bootstrap4.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/rating/bootstrap4.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/rating/bootstrap5.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/rating/bootstrap5.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/rating/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/rating/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/rating/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/rating/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/rating/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/rating/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/rating/material.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/rating/material.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/rating/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/rating/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/rating/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/rating/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/signature/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/signature/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/signature/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/signature/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/signature/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/signature/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/signature/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/signature/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/slider/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/slider/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/slider/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/slider/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/slider/bootstrap4.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/slider/bootstrap4.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/slider/bootstrap5.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/slider/bootstrap5.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/slider/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/slider/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/slider/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/slider/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/slider/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/slider/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/slider/material.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/slider/material.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/slider/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/slider/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/slider/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/slider/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/tailwind-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/tailwind-dark-lite.scss'; -------------------------------------------------------------------------------- /components/inputs/styles/tailwind-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/tailwind-lite.scss'; -------------------------------------------------------------------------------- /components/inputs/styles/tailwind3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/tailwind3-lite.scss'; -------------------------------------------------------------------------------- /components/inputs/styles/textarea/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/textarea/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/textarea/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/textarea/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/textarea/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/textarea/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/textarea/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/textarea/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/textarea/material.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/textarea/material.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/textarea/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/textarea/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/textbox/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/textbox/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/textbox/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/textbox/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/textbox/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/textbox/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/textbox/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/textbox/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/textbox/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/textbox/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/textbox/material.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/textbox/material.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/textbox/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/textbox/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/textbox/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/textbox/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/uploader/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/uploader/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/uploader/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/uploader/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/uploader/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/uploader/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/uploader/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/uploader/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/uploader/material.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/uploader/material.scss'; 2 | -------------------------------------------------------------------------------- /components/inputs/styles/uploader/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-inputs/styles/uploader/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/interactivechat/styles/bds-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-interactive-chat/styles/bds-lite.scss'; -------------------------------------------------------------------------------- /components/kanban/styles/bds-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/bds-lite.scss'; -------------------------------------------------------------------------------- /components/kanban/styles/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'kanban/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/kanban/styles/bootstrap-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/bootstrap-dark-lite.scss'; -------------------------------------------------------------------------------- /components/kanban/styles/bootstrap-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'kanban/bootstrap-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/kanban/styles/bootstrap-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/bootstrap-lite.scss'; -------------------------------------------------------------------------------- /components/kanban/styles/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'kanban/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/kanban/styles/bootstrap4-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/bootstrap4-lite.scss'; -------------------------------------------------------------------------------- /components/kanban/styles/bootstrap4.scss: -------------------------------------------------------------------------------- 1 | @import 'kanban/bootstrap4.scss'; 2 | -------------------------------------------------------------------------------- /components/kanban/styles/bootstrap5-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'kanban/bootstrap5-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/kanban/styles/bootstrap5-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/bootstrap5-lite.scss'; -------------------------------------------------------------------------------- /components/kanban/styles/bootstrap5.3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/bootstrap5.3-lite.scss'; -------------------------------------------------------------------------------- /components/kanban/styles/bootstrap5.3.scss: -------------------------------------------------------------------------------- 1 | @import 'kanban/bootstrap5.3.scss'; 2 | -------------------------------------------------------------------------------- /components/kanban/styles/bootstrap5.scss: -------------------------------------------------------------------------------- 1 | @import 'kanban/bootstrap5.scss'; 2 | -------------------------------------------------------------------------------- /components/kanban/styles/fabric-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/fabric-dark-lite.scss'; -------------------------------------------------------------------------------- /components/kanban/styles/fabric-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'kanban/fabric-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/kanban/styles/fabric-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/fabric-lite.scss'; -------------------------------------------------------------------------------- /components/kanban/styles/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'kanban/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/kanban/styles/fluent-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/fluent-dark-lite.scss'; -------------------------------------------------------------------------------- /components/kanban/styles/fluent-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'kanban/fluent-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/kanban/styles/fluent-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/fluent-lite.scss'; -------------------------------------------------------------------------------- /components/kanban/styles/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'kanban/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/kanban/styles/fluent2-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/fluent2-lite.scss'; -------------------------------------------------------------------------------- /components/kanban/styles/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'kanban/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/kanban/styles/highcontrast-light.scss: -------------------------------------------------------------------------------- 1 | @import 'kanban/highcontrast-light.scss'; 2 | -------------------------------------------------------------------------------- /components/kanban/styles/highcontrast-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/highcontrast-lite.scss'; -------------------------------------------------------------------------------- /components/kanban/styles/highcontrast.scss: -------------------------------------------------------------------------------- 1 | @import 'kanban/highcontrast.scss'; 2 | -------------------------------------------------------------------------------- /components/kanban/styles/kanban/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/kanban/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/kanban/styles/kanban/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/kanban/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/kanban/styles/kanban/bootstrap4.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/kanban/bootstrap4.scss'; 2 | -------------------------------------------------------------------------------- /components/kanban/styles/kanban/bootstrap5.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/kanban/bootstrap5.scss'; 2 | -------------------------------------------------------------------------------- /components/kanban/styles/kanban/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/kanban/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/kanban/styles/kanban/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/kanban/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/kanban/styles/kanban/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/kanban/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/kanban/styles/kanban/material.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/kanban/material.scss'; 2 | -------------------------------------------------------------------------------- /components/kanban/styles/kanban/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/kanban/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/kanban/styles/kanban/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/kanban/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/kanban/styles/material-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/material-dark-lite.scss'; -------------------------------------------------------------------------------- /components/kanban/styles/material-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'kanban/material-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/kanban/styles/material-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/material-lite.scss'; -------------------------------------------------------------------------------- /components/kanban/styles/material.scss: -------------------------------------------------------------------------------- 1 | @import 'kanban/material.scss'; 2 | -------------------------------------------------------------------------------- /components/kanban/styles/material3-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/material3-dark-lite.scss'; -------------------------------------------------------------------------------- /components/kanban/styles/material3-dark.scss: -------------------------------------------------------------------------------- 1 | 2 | @import 'kanban/material3-dark.scss'; 3 | -------------------------------------------------------------------------------- /components/kanban/styles/material3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/material3-lite.scss'; -------------------------------------------------------------------------------- /components/kanban/styles/material3.scss: -------------------------------------------------------------------------------- 1 | 2 | @import 'kanban/material3.scss'; 3 | -------------------------------------------------------------------------------- /components/kanban/styles/tailwind-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/tailwind-dark-lite.scss'; -------------------------------------------------------------------------------- /components/kanban/styles/tailwind-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'kanban/tailwind-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/kanban/styles/tailwind-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/tailwind-lite.scss'; -------------------------------------------------------------------------------- /components/kanban/styles/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'kanban/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/kanban/styles/tailwind3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-kanban/styles/tailwind3-lite.scss'; -------------------------------------------------------------------------------- /components/kanban/styles/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'kanban/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/layouts/styles/avatar/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/avatar/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/layouts/styles/avatar/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/avatar/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/layouts/styles/avatar/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/avatar/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/layouts/styles/avatar/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/avatar/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/layouts/styles/avatar/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/avatar/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/layouts/styles/avatar/material.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/avatar/material.scss'; 2 | -------------------------------------------------------------------------------- /components/layouts/styles/avatar/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/avatar/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/layouts/styles/avatar/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/avatar/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/layouts/styles/bds-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/bds-lite.scss'; -------------------------------------------------------------------------------- /components/layouts/styles/bootstrap-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/bootstrap-lite.scss'; -------------------------------------------------------------------------------- /components/layouts/styles/bootstrap4-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/bootstrap4-lite.scss'; -------------------------------------------------------------------------------- /components/layouts/styles/bootstrap5-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/bootstrap5-lite.scss'; -------------------------------------------------------------------------------- /components/layouts/styles/bootstrap5.3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/bootstrap5.3-lite.scss'; -------------------------------------------------------------------------------- /components/layouts/styles/card/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/card/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/layouts/styles/card/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/card/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/layouts/styles/card/bootstrap4.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/card/bootstrap4.scss'; 2 | -------------------------------------------------------------------------------- /components/layouts/styles/card/bootstrap5.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/card/bootstrap5.scss'; 2 | -------------------------------------------------------------------------------- /components/layouts/styles/card/fabric-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/card/fabric-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/layouts/styles/card/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/card/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/layouts/styles/card/fluent-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/card/fluent-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/layouts/styles/card/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/card/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/layouts/styles/card/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/card/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/layouts/styles/card/material.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/card/material.scss'; 2 | -------------------------------------------------------------------------------- /components/layouts/styles/card/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/card/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/layouts/styles/card/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/card/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/layouts/styles/fabric-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/fabric-dark-lite.scss'; -------------------------------------------------------------------------------- /components/layouts/styles/fabric-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/fabric-lite.scss'; -------------------------------------------------------------------------------- /components/layouts/styles/fluent-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/fluent-dark-lite.scss'; -------------------------------------------------------------------------------- /components/layouts/styles/fluent-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/fluent-lite.scss'; -------------------------------------------------------------------------------- /components/layouts/styles/fluent2-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/fluent2-lite.scss'; -------------------------------------------------------------------------------- /components/layouts/styles/highcontrast-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/highcontrast-lite.scss'; -------------------------------------------------------------------------------- /components/layouts/styles/material-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/material-dark-lite.scss'; -------------------------------------------------------------------------------- /components/layouts/styles/material-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/material-lite.scss'; -------------------------------------------------------------------------------- /components/layouts/styles/material3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/material3-lite.scss'; -------------------------------------------------------------------------------- /components/layouts/styles/splitter/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/splitter/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/layouts/styles/splitter/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/splitter/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/layouts/styles/splitter/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/splitter/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/layouts/styles/splitter/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/splitter/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/layouts/styles/tailwind-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/tailwind-dark-lite.scss'; -------------------------------------------------------------------------------- /components/layouts/styles/tailwind-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/tailwind-lite.scss'; -------------------------------------------------------------------------------- /components/layouts/styles/tailwind3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/tailwind3-lite.scss'; -------------------------------------------------------------------------------- /components/layouts/styles/timeline/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/timeline/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/layouts/styles/timeline/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/timeline/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/layouts/styles/timeline/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/timeline/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/layouts/styles/timeline/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-layouts/styles/timeline/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/lists/styles/bds-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/bds-lite.scss'; -------------------------------------------------------------------------------- /components/lists/styles/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'list-view/bds.scss'; 2 | @import 'sortable/bds.scss'; 3 | -------------------------------------------------------------------------------- /components/lists/styles/bootstrap-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/bootstrap-dark-lite.scss'; -------------------------------------------------------------------------------- /components/lists/styles/bootstrap-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/bootstrap-lite.scss'; -------------------------------------------------------------------------------- /components/lists/styles/bootstrap4-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/bootstrap4-lite.scss'; -------------------------------------------------------------------------------- /components/lists/styles/bootstrap5-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/bootstrap5-dark-lite.scss'; -------------------------------------------------------------------------------- /components/lists/styles/bootstrap5-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/bootstrap5-lite.scss'; -------------------------------------------------------------------------------- /components/lists/styles/bootstrap5.3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/bootstrap5.3-lite.scss'; -------------------------------------------------------------------------------- /components/lists/styles/fabric-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/fabric-dark-lite.scss'; -------------------------------------------------------------------------------- /components/lists/styles/fabric-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/fabric-lite.scss'; -------------------------------------------------------------------------------- /components/lists/styles/fluent-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/fluent-dark-lite.scss'; -------------------------------------------------------------------------------- /components/lists/styles/fluent-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/fluent-lite.scss'; -------------------------------------------------------------------------------- /components/lists/styles/fluent2-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/fluent2-lite.scss'; -------------------------------------------------------------------------------- /components/lists/styles/highcontrast-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/highcontrast-lite.scss'; -------------------------------------------------------------------------------- /components/lists/styles/list-view/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/list-view/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/lists/styles/list-view/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/list-view/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/lists/styles/list-view/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/list-view/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/lists/styles/list-view/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/list-view/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/lists/styles/list-view/material.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/list-view/material.scss'; 2 | -------------------------------------------------------------------------------- /components/lists/styles/list-view/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/list-view/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/lists/styles/material-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/material-dark-lite.scss'; -------------------------------------------------------------------------------- /components/lists/styles/material-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/material-lite.scss'; -------------------------------------------------------------------------------- /components/lists/styles/material3-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/material3-dark-lite.scss'; -------------------------------------------------------------------------------- /components/lists/styles/material3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/material3-lite.scss'; -------------------------------------------------------------------------------- /components/lists/styles/sortable/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/sortable/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/lists/styles/sortable/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/sortable/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/lists/styles/sortable/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/sortable/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/lists/styles/sortable/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/sortable/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/lists/styles/sortable/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/sortable/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/lists/styles/sortable/material.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/sortable/material.scss'; 2 | -------------------------------------------------------------------------------- /components/lists/styles/sortable/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/sortable/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/lists/styles/sortable/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/sortable/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/lists/styles/tailwind-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/tailwind-dark-lite.scss'; -------------------------------------------------------------------------------- /components/lists/styles/tailwind-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/tailwind-lite.scss'; -------------------------------------------------------------------------------- /components/lists/styles/tailwind3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-lists/styles/tailwind3-lite.scss'; -------------------------------------------------------------------------------- /components/multicolumncombobox/styles/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'multicolumn-combobox/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/multicolumncombobox/styles/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'multicolumn-combobox/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/multicolumncombobox/styles/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'multicolumn-combobox/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/multicolumncombobox/styles/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'multicolumn-combobox/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/multicolumncombobox/styles/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'multicolumn-combobox/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/multicolumncombobox/styles/material.scss: -------------------------------------------------------------------------------- 1 | @import 'multicolumn-combobox/material.scss'; 2 | -------------------------------------------------------------------------------- /components/multicolumncombobox/styles/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'multicolumn-combobox/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/multicolumncombobox/styles/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'multicolumn-combobox/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/navigations/styles/appbar/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/appbar/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/navigations/styles/bds-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/bds-lite.scss'; -------------------------------------------------------------------------------- /components/navigations/styles/bootstrap-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/bootstrap-lite.scss'; -------------------------------------------------------------------------------- /components/navigations/styles/carousel/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/carousel/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/navigations/styles/fabric-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/fabric-lite.scss'; -------------------------------------------------------------------------------- /components/navigations/styles/fluent-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/fluent-lite.scss'; -------------------------------------------------------------------------------- /components/navigations/styles/fluent2-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/fluent2-lite.scss'; -------------------------------------------------------------------------------- /components/navigations/styles/h-scroll/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/h-scroll/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/navigations/styles/material-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/material-lite.scss'; -------------------------------------------------------------------------------- /components/navigations/styles/material3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/material3-lite.scss'; -------------------------------------------------------------------------------- /components/navigations/styles/menu/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/menu/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/navigations/styles/menu/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/menu/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/navigations/styles/menu/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/menu/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/navigations/styles/menu/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/menu/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/navigations/styles/pager/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/pager/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/navigations/styles/pager/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/pager/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/navigations/styles/pager/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/pager/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/navigations/styles/sidebar/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/sidebar/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/navigations/styles/stepper/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/stepper/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/navigations/styles/tab/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/tab/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/navigations/styles/tab/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/tab/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/navigations/styles/tab/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/tab/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/navigations/styles/tab/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/tab/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/navigations/styles/tab/material.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/tab/material.scss'; 2 | -------------------------------------------------------------------------------- /components/navigations/styles/tab/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/tab/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/navigations/styles/tailwind-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/tailwind-lite.scss'; -------------------------------------------------------------------------------- /components/navigations/styles/tailwind3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/tailwind3-lite.scss'; -------------------------------------------------------------------------------- /components/navigations/styles/toolbar/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/toolbar/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/navigations/styles/treeview/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/treeview/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/navigations/styles/v-scroll/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-navigations/styles/v-scroll/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/notifications/styles/badge/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-notifications/styles/badge/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/notifications/styles/bds-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-notifications/styles/bds-lite.scss'; -------------------------------------------------------------------------------- /components/notifications/styles/fabric-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-notifications/styles/fabric-lite.scss'; -------------------------------------------------------------------------------- /components/notifications/styles/fluent-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-notifications/styles/fluent-lite.scss'; -------------------------------------------------------------------------------- /components/notifications/styles/fluent2-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-notifications/styles/fluent2-lite.scss'; -------------------------------------------------------------------------------- /components/notifications/styles/toast/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-notifications/styles/toast/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/pdfviewer/styles/bds-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-pdfviewer/styles/bds-lite.scss'; -------------------------------------------------------------------------------- /components/pdfviewer/styles/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'pdfviewer/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/pdfviewer/styles/bootstrap-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'pdfviewer/bootstrap-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/pdfviewer/styles/bootstrap-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-pdfviewer/styles/bootstrap-lite.scss'; -------------------------------------------------------------------------------- /components/pdfviewer/styles/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'pdfviewer/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/pdfviewer/styles/bootstrap4-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-pdfviewer/styles/bootstrap4-lite.scss'; -------------------------------------------------------------------------------- /components/pdfviewer/styles/bootstrap4.scss: -------------------------------------------------------------------------------- 1 | @import 'pdfviewer/bootstrap4.scss'; 2 | -------------------------------------------------------------------------------- /components/pdfviewer/styles/bootstrap5-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'pdfviewer/bootstrap5-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/pdfviewer/styles/bootstrap5-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-pdfviewer/styles/bootstrap5-lite.scss'; -------------------------------------------------------------------------------- /components/pdfviewer/styles/bootstrap5.3.scss: -------------------------------------------------------------------------------- 1 | @import 'pdfviewer/bootstrap5.3.scss'; 2 | -------------------------------------------------------------------------------- /components/pdfviewer/styles/bootstrap5.scss: -------------------------------------------------------------------------------- 1 | @import 'pdfviewer/bootstrap5.scss'; 2 | -------------------------------------------------------------------------------- /components/pdfviewer/styles/fabric-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-pdfviewer/styles/fabric-dark-lite.scss'; -------------------------------------------------------------------------------- /components/pdfviewer/styles/fabric-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'pdfviewer/fabric-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/pdfviewer/styles/fabric-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-pdfviewer/styles/fabric-lite.scss'; -------------------------------------------------------------------------------- /components/pdfviewer/styles/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'pdfviewer/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/pdfviewer/styles/fluent-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-pdfviewer/styles/fluent-dark-lite.scss'; -------------------------------------------------------------------------------- /components/pdfviewer/styles/fluent-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'pdfviewer/fluent-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/pdfviewer/styles/fluent-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-pdfviewer/styles/fluent-lite.scss'; -------------------------------------------------------------------------------- /components/pdfviewer/styles/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'pdfviewer/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/pdfviewer/styles/fluent2-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-pdfviewer/styles/fluent2-lite.scss'; -------------------------------------------------------------------------------- /components/pdfviewer/styles/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'pdfviewer/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/pdfviewer/styles/highcontrast-light.scss: -------------------------------------------------------------------------------- 1 | @import 'pdfviewer/highcontrast-light.scss'; 2 | -------------------------------------------------------------------------------- /components/pdfviewer/styles/highcontrast.scss: -------------------------------------------------------------------------------- 1 | @import 'pdfviewer/highcontrast.scss'; 2 | -------------------------------------------------------------------------------- /components/pdfviewer/styles/material-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'pdfviewer/material-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/pdfviewer/styles/material-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-pdfviewer/styles/material-lite.scss'; -------------------------------------------------------------------------------- /components/pdfviewer/styles/material.scss: -------------------------------------------------------------------------------- 1 | @import 'pdfviewer/material.scss'; 2 | -------------------------------------------------------------------------------- /components/pdfviewer/styles/material3-dark.scss: -------------------------------------------------------------------------------- 1 | 2 | @import 'pdfviewer/material3-dark.scss'; 3 | -------------------------------------------------------------------------------- /components/pdfviewer/styles/material3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-pdfviewer/styles/material3-lite.scss'; -------------------------------------------------------------------------------- /components/pdfviewer/styles/material3.scss: -------------------------------------------------------------------------------- 1 | 2 | @import 'pdfviewer/material3.scss'; 3 | -------------------------------------------------------------------------------- /components/pdfviewer/styles/pdfviewer/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-pdfviewer/styles/pdfviewer/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/pdfviewer/styles/tailwind-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'pdfviewer/tailwind-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/pdfviewer/styles/tailwind-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-pdfviewer/styles/tailwind-lite.scss'; -------------------------------------------------------------------------------- /components/pdfviewer/styles/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'pdfviewer/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/pdfviewer/styles/tailwind3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-pdfviewer/styles/tailwind3-lite.scss'; -------------------------------------------------------------------------------- /components/pdfviewer/styles/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'pdfviewer/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/pivotview/styles/bds-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-pivotview/styles/bds-lite.scss'; -------------------------------------------------------------------------------- /components/pivotview/styles/bootstrap-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-pivotview/styles/bootstrap-lite.scss'; -------------------------------------------------------------------------------- /components/pivotview/styles/bootstrap4-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-pivotview/styles/bootstrap4-lite.scss'; -------------------------------------------------------------------------------- /components/pivotview/styles/bootstrap5-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-pivotview/styles/bootstrap5-lite.scss'; -------------------------------------------------------------------------------- /components/pivotview/styles/fabric-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-pivotview/styles/fabric-dark-lite.scss'; -------------------------------------------------------------------------------- /components/pivotview/styles/fabric-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-pivotview/styles/fabric-lite.scss'; -------------------------------------------------------------------------------- /components/pivotview/styles/fluent-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-pivotview/styles/fluent-dark-lite.scss'; -------------------------------------------------------------------------------- /components/pivotview/styles/fluent-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-pivotview/styles/fluent-lite.scss'; -------------------------------------------------------------------------------- /components/pivotview/styles/fluent2-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-pivotview/styles/fluent2-lite.scss'; -------------------------------------------------------------------------------- /components/pivotview/styles/material-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-pivotview/styles/material-lite.scss'; -------------------------------------------------------------------------------- /components/pivotview/styles/material3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-pivotview/styles/material3-lite.scss'; -------------------------------------------------------------------------------- /components/pivotview/styles/pivotview/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-pivotview/styles/pivotview/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/pivotview/styles/tailwind-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-pivotview/styles/tailwind-lite.scss'; -------------------------------------------------------------------------------- /components/pivotview/styles/tailwind3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-pivotview/styles/tailwind3-lite.scss'; -------------------------------------------------------------------------------- /components/popups/styles/bds-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/bds-lite.scss'; -------------------------------------------------------------------------------- /components/popups/styles/bootstrap-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/bootstrap-dark-lite.scss'; -------------------------------------------------------------------------------- /components/popups/styles/bootstrap-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/bootstrap-lite.scss'; -------------------------------------------------------------------------------- /components/popups/styles/bootstrap4-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/bootstrap4-lite.scss'; -------------------------------------------------------------------------------- /components/popups/styles/bootstrap5-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/bootstrap5-lite.scss'; -------------------------------------------------------------------------------- /components/popups/styles/bootstrap5.3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/bootstrap5.3-lite.scss'; -------------------------------------------------------------------------------- /components/popups/styles/dialog/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/dialog/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/dialog/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/dialog/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/dialog/bootstrap4.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/dialog/bootstrap4.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/dialog/bootstrap5.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/dialog/bootstrap5.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/dialog/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/dialog/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/dialog/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/dialog/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/dialog/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/dialog/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/dialog/material.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/dialog/material.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/dialog/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/dialog/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/dialog/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/dialog/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/fabric-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/fabric-dark-lite.scss'; -------------------------------------------------------------------------------- /components/popups/styles/fabric-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/fabric-lite.scss'; -------------------------------------------------------------------------------- /components/popups/styles/fluent-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/fluent-dark-lite.scss'; -------------------------------------------------------------------------------- /components/popups/styles/fluent-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/fluent-lite.scss'; -------------------------------------------------------------------------------- /components/popups/styles/fluent2-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/fluent2-lite.scss'; -------------------------------------------------------------------------------- /components/popups/styles/highcontrast-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/highcontrast-lite.scss'; -------------------------------------------------------------------------------- /components/popups/styles/material-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/material-dark-lite.scss'; -------------------------------------------------------------------------------- /components/popups/styles/material-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/material-lite.scss'; -------------------------------------------------------------------------------- /components/popups/styles/material3-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/material3-dark-lite.scss'; -------------------------------------------------------------------------------- /components/popups/styles/material3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/material3-lite.scss'; -------------------------------------------------------------------------------- /components/popups/styles/popup/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/popup/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/popup/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/popup/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/popup/bootstrap4.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/popup/bootstrap4.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/popup/bootstrap5.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/popup/bootstrap5.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/popup/fabric-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/popup/fabric-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/popup/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/popup/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/popup/fluent-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/popup/fluent-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/popup/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/popup/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/popup/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/popup/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/popup/material.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/popup/material.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/popup/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/popup/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/popup/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/popup/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/spinner/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/spinner/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/spinner/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/spinner/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/spinner/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/spinner/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/spinner/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/spinner/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/spinner/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/spinner/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/spinner/material.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/spinner/material.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/spinner/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/spinner/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/spinner/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/spinner/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/tailwind-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/tailwind-dark-lite.scss'; -------------------------------------------------------------------------------- /components/popups/styles/tailwind-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/tailwind-lite.scss'; -------------------------------------------------------------------------------- /components/popups/styles/tailwind3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/tailwind3-lite.scss'; -------------------------------------------------------------------------------- /components/popups/styles/tooltip/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/tooltip/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/tooltip/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/tooltip/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/tooltip/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/tooltip/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/tooltip/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/tooltip/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/tooltip/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/tooltip/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/tooltip/material.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/tooltip/material.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/tooltip/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/tooltip/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/popups/styles/tooltip/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-popups/styles/tooltip/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/querybuilder/styles/bds-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-querybuilder/styles/bds-lite.scss'; -------------------------------------------------------------------------------- /components/querybuilder/styles/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'query-builder/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/querybuilder/styles/bootstrap-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'query-builder/bootstrap-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/querybuilder/styles/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'query-builder/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/querybuilder/styles/bootstrap4.scss: -------------------------------------------------------------------------------- 1 | @import 'query-builder/bootstrap4.scss'; 2 | -------------------------------------------------------------------------------- /components/querybuilder/styles/bootstrap5-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'query-builder/bootstrap5-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/querybuilder/styles/bootstrap5.3.scss: -------------------------------------------------------------------------------- 1 | @import 'query-builder/bootstrap5.3.scss'; 2 | -------------------------------------------------------------------------------- /components/querybuilder/styles/bootstrap5.scss: -------------------------------------------------------------------------------- 1 | @import 'query-builder/bootstrap5.scss'; 2 | -------------------------------------------------------------------------------- /components/querybuilder/styles/fabric-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'query-builder/fabric-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/querybuilder/styles/fabric-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-querybuilder/styles/fabric-lite.scss'; -------------------------------------------------------------------------------- /components/querybuilder/styles/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'query-builder/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/querybuilder/styles/fluent-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'query-builder/fluent-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/querybuilder/styles/fluent-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-querybuilder/styles/fluent-lite.scss'; -------------------------------------------------------------------------------- /components/querybuilder/styles/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'query-builder/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/querybuilder/styles/fluent2-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-querybuilder/styles/fluent2-lite.scss'; -------------------------------------------------------------------------------- /components/querybuilder/styles/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'query-builder/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/querybuilder/styles/highcontrast.scss: -------------------------------------------------------------------------------- 1 | @import 'query-builder/highcontrast.scss'; 2 | -------------------------------------------------------------------------------- /components/querybuilder/styles/material-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'query-builder/material-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/querybuilder/styles/material-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-querybuilder/styles/material-lite.scss'; -------------------------------------------------------------------------------- /components/querybuilder/styles/material.scss: -------------------------------------------------------------------------------- 1 | @import 'query-builder/material.scss'; 2 | -------------------------------------------------------------------------------- /components/querybuilder/styles/material3.scss: -------------------------------------------------------------------------------- 1 | 2 | @import 'query-builder/material3.scss'; 3 | -------------------------------------------------------------------------------- /components/querybuilder/styles/tailwind-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'query-builder/tailwind-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/querybuilder/styles/tailwind-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-querybuilder/styles/tailwind-lite.scss'; -------------------------------------------------------------------------------- /components/querybuilder/styles/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'query-builder/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/querybuilder/styles/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'query-builder/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/bds-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/bds-lite.scss'; -------------------------------------------------------------------------------- /components/ribbon/styles/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ribbon/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/bootstrap-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/bootstrap-dark-lite.scss'; -------------------------------------------------------------------------------- /components/ribbon/styles/bootstrap-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ribbon/bootstrap-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/bootstrap-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/bootstrap-lite.scss'; -------------------------------------------------------------------------------- /components/ribbon/styles/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'ribbon/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/bootstrap4-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/bootstrap4-lite.scss'; -------------------------------------------------------------------------------- /components/ribbon/styles/bootstrap4.scss: -------------------------------------------------------------------------------- 1 | @import 'ribbon/bootstrap4.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/bootstrap5-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ribbon/bootstrap5-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/bootstrap5-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/bootstrap5-lite.scss'; -------------------------------------------------------------------------------- /components/ribbon/styles/bootstrap5.3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/bootstrap5.3-lite.scss'; -------------------------------------------------------------------------------- /components/ribbon/styles/bootstrap5.3.scss: -------------------------------------------------------------------------------- 1 | @import 'ribbon/bootstrap5.3.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/bootstrap5.scss: -------------------------------------------------------------------------------- 1 | @import 'ribbon/bootstrap5.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/fabric-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/fabric-dark-lite.scss'; -------------------------------------------------------------------------------- /components/ribbon/styles/fabric-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ribbon/fabric-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/fabric-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/fabric-lite.scss'; -------------------------------------------------------------------------------- /components/ribbon/styles/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ribbon/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/fluent-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/fluent-dark-lite.scss'; -------------------------------------------------------------------------------- /components/ribbon/styles/fluent-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ribbon/fluent-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/fluent-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/fluent-lite.scss'; -------------------------------------------------------------------------------- /components/ribbon/styles/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ribbon/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/fluent2-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/fluent2-lite.scss'; -------------------------------------------------------------------------------- /components/ribbon/styles/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ribbon/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/highcontrast-light.scss: -------------------------------------------------------------------------------- 1 | @import 'ribbon/highcontrast-light.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/highcontrast-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/highcontrast-lite.scss'; -------------------------------------------------------------------------------- /components/ribbon/styles/highcontrast.scss: -------------------------------------------------------------------------------- 1 | @import 'ribbon/highcontrast.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/material-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/material-dark-lite.scss'; -------------------------------------------------------------------------------- /components/ribbon/styles/material-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ribbon/material-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/material-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/material-lite.scss'; -------------------------------------------------------------------------------- /components/ribbon/styles/material.scss: -------------------------------------------------------------------------------- 1 | @import 'ribbon/material.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/material3-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/material3-dark-lite.scss'; -------------------------------------------------------------------------------- /components/ribbon/styles/material3-dark.scss: -------------------------------------------------------------------------------- 1 | 2 | @import 'ribbon/material3-dark.scss'; 3 | -------------------------------------------------------------------------------- /components/ribbon/styles/material3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/material3-lite.scss'; -------------------------------------------------------------------------------- /components/ribbon/styles/material3.scss: -------------------------------------------------------------------------------- 1 | 2 | @import 'ribbon/material3.scss'; 3 | -------------------------------------------------------------------------------- /components/ribbon/styles/ribbon/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/ribbon/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/ribbon/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/ribbon/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/ribbon/bootstrap4.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/ribbon/bootstrap4.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/ribbon/bootstrap5.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/ribbon/bootstrap5.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/ribbon/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/ribbon/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/ribbon/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/ribbon/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/ribbon/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/ribbon/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/ribbon/material.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/ribbon/material.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/ribbon/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/ribbon/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/ribbon/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/ribbon/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/tailwind-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/tailwind-dark-lite.scss'; -------------------------------------------------------------------------------- /components/ribbon/styles/tailwind-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'ribbon/tailwind-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/tailwind-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/tailwind-lite.scss'; -------------------------------------------------------------------------------- /components/ribbon/styles/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'ribbon/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/ribbon/styles/tailwind3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-ribbon/styles/tailwind3-lite.scss'; -------------------------------------------------------------------------------- /components/ribbon/styles/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'ribbon/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/richtexteditor/styles/bds-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-richtexteditor/styles/bds-lite.scss'; -------------------------------------------------------------------------------- /components/richtexteditor/styles/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'rich-text-editor/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/richtexteditor/styles/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'rich-text-editor/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/richtexteditor/styles/bootstrap4.scss: -------------------------------------------------------------------------------- 1 | @import 'rich-text-editor/bootstrap4.scss'; 2 | -------------------------------------------------------------------------------- /components/richtexteditor/styles/bootstrap5.3.scss: -------------------------------------------------------------------------------- 1 | @import 'rich-text-editor/bootstrap5.3.scss'; 2 | -------------------------------------------------------------------------------- /components/richtexteditor/styles/bootstrap5.scss: -------------------------------------------------------------------------------- 1 | @import 'rich-text-editor/bootstrap5.scss'; 2 | -------------------------------------------------------------------------------- /components/richtexteditor/styles/fabric-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'rich-text-editor/fabric-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/richtexteditor/styles/fabric-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-richtexteditor/styles/fabric-lite.scss'; -------------------------------------------------------------------------------- /components/richtexteditor/styles/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'rich-text-editor/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/richtexteditor/styles/fluent-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'rich-text-editor/fluent-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/richtexteditor/styles/fluent-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-richtexteditor/styles/fluent-lite.scss'; -------------------------------------------------------------------------------- /components/richtexteditor/styles/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'rich-text-editor/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/richtexteditor/styles/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'rich-text-editor/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/richtexteditor/styles/highcontrast.scss: -------------------------------------------------------------------------------- 1 | @import 'rich-text-editor/highcontrast.scss'; 2 | -------------------------------------------------------------------------------- /components/richtexteditor/styles/material-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'rich-text-editor/material-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/richtexteditor/styles/material.scss: -------------------------------------------------------------------------------- 1 | @import 'rich-text-editor/material.scss'; 2 | -------------------------------------------------------------------------------- /components/richtexteditor/styles/material3.scss: -------------------------------------------------------------------------------- 1 | 2 | @import 'rich-text-editor/material3.scss'; 3 | -------------------------------------------------------------------------------- /components/richtexteditor/styles/tailwind-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'rich-text-editor/tailwind-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/richtexteditor/styles/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'rich-text-editor/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/richtexteditor/styles/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'rich-text-editor/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/schedule/styles/bds-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-schedule/styles/bds-lite.scss'; -------------------------------------------------------------------------------- /components/schedule/styles/bootstrap-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-schedule/styles/bootstrap-lite.scss'; -------------------------------------------------------------------------------- /components/schedule/styles/bootstrap4-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-schedule/styles/bootstrap4-lite.scss'; -------------------------------------------------------------------------------- /components/schedule/styles/bootstrap5-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-schedule/styles/bootstrap5-lite.scss'; -------------------------------------------------------------------------------- /components/schedule/styles/bootstrap5.3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-schedule/styles/bootstrap5.3-lite.scss'; -------------------------------------------------------------------------------- /components/schedule/styles/fabric-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-schedule/styles/fabric-dark-lite.scss'; -------------------------------------------------------------------------------- /components/schedule/styles/fabric-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-schedule/styles/fabric-lite.scss'; -------------------------------------------------------------------------------- /components/schedule/styles/fluent-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-schedule/styles/fluent-dark-lite.scss'; -------------------------------------------------------------------------------- /components/schedule/styles/fluent-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-schedule/styles/fluent-lite.scss'; -------------------------------------------------------------------------------- /components/schedule/styles/fluent2-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-schedule/styles/fluent2-lite.scss'; -------------------------------------------------------------------------------- /components/schedule/styles/highcontrast-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-schedule/styles/highcontrast-lite.scss'; -------------------------------------------------------------------------------- /components/schedule/styles/material-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-schedule/styles/material-lite.scss'; -------------------------------------------------------------------------------- /components/schedule/styles/material3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-schedule/styles/material3-lite.scss'; -------------------------------------------------------------------------------- /components/schedule/styles/schedule/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-schedule/styles/schedule/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/schedule/styles/schedule/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-schedule/styles/schedule/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/schedule/styles/schedule/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-schedule/styles/schedule/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/schedule/styles/tailwind-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-schedule/styles/tailwind-lite.scss'; -------------------------------------------------------------------------------- /components/schedule/styles/tailwind3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-schedule/styles/tailwind3-lite.scss'; -------------------------------------------------------------------------------- /components/splitbuttons/styles/bds-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-splitbuttons/styles/bds-lite.scss'; -------------------------------------------------------------------------------- /components/splitbuttons/styles/fabric-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-splitbuttons/styles/fabric-lite.scss'; -------------------------------------------------------------------------------- /components/splitbuttons/styles/fluent-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-splitbuttons/styles/fluent-lite.scss'; -------------------------------------------------------------------------------- /components/splitbuttons/styles/fluent2-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-splitbuttons/styles/fluent2-lite.scss'; -------------------------------------------------------------------------------- /components/splitbuttons/styles/material-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-splitbuttons/styles/material-lite.scss'; -------------------------------------------------------------------------------- /components/splitbuttons/styles/tailwind-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-splitbuttons/styles/tailwind-lite.scss'; -------------------------------------------------------------------------------- /components/spreadsheet/styles/bds-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-spreadsheet/styles/bds-lite.scss'; -------------------------------------------------------------------------------- /components/spreadsheet/styles/bootstrap-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-spreadsheet/styles/bootstrap-lite.scss'; -------------------------------------------------------------------------------- /components/spreadsheet/styles/fabric-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-spreadsheet/styles/fabric-lite.scss'; -------------------------------------------------------------------------------- /components/spreadsheet/styles/fluent-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-spreadsheet/styles/fluent-lite.scss'; -------------------------------------------------------------------------------- /components/spreadsheet/styles/fluent2-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-spreadsheet/styles/fluent2-lite.scss'; -------------------------------------------------------------------------------- /components/spreadsheet/styles/material-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-spreadsheet/styles/material-lite.scss'; -------------------------------------------------------------------------------- /components/spreadsheet/styles/material3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-spreadsheet/styles/material3-lite.scss'; -------------------------------------------------------------------------------- /components/spreadsheet/styles/tailwind-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-spreadsheet/styles/tailwind-lite.scss'; -------------------------------------------------------------------------------- /components/spreadsheet/styles/tailwind3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-spreadsheet/styles/tailwind3-lite.scss'; -------------------------------------------------------------------------------- /components/treegrid/styles/bds-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-treegrid/styles/bds-lite.scss'; -------------------------------------------------------------------------------- /components/treegrid/styles/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'treegrid/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/treegrid/styles/bootstrap-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'treegrid/bootstrap-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/treegrid/styles/bootstrap-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-treegrid/styles/bootstrap-lite.scss'; -------------------------------------------------------------------------------- /components/treegrid/styles/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import 'treegrid/bootstrap.scss'; 2 | -------------------------------------------------------------------------------- /components/treegrid/styles/bootstrap4-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-treegrid/styles/bootstrap4-lite.scss'; -------------------------------------------------------------------------------- /components/treegrid/styles/bootstrap4.scss: -------------------------------------------------------------------------------- 1 | @import 'treegrid/bootstrap4.scss'; 2 | -------------------------------------------------------------------------------- /components/treegrid/styles/bootstrap5-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'treegrid/bootstrap5-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/treegrid/styles/bootstrap5-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-treegrid/styles/bootstrap5-lite.scss'; -------------------------------------------------------------------------------- /components/treegrid/styles/bootstrap5.3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-treegrid/styles/bootstrap5.3-lite.scss'; -------------------------------------------------------------------------------- /components/treegrid/styles/bootstrap5.3.scss: -------------------------------------------------------------------------------- 1 | @import 'treegrid/bootstrap5.3.scss'; 2 | -------------------------------------------------------------------------------- /components/treegrid/styles/bootstrap5.scss: -------------------------------------------------------------------------------- 1 | @import 'treegrid/bootstrap5.scss'; 2 | -------------------------------------------------------------------------------- /components/treegrid/styles/fabric-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-treegrid/styles/fabric-dark-lite.scss'; -------------------------------------------------------------------------------- /components/treegrid/styles/fabric-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'treegrid/fabric-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/treegrid/styles/fabric-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-treegrid/styles/fabric-lite.scss'; -------------------------------------------------------------------------------- /components/treegrid/styles/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'treegrid/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/treegrid/styles/fluent-dark-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-treegrid/styles/fluent-dark-lite.scss'; -------------------------------------------------------------------------------- /components/treegrid/styles/fluent-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'treegrid/fluent-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/treegrid/styles/fluent-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-treegrid/styles/fluent-lite.scss'; -------------------------------------------------------------------------------- /components/treegrid/styles/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'treegrid/fluent.scss'; 2 | -------------------------------------------------------------------------------- /components/treegrid/styles/fluent2-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-treegrid/styles/fluent2-lite.scss'; -------------------------------------------------------------------------------- /components/treegrid/styles/fluent2.scss: -------------------------------------------------------------------------------- 1 | @import 'treegrid/fluent2.scss'; 2 | -------------------------------------------------------------------------------- /components/treegrid/styles/highcontrast-light.scss: -------------------------------------------------------------------------------- 1 | @import 'treegrid/highcontrast-light.scss'; 2 | -------------------------------------------------------------------------------- /components/treegrid/styles/highcontrast-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-treegrid/styles/highcontrast-lite.scss'; -------------------------------------------------------------------------------- /components/treegrid/styles/highcontrast.scss: -------------------------------------------------------------------------------- 1 | @import 'treegrid/highcontrast.scss'; 2 | -------------------------------------------------------------------------------- /components/treegrid/styles/material-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'treegrid/material-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/treegrid/styles/material-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-treegrid/styles/material-lite.scss'; -------------------------------------------------------------------------------- /components/treegrid/styles/material.scss: -------------------------------------------------------------------------------- 1 | @import 'treegrid/material.scss'; 2 | -------------------------------------------------------------------------------- /components/treegrid/styles/material3-dark.scss: -------------------------------------------------------------------------------- 1 | 2 | @import 'treegrid/material3-dark.scss'; 3 | -------------------------------------------------------------------------------- /components/treegrid/styles/material3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-treegrid/styles/material3-lite.scss'; -------------------------------------------------------------------------------- /components/treegrid/styles/material3.scss: -------------------------------------------------------------------------------- 1 | 2 | @import 'treegrid/material3.scss'; 3 | -------------------------------------------------------------------------------- /components/treegrid/styles/tailwind-dark.scss: -------------------------------------------------------------------------------- 1 | @import 'treegrid/tailwind-dark.scss'; 2 | -------------------------------------------------------------------------------- /components/treegrid/styles/tailwind-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-treegrid/styles/tailwind-lite.scss'; -------------------------------------------------------------------------------- /components/treegrid/styles/tailwind.scss: -------------------------------------------------------------------------------- 1 | @import 'treegrid/tailwind.scss'; 2 | -------------------------------------------------------------------------------- /components/treegrid/styles/tailwind3-lite.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-treegrid/styles/tailwind3-lite.scss'; -------------------------------------------------------------------------------- /components/treegrid/styles/tailwind3.scss: -------------------------------------------------------------------------------- 1 | @import 'treegrid/tailwind3.scss'; 2 | -------------------------------------------------------------------------------- /components/treegrid/styles/treegrid/bds.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-treegrid/styles/treegrid/bds.scss'; 2 | -------------------------------------------------------------------------------- /components/treegrid/styles/treegrid/fabric.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-treegrid/styles/treegrid/fabric.scss'; 2 | -------------------------------------------------------------------------------- /components/treegrid/styles/treegrid/fluent.scss: -------------------------------------------------------------------------------- 1 | @import 'ej2-treegrid/styles/treegrid/fluent.scss'; 2 | --------------------------------------------------------------------------------