-
Notifications
You must be signed in to change notification settings - Fork 1
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
0 parents
commit 08732f0
Showing
25 changed files
with
13,840 additions
and
0 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,19 @@ | ||
{ | ||
extends: "airbnb", | ||
|
||
env: { | ||
browser: true, | ||
commonjs: true, | ||
es6: true, | ||
jquery: true, | ||
}, | ||
|
||
rules: { | ||
indent: ["error", 2, {"SwitchCase": 1}], | ||
no-undef: ["error", { "typeof": true }], | ||
no-console: ["error", { allow: ["info", "warn", "error"] }], | ||
linebreak-style: 0, | ||
no-underscore-dangle: ["error", { "allow": ["_data"] }], | ||
no-eval: 0, | ||
} | ||
} |
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,2 @@ | ||
.DS_Store | ||
node_modules |
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,30 @@ | ||
{ | ||
"mode": "advanced", | ||
"appURL": "***", | ||
"srcFolder": "***/apex-plugin-peekaboo/server", | ||
"distFolder": "***/apex-plugin-peekaboo/dist", | ||
"js": { | ||
"processor": "webpack", | ||
"concat": false, | ||
"entries": ["***/apex-plugin-peekaboo/server/js/plugin.js"], | ||
"bundleFilename": "peekaboo.bundle", | ||
"library": true, | ||
"libraryName": "peekaboo", | ||
"tsConcat": false | ||
}, | ||
"css": { | ||
"language": "css", | ||
"concat": false | ||
}, | ||
"browsersync": { | ||
"notify": false, | ||
"ghostMode": false | ||
}, | ||
"header": { | ||
"enabled": false | ||
}, | ||
"apex": { | ||
"openBuilder": true, | ||
"apexDestination": "application" | ||
} | ||
} |
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,35 @@ | ||
{ | ||
"name" : "APEX Peekaboo", | ||
"version" : "18.1.0", | ||
"description" : "This plug-in pack provides a set of a few standard APEX components (like region, text field, radio and checkbox) with a built-in visibility setting that is meant to implement show and hide actions with an easier and faster way than using Dynamic Actions.", | ||
"keywords" : ["region"], | ||
"homepage" : "https://github.com/rafael-trevisan/apex-plugin-peekaboo", | ||
"bugs" : { | ||
"url" : "https://github.com/rafael-trevisan/apex-plugin-peekaboo/issues", | ||
"email" : "[email protected]" | ||
}, | ||
"license" : "MIT", | ||
"author" : { | ||
"name" : "Rafael Trevisan", | ||
"email" : "[email protected]", | ||
"url" : "https://trevis.ca", | ||
"twitter" : "tr3v15", | ||
"donationUrl" : "https://www.paypal.me/rafaeltrevisan" | ||
}, | ||
"repository" : { | ||
"type" : "git", | ||
"url" : "https://github.com/rafael-trevisan/apex-plugin-peekaboo.git" | ||
}, | ||
"oracle" : { | ||
"versions" : ["11.2.0.1", "12.1.0.1"], | ||
"apex" : { | ||
"versions" : ["5.1.0"], | ||
"plugin" : { | ||
"internalName" : "CA.TREVIS.APEX.PEEKABOO", | ||
"type" : "region", | ||
"demo" : "https://apex.oracle.com/pls/apex/f?p=trevis", | ||
"previewImage" : "https://raw.githubusercontent.com/rafael-trevisan/apex-plugin-peekaboo/master/preview.gif" | ||
} | ||
} | ||
} | ||
} |
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 @@ | ||
# Changelog | ||
|
||
## 18.1.0 | ||
- Initial Release |
Oops, something went wrong.