Skip to content

Commit 66cf59d

Browse files
committed
change to v0.6.0
1 parent 313de7c commit 66cf59d

10 files changed

+23
-25
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
root = true
33

44
[*]
5-
indent_style = spaces
5+
indent_style = space
66
indent_size = 2
77
end_of_line = lf
88
charset = utf-8

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
*.DS_Store
22
*.log
3-
/node_modules
3+
.idea
4+
node_modules

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Installing this component is very easy and it has just one dependency: [React](h
2424
$ bower install --save react-simpletabs
2525
```
2626

27-
- Or if you want to [download the lastest release](https://github.com/pedronauck/react-simpletabs/archive/v0.5.3.zip) and put in your website, it will work too!
27+
- Or if you want to [download the lastest release](https://github.com/pedronauck/react-simpletabs/archive/v0.6.0.zip) and put in your website, it will work too!
2828

2929
**NOTICE:** You need just one thing to make the component work. Put the [base component style](./dist/react-simpletabs.css) at the `<header>` tag. If you don't wanna use the `.css` extension, you can get the `.styl` or `.scss` extension at the folder `./lib`.
3030

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-simpletabs",
3-
"version": "0.5.3",
3+
"version": "0.6.0",
44
"homepage": "https://github.com/pedronauck/react-simpletabs",
55
"authors": [
66
"Pedro Nauck <[email protected]> (https://github.com/pedronauck)"

dist/react-simpletabs.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
*
33
* React Simpletabs - Just a simple tabs component built with React
4-
* @version v0.5.3
4+
* @version v0.6.0
55
* @link https://github.com/pedronauck/react-simpletabs
66
* @license MIT
77
* @author Pedro Nauck (https://github.com/pedronauck)

dist/react-simpletabs.js

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
*
33
* React Simpletabs - Just a simple tabs component built with React
4-
* @version v0.5.3
4+
* @version v0.6.0
55
* @link https://github.com/pedronauck/react-simpletabs
66
* @license MIT
77
* @author Pedro Nauck (https://github.com/pedronauck)
@@ -20,41 +20,41 @@
2020
return /******/ (function(modules) { // webpackBootstrap
2121
/******/ // The module cache
2222
/******/ var installedModules = {};
23-
23+
/******/
2424
/******/ // The require function
2525
/******/ function __webpack_require__(moduleId) {
26-
26+
/******/
2727
/******/ // Check if module is in cache
2828
/******/ if(installedModules[moduleId])
2929
/******/ return installedModules[moduleId].exports;
30-
30+
/******/
3131
/******/ // Create a new module (and put it into the cache)
3232
/******/ var module = installedModules[moduleId] = {
3333
/******/ exports: {},
3434
/******/ id: moduleId,
3535
/******/ loaded: false
3636
/******/ };
37-
37+
/******/
3838
/******/ // Execute the module function
3939
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
40-
40+
/******/
4141
/******/ // Flag the module as loaded
4242
/******/ module.loaded = true;
43-
43+
/******/
4444
/******/ // Return the exports of the module
4545
/******/ return module.exports;
4646
/******/ }
47-
48-
47+
/******/
48+
/******/
4949
/******/ // expose the modules object (__webpack_modules__)
5050
/******/ __webpack_require__.m = modules;
51-
51+
/******/
5252
/******/ // expose the module cache
5353
/******/ __webpack_require__.c = installedModules;
54-
54+
/******/
5555
/******/ // __webpack_public_path__
5656
/******/ __webpack_require__.p = "";
57-
57+
/******/
5858
/******/ // Load entry module and return exports
5959
/******/ return __webpack_require__(0);
6060
/******/ })
@@ -63,8 +63,7 @@ return /******/ (function(modules) { // webpackBootstrap
6363
/* 0 */
6464
/***/ function(module, exports, __webpack_require__) {
6565

66-
/** @jsx React.DOM *//** @jsx React.DOM */
67-
'use strict';
66+
/** @jsx React.DOM */'use strict';
6867

6968
var React = __webpack_require__(1);
7069
var classNames = __webpack_require__(2);
@@ -253,4 +252,3 @@ return /******/ (function(modules) { // webpackBootstrap
253252
/***/ }
254253
/******/ ])
255254
});
256-
;

dist/react-simpletabs.min.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
*
33
* React Simpletabs - Just a simple tabs component built with React
4-
* @version v0.5.3
4+
* @version v0.6.0
55
* @link https://github.com/pedronauck/react-simpletabs
66
* @license MIT
77
* @author Pedro Nauck (https://github.com/pedronauck)

dist/react-simpletabs.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/react-simpletabs.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/** @jsx React.DOM */
21
'use strict';
32

43
var React = require('react');

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-simpletabs",
3-
"version": "0.5.3",
3+
"version": "0.6.0",
44
"description": "Just a simple tabs component built with React",
55
"author": {
66
"name": "Pedro Nauck",

0 commit comments

Comments
 (0)