@mekari/pixel3-theme 0.0.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 (79) hide show
  1. package/dist/breakpoints.d.mts +8 -0
  2. package/dist/breakpoints.d.ts +8 -0
  3. package/dist/conditions.d.mts +23 -0
  4. package/dist/conditions.d.ts +23 -0
  5. package/dist/global-css.d.mts +5 -0
  6. package/dist/global-css.d.ts +5 -0
  7. package/dist/index.d.mts +5 -0
  8. package/dist/index.d.ts +5 -0
  9. package/dist/index.js +2509 -0
  10. package/dist/index.mjs +2488 -0
  11. package/dist/keyframes.d.mts +5 -0
  12. package/dist/keyframes.d.ts +5 -0
  13. package/dist/recipes/accordion.d.mts +5 -0
  14. package/dist/recipes/accordion.d.ts +5 -0
  15. package/dist/recipes/avatar.d.mts +6 -0
  16. package/dist/recipes/avatar.d.ts +6 -0
  17. package/dist/recipes/badge.d.mts +5 -0
  18. package/dist/recipes/badge.d.ts +5 -0
  19. package/dist/recipes/button.d.mts +6 -0
  20. package/dist/recipes/button.d.ts +6 -0
  21. package/dist/recipes/checkbox.d.mts +5 -0
  22. package/dist/recipes/checkbox.d.ts +5 -0
  23. package/dist/recipes/icon.d.mts +5 -0
  24. package/dist/recipes/icon.d.ts +5 -0
  25. package/dist/recipes/index.d.mts +37 -0
  26. package/dist/recipes/index.d.ts +37 -0
  27. package/dist/recipes/input.d.mts +7 -0
  28. package/dist/recipes/input.d.ts +7 -0
  29. package/dist/recipes/popover.d.mts +7 -0
  30. package/dist/recipes/popover.d.ts +7 -0
  31. package/dist/recipes/progress.d.mts +5 -0
  32. package/dist/recipes/progress.d.ts +5 -0
  33. package/dist/recipes/radio.d.mts +5 -0
  34. package/dist/recipes/radio.d.ts +5 -0
  35. package/dist/recipes/select.d.mts +5 -0
  36. package/dist/recipes/select.d.ts +5 -0
  37. package/dist/recipes/shared.d.mts +5 -0
  38. package/dist/recipes/shared.d.ts +5 -0
  39. package/dist/recipes/spinner.d.mts +5 -0
  40. package/dist/recipes/spinner.d.ts +5 -0
  41. package/dist/recipes/table.d.mts +6 -0
  42. package/dist/recipes/table.d.ts +6 -0
  43. package/dist/recipes/tabs.d.mts +7 -0
  44. package/dist/recipes/tabs.d.ts +7 -0
  45. package/dist/recipes/tag.d.mts +5 -0
  46. package/dist/recipes/tag.d.ts +5 -0
  47. package/dist/recipes/text.d.mts +5 -0
  48. package/dist/recipes/text.d.ts +5 -0
  49. package/dist/recipes/textarea.d.mts +5 -0
  50. package/dist/recipes/textarea.d.ts +5 -0
  51. package/dist/recipes/toggle.d.mts +5 -0
  52. package/dist/recipes/toggle.d.ts +5 -0
  53. package/dist/recipes/tooltip.d.mts +5 -0
  54. package/dist/recipes/tooltip.d.ts +5 -0
  55. package/dist/text-styles.d.mts +5 -0
  56. package/dist/text-styles.d.ts +5 -0
  57. package/dist/tokens/borders.d.mts +16 -0
  58. package/dist/tokens/borders.d.ts +16 -0
  59. package/dist/tokens/colors.d.mts +256 -0
  60. package/dist/tokens/colors.d.ts +256 -0
  61. package/dist/tokens/durations.d.mts +13 -0
  62. package/dist/tokens/durations.d.ts +13 -0
  63. package/dist/tokens/index.d.mts +647 -0
  64. package/dist/tokens/index.d.ts +647 -0
  65. package/dist/tokens/opacity.d.mts +16 -0
  66. package/dist/tokens/opacity.d.ts +16 -0
  67. package/dist/tokens/radii.d.mts +30 -0
  68. package/dist/tokens/radii.d.ts +30 -0
  69. package/dist/tokens/shadows.d.mts +40 -0
  70. package/dist/tokens/shadows.d.ts +40 -0
  71. package/dist/tokens/sizes.d.mts +95 -0
  72. package/dist/tokens/sizes.d.ts +95 -0
  73. package/dist/tokens/spacing.d.mts +72 -0
  74. package/dist/tokens/spacing.d.ts +72 -0
  75. package/dist/tokens/typography.d.mts +97 -0
  76. package/dist/tokens/typography.d.ts +97 -0
  77. package/dist/tokens/z-index.d.mts +28 -0
  78. package/dist/tokens/z-index.d.ts +28 -0
  79. package/package.json +41 -0
@@ -0,0 +1,8 @@
1
+ declare const breakpoints: {
2
+ sm: string;
3
+ md: string;
4
+ lg: string;
5
+ xl: string;
6
+ };
7
+
8
+ export { breakpoints };
@@ -0,0 +1,8 @@
1
+ declare const breakpoints: {
2
+ sm: string;
3
+ md: string;
4
+ lg: string;
5
+ xl: string;
6
+ };
7
+
8
+ export { breakpoints };
@@ -0,0 +1,23 @@
1
+ declare const conditions: {
2
+ extend: {
3
+ disabled: string;
4
+ invalid: string;
5
+ checked: string;
6
+ indeterminate: string;
7
+ closed: string;
8
+ open: string;
9
+ hidden: string;
10
+ collapsed: string;
11
+ loading: string;
12
+ hasIcon: string;
13
+ active: string;
14
+ highlight: string;
15
+ hasBorder: string;
16
+ hasBackground: string;
17
+ isFullWidth: string;
18
+ placementLeft: string;
19
+ placementRight: string;
20
+ };
21
+ };
22
+
23
+ export { conditions };
@@ -0,0 +1,23 @@
1
+ declare const conditions: {
2
+ extend: {
3
+ disabled: string;
4
+ invalid: string;
5
+ checked: string;
6
+ indeterminate: string;
7
+ closed: string;
8
+ open: string;
9
+ hidden: string;
10
+ collapsed: string;
11
+ loading: string;
12
+ hasIcon: string;
13
+ active: string;
14
+ highlight: string;
15
+ hasBorder: string;
16
+ hasBackground: string;
17
+ isFullWidth: string;
18
+ placementLeft: string;
19
+ placementRight: string;
20
+ };
21
+ };
22
+
23
+ export { conditions };
@@ -0,0 +1,5 @@
1
+ import * as _pandacss_dev from '@pandacss/dev';
2
+
3
+ declare const globalCss: _pandacss_dev.GlobalStyleObject;
4
+
5
+ export { globalCss };
@@ -0,0 +1,5 @@
1
+ import * as _pandacss_dev from '@pandacss/dev';
2
+
3
+ declare const globalCss: _pandacss_dev.GlobalStyleObject;
4
+
5
+ export { globalCss };
@@ -0,0 +1,5 @@
1
+ import { Preset } from '@pandacss/types';
2
+
3
+ declare const preset: Preset;
4
+
5
+ export { preset as default };
@@ -0,0 +1,5 @@
1
+ import { Preset } from '@pandacss/types';
2
+
3
+ declare const preset: Preset;
4
+
5
+ export { preset as default };