Skip to content

Commit

Permalink
This is where it all begins...
Browse files Browse the repository at this point in the history
  • Loading branch information
rafael-trevisan committed Jan 30, 2018
0 parents commit 08732f0
Show file tree
Hide file tree
Showing 25 changed files with 13,840 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .eslintrc
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,
}
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.DS_Store
node_modules
30 changes: 30 additions & 0 deletions apex-plugin-peekaboo.json
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"
}
}
35 changes: 35 additions & 0 deletions apexplugin.json
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"
}
}
}
}
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Changelog

## 18.1.0
- Initial Release
Loading

0 comments on commit 08732f0

Please sign in to comment.