@liner-fe/prism 1.6.7 → 1.6.8

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.
@@ -1 +1,4 @@
1
- export {};
1
+ export * from './Heading';
2
+ export * from './Display';
3
+ export * from './Paragraph';
4
+ export * from './Title';
package/lib/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from './utils/object';
2
2
  export * from './components/Button';
3
3
  export * from './components/Toast/export';
4
+ export * from './components/Typography';
package/lib/index.mjs CHANGED
@@ -3284,10 +3284,35 @@ var SingleToast = /* @__PURE__ */ __name((props) => {
3284
3284
  ] })
3285
3285
  ] });
3286
3286
  }, "SingleToast");
3287
+
3288
+ // src/components/Typography/Heading.tsx
3289
+ import clsx4 from "clsx";
3290
+ import { jsx as jsx66 } from "react/jsx-runtime";
3291
+ var Heading = /* @__PURE__ */ __name((props) => {
3292
+ return /* @__PURE__ */ jsx66("div", { ...props, className: clsx4(`lp-sys-typo-heading${props.size}-${props.type}`, props.className), children: props.children });
3293
+ }, "Heading");
3294
+
3295
+ // src/components/Typography/Display.tsx
3296
+ import clsx5 from "clsx";
3297
+ import { jsx as jsx67 } from "react/jsx-runtime";
3298
+ var Display = /* @__PURE__ */ __name((props) => {
3299
+ return /* @__PURE__ */ jsx67("div", { ...props, className: clsx5(`lp-sys-typo-display${props.size}-${props.type}-${props.weight}`, props.className), children: props.children });
3300
+ }, "Display");
3301
+
3302
+ // src/components/Typography/Title.tsx
3303
+ import clsx6 from "clsx";
3304
+ import { jsx as jsx68 } from "react/jsx-runtime";
3305
+ var Title2 = /* @__PURE__ */ __name((props) => {
3306
+ return /* @__PURE__ */ jsx68("div", { ...props, className: clsx6(`lp-sys-typo-title${props.size}-${props.type}-${props.weight}`, props.className), children: props.children });
3307
+ }, "Title");
3287
3308
  export {
3288
3309
  Button,
3289
3310
  DefaultButton,
3311
+ Display,
3312
+ Heading,
3313
+ Paragraph,
3290
3314
  TextButton,
3315
+ Title2 as Title,
3291
3316
  Toaster,
3292
3317
  objectToArray,
3293
3318
  useToast