typedoc 0.25.10 → 0.25.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/application.js +16 -17
- package/dist/lib/converter/converter.js +37 -24
- package/dist/lib/converter/plugins/CategoryPlugin.js +19 -17
- package/dist/lib/converter/plugins/CommentPlugin.js +22 -15
- package/dist/lib/converter/plugins/GroupPlugin.js +16 -15
- package/dist/lib/converter/plugins/InheritDocPlugin.js +4 -4
- package/dist/lib/converter/plugins/LinkResolverPlugin.js +7 -6
- package/dist/lib/converter/plugins/PackagePlugin.js +19 -11
- package/dist/lib/converter/plugins/SourcePlugin.js +19 -14
- package/dist/lib/converter/types.js +3 -1
- package/dist/lib/models/reflections/abstract.js +16 -15
- package/dist/lib/output/plugins/AssetsPlugin.js +7 -6
- package/dist/lib/output/plugins/JavascriptIndexPlugin.js +7 -6
- package/dist/lib/output/plugins/SitemapPlugin.js +7 -6
- package/dist/lib/output/renderer.js +33 -26
- package/dist/lib/output/themes/MarkedPlugin.js +16 -9
- package/dist/lib/output/themes/default/layouts/default.js +1 -1
- package/dist/lib/output/themes/default/partials/navigation.js +13 -7
- package/package.json +11 -11
- package/static/main.js +2 -2
- package/static/style.css +2 -1
package/dist/lib/application.js
CHANGED
|
@@ -15,13 +15,6 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
15
15
|
}) : function(o, v) {
|
|
16
16
|
o["default"] = v;
|
|
17
17
|
});
|
|
18
|
-
var __runInitializers = (this && this.__runInitializers) || function (thisArg, initializers, value) {
|
|
19
|
-
var useValue = arguments.length > 2;
|
|
20
|
-
for (var i = 0; i < initializers.length; i++) {
|
|
21
|
-
value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);
|
|
22
|
-
}
|
|
23
|
-
return useValue ? value : void 0;
|
|
24
|
-
};
|
|
25
18
|
var __esDecorate = (this && this.__esDecorate) || function (ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {
|
|
26
19
|
function accept(f) { if (f !== void 0 && typeof f !== "function") throw new TypeError("Function expected"); return f; }
|
|
27
20
|
var kind = contextIn.kind, key = kind === "getter" ? "get" : kind === "setter" ? "set" : "value";
|
|
@@ -49,6 +42,13 @@ var __esDecorate = (this && this.__esDecorate) || function (ctor, descriptorIn,
|
|
|
49
42
|
if (target) Object.defineProperty(target, contextIn.name, descriptor);
|
|
50
43
|
done = true;
|
|
51
44
|
};
|
|
45
|
+
var __runInitializers = (this && this.__runInitializers) || function (thisArg, initializers, value) {
|
|
46
|
+
var useValue = arguments.length > 2;
|
|
47
|
+
for (var i = 0; i < initializers.length; i++) {
|
|
48
|
+
value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);
|
|
49
|
+
}
|
|
50
|
+
return useValue ? value : void 0;
|
|
51
|
+
};
|
|
52
52
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
53
53
|
if (mod && mod.__esModule) return mod;
|
|
54
54
|
var result = {};
|
|
@@ -133,13 +133,15 @@ let Application = (() => {
|
|
|
133
133
|
let _classExtraInitializers = [];
|
|
134
134
|
let _classThis;
|
|
135
135
|
let _classSuper = component_1.ChildableComponent;
|
|
136
|
-
let _instanceExtraInitializers = [];
|
|
137
136
|
let _skipErrorChecking_decorators;
|
|
138
137
|
let _skipErrorChecking_initializers = [];
|
|
138
|
+
let _skipErrorChecking_extraInitializers = [];
|
|
139
139
|
let _entryPointStrategy_decorators;
|
|
140
140
|
let _entryPointStrategy_initializers = [];
|
|
141
|
+
let _entryPointStrategy_extraInitializers = [];
|
|
141
142
|
let _entryPoints_decorators;
|
|
142
143
|
let _entryPoints_initializers = [];
|
|
144
|
+
let _entryPoints_extraInitializers = [];
|
|
143
145
|
var Application = _classThis = class extends _classSuper {
|
|
144
146
|
/** @internal */
|
|
145
147
|
get skipErrorChecking() { return __classPrivateFieldGet(this, _Application_skipErrorChecking_accessor_storage, "f"); }
|
|
@@ -158,10 +160,6 @@ let Application = (() => {
|
|
|
158
160
|
throw new Error("An application handle must be retrieved with Application.bootstrap or Application.bootstrapWithPlugins");
|
|
159
161
|
}
|
|
160
162
|
super(null); // We own ourselves
|
|
161
|
-
/**
|
|
162
|
-
* The converter used to create the declaration reflections.
|
|
163
|
-
*/
|
|
164
|
-
this.converter = (__runInitializers(this, _instanceExtraInitializers), void 0);
|
|
165
163
|
/**
|
|
166
164
|
* The serializer used to generate JSON output.
|
|
167
165
|
*/
|
|
@@ -176,8 +174,9 @@ let Application = (() => {
|
|
|
176
174
|
this.logger = new index_2.ConsoleLogger();
|
|
177
175
|
this.options = new utils_1.Options();
|
|
178
176
|
_Application_skipErrorChecking_accessor_storage.set(this, __runInitializers(this, _skipErrorChecking_initializers, void 0));
|
|
179
|
-
_Application_entryPointStrategy_accessor_storage.set(this, __runInitializers(this, _entryPointStrategy_initializers, void 0));
|
|
180
|
-
_Application_entryPoints_accessor_storage.set(this, __runInitializers(this, _entryPoints_initializers, void 0));
|
|
177
|
+
_Application_entryPointStrategy_accessor_storage.set(this, (__runInitializers(this, _skipErrorChecking_extraInitializers), __runInitializers(this, _entryPointStrategy_initializers, void 0)));
|
|
178
|
+
_Application_entryPoints_accessor_storage.set(this, (__runInitializers(this, _entryPointStrategy_extraInitializers), __runInitializers(this, _entryPoints_initializers, void 0)));
|
|
179
|
+
__runInitializers(this, _entryPoints_extraInitializers);
|
|
181
180
|
this.converter = this.addComponent("converter", index_1.Converter);
|
|
182
181
|
this.renderer = this.addComponent("renderer", renderer_1.Renderer);
|
|
183
182
|
}
|
|
@@ -533,9 +532,9 @@ let Application = (() => {
|
|
|
533
532
|
_skipErrorChecking_decorators = [(0, utils_1.Option)("skipErrorChecking")];
|
|
534
533
|
_entryPointStrategy_decorators = [(0, utils_1.Option)("entryPointStrategy")];
|
|
535
534
|
_entryPoints_decorators = [(0, utils_1.Option)("entryPoints")];
|
|
536
|
-
__esDecorate(_classThis, null, _skipErrorChecking_decorators, { kind: "accessor", name: "skipErrorChecking", static: false, private: false, access: { has: obj => "skipErrorChecking" in obj, get: obj => obj.skipErrorChecking, set: (obj, value) => { obj.skipErrorChecking = value; } }, metadata: _metadata }, _skipErrorChecking_initializers,
|
|
537
|
-
__esDecorate(_classThis, null, _entryPointStrategy_decorators, { kind: "accessor", name: "entryPointStrategy", static: false, private: false, access: { has: obj => "entryPointStrategy" in obj, get: obj => obj.entryPointStrategy, set: (obj, value) => { obj.entryPointStrategy = value; } }, metadata: _metadata }, _entryPointStrategy_initializers,
|
|
538
|
-
__esDecorate(_classThis, null, _entryPoints_decorators, { kind: "accessor", name: "entryPoints", static: false, private: false, access: { has: obj => "entryPoints" in obj, get: obj => obj.entryPoints, set: (obj, value) => { obj.entryPoints = value; } }, metadata: _metadata }, _entryPoints_initializers,
|
|
535
|
+
__esDecorate(_classThis, null, _skipErrorChecking_decorators, { kind: "accessor", name: "skipErrorChecking", static: false, private: false, access: { has: obj => "skipErrorChecking" in obj, get: obj => obj.skipErrorChecking, set: (obj, value) => { obj.skipErrorChecking = value; } }, metadata: _metadata }, _skipErrorChecking_initializers, _skipErrorChecking_extraInitializers);
|
|
536
|
+
__esDecorate(_classThis, null, _entryPointStrategy_decorators, { kind: "accessor", name: "entryPointStrategy", static: false, private: false, access: { has: obj => "entryPointStrategy" in obj, get: obj => obj.entryPointStrategy, set: (obj, value) => { obj.entryPointStrategy = value; } }, metadata: _metadata }, _entryPointStrategy_initializers, _entryPointStrategy_extraInitializers);
|
|
537
|
+
__esDecorate(_classThis, null, _entryPoints_decorators, { kind: "accessor", name: "entryPoints", static: false, private: false, access: { has: obj => "entryPoints" in obj, get: obj => obj.entryPoints, set: (obj, value) => { obj.entryPoints = value; } }, metadata: _metadata }, _entryPoints_initializers, _entryPoints_extraInitializers);
|
|
539
538
|
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
540
539
|
Application = _classThis = _classDescriptor.value;
|
|
541
540
|
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
@@ -81,31 +81,42 @@ let Converter = (() => {
|
|
|
81
81
|
let _classExtraInitializers = [];
|
|
82
82
|
let _classThis;
|
|
83
83
|
let _classSuper = component_1.ChildableComponent;
|
|
84
|
-
let _instanceExtraInitializers = [];
|
|
85
84
|
let _externalPattern_decorators;
|
|
86
85
|
let _externalPattern_initializers = [];
|
|
86
|
+
let _externalPattern_extraInitializers = [];
|
|
87
87
|
let _excludeExternals_decorators;
|
|
88
88
|
let _excludeExternals_initializers = [];
|
|
89
|
+
let _excludeExternals_extraInitializers = [];
|
|
89
90
|
let _excludeNotDocumented_decorators;
|
|
90
91
|
let _excludeNotDocumented_initializers = [];
|
|
92
|
+
let _excludeNotDocumented_extraInitializers = [];
|
|
91
93
|
let _excludePrivate_decorators;
|
|
92
94
|
let _excludePrivate_initializers = [];
|
|
95
|
+
let _excludePrivate_extraInitializers = [];
|
|
93
96
|
let _excludeProtected_decorators;
|
|
94
97
|
let _excludeProtected_initializers = [];
|
|
98
|
+
let _excludeProtected_extraInitializers = [];
|
|
95
99
|
let _excludeReferences_decorators;
|
|
96
100
|
let _excludeReferences_initializers = [];
|
|
101
|
+
let _excludeReferences_extraInitializers = [];
|
|
97
102
|
let _commentStyle_decorators;
|
|
98
103
|
let _commentStyle_initializers = [];
|
|
104
|
+
let _commentStyle_extraInitializers = [];
|
|
99
105
|
let _validation_decorators;
|
|
100
106
|
let _validation_initializers = [];
|
|
107
|
+
let _validation_extraInitializers = [];
|
|
101
108
|
let _externalSymbolLinkMappings_decorators;
|
|
102
109
|
let _externalSymbolLinkMappings_initializers = [];
|
|
110
|
+
let _externalSymbolLinkMappings_extraInitializers = [];
|
|
103
111
|
let _useTsLinkResolution_decorators;
|
|
104
112
|
let _useTsLinkResolution_initializers = [];
|
|
113
|
+
let _useTsLinkResolution_extraInitializers = [];
|
|
105
114
|
let _preserveLinkText_decorators;
|
|
106
115
|
let _preserveLinkText_initializers = [];
|
|
116
|
+
let _preserveLinkText_extraInitializers = [];
|
|
107
117
|
let _maxTypeConversionDepth_decorators;
|
|
108
118
|
let _maxTypeConversionDepth_initializers = [];
|
|
119
|
+
let _maxTypeConversionDepth_extraInitializers = [];
|
|
109
120
|
var Converter = _classThis = class extends _classSuper {
|
|
110
121
|
/** @internal */
|
|
111
122
|
get externalPattern() { return __classPrivateFieldGet(this, _Converter_externalPattern_accessor_storage, "f"); }
|
|
@@ -148,18 +159,20 @@ let Converter = (() => {
|
|
|
148
159
|
}
|
|
149
160
|
constructor(owner) {
|
|
150
161
|
super(owner);
|
|
151
|
-
_Converter_externalPattern_accessor_storage.set(this,
|
|
162
|
+
_Converter_externalPattern_accessor_storage.set(this, __runInitializers(this, _externalPattern_initializers, void 0));
|
|
163
|
+
this.externalPatternCache = __runInitializers(this, _externalPattern_extraInitializers);
|
|
152
164
|
_Converter_excludeExternals_accessor_storage.set(this, __runInitializers(this, _excludeExternals_initializers, void 0));
|
|
153
|
-
_Converter_excludeNotDocumented_accessor_storage.set(this, __runInitializers(this, _excludeNotDocumented_initializers, void 0));
|
|
154
|
-
_Converter_excludePrivate_accessor_storage.set(this, __runInitializers(this, _excludePrivate_initializers, void 0));
|
|
155
|
-
_Converter_excludeProtected_accessor_storage.set(this, __runInitializers(this, _excludeProtected_initializers, void 0));
|
|
156
|
-
_Converter_excludeReferences_accessor_storage.set(this, __runInitializers(this, _excludeReferences_initializers, void 0));
|
|
157
|
-
_Converter_commentStyle_accessor_storage.set(this, __runInitializers(this, _commentStyle_initializers, void 0));
|
|
158
|
-
_Converter_validation_accessor_storage.set(this, __runInitializers(this, _validation_initializers, void 0));
|
|
159
|
-
_Converter_externalSymbolLinkMappings_accessor_storage.set(this, __runInitializers(this, _externalSymbolLinkMappings_initializers, void 0));
|
|
160
|
-
_Converter_useTsLinkResolution_accessor_storage.set(this, __runInitializers(this, _useTsLinkResolution_initializers, void 0));
|
|
161
|
-
_Converter_preserveLinkText_accessor_storage.set(this, __runInitializers(this, _preserveLinkText_initializers, void 0));
|
|
162
|
-
_Converter_maxTypeConversionDepth_accessor_storage.set(this, __runInitializers(this, _maxTypeConversionDepth_initializers, void 0));
|
|
165
|
+
_Converter_excludeNotDocumented_accessor_storage.set(this, (__runInitializers(this, _excludeExternals_extraInitializers), __runInitializers(this, _excludeNotDocumented_initializers, void 0)));
|
|
166
|
+
_Converter_excludePrivate_accessor_storage.set(this, (__runInitializers(this, _excludeNotDocumented_extraInitializers), __runInitializers(this, _excludePrivate_initializers, void 0)));
|
|
167
|
+
_Converter_excludeProtected_accessor_storage.set(this, (__runInitializers(this, _excludePrivate_extraInitializers), __runInitializers(this, _excludeProtected_initializers, void 0)));
|
|
168
|
+
_Converter_excludeReferences_accessor_storage.set(this, (__runInitializers(this, _excludeProtected_extraInitializers), __runInitializers(this, _excludeReferences_initializers, void 0)));
|
|
169
|
+
_Converter_commentStyle_accessor_storage.set(this, (__runInitializers(this, _excludeReferences_extraInitializers), __runInitializers(this, _commentStyle_initializers, void 0)));
|
|
170
|
+
_Converter_validation_accessor_storage.set(this, (__runInitializers(this, _commentStyle_extraInitializers), __runInitializers(this, _validation_initializers, void 0)));
|
|
171
|
+
_Converter_externalSymbolLinkMappings_accessor_storage.set(this, (__runInitializers(this, _validation_extraInitializers), __runInitializers(this, _externalSymbolLinkMappings_initializers, void 0)));
|
|
172
|
+
_Converter_useTsLinkResolution_accessor_storage.set(this, (__runInitializers(this, _externalSymbolLinkMappings_extraInitializers), __runInitializers(this, _useTsLinkResolution_initializers, void 0)));
|
|
173
|
+
_Converter_preserveLinkText_accessor_storage.set(this, (__runInitializers(this, _useTsLinkResolution_extraInitializers), __runInitializers(this, _preserveLinkText_initializers, void 0)));
|
|
174
|
+
_Converter_maxTypeConversionDepth_accessor_storage.set(this, (__runInitializers(this, _preserveLinkText_extraInitializers), __runInitializers(this, _maxTypeConversionDepth_initializers, void 0)));
|
|
175
|
+
this._config = __runInitializers(this, _maxTypeConversionDepth_extraInitializers);
|
|
163
176
|
this._externalSymbolResolvers = [];
|
|
164
177
|
this.addUnknownSymbolResolver((ref) => {
|
|
165
178
|
// Require global links, matching local ones will likely hide mistakes where the
|
|
@@ -400,18 +413,18 @@ let Converter = (() => {
|
|
|
400
413
|
_useTsLinkResolution_decorators = [(0, utils_1.Option)("useTsLinkResolution")];
|
|
401
414
|
_preserveLinkText_decorators = [(0, utils_1.Option)("preserveLinkText")];
|
|
402
415
|
_maxTypeConversionDepth_decorators = [(0, utils_1.Option)("maxTypeConversionDepth")];
|
|
403
|
-
__esDecorate(_classThis, null, _externalPattern_decorators, { kind: "accessor", name: "externalPattern", static: false, private: false, access: { has: obj => "externalPattern" in obj, get: obj => obj.externalPattern, set: (obj, value) => { obj.externalPattern = value; } }, metadata: _metadata }, _externalPattern_initializers,
|
|
404
|
-
__esDecorate(_classThis, null, _excludeExternals_decorators, { kind: "accessor", name: "excludeExternals", static: false, private: false, access: { has: obj => "excludeExternals" in obj, get: obj => obj.excludeExternals, set: (obj, value) => { obj.excludeExternals = value; } }, metadata: _metadata }, _excludeExternals_initializers,
|
|
405
|
-
__esDecorate(_classThis, null, _excludeNotDocumented_decorators, { kind: "accessor", name: "excludeNotDocumented", static: false, private: false, access: { has: obj => "excludeNotDocumented" in obj, get: obj => obj.excludeNotDocumented, set: (obj, value) => { obj.excludeNotDocumented = value; } }, metadata: _metadata }, _excludeNotDocumented_initializers,
|
|
406
|
-
__esDecorate(_classThis, null, _excludePrivate_decorators, { kind: "accessor", name: "excludePrivate", static: false, private: false, access: { has: obj => "excludePrivate" in obj, get: obj => obj.excludePrivate, set: (obj, value) => { obj.excludePrivate = value; } }, metadata: _metadata }, _excludePrivate_initializers,
|
|
407
|
-
__esDecorate(_classThis, null, _excludeProtected_decorators, { kind: "accessor", name: "excludeProtected", static: false, private: false, access: { has: obj => "excludeProtected" in obj, get: obj => obj.excludeProtected, set: (obj, value) => { obj.excludeProtected = value; } }, metadata: _metadata }, _excludeProtected_initializers,
|
|
408
|
-
__esDecorate(_classThis, null, _excludeReferences_decorators, { kind: "accessor", name: "excludeReferences", static: false, private: false, access: { has: obj => "excludeReferences" in obj, get: obj => obj.excludeReferences, set: (obj, value) => { obj.excludeReferences = value; } }, metadata: _metadata }, _excludeReferences_initializers,
|
|
409
|
-
__esDecorate(_classThis, null, _commentStyle_decorators, { kind: "accessor", name: "commentStyle", static: false, private: false, access: { has: obj => "commentStyle" in obj, get: obj => obj.commentStyle, set: (obj, value) => { obj.commentStyle = value; } }, metadata: _metadata }, _commentStyle_initializers,
|
|
410
|
-
__esDecorate(_classThis, null, _validation_decorators, { kind: "accessor", name: "validation", static: false, private: false, access: { has: obj => "validation" in obj, get: obj => obj.validation, set: (obj, value) => { obj.validation = value; } }, metadata: _metadata }, _validation_initializers,
|
|
411
|
-
__esDecorate(_classThis, null, _externalSymbolLinkMappings_decorators, { kind: "accessor", name: "externalSymbolLinkMappings", static: false, private: false, access: { has: obj => "externalSymbolLinkMappings" in obj, get: obj => obj.externalSymbolLinkMappings, set: (obj, value) => { obj.externalSymbolLinkMappings = value; } }, metadata: _metadata }, _externalSymbolLinkMappings_initializers,
|
|
412
|
-
__esDecorate(_classThis, null, _useTsLinkResolution_decorators, { kind: "accessor", name: "useTsLinkResolution", static: false, private: false, access: { has: obj => "useTsLinkResolution" in obj, get: obj => obj.useTsLinkResolution, set: (obj, value) => { obj.useTsLinkResolution = value; } }, metadata: _metadata }, _useTsLinkResolution_initializers,
|
|
413
|
-
__esDecorate(_classThis, null, _preserveLinkText_decorators, { kind: "accessor", name: "preserveLinkText", static: false, private: false, access: { has: obj => "preserveLinkText" in obj, get: obj => obj.preserveLinkText, set: (obj, value) => { obj.preserveLinkText = value; } }, metadata: _metadata }, _preserveLinkText_initializers,
|
|
414
|
-
__esDecorate(_classThis, null, _maxTypeConversionDepth_decorators, { kind: "accessor", name: "maxTypeConversionDepth", static: false, private: false, access: { has: obj => "maxTypeConversionDepth" in obj, get: obj => obj.maxTypeConversionDepth, set: (obj, value) => { obj.maxTypeConversionDepth = value; } }, metadata: _metadata }, _maxTypeConversionDepth_initializers,
|
|
416
|
+
__esDecorate(_classThis, null, _externalPattern_decorators, { kind: "accessor", name: "externalPattern", static: false, private: false, access: { has: obj => "externalPattern" in obj, get: obj => obj.externalPattern, set: (obj, value) => { obj.externalPattern = value; } }, metadata: _metadata }, _externalPattern_initializers, _externalPattern_extraInitializers);
|
|
417
|
+
__esDecorate(_classThis, null, _excludeExternals_decorators, { kind: "accessor", name: "excludeExternals", static: false, private: false, access: { has: obj => "excludeExternals" in obj, get: obj => obj.excludeExternals, set: (obj, value) => { obj.excludeExternals = value; } }, metadata: _metadata }, _excludeExternals_initializers, _excludeExternals_extraInitializers);
|
|
418
|
+
__esDecorate(_classThis, null, _excludeNotDocumented_decorators, { kind: "accessor", name: "excludeNotDocumented", static: false, private: false, access: { has: obj => "excludeNotDocumented" in obj, get: obj => obj.excludeNotDocumented, set: (obj, value) => { obj.excludeNotDocumented = value; } }, metadata: _metadata }, _excludeNotDocumented_initializers, _excludeNotDocumented_extraInitializers);
|
|
419
|
+
__esDecorate(_classThis, null, _excludePrivate_decorators, { kind: "accessor", name: "excludePrivate", static: false, private: false, access: { has: obj => "excludePrivate" in obj, get: obj => obj.excludePrivate, set: (obj, value) => { obj.excludePrivate = value; } }, metadata: _metadata }, _excludePrivate_initializers, _excludePrivate_extraInitializers);
|
|
420
|
+
__esDecorate(_classThis, null, _excludeProtected_decorators, { kind: "accessor", name: "excludeProtected", static: false, private: false, access: { has: obj => "excludeProtected" in obj, get: obj => obj.excludeProtected, set: (obj, value) => { obj.excludeProtected = value; } }, metadata: _metadata }, _excludeProtected_initializers, _excludeProtected_extraInitializers);
|
|
421
|
+
__esDecorate(_classThis, null, _excludeReferences_decorators, { kind: "accessor", name: "excludeReferences", static: false, private: false, access: { has: obj => "excludeReferences" in obj, get: obj => obj.excludeReferences, set: (obj, value) => { obj.excludeReferences = value; } }, metadata: _metadata }, _excludeReferences_initializers, _excludeReferences_extraInitializers);
|
|
422
|
+
__esDecorate(_classThis, null, _commentStyle_decorators, { kind: "accessor", name: "commentStyle", static: false, private: false, access: { has: obj => "commentStyle" in obj, get: obj => obj.commentStyle, set: (obj, value) => { obj.commentStyle = value; } }, metadata: _metadata }, _commentStyle_initializers, _commentStyle_extraInitializers);
|
|
423
|
+
__esDecorate(_classThis, null, _validation_decorators, { kind: "accessor", name: "validation", static: false, private: false, access: { has: obj => "validation" in obj, get: obj => obj.validation, set: (obj, value) => { obj.validation = value; } }, metadata: _metadata }, _validation_initializers, _validation_extraInitializers);
|
|
424
|
+
__esDecorate(_classThis, null, _externalSymbolLinkMappings_decorators, { kind: "accessor", name: "externalSymbolLinkMappings", static: false, private: false, access: { has: obj => "externalSymbolLinkMappings" in obj, get: obj => obj.externalSymbolLinkMappings, set: (obj, value) => { obj.externalSymbolLinkMappings = value; } }, metadata: _metadata }, _externalSymbolLinkMappings_initializers, _externalSymbolLinkMappings_extraInitializers);
|
|
425
|
+
__esDecorate(_classThis, null, _useTsLinkResolution_decorators, { kind: "accessor", name: "useTsLinkResolution", static: false, private: false, access: { has: obj => "useTsLinkResolution" in obj, get: obj => obj.useTsLinkResolution, set: (obj, value) => { obj.useTsLinkResolution = value; } }, metadata: _metadata }, _useTsLinkResolution_initializers, _useTsLinkResolution_extraInitializers);
|
|
426
|
+
__esDecorate(_classThis, null, _preserveLinkText_decorators, { kind: "accessor", name: "preserveLinkText", static: false, private: false, access: { has: obj => "preserveLinkText" in obj, get: obj => obj.preserveLinkText, set: (obj, value) => { obj.preserveLinkText = value; } }, metadata: _metadata }, _preserveLinkText_initializers, _preserveLinkText_extraInitializers);
|
|
427
|
+
__esDecorate(_classThis, null, _maxTypeConversionDepth_decorators, { kind: "accessor", name: "maxTypeConversionDepth", static: false, private: false, access: { has: obj => "maxTypeConversionDepth" in obj, get: obj => obj.maxTypeConversionDepth, set: (obj, value) => { obj.maxTypeConversionDepth = value; } }, metadata: _metadata }, _maxTypeConversionDepth_initializers, _maxTypeConversionDepth_extraInitializers);
|
|
415
428
|
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
416
429
|
Converter = _classThis = _classDescriptor.value;
|
|
417
430
|
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
@@ -1,11 +1,4 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __runInitializers = (this && this.__runInitializers) || function (thisArg, initializers, value) {
|
|
3
|
-
var useValue = arguments.length > 2;
|
|
4
|
-
for (var i = 0; i < initializers.length; i++) {
|
|
5
|
-
value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);
|
|
6
|
-
}
|
|
7
|
-
return useValue ? value : void 0;
|
|
8
|
-
};
|
|
9
2
|
var __esDecorate = (this && this.__esDecorate) || function (ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {
|
|
10
3
|
function accept(f) { if (f !== void 0 && typeof f !== "function") throw new TypeError("Function expected"); return f; }
|
|
11
4
|
var kind = contextIn.kind, key = kind === "getter" ? "get" : kind === "setter" ? "set" : "value";
|
|
@@ -33,6 +26,13 @@ var __esDecorate = (this && this.__esDecorate) || function (ctor, descriptorIn,
|
|
|
33
26
|
if (target) Object.defineProperty(target, contextIn.name, descriptor);
|
|
34
27
|
done = true;
|
|
35
28
|
};
|
|
29
|
+
var __runInitializers = (this && this.__runInitializers) || function (thisArg, initializers, value) {
|
|
30
|
+
var useValue = arguments.length > 2;
|
|
31
|
+
for (var i = 0; i < initializers.length; i++) {
|
|
32
|
+
value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);
|
|
33
|
+
}
|
|
34
|
+
return useValue ? value : void 0;
|
|
35
|
+
};
|
|
36
36
|
var __setFunctionName = (this && this.__setFunctionName) || function (f, name, prefix) {
|
|
37
37
|
if (typeof name === "symbol") name = name.description ? "[".concat(name.description, "]") : "";
|
|
38
38
|
return Object.defineProperty(f, "name", { configurable: true, value: prefix ? "".concat(prefix, " ", name) : name });
|
|
@@ -67,24 +67,26 @@ let CategoryPlugin = (() => {
|
|
|
67
67
|
let _classExtraInitializers = [];
|
|
68
68
|
let _classThis;
|
|
69
69
|
let _classSuper = components_1.ConverterComponent;
|
|
70
|
-
let _instanceExtraInitializers = [];
|
|
71
70
|
let _defaultCategory_decorators;
|
|
72
71
|
let _defaultCategory_initializers = [];
|
|
72
|
+
let _defaultCategory_extraInitializers = [];
|
|
73
73
|
let _categoryOrder_decorators;
|
|
74
74
|
let _categoryOrder_initializers = [];
|
|
75
|
+
let _categoryOrder_extraInitializers = [];
|
|
75
76
|
let _categorizeByGroup_decorators;
|
|
76
77
|
let _categorizeByGroup_initializers = [];
|
|
78
|
+
let _categorizeByGroup_extraInitializers = [];
|
|
77
79
|
let _boosts_decorators;
|
|
78
80
|
let _boosts_initializers = [];
|
|
81
|
+
let _boosts_extraInitializers = [];
|
|
79
82
|
var CategoryPlugin = _classThis = class extends _classSuper {
|
|
80
83
|
constructor() {
|
|
81
84
|
super(...arguments);
|
|
82
|
-
this.sortFunction = (__runInitializers(this, _instanceExtraInitializers), void 0);
|
|
83
85
|
_CategoryPlugin_defaultCategory_accessor_storage.set(this, __runInitializers(this, _defaultCategory_initializers, void 0));
|
|
84
|
-
_CategoryPlugin_categoryOrder_accessor_storage.set(this, __runInitializers(this, _categoryOrder_initializers, void 0));
|
|
85
|
-
_CategoryPlugin_categorizeByGroup_accessor_storage.set(this, __runInitializers(this, _categorizeByGroup_initializers, void 0));
|
|
86
|
-
_CategoryPlugin_boosts_accessor_storage.set(this, __runInitializers(this, _boosts_initializers, void 0));
|
|
87
|
-
this.usedBoosts = new Set();
|
|
86
|
+
_CategoryPlugin_categoryOrder_accessor_storage.set(this, (__runInitializers(this, _defaultCategory_extraInitializers), __runInitializers(this, _categoryOrder_initializers, void 0)));
|
|
87
|
+
_CategoryPlugin_categorizeByGroup_accessor_storage.set(this, (__runInitializers(this, _categoryOrder_extraInitializers), __runInitializers(this, _categorizeByGroup_initializers, void 0)));
|
|
88
|
+
_CategoryPlugin_boosts_accessor_storage.set(this, (__runInitializers(this, _categorizeByGroup_extraInitializers), __runInitializers(this, _boosts_initializers, void 0)));
|
|
89
|
+
this.usedBoosts = (__runInitializers(this, _boosts_extraInitializers), new Set());
|
|
88
90
|
}
|
|
89
91
|
get defaultCategory() { return __classPrivateFieldGet(this, _CategoryPlugin_defaultCategory_accessor_storage, "f"); }
|
|
90
92
|
set defaultCategory(value) { __classPrivateFieldSet(this, _CategoryPlugin_defaultCategory_accessor_storage, value, "f"); }
|
|
@@ -322,10 +324,10 @@ let CategoryPlugin = (() => {
|
|
|
322
324
|
_categoryOrder_decorators = [(0, utils_1.Option)("categoryOrder")];
|
|
323
325
|
_categorizeByGroup_decorators = [(0, utils_1.Option)("categorizeByGroup")];
|
|
324
326
|
_boosts_decorators = [(0, utils_1.Option)("searchCategoryBoosts")];
|
|
325
|
-
__esDecorate(_classThis, null, _defaultCategory_decorators, { kind: "accessor", name: "defaultCategory", static: false, private: false, access: { has: obj => "defaultCategory" in obj, get: obj => obj.defaultCategory, set: (obj, value) => { obj.defaultCategory = value; } }, metadata: _metadata }, _defaultCategory_initializers,
|
|
326
|
-
__esDecorate(_classThis, null, _categoryOrder_decorators, { kind: "accessor", name: "categoryOrder", static: false, private: false, access: { has: obj => "categoryOrder" in obj, get: obj => obj.categoryOrder, set: (obj, value) => { obj.categoryOrder = value; } }, metadata: _metadata }, _categoryOrder_initializers,
|
|
327
|
-
__esDecorate(_classThis, null, _categorizeByGroup_decorators, { kind: "accessor", name: "categorizeByGroup", static: false, private: false, access: { has: obj => "categorizeByGroup" in obj, get: obj => obj.categorizeByGroup, set: (obj, value) => { obj.categorizeByGroup = value; } }, metadata: _metadata }, _categorizeByGroup_initializers,
|
|
328
|
-
__esDecorate(_classThis, null, _boosts_decorators, { kind: "accessor", name: "boosts", static: false, private: false, access: { has: obj => "boosts" in obj, get: obj => obj.boosts, set: (obj, value) => { obj.boosts = value; } }, metadata: _metadata }, _boosts_initializers,
|
|
327
|
+
__esDecorate(_classThis, null, _defaultCategory_decorators, { kind: "accessor", name: "defaultCategory", static: false, private: false, access: { has: obj => "defaultCategory" in obj, get: obj => obj.defaultCategory, set: (obj, value) => { obj.defaultCategory = value; } }, metadata: _metadata }, _defaultCategory_initializers, _defaultCategory_extraInitializers);
|
|
328
|
+
__esDecorate(_classThis, null, _categoryOrder_decorators, { kind: "accessor", name: "categoryOrder", static: false, private: false, access: { has: obj => "categoryOrder" in obj, get: obj => obj.categoryOrder, set: (obj, value) => { obj.categoryOrder = value; } }, metadata: _metadata }, _categoryOrder_initializers, _categoryOrder_extraInitializers);
|
|
329
|
+
__esDecorate(_classThis, null, _categorizeByGroup_decorators, { kind: "accessor", name: "categorizeByGroup", static: false, private: false, access: { has: obj => "categorizeByGroup" in obj, get: obj => obj.categorizeByGroup, set: (obj, value) => { obj.categorizeByGroup = value; } }, metadata: _metadata }, _categorizeByGroup_initializers, _categorizeByGroup_extraInitializers);
|
|
330
|
+
__esDecorate(_classThis, null, _boosts_decorators, { kind: "accessor", name: "boosts", static: false, private: false, access: { has: obj => "boosts" in obj, get: obj => obj.boosts, set: (obj, value) => { obj.boosts = value; } }, metadata: _metadata }, _boosts_initializers, _boosts_extraInitializers);
|
|
329
331
|
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
330
332
|
CategoryPlugin = _classThis = _classDescriptor.value;
|
|
331
333
|
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
@@ -139,31 +139,38 @@ let CommentPlugin = (() => {
|
|
|
139
139
|
let _classExtraInitializers = [];
|
|
140
140
|
let _classThis;
|
|
141
141
|
let _classSuper = components_1.ConverterComponent;
|
|
142
|
-
let _instanceExtraInitializers = [];
|
|
143
142
|
let _excludeTags_decorators;
|
|
144
143
|
let _excludeTags_initializers = [];
|
|
144
|
+
let _excludeTags_extraInitializers = [];
|
|
145
145
|
let _excludeInternal_decorators;
|
|
146
146
|
let _excludeInternal_initializers = [];
|
|
147
|
+
let _excludeInternal_extraInitializers = [];
|
|
147
148
|
let _excludePrivate_decorators;
|
|
148
149
|
let _excludePrivate_initializers = [];
|
|
150
|
+
let _excludePrivate_extraInitializers = [];
|
|
149
151
|
let _excludeProtected_decorators;
|
|
150
152
|
let _excludeProtected_initializers = [];
|
|
153
|
+
let _excludeProtected_extraInitializers = [];
|
|
151
154
|
let _excludeNotDocumented_decorators;
|
|
152
155
|
let _excludeNotDocumented_initializers = [];
|
|
156
|
+
let _excludeNotDocumented_extraInitializers = [];
|
|
153
157
|
let _excludeCategories_decorators;
|
|
154
158
|
let _excludeCategories_initializers = [];
|
|
159
|
+
let _excludeCategories_extraInitializers = [];
|
|
155
160
|
let _defaultCategory_decorators;
|
|
156
161
|
let _defaultCategory_initializers = [];
|
|
162
|
+
let _defaultCategory_extraInitializers = [];
|
|
157
163
|
var CommentPlugin = _classThis = class extends _classSuper {
|
|
158
164
|
constructor() {
|
|
159
165
|
super(...arguments);
|
|
160
|
-
_CommentPlugin_excludeTags_accessor_storage.set(this,
|
|
161
|
-
_CommentPlugin_excludeInternal_accessor_storage.set(this, __runInitializers(this, _excludeInternal_initializers, void 0));
|
|
162
|
-
_CommentPlugin_excludePrivate_accessor_storage.set(this, __runInitializers(this, _excludePrivate_initializers, void 0));
|
|
163
|
-
_CommentPlugin_excludeProtected_accessor_storage.set(this, __runInitializers(this, _excludeProtected_initializers, void 0));
|
|
164
|
-
_CommentPlugin_excludeNotDocumented_accessor_storage.set(this, __runInitializers(this, _excludeNotDocumented_initializers, void 0));
|
|
165
|
-
_CommentPlugin_excludeCategories_accessor_storage.set(this, __runInitializers(this, _excludeCategories_initializers, void 0));
|
|
166
|
-
_CommentPlugin_defaultCategory_accessor_storage.set(this, __runInitializers(this, _defaultCategory_initializers, void 0));
|
|
166
|
+
_CommentPlugin_excludeTags_accessor_storage.set(this, __runInitializers(this, _excludeTags_initializers, void 0));
|
|
167
|
+
_CommentPlugin_excludeInternal_accessor_storage.set(this, (__runInitializers(this, _excludeTags_extraInitializers), __runInitializers(this, _excludeInternal_initializers, void 0)));
|
|
168
|
+
_CommentPlugin_excludePrivate_accessor_storage.set(this, (__runInitializers(this, _excludeInternal_extraInitializers), __runInitializers(this, _excludePrivate_initializers, void 0)));
|
|
169
|
+
_CommentPlugin_excludeProtected_accessor_storage.set(this, (__runInitializers(this, _excludePrivate_extraInitializers), __runInitializers(this, _excludeProtected_initializers, void 0)));
|
|
170
|
+
_CommentPlugin_excludeNotDocumented_accessor_storage.set(this, (__runInitializers(this, _excludeProtected_extraInitializers), __runInitializers(this, _excludeNotDocumented_initializers, void 0)));
|
|
171
|
+
_CommentPlugin_excludeCategories_accessor_storage.set(this, (__runInitializers(this, _excludeNotDocumented_extraInitializers), __runInitializers(this, _excludeCategories_initializers, void 0)));
|
|
172
|
+
_CommentPlugin_defaultCategory_accessor_storage.set(this, (__runInitializers(this, _excludeCategories_extraInitializers), __runInitializers(this, _defaultCategory_initializers, void 0)));
|
|
173
|
+
this._excludeKinds = __runInitializers(this, _defaultCategory_extraInitializers);
|
|
167
174
|
}
|
|
168
175
|
get excludeTags() { return __classPrivateFieldGet(this, _CommentPlugin_excludeTags_accessor_storage, "f"); }
|
|
169
176
|
set excludeTags(value) { __classPrivateFieldSet(this, _CommentPlugin_excludeTags_accessor_storage, value, "f"); }
|
|
@@ -555,13 +562,13 @@ let CommentPlugin = (() => {
|
|
|
555
562
|
_excludeNotDocumented_decorators = [(0, utils_1.Option)("excludeNotDocumented")];
|
|
556
563
|
_excludeCategories_decorators = [(0, utils_1.Option)("excludeCategories")];
|
|
557
564
|
_defaultCategory_decorators = [(0, utils_1.Option)("defaultCategory")];
|
|
558
|
-
__esDecorate(_classThis, null, _excludeTags_decorators, { kind: "accessor", name: "excludeTags", static: false, private: false, access: { has: obj => "excludeTags" in obj, get: obj => obj.excludeTags, set: (obj, value) => { obj.excludeTags = value; } }, metadata: _metadata }, _excludeTags_initializers,
|
|
559
|
-
__esDecorate(_classThis, null, _excludeInternal_decorators, { kind: "accessor", name: "excludeInternal", static: false, private: false, access: { has: obj => "excludeInternal" in obj, get: obj => obj.excludeInternal, set: (obj, value) => { obj.excludeInternal = value; } }, metadata: _metadata }, _excludeInternal_initializers,
|
|
560
|
-
__esDecorate(_classThis, null, _excludePrivate_decorators, { kind: "accessor", name: "excludePrivate", static: false, private: false, access: { has: obj => "excludePrivate" in obj, get: obj => obj.excludePrivate, set: (obj, value) => { obj.excludePrivate = value; } }, metadata: _metadata }, _excludePrivate_initializers,
|
|
561
|
-
__esDecorate(_classThis, null, _excludeProtected_decorators, { kind: "accessor", name: "excludeProtected", static: false, private: false, access: { has: obj => "excludeProtected" in obj, get: obj => obj.excludeProtected, set: (obj, value) => { obj.excludeProtected = value; } }, metadata: _metadata }, _excludeProtected_initializers,
|
|
562
|
-
__esDecorate(_classThis, null, _excludeNotDocumented_decorators, { kind: "accessor", name: "excludeNotDocumented", static: false, private: false, access: { has: obj => "excludeNotDocumented" in obj, get: obj => obj.excludeNotDocumented, set: (obj, value) => { obj.excludeNotDocumented = value; } }, metadata: _metadata }, _excludeNotDocumented_initializers,
|
|
563
|
-
__esDecorate(_classThis, null, _excludeCategories_decorators, { kind: "accessor", name: "excludeCategories", static: false, private: false, access: { has: obj => "excludeCategories" in obj, get: obj => obj.excludeCategories, set: (obj, value) => { obj.excludeCategories = value; } }, metadata: _metadata }, _excludeCategories_initializers,
|
|
564
|
-
__esDecorate(_classThis, null, _defaultCategory_decorators, { kind: "accessor", name: "defaultCategory", static: false, private: false, access: { has: obj => "defaultCategory" in obj, get: obj => obj.defaultCategory, set: (obj, value) => { obj.defaultCategory = value; } }, metadata: _metadata }, _defaultCategory_initializers,
|
|
565
|
+
__esDecorate(_classThis, null, _excludeTags_decorators, { kind: "accessor", name: "excludeTags", static: false, private: false, access: { has: obj => "excludeTags" in obj, get: obj => obj.excludeTags, set: (obj, value) => { obj.excludeTags = value; } }, metadata: _metadata }, _excludeTags_initializers, _excludeTags_extraInitializers);
|
|
566
|
+
__esDecorate(_classThis, null, _excludeInternal_decorators, { kind: "accessor", name: "excludeInternal", static: false, private: false, access: { has: obj => "excludeInternal" in obj, get: obj => obj.excludeInternal, set: (obj, value) => { obj.excludeInternal = value; } }, metadata: _metadata }, _excludeInternal_initializers, _excludeInternal_extraInitializers);
|
|
567
|
+
__esDecorate(_classThis, null, _excludePrivate_decorators, { kind: "accessor", name: "excludePrivate", static: false, private: false, access: { has: obj => "excludePrivate" in obj, get: obj => obj.excludePrivate, set: (obj, value) => { obj.excludePrivate = value; } }, metadata: _metadata }, _excludePrivate_initializers, _excludePrivate_extraInitializers);
|
|
568
|
+
__esDecorate(_classThis, null, _excludeProtected_decorators, { kind: "accessor", name: "excludeProtected", static: false, private: false, access: { has: obj => "excludeProtected" in obj, get: obj => obj.excludeProtected, set: (obj, value) => { obj.excludeProtected = value; } }, metadata: _metadata }, _excludeProtected_initializers, _excludeProtected_extraInitializers);
|
|
569
|
+
__esDecorate(_classThis, null, _excludeNotDocumented_decorators, { kind: "accessor", name: "excludeNotDocumented", static: false, private: false, access: { has: obj => "excludeNotDocumented" in obj, get: obj => obj.excludeNotDocumented, set: (obj, value) => { obj.excludeNotDocumented = value; } }, metadata: _metadata }, _excludeNotDocumented_initializers, _excludeNotDocumented_extraInitializers);
|
|
570
|
+
__esDecorate(_classThis, null, _excludeCategories_decorators, { kind: "accessor", name: "excludeCategories", static: false, private: false, access: { has: obj => "excludeCategories" in obj, get: obj => obj.excludeCategories, set: (obj, value) => { obj.excludeCategories = value; } }, metadata: _metadata }, _excludeCategories_initializers, _excludeCategories_extraInitializers);
|
|
571
|
+
__esDecorate(_classThis, null, _defaultCategory_decorators, { kind: "accessor", name: "defaultCategory", static: false, private: false, access: { has: obj => "defaultCategory" in obj, get: obj => obj.defaultCategory, set: (obj, value) => { obj.defaultCategory = value; } }, metadata: _metadata }, _defaultCategory_initializers, _defaultCategory_extraInitializers);
|
|
565
572
|
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
566
573
|
CommentPlugin = _classThis = _classDescriptor.value;
|
|
567
574
|
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
@@ -1,11 +1,4 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __runInitializers = (this && this.__runInitializers) || function (thisArg, initializers, value) {
|
|
3
|
-
var useValue = arguments.length > 2;
|
|
4
|
-
for (var i = 0; i < initializers.length; i++) {
|
|
5
|
-
value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);
|
|
6
|
-
}
|
|
7
|
-
return useValue ? value : void 0;
|
|
8
|
-
};
|
|
9
2
|
var __esDecorate = (this && this.__esDecorate) || function (ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {
|
|
10
3
|
function accept(f) { if (f !== void 0 && typeof f !== "function") throw new TypeError("Function expected"); return f; }
|
|
11
4
|
var kind = contextIn.kind, key = kind === "getter" ? "get" : kind === "setter" ? "set" : "value";
|
|
@@ -33,6 +26,13 @@ var __esDecorate = (this && this.__esDecorate) || function (ctor, descriptorIn,
|
|
|
33
26
|
if (target) Object.defineProperty(target, contextIn.name, descriptor);
|
|
34
27
|
done = true;
|
|
35
28
|
};
|
|
29
|
+
var __runInitializers = (this && this.__runInitializers) || function (thisArg, initializers, value) {
|
|
30
|
+
var useValue = arguments.length > 2;
|
|
31
|
+
for (var i = 0; i < initializers.length; i++) {
|
|
32
|
+
value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);
|
|
33
|
+
}
|
|
34
|
+
return useValue ? value : void 0;
|
|
35
|
+
};
|
|
36
36
|
var __setFunctionName = (this && this.__setFunctionName) || function (f, name, prefix) {
|
|
37
37
|
if (typeof name === "symbol") name = name.description ? "[".concat(name.description, "]") : "";
|
|
38
38
|
return Object.defineProperty(f, "name", { configurable: true, value: prefix ? "".concat(prefix, " ", name) : name });
|
|
@@ -69,21 +69,22 @@ let GroupPlugin = (() => {
|
|
|
69
69
|
let _classExtraInitializers = [];
|
|
70
70
|
let _classThis;
|
|
71
71
|
let _classSuper = components_1.ConverterComponent;
|
|
72
|
-
let _instanceExtraInitializers = [];
|
|
73
72
|
let _boosts_decorators;
|
|
74
73
|
let _boosts_initializers = [];
|
|
74
|
+
let _boosts_extraInitializers = [];
|
|
75
75
|
let _groupOrder_decorators;
|
|
76
76
|
let _groupOrder_initializers = [];
|
|
77
|
+
let _groupOrder_extraInitializers = [];
|
|
77
78
|
let _sortEntryPoints_decorators;
|
|
78
79
|
let _sortEntryPoints_initializers = [];
|
|
80
|
+
let _sortEntryPoints_extraInitializers = [];
|
|
79
81
|
var GroupPlugin = _classThis = class extends _classSuper {
|
|
80
82
|
constructor() {
|
|
81
83
|
super(...arguments);
|
|
82
|
-
this.sortFunction = (__runInitializers(this, _instanceExtraInitializers), void 0);
|
|
83
84
|
_GroupPlugin_boosts_accessor_storage.set(this, __runInitializers(this, _boosts_initializers, void 0));
|
|
84
|
-
_GroupPlugin_groupOrder_accessor_storage.set(this, __runInitializers(this, _groupOrder_initializers, void 0));
|
|
85
|
-
_GroupPlugin_sortEntryPoints_accessor_storage.set(this, __runInitializers(this, _sortEntryPoints_initializers, void 0));
|
|
86
|
-
this.usedBoosts = new Set();
|
|
85
|
+
_GroupPlugin_groupOrder_accessor_storage.set(this, (__runInitializers(this, _boosts_extraInitializers), __runInitializers(this, _groupOrder_initializers, void 0)));
|
|
86
|
+
_GroupPlugin_sortEntryPoints_accessor_storage.set(this, (__runInitializers(this, _groupOrder_extraInitializers), __runInitializers(this, _sortEntryPoints_initializers, void 0)));
|
|
87
|
+
this.usedBoosts = (__runInitializers(this, _sortEntryPoints_extraInitializers), new Set());
|
|
87
88
|
}
|
|
88
89
|
get boosts() { return __classPrivateFieldGet(this, _GroupPlugin_boosts_accessor_storage, "f"); }
|
|
89
90
|
set boosts(value) { __classPrivateFieldSet(this, _GroupPlugin_boosts_accessor_storage, value, "f"); }
|
|
@@ -251,9 +252,9 @@ let GroupPlugin = (() => {
|
|
|
251
252
|
_boosts_decorators = [(0, utils_1.Option)("searchGroupBoosts")];
|
|
252
253
|
_groupOrder_decorators = [(0, utils_1.Option)("groupOrder")];
|
|
253
254
|
_sortEntryPoints_decorators = [(0, utils_1.Option)("sortEntryPoints")];
|
|
254
|
-
__esDecorate(_classThis, null, _boosts_decorators, { kind: "accessor", name: "boosts", static: false, private: false, access: { has: obj => "boosts" in obj, get: obj => obj.boosts, set: (obj, value) => { obj.boosts = value; } }, metadata: _metadata }, _boosts_initializers,
|
|
255
|
-
__esDecorate(_classThis, null, _groupOrder_decorators, { kind: "accessor", name: "groupOrder", static: false, private: false, access: { has: obj => "groupOrder" in obj, get: obj => obj.groupOrder, set: (obj, value) => { obj.groupOrder = value; } }, metadata: _metadata }, _groupOrder_initializers,
|
|
256
|
-
__esDecorate(_classThis, null, _sortEntryPoints_decorators, { kind: "accessor", name: "sortEntryPoints", static: false, private: false, access: { has: obj => "sortEntryPoints" in obj, get: obj => obj.sortEntryPoints, set: (obj, value) => { obj.sortEntryPoints = value; } }, metadata: _metadata }, _sortEntryPoints_initializers,
|
|
255
|
+
__esDecorate(_classThis, null, _boosts_decorators, { kind: "accessor", name: "boosts", static: false, private: false, access: { has: obj => "boosts" in obj, get: obj => obj.boosts, set: (obj, value) => { obj.boosts = value; } }, metadata: _metadata }, _boosts_initializers, _boosts_extraInitializers);
|
|
256
|
+
__esDecorate(_classThis, null, _groupOrder_decorators, { kind: "accessor", name: "groupOrder", static: false, private: false, access: { has: obj => "groupOrder" in obj, get: obj => obj.groupOrder, set: (obj, value) => { obj.groupOrder = value; } }, metadata: _metadata }, _groupOrder_initializers, _groupOrder_extraInitializers);
|
|
257
|
+
__esDecorate(_classThis, null, _sortEntryPoints_decorators, { kind: "accessor", name: "sortEntryPoints", static: false, private: false, access: { has: obj => "sortEntryPoints" in obj, get: obj => obj.sortEntryPoints, set: (obj, value) => { obj.sortEntryPoints = value; } }, metadata: _metadata }, _sortEntryPoints_initializers, _sortEntryPoints_extraInitializers);
|
|
257
258
|
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
258
259
|
GroupPlugin = _classThis = _classDescriptor.value;
|
|
259
260
|
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
@@ -78,15 +78,15 @@ let InheritDocPlugin = (() => {
|
|
|
78
78
|
let _classExtraInitializers = [];
|
|
79
79
|
let _classThis;
|
|
80
80
|
let _classSuper = components_1.ConverterComponent;
|
|
81
|
-
let _instanceExtraInitializers = [];
|
|
82
81
|
let _validation_decorators;
|
|
83
82
|
let _validation_initializers = [];
|
|
83
|
+
let _validation_extraInitializers = [];
|
|
84
84
|
var InheritDocPlugin = _classThis = class extends _classSuper {
|
|
85
85
|
constructor() {
|
|
86
86
|
super(...arguments);
|
|
87
|
-
_InheritDocPlugin_validation_accessor_storage.set(this,
|
|
87
|
+
_InheritDocPlugin_validation_accessor_storage.set(this, __runInitializers(this, _validation_initializers, void 0));
|
|
88
88
|
// Key is depended on by Values
|
|
89
|
-
this.dependencies = new utils_1.DefaultMap(() => []);
|
|
89
|
+
this.dependencies = (__runInitializers(this, _validation_extraInitializers), new utils_1.DefaultMap(() => []));
|
|
90
90
|
}
|
|
91
91
|
get validation() { return __classPrivateFieldGet(this, _InheritDocPlugin_validation_accessor_storage, "f"); }
|
|
92
92
|
set validation(value) { __classPrivateFieldSet(this, _InheritDocPlugin_validation_accessor_storage, value, "f"); }
|
|
@@ -223,7 +223,7 @@ let InheritDocPlugin = (() => {
|
|
|
223
223
|
(() => {
|
|
224
224
|
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
225
225
|
_validation_decorators = [(0, utils_1.Option)("validation")];
|
|
226
|
-
__esDecorate(_classThis, null, _validation_decorators, { kind: "accessor", name: "validation", static: false, private: false, access: { has: obj => "validation" in obj, get: obj => obj.validation, set: (obj, value) => { obj.validation = value; } }, metadata: _metadata }, _validation_initializers,
|
|
226
|
+
__esDecorate(_classThis, null, _validation_decorators, { kind: "accessor", name: "validation", static: false, private: false, access: { has: obj => "validation" in obj, get: obj => obj.validation, set: (obj, value) => { obj.validation = value; } }, metadata: _metadata }, _validation_initializers, _validation_extraInitializers);
|
|
227
227
|
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
228
228
|
InheritDocPlugin = _classThis = _classDescriptor.value;
|
|
229
229
|
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
@@ -66,14 +66,10 @@ let LinkResolverPlugin = (() => {
|
|
|
66
66
|
let _classExtraInitializers = [];
|
|
67
67
|
let _classThis;
|
|
68
68
|
let _classSuper = components_1.ConverterComponent;
|
|
69
|
-
let _instanceExtraInitializers = [];
|
|
70
69
|
let _validation_decorators;
|
|
71
70
|
let _validation_initializers = [];
|
|
71
|
+
let _validation_extraInitializers = [];
|
|
72
72
|
var LinkResolverPlugin = _classThis = class extends _classSuper {
|
|
73
|
-
constructor() {
|
|
74
|
-
super(...arguments);
|
|
75
|
-
_LinkResolverPlugin_validation_accessor_storage.set(this, (__runInitializers(this, _instanceExtraInitializers), __runInitializers(this, _validation_initializers, void 0)));
|
|
76
|
-
}
|
|
77
73
|
get validation() { return __classPrivateFieldGet(this, _LinkResolverPlugin_validation_accessor_storage, "f"); }
|
|
78
74
|
set validation(value) { __classPrivateFieldSet(this, _LinkResolverPlugin_validation_accessor_storage, value, "f"); }
|
|
79
75
|
initialize() {
|
|
@@ -136,13 +132,18 @@ let LinkResolverPlugin = (() => {
|
|
|
136
132
|
category.description = this.owner.resolveLinks(category.description, owner);
|
|
137
133
|
}
|
|
138
134
|
}
|
|
135
|
+
constructor() {
|
|
136
|
+
super(...arguments);
|
|
137
|
+
_LinkResolverPlugin_validation_accessor_storage.set(this, __runInitializers(this, _validation_initializers, void 0));
|
|
138
|
+
__runInitializers(this, _validation_extraInitializers);
|
|
139
|
+
}
|
|
139
140
|
};
|
|
140
141
|
_LinkResolverPlugin_validation_accessor_storage = new WeakMap();
|
|
141
142
|
__setFunctionName(_classThis, "LinkResolverPlugin");
|
|
142
143
|
(() => {
|
|
143
144
|
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
144
145
|
_validation_decorators = [(0, utils_1.Option)("validation")];
|
|
145
|
-
__esDecorate(_classThis, null, _validation_decorators, { kind: "accessor", name: "validation", static: false, private: false, access: { has: obj => "validation" in obj, get: obj => obj.validation, set: (obj, value) => { obj.validation = value; } }, metadata: _metadata }, _validation_initializers,
|
|
146
|
+
__esDecorate(_classThis, null, _validation_decorators, { kind: "accessor", name: "validation", static: false, private: false, access: { has: obj => "validation" in obj, get: obj => obj.validation, set: (obj, value) => { obj.validation = value; } }, metadata: _metadata }, _validation_initializers, _validation_extraInitializers);
|
|
146
147
|
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
147
148
|
LinkResolverPlugin = _classThis = _classDescriptor.value;
|
|
148
149
|
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
@@ -93,25 +93,33 @@ let PackagePlugin = (() => {
|
|
|
93
93
|
let _classExtraInitializers = [];
|
|
94
94
|
let _classThis;
|
|
95
95
|
let _classSuper = components_1.ConverterComponent;
|
|
96
|
-
let _instanceExtraInitializers = [];
|
|
97
96
|
let _readme_decorators;
|
|
98
97
|
let _readme_initializers = [];
|
|
98
|
+
let _readme_extraInitializers = [];
|
|
99
99
|
let _stripYamlFrontmatter_decorators;
|
|
100
100
|
let _stripYamlFrontmatter_initializers = [];
|
|
101
|
+
let _stripYamlFrontmatter_extraInitializers = [];
|
|
101
102
|
let _entryPointStrategy_decorators;
|
|
102
103
|
let _entryPointStrategy_initializers = [];
|
|
104
|
+
let _entryPointStrategy_extraInitializers = [];
|
|
103
105
|
let _entryPoints_decorators;
|
|
104
106
|
let _entryPoints_initializers = [];
|
|
107
|
+
let _entryPoints_extraInitializers = [];
|
|
105
108
|
let _includeVersion_decorators;
|
|
106
109
|
let _includeVersion_initializers = [];
|
|
110
|
+
let _includeVersion_extraInitializers = [];
|
|
107
111
|
var PackagePlugin = _classThis = class extends _classSuper {
|
|
108
112
|
constructor() {
|
|
109
113
|
super(...arguments);
|
|
110
|
-
_PackagePlugin_readme_accessor_storage.set(this,
|
|
111
|
-
_PackagePlugin_stripYamlFrontmatter_accessor_storage.set(this, __runInitializers(this, _stripYamlFrontmatter_initializers, void 0));
|
|
112
|
-
_PackagePlugin_entryPointStrategy_accessor_storage.set(this, __runInitializers(this, _entryPointStrategy_initializers, void 0));
|
|
113
|
-
_PackagePlugin_entryPoints_accessor_storage.set(this, __runInitializers(this, _entryPoints_initializers, void 0));
|
|
114
|
-
_PackagePlugin_includeVersion_accessor_storage.set(this, __runInitializers(this, _includeVersion_initializers, void 0));
|
|
114
|
+
_PackagePlugin_readme_accessor_storage.set(this, __runInitializers(this, _readme_initializers, void 0));
|
|
115
|
+
_PackagePlugin_stripYamlFrontmatter_accessor_storage.set(this, (__runInitializers(this, _readme_extraInitializers), __runInitializers(this, _stripYamlFrontmatter_initializers, void 0)));
|
|
116
|
+
_PackagePlugin_entryPointStrategy_accessor_storage.set(this, (__runInitializers(this, _stripYamlFrontmatter_extraInitializers), __runInitializers(this, _entryPointStrategy_initializers, void 0)));
|
|
117
|
+
_PackagePlugin_entryPoints_accessor_storage.set(this, (__runInitializers(this, _entryPointStrategy_extraInitializers), __runInitializers(this, _entryPoints_initializers, void 0)));
|
|
118
|
+
_PackagePlugin_includeVersion_accessor_storage.set(this, (__runInitializers(this, _entryPoints_extraInitializers), __runInitializers(this, _includeVersion_initializers, void 0)));
|
|
119
|
+
/**
|
|
120
|
+
* The file name of the found readme.md file.
|
|
121
|
+
*/
|
|
122
|
+
this.readmeFile = __runInitializers(this, _includeVersion_extraInitializers);
|
|
115
123
|
}
|
|
116
124
|
get readme() { return __classPrivateFieldGet(this, _PackagePlugin_readme_accessor_storage, "f"); }
|
|
117
125
|
set readme(value) { __classPrivateFieldSet(this, _PackagePlugin_readme_accessor_storage, value, "f"); }
|
|
@@ -227,11 +235,11 @@ let PackagePlugin = (() => {
|
|
|
227
235
|
_entryPointStrategy_decorators = [(0, utils_1.Option)("entryPointStrategy")];
|
|
228
236
|
_entryPoints_decorators = [(0, utils_1.Option)("entryPoints")];
|
|
229
237
|
_includeVersion_decorators = [(0, utils_1.Option)("includeVersion")];
|
|
230
|
-
__esDecorate(_classThis, null, _readme_decorators, { kind: "accessor", name: "readme", static: false, private: false, access: { has: obj => "readme" in obj, get: obj => obj.readme, set: (obj, value) => { obj.readme = value; } }, metadata: _metadata }, _readme_initializers,
|
|
231
|
-
__esDecorate(_classThis, null, _stripYamlFrontmatter_decorators, { kind: "accessor", name: "stripYamlFrontmatter", static: false, private: false, access: { has: obj => "stripYamlFrontmatter" in obj, get: obj => obj.stripYamlFrontmatter, set: (obj, value) => { obj.stripYamlFrontmatter = value; } }, metadata: _metadata }, _stripYamlFrontmatter_initializers,
|
|
232
|
-
__esDecorate(_classThis, null, _entryPointStrategy_decorators, { kind: "accessor", name: "entryPointStrategy", static: false, private: false, access: { has: obj => "entryPointStrategy" in obj, get: obj => obj.entryPointStrategy, set: (obj, value) => { obj.entryPointStrategy = value; } }, metadata: _metadata }, _entryPointStrategy_initializers,
|
|
233
|
-
__esDecorate(_classThis, null, _entryPoints_decorators, { kind: "accessor", name: "entryPoints", static: false, private: false, access: { has: obj => "entryPoints" in obj, get: obj => obj.entryPoints, set: (obj, value) => { obj.entryPoints = value; } }, metadata: _metadata }, _entryPoints_initializers,
|
|
234
|
-
__esDecorate(_classThis, null, _includeVersion_decorators, { kind: "accessor", name: "includeVersion", static: false, private: false, access: { has: obj => "includeVersion" in obj, get: obj => obj.includeVersion, set: (obj, value) => { obj.includeVersion = value; } }, metadata: _metadata }, _includeVersion_initializers,
|
|
238
|
+
__esDecorate(_classThis, null, _readme_decorators, { kind: "accessor", name: "readme", static: false, private: false, access: { has: obj => "readme" in obj, get: obj => obj.readme, set: (obj, value) => { obj.readme = value; } }, metadata: _metadata }, _readme_initializers, _readme_extraInitializers);
|
|
239
|
+
__esDecorate(_classThis, null, _stripYamlFrontmatter_decorators, { kind: "accessor", name: "stripYamlFrontmatter", static: false, private: false, access: { has: obj => "stripYamlFrontmatter" in obj, get: obj => obj.stripYamlFrontmatter, set: (obj, value) => { obj.stripYamlFrontmatter = value; } }, metadata: _metadata }, _stripYamlFrontmatter_initializers, _stripYamlFrontmatter_extraInitializers);
|
|
240
|
+
__esDecorate(_classThis, null, _entryPointStrategy_decorators, { kind: "accessor", name: "entryPointStrategy", static: false, private: false, access: { has: obj => "entryPointStrategy" in obj, get: obj => obj.entryPointStrategy, set: (obj, value) => { obj.entryPointStrategy = value; } }, metadata: _metadata }, _entryPointStrategy_initializers, _entryPointStrategy_extraInitializers);
|
|
241
|
+
__esDecorate(_classThis, null, _entryPoints_decorators, { kind: "accessor", name: "entryPoints", static: false, private: false, access: { has: obj => "entryPoints" in obj, get: obj => obj.entryPoints, set: (obj, value) => { obj.entryPoints = value; } }, metadata: _metadata }, _entryPoints_initializers, _entryPoints_extraInitializers);
|
|
242
|
+
__esDecorate(_classThis, null, _includeVersion_decorators, { kind: "accessor", name: "includeVersion", static: false, private: false, access: { has: obj => "includeVersion" in obj, get: obj => obj.includeVersion, set: (obj, value) => { obj.includeVersion = value; } }, metadata: _metadata }, _includeVersion_initializers, _includeVersion_extraInitializers);
|
|
235
243
|
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
236
244
|
PackagePlugin = _classThis = _classDescriptor.value;
|
|
237
245
|
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|