@lightsparkdev/ui 0.0.11 → 0.0.13

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 (74) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/dist/chunk-34CIJVQQ.js +24 -0
  3. package/dist/{chunk-IPAXAP6K.js → chunk-5DK6QL77.js} +7 -1
  4. package/dist/{chunk-VE7J2N47.js → chunk-5GBDVTL6.js} +1 -1
  5. package/dist/{chunk-ZANLDY2W.js → chunk-75VDSSXM.js} +3 -1
  6. package/dist/{chunk-NFSAJ5GJ.js → chunk-DFYHIUYN.js} +1 -1
  7. package/dist/{chunk-DQRN4E5G.js → chunk-EXGJIYUI.js} +1 -1
  8. package/dist/{chunk-NM7UW54G.js → chunk-KMTXQD46.js} +2 -2
  9. package/dist/{chunk-OGSDZTHM.js → chunk-QCXXJZDC.js} +2 -0
  10. package/dist/{chunk-XZR237JJ.js → chunk-QNM3M4MU.js} +2 -1
  11. package/dist/{chunk-PBRN7MJY.js → chunk-QWAHK2QG.js} +1 -1
  12. package/dist/chunk-UV6JCAHE.js +198 -0
  13. package/dist/components/Badge.cjs +1 -1
  14. package/dist/components/Badge.d.cts +4 -3
  15. package/dist/components/Badge.d.ts +4 -3
  16. package/dist/components/Badge.js +1 -1
  17. package/dist/components/Button.cjs +4 -0
  18. package/dist/components/Button.d.cts +23 -26
  19. package/dist/components/Button.d.ts +23 -26
  20. package/dist/components/Button.js +2 -2
  21. package/dist/components/ButtonRow.cjs +4 -0
  22. package/dist/components/ButtonRow.js +3 -3
  23. package/dist/components/CardPage.js +4 -4
  24. package/dist/components/CodeBlock.cjs +1871 -0
  25. package/dist/components/CodeBlock.d.cts +43 -0
  26. package/dist/components/CodeBlock.d.ts +43 -0
  27. package/dist/components/CodeBlock.js +24 -0
  28. package/dist/components/CurrencyAmount.cjs +2 -1
  29. package/dist/components/CurrencyAmount.d.cts +3 -3
  30. package/dist/components/CurrencyAmount.d.ts +3 -3
  31. package/dist/components/CurrencyAmount.js +1 -1
  32. package/dist/components/GradientCardHeader.cjs +1382 -14
  33. package/dist/components/GradientCardHeader.d.cts +2 -1
  34. package/dist/components/GradientCardHeader.d.ts +2 -1
  35. package/dist/components/GradientCardHeader.js +7 -1
  36. package/dist/components/Modal.cjs +4 -0
  37. package/dist/components/Modal.js +4 -4
  38. package/dist/components/SecretContainer.d.cts +1 -1
  39. package/dist/components/SecretContainer.d.ts +1 -1
  40. package/dist/components/StatusIndicator.cjs +1405 -0
  41. package/dist/components/StatusIndicator.d.cts +12 -0
  42. package/dist/components/StatusIndicator.d.ts +12 -0
  43. package/dist/components/StatusIndicator.js +12 -0
  44. package/dist/components/index.cjs +430 -222
  45. package/dist/components/index.d.cts +3 -2
  46. package/dist/components/index.d.ts +3 -2
  47. package/dist/components/index.js +32 -20
  48. package/dist/icons/FramedLetterI.cjs +55 -0
  49. package/dist/icons/FramedLetterI.d.cts +5 -0
  50. package/dist/icons/FramedLetterI.d.ts +5 -0
  51. package/dist/icons/FramedLetterI.js +36 -0
  52. package/dist/router.cjs +2 -0
  53. package/dist/router.d.cts +2 -1
  54. package/dist/router.d.ts +2 -1
  55. package/dist/router.js +1 -1
  56. package/dist/styles/fonts/typography/Article.js +4 -4
  57. package/dist/styles/fonts/typography/index.js +8 -8
  58. package/dist/styles/fonts/typographyTokens.d.cts +4 -1
  59. package/dist/styles/fonts/typographyTokens.d.ts +4 -1
  60. package/dist/types/index.d.cts +1 -0
  61. package/dist/types/index.d.ts +1 -0
  62. package/dist/{types/utils.cjs → utils/parseURLFragments.cjs} +18 -13
  63. package/dist/utils/parseURLFragments.d.cts +3 -0
  64. package/dist/utils/parseURLFragments.d.ts +3 -0
  65. package/dist/utils/parseURLFragments.js +19 -0
  66. package/dist/utils/strings.d.cts +1 -1
  67. package/dist/utils/strings.d.ts +1 -1
  68. package/dist/utils/toReactNodes.cjs +2 -0
  69. package/dist/utils/toReactNodes.js +2 -2
  70. package/package.json +5 -2
  71. package/dist/types/utils.d.cts +0 -16
  72. package/dist/types/utils.d.ts +0 -16
  73. package/dist/types/utils.js +0 -13
  74. package/dist/{chunk-Y37DCY7Y.js → chunk-A3ZJ2C7J.js} +9 -9
@@ -0,0 +1,12 @@
1
+ import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
2
+
3
+ type StatusIndicatorColors = "success" | "warning" | "danger" | "text" | "c4Neutral";
4
+ type StatusIndicatorProps = {
5
+ color?: StatusIndicatorColors;
6
+ text: string;
7
+ size?: 12 | 14;
8
+ fontWeight?: 500 | 700;
9
+ };
10
+ declare function StatusIndicator({ color, text, size, fontWeight, }: StatusIndicatorProps): _emotion_react_jsx_runtime.JSX.Element;
11
+
12
+ export { StatusIndicator, StatusIndicatorColors, StatusIndicatorProps };
@@ -0,0 +1,12 @@
1
+ import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
2
+
3
+ type StatusIndicatorColors = "success" | "warning" | "danger" | "text" | "c4Neutral";
4
+ type StatusIndicatorProps = {
5
+ color?: StatusIndicatorColors;
6
+ text: string;
7
+ size?: 12 | 14;
8
+ fontWeight?: 500 | 700;
9
+ };
10
+ declare function StatusIndicator({ color, text, size, fontWeight, }: StatusIndicatorProps): _emotion_react_jsx_runtime.JSX.Element;
11
+
12
+ export { StatusIndicator, StatusIndicatorColors, StatusIndicatorProps };
@@ -0,0 +1,12 @@
1
+ import {
2
+ StatusIndicator
3
+ } from "../chunk-34CIJVQQ.js";
4
+ import "../chunk-FCZJILMW.js";
5
+ import "../chunk-JK4BP73A.js";
6
+ import "../chunk-2VBDEO6M.js";
7
+ import "../chunk-E4EXM4SY.js";
8
+ import "../chunk-JSGRNWSB.js";
9
+ import "../chunk-CIGAQ47A.js";
10
+ export {
11
+ StatusIndicator
12
+ };