@mekari/pixel3-theme 0.3.0-dev.4 → 0.3.0-dev.5

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.
package/dist/index.js CHANGED
@@ -2780,7 +2780,7 @@ var radioSlotRecipe = (0, import_dev19.defineSlotRecipe)({
2780
2780
  var import_dev20 = require("@pandacss/dev");
2781
2781
  var sharedSlotRecipe = (0, import_dev20.defineSlotRecipe)({
2782
2782
  className: "shared",
2783
- jsx: ["MpCheckbox", "mp-checkbox", "MpRadio", "mp-radio"],
2783
+ jsx: ["MpCheckbox", "mp-checkbox", "MpRadio", "mp-radio", "MpToggle", "mp-toggle"],
2784
2784
  slots: ["hidden"],
2785
2785
  base: {
2786
2786
  hidden: {
@@ -2973,10 +2973,42 @@ var tableRecipe = (0, import_dev22.defineRecipe)({
2973
2973
  _nextTheme: {
2974
2974
  boxShadow: "0px 2px var(--mp-colors-border-default)"
2975
2975
  }
2976
+ },
2977
+ "&[data-table-head-narrowed=true]": {
2978
+ "& th": {
2979
+ paddingY: "2",
2980
+ paddingLeft: "2",
2981
+ paddingRight: "4"
2982
+ }
2983
+ },
2984
+ "&[data-table-head-bordered=true]": {
2985
+ "& th:nth-last-child(n+2)": {
2986
+ borderRightWidth: "sm",
2987
+ borderColor: "gray.100",
2988
+ _nextTheme: {
2989
+ borderColor: "border.default"
2990
+ }
2991
+ }
2976
2992
  }
2977
2993
  },
2978
2994
  "& > tbody": {
2979
- width: "full"
2995
+ width: "full",
2996
+ "&[data-table-head-narrowed=true]": {
2997
+ "& td": {
2998
+ paddingY: "2",
2999
+ paddingLeft: "2",
3000
+ paddingRight: "4"
3001
+ }
3002
+ },
3003
+ "&[data-table-head-bordered=true]": {
3004
+ "& td:nth-last-child(n+2)": {
3005
+ borderRightWidth: "sm",
3006
+ borderColor: "gray.100",
3007
+ _nextTheme: {
3008
+ borderColor: "border.default"
3009
+ }
3010
+ }
3011
+ }
2980
3012
  },
2981
3013
  "& > tr": {
2982
3014
  width: "full",
@@ -2985,9 +3017,9 @@ var tableRecipe = (0, import_dev22.defineRecipe)({
2985
3017
  },
2986
3018
  "& th, & td": {
2987
3019
  cursor: "default",
3020
+ paddingY: "4",
2988
3021
  paddingLeft: "2",
2989
3022
  paddingRight: "4",
2990
- height: "52px",
2991
3023
  textStyle: "label.md",
2992
3024
  textAlign: "left",
2993
3025
  color: "dark",
@@ -3218,7 +3250,6 @@ var inputTagSlotRecipe = (0, import_dev25.defineSlotRecipe)({
3218
3250
  },
3219
3251
  trigger: {
3220
3252
  overflowY: "auto",
3221
- overflowX: "hidden",
3222
3253
  position: "relative",
3223
3254
  display: "flex",
3224
3255
  alignItems: "center",
@@ -3290,26 +3321,13 @@ var inputTagSlotRecipe = (0, import_dev25.defineSlotRecipe)({
3290
3321
  }
3291
3322
  },
3292
3323
  input: {
3293
- appearance: "none",
3294
- outline: "none",
3295
- transition: "none",
3296
- width: "full",
3297
- textStyle: "label.md",
3298
- color: "dark",
3299
- _nextTheme: {
3300
- color: "text.default"
3301
- },
3324
+ padding: "0 !important",
3325
+ margin: "0 !important",
3326
+ borderWidth: "0 !important",
3302
3327
  _placeholder: {
3303
3328
  color: "gray.400",
3304
3329
  _nextTheme: {
3305
- color: "text.placeholder"
3306
- }
3307
- },
3308
- _disabled: {
3309
- cursor: "not-allowed",
3310
- color: "gray.400",
3311
- _nextTheme: {
3312
- color: "text.disabled"
3330
+ borderColor: "text.placeholder"
3313
3331
  }
3314
3332
  }
3315
3333
  },
@@ -6162,35 +6180,63 @@ var aireneInputSlotRecipe = (0, import_dev46.defineSlotRecipe)({
6162
6180
  alignItems: "flex-end",
6163
6181
  gap: "2",
6164
6182
  width: "full",
6165
- py: "xs",
6166
- px: "md",
6183
+ py: "2",
6184
+ px: "4",
6167
6185
  rounded: "full",
6168
6186
  borderWidth: "1px",
6169
- borderColor: "border.default",
6170
- backgroundColor: "background.neutral",
6171
- color: "text.default",
6187
+ borderColor: "gray.100",
6188
+ backgroundColor: "white",
6189
+ color: "dark",
6172
6190
  transitionDuration: "250ms",
6173
6191
  transitionProperty: "border-color",
6174
6192
  transitionTimingFunction: "linear",
6193
+ _nextTheme: {
6194
+ gap: "xs",
6195
+ py: "xs",
6196
+ px: "md",
6197
+ borderColor: "border.default",
6198
+ backgroundColor: "background.neutral",
6199
+ color: "text.default"
6200
+ },
6175
6201
  _hover: {
6176
- borderColor: "border.focused"
6202
+ borderColor: "blue.400",
6203
+ _nextTheme: {
6204
+ borderColor: "border.focused"
6205
+ }
6177
6206
  },
6178
6207
  _focusWithin: {
6179
- borderColor: "border.focused"
6208
+ borderColor: "blue.400",
6209
+ _nextTheme: {
6210
+ borderColor: "border.focused"
6211
+ }
6180
6212
  },
6181
6213
  _invalid: {
6182
- borderColor: "border.danger",
6183
- _hover: {
6214
+ borderColor: "red.400",
6215
+ _nextTheme: {
6184
6216
  borderColor: "border.danger"
6217
+ },
6218
+ _hover: {
6219
+ borderColor: "border.danger",
6220
+ _nextTheme: {
6221
+ borderColor: "red.400"
6222
+ }
6185
6223
  }
6186
6224
  },
6187
6225
  _disabled: {
6188
- backgroundColor: "background.disabled",
6189
- borderColor: "border.disabled",
6190
- color: "text.disabled",
6226
+ backgroundColor: "gray,50",
6227
+ borderColor: "gray.100",
6228
+ color: "gray.400",
6191
6229
  cursor: "not-allowed",
6230
+ _nextTheme: {
6231
+ backgroundColor: "background.disabled",
6232
+ borderColor: "border.disabled",
6233
+ color: "text.disabled"
6234
+ },
6192
6235
  _hover: {
6193
- borderColor: "border.disabled"
6236
+ borderColor: "gray.100",
6237
+ _nextTheme: {
6238
+ borderColor: "border.disabled"
6239
+ }
6194
6240
  }
6195
6241
  }
6196
6242
  },
@@ -6207,20 +6253,29 @@ var aireneInputSlotRecipe = (0, import_dev46.defineSlotRecipe)({
6207
6253
  maxHeight: "136px",
6208
6254
  outline: "none",
6209
6255
  resize: "none",
6210
- caretColor: "border.selected",
6256
+ caretColor: "blue.400",
6211
6257
  fontSize: "md",
6212
6258
  fontWeight: "regular",
6213
6259
  lineHeight: "md",
6214
6260
  scrollbarWidth: "none",
6261
+ _nextTheme: {
6262
+ caretColor: "border.selected"
6263
+ },
6215
6264
  "-ms-overflow-style": "none",
6216
6265
  "&::-webkit-scrollbar": {
6217
6266
  display: "none"
6218
6267
  },
6219
6268
  "&::selection": {
6220
- background: "background.brand"
6269
+ background: "ice.50",
6270
+ _nextTheme: {
6271
+ background: "background.brand"
6272
+ }
6221
6273
  },
6222
6274
  "&::-moz-selection": {
6223
- background: "background.brand"
6275
+ background: "ice.50",
6276
+ _nextTheme: {
6277
+ background: "background.brand"
6278
+ }
6224
6279
  }
6225
6280
  }
6226
6281
  },
@@ -6241,34 +6296,53 @@ var aireneBubbleSlotRecipe = (0, import_dev47.defineSlotRecipe)({
6241
6296
  width: "full",
6242
6297
  display: "flex",
6243
6298
  flexDirection: "column",
6244
- gap: "xs",
6245
- py: "xs"
6299
+ gap: "2",
6300
+ py: "2",
6301
+ _nextTheme: {
6302
+ gap: "xs",
6303
+ py: "xs"
6304
+ }
6246
6305
  },
6247
6306
  header: {
6248
6307
  display: "flex",
6249
6308
  alignItems: "center",
6250
- gap: "xs"
6309
+ gap: "2",
6310
+ _nextTheme: {
6311
+ gap: "xs"
6312
+ }
6251
6313
  },
6252
6314
  loading: {
6253
6315
  display: "flex",
6254
6316
  flexDirection: "column",
6255
- gap: "2xs"
6317
+ gap: "1.5",
6318
+ _nextTheme: {
6319
+ gap: "2xs"
6320
+ }
6256
6321
  },
6257
6322
  body: {
6258
6323
  position: "relative",
6259
6324
  display: "flex",
6260
6325
  flexDirection: "column",
6261
- gap: "sm",
6262
- padding: "sm",
6326
+ gap: "3",
6327
+ padding: "3",
6263
6328
  background: "lightPurple",
6264
6329
  borderRadius: "lg",
6265
6330
  borderWidth: "1px",
6266
6331
  borderStyle: "solid",
6267
- borderColor: "background.neutral.subtle"
6332
+ borderColor: "blue.50",
6333
+ _nextTheme: {
6334
+ gap: "sm",
6335
+ padding: "sm",
6336
+ background: "lightPurple",
6337
+ borderColor: "background.neutral.subtle"
6338
+ }
6268
6339
  },
6269
6340
  text: {
6270
6341
  display: "flex",
6271
- gap: "xs"
6342
+ gap: "2",
6343
+ _nextTheme: {
6344
+ gap: "xs"
6345
+ }
6272
6346
  }
6273
6347
  },
6274
6348
  variants: {},
@@ -6424,6 +6498,7 @@ var colors = import_dev50.defineTokens.colors({
6424
6498
  overlay: { value: "rgba(22, 26, 32, 0.8)" },
6425
6499
  white: { value: "#FFFFFF" },
6426
6500
  vibrantPurple: { value: "linear-gradient(98deg, #F8F9FB 0%, #B5A2EC 50.01%, #4B61DD 100%)" },
6501
+ lightPurple: { value: "radial-gradient(108.28% 139.29% at 0% 0%, #E9F1FD 0%, #F4F0FF 100%)" },
6427
6502
  whiteAlpha: {
6428
6503
  50: { value: "rgba(255, 255, 255, 0.04)" },
6429
6504
  100: { value: "rgba(255, 255, 255, 0.06)" },
@@ -6583,7 +6658,7 @@ var radii = import_dev53.defineTokens.radii({
6583
6658
  md: { value: "0.375rem", description: "6px" },
6584
6659
  lg: { value: "0.5rem", description: "8px" },
6585
6660
  xl: { value: "0.75rem", description: "12px" },
6586
- full: { value: "50%" }
6661
+ full: { value: "999px" }
6587
6662
  });
6588
6663
 
6589
6664
  // src/tokens/shadows.ts
package/dist/index.mjs CHANGED
@@ -2754,7 +2754,7 @@ var radioSlotRecipe = defineSlotRecipe9({
2754
2754
  import { defineSlotRecipe as defineSlotRecipe10 } from "@pandacss/dev";
2755
2755
  var sharedSlotRecipe = defineSlotRecipe10({
2756
2756
  className: "shared",
2757
- jsx: ["MpCheckbox", "mp-checkbox", "MpRadio", "mp-radio"],
2757
+ jsx: ["MpCheckbox", "mp-checkbox", "MpRadio", "mp-radio", "MpToggle", "mp-toggle"],
2758
2758
  slots: ["hidden"],
2759
2759
  base: {
2760
2760
  hidden: {
@@ -2947,10 +2947,42 @@ var tableRecipe = defineRecipe10({
2947
2947
  _nextTheme: {
2948
2948
  boxShadow: "0px 2px var(--mp-colors-border-default)"
2949
2949
  }
2950
+ },
2951
+ "&[data-table-head-narrowed=true]": {
2952
+ "& th": {
2953
+ paddingY: "2",
2954
+ paddingLeft: "2",
2955
+ paddingRight: "4"
2956
+ }
2957
+ },
2958
+ "&[data-table-head-bordered=true]": {
2959
+ "& th:nth-last-child(n+2)": {
2960
+ borderRightWidth: "sm",
2961
+ borderColor: "gray.100",
2962
+ _nextTheme: {
2963
+ borderColor: "border.default"
2964
+ }
2965
+ }
2950
2966
  }
2951
2967
  },
2952
2968
  "& > tbody": {
2953
- width: "full"
2969
+ width: "full",
2970
+ "&[data-table-head-narrowed=true]": {
2971
+ "& td": {
2972
+ paddingY: "2",
2973
+ paddingLeft: "2",
2974
+ paddingRight: "4"
2975
+ }
2976
+ },
2977
+ "&[data-table-head-bordered=true]": {
2978
+ "& td:nth-last-child(n+2)": {
2979
+ borderRightWidth: "sm",
2980
+ borderColor: "gray.100",
2981
+ _nextTheme: {
2982
+ borderColor: "border.default"
2983
+ }
2984
+ }
2985
+ }
2954
2986
  },
2955
2987
  "& > tr": {
2956
2988
  width: "full",
@@ -2959,9 +2991,9 @@ var tableRecipe = defineRecipe10({
2959
2991
  },
2960
2992
  "& th, & td": {
2961
2993
  cursor: "default",
2994
+ paddingY: "4",
2962
2995
  paddingLeft: "2",
2963
2996
  paddingRight: "4",
2964
- height: "52px",
2965
2997
  textStyle: "label.md",
2966
2998
  textAlign: "left",
2967
2999
  color: "dark",
@@ -3192,7 +3224,6 @@ var inputTagSlotRecipe = defineSlotRecipe14({
3192
3224
  },
3193
3225
  trigger: {
3194
3226
  overflowY: "auto",
3195
- overflowX: "hidden",
3196
3227
  position: "relative",
3197
3228
  display: "flex",
3198
3229
  alignItems: "center",
@@ -3264,26 +3295,13 @@ var inputTagSlotRecipe = defineSlotRecipe14({
3264
3295
  }
3265
3296
  },
3266
3297
  input: {
3267
- appearance: "none",
3268
- outline: "none",
3269
- transition: "none",
3270
- width: "full",
3271
- textStyle: "label.md",
3272
- color: "dark",
3273
- _nextTheme: {
3274
- color: "text.default"
3275
- },
3298
+ padding: "0 !important",
3299
+ margin: "0 !important",
3300
+ borderWidth: "0 !important",
3276
3301
  _placeholder: {
3277
3302
  color: "gray.400",
3278
3303
  _nextTheme: {
3279
- color: "text.placeholder"
3280
- }
3281
- },
3282
- _disabled: {
3283
- cursor: "not-allowed",
3284
- color: "gray.400",
3285
- _nextTheme: {
3286
- color: "text.disabled"
3304
+ borderColor: "text.placeholder"
3287
3305
  }
3288
3306
  }
3289
3307
  },
@@ -6136,35 +6154,63 @@ var aireneInputSlotRecipe = defineSlotRecipe32({
6136
6154
  alignItems: "flex-end",
6137
6155
  gap: "2",
6138
6156
  width: "full",
6139
- py: "xs",
6140
- px: "md",
6157
+ py: "2",
6158
+ px: "4",
6141
6159
  rounded: "full",
6142
6160
  borderWidth: "1px",
6143
- borderColor: "border.default",
6144
- backgroundColor: "background.neutral",
6145
- color: "text.default",
6161
+ borderColor: "gray.100",
6162
+ backgroundColor: "white",
6163
+ color: "dark",
6146
6164
  transitionDuration: "250ms",
6147
6165
  transitionProperty: "border-color",
6148
6166
  transitionTimingFunction: "linear",
6167
+ _nextTheme: {
6168
+ gap: "xs",
6169
+ py: "xs",
6170
+ px: "md",
6171
+ borderColor: "border.default",
6172
+ backgroundColor: "background.neutral",
6173
+ color: "text.default"
6174
+ },
6149
6175
  _hover: {
6150
- borderColor: "border.focused"
6176
+ borderColor: "blue.400",
6177
+ _nextTheme: {
6178
+ borderColor: "border.focused"
6179
+ }
6151
6180
  },
6152
6181
  _focusWithin: {
6153
- borderColor: "border.focused"
6182
+ borderColor: "blue.400",
6183
+ _nextTheme: {
6184
+ borderColor: "border.focused"
6185
+ }
6154
6186
  },
6155
6187
  _invalid: {
6156
- borderColor: "border.danger",
6157
- _hover: {
6188
+ borderColor: "red.400",
6189
+ _nextTheme: {
6158
6190
  borderColor: "border.danger"
6191
+ },
6192
+ _hover: {
6193
+ borderColor: "border.danger",
6194
+ _nextTheme: {
6195
+ borderColor: "red.400"
6196
+ }
6159
6197
  }
6160
6198
  },
6161
6199
  _disabled: {
6162
- backgroundColor: "background.disabled",
6163
- borderColor: "border.disabled",
6164
- color: "text.disabled",
6200
+ backgroundColor: "gray,50",
6201
+ borderColor: "gray.100",
6202
+ color: "gray.400",
6165
6203
  cursor: "not-allowed",
6204
+ _nextTheme: {
6205
+ backgroundColor: "background.disabled",
6206
+ borderColor: "border.disabled",
6207
+ color: "text.disabled"
6208
+ },
6166
6209
  _hover: {
6167
- borderColor: "border.disabled"
6210
+ borderColor: "gray.100",
6211
+ _nextTheme: {
6212
+ borderColor: "border.disabled"
6213
+ }
6168
6214
  }
6169
6215
  }
6170
6216
  },
@@ -6181,20 +6227,29 @@ var aireneInputSlotRecipe = defineSlotRecipe32({
6181
6227
  maxHeight: "136px",
6182
6228
  outline: "none",
6183
6229
  resize: "none",
6184
- caretColor: "border.selected",
6230
+ caretColor: "blue.400",
6185
6231
  fontSize: "md",
6186
6232
  fontWeight: "regular",
6187
6233
  lineHeight: "md",
6188
6234
  scrollbarWidth: "none",
6235
+ _nextTheme: {
6236
+ caretColor: "border.selected"
6237
+ },
6189
6238
  "-ms-overflow-style": "none",
6190
6239
  "&::-webkit-scrollbar": {
6191
6240
  display: "none"
6192
6241
  },
6193
6242
  "&::selection": {
6194
- background: "background.brand"
6243
+ background: "ice.50",
6244
+ _nextTheme: {
6245
+ background: "background.brand"
6246
+ }
6195
6247
  },
6196
6248
  "&::-moz-selection": {
6197
- background: "background.brand"
6249
+ background: "ice.50",
6250
+ _nextTheme: {
6251
+ background: "background.brand"
6252
+ }
6198
6253
  }
6199
6254
  }
6200
6255
  },
@@ -6215,34 +6270,53 @@ var aireneBubbleSlotRecipe = defineSlotRecipe33({
6215
6270
  width: "full",
6216
6271
  display: "flex",
6217
6272
  flexDirection: "column",
6218
- gap: "xs",
6219
- py: "xs"
6273
+ gap: "2",
6274
+ py: "2",
6275
+ _nextTheme: {
6276
+ gap: "xs",
6277
+ py: "xs"
6278
+ }
6220
6279
  },
6221
6280
  header: {
6222
6281
  display: "flex",
6223
6282
  alignItems: "center",
6224
- gap: "xs"
6283
+ gap: "2",
6284
+ _nextTheme: {
6285
+ gap: "xs"
6286
+ }
6225
6287
  },
6226
6288
  loading: {
6227
6289
  display: "flex",
6228
6290
  flexDirection: "column",
6229
- gap: "2xs"
6291
+ gap: "1.5",
6292
+ _nextTheme: {
6293
+ gap: "2xs"
6294
+ }
6230
6295
  },
6231
6296
  body: {
6232
6297
  position: "relative",
6233
6298
  display: "flex",
6234
6299
  flexDirection: "column",
6235
- gap: "sm",
6236
- padding: "sm",
6300
+ gap: "3",
6301
+ padding: "3",
6237
6302
  background: "lightPurple",
6238
6303
  borderRadius: "lg",
6239
6304
  borderWidth: "1px",
6240
6305
  borderStyle: "solid",
6241
- borderColor: "background.neutral.subtle"
6306
+ borderColor: "blue.50",
6307
+ _nextTheme: {
6308
+ gap: "sm",
6309
+ padding: "sm",
6310
+ background: "lightPurple",
6311
+ borderColor: "background.neutral.subtle"
6312
+ }
6242
6313
  },
6243
6314
  text: {
6244
6315
  display: "flex",
6245
- gap: "xs"
6316
+ gap: "2",
6317
+ _nextTheme: {
6318
+ gap: "xs"
6319
+ }
6246
6320
  }
6247
6321
  },
6248
6322
  variants: {},
@@ -6398,6 +6472,7 @@ var colors = defineTokens2.colors({
6398
6472
  overlay: { value: "rgba(22, 26, 32, 0.8)" },
6399
6473
  white: { value: "#FFFFFF" },
6400
6474
  vibrantPurple: { value: "linear-gradient(98deg, #F8F9FB 0%, #B5A2EC 50.01%, #4B61DD 100%)" },
6475
+ lightPurple: { value: "radial-gradient(108.28% 139.29% at 0% 0%, #E9F1FD 0%, #F4F0FF 100%)" },
6401
6476
  whiteAlpha: {
6402
6477
  50: { value: "rgba(255, 255, 255, 0.04)" },
6403
6478
  100: { value: "rgba(255, 255, 255, 0.06)" },
@@ -6557,7 +6632,7 @@ var radii = defineTokens5.radii({
6557
6632
  md: { value: "0.375rem", description: "6px" },
6558
6633
  lg: { value: "0.5rem", description: "8px" },
6559
6634
  xl: { value: "0.75rem", description: "12px" },
6560
- full: { value: "50%" }
6635
+ full: { value: "999px" }
6561
6636
  });
6562
6637
 
6563
6638
  // src/tokens/shadows.ts
@@ -20,6 +20,9 @@ declare const colors: {
20
20
  vibrantPurple: {
21
21
  value: string;
22
22
  };
23
+ lightPurple: {
24
+ value: string;
25
+ };
23
26
  whiteAlpha: {
24
27
  50: {
25
28
  value: string;
@@ -20,6 +20,9 @@ declare const colors: {
20
20
  vibrantPurple: {
21
21
  value: string;
22
22
  };
23
+ lightPurple: {
24
+ value: string;
25
+ };
23
26
  whiteAlpha: {
24
27
  50: {
25
28
  value: string;
@@ -35,6 +35,9 @@ declare const tokens: {
35
35
  vibrantPurple: {
36
36
  value: string;
37
37
  };
38
+ lightPurple: {
39
+ value: string;
40
+ };
38
41
  whiteAlpha: {
39
42
  50: {
40
43
  value: string;
@@ -35,6 +35,9 @@ declare const tokens: {
35
35
  vibrantPurple: {
36
36
  value: string;
37
37
  };
38
+ lightPurple: {
39
+ value: string;
40
+ };
38
41
  whiteAlpha: {
39
42
  50: {
40
43
  value: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mekari/pixel3-theme",
3
3
  "description": "Theme for mekari pixel 3",
4
- "version": "0.3.0-dev.4",
4
+ "version": "0.3.0-dev.5",
5
5
  "main": "dist/index.js",
6
6
  "license": "MIT",
7
7
  "files": [
@@ -10,34 +10,58 @@ const aireneBubbleSlotRecipe = defineSlotRecipe({
10
10
  width: 'full',
11
11
  display: 'flex',
12
12
  flexDirection: 'column',
13
- gap: 'xs',
14
- py: 'xs'
13
+ gap: '2',
14
+ py: '2',
15
+
16
+ _nextTheme: {
17
+ gap: 'xs',
18
+ py: 'xs'
19
+ }
15
20
  },
16
21
  header: {
17
22
  display: 'flex',
18
23
  alignItems: 'center',
19
- gap: 'xs'
24
+ gap: '2',
25
+
26
+ _nextTheme: {
27
+ gap: 'xs'
28
+ }
20
29
  },
21
30
  loading: {
22
31
  display: 'flex',
23
32
  flexDirection: 'column',
24
- gap: '2xs'
33
+ gap: '1.5',
34
+
35
+ _nextTheme: {
36
+ gap: '2xs'
37
+ }
25
38
  },
26
39
  body: {
27
40
  position: 'relative',
28
41
  display: 'flex',
29
42
  flexDirection: 'column',
30
- gap: 'sm',
31
- padding: 'sm',
43
+ gap: '3',
44
+ padding: '3',
32
45
  background: 'lightPurple',
33
46
  borderRadius: 'lg',
34
47
  borderWidth: '1px',
35
48
  borderStyle: 'solid',
36
- borderColor: 'background.neutral.subtle'
49
+ borderColor: 'blue.50',
50
+
51
+ _nextTheme: {
52
+ gap: 'sm',
53
+ padding: 'sm',
54
+ background: 'lightPurple',
55
+ borderColor: 'background.neutral.subtle'
56
+ }
37
57
  },
38
58
  text: {
39
59
  display: 'flex',
40
- gap: 'xs'
60
+ gap: '2',
61
+
62
+ _nextTheme: {
63
+ gap: 'xs'
64
+ }
41
65
  }
42
66
  },
43
67
  variants: {},
@@ -11,36 +11,73 @@ const aireneInputSlotRecipe = defineSlotRecipe({
11
11
  alignItems: 'flex-end',
12
12
  gap: '2',
13
13
  width: 'full',
14
- py: 'xs',
15
- px: 'md',
14
+ py: '2',
15
+ px: '4',
16
16
  rounded: 'full',
17
17
  borderWidth: '1px',
18
- borderColor: 'border.default',
19
- backgroundColor: 'background.neutral',
20
- color: 'text.default',
18
+ borderColor: 'gray.100',
19
+ backgroundColor: 'white',
20
+ color: 'dark',
21
21
  transitionDuration: '250ms',
22
22
  transitionProperty: 'border-color',
23
23
  transitionTimingFunction: 'linear',
24
24
 
25
+ _nextTheme: {
26
+ gap: 'xs',
27
+ py: 'xs',
28
+ px: 'md',
29
+ borderColor: 'border.default',
30
+ backgroundColor: 'background.neutral',
31
+ color: 'text.default'
32
+ },
33
+
25
34
  _hover: {
26
- borderColor: 'border.focused'
35
+ borderColor: 'blue.400',
36
+
37
+ _nextTheme: {
38
+ borderColor: 'border.focused'
39
+ }
27
40
  },
28
41
  _focusWithin: {
29
- borderColor: 'border.focused'
42
+ borderColor: 'blue.400',
43
+
44
+ _nextTheme: {
45
+ borderColor: 'border.focused'
46
+ }
30
47
  },
31
48
  _invalid: {
32
- borderColor: 'border.danger',
33
- _hover: {
49
+ borderColor: 'red.400',
50
+
51
+ _nextTheme: {
34
52
  borderColor: 'border.danger'
53
+ },
54
+
55
+ _hover: {
56
+ borderColor: 'border.danger',
57
+
58
+ _nextTheme: {
59
+ borderColor: 'red.400'
60
+ }
35
61
  }
36
62
  },
37
63
  _disabled: {
38
- backgroundColor: 'background.disabled',
39
- borderColor: 'border.disabled',
40
- color: 'text.disabled',
64
+ backgroundColor: 'gray,50',
65
+ borderColor: 'gray.100',
66
+ color: 'gray.400',
41
67
  cursor: 'not-allowed',
68
+
69
+ _nextTheme: {
70
+ backgroundColor: 'background.disabled',
71
+ borderColor: 'border.disabled',
72
+ color: 'text.disabled'
73
+ },
74
+
42
75
  _hover: {
43
- borderColor: 'border.disabled'
76
+ borderColor: 'gray.100',
77
+
78
+ _nextTheme: {
79
+ borderColor: 'border.disabled'
80
+ }
44
81
  }
45
82
  }
46
83
  },
@@ -57,20 +94,33 @@ const aireneInputSlotRecipe = defineSlotRecipe({
57
94
  maxHeight: '136px',
58
95
  outline: 'none',
59
96
  resize: 'none',
60
- caretColor: 'border.selected',
97
+ caretColor: 'blue.400',
61
98
  fontSize: 'md',
62
99
  fontWeight: 'regular',
63
100
  lineHeight: 'md',
64
101
  scrollbarWidth: 'none',
102
+
103
+ _nextTheme: {
104
+ caretColor: 'border.selected'
105
+ },
106
+
65
107
  '-ms-overflow-style': 'none',
66
108
  '&::-webkit-scrollbar': {
67
109
  display: 'none'
68
110
  },
69
111
  '&::selection': {
70
- background: 'background.brand'
112
+ background: 'ice.50',
113
+
114
+ _nextTheme: {
115
+ background: 'background.brand'
116
+ }
71
117
  },
72
118
  '&::-moz-selection': {
73
- background: 'background.brand'
119
+ background: 'ice.50',
120
+
121
+ _nextTheme: {
122
+ background: 'background.brand'
123
+ }
74
124
  }
75
125
  }
76
126
  },
@@ -23,7 +23,6 @@ const inputTagSlotRecipe = defineSlotRecipe({
23
23
  },
24
24
  trigger: {
25
25
  overflowY: 'auto',
26
- overflowX: 'hidden',
27
26
  position: 'relative',
28
27
  display: 'flex',
29
28
  alignItems: 'center',
@@ -97,29 +96,13 @@ const inputTagSlotRecipe = defineSlotRecipe({
97
96
  }
98
97
  },
99
98
  input: {
100
- appearance: 'none',
101
- outline: 'none',
102
- transition: 'none',
103
- width: 'full',
104
- textStyle: 'label.md',
105
- color: 'dark',
106
- _nextTheme: {
107
- color: 'text.default'
108
- },
109
-
99
+ padding: '0 !important',
100
+ margin: '0 !important',
101
+ borderWidth: '0 !important',
110
102
  _placeholder: {
111
103
  color: 'gray.400',
112
104
  _nextTheme: {
113
- color: 'text.placeholder'
114
- }
115
- },
116
-
117
- _disabled: {
118
- cursor: 'not-allowed',
119
- color: 'gray.400',
120
-
121
- _nextTheme: {
122
- color: 'text.disabled'
105
+ borderColor: 'text.placeholder'
123
106
  }
124
107
  }
125
108
  },
@@ -2,7 +2,7 @@ import { defineSlotRecipe } from '@pandacss/dev'
2
2
 
3
3
  const sharedSlotRecipe = defineSlotRecipe({
4
4
  className: 'shared',
5
- jsx: ['MpCheckbox', 'mp-checkbox', 'MpRadio', 'mp-radio'],
5
+ jsx: ['MpCheckbox', 'mp-checkbox', 'MpRadio', 'mp-radio', 'MpToggle', 'mp-toggle'],
6
6
  slots: ['hidden'],
7
7
  base: {
8
8
  hidden: {
@@ -31,11 +31,43 @@ const tableRecipe = defineRecipe({
31
31
  boxShadow: '0px 2px var(--mp-colors-gray-100)',
32
32
  _nextTheme: {
33
33
  boxShadow: '0px 2px var(--mp-colors-border-default)'
34
+ },
35
+ },
36
+ '&[data-table-head-narrowed=true]': {
37
+ '& th': {
38
+ paddingY: '2',
39
+ paddingLeft: '2',
40
+ paddingRight: '4',
41
+ }
42
+ },
43
+ '&[data-table-head-bordered=true]': {
44
+ '& th:nth-last-child(n+2)': {
45
+ borderRightWidth: 'sm',
46
+ borderColor: 'gray.100',
47
+ _nextTheme: {
48
+ borderColor: 'border.default'
49
+ }
34
50
  }
35
51
  }
36
52
  },
37
53
  '& > tbody': {
38
- width: 'full'
54
+ width: 'full',
55
+ '&[data-table-head-narrowed=true]': {
56
+ '& td': {
57
+ paddingY: '2',
58
+ paddingLeft: '2',
59
+ paddingRight: '4',
60
+ }
61
+ },
62
+ '&[data-table-head-bordered=true]': {
63
+ '& td:nth-last-child(n+2)': {
64
+ borderRightWidth: 'sm',
65
+ borderColor: 'gray.100',
66
+ _nextTheme: {
67
+ borderColor: 'border.default'
68
+ }
69
+ }
70
+ }
39
71
  },
40
72
  '& > tr': {
41
73
  width: 'full',
@@ -44,9 +76,9 @@ const tableRecipe = defineRecipe({
44
76
  },
45
77
  '& th, & td': {
46
78
  cursor: 'default',
79
+ paddingY: '4',
47
80
  paddingLeft: '2',
48
81
  paddingRight: '4',
49
- height: '52px',
50
82
  textStyle: 'label.md',
51
83
  textAlign: 'left',
52
84
  color: 'dark',
@@ -8,6 +8,7 @@ export const colors = defineTokens.colors({
8
8
  overlay: { value: 'rgba(22, 26, 32, 0.8)' },
9
9
  white: { value: '#FFFFFF' },
10
10
  vibrantPurple: { value: 'linear-gradient(98deg, #F8F9FB 0%, #B5A2EC 50.01%, #4B61DD 100%)' },
11
+ lightPurple: { value: 'radial-gradient(108.28% 139.29% at 0% 0%, #E9F1FD 0%, #F4F0FF 100%)' },
11
12
  whiteAlpha: {
12
13
  50: { value: 'rgba(255, 255, 255, 0.04)' },
13
14
  100: { value: 'rgba(255, 255, 255, 0.06)' },
@@ -7,5 +7,5 @@ export const radii = defineTokens.radii({
7
7
  md: { value: '0.375rem', description: '6px' },
8
8
  lg: { value: '0.5rem', description: '8px' },
9
9
  xl: { value: '0.75rem', description: '12px' },
10
- full: { value: '50%' }
10
+ full: { value: '999px' }
11
11
  })