-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7a02c5d
commit fa8af65
Showing
6 changed files
with
1,043 additions
and
157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"plugins": [ | ||
["@babel/plugin-proposal-class-properties", { "loose": true }], | ||
"lodash", | ||
"transform-react-handled-props", | ||
["transform-react-remove-prop-types", { "mode": "wrap" }] | ||
], | ||
"presets": [ | ||
[ | ||
"@babel/preset-env", | ||
{ | ||
"loose": true, | ||
"modules": false, | ||
"targets": { | ||
"browsers": [ | ||
"last 8 versions", | ||
"safari > 8", | ||
"firefox > 23", | ||
"chrome > 24", | ||
"opera > 15", | ||
"not ie < 11", | ||
"not ie_mob <= 11" | ||
] | ||
} | ||
} | ||
], | ||
"@babel/preset-react" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2019 Oleksandr Fediashov | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
## @semantic-ui-react/component-visibility | ||
|
||
`Visibility` component from Semantic UI React, was removed from the main package in v3. | ||
See [Semantic-UI-React#4257](https://github.com/Semantic-Org/Semantic-UI-React/pull/4257) for details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
{ | ||
"name": "@semantic-ui-react/component-visibility", | ||
"version": "1.0.0", | ||
"author": { | ||
"email": "[email protected]", | ||
"name": "Oleksandr Fediashov" | ||
}, | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">=8.0.0" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/Semantic-Org/Semantic-UI-React/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/layershifter/semantic-ui-tools" | ||
}, | ||
"homepage": "https://github.com/layershifter/semantic-ui-tools/tree/master/packages/component-visibility", | ||
"dependencies": { | ||
"@semantic-ui-react/event-stack": "^3.1.2", | ||
"@fluentui/react-component-ref": "~0.51.6", | ||
"lodash": "^4.17.21", | ||
"prop-types": "^15.7.2" | ||
}, | ||
"devDependencies": { | ||
"@babel/plugin-proposal-class-properties": "^7.10.4", | ||
"@babel/preset-react": "^7.10.4", | ||
"@pika/pack": "^0.5.0", | ||
"@pika/plugin-build-node": "^0.8.1", | ||
"@pika/plugin-build-web": "^0.8.1", | ||
"@pika/plugin-standard-pkg": "^0.8.1", | ||
"babel-plugin-lodash": "^3.3.4", | ||
"babel-plugin-transform-react-handled-props": "^2.1.0", | ||
"babel-plugin-transform-react-remove-prop-types": "^0.4.24", | ||
"react": "^17.0.0", | ||
"react-dom": "^17.0.0" | ||
}, | ||
"peerDependencies": { | ||
"react": "^16.8.0 || ^17.0.0", | ||
"react-dom": "^16.8.0 || ^17.0.0" | ||
}, | ||
"scripts": { | ||
"build": "npx pika build", | ||
"release": "npx pika publish", | ||
"version": "npm run build" | ||
}, | ||
"publishConfig": { | ||
"public": true | ||
}, | ||
"@pika/pack": { | ||
"pipeline": [ | ||
[ | ||
"@pika/plugin-standard-pkg" | ||
], | ||
[ | ||
"@pika/plugin-build-node" | ||
], | ||
[ | ||
"@pika/plugin-build-web" | ||
] | ||
] | ||
} | ||
} |
Oops, something went wrong.