Skip to content

Commit

Permalink
Merge branch 'master' into production
Browse files Browse the repository at this point in the history
  • Loading branch information
ankitskvmdam committed Sep 25, 2023
2 parents 5eefb20 + d7d968b commit ef98f0e
Show file tree
Hide file tree
Showing 212 changed files with 31,302 additions and 385 deletions.
133 changes: 104 additions & 29 deletions README.md

Large diffs are not rendered by default.

11 changes: 10 additions & 1 deletion demo/src/Alive.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ class Alive {
* function test() {
* return world
* }
* @alias AliveEnergy
*/
this.energy = null;
/**
Expand Down Expand Up @@ -96,5 +97,13 @@ var pieOptions = {
*/
get aLaMode() {
return this.plain + ' with ice cream';
},

/**
* This is just a namespace functions.
* @param {number} args
*/
aNamespaceFunction(args) {

}
};
};
4 changes: 4 additions & 0 deletions demo/src/HideConstructor.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
* @hideconstructor
*/
class Test {
/**
*
* @param {number} hidemepls
*/
constructor(hidemepls) {
console.log('i am a constructor');
}
Expand Down
9 changes: 9 additions & 0 deletions demo/src/Modules.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@ module.exports = {
fib: function* gen() { }
};

/** Class that represents a colour */
class Colour {
/** Create colour from rgb */
constructor(red, green, blue) {
let hex = n => n.toString(16).padStart(2, '0');
this.hex = '#' + [red, green, blue].map(hex).join('');
}
}

/** Darkens a color. */
exports.darken = function (color, shade) { };

Expand Down
74 changes: 74 additions & 0 deletions demo/src/NamespaceWithAlias.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
function create_public_interface(obj) {
/**
* @namespace obj.map
*/
const map = obj.map;

/**
* Sample function that does nothing
* @memberOf obj.map
* @function
*/
map.start = function () {}
/**
* This is an alias. It's original name is start9
* @memberOf obj.map
* @function
* @alias obj.map.aliasOfStart9
*/
map.start9 = function () {}
/**
* Sample function that does nothing
* @memberOf obj.map
* @function
*/
map.start1 = function () {}
/**
* Sample function that does nothing
* @memberOf obj.map
* @function
*/
map.start2 = function () {}
/**
* Sample function that does nothing
* @memberOf obj.map
* @function
*/
map.start3 = function () {}
/**
* Sample function that does nothing
* @memberOf obj.map
* @function
*/
map.start4 = function () {}
/**
* Sample function that does nothing
* @memberOf obj.map
* @function
*/
map.start5 = function () {}
/**
* Sample function that does nothing
* @memberOf obj.map
* @function
*/
map.start6 = function () {}
/**
* Sample function that does nothing
* @memberOf obj.map
* @function
*/
map.start7 = function () {}
/**
* Sample function that does nothing
* @memberOf obj.map
* @function
*/
map.start8 = function () {}
/**
* Sample function that does nothing
* @memberOf obj.map
* @function
*/
map.start0 = function () {}
}
4 changes: 4 additions & 0 deletions demo/src/tutorials/Other.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,9 @@
</head>
<body>
Other Tutorial
<div>
This is second line just to test search
</div>
This is not of any use please ignore these files. It is here only for testing purpose.<br />
</body>
</html>
3 changes: 3 additions & 0 deletions helpers/Environment.html

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions jsdoc-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"allowUnknownTags": true
},
"source": {
"include": ["./demo/src", "./README.md"]
"include": ["./demo/src", "./README.md", "package.json"]
},
"plugins": ["plugins/markdown"],
"opts": {
Expand All @@ -17,6 +17,7 @@
"search": true,
"homepageTitle": "Clean JSDoc Theme",
"default_theme": "dark",
"exclude_inherited": false,
"include_css": ["./demo/src/assets/style.css"],
"include_js": ["./demo/src/assets/script.js"],
"static_dir": ["./demo/src/assets/png", "./example"],
Expand Down Expand Up @@ -53,7 +54,8 @@
"js_external": "https://code.jquery.com/jquery-3.6.0.min.js",
"js_pre_processor": "babel"
}
}
},
"prefixModuleToSidebarItems_experimental": true
}
},
"templates": {
Expand Down
9 changes: 9 additions & 0 deletions output/v4/AgentScript.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<html>
<body>
Hello world
</body>
<script type="module">
import * as agentscript from "https://unpkg.com/agentscript@0.10.19/dist/agentscript.js"
console.log('Agent', agentscript)
</script>
</html>
8 changes: 4 additions & 4 deletions output/v4/Alive.html

Large diffs are not rendered by default.

14 changes: 12 additions & 2 deletions output/v4/Alive.js.html

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions output/v4/AliveAlias.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions output/v4/Apple.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions output/v4/Apple.js.html

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions output/v4/Database.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion output/v4/Energy.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions output/v4/Energy.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion output/v4/Environment.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions output/v4/Environment.js.html

Large diffs are not rendered by default.

8 changes: 6 additions & 2 deletions output/v4/HideConstructor.js.html

Large diffs are not rendered by default.

13 changes: 11 additions & 2 deletions output/v4/Modules.js.html

Large diffs are not rendered by default.

77 changes: 77 additions & 0 deletions output/v4/NamespaceWithAlias.js.html

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions output/v4/Statement.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion output/v4/StatementIterator.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion output/v4/Test.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions output/v4/Tree.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions output/v4/Tree.js.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions output/v4/World.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions output/v4/World.js.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions output/v4/api.js.html

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/Alive.html

Large diffs are not rendered by default.

112 changes: 112 additions & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/Alive.js.html

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/Apple.html

Large diffs are not rendered by default.

40 changes: 40 additions & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/Apple.js.html

Large diffs are not rendered by default.

29 changes: 29 additions & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/Database.html

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/Energy.html

Large diffs are not rendered by default.

28 changes: 28 additions & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/Energy.js.html

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/Environment.html

Large diffs are not rendered by default.

44 changes: 44 additions & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/Environment.js.html

Large diffs are not rendered by default.

23 changes: 23 additions & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/HideConstructor.js.html

Large diffs are not rendered by default.

30 changes: 30 additions & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/Modules.js.html

Large diffs are not rendered by default.

77 changes: 77 additions & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/NamespaceWithAlias.js.html

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/Statement.html

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/StatementIterator.html

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/Test.html

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/Tree.html

Large diffs are not rendered by default.

28 changes: 28 additions & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/Tree.js.html

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/World.html

Large diffs are not rendered by default.

67 changes: 67 additions & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/World.js.html

Large diffs are not rendered by default.

1,136 changes: 1,136 additions & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/api.js.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/data/search.json

Large diffs are not rendered by default.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
3 changes: 3 additions & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/global.html

Large diffs are not rendered by default.

187 changes: 187 additions & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/index.html

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/module-SqlJs.html

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/module-bookshelf.Book.html

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/module-bookshelf.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/module-color_mixer.html

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/obj.map.html

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/pieOptions.html

Large diffs are not rendered by default.

Binary file added output/v4/clean-jsdoc-theme/4.2.10/screen-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added output/v4/clean-jsdoc-theme/4.2.10/screen-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added output/v4/clean-jsdoc-theme/4.2.10/screen-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added output/v4/clean-jsdoc-theme/4.2.10/screen-4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added output/v4/clean-jsdoc-theme/4.2.10/screen-5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added output/v4/clean-jsdoc-theme/4.2.10/screen-6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions output/v4/clean-jsdoc-theme/4.2.10/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log('This is the new very new test script. If it runs then it means it is included.')
Loading

0 comments on commit ef98f0e

Please sign in to comment.