Skip to content

Commit 696d6e2

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents df93c99 + b8c9b30 commit 696d6e2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+20165
-3668
lines changed

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,9 @@ pages
55
npm-debug.log*
66
yarn-debug.log*
77
yarn-error.log*
8-
yarn.lock*
9-
package-lock*
108
dist
119
.cache
12-
10+
.DS_Store
1311
# Runtime data
1412
pids
1513
*.pid

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![downloads][downloads-badge]][npmtrends]
66
[![MIT License][license-badge]][license]
77

8-
[![All Contributors](https://img.shields.io/badge/all_contributors-8-orange.svg?style=flat-square)](#contributors)
8+
[![All Contributors](https://img.shields.io/badge/all_contributors-10-orange.svg?style=flat-square)](#contributors)
99
[![PRs Welcome][prs-badge]][prs]
1010
[![Code of Conduct][coc-badge]][coc]
1111

@@ -132,7 +132,7 @@ That's all, thank you for your attention, please [![Star on GitHub][github-star-
132132
[build]: https://travis-ci.org/yjose/reactjs-popup
133133
[version-badge]: https://img.shields.io/npm/v/reactjs-popup.svg?style=flat-square
134134
[package]: https://www.npmjs.com/package/reactjs-popup
135-
[downloads-badge]: https://img.shields.io/npm/dm/reactjs-popup.svg?style=flat-square
135+
[downloads-badge]: https://img.shields.io/npm/dt/reactjs-popup.svg?style=flat-square
136136
[npmtrends]: http://www.npmtrends.com/reactjs-popup
137137
[license-badge]: https://img.shields.io/npm/l/reactjs-popup.svg?style=flat-square
138138
[license]: https://github.com/yjose/reactjs-popup/blob/master/LICENSE

docs/.DS_Store

8 KB
Binary file not shown.

docs/.babelrc

Lines changed: 0 additions & 4 deletions
This file was deleted.

docs/.eslintrc.js

Lines changed: 48 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,49 @@
11
module.exports = {
2-
extends: "react-tools"
3-
};
2+
'extends': 'airbnb',
3+
'plugins': [
4+
'react',
5+
'jsx-a11y',
6+
'import'
7+
],
8+
'rules': {
9+
'semi': 0,
10+
'comma-dangle': 0,
11+
'global-require': 0,
12+
'react/prop-types': 0,
13+
'import/no-unresolved': 0,
14+
'import/no-webpack-loader-syntax': 0,
15+
'jsx-a11y/click-events-have-key-events': 0,
16+
'react/prefer-stateless-function': 0,
17+
'react/no-danger': 0,
18+
'no-multi-spaces': 0,
19+
'jsx-a11y/anchor-has-content': 0,
20+
'jsx-a11y/label-has-for': 0,
21+
'jsx-a11y/no-static-element-interactions': 0,
22+
'arrow-body-style': 0,
23+
'react/forbid-prop-types': 0,
24+
'react/require-default-props': 0,
25+
'camelcase': 0,
26+
'indent': ['error', 'tab'],
27+
'no-tabs': 0,
28+
'react/jsx-indent': 0,
29+
'no-console': 0,
30+
'import/prefer-default-export': 0,
31+
'jsx-a11y/anchor-is-valid': 0,
32+
'react/no-unescaped-entities': 0,
33+
'react/jsx-closing-tag-location': 0,
34+
'react/jsx-filename-extension': 0,
35+
'function-paren-newline': 0,
36+
'react/jsx-one-expression-per-line': 0,
37+
'react/jsx-first-prop-new-line': 0,
38+
'react/jsx-indent-props': 0,
39+
'import/no-extraneous-dependencies': 0,
40+
'object-curly-newline': 0,
41+
'no-restricted-globals': 0,
42+
'arrow-parens': 0,
43+
'import/no-useless-path-segments': 0,
44+
'import/no-cycle': 0,
45+
'no-mixed-spaces-and-tabs': 0,
46+
'react/no-array-index-key': 0
47+
},
48+
'parser': 'babel-eslint'
49+
};

docs/.gitignore

Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
1-
# dependencies
2-
/node_modules
1+
# Project dependencies
2+
.cache
3+
node_modules
4+
yarn-error.log
35

4-
# testing
5-
/coverage
66

7-
# production
8-
/dist
9-
10-
# misc
7+
# Build directory
8+
/public
119
.DS_Store
12-
.env.local
13-
.env.development.local
14-
.env.test.local
15-
.env.production.local
16-
17-
npm-debug.log*
18-
yarn-debug.log*
19-
yarn-error.log*

docs/.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"eslint.autoFixOnSave": true
3+
}

docs/LICENSE

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2015 gatsbyjs
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.
22+

docs/data/config.js

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
module.exports = {
2+
title: 'React Popup Component - Modals,Tooltips and Menus —  All in one',
3+
favicon: 'https://react-popup.elazizi.com/favicon/logo.ico',
4+
logo: 'https://react-popup.elazizi.com/favicon/logo-48.png',
5+
cover: 'https://react-popup.elazizi.com/cover.png',
6+
url: 'https://react-popup.elazizi.com/',
7+
legalName: 'Youssouf EL Azizi',
8+
description: 'A Simple React popup component. Use it as a tooltip,modal,sub-menu and match more ...: Modal, Tooltip, Menu , All in one : All these clocks in at around 3 kB zipped. ',
9+
socialLinks: {
10+
twitter: 'https://twitter.com/ElaziziYoussouf',
11+
github: 'https://github.com/yjose/reactjs-popup'
12+
},
13+
googleAnalyticsID: 'UA-127901499-1',
14+
themeColor: '#663399',
15+
backgroundColor: '#663399',
16+
social: {
17+
twitter: '@ElaziziYoussouf'
18+
},
19+
contact: {
20+
21+
}
22+
}

docs/gatsby-browser.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/**
2+
* Implement Gatsby's Browser APIs in this file.
3+
*
4+
* See: https://www.gatsbyjs.org/docs/browser-apis/
5+
*/
6+
7+
// You can delete this file if you're not using it

0 commit comments

Comments
 (0)