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

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_dev68 = 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,86 @@ 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
+
6138
6232
  // src/recipes/index.ts
6139
6233
  var recipes = {
6140
6234
  buttonRecipe,
@@ -6212,12 +6306,13 @@ var slotRecipes = {
6212
6306
  colorPickerSlotRecipe,
6213
6307
  sliderSlotRecipe,
6214
6308
  tourSlotRecipe,
6215
- aireneButtonSlotRecipe
6309
+ aireneButtonSlotRecipe,
6310
+ aireneInputSlotRecipe
6216
6311
  };
6217
6312
 
6218
6313
  // src/text-styles.ts
6219
- var import_dev46 = require("@pandacss/dev");
6220
- var textStyles = (0, import_dev46.defineTextStyles)({
6314
+ var import_dev47 = require("@pandacss/dev");
6315
+ var textStyles = (0, import_dev47.defineTextStyles)({
6221
6316
  overline: {
6222
6317
  value: {
6223
6318
  fontFamily: "var(--font-inter)",
@@ -6260,11 +6355,11 @@ var textStyles = (0, import_dev46.defineTextStyles)({
6260
6355
  });
6261
6356
 
6262
6357
  // src/tokens/index.ts
6263
- var import_dev57 = require("@pandacss/dev");
6358
+ var import_dev58 = require("@pandacss/dev");
6264
6359
 
6265
6360
  // src/tokens/borders.ts
6266
- var import_dev47 = require("@pandacss/dev");
6267
- var borderWidths = import_dev47.defineTokens.borderWidths({
6361
+ var import_dev48 = require("@pandacss/dev");
6362
+ var borderWidths = import_dev48.defineTokens.borderWidths({
6268
6363
  none: { value: "none" },
6269
6364
  sm: { value: "1px" },
6270
6365
  md: { value: "1.5px" },
@@ -6272,8 +6367,8 @@ var borderWidths = import_dev47.defineTokens.borderWidths({
6272
6367
  });
6273
6368
 
6274
6369
  // src/tokens/colors.ts
6275
- var import_dev48 = require("@pandacss/dev");
6276
- var colors = import_dev48.defineTokens.colors({
6370
+ var import_dev49 = require("@pandacss/dev");
6371
+ var colors = import_dev49.defineTokens.colors({
6277
6372
  debug: { value: "blue" },
6278
6373
  currentcolor: { value: "currentcolor" },
6279
6374
  dark: { value: "#232933" },
@@ -6415,16 +6510,16 @@ var colors = import_dev48.defineTokens.colors({
6415
6510
  });
6416
6511
 
6417
6512
  // src/tokens/durations.ts
6418
- var import_dev49 = require("@pandacss/dev");
6419
- var durations = import_dev49.defineTokens.durations({
6513
+ var import_dev50 = require("@pandacss/dev");
6514
+ var durations = import_dev50.defineTokens.durations({
6420
6515
  slow: { value: "100ms" },
6421
6516
  normal: { value: "250ms" },
6422
6517
  fast: { value: "300ms" }
6423
6518
  });
6424
6519
 
6425
6520
  // src/tokens/opacity.ts
6426
- var import_dev50 = require("@pandacss/dev");
6427
- var opacity = import_dev50.defineTokens.opacity({
6521
+ var import_dev51 = require("@pandacss/dev");
6522
+ var opacity = import_dev51.defineTokens.opacity({
6428
6523
  0: { value: 0 },
6429
6524
  40: { value: 0.4 },
6430
6525
  60: { value: 0.6 },
@@ -6432,8 +6527,8 @@ var opacity = import_dev50.defineTokens.opacity({
6432
6527
  });
6433
6528
 
6434
6529
  // src/tokens/radii.ts
6435
- var import_dev51 = require("@pandacss/dev");
6436
- var radii = import_dev51.defineTokens.radii({
6530
+ var import_dev52 = require("@pandacss/dev");
6531
+ var radii = import_dev52.defineTokens.radii({
6437
6532
  none: { value: "0" },
6438
6533
  xs: { value: "0.125rem", description: "2px" },
6439
6534
  sm: { value: "0.25rem", description: "4px" },
@@ -6444,8 +6539,8 @@ var radii = import_dev51.defineTokens.radii({
6444
6539
  });
6445
6540
 
6446
6541
  // src/tokens/shadows.ts
6447
- var import_dev52 = require("@pandacss/dev");
6448
- var shadows = import_dev52.defineTokens.shadows({
6542
+ var import_dev53 = require("@pandacss/dev");
6543
+ var shadows = import_dev53.defineTokens.shadows({
6449
6544
  xs: {
6450
6545
  value: ["0px 0px 2px 0px rgba(0, 0, 0, 0.12)", "0px 2px 4px 0px rgba(0, 0, 0, 0.14)"]
6451
6546
  },
@@ -6485,8 +6580,8 @@ var shadows = import_dev52.defineTokens.shadows({
6485
6580
  });
6486
6581
 
6487
6582
  // src/tokens/sizes.ts
6488
- var import_dev53 = require("@pandacss/dev");
6489
- var sizes = import_dev53.defineTokens.sizes({
6583
+ var import_dev54 = require("@pandacss/dev");
6584
+ var sizes = import_dev54.defineTokens.sizes({
6490
6585
  0: { value: "0" },
6491
6586
  0.25: { value: "0.0625rem" },
6492
6587
  0.5: { value: "0.125rem" },
@@ -6515,8 +6610,8 @@ var sizes = import_dev53.defineTokens.sizes({
6515
6610
  });
6516
6611
 
6517
6612
  // src/tokens/spacing.ts
6518
- var import_dev54 = require("@pandacss/dev");
6519
- var spacing = import_dev54.defineTokens.spacing({
6613
+ var import_dev55 = require("@pandacss/dev");
6614
+ var spacing = import_dev55.defineTokens.spacing({
6520
6615
  0: { value: "0" },
6521
6616
  0.5: { value: "0.125rem", description: "2px" },
6522
6617
  1: { value: "0.25rem", description: "4px" },
@@ -6537,8 +6632,8 @@ var spacing = import_dev54.defineTokens.spacing({
6537
6632
  });
6538
6633
 
6539
6634
  // src/tokens/z-index.ts
6540
- var import_dev55 = require("@pandacss/dev");
6541
- var zIndex = import_dev55.defineTokens.zIndex({
6635
+ var import_dev56 = require("@pandacss/dev");
6636
+ var zIndex = import_dev56.defineTokens.zIndex({
6542
6637
  hide: { value: -1 },
6543
6638
  base: { value: 0 },
6544
6639
  docked: { value: 10 },
@@ -6550,8 +6645,8 @@ var zIndex = import_dev55.defineTokens.zIndex({
6550
6645
  });
6551
6646
 
6552
6647
  // src/tokens/typography.ts
6553
- var import_dev56 = require("@pandacss/dev");
6554
- var fonts = import_dev56.defineTokens.fonts({
6648
+ var import_dev57 = require("@pandacss/dev");
6649
+ var fonts = import_dev57.defineTokens.fonts({
6555
6650
  body: {
6556
6651
  value: '"Inter", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif, Segoe UI, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"'
6557
6652
  },
@@ -6559,7 +6654,7 @@ var fonts = import_dev56.defineTokens.fonts({
6559
6654
  value: 'SFMono-Regular, Menlo, Monaco,Consolas, "Liberation Mono", "Courier New", monospace'
6560
6655
  }
6561
6656
  });
6562
- var fontSizes = import_dev56.defineTokens.fontSizes({
6657
+ var fontSizes = import_dev57.defineTokens.fontSizes({
6563
6658
  xs: { value: "0.625rem" },
6564
6659
  sm: { value: "0.75rem" },
6565
6660
  md: { value: "0.875rem" },
@@ -6567,12 +6662,12 @@ var fontSizes = import_dev56.defineTokens.fontSizes({
6567
6662
  xl: { value: "1.25rem" },
6568
6663
  "2xl": { value: "1.5rem" }
6569
6664
  });
6570
- var fontWeights = import_dev56.defineTokens.fontWeights({
6665
+ var fontWeights = import_dev57.defineTokens.fontWeights({
6571
6666
  regular: { value: "400" },
6572
6667
  semiBold: { value: "600" },
6573
6668
  bold: { value: "800" }
6574
6669
  });
6575
- var lineHeights = import_dev56.defineTokens.lineHeights({
6670
+ var lineHeights = import_dev57.defineTokens.lineHeights({
6576
6671
  xs: { value: 1.2 },
6577
6672
  sm: { value: 1.34 },
6578
6673
  md: { value: 1.43 },
@@ -6581,7 +6676,7 @@ var lineHeights = import_dev56.defineTokens.lineHeights({
6581
6676
  "2xl": { value: 1.67 },
6582
6677
  "3xl": { value: 1.71 }
6583
6678
  });
6584
- var letterSpacings = import_dev56.defineTokens.letterSpacings({
6679
+ var letterSpacings = import_dev57.defineTokens.letterSpacings({
6585
6680
  tighter: { value: "-0.05em" },
6586
6681
  tight: { value: "-0.025em" },
6587
6682
  normal: { value: "0" },
@@ -6591,7 +6686,7 @@ var letterSpacings = import_dev56.defineTokens.letterSpacings({
6591
6686
  });
6592
6687
 
6593
6688
  // src/tokens/index.ts
6594
- var tokens = (0, import_dev57.defineTokens)({
6689
+ var tokens = (0, import_dev58.defineTokens)({
6595
6690
  borderWidths,
6596
6691
  colors,
6597
6692
  durations,
@@ -6609,11 +6704,11 @@ var tokens = (0, import_dev57.defineTokens)({
6609
6704
  });
6610
6705
 
6611
6706
  // src/tokens-next/index.ts
6612
- var import_dev63 = require("@pandacss/dev");
6707
+ var import_dev64 = require("@pandacss/dev");
6613
6708
 
6614
6709
  // src/tokens-next/borders.ts
6615
- var import_dev58 = require("@pandacss/dev");
6616
- var borderWidths2 = import_dev58.defineTokens.borderWidths({
6710
+ var import_dev59 = require("@pandacss/dev");
6711
+ var borderWidths2 = import_dev59.defineTokens.borderWidths({
6617
6712
  none: { value: "none" },
6618
6713
  sm: { value: "1px" },
6619
6714
  md: { value: "1.5px" },
@@ -6623,8 +6718,8 @@ var borderWidths2 = import_dev58.defineTokens.borderWidths({
6623
6718
  });
6624
6719
 
6625
6720
  // src/tokens-next/colors.ts
6626
- var import_dev59 = require("@pandacss/dev");
6627
- var colors2 = import_dev59.defineTokens.colors({
6721
+ var import_dev60 = require("@pandacss/dev");
6722
+ var colors2 = import_dev60.defineTokens.colors({
6628
6723
  debug: { value: "red" },
6629
6724
  currentcolor: { value: "currentcolor" },
6630
6725
  white: { value: "#FFFFFF" },
@@ -6796,8 +6891,8 @@ var colors2 = import_dev59.defineTokens.colors({
6796
6891
  });
6797
6892
 
6798
6893
  // src/tokens-next/radii.ts
6799
- var import_dev60 = require("@pandacss/dev");
6800
- var radii2 = import_dev60.defineTokens.radii({
6894
+ var import_dev61 = require("@pandacss/dev");
6895
+ var radii2 = import_dev61.defineTokens.radii({
6801
6896
  none: { value: "0" },
6802
6897
  sm: { value: "0.25rem", description: "4px" },
6803
6898
  md: { value: "0.375rem", description: "6px" },
@@ -6807,8 +6902,8 @@ var radii2 = import_dev60.defineTokens.radii({
6807
6902
  });
6808
6903
 
6809
6904
  // src/tokens-next/spacing.ts
6810
- var import_dev61 = require("@pandacss/dev");
6811
- var spacing2 = import_dev61.defineTokens.spacing({
6905
+ var import_dev62 = require("@pandacss/dev");
6906
+ var spacing2 = import_dev62.defineTokens.spacing({
6812
6907
  0: { value: "0" },
6813
6908
  0.5: { value: "0.125rem", description: "2px" },
6814
6909
  1: { value: "0.25rem", description: "4px" },
@@ -6824,8 +6919,8 @@ var spacing2 = import_dev61.defineTokens.spacing({
6824
6919
  });
6825
6920
 
6826
6921
  // src/tokens-next/shadows.ts
6827
- var import_dev62 = require("@pandacss/dev");
6828
- var shadows2 = import_dev62.defineTokens.shadows({
6922
+ var import_dev63 = require("@pandacss/dev");
6923
+ var shadows2 = import_dev63.defineTokens.shadows({
6829
6924
  xs: {
6830
6925
  value: [
6831
6926
  "0px 2px 4px 0px {colors.background.shadow}",
@@ -6865,7 +6960,7 @@ var shadows2 = import_dev62.defineTokens.shadows({
6865
6960
  });
6866
6961
 
6867
6962
  // src/tokens-next/index.ts
6868
- var tokensNext = (0, import_dev63.defineTokens)({
6963
+ var tokensNext = (0, import_dev64.defineTokens)({
6869
6964
  borderWidths: borderWidths2,
6870
6965
  colors: colors2,
6871
6966
  durations,
@@ -6883,11 +6978,11 @@ var tokensNext = (0, import_dev63.defineTokens)({
6883
6978
  });
6884
6979
 
6885
6980
  // src/semanticTokens/index.ts
6886
- var import_dev66 = require("@pandacss/dev");
6981
+ var import_dev67 = require("@pandacss/dev");
6887
6982
 
6888
6983
  // src/semanticTokens/colors.ts
6889
- var import_dev64 = require("@pandacss/dev");
6890
- var colors3 = import_dev64.defineSemanticTokens.colors({
6984
+ var import_dev65 = require("@pandacss/dev");
6985
+ var colors3 = import_dev65.defineSemanticTokens.colors({
6891
6986
  background: {
6892
6987
  surface: {
6893
6988
  value: {
@@ -7813,8 +7908,8 @@ var colors3 = import_dev64.defineSemanticTokens.colors({
7813
7908
  });
7814
7909
 
7815
7910
  // src/semanticTokens/spacing.ts
7816
- var import_dev65 = require("@pandacss/dev");
7817
- var spacing3 = import_dev65.defineSemanticTokens.spacing({
7911
+ var import_dev66 = require("@pandacss/dev");
7912
+ var spacing3 = import_dev66.defineSemanticTokens.spacing({
7818
7913
  "4xs": {
7819
7914
  value: {
7820
7915
  base: "0.125rem"
@@ -7873,7 +7968,7 @@ var spacing3 = import_dev65.defineSemanticTokens.spacing({
7873
7968
  });
7874
7969
 
7875
7970
  // src/semanticTokens/index.ts
7876
- var semanticTokens = (0, import_dev66.defineSemanticTokens)({
7971
+ var semanticTokens = (0, import_dev67.defineSemanticTokens)({
7877
7972
  colors: colors3,
7878
7973
  spacing: spacing3
7879
7974
  });
@@ -7921,7 +8016,7 @@ var globalFontface = {
7921
8016
  };
7922
8017
 
7923
8018
  // src/index.ts
7924
- var preset = (0, import_dev67.definePreset)({
8019
+ var preset = (0, import_dev68.definePreset)({
7925
8020
  name: "@mekari/pixel3-theme",
7926
8021
  // Main Theme
7927
8022
  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,86 @@ 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
+
6112
6206
  // src/recipes/index.ts
6113
6207
  var recipes = {
6114
6208
  buttonRecipe,
@@ -6186,7 +6280,8 @@ var slotRecipes = {
6186
6280
  colorPickerSlotRecipe,
6187
6281
  sliderSlotRecipe,
6188
6282
  tourSlotRecipe,
6189
- aireneButtonSlotRecipe
6283
+ aireneButtonSlotRecipe,
6284
+ aireneInputSlotRecipe
6190
6285
  };
6191
6286
 
6192
6287
  // src/text-styles.ts
@@ -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,7 @@ 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;
80
81
  };
81
82
 
82
83
  export { recipes, slotRecipes };
@@ -77,6 +77,7 @@ 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;
80
81
  };
81
82
 
82
83
  export { recipes, slotRecipes };
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.3",
5
5
  "main": "dist/index.js",
6
6
  "license": "MIT",
7
7
  "files": [
@@ -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,7 @@ 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'
70
71
 
71
72
  export const recipes = {
72
73
  buttonRecipe,
@@ -145,5 +146,6 @@ export const slotRecipes = {
145
146
  colorPickerSlotRecipe,
146
147
  sliderSlotRecipe,
147
148
  tourSlotRecipe,
148
- aireneButtonSlotRecipe
149
+ aireneButtonSlotRecipe,
150
+ aireneInputSlotRecipe
149
151
  }
@@ -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,