@mekari/pixel3-theme 0.2.1 → 0.2.2-dev.1

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 (94) hide show
  1. package/dist/conditions.d.mts +4 -1
  2. package/dist/conditions.d.ts +4 -1
  3. package/dist/index.js +3423 -606
  4. package/dist/index.mjs +3382 -565
  5. package/dist/recipes/airene-button.d.mts +5 -0
  6. package/dist/recipes/airene-button.d.ts +5 -0
  7. package/dist/recipes/index.d.mts +1 -0
  8. package/dist/recipes/index.d.ts +1 -0
  9. package/dist/semanticTokens/colors.d.mts +892 -0
  10. package/dist/semanticTokens/colors.d.ts +892 -0
  11. package/dist/semanticTokens/index.d.mts +951 -0
  12. package/dist/semanticTokens/index.d.ts +951 -0
  13. package/dist/semanticTokens/spacing.d.mts +59 -0
  14. package/dist/semanticTokens/spacing.d.ts +59 -0
  15. package/dist/tokens/borders.d.mts +2 -2
  16. package/dist/tokens/borders.d.ts +2 -2
  17. package/dist/tokens/colors.d.mts +40 -34
  18. package/dist/tokens/colors.d.ts +40 -34
  19. package/dist/tokens/index.d.mts +62 -35
  20. package/dist/tokens/index.d.ts +62 -35
  21. package/dist/tokens/radii.d.mts +5 -0
  22. package/dist/tokens/radii.d.ts +5 -0
  23. package/dist/tokens/spacing.d.mts +16 -0
  24. package/dist/tokens/spacing.d.ts +16 -0
  25. package/dist/tokens-next/borders.d.mts +22 -0
  26. package/dist/tokens-next/borders.d.ts +22 -0
  27. package/dist/tokens-next/colors.d.mts +444 -0
  28. package/dist/tokens-next/colors.d.ts +444 -0
  29. package/dist/tokens-next/index.d.mts +775 -0
  30. package/dist/tokens-next/index.d.ts +775 -0
  31. package/dist/tokens-next/radii.d.mts +26 -0
  32. package/dist/tokens-next/radii.d.ts +26 -0
  33. package/dist/tokens-next/shadows.d.mts +28 -0
  34. package/dist/tokens-next/shadows.d.ts +28 -0
  35. package/dist/tokens-next/spacing.d.mts +51 -0
  36. package/dist/tokens-next/spacing.d.ts +51 -0
  37. package/package.json +3 -2
  38. package/src/conditions.ts +6 -4
  39. package/src/global-css.ts +4 -0
  40. package/src/index.ts +15 -2
  41. package/src/keyframes.ts +5 -0
  42. package/src/recipes/accordion.ts +60 -10
  43. package/src/recipes/airene-button.ts +120 -0
  44. package/src/recipes/autocomplete.ts +6 -1
  45. package/src/recipes/avatar.ts +101 -24
  46. package/src/recipes/badge.ts +174 -50
  47. package/src/recipes/banner.ts +36 -12
  48. package/src/recipes/broadcast.ts +78 -12
  49. package/src/recipes/button.ts +239 -11
  50. package/src/recipes/carousel.ts +5 -0
  51. package/src/recipes/chart.ts +10 -5
  52. package/src/recipes/checkbox.ts +72 -15
  53. package/src/recipes/color-picker.ts +74 -23
  54. package/src/recipes/date-picker.ts +165 -31
  55. package/src/recipes/divider.ts +5 -1
  56. package/src/recipes/dropzone.ts +80 -8
  57. package/src/recipes/form-control.ts +12 -3
  58. package/src/recipes/icon.ts +3 -1
  59. package/src/recipes/index.ts +3 -1
  60. package/src/recipes/input-tag.ts +48 -8
  61. package/src/recipes/input.ts +105 -18
  62. package/src/recipes/modal.ts +38 -10
  63. package/src/recipes/popover.ts +28 -9
  64. package/src/recipes/progress.ts +9 -2
  65. package/src/recipes/radio.ts +56 -23
  66. package/src/recipes/rich-text-editor.ts +32 -6
  67. package/src/recipes/segmented-control.ts +48 -8
  68. package/src/recipes/select.ts +42 -0
  69. package/src/recipes/slider.ts +46 -6
  70. package/src/recipes/table.ts +26 -11
  71. package/src/recipes/tabs.ts +36 -4
  72. package/src/recipes/tag.ts +44 -14
  73. package/src/recipes/text.ts +0 -1
  74. package/src/recipes/textarea.ts +0 -46
  75. package/src/recipes/timeline.ts +42 -8
  76. package/src/recipes/toast.ts +21 -5
  77. package/src/recipes/toggle.ts +63 -13
  78. package/src/recipes/tooltip.ts +6 -1
  79. package/src/recipes/upload.ts +51 -16
  80. package/src/semanticTokens/colors.ts +893 -0
  81. package/src/semanticTokens/index.ts +8 -0
  82. package/src/semanticTokens/spacing.ts +59 -0
  83. package/src/text-styles.ts +1 -1
  84. package/src/tokens/borders.ts +1 -1
  85. package/src/tokens/colors.ts +19 -23
  86. package/src/tokens/index.ts +2 -2
  87. package/src/tokens/radii.ts +5 -5
  88. package/src/tokens/spacing.ts +17 -17
  89. package/src/tokens-next/borders.ts +10 -0
  90. package/src/tokens-next/colors.ts +172 -0
  91. package/src/tokens-next/index.ts +32 -0
  92. package/src/tokens-next/radii.ts +10 -0
  93. package/src/tokens-next/shadows.ts +28 -0
  94. package/src/tokens-next/spacing.ts +16 -0
@@ -2,6 +2,7 @@ declare const conditions: {
2
2
  extend: {
3
3
  disabled: string;
4
4
  invalid: string;
5
+ active: string;
5
6
  checked: string;
6
7
  indeterminate: string;
7
8
  closed: string;
@@ -11,13 +12,15 @@ declare const conditions: {
11
12
  loading: string;
12
13
  hasIcon: string;
13
14
  hasLabel: string;
14
- active: string;
15
15
  highlight: string;
16
16
  hasBorder: string;
17
17
  hasBackground: string;
18
18
  isFullWidth: string;
19
19
  placementLeft: string;
20
20
  placementRight: string;
21
+ nextTheme: string;
22
+ light: string;
23
+ dark: string;
21
24
  };
22
25
  };
23
26
 
@@ -2,6 +2,7 @@ declare const conditions: {
2
2
  extend: {
3
3
  disabled: string;
4
4
  invalid: string;
5
+ active: string;
5
6
  checked: string;
6
7
  indeterminate: string;
7
8
  closed: string;
@@ -11,13 +12,15 @@ declare const conditions: {
11
12
  loading: string;
12
13
  hasIcon: string;
13
14
  hasLabel: string;
14
- active: string;
15
15
  highlight: string;
16
16
  hasBorder: string;
17
17
  hasBackground: string;
18
18
  isFullWidth: string;
19
19
  placementLeft: string;
20
20
  placementRight: string;
21
+ nextTheme: string;
22
+ light: string;
23
+ dark: string;
21
24
  };
22
25
  };
23
26