@raystack/apsara 0.11.9 → 0.11.10
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.cjs +19 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +61 -9
- package/dist/index.js +19 -3
- package/dist/index.js.map +1 -1
- package/dist/text/text.d.ts +2 -1
- package/dist/text/text.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -19374,7 +19374,7 @@ const Sheet = Object.assign(RootSheet, {
|
|
|
19374
19374
|
Description: $5d3850c4d0b4e6c7$export$393edc798c47379d,
|
|
19375
19375
|
});
|
|
19376
19376
|
|
|
19377
|
-
var styles$a = {"text":"text-module_text__1E39C","text-1":"text-module_text-1__ZIYnD","text-2":"text-module_text-2__vhka2","text-3":"text-module_text-3__WhApV","text-4":"text-module_text-4__I4KCY","text-5":"text-module_text-5__5i6jy","text-6":"text-module_text-6__vn534","text-7":"text-module_text-7__5stey","text-8":"text-module_text-8__J--5n","text-9":"text-module_text-9__guv-W","text-10":"text-module_text-10__OdU-l"};
|
|
19377
|
+
var styles$a = {"text":"text-module_text__1E39C","text-1":"text-module_text-1__ZIYnD","text-2":"text-module_text-2__vhka2","text-3":"text-module_text-3__WhApV","text-4":"text-module_text-4__I4KCY","text-5":"text-module_text-5__5i6jy","text-6":"text-module_text-6__vn534","text-7":"text-module_text-7__5stey","text-8":"text-module_text-8__J--5n","text-9":"text-module_text-9__guv-W","text-10":"text-module_text-10__OdU-l","text-weight-bold":"text-module_text-weight-bold__248bx","text-weight-bolder":"text-module_text-weight-bolder__x-gH2","text-weight-normal":"text-module_text-weight-normal__N6rMZ","text-weight-lighter":"text-module_text-weight-lighter__PtdzT","text-weight-100":"text-module_text-weight-100__170iy","text-weight-200":"text-module_text-weight-200__iG1l4","text-weight-300":"text-module_text-weight-300__Z8-xh","text-weight-400":"text-module_text-weight-400__y4aiw","text-weight-500":"text-module_text-weight-500__El9dq","text-weight-600":"text-module_text-weight-600__yMGME","text-weight-700":"text-module_text-weight-700__EYo9-","text-weight-800":"text-module_text-weight-800__N7b82","text-weight-900":"text-module_text-weight-900__vs7L8"};
|
|
19378
19378
|
|
|
19379
19379
|
const text$1 = cva(styles$a.text, {
|
|
19380
19380
|
variants: {
|
|
@@ -19390,13 +19390,29 @@ const text$1 = cva(styles$a.text, {
|
|
|
19390
19390
|
9: styles$a["text-9"],
|
|
19391
19391
|
10: styles$a["text-10"],
|
|
19392
19392
|
},
|
|
19393
|
+
weight: {
|
|
19394
|
+
bold: styles$a["text-weight-bold"],
|
|
19395
|
+
bolder: styles$a["text-weight-bolder"],
|
|
19396
|
+
normal: styles$a["text-weight-normal"],
|
|
19397
|
+
lighter: styles$a["text-weight-lighter"],
|
|
19398
|
+
100: styles$a["text-weight-100"],
|
|
19399
|
+
200: styles$a["text-weight-200"],
|
|
19400
|
+
300: styles$a["text-weight-300"],
|
|
19401
|
+
400: styles$a["text-weight-400"],
|
|
19402
|
+
500: styles$a["text-weight-500"],
|
|
19403
|
+
600: styles$a["text-weight-600"],
|
|
19404
|
+
700: styles$a["text-weight-700"],
|
|
19405
|
+
800: styles$a["text-weight-800"],
|
|
19406
|
+
900: styles$a["text-weight-900"],
|
|
19407
|
+
},
|
|
19393
19408
|
},
|
|
19394
19409
|
defaultVariants: {
|
|
19395
19410
|
size: 2,
|
|
19411
|
+
weight: 400,
|
|
19396
19412
|
},
|
|
19397
19413
|
});
|
|
19398
|
-
function Text({ children, className, size, ...props }) {
|
|
19399
|
-
return (jsxRuntimeExports.jsx("span", { className: text$1({ size, className }), ...props, children: children }));
|
|
19414
|
+
function Text({ children, className, size, weight, ...props }) {
|
|
19415
|
+
return (jsxRuntimeExports.jsx("span", { className: text$1({ size, className, weight }), ...props, children: children }));
|
|
19400
19416
|
}
|
|
19401
19417
|
|
|
19402
19418
|
var styles$9 = {"sidebar":"sidebar-module_sidebar__NXH3O","logo":"sidebar-module_logo__RaK-j","navigations":"sidebar-module_navigations__z5B4k","navigationgroup":"sidebar-module_navigationgroup__bBDHs","navigationgroupheading":"sidebar-module_navigationgroupheading__MkRud","navigationgroupcontent":"sidebar-module_navigationgroupcontent__q70dL","cell":"sidebar-module_cell__NHLSi","active":"sidebar-module_active__lfMUF","disabled":"sidebar-module_disabled__nYLU3","cellText":"sidebar-module_cellText__JV292","footer":"sidebar-module_footer__wLl-f"};
|