@rovula/ui 0.0.22 → 0.0.23
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/cjs/bundle.css +30 -0
- package/dist/cjs/bundle.js +1 -1
- package/dist/cjs/bundle.js.map +1 -1
- package/dist/cjs/types/components/Text/Text.d.ts +6 -5
- package/dist/cjs/types/components/Text/Text.stories.d.ts +2 -10
- package/dist/components/Tabs/Tabs.js +1 -1
- package/dist/components/Text/Text.js +18 -4
- package/dist/esm/bundle.css +30 -0
- package/dist/esm/bundle.js +1 -1
- package/dist/esm/bundle.js.map +1 -1
- package/dist/esm/types/components/Text/Text.d.ts +6 -5
- package/dist/esm/types/components/Text/Text.stories.d.ts +2 -10
- package/dist/index.d.ts +6 -5
- package/dist/src/theme/global.css +58 -0
- package/dist/theme/main-preset.js +24 -0
- package/dist/theme/plugins/utilities/typography.js +9 -0
- package/dist/theme/presets/colors.js +6 -0
- package/dist/theme/tokens/color.css +1 -0
- package/dist/theme/tokens/typography.css +21 -0
- package/package.json +1 -1
- package/src/components/Button/Button.tsx +1 -4
- package/src/components/Collapsible/Collapsible.tsx +1 -1
- package/src/components/Slider/Slider.tsx +0 -1
- package/src/components/Tabs/Tabs.tsx +1 -1
- package/src/components/Text/Text.tsx +35 -22
- package/src/theme/main-preset.js +24 -0
- package/src/theme/plugins/utilities/typography.js +9 -0
- package/src/theme/presets/colors.js +6 -0
- package/src/theme/tokens/color.css +1 -0
- package/src/theme/tokens/typography.css +21 -0
package/dist/cjs/bundle.css
CHANGED
|
@@ -1855,6 +1855,21 @@ body {
|
|
|
1855
1855
|
line-height: var(--small5-line-height, 12px);
|
|
1856
1856
|
font-weight: var(--small5-weight, 500);
|
|
1857
1857
|
}
|
|
1858
|
+
.text-small6{
|
|
1859
|
+
font-size: var(--small5-size, 10px);
|
|
1860
|
+
line-height: var(--small6-line-height, 12px);
|
|
1861
|
+
font-weight: var(--small6-weight, 600);
|
|
1862
|
+
}
|
|
1863
|
+
.text-small7{
|
|
1864
|
+
font-size: var(--small7-size, 8px);
|
|
1865
|
+
line-height: var(--small7-line-height, 10px);
|
|
1866
|
+
font-weight: var(--small7-weight, 600);
|
|
1867
|
+
}
|
|
1868
|
+
.text-small8{
|
|
1869
|
+
font-size: var(--small8-size, 8px);
|
|
1870
|
+
line-height: var(--small8-line-height, 10px);
|
|
1871
|
+
font-weight: var(--small8-weight, 700);
|
|
1872
|
+
}
|
|
1858
1873
|
.text-subtitile1{
|
|
1859
1874
|
font-size: var(--subtitle1-size, 16px);
|
|
1860
1875
|
line-height: var(--subtitle1-line-height, 24px);
|
|
@@ -2369,6 +2384,21 @@ body {
|
|
|
2369
2384
|
line-height: var(--small5-line-height, 12px);
|
|
2370
2385
|
font-weight: var(--small5-weight, 500);
|
|
2371
2386
|
}
|
|
2387
|
+
.typography-small6{
|
|
2388
|
+
font-size: var(--small5-size, 10px);
|
|
2389
|
+
line-height: var(--small6-line-height, 12px);
|
|
2390
|
+
font-weight: var(--small6-weight, 600);
|
|
2391
|
+
}
|
|
2392
|
+
.typography-small7{
|
|
2393
|
+
font-size: var(--small7-size, 8px);
|
|
2394
|
+
line-height: var(--small7-line-height, 10px);
|
|
2395
|
+
font-weight: var(--small7-weight, 600);
|
|
2396
|
+
}
|
|
2397
|
+
.typography-small8{
|
|
2398
|
+
font-size: var(--small8-size, 8px);
|
|
2399
|
+
line-height: var(--small8-line-height, 10px);
|
|
2400
|
+
font-weight: var(--small8-weight, 700);
|
|
2401
|
+
}
|
|
2372
2402
|
.typography-label1{
|
|
2373
2403
|
font-size: var(--label-label1-size, 12px);
|
|
2374
2404
|
line-height: var(--label-label1-line-height, 12px);
|