Skip to content

Commit

Permalink
chore(all): build
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximBalaganskiy committed Nov 2, 2018
1 parent e03c919 commit e969bca
Show file tree
Hide file tree
Showing 89 changed files with 757 additions and 46 deletions.
2 changes: 1 addition & 1 deletion dist/amd/autocomplete/autocomplete.js.map

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

1 change: 0 additions & 1 deletion dist/amd/checkbox/checkbox.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/checkbox/checkbox.js.map

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/colors/md-colors-legacy.js.map

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

46 changes: 46 additions & 0 deletions dist/amd/colors/md-colors.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,5 +88,51 @@
position: static;
}

/* validation-container */
validation-container > div.wrapper {
position: relative;
margin: -1px; }
/*validation-container > div.wrapper > .helper-text {
font-size: 12px;
position: absolute;
bottom: -18px;
width: 100%; }*/
validation-container > div.wrapper > div {
margin-bottom: 8px;
border: 1px solid transparent; }
validation-container > div.wrapper:not(.invalid):not(.valid) > .helper-text {
display: none; }
validation-container > div.wrapper.valid > .helper-text[data-success] {
display: block; }
validation-container > div.wrapper.valid > .helper-text[data-success]::after {
content: attr(data-error); }
validation-container > div.wrapper.valid > .helper-text:not([data-success]) {
display: none; }
validation-container > div.wrapper.invalid > .helper-text[data-error] {
display: block; }
validation-container > div.wrapper.invalid > .helper-text[data-error]::after {
content: attr(data-error); }
validation-container > div.wrapper.invalid > .helper-text:not([data-error]) {
display: none; }

validation-container div.wrapper.invalid > div {
border-bottom: 1px solid ${errorColor};
box-shadow: 0 1px 0 0 ${errorColor};
}

validation-container div.wrapper.invalid .helper-text[data-error] {
color: ${errorColor};
}

validation-container div.wrapper.valid > div {
border-bottom: 1px solid ${successColor};
box-shadow: 0 1px 0 0 ${successColor};
}

validation-container div.wrapper.valid .helper-text[data-error] {
color: ${successColor};
}


</style>
</template>
1 change: 1 addition & 0 deletions dist/amd/config-builder.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ export declare class ConfigBuilder {
useTooltip(): ConfigBuilder;
useWaitCursor(): ConfigBuilder;
useWaves(): ConfigBuilder;
useValidationContainer(): ConfigBuilder;
useWell(): ConfigBuilder;
preventWavesAttach(): ConfigBuilder;
useAutoButtonWaves(use: boolean): ConfigBuilder;
Expand Down
5 changes: 5 additions & 0 deletions dist/amd/config-builder.js

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

Loading

0 comments on commit e969bca

Please sign in to comment.