Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximBalaganskiy committed Apr 1, 2020
1 parent 78d1f69 commit 865d7ce
Show file tree
Hide file tree
Showing 30 changed files with 92 additions and 56 deletions.
4 changes: 3 additions & 1 deletion dist/amd/config-builder.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/// <reference types="materialize-css" />
/**
* Plugin configuration builder
*/
Expand All @@ -8,6 +9,7 @@ export declare class ConfigBuilder {
useGlobalResources: boolean;
lookupSearchingText: string;
lookupNoMatchesText: string;
selectDropdownOptions: Partial<M.DropdownOptions>;
useAll(): ConfigBuilder;
useAutoComplete(): ConfigBuilder;
useBadge(): ConfigBuilder;
Expand Down Expand Up @@ -43,7 +45,7 @@ export declare class ConfigBuilder {
useRadio(): ConfigBuilder;
useRange(): ConfigBuilder;
useScrollSpy(): ConfigBuilder;
useSelect(): ConfigBuilder;
useSelect(dropdownOptions?: Partial<M.DropdownOptions>): ConfigBuilder;
useSidenav(): ConfigBuilder;
useSlider(): ConfigBuilder;
useSwitch(): ConfigBuilder;
Expand Down
3 changes: 2 additions & 1 deletion dist/amd/config-builder.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/amd/config-builder.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions dist/amd/select/select.d.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
/// <reference types="materialize-css" />
import * as au from "../aurelia";
import { DropdownOptions } from 'materialize-css';
import { ConfigBuilder } from "../config-builder";
export declare class MdSelect {
private bindingEngine;
private taskQueue;
constructor(element: Element, bindingEngine: au.BindingEngine, taskQueue: au.TaskQueue);
private configBuilder;
constructor(element: Element, bindingEngine: au.BindingEngine, taskQueue: au.TaskQueue, configBuilder: ConfigBuilder);
instance: M.FormSelect;
log: au.Logger;
element: HTMLInputElement;
Expand All @@ -18,7 +20,7 @@ export declare class MdSelect {
label: string;
labelChanged(): void;
showErrortext: boolean;
dropdownOptions: DropdownOptions;
dropdownOptions: Partial<M.DropdownOptions>;
inputField: HTMLDivElement;
optionsMutationObserver: any;
subscription: au.Disposable;
Expand Down
9 changes: 5 additions & 4 deletions dist/amd/select/select.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 865d7ce

Please sign in to comment.