This commit is contained in:
TheGiddyLimit
2024-03-26 22:43:48 +00:00
parent 12f34a38f8
commit d075252329
122 changed files with 4907 additions and 1489 deletions

View File

@@ -1966,7 +1966,7 @@ class ClassesPage extends MixinComponentGlobalState(MixinBaseComponent(MixinProx
"entries_styleClass_fromSource",
"section_styleClass_fromSource",
],
fnPlugin: (entryType, entry) => {
fnPlugin: (commonArgs, {input: {entryType, entry}}) => {
const source = entry.source || toRenderSource;
if (source === cls.source) return {isSkip: true};
},
@@ -2010,7 +2010,7 @@ class ClassesPage extends MixinComponentGlobalState(MixinBaseComponent(MixinProx
// subclasses are shown.
let hasNamePluginRun = false;
Renderer.get()
.addPlugin("entries_namePrefix", function (entry) {
.addPlugin("entries_namePrefix", (commonArgs, {input: entry}) => {
if (ptrIsFirstSubclassLevel._ === true || !entry.name) return;
if (hasNamePluginRun) return;
@@ -2027,7 +2027,7 @@ class ClassesPage extends MixinComponentGlobalState(MixinBaseComponent(MixinProx
"entries_styleClass_fromSource",
"section_styleClass_fromSource",
],
fnPlugin: (entryType, entry) => {
fnPlugin: (commonArgs, {input: {entryType, entry}}) => {
const source = entry.source || toRenderSource;
if (source === sc.source) return {isSkip: true};
},