|
|
@ -33,7 +33,7 @@ class DirectionUnitDependentAttribute { |
|
|
|
* |
|
|
|
* @returns {array<*>} list of attributes |
|
|
|
*/ |
|
|
|
getOrderedAttributes(){ |
|
|
|
getOrderedAttributes() { |
|
|
|
return [this._fFirst, this._fSecond, this._fThird, this._fForth]; |
|
|
|
} |
|
|
|
|
|
|
@ -41,7 +41,7 @@ class DirectionUnitDependentAttribute { |
|
|
|
* @returns {Array<string>} |
|
|
|
*/ |
|
|
|
getOrderedValues() { |
|
|
|
return this.getOrderedAttributes().map(a=>a+this._unit); |
|
|
|
return this.getOrderedAttributes().map(a => a + this._unit); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
@ -222,6 +222,10 @@ class PaddingChain extends Sides { |
|
|
|
return this.toModifier() |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* Returns the style-modifications of the class. |
|
|
|
* @returns {Map<string,string>} |
|
|
|
*/ |
|
|
|
toModifications() { |
|
|
|
return [ |
|
|
|
{ key: "padding-left", value: this._fFirst + this._unit }, |
|
|
@ -230,16 +234,22 @@ class PaddingChain extends Sides { |
|
|
|
{ key: "padding-bottom", value: this._fForth + this._unit } |
|
|
|
] |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
class ChainablePadding extends PaddingChain { |
|
|
|
/** |
|
|
|
* |
|
|
|
* @returns {Component} the Component that was (supposed to be) modified by this obj. |
|
|
|
*/ |
|
|
|
toComponent() { |
|
|
|
return this._modifier |
|
|
|
.padding(this) |
|
|
|
.toComponent(); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* |
|
|
|
* @param {Component|Array<Component>} innerComponent children of the Component under modification. |
|
|
|
* @returns {Component} |
|
|
|
*/ |
|
|
|
childContext(innerComponent) { |
|
|
|
return this._modifier |
|
|
|
.padding(this) |
|
|
|