Skip to content

docs: update examples #8831

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 6, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions src/material-examples/example-module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ import {ExpansionStepsExample} from './expansion-steps/expansion-steps-example';
import {MyTelInput,FormFieldCustomControlExample} from './form-field-custom-control/form-field-custom-control-example';
import {FormFieldErrorExample} from './form-field-error/form-field-error-example';
import {FormFieldHintExample} from './form-field-hint/form-field-hint-example';
import {FormFieldOverviewExample} from './form-field-overview/form-field-overview-example';
import {FormFieldLabelExample} from './form-field-label/form-field-label-example';
import {FormFieldOverviewExample} from './form-field-overview/form-field-overview-example';
import {FormFieldPrefixSuffixExample} from './form-field-prefix-suffix/form-field-prefix-suffix-example';
import {FormFieldThemingExample} from './form-field-theming/form-field-theming-example';
import {GridListDynamicExample} from './grid-list-dynamic/grid-list-dynamic-example';
Expand Down Expand Up @@ -96,6 +96,7 @@ import {SelectOverviewExample} from './select-overview/select-overview-example';
import {SelectPanelClassExample} from './select-panel-class/select-panel-class-example';
import {SelectResetExample} from './select-reset/select-reset-example';
import {SelectValueBindingExample} from './select-value-binding/select-value-binding-example';
import {SidenavAutosizeExample} from './sidenav-autosize/sidenav-autosize-example';
import {SidenavDisableCloseExample} from './sidenav-disable-close/sidenav-disable-close-example';
import {SidenavDrawerOverviewExample} from './sidenav-drawer-overview/sidenav-drawer-overview-example';
import {SidenavFixedExample} from './sidenav-fixed/sidenav-fixed-example';
Expand All @@ -104,7 +105,6 @@ import {SidenavOpenCloseExample} from './sidenav-open-close/sidenav-open-close-e
import {SidenavOverviewExample} from './sidenav-overview/sidenav-overview-example';
import {SidenavPositionExample} from './sidenav-position/sidenav-position-example';
import {SidenavResponsiveExample} from './sidenav-responsive/sidenav-responsive-example';
import {SidenavAutosizeExample} from './sidenav-autosize/sidenav-autosize-example';
import {SlideToggleConfigurableExample} from './slide-toggle-configurable/slide-toggle-configurable-example';
import {SlideToggleFormsExample} from './slide-toggle-forms/slide-toggle-forms-example';
import {SlideToggleOverviewExample} from './slide-toggle-overview/slide-toggle-overview-example';
Expand Down Expand Up @@ -357,18 +357,18 @@ export const EXAMPLE_COMPONENTS = {
additionalFiles: null,
selectorName: null
},
'form-field-overview': {
title: 'Simple form field ',
component: FormFieldOverviewExample,
additionalFiles: null,
selectorName: null
},
'form-field-label': {
title: 'Form field with label ',
component: FormFieldLabelExample,
additionalFiles: null,
selectorName: null
},
'form-field-overview': {
title: 'Simple form field ',
component: FormFieldOverviewExample,
additionalFiles: null,
selectorName: null
},
'form-field-prefix-suffix': {
title: 'Form field with prefix & suffix ',
component: FormFieldPrefixSuffixExample,
Expand Down Expand Up @@ -627,6 +627,12 @@ export const EXAMPLE_COMPONENTS = {
additionalFiles: null,
selectorName: null
},
'sidenav-autosize': {
title: 'Autosize sidenav',
component: SidenavAutosizeExample,
additionalFiles: null,
selectorName: null
},
'sidenav-disable-close': {
title: 'Sidenav with custom escape and backdrop click behavior ',
component: SidenavDisableCloseExample,
Expand Down Expand Up @@ -675,12 +681,6 @@ export const EXAMPLE_COMPONENTS = {
additionalFiles: null,
selectorName: null
},
'sidenav-autosize': {
title: 'Autosize sidenav',
component: SidenavAutosizeExample,
additionalFiles: null,
selectorName: null
},
'slide-toggle-configurable': {
title: 'Configurable slide-toggle',
component: SlideToggleConfigurableExample,
Expand Down Expand Up @@ -854,8 +854,8 @@ export const EXAMPLE_LIST = [
MyTelInput,FormFieldCustomControlExample,
FormFieldErrorExample,
FormFieldHintExample,
FormFieldOverviewExample,
FormFieldLabelExample,
FormFieldOverviewExample,
FormFieldPrefixSuffixExample,
FormFieldThemingExample,
GridListDynamicExample,
Expand Down Expand Up @@ -899,6 +899,7 @@ export const EXAMPLE_LIST = [
SelectPanelClassExample,
SelectResetExample,
SelectValueBindingExample,
SidenavAutosizeExample,
SidenavDisableCloseExample,
SidenavDrawerOverviewExample,
SidenavFixedExample,
Expand All @@ -907,7 +908,6 @@ export const EXAMPLE_LIST = [
SidenavOverviewExample,
SidenavPositionExample,
SidenavResponsiveExample,
SidenavAutosizeExample,
SlideToggleConfigurableExample,
SlideToggleFormsExample,
SlideToggleOverviewExample,
Expand Down