* Return the CSS sizing classes required to switch from enclosing options * `oldOptions` to `this`. Returns an array of classes.
(oldOptions)
| 5029 | |
| 5030 | |
| 5031 | sizingClasses(oldOptions) { |
| 5032 | if (oldOptions.size !== this.size) { |
| 5033 | return ["sizing", "reset-size" + oldOptions.size, "size" + this.size]; |
| 5034 | } else { |
| 5035 | return []; |
| 5036 | } |
| 5037 | } |
| 5038 | /** |
| 5039 | * Return the CSS sizing classes required to switch to the base size. Like |
| 5040 | * `this.havingSize(BASESIZE).sizingClasses(this)`. |
no outgoing calls
no test coverage detected