Skip to content

Commit c1534e3

Browse files
committed
Merge branch 'master' into design/app-bar
2 parents 4aa998e + 45691d7 commit c1534e3

File tree

35 files changed

+319
-69
lines changed

35 files changed

+319
-69
lines changed

common/config/rush/version-policies.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{
33
"definitionName": "lockStepVersion",
44
"policyName": "webdoc",
5-
"version": "1.1.4",
5+
"version": "1.1.5",
66
"nextBump": "patch"
77
}
88
]

example/example.api.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -407,6 +407,30 @@
407407
}
408408
]
409409
},
410+
{
411+
"name": "",
412+
"type": "TypedefDoc",
413+
"brief": "",
414+
"description": "",
415+
"members": [
416+
{
417+
"name": "destroy",
418+
"type": "PropertyDoc",
419+
"access": "public",
420+
"scope": "static",
421+
"brief": "",
422+
"description": "<p>Called when destroying Application, scoped to Application instance</p>"
423+
},
424+
{
425+
"name": "init",
426+
"type": "PropertyDoc",
427+
"access": "public",
428+
"scope": "static",
429+
"brief": "",
430+
"description": "<p>Called when Application is constructed, scoped to Application instance.\nPasses in <code>options</code> as the only argument, which are Application constructor options.</p>"
431+
}
432+
]
433+
},
410434
{
411435
"name": "SVG_SIZE",
412436
"type": "PropertyDoc",

example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"url": "https://github.com/SukantPal/webdoc/issues"
3333
},
3434
"dependencies": {
35-
"@webdoc/cli": "^1.1.4"
35+
"@webdoc/cli": "^1.1.5"
3636
},
3737
"gitHead": "a2866c1a42f60180a74add7bc1b0f42d8bb16330",
3838
"devDependencies": {

example/src/StreamBuilder.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -767,3 +767,15 @@ export class ObjectRenderer {
767767
// render the object
768768
}
769769
}
770+
771+
/**
772+
* @memberof PIXI
773+
* @typedef {object}
774+
* @property {function} init - Called when Application is constructed, scoped to Application instance.
775+
* Passes in `options` as the only argument, which are Application constructor options.
776+
* @property {function} destroy - Called when destroying Application, scoped to Application instance
777+
*/
778+
export interface IApplicationPlugin {
779+
init: (...params: any[]) => any;
780+
destroy: (...params: any[]) => any;
781+
}

packages/webdoc-cli/CHANGELOG.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
{
22
"name": "@webdoc/cli",
33
"entries": [
4+
{
5+
"version": "1.1.5",
6+
"tag": "@webdoc/cli_v1.1.5",
7+
"date": "Sun, 17 Jan 2021 16:21:24 GMT",
8+
"comments": {}
9+
},
410
{
511
"version": "1.1.4",
612
"tag": "@webdoc/cli_v1.1.4",

packages/webdoc-cli/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Change Log - @webdoc/cli
22

3-
This log was last generated on Sat, 16 Jan 2021 16:17:04 GMT and should not be manually modified.
3+
This log was last generated on Sun, 17 Jan 2021 16:21:24 GMT and should not be manually modified.
4+
5+
## 1.1.5
6+
Sun, 17 Jan 2021 16:21:24 GMT
7+
8+
*Version update only*
49

510
## 1.1.4
611
Sat, 16 Jan 2021 16:17:04 GMT

packages/webdoc-cli/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@webdoc/cli",
3-
"version": "1.1.4",
3+
"version": "1.1.5",
44
"description": "CLI for @webdoc monorepo",
55
"bin": {
66
"webdoc": "./cli.js"
@@ -40,14 +40,14 @@
4040
"url": "https://github.com/SukantPal/webdoc/issues"
4141
},
4242
"dependencies": {
43-
"@webdoc/default-template": "^1.1.4",
44-
"@webdoc/externalize": "^1.1.4",
45-
"@webdoc/legacy-template": "^1.1.4",
46-
"@webdoc/model": "^1.1.4",
47-
"@webdoc/parser": "^1.1.4",
48-
"@webdoc/plugin-markdown": "^1.1.4",
49-
"@webdoc/template-library": "^1.1.4",
50-
"@webdoc/types": "^1.1.4",
43+
"@webdoc/default-template": "^1.1.5",
44+
"@webdoc/externalize": "^1.1.5",
45+
"@webdoc/legacy-template": "^1.1.5",
46+
"@webdoc/model": "^1.1.5",
47+
"@webdoc/parser": "^1.1.5",
48+
"@webdoc/plugin-markdown": "^1.1.5",
49+
"@webdoc/template-library": "^1.1.5",
50+
"@webdoc/types": "^1.1.5",
5151
"array.prototype.flatmap": "~1.2.3",
5252
"fs-extra": "^9.0.1",
5353
"globby": "11.0.0",

packages/webdoc-default-template/CHANGELOG.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
{
22
"name": "@webdoc/default-template",
33
"entries": [
4+
{
5+
"version": "1.1.5",
6+
"tag": "@webdoc/default-template_v1.1.5",
7+
"date": "Sun, 17 Jan 2021 16:21:24 GMT",
8+
"comments": {}
9+
},
410
{
511
"version": "1.1.4",
612
"tag": "@webdoc/default-template_v1.1.4",

packages/webdoc-default-template/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Change Log - @webdoc/default-template
22

3-
This log was last generated on Sat, 16 Jan 2021 16:17:04 GMT and should not be manually modified.
3+
This log was last generated on Sun, 17 Jan 2021 16:21:24 GMT and should not be manually modified.
4+
5+
## 1.1.5
6+
Sun, 17 Jan 2021 16:21:24 GMT
7+
8+
*Version update only*
49

510
## 1.1.4
611
Sat, 16 Jan 2021 16:17:04 GMT

packages/webdoc-default-template/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@webdoc/default-template",
3-
"version": "1.1.4",
3+
"version": "1.1.5",
44
"description": "webdoc's default template",
55
"keywords": [
66
"webdoc",
@@ -41,8 +41,8 @@
4141
"dependencies": {
4242
"@babel/core": "^7.9.0",
4343
"@babel/preset-react": "^7.10.1",
44-
"@webdoc/model": "^1.1.4",
45-
"@webdoc/template-library": "^1.1.4",
44+
"@webdoc/model": "^1.1.5",
45+
"@webdoc/template-library": "^1.1.5",
4646
"code-prettify": "^0.1.0",
4747
"fs-extra": "^9.0.1",
4848
"markdown-it": "^11.0.0",

0 commit comments

Comments
 (0)