@vettvangur/design-system 2.0.17 → 2.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/dist/index.js +12 -13
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2314,20 +2314,19 @@ ${renderPreview(id, title)}
|
|
|
2314
2314
|
<div class="ds-type-meta__info">
|
|
2315
2315
|
${renderMeta(defaultFamily, defaultSize, defaultLine)}
|
|
2316
2316
|
</div>
|
|
2317
|
+
${hasDesktopVariant ? `
|
|
2318
|
+
<div class="ds-type-mobile">
|
|
2319
|
+
<div class="ds-type-preview">
|
|
2320
|
+
${renderPreview(id, title)}
|
|
2321
|
+
</div>
|
|
2322
|
+
|
|
2323
|
+
<div class="ds-type-meta">
|
|
2324
|
+
<div class="ds-type-meta__info">
|
|
2325
|
+
${renderMeta(mFamily, mSize, mLine)}
|
|
2326
|
+
</div>
|
|
2327
|
+
</div>
|
|
2328
|
+
</div>` : ''}
|
|
2317
2329
|
</div>
|
|
2318
|
-
|
|
2319
|
-
${hasDesktopVariant ? `
|
|
2320
|
-
<div class="ds-type-mobile">
|
|
2321
|
-
<div class="ds-type-preview">
|
|
2322
|
-
${renderPreview(id, title)}
|
|
2323
|
-
</div>
|
|
2324
|
-
|
|
2325
|
-
<div class="ds-type-meta">
|
|
2326
|
-
<div class="ds-type-meta__info">
|
|
2327
|
-
${renderMeta(mFamily, mSize, mLine)}
|
|
2328
|
-
</div>
|
|
2329
|
-
</div>
|
|
2330
|
-
</div>` : ''}
|
|
2331
2330
|
</div>`;
|
|
2332
2331
|
}
|
|
2333
2332
|
|