Skip to content

Commit ebe55d5

Browse files
This is where it all begins...
1 parent dd3fca3 commit ebe55d5

17 files changed

+2567
-0
lines changed

.eslintrc

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
extends: "airbnb",
3+
4+
env: {
5+
browser: true,
6+
commonjs: true,
7+
es6: true,
8+
jquery: true,
9+
},
10+
11+
rules: {
12+
indent: ["error", 2, {"SwitchCase": 1}],
13+
no-undef: ["error", { "typeof": true }],
14+
no-console: ["error", { allow: ["info", "warn", "error"] }],
15+
linebreak-style: 0,
16+
no-underscore-dangle: ["error", { "allow": ["_data"] }],
17+
no-eval: 0,
18+
}
19+
}

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.DS_Store
2+
node_modules
3+
dist/css/*.map
4+
dist/css/ca_trevis_apex_ig_simple_checkbox.css
5+
dist/js/*.map
6+
dist/js/ca_trevis_apex_ig_simple_checkbox.bundle.js

apex-nitro.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"mode": "advanced",
3+
"appURL": "https://apex.oracle.com/pls/apex/f?p=9285",
4+
"srcFolder": "***/apex-plugin-ig_simple_checkbox/src",
5+
"distFolder": "***/apex-plugin-ig_simple_checkbox/dist",
6+
"js": {
7+
"processor": "webpack",
8+
"concat": false,
9+
"entries": ["***/apex-plugin-ig_simple_checkbox/src/js/ca_trevis_apex_ig_simple_checkbox.js"],
10+
"bundleFilename": "ca_trevis_apex_ig_simple_checkbox.bundle",
11+
"library": true,
12+
"libraryName": "ca_trevis_apex_ig_simple_checkbox",
13+
"tsConcat": false
14+
},
15+
"css": {
16+
"language": "sass",
17+
"concat": false
18+
},
19+
"browsersync": {
20+
"notify": false,
21+
"ghostMode": false
22+
},
23+
"header": {
24+
"enabled": false
25+
},
26+
"apex": {
27+
"openBuilder": true
28+
},
29+
"publish": {
30+
"destination": "application"
31+
}
32+
}

apexplugin.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"name" : "IG Simple Checkbox",
3+
"version" : "18.2.0",
4+
"description" : "This plug-in displays a single checkbox in Interactive Grids but allows you to set 2 values (one for checked and another for unchecked). It's perfect for Y(es)/N(o) or 1/0 type checkboxes.",
5+
"keywords" : ["checkbox", "ig", "simple"],
6+
"homepage" : "https://github.com/rafael-trevisan/apex-plugin-ig_simple_checkbox",
7+
"bugs" : {
8+
"url" : "https://github.com/rafael-trevisan/apex-plugin-ig_simple_checkbox/issues",
9+
"email" : "rafael@trevis.ca"
10+
},
11+
"license" : "MIT",
12+
"author" : {
13+
"name" : "Rafael Trevisan",
14+
"email" : "rafael@trevis.ca",
15+
"url" : "https://www.linkedin.com/in/rafael-trevisan/en",
16+
"twitter" : "tr3v15",
17+
"donationUrl" : "https://github.com/rafael-trevisan/apex-plugin-ig_simple_checkbox#donation"
18+
},
19+
"repository" : {
20+
"type" : "git",
21+
"url" : "https://github.com/rafael-trevisan/apex-plugin-ig_simple_checkbox.git"
22+
},
23+
"oracle" : {
24+
"versions" : ["11.2.0.1", "12.1.0.1"],
25+
"apex" : {
26+
"versions" : ["5.1.0"],
27+
"plugin" : {
28+
"internalName" : "CA.TREVIS.APEX.IG_SIMPLE_CHECKBOX",
29+
"type" : "item",
30+
"demo" : "https://apex.oracle.com/pls/apex/f?p=trevis:ig-simple-checkbox",
31+
"previewImage" : "https://raw.githubusercontent.com/rafael-trevisan/apex-plugin-ig_simple_checkbox/master/preview.gif"
32+
}
33+
}
34+
}
35+
}

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Changelog
2+
3+
## 18.2.0
4+
- Initial Release

dist/css/ca_trevis_apex_ig_simple_checkbox.min.css

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

dist/js/ca_trevis_apex_ig_simple_checkbox.bundle.min.js

Lines changed: 24 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
67.4 KB
Loading

0 commit comments

Comments
 (0)