|
|
@ -327,9 +327,9 @@ class Component extends StyleAndScriptStoringComponent { |
|
|
|
|
|
|
|
_processStyles(extStore = null) { |
|
|
|
if (!extStore) { |
|
|
|
extStore = this._stylesExtStore.updateForGeneralStyling(); |
|
|
|
extStore = this._stylesExtStore.setupForGeneralStyling(); |
|
|
|
} else { |
|
|
|
extStore.updateForGeneralStyling(); |
|
|
|
extStore.setupForGeneralStyling(); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
@ -387,7 +387,7 @@ class Component extends StyleAndScriptStoringComponent { |
|
|
|
/* Check/Ensure proper ExtStorageType for following comparison */ |
|
|
|
let refESType = ( |
|
|
|
ssd._extStore && ssd._extStore._type |
|
|
|
? ssd._extStore.updateForGeneralStyling()._type |
|
|
|
? ssd._extStore.setupForGeneralStyling()._type |
|
|
|
: extStore._type |
|
|
|
); |
|
|
|
|
|
|
@ -423,9 +423,9 @@ class Component extends StyleAndScriptStoringComponent { |
|
|
|
|
|
|
|
_processFunctions(extStore = null) { |
|
|
|
if (!extStore) { |
|
|
|
extStore = this._functionsExtStore.updateForFunctions(); |
|
|
|
extStore = this._functionsExtStore.setupForFunctions(); |
|
|
|
} else { |
|
|
|
extStore.updateForFunctions(); |
|
|
|
extStore.setupForFunctions(); |
|
|
|
} |
|
|
|
|
|
|
|
const forCollection = new Map(); |
|
|
@ -438,7 +438,7 @@ class Component extends StyleAndScriptStoringComponent { |
|
|
|
|
|
|
|
let refESType = ( |
|
|
|
ssd._extStore && ssd._extStore._type |
|
|
|
? ssd._extStore.updateForFunctions()._type |
|
|
|
? ssd._extStore.setupForFunctions()._type |
|
|
|
: extStore._type |
|
|
|
); |
|
|
|
|
|
|
|