@mekari/pixel3-theme 0.2.2-dev.4 → 0.2.2-dev.6

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 (52) hide show
  1. package/dist/index.js +285 -71
  2. package/dist/index.mjs +237 -23
  3. package/dist/recipes/index.d.mts +1 -0
  4. package/dist/recipes/index.d.ts +1 -0
  5. package/dist/recipes/textlink.d.mts +5 -0
  6. package/dist/recipes/textlink.d.ts +5 -0
  7. package/dist/semanticTokens/colors.d.mts +7 -0
  8. package/dist/semanticTokens/colors.d.ts +7 -0
  9. package/dist/semanticTokens/index.d.mts +7 -0
  10. package/dist/semanticTokens/index.d.ts +7 -0
  11. package/package.json +1 -1
  12. package/src/conditions.ts +3 -2
  13. package/src/fonts.ts +4 -4
  14. package/src/global-css.ts +3 -3
  15. package/src/index.ts +1 -1
  16. package/src/recipes/airene-button.ts +1 -1
  17. package/src/recipes/autocomplete.ts +23 -9
  18. package/src/recipes/avatar.ts +28 -20
  19. package/src/recipes/badge.ts +7 -7
  20. package/src/recipes/banner.ts +7 -7
  21. package/src/recipes/broadcast.ts +45 -19
  22. package/src/recipes/button.ts +7 -4
  23. package/src/recipes/carousel.ts +2 -6
  24. package/src/recipes/color-picker.ts +1 -1
  25. package/src/recipes/date-picker.ts +1 -1
  26. package/src/recipes/divider.ts +3 -3
  27. package/src/recipes/form-control.ts +3 -3
  28. package/src/recipes/index.ts +3 -1
  29. package/src/recipes/input.ts +23 -23
  30. package/src/recipes/modal.ts +3 -3
  31. package/src/recipes/popover.ts +4 -3
  32. package/src/recipes/rich-text-editor.ts +2 -2
  33. package/src/recipes/segmented-control.ts +14 -13
  34. package/src/recipes/select.ts +9 -9
  35. package/src/recipes/slider.ts +16 -11
  36. package/src/recipes/table.ts +5 -5
  37. package/src/recipes/tabs.ts +2 -2
  38. package/src/recipes/tag.ts +2 -1
  39. package/src/recipes/textarea.ts +1 -1
  40. package/src/recipes/textlink.ts +105 -0
  41. package/src/recipes/timeline.ts +31 -4
  42. package/src/recipes/toast.ts +29 -9
  43. package/src/recipes/toggle.ts +1 -1
  44. package/src/semanticTokens/colors.ts +8 -1
  45. package/src/semanticTokens/index.ts +1 -1
  46. package/src/semanticTokens/spacing.ts +12 -12
  47. package/src/tokens/colors.ts +2 -2
  48. package/src/tokens/spacing.ts +2 -2
  49. package/src/tokens/typography.ts +1 -1
  50. package/src/tokens-next/radii.ts +1 -1
  51. package/src/tokens-next/shadows.ts +16 -4
  52. package/src/tokens-next/spacing.ts +1 -1
@@ -138,5 +138,5 @@ export const colors = defineTokens.colors({
138
138
  qontak: { value: '#2979FF' },
139
139
  talenta: { value: '#F22929' },
140
140
  university: { value: '#448AFF' }
141
- },
142
- })
141
+ }
142
+ })
@@ -1,14 +1,14 @@
1
1
  import { defineTokens } from '@pandacss/dev'
2
2
 
3
3
  export const spacing = defineTokens.spacing({
4
- 0: { value: '0'},
4
+ 0: { value: '0' },
5
5
  0.5: { value: '0.125rem', description: '2px' },
6
6
  1: { value: '0.25rem', description: '4px' },
7
7
  1.5: { value: '0.375rem', description: '6px' },
8
8
  2: { value: '0.5rem', description: '8px' },
9
9
  3: { value: '0.75rem', description: '12px' },
10
10
  4: { value: '1rem', description: '16px' },
11
- 5: { value: '1.3rem', description: '20px' },
11
+ 5: { value: '1.3rem', description: '20px' },
12
12
  6: { value: '1.5rem', description: '24px' },
13
13
  8: { value: '2rem', description: '32px' },
14
14
  12: { value: '3rem', description: '48px' },
@@ -28,7 +28,7 @@ export const fontWeights = defineTokens.fontWeights({
28
28
  export const lineHeights = defineTokens.lineHeights({
29
29
  xs: { value: 1.2 },
30
30
  sm: { value: 1.34 },
31
- md: { value: 1.4 },
31
+ md: { value: 1.43 },
32
32
  lg: { value: 1.429 },
33
33
  xl: { value: 1.5 },
34
34
  '2xl': { value: 1.67 },
@@ -7,4 +7,4 @@ export const radii = defineTokens.radii({
7
7
  lg: { value: '0.5rem', description: '8px' },
8
8
  xl: { value: '0.75rem', description: '12px' },
9
9
  full: { value: '999px' }
10
- })
10
+ })
@@ -2,16 +2,28 @@ import { defineTokens } from '@pandacss/dev'
2
2
 
3
3
  export const shadows = defineTokens.shadows({
4
4
  xs: {
5
- value: ['0px 2px 4px 0px {colors.background.shadow}', '0px 0px 2px 0px {colors.background.shadow}']
5
+ value: [
6
+ '0px 2px 4px 0px {colors.background.shadow}',
7
+ '0px 0px 2px 0px {colors.background.shadow}'
8
+ ]
6
9
  },
7
10
  sm: {
8
- value: ['0px 10px 15px -3px {colors.background.shadow}', '0px 4px 6px -2px {colors.background.shadow}']
11
+ value: [
12
+ '0px 10px 15px -3px {colors.background.shadow}',
13
+ '0px 4px 6px -2px {colors.background.shadow}'
14
+ ]
9
15
  },
10
16
  md: {
11
- value: ['0px 20px 25px -5px {colors.background.shadow}', '0px 10px 10px -5px {colors.background.shadow}']
17
+ value: [
18
+ '0px 20px 25px -5px {colors.background.shadow}',
19
+ '0px 10px 10px -5px {colors.background.shadow}'
20
+ ]
12
21
  },
13
22
  lg: {
14
- value: ['0px 25px 30px -10px {colors.background.shadow}', '0px 15px 15px -10px {colors.background.shadow}']
23
+ value: [
24
+ '0px 25px 30px -10px {colors.background.shadow}',
25
+ '0px 15px 15px -10px {colors.background.shadow}'
26
+ ]
15
27
  },
16
28
  focus: {
17
29
  value: '0 0 0 1px {colors.border.focused}'
@@ -8,7 +8,7 @@ export const spacing = defineTokens.spacing({
8
8
  2: { value: '0.5rem', description: '8px' },
9
9
  3: { value: '0.75rem', description: '12px' },
10
10
  4: { value: '1rem', description: '16px' },
11
- 5: { value: '1.3rem', description: '20px' },
11
+ 5: { value: '1.3rem', description: '20px' },
12
12
  6: { value: '1.5rem', description: '24px' },
13
13
  8: { value: '2rem', description: '32px' },
14
14
  10: { value: '2.5rem', description: '40px' },