mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
Note that this *trivially* updates project urls by adding the NPM url to the end, even when the urls are almost identical or the DT one is outdated. I'll clean up the urls in a later commit. This PR is unfinished! Please do not merge it yet.
76 lines
2.6 KiB
TypeScript
76 lines
2.6 KiB
TypeScript
// Type definitions for Material Components Web 0.43
|
|
// Project: https://material.io/components/, https://github.com/material-components/material-components-web
|
|
// Definitions by: Brent Douglas <https://github.com/BrentDouglas>, Collin Kostichuk <https://github.com/ckosti>, Arthur Groupp <https://github.com/agroupp>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.6
|
|
|
|
/**
|
|
* Copyright 2016 Google Inc. All Rights Reserved.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import autoInit from 'material__auto-init';
|
|
import * as base from 'material__base';
|
|
import * as checkbox from 'material__checkbox';
|
|
import * as chips from 'material__chips';
|
|
import * as dialog from 'material__dialog';
|
|
import * as dom from 'material__dom';
|
|
import * as drawer from 'material__drawer';
|
|
import * as floatingLabel from 'material__floating-label';
|
|
import * as formField from 'material__form-field';
|
|
import * as gridList from 'material__grid-list';
|
|
import * as iconToggle from 'material__icon-toggle';
|
|
import * as linearProgress from 'material__linear-progress';
|
|
import * as lineRipple from 'material__line-ripple';
|
|
import * as list from 'material__list';
|
|
import * as menu from 'material__menu';
|
|
import * as notchedOutline from 'material__notched-outline';
|
|
import * as radio from 'material__radio';
|
|
import * as ripple from 'material__ripple';
|
|
import * as select from 'material__select';
|
|
import * as selectionControl from 'material__selection-control';
|
|
import * as slider from 'material__slider';
|
|
import * as snackbar from 'material__snackbar';
|
|
import * as tabs from 'material__tabs';
|
|
import * as textField from 'material__textfield';
|
|
import * as toolbar from 'material__toolbar';
|
|
import * as topAppBar from 'material__top-app-bar';
|
|
// Export all components.
|
|
export {
|
|
autoInit,
|
|
base,
|
|
checkbox,
|
|
chips,
|
|
dialog,
|
|
drawer,
|
|
floatingLabel,
|
|
formField,
|
|
gridList,
|
|
iconToggle,
|
|
lineRipple,
|
|
linearProgress,
|
|
menu,
|
|
notchedOutline,
|
|
radio,
|
|
ripple,
|
|
select,
|
|
selectionControl,
|
|
slider,
|
|
snackbar,
|
|
tabs,
|
|
textField,
|
|
toolbar,
|
|
topAppBar
|
|
};
|