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

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
@@ -25,7 +25,7 @@ __export(theme_exports, {
25
25
  module.exports = __toCommonJS(theme_exports);
26
26
 
27
27
  // src/index.ts
28
- var import_dev67 = require("@pandacss/dev");
28
+ var import_dev69 = require("@pandacss/dev");
29
29
 
30
30
  // src/breakpoints.ts
31
31
  var breakpoints = {
@@ -3218,6 +3218,7 @@ var inputTagSlotRecipe = (0, import_dev25.defineSlotRecipe)({
3218
3218
  },
3219
3219
  trigger: {
3220
3220
  overflowY: "auto",
3221
+ overflowX: "hidden",
3221
3222
  position: "relative",
3222
3223
  display: "flex",
3223
3224
  alignItems: "center",
@@ -3289,13 +3290,26 @@ var inputTagSlotRecipe = (0, import_dev25.defineSlotRecipe)({
3289
3290
  }
3290
3291
  },
3291
3292
  input: {
3292
- padding: "0 !important",
3293
- margin: "0 !important",
3294
- borderWidth: "0 !important",
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
+ },
3295
3302
  _placeholder: {
3296
3303
  color: "gray.400",
3297
3304
  _nextTheme: {
3298
- borderColor: "text.placeholder"
3305
+ color: "text.placeholder"
3306
+ }
3307
+ },
3308
+ _disabled: {
3309
+ cursor: "not-allowed",
3310
+ color: "gray.400",
3311
+ _nextTheme: {
3312
+ color: "text.disabled"
3299
3313
  }
3300
3314
  }
3301
3315
  },
@@ -6059,7 +6073,7 @@ var textlinkRecipe = (0, import_dev43.defineRecipe)({
6059
6073
  // src/recipes/skeleton.ts
6060
6074
  var import_dev44 = require("@pandacss/dev");
6061
6075
  var skeletonRecipe = (0, import_dev44.defineRecipe)({
6062
- className: "skeleton",
6076
+ className: "skeleton-component",
6063
6077
  jsx: ["MpSkeleton", "mp-skeleton"],
6064
6078
  base: {
6065
6079
  flexShrink: 0,
@@ -6135,6 +6149,133 @@ var scrollbarRecipe = (0, import_dev45.defineRecipe)({
6135
6149
  }
6136
6150
  });
6137
6151
 
6152
+ // src/recipes/airene-chat-input.ts
6153
+ var import_dev46 = require("@pandacss/dev");
6154
+ var aireneInputSlotRecipe = (0, import_dev46.defineSlotRecipe)({
6155
+ className: "airene-chat-input",
6156
+ jsx: ["MpAireneChatInput", "mp-airene-chat-input"],
6157
+ slots: ["root", "wrapper", "input"],
6158
+ base: {
6159
+ root: {
6160
+ position: "relative",
6161
+ display: "flex",
6162
+ alignItems: "flex-end",
6163
+ gap: "2",
6164
+ width: "full",
6165
+ py: "xs",
6166
+ px: "md",
6167
+ rounded: "full",
6168
+ borderWidth: "1px",
6169
+ borderColor: "border.default",
6170
+ backgroundColor: "background.neutral",
6171
+ color: "text.default",
6172
+ transitionDuration: "250ms",
6173
+ transitionProperty: "border-color",
6174
+ transitionTimingFunction: "linear",
6175
+ _hover: {
6176
+ borderColor: "border.focused"
6177
+ },
6178
+ _focusWithin: {
6179
+ borderColor: "border.focused"
6180
+ },
6181
+ _invalid: {
6182
+ borderColor: "border.danger",
6183
+ _hover: {
6184
+ borderColor: "border.danger"
6185
+ }
6186
+ },
6187
+ _disabled: {
6188
+ backgroundColor: "background.disabled",
6189
+ borderColor: "border.disabled",
6190
+ color: "text.disabled",
6191
+ cursor: "not-allowed",
6192
+ _hover: {
6193
+ borderColor: "border.disabled"
6194
+ }
6195
+ }
6196
+ },
6197
+ wrapper: {
6198
+ width: "full",
6199
+ display: "flex",
6200
+ flexDirection: "column",
6201
+ gap: "2"
6202
+ },
6203
+ input: {
6204
+ appearance: "none",
6205
+ width: "full",
6206
+ minHeight: "20px",
6207
+ maxHeight: "136px",
6208
+ outline: "none",
6209
+ resize: "none",
6210
+ caretColor: "border.selected",
6211
+ fontSize: "md",
6212
+ fontWeight: "regular",
6213
+ lineHeight: "md",
6214
+ scrollbarWidth: "none",
6215
+ "-ms-overflow-style": "none",
6216
+ "&::-webkit-scrollbar": {
6217
+ display: "none"
6218
+ },
6219
+ "&::selection": {
6220
+ background: "background.brand"
6221
+ },
6222
+ "&::-moz-selection": {
6223
+ background: "background.brand"
6224
+ }
6225
+ }
6226
+ },
6227
+ variants: {},
6228
+ compoundVariants: [],
6229
+ defaultVariants: {}
6230
+ });
6231
+
6232
+ // src/recipes/airene-chat-bubble.ts
6233
+ var import_dev47 = require("@pandacss/dev");
6234
+ var aireneBubbleSlotRecipe = (0, import_dev47.defineSlotRecipe)({
6235
+ className: "airene-chat-bubble",
6236
+ jsx: ["MpAireneChatBubble", "mp-airene-chat-bubble"],
6237
+ slots: ["root", "header", "loading", "body", "text"],
6238
+ base: {
6239
+ root: {
6240
+ position: "relative",
6241
+ width: "full",
6242
+ display: "flex",
6243
+ flexDirection: "column",
6244
+ gap: "xs",
6245
+ py: "xs"
6246
+ },
6247
+ header: {
6248
+ display: "flex",
6249
+ alignItems: "center",
6250
+ gap: "xs"
6251
+ },
6252
+ loading: {
6253
+ display: "flex",
6254
+ flexDirection: "column",
6255
+ gap: "2xs"
6256
+ },
6257
+ body: {
6258
+ position: "relative",
6259
+ display: "flex",
6260
+ flexDirection: "column",
6261
+ gap: "sm",
6262
+ padding: "sm",
6263
+ background: "lightPurple",
6264
+ borderRadius: "lg",
6265
+ borderWidth: "1px",
6266
+ borderStyle: "solid",
6267
+ borderColor: "background.neutral.subtle"
6268
+ },
6269
+ text: {
6270
+ display: "flex",
6271
+ gap: "xs"
6272
+ }
6273
+ },
6274
+ variants: {},
6275
+ compoundVariants: [],
6276
+ defaultVariants: {}
6277
+ });
6278
+
6138
6279
  // src/recipes/index.ts
6139
6280
  var recipes = {
6140
6281
  buttonRecipe,
@@ -6212,12 +6353,14 @@ var slotRecipes = {
6212
6353
  colorPickerSlotRecipe,
6213
6354
  sliderSlotRecipe,
6214
6355
  tourSlotRecipe,
6215
- aireneButtonSlotRecipe
6356
+ aireneButtonSlotRecipe,
6357
+ aireneInputSlotRecipe,
6358
+ aireneBubbleSlotRecipe
6216
6359
  };
6217
6360
 
6218
6361
  // src/text-styles.ts
6219
- var import_dev46 = require("@pandacss/dev");
6220
- var textStyles = (0, import_dev46.defineTextStyles)({
6362
+ var import_dev48 = require("@pandacss/dev");
6363
+ var textStyles = (0, import_dev48.defineTextStyles)({
6221
6364
  overline: {
6222
6365
  value: {
6223
6366
  fontFamily: "var(--font-inter)",
@@ -6260,11 +6403,11 @@ var textStyles = (0, import_dev46.defineTextStyles)({
6260
6403
  });
6261
6404
 
6262
6405
  // src/tokens/index.ts
6263
- var import_dev57 = require("@pandacss/dev");
6406
+ var import_dev59 = require("@pandacss/dev");
6264
6407
 
6265
6408
  // src/tokens/borders.ts
6266
- var import_dev47 = require("@pandacss/dev");
6267
- var borderWidths = import_dev47.defineTokens.borderWidths({
6409
+ var import_dev49 = require("@pandacss/dev");
6410
+ var borderWidths = import_dev49.defineTokens.borderWidths({
6268
6411
  none: { value: "none" },
6269
6412
  sm: { value: "1px" },
6270
6413
  md: { value: "1.5px" },
@@ -6272,8 +6415,8 @@ var borderWidths = import_dev47.defineTokens.borderWidths({
6272
6415
  });
6273
6416
 
6274
6417
  // src/tokens/colors.ts
6275
- var import_dev48 = require("@pandacss/dev");
6276
- var colors = import_dev48.defineTokens.colors({
6418
+ var import_dev50 = require("@pandacss/dev");
6419
+ var colors = import_dev50.defineTokens.colors({
6277
6420
  debug: { value: "blue" },
6278
6421
  currentcolor: { value: "currentcolor" },
6279
6422
  dark: { value: "#232933" },
@@ -6415,16 +6558,16 @@ var colors = import_dev48.defineTokens.colors({
6415
6558
  });
6416
6559
 
6417
6560
  // src/tokens/durations.ts
6418
- var import_dev49 = require("@pandacss/dev");
6419
- var durations = import_dev49.defineTokens.durations({
6561
+ var import_dev51 = require("@pandacss/dev");
6562
+ var durations = import_dev51.defineTokens.durations({
6420
6563
  slow: { value: "100ms" },
6421
6564
  normal: { value: "250ms" },
6422
6565
  fast: { value: "300ms" }
6423
6566
  });
6424
6567
 
6425
6568
  // src/tokens/opacity.ts
6426
- var import_dev50 = require("@pandacss/dev");
6427
- var opacity = import_dev50.defineTokens.opacity({
6569
+ var import_dev52 = require("@pandacss/dev");
6570
+ var opacity = import_dev52.defineTokens.opacity({
6428
6571
  0: { value: 0 },
6429
6572
  40: { value: 0.4 },
6430
6573
  60: { value: 0.6 },
@@ -6432,8 +6575,8 @@ var opacity = import_dev50.defineTokens.opacity({
6432
6575
  });
6433
6576
 
6434
6577
  // src/tokens/radii.ts
6435
- var import_dev51 = require("@pandacss/dev");
6436
- var radii = import_dev51.defineTokens.radii({
6578
+ var import_dev53 = require("@pandacss/dev");
6579
+ var radii = import_dev53.defineTokens.radii({
6437
6580
  none: { value: "0" },
6438
6581
  xs: { value: "0.125rem", description: "2px" },
6439
6582
  sm: { value: "0.25rem", description: "4px" },
@@ -6444,8 +6587,8 @@ var radii = import_dev51.defineTokens.radii({
6444
6587
  });
6445
6588
 
6446
6589
  // src/tokens/shadows.ts
6447
- var import_dev52 = require("@pandacss/dev");
6448
- var shadows = import_dev52.defineTokens.shadows({
6590
+ var import_dev54 = require("@pandacss/dev");
6591
+ var shadows = import_dev54.defineTokens.shadows({
6449
6592
  xs: {
6450
6593
  value: ["0px 0px 2px 0px rgba(0, 0, 0, 0.12)", "0px 2px 4px 0px rgba(0, 0, 0, 0.14)"]
6451
6594
  },
@@ -6485,8 +6628,8 @@ var shadows = import_dev52.defineTokens.shadows({
6485
6628
  });
6486
6629
 
6487
6630
  // src/tokens/sizes.ts
6488
- var import_dev53 = require("@pandacss/dev");
6489
- var sizes = import_dev53.defineTokens.sizes({
6631
+ var import_dev55 = require("@pandacss/dev");
6632
+ var sizes = import_dev55.defineTokens.sizes({
6490
6633
  0: { value: "0" },
6491
6634
  0.25: { value: "0.0625rem" },
6492
6635
  0.5: { value: "0.125rem" },
@@ -6515,8 +6658,8 @@ var sizes = import_dev53.defineTokens.sizes({
6515
6658
  });
6516
6659
 
6517
6660
  // src/tokens/spacing.ts
6518
- var import_dev54 = require("@pandacss/dev");
6519
- var spacing = import_dev54.defineTokens.spacing({
6661
+ var import_dev56 = require("@pandacss/dev");
6662
+ var spacing = import_dev56.defineTokens.spacing({
6520
6663
  0: { value: "0" },
6521
6664
  0.5: { value: "0.125rem", description: "2px" },
6522
6665
  1: { value: "0.25rem", description: "4px" },
@@ -6537,8 +6680,8 @@ var spacing = import_dev54.defineTokens.spacing({
6537
6680
  });
6538
6681
 
6539
6682
  // src/tokens/z-index.ts
6540
- var import_dev55 = require("@pandacss/dev");
6541
- var zIndex = import_dev55.defineTokens.zIndex({
6683
+ var import_dev57 = require("@pandacss/dev");
6684
+ var zIndex = import_dev57.defineTokens.zIndex({
6542
6685
  hide: { value: -1 },
6543
6686
  base: { value: 0 },
6544
6687
  docked: { value: 10 },
@@ -6550,8 +6693,8 @@ var zIndex = import_dev55.defineTokens.zIndex({
6550
6693
  });
6551
6694
 
6552
6695
  // src/tokens/typography.ts
6553
- var import_dev56 = require("@pandacss/dev");
6554
- var fonts = import_dev56.defineTokens.fonts({
6696
+ var import_dev58 = require("@pandacss/dev");
6697
+ var fonts = import_dev58.defineTokens.fonts({
6555
6698
  body: {
6556
6699
  value: '"Inter", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif, Segoe UI, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"'
6557
6700
  },
@@ -6559,7 +6702,7 @@ var fonts = import_dev56.defineTokens.fonts({
6559
6702
  value: 'SFMono-Regular, Menlo, Monaco,Consolas, "Liberation Mono", "Courier New", monospace'
6560
6703
  }
6561
6704
  });
6562
- var fontSizes = import_dev56.defineTokens.fontSizes({
6705
+ var fontSizes = import_dev58.defineTokens.fontSizes({
6563
6706
  xs: { value: "0.625rem" },
6564
6707
  sm: { value: "0.75rem" },
6565
6708
  md: { value: "0.875rem" },
@@ -6567,12 +6710,12 @@ var fontSizes = import_dev56.defineTokens.fontSizes({
6567
6710
  xl: { value: "1.25rem" },
6568
6711
  "2xl": { value: "1.5rem" }
6569
6712
  });
6570
- var fontWeights = import_dev56.defineTokens.fontWeights({
6713
+ var fontWeights = import_dev58.defineTokens.fontWeights({
6571
6714
  regular: { value: "400" },
6572
6715
  semiBold: { value: "600" },
6573
6716
  bold: { value: "800" }
6574
6717
  });
6575
- var lineHeights = import_dev56.defineTokens.lineHeights({
6718
+ var lineHeights = import_dev58.defineTokens.lineHeights({
6576
6719
  xs: { value: 1.2 },
6577
6720
  sm: { value: 1.34 },
6578
6721
  md: { value: 1.43 },
@@ -6581,7 +6724,7 @@ var lineHeights = import_dev56.defineTokens.lineHeights({
6581
6724
  "2xl": { value: 1.67 },
6582
6725
  "3xl": { value: 1.71 }
6583
6726
  });
6584
- var letterSpacings = import_dev56.defineTokens.letterSpacings({
6727
+ var letterSpacings = import_dev58.defineTokens.letterSpacings({
6585
6728
  tighter: { value: "-0.05em" },
6586
6729
  tight: { value: "-0.025em" },
6587
6730
  normal: { value: "0" },
@@ -6591,7 +6734,7 @@ var letterSpacings = import_dev56.defineTokens.letterSpacings({
6591
6734
  });
6592
6735
 
6593
6736
  // src/tokens/index.ts
6594
- var tokens = (0, import_dev57.defineTokens)({
6737
+ var tokens = (0, import_dev59.defineTokens)({
6595
6738
  borderWidths,
6596
6739
  colors,
6597
6740
  durations,
@@ -6609,11 +6752,11 @@ var tokens = (0, import_dev57.defineTokens)({
6609
6752
  });
6610
6753
 
6611
6754
  // src/tokens-next/index.ts
6612
- var import_dev63 = require("@pandacss/dev");
6755
+ var import_dev65 = require("@pandacss/dev");
6613
6756
 
6614
6757
  // src/tokens-next/borders.ts
6615
- var import_dev58 = require("@pandacss/dev");
6616
- var borderWidths2 = import_dev58.defineTokens.borderWidths({
6758
+ var import_dev60 = require("@pandacss/dev");
6759
+ var borderWidths2 = import_dev60.defineTokens.borderWidths({
6617
6760
  none: { value: "none" },
6618
6761
  sm: { value: "1px" },
6619
6762
  md: { value: "1.5px" },
@@ -6623,12 +6766,15 @@ var borderWidths2 = import_dev58.defineTokens.borderWidths({
6623
6766
  });
6624
6767
 
6625
6768
  // src/tokens-next/colors.ts
6626
- var import_dev59 = require("@pandacss/dev");
6627
- var colors2 = import_dev59.defineTokens.colors({
6769
+ var import_dev61 = require("@pandacss/dev");
6770
+ var colors2 = import_dev61.defineTokens.colors({
6628
6771
  debug: { value: "red" },
6629
6772
  currentcolor: { value: "currentcolor" },
6630
6773
  white: { value: "#FFFFFF" },
6631
6774
  vibrantPurple: { value: "linear-gradient(98deg, #F8F9FB 0%, #B5A2EC 50.01%, #4B61DD 100%)" },
6775
+ lightPurple: {
6776
+ value: "radial-gradient(108.28% 139.29% at 0% 0%, {colors.background.brand} 0%, {colors.background.highlight} 100%)"
6777
+ },
6632
6778
  dark: {
6633
6779
  "-100": {
6634
6780
  value: "#101214"
@@ -6796,8 +6942,8 @@ var colors2 = import_dev59.defineTokens.colors({
6796
6942
  });
6797
6943
 
6798
6944
  // src/tokens-next/radii.ts
6799
- var import_dev60 = require("@pandacss/dev");
6800
- var radii2 = import_dev60.defineTokens.radii({
6945
+ var import_dev62 = require("@pandacss/dev");
6946
+ var radii2 = import_dev62.defineTokens.radii({
6801
6947
  none: { value: "0" },
6802
6948
  sm: { value: "0.25rem", description: "4px" },
6803
6949
  md: { value: "0.375rem", description: "6px" },
@@ -6807,8 +6953,8 @@ var radii2 = import_dev60.defineTokens.radii({
6807
6953
  });
6808
6954
 
6809
6955
  // src/tokens-next/spacing.ts
6810
- var import_dev61 = require("@pandacss/dev");
6811
- var spacing2 = import_dev61.defineTokens.spacing({
6956
+ var import_dev63 = require("@pandacss/dev");
6957
+ var spacing2 = import_dev63.defineTokens.spacing({
6812
6958
  0: { value: "0" },
6813
6959
  0.5: { value: "0.125rem", description: "2px" },
6814
6960
  1: { value: "0.25rem", description: "4px" },
@@ -6824,8 +6970,8 @@ var spacing2 = import_dev61.defineTokens.spacing({
6824
6970
  });
6825
6971
 
6826
6972
  // src/tokens-next/shadows.ts
6827
- var import_dev62 = require("@pandacss/dev");
6828
- var shadows2 = import_dev62.defineTokens.shadows({
6973
+ var import_dev64 = require("@pandacss/dev");
6974
+ var shadows2 = import_dev64.defineTokens.shadows({
6829
6975
  xs: {
6830
6976
  value: [
6831
6977
  "0px 2px 4px 0px {colors.background.shadow}",
@@ -6865,7 +7011,7 @@ var shadows2 = import_dev62.defineTokens.shadows({
6865
7011
  });
6866
7012
 
6867
7013
  // src/tokens-next/index.ts
6868
- var tokensNext = (0, import_dev63.defineTokens)({
7014
+ var tokensNext = (0, import_dev65.defineTokens)({
6869
7015
  borderWidths: borderWidths2,
6870
7016
  colors: colors2,
6871
7017
  durations,
@@ -6883,11 +7029,11 @@ var tokensNext = (0, import_dev63.defineTokens)({
6883
7029
  });
6884
7030
 
6885
7031
  // src/semanticTokens/index.ts
6886
- var import_dev66 = require("@pandacss/dev");
7032
+ var import_dev68 = require("@pandacss/dev");
6887
7033
 
6888
7034
  // src/semanticTokens/colors.ts
6889
- var import_dev64 = require("@pandacss/dev");
6890
- var colors3 = import_dev64.defineSemanticTokens.colors({
7035
+ var import_dev66 = require("@pandacss/dev");
7036
+ var colors3 = import_dev66.defineSemanticTokens.colors({
6891
7037
  background: {
6892
7038
  surface: {
6893
7039
  value: {
@@ -7813,8 +7959,8 @@ var colors3 = import_dev64.defineSemanticTokens.colors({
7813
7959
  });
7814
7960
 
7815
7961
  // src/semanticTokens/spacing.ts
7816
- var import_dev65 = require("@pandacss/dev");
7817
- var spacing3 = import_dev65.defineSemanticTokens.spacing({
7962
+ var import_dev67 = require("@pandacss/dev");
7963
+ var spacing3 = import_dev67.defineSemanticTokens.spacing({
7818
7964
  "4xs": {
7819
7965
  value: {
7820
7966
  base: "0.125rem"
@@ -7873,7 +8019,7 @@ var spacing3 = import_dev65.defineSemanticTokens.spacing({
7873
8019
  });
7874
8020
 
7875
8021
  // src/semanticTokens/index.ts
7876
- var semanticTokens = (0, import_dev66.defineSemanticTokens)({
8022
+ var semanticTokens = (0, import_dev68.defineSemanticTokens)({
7877
8023
  colors: colors3,
7878
8024
  spacing: spacing3
7879
8025
  });
@@ -7921,7 +8067,7 @@ var globalFontface = {
7921
8067
  };
7922
8068
 
7923
8069
  // src/index.ts
7924
- var preset = (0, import_dev67.definePreset)({
8070
+ var preset = (0, import_dev69.definePreset)({
7925
8071
  name: "@mekari/pixel3-theme",
7926
8072
  // Main Theme
7927
8073
  theme: {
package/dist/index.mjs CHANGED
@@ -3192,6 +3192,7 @@ var inputTagSlotRecipe = defineSlotRecipe14({
3192
3192
  },
3193
3193
  trigger: {
3194
3194
  overflowY: "auto",
3195
+ overflowX: "hidden",
3195
3196
  position: "relative",
3196
3197
  display: "flex",
3197
3198
  alignItems: "center",
@@ -3263,13 +3264,26 @@ var inputTagSlotRecipe = defineSlotRecipe14({
3263
3264
  }
3264
3265
  },
3265
3266
  input: {
3266
- padding: "0 !important",
3267
- margin: "0 !important",
3268
- borderWidth: "0 !important",
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
+ },
3269
3276
  _placeholder: {
3270
3277
  color: "gray.400",
3271
3278
  _nextTheme: {
3272
- borderColor: "text.placeholder"
3279
+ color: "text.placeholder"
3280
+ }
3281
+ },
3282
+ _disabled: {
3283
+ cursor: "not-allowed",
3284
+ color: "gray.400",
3285
+ _nextTheme: {
3286
+ color: "text.disabled"
3273
3287
  }
3274
3288
  }
3275
3289
  },
@@ -6033,7 +6047,7 @@ var textlinkRecipe = defineRecipe14({
6033
6047
  // src/recipes/skeleton.ts
6034
6048
  import { defineRecipe as defineRecipe15 } from "@pandacss/dev";
6035
6049
  var skeletonRecipe = defineRecipe15({
6036
- className: "skeleton",
6050
+ className: "skeleton-component",
6037
6051
  jsx: ["MpSkeleton", "mp-skeleton"],
6038
6052
  base: {
6039
6053
  flexShrink: 0,
@@ -6109,6 +6123,133 @@ var scrollbarRecipe = defineRecipe16({
6109
6123
  }
6110
6124
  });
6111
6125
 
6126
+ // src/recipes/airene-chat-input.ts
6127
+ import { defineSlotRecipe as defineSlotRecipe32 } from "@pandacss/dev";
6128
+ var aireneInputSlotRecipe = defineSlotRecipe32({
6129
+ className: "airene-chat-input",
6130
+ jsx: ["MpAireneChatInput", "mp-airene-chat-input"],
6131
+ slots: ["root", "wrapper", "input"],
6132
+ base: {
6133
+ root: {
6134
+ position: "relative",
6135
+ display: "flex",
6136
+ alignItems: "flex-end",
6137
+ gap: "2",
6138
+ width: "full",
6139
+ py: "xs",
6140
+ px: "md",
6141
+ rounded: "full",
6142
+ borderWidth: "1px",
6143
+ borderColor: "border.default",
6144
+ backgroundColor: "background.neutral",
6145
+ color: "text.default",
6146
+ transitionDuration: "250ms",
6147
+ transitionProperty: "border-color",
6148
+ transitionTimingFunction: "linear",
6149
+ _hover: {
6150
+ borderColor: "border.focused"
6151
+ },
6152
+ _focusWithin: {
6153
+ borderColor: "border.focused"
6154
+ },
6155
+ _invalid: {
6156
+ borderColor: "border.danger",
6157
+ _hover: {
6158
+ borderColor: "border.danger"
6159
+ }
6160
+ },
6161
+ _disabled: {
6162
+ backgroundColor: "background.disabled",
6163
+ borderColor: "border.disabled",
6164
+ color: "text.disabled",
6165
+ cursor: "not-allowed",
6166
+ _hover: {
6167
+ borderColor: "border.disabled"
6168
+ }
6169
+ }
6170
+ },
6171
+ wrapper: {
6172
+ width: "full",
6173
+ display: "flex",
6174
+ flexDirection: "column",
6175
+ gap: "2"
6176
+ },
6177
+ input: {
6178
+ appearance: "none",
6179
+ width: "full",
6180
+ minHeight: "20px",
6181
+ maxHeight: "136px",
6182
+ outline: "none",
6183
+ resize: "none",
6184
+ caretColor: "border.selected",
6185
+ fontSize: "md",
6186
+ fontWeight: "regular",
6187
+ lineHeight: "md",
6188
+ scrollbarWidth: "none",
6189
+ "-ms-overflow-style": "none",
6190
+ "&::-webkit-scrollbar": {
6191
+ display: "none"
6192
+ },
6193
+ "&::selection": {
6194
+ background: "background.brand"
6195
+ },
6196
+ "&::-moz-selection": {
6197
+ background: "background.brand"
6198
+ }
6199
+ }
6200
+ },
6201
+ variants: {},
6202
+ compoundVariants: [],
6203
+ defaultVariants: {}
6204
+ });
6205
+
6206
+ // src/recipes/airene-chat-bubble.ts
6207
+ import { defineSlotRecipe as defineSlotRecipe33 } from "@pandacss/dev";
6208
+ var aireneBubbleSlotRecipe = defineSlotRecipe33({
6209
+ className: "airene-chat-bubble",
6210
+ jsx: ["MpAireneChatBubble", "mp-airene-chat-bubble"],
6211
+ slots: ["root", "header", "loading", "body", "text"],
6212
+ base: {
6213
+ root: {
6214
+ position: "relative",
6215
+ width: "full",
6216
+ display: "flex",
6217
+ flexDirection: "column",
6218
+ gap: "xs",
6219
+ py: "xs"
6220
+ },
6221
+ header: {
6222
+ display: "flex",
6223
+ alignItems: "center",
6224
+ gap: "xs"
6225
+ },
6226
+ loading: {
6227
+ display: "flex",
6228
+ flexDirection: "column",
6229
+ gap: "2xs"
6230
+ },
6231
+ body: {
6232
+ position: "relative",
6233
+ display: "flex",
6234
+ flexDirection: "column",
6235
+ gap: "sm",
6236
+ padding: "sm",
6237
+ background: "lightPurple",
6238
+ borderRadius: "lg",
6239
+ borderWidth: "1px",
6240
+ borderStyle: "solid",
6241
+ borderColor: "background.neutral.subtle"
6242
+ },
6243
+ text: {
6244
+ display: "flex",
6245
+ gap: "xs"
6246
+ }
6247
+ },
6248
+ variants: {},
6249
+ compoundVariants: [],
6250
+ defaultVariants: {}
6251
+ });
6252
+
6112
6253
  // src/recipes/index.ts
6113
6254
  var recipes = {
6114
6255
  buttonRecipe,
@@ -6186,7 +6327,9 @@ var slotRecipes = {
6186
6327
  colorPickerSlotRecipe,
6187
6328
  sliderSlotRecipe,
6188
6329
  tourSlotRecipe,
6189
- aireneButtonSlotRecipe
6330
+ aireneButtonSlotRecipe,
6331
+ aireneInputSlotRecipe,
6332
+ aireneBubbleSlotRecipe
6190
6333
  };
6191
6334
 
6192
6335
  // src/text-styles.ts
@@ -6603,6 +6746,9 @@ var colors2 = defineTokens13.colors({
6603
6746
  currentcolor: { value: "currentcolor" },
6604
6747
  white: { value: "#FFFFFF" },
6605
6748
  vibrantPurple: { value: "linear-gradient(98deg, #F8F9FB 0%, #B5A2EC 50.01%, #4B61DD 100%)" },
6749
+ lightPurple: {
6750
+ value: "radial-gradient(108.28% 139.29% at 0% 0%, {colors.background.brand} 0%, {colors.background.highlight} 100%)"
6751
+ },
6606
6752
  dark: {
6607
6753
  "-100": {
6608
6754
  value: "#101214"
@@ -0,0 +1,5 @@
1
+ import * as _pandacss_dev from '@pandacss/dev';
2
+
3
+ declare const aireneBubbleSlotRecipe: _pandacss_dev.SlotRecipeConfig;
4
+
5
+ export { aireneBubbleSlotRecipe };
@@ -0,0 +1,5 @@
1
+ import * as _pandacss_dev from '@pandacss/dev';
2
+
3
+ declare const aireneBubbleSlotRecipe: _pandacss_dev.SlotRecipeConfig;
4
+
5
+ export { aireneBubbleSlotRecipe };
@@ -0,0 +1,5 @@
1
+ import * as _pandacss_dev from '@pandacss/dev';
2
+
3
+ declare const aireneInputSlotRecipe: _pandacss_dev.SlotRecipeConfig;
4
+
5
+ export { aireneInputSlotRecipe };
@@ -0,0 +1,5 @@
1
+ import * as _pandacss_dev from '@pandacss/dev';
2
+
3
+ declare const aireneInputSlotRecipe: _pandacss_dev.SlotRecipeConfig;
4
+
5
+ export { aireneInputSlotRecipe };
@@ -77,6 +77,8 @@ declare const slotRecipes: {
77
77
  sliderSlotRecipe: _pandacss_types.SlotRecipeConfig;
78
78
  tourSlotRecipe: _pandacss_types.SlotRecipeConfig;
79
79
  aireneButtonSlotRecipe: _pandacss_types.SlotRecipeConfig;
80
+ aireneInputSlotRecipe: _pandacss_types.SlotRecipeConfig;
81
+ aireneBubbleSlotRecipe: _pandacss_types.SlotRecipeConfig;
80
82
  };
81
83
 
82
84
  export { recipes, slotRecipes };
@@ -77,6 +77,8 @@ declare const slotRecipes: {
77
77
  sliderSlotRecipe: _pandacss_types.SlotRecipeConfig;
78
78
  tourSlotRecipe: _pandacss_types.SlotRecipeConfig;
79
79
  aireneButtonSlotRecipe: _pandacss_types.SlotRecipeConfig;
80
+ aireneInputSlotRecipe: _pandacss_types.SlotRecipeConfig;
81
+ aireneBubbleSlotRecipe: _pandacss_types.SlotRecipeConfig;
80
82
  };
81
83
 
82
84
  export { recipes, slotRecipes };
@@ -11,6 +11,9 @@ declare const colors: {
11
11
  vibrantPurple: {
12
12
  value: string;
13
13
  };
14
+ lightPurple: {
15
+ value: string;
16
+ };
14
17
  dark: {
15
18
  '-100': {
16
19
  value: string;
@@ -11,6 +11,9 @@ declare const colors: {
11
11
  vibrantPurple: {
12
12
  value: string;
13
13
  };
14
+ lightPurple: {
15
+ value: string;
16
+ };
14
17
  dark: {
15
18
  '-100': {
16
19
  value: string;
@@ -32,6 +32,9 @@ declare const tokensNext: {
32
32
  vibrantPurple: {
33
33
  value: string;
34
34
  };
35
+ lightPurple: {
36
+ value: string;
37
+ };
35
38
  dark: {
36
39
  '-100': {
37
40
  value: string;
@@ -32,6 +32,9 @@ declare const tokensNext: {
32
32
  vibrantPurple: {
33
33
  value: string;
34
34
  };
35
+ lightPurple: {
36
+ value: string;
37
+ };
35
38
  dark: {
36
39
  '-100': {
37
40
  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.2",
4
+ "version": "0.3.0-dev.4",
5
5
  "main": "dist/index.js",
6
6
  "license": "MIT",
7
7
  "files": [
@@ -0,0 +1,48 @@
1
+ import { defineSlotRecipe } from '@pandacss/dev'
2
+
3
+ const aireneBubbleSlotRecipe = defineSlotRecipe({
4
+ className: 'airene-chat-bubble',
5
+ jsx: ['MpAireneChatBubble', 'mp-airene-chat-bubble'],
6
+ slots: ['root', 'header', 'loading', 'body', 'text'],
7
+ base: {
8
+ root: {
9
+ position: 'relative',
10
+ width: 'full',
11
+ display: 'flex',
12
+ flexDirection: 'column',
13
+ gap: 'xs',
14
+ py: 'xs'
15
+ },
16
+ header: {
17
+ display: 'flex',
18
+ alignItems: 'center',
19
+ gap: 'xs'
20
+ },
21
+ loading: {
22
+ display: 'flex',
23
+ flexDirection: 'column',
24
+ gap: '2xs'
25
+ },
26
+ body: {
27
+ position: 'relative',
28
+ display: 'flex',
29
+ flexDirection: 'column',
30
+ gap: 'sm',
31
+ padding: 'sm',
32
+ background: 'lightPurple',
33
+ borderRadius: 'lg',
34
+ borderWidth: '1px',
35
+ borderStyle: 'solid',
36
+ borderColor: 'background.neutral.subtle'
37
+ },
38
+ text: {
39
+ display: 'flex',
40
+ gap: 'xs'
41
+ }
42
+ },
43
+ variants: {},
44
+ compoundVariants: [],
45
+ defaultVariants: {}
46
+ })
47
+
48
+ export { aireneBubbleSlotRecipe }
@@ -0,0 +1,82 @@
1
+ import { defineSlotRecipe } from '@pandacss/dev'
2
+
3
+ const aireneInputSlotRecipe = defineSlotRecipe({
4
+ className: 'airene-chat-input',
5
+ jsx: ['MpAireneChatInput', 'mp-airene-chat-input'],
6
+ slots: ['root', 'wrapper', 'input'],
7
+ base: {
8
+ root: {
9
+ position: 'relative',
10
+ display: 'flex',
11
+ alignItems: 'flex-end',
12
+ gap: '2',
13
+ width: 'full',
14
+ py: 'xs',
15
+ px: 'md',
16
+ rounded: 'full',
17
+ borderWidth: '1px',
18
+ borderColor: 'border.default',
19
+ backgroundColor: 'background.neutral',
20
+ color: 'text.default',
21
+ transitionDuration: '250ms',
22
+ transitionProperty: 'border-color',
23
+ transitionTimingFunction: 'linear',
24
+
25
+ _hover: {
26
+ borderColor: 'border.focused'
27
+ },
28
+ _focusWithin: {
29
+ borderColor: 'border.focused'
30
+ },
31
+ _invalid: {
32
+ borderColor: 'border.danger',
33
+ _hover: {
34
+ borderColor: 'border.danger'
35
+ }
36
+ },
37
+ _disabled: {
38
+ backgroundColor: 'background.disabled',
39
+ borderColor: 'border.disabled',
40
+ color: 'text.disabled',
41
+ cursor: 'not-allowed',
42
+ _hover: {
43
+ borderColor: 'border.disabled'
44
+ }
45
+ }
46
+ },
47
+ wrapper: {
48
+ width: 'full',
49
+ display: 'flex',
50
+ flexDirection: 'column',
51
+ gap: '2'
52
+ },
53
+ input: {
54
+ appearance: 'none',
55
+ width: 'full',
56
+ minHeight: '20px',
57
+ maxHeight: '136px',
58
+ outline: 'none',
59
+ resize: 'none',
60
+ caretColor: 'border.selected',
61
+ fontSize: 'md',
62
+ fontWeight: 'regular',
63
+ lineHeight: 'md',
64
+ scrollbarWidth: 'none',
65
+ '-ms-overflow-style': 'none',
66
+ '&::-webkit-scrollbar': {
67
+ display: 'none'
68
+ },
69
+ '&::selection': {
70
+ background: 'background.brand'
71
+ },
72
+ '&::-moz-selection': {
73
+ background: 'background.brand'
74
+ }
75
+ }
76
+ },
77
+ variants: {},
78
+ compoundVariants: [],
79
+ defaultVariants: {}
80
+ })
81
+
82
+ export { aireneInputSlotRecipe }
@@ -67,6 +67,8 @@ import { tourSlotRecipe } from './tour'
67
67
  import { textlinkRecipe } from './textlink'
68
68
  import { skeletonRecipe } from './skeleton'
69
69
  import { scrollbarRecipe } from './scrollbar'
70
+ import { aireneInputSlotRecipe } from './airene-chat-input'
71
+ import { aireneBubbleSlotRecipe } from './airene-chat-bubble'
70
72
 
71
73
  export const recipes = {
72
74
  buttonRecipe,
@@ -145,5 +147,7 @@ export const slotRecipes = {
145
147
  colorPickerSlotRecipe,
146
148
  sliderSlotRecipe,
147
149
  tourSlotRecipe,
148
- aireneButtonSlotRecipe
150
+ aireneButtonSlotRecipe,
151
+ aireneInputSlotRecipe,
152
+ aireneBubbleSlotRecipe
149
153
  }
@@ -23,6 +23,7 @@ const inputTagSlotRecipe = defineSlotRecipe({
23
23
  },
24
24
  trigger: {
25
25
  overflowY: 'auto',
26
+ overflowX: 'hidden',
26
27
  position: 'relative',
27
28
  display: 'flex',
28
29
  alignItems: 'center',
@@ -96,13 +97,29 @@ const inputTagSlotRecipe = defineSlotRecipe({
96
97
  }
97
98
  },
98
99
  input: {
99
- padding: '0 !important',
100
- margin: '0 !important',
101
- borderWidth: '0 !important',
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
+
102
110
  _placeholder: {
103
111
  color: 'gray.400',
104
112
  _nextTheme: {
105
- borderColor: 'text.placeholder'
113
+ color: 'text.placeholder'
114
+ }
115
+ },
116
+
117
+ _disabled: {
118
+ cursor: 'not-allowed',
119
+ color: 'gray.400',
120
+
121
+ _nextTheme: {
122
+ color: 'text.disabled'
106
123
  }
107
124
  }
108
125
  },
@@ -1,7 +1,7 @@
1
1
  import { defineRecipe } from '@pandacss/dev'
2
2
 
3
3
  const skeletonRecipe = defineRecipe({
4
- className: 'skeleton',
4
+ className: 'skeleton-component',
5
5
  jsx: ['MpSkeleton', 'mp-skeleton'],
6
6
  base: {
7
7
  flexShrink: 0,
@@ -5,6 +5,10 @@ export const colors = defineTokens.colors({
5
5
  currentcolor: { value: 'currentcolor' },
6
6
  white: { value: '#FFFFFF' },
7
7
  vibrantPurple: { value: 'linear-gradient(98deg, #F8F9FB 0%, #B5A2EC 50.01%, #4B61DD 100%)' },
8
+ lightPurple: {
9
+ value:
10
+ 'radial-gradient(108.28% 139.29% at 0% 0%, {colors.background.brand} 0%, {colors.background.highlight} 100%)'
11
+ },
8
12
  dark: {
9
13
  '-100': {
10
14
  value: '#101214'