klun-ui 0.1.0

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.
Files changed (39) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +106 -0
  3. package/dist/charts/index.cjs +160 -0
  4. package/dist/charts/index.cjs.map +1 -0
  5. package/dist/charts/index.d.cts +89 -0
  6. package/dist/charts/index.d.ts +89 -0
  7. package/dist/charts/index.js +154 -0
  8. package/dist/charts/index.js.map +1 -0
  9. package/dist/chunk-FTYQRXS5.cjs +10152 -0
  10. package/dist/chunk-FTYQRXS5.cjs.map +1 -0
  11. package/dist/chunk-T225J6LV.js +13 -0
  12. package/dist/chunk-T225J6LV.js.map +1 -0
  13. package/dist/chunk-TPGAXYFU.cjs +15 -0
  14. package/dist/chunk-TPGAXYFU.cjs.map +1 -0
  15. package/dist/chunk-XDAR7UMF.js +10009 -0
  16. package/dist/chunk-XDAR7UMF.js.map +1 -0
  17. package/dist/fonts/DMMono-Light.ttf +0 -0
  18. package/dist/fonts/DMMono-Medium.ttf +0 -0
  19. package/dist/fonts/DMMono-Regular.ttf +0 -0
  20. package/dist/fonts/InterDisplay-Bold.woff2 +0 -0
  21. package/dist/fonts/InterDisplay-Medium.woff2 +0 -0
  22. package/dist/fonts/InterDisplay-Regular.woff2 +0 -0
  23. package/dist/fonts/InterDisplay-SemiBold.woff2 +0 -0
  24. package/dist/fonts/InterVariable-Italic.woff2 +0 -0
  25. package/dist/fonts/InterVariable.woff2 +0 -0
  26. package/dist/index.cjs +581 -0
  27. package/dist/index.cjs.map +1 -0
  28. package/dist/index.d.cts +2701 -0
  29. package/dist/index.d.ts +2701 -0
  30. package/dist/index.js +4 -0
  31. package/dist/index.js.map +1 -0
  32. package/dist/styles.css +9137 -0
  33. package/dist/templates/index.cjs +1132 -0
  34. package/dist/templates/index.cjs.map +1 -0
  35. package/dist/templates/index.d.cts +43 -0
  36. package/dist/templates/index.d.ts +43 -0
  37. package/dist/templates/index.js +1120 -0
  38. package/dist/templates/index.js.map +1 -0
  39. package/package.json +95 -0
@@ -0,0 +1,13 @@
1
+ // src/utils/cx.ts
2
+ function cx(...args) {
3
+ let out = "";
4
+ for (const a of args) {
5
+ if (!a) continue;
6
+ out += (out ? " " : "") + a;
7
+ }
8
+ return out;
9
+ }
10
+
11
+ export { cx };
12
+ //# sourceMappingURL=chunk-T225J6LV.js.map
13
+ //# sourceMappingURL=chunk-T225J6LV.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/utils/cx.ts"],"names":[],"mappings":";AAGO,SAAS,MAAM,IAAA,EAA4B;AAChD,EAAA,IAAI,GAAA,GAAM,EAAA;AACV,EAAA,KAAA,MAAW,KAAK,IAAA,EAAM;AACpB,IAAA,IAAI,CAAC,CAAA,EAAG;AACR,IAAA,GAAA,IAAA,CAAQ,GAAA,GAAM,MAAM,EAAA,IAAM,CAAA;AAAA,EAC5B;AACA,EAAA,OAAO,GAAA;AACT","file":"chunk-T225J6LV.js","sourcesContent":["export type ClassValue = string | number | false | null | undefined;\n\n/** Tiny classnames joiner — filters falsy values and joins with a space. */\nexport function cx(...args: ClassValue[]): string {\n let out = \"\";\n for (const a of args) {\n if (!a) continue;\n out += (out ? \" \" : \"\") + a;\n }\n return out;\n}\n"]}
@@ -0,0 +1,15 @@
1
+ 'use strict';
2
+
3
+ // src/utils/cx.ts
4
+ function cx(...args) {
5
+ let out = "";
6
+ for (const a of args) {
7
+ if (!a) continue;
8
+ out += (out ? " " : "") + a;
9
+ }
10
+ return out;
11
+ }
12
+
13
+ exports.cx = cx;
14
+ //# sourceMappingURL=chunk-TPGAXYFU.cjs.map
15
+ //# sourceMappingURL=chunk-TPGAXYFU.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/utils/cx.ts"],"names":[],"mappings":";;;AAGO,SAAS,MAAM,IAAA,EAA4B;AAChD,EAAA,IAAI,GAAA,GAAM,EAAA;AACV,EAAA,KAAA,MAAW,KAAK,IAAA,EAAM;AACpB,IAAA,IAAI,CAAC,CAAA,EAAG;AACR,IAAA,GAAA,IAAA,CAAQ,GAAA,GAAM,MAAM,EAAA,IAAM,CAAA;AAAA,EAC5B;AACA,EAAA,OAAO,GAAA;AACT","file":"chunk-TPGAXYFU.cjs","sourcesContent":["export type ClassValue = string | number | false | null | undefined;\n\n/** Tiny classnames joiner — filters falsy values and joins with a space. */\nexport function cx(...args: ClassValue[]): string {\n let out = \"\";\n for (const a of args) {\n if (!a) continue;\n out += (out ? \" \" : \"\") + a;\n }\n return out;\n}\n"]}