kmaterialize 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2014-2019 Materialize
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,91 @@
1
+ <p align="center">
2
+ <a href="http://materializecss.com/">
3
+ <img src="http://materializecss.com/res/materialize.svg" width="150">
4
+ </a>
5
+ </p>
6
+
7
+ <h3 align="center">MaterializeCSS</h3>
8
+
9
+ <p align="center">
10
+ Materialize, a CSS Framework based on material design.
11
+ <br>
12
+ <a href="http://materializecss.com/"><strong>-- Browse the docs --</strong></a>
13
+ <br>
14
+ <br>
15
+ <a href="https://travis-ci.com/Dogfalo/materialize">
16
+ <img src="https://travis-ci.com/Dogfalo/materialize.svg?branch=master" alt="Travis CI badge">
17
+ </a>
18
+ <a href="https://badge.fury.io/js/materialize-css">
19
+ <img src="https://badge.fury.io/js/materialize-css.svg" alt="npm version badge">
20
+ </a>
21
+ <a href="https://cdnjs.com/libraries/materialize">
22
+ <img src="https://img.shields.io/cdnjs/v/materialize.svg" alt="CDNJS version badge">
23
+ </a>
24
+ <a href="https://david-dm.org/Dogfalo/materialize">
25
+ <img src="https://david-dm.org/Dogfalo/materialize/status.svg" alt="dependencies Status badge">
26
+ </a>
27
+ <a href="https://david-dm.org/Dogfalo/materialize#info=devDependencies">
28
+ <img src="https://david-dm.org/Dogfalo/materialize/dev-status.svg" alt="devDependency Status badge">
29
+ </a>
30
+ <a href="https://gitter.im/Dogfalo/materialize">
31
+ <img src="https://badges.gitter.im/Join%20Chat.svg" alt="Gitter badge">
32
+ </a>
33
+ </p>
34
+
35
+ ## Table of Contents
36
+ - [Quickstart](#quickstart)
37
+ - [Documentation](#documentation)
38
+ - [Supported Browsers](#supported-browsers)
39
+ - [Changelog](#changelog)
40
+ - [Testing](#testing)
41
+ - [Contributing](#contributing)
42
+ - [Copyright and license](#copyright-and-license)
43
+
44
+ ## Quickstart:
45
+ Read the [getting started guide](http://materializecss.com/getting-started.html) for more information on how to use materialize.
46
+
47
+ - [Download the latest release](https://github.com/Dogfalo/materialize/releases/latest) of materialize directly from GitHub. ([Beta](https://github.com/Dogfalo/materialize/releases/))
48
+ - Clone the repo: `git clone https://github.com/Dogfalo/materialize.git` (Beta: `git clone -b v1-dev https://github.com/Dogfalo/materialize.git`)
49
+ - Include the files via [cdnjs](https://cdnjs.com/libraries/materialize). More [here](http://materializecss.com/getting-started.html). ([Beta](https://cdnjs.com/libraries/materialize/1.0.0-beta))
50
+ - Install with [npm](https://www.npmjs.com): `npm install materialize-css` (Beta: `npm install materialize-css@next`)
51
+ - Install with [Bower](https://bower.io): `bower install materialize` ([DEPRECATED](https://bower.io/blog/2017/how-to-migrate-away-from-bower/))
52
+ - Install with [Atmosphere](https://atmospherejs.com): `meteor add materialize:materialize` (Beta: `meteor add materialize:materialize@=1.0.0-beta`)
53
+
54
+ ## Documentation
55
+ The documentation can be found at <http://materializecss.com>. To run the documentation locally on your machine, you need [Node.js](https://nodejs.org/en/) installed on your computer.
56
+
57
+ ### Running documentation locally
58
+ Run these commands to set up the documentation:
59
+
60
+ ```bash
61
+ git clone https://github.com/Dogfalo/materialize
62
+ cd materialize
63
+ npm install
64
+ ```
65
+
66
+ Then run `grunt monitor` to compile the documentation. When it finishes, open a new browser window and navigate to `localhost:8000`. We use [BrowserSync](https://www.browsersync.io/) to display the documentation.
67
+
68
+ ### Documentation for previous releases
69
+ Previous releases and their documentation are available for [download](https://github.com/Dogfalo/materialize/releases).
70
+
71
+ ## Supported Browsers:
72
+ Materialize is compatible with:
73
+
74
+ - Chrome 35+
75
+ - Firefox 31+
76
+ - Safari 9+
77
+ - Opera
78
+ - Edge
79
+ - IE 11+
80
+
81
+ ## Changelog
82
+ For changelogs, check out [the Releases section of materialize](https://github.com/Dogfalo/materialize/releases) or the [CHANGELOG.md](CHANGELOG.md).
83
+
84
+ ## Testing
85
+ We use Jasmine as our testing framework and we're trying to write a robust test suite for our components. If you want to help, [here's a starting guide on how to write tests in Jasmine](CONTRIBUTING.md#jasmine-testing-guide).
86
+
87
+ ## Contributing
88
+ Check out the [CONTRIBUTING document](CONTRIBUTING.md) in the root of the repository to learn how you can contribute. You can also browse the [help-wanted](https://github.com/Dogfalo/materialize/labels/help-wanted) tag in our issue tracker to find things to do.
89
+
90
+ ## Copyright and license
91
+ Code Copyright 2018 Materialize. Code released under the MIT license.