ui-beyable 1.0.17 → 1.0.18
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/lib/cjs/index.js +1 -1
- package/lib/esm/index.js +1 -1
- package/package.json +1 -1
package/lib/cjs/index.js
CHANGED
|
@@ -104,7 +104,7 @@ function Article(_a) {
|
|
|
104
104
|
if (size && size in outerSizeClass) {
|
|
105
105
|
outerStyles.push(outerSizeClass[size]);
|
|
106
106
|
}
|
|
107
|
-
if (finalInnerSize && finalInnerSize in
|
|
107
|
+
if (finalInnerSize && finalInnerSize in innerSizeClass) {
|
|
108
108
|
innerStyles.push(innerSizeClass[finalInnerSize]);
|
|
109
109
|
}
|
|
110
110
|
if (titleSize && titleSize in titleSizeClass) {
|
package/lib/esm/index.js
CHANGED
|
@@ -102,7 +102,7 @@ function Article(_a) {
|
|
|
102
102
|
if (size && size in outerSizeClass) {
|
|
103
103
|
outerStyles.push(outerSizeClass[size]);
|
|
104
104
|
}
|
|
105
|
-
if (finalInnerSize && finalInnerSize in
|
|
105
|
+
if (finalInnerSize && finalInnerSize in innerSizeClass) {
|
|
106
106
|
innerStyles.push(innerSizeClass[finalInnerSize]);
|
|
107
107
|
}
|
|
108
108
|
if (titleSize && titleSize in titleSizeClass) {
|