UNPKG

ferngully-aurelia-tools

Version:

Ferngully Tools for Aurelia

81 lines (80 loc) 4.95 kB
import "bootstrap"; import 'font-awesome/css/font-awesome.css'; import 'bootstrap-datepicker/dist/css/bootstrap-datepicker3.css'; import "awesome-bootstrap-checkbox/awesome-bootstrap-checkbox.css"; import { I18N } from 'aurelia-i18n'; import { Options } from 'i18next'; export * from "./resources/valueConverters/tickdate-format"; export * from "./resources/valueConverters/date-format"; export * from "./resources/valueConverters/date-string-format"; export * from "./resources/valueConverters/date-string-convert"; export * from "./resources/valueConverters/currency-format"; export * from "./resources/valueConverters/sort"; export * from "./resources/valueConverters/take"; export * from "./resources/valueConverters/number"; export * from "./resources/valueConverters/round"; export * from "./resources/valueConverters/ensure-not-empty"; export * from "./resources/valueConverters/ensure-not-nan"; export * from "./resources/valueConverters/null-if-empty"; export * from "./resources/valueConverters/array-join"; export * from "./resources/valueConverters/cr-br"; export * from "./resources/customAttributes/tooltip/tooltip"; export * from "./resources/customAttributes/blur-on-enter/blur-on-enter"; export * from "./resources/customAttributes/blur-on-escape/blur-on-escape"; export * from "./resources/customAttributes/invoke-on-enter/invoke-on-enter"; export * from "./resources/customAttributes/popover/popover"; export * from "./resources/customAttributes/editable-inline/editable-inline"; export * from "./resources/customElements/editable-inline-input/editable-inline-input"; export * from "./resources/customElements/editable-inline-textarea/editable-inline-textarea"; export * from "./resources/customElements/editable-inline-calendar/editable-inline-calendar"; export * from "./resources/customElements/editable-inline-select/editable-inline-select"; export * from "./resources/customElements/editable-inline-dropdown-checkbox/editable-inline-dropdown-checkbox"; export * from "./resources/customElements/bootstrap-datepicker/datepicker"; export * from "./resources/customElements/dropdown-checkbox/dropdown-checkbox"; export * from "./resources/customElements/bootstrap-number-input/number-input"; export * from "./resources/customElements/sort-column-buttons/sort-column-buttons"; export * from "./resources/customElements/sort-column-header/sort-column-header"; export * from "./resources/customElements/boolean-input/boolean-input"; export * from "./resources/customElements/boolean-button/boolean-button"; export * from "./resources/customElements/form-schema-collection/form-schema-collection"; export * from "./resources/customElements/form-schema-panel/form-schema-panel"; export * from "./resources/customElements/save-cancel-row/save-cancel-row"; export * from "./resources/customBindings/persistent"; export * from "./resources/customBindings/updateTriggerOnKeyPress"; export * from "./interfaces/IDisposable"; export * from "./interfaces/IEventAggregator"; export * from "./interfaces/ISelectOption"; export * from "./services/ajax"; export * from "./services/aurelia-helper-service"; export * from "./services/javascript-service"; export * from "./services/browser-service"; export * from "./services/configuration-service"; export * from "./services/date-service"; export * from "./services/dialog-service"; export * from "./services/disposable-collection"; export * from "./services/dom-service"; export * from "./services/environment-service"; export * from "./services/handle-errors-service"; export * from "./services/logging-service"; export * from "./services/number-service"; export * from "./services/option-service"; export * from "./services/sort-column-service"; export * from "./services/validation/bootstrap-form-renderer"; export * from "./services/validation/validation-event-aggregator"; export * from "./services/validation/validation-service"; export * from "./services/formSchema/form-schema-collection-controller"; export * from "./services/formSchema/form-schema-collection-controller-factory"; export * from "./services/formSchema/form-schema-rules-provider"; export * from "./services/formSchema/form-schema-service"; export * from "./services/formSchema/form-schema-crud-service"; export * from "./services/notification-service/notification-service"; import { FrameworkConfiguration } from 'aurelia-framework'; export interface I18NConfig { aliases: Array<string>; i18nOptions: Options; } export declare const I18NConfigDefaults: I18NConfig; export declare class FerngullyAureliaToolsConfiguration { static ConfigureI18Next(frameworkConfig: FrameworkConfiguration, instance: I18N, callback?: (config: I18NConfig) => void): Promise<FrameworkConfiguration>; } export declare function configure(frameworkConfig: FrameworkConfiguration, callback?: (config: FerngullyAureliaToolsConfiguration) => void): void;