@mekari/pixel3-theme 0.3.0-dev.4 → 0.3.0-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.
- package/dist/index.js +120 -31
- package/dist/index.mjs +120 -31
- package/dist/tokens/colors.d.mts +3 -0
- package/dist/tokens/colors.d.ts +3 -0
- package/dist/tokens/index.d.mts +3 -0
- package/dist/tokens/index.d.ts +3 -0
- package/package.json +1 -1
- package/src/recipes/airene-chat-bubble.ts +32 -8
- package/src/recipes/airene-chat-input.ts +66 -16
- package/src/recipes/divider.ts +2 -2
- package/src/recipes/scrollbar.ts +1 -1
- package/src/recipes/shared.ts +1 -1
- package/src/recipes/table.ts +34 -2
- package/src/tokens/colors.ts +1 -0
- package/src/tokens/radii.ts +1 -1
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",
|
|
@@ -3391,7 +3423,7 @@ var dividerSlotRecipe = (0, import_dev26.defineSlotRecipe)({
|
|
|
3391
3423
|
_before: {
|
|
3392
3424
|
content: '""',
|
|
3393
3425
|
flex: 1,
|
|
3394
|
-
borderTopWidth: "
|
|
3426
|
+
borderTopWidth: "1px",
|
|
3395
3427
|
marginRight: "2",
|
|
3396
3428
|
borderColor: "gray.100",
|
|
3397
3429
|
_nextTheme: {
|
|
@@ -3401,7 +3433,7 @@ var dividerSlotRecipe = (0, import_dev26.defineSlotRecipe)({
|
|
|
3401
3433
|
_after: {
|
|
3402
3434
|
content: '""',
|
|
3403
3435
|
flex: 1,
|
|
3404
|
-
borderTopWidth: "
|
|
3436
|
+
borderTopWidth: "1px",
|
|
3405
3437
|
marginLeft: "2",
|
|
3406
3438
|
borderColor: "gray.100",
|
|
3407
3439
|
_nextTheme: {
|
|
@@ -6131,7 +6163,7 @@ var skeletonRecipe = (0, import_dev44.defineRecipe)({
|
|
|
6131
6163
|
// src/recipes/scrollbar.ts
|
|
6132
6164
|
var import_dev45 = require("@pandacss/dev");
|
|
6133
6165
|
var scrollbarRecipe = (0, import_dev45.defineRecipe)({
|
|
6134
|
-
className: "
|
|
6166
|
+
className: "scrollbar",
|
|
6135
6167
|
jsx: ["MpScrollbar", "mp-scrollbar"],
|
|
6136
6168
|
base: {
|
|
6137
6169
|
"& .os-scrollbar": {
|
|
@@ -6162,35 +6194,63 @@ var aireneInputSlotRecipe = (0, import_dev46.defineSlotRecipe)({
|
|
|
6162
6194
|
alignItems: "flex-end",
|
|
6163
6195
|
gap: "2",
|
|
6164
6196
|
width: "full",
|
|
6165
|
-
py: "
|
|
6166
|
-
px: "
|
|
6197
|
+
py: "2",
|
|
6198
|
+
px: "4",
|
|
6167
6199
|
rounded: "full",
|
|
6168
6200
|
borderWidth: "1px",
|
|
6169
|
-
borderColor: "
|
|
6170
|
-
backgroundColor: "
|
|
6171
|
-
color: "
|
|
6201
|
+
borderColor: "gray.100",
|
|
6202
|
+
backgroundColor: "white",
|
|
6203
|
+
color: "dark",
|
|
6172
6204
|
transitionDuration: "250ms",
|
|
6173
6205
|
transitionProperty: "border-color",
|
|
6174
6206
|
transitionTimingFunction: "linear",
|
|
6207
|
+
_nextTheme: {
|
|
6208
|
+
gap: "xs",
|
|
6209
|
+
py: "xs",
|
|
6210
|
+
px: "md",
|
|
6211
|
+
borderColor: "border.default",
|
|
6212
|
+
backgroundColor: "background.neutral",
|
|
6213
|
+
color: "text.default"
|
|
6214
|
+
},
|
|
6175
6215
|
_hover: {
|
|
6176
|
-
borderColor: "
|
|
6216
|
+
borderColor: "blue.400",
|
|
6217
|
+
_nextTheme: {
|
|
6218
|
+
borderColor: "border.focused"
|
|
6219
|
+
}
|
|
6177
6220
|
},
|
|
6178
6221
|
_focusWithin: {
|
|
6179
|
-
borderColor: "
|
|
6222
|
+
borderColor: "blue.400",
|
|
6223
|
+
_nextTheme: {
|
|
6224
|
+
borderColor: "border.focused"
|
|
6225
|
+
}
|
|
6180
6226
|
},
|
|
6181
6227
|
_invalid: {
|
|
6182
|
-
borderColor: "
|
|
6183
|
-
|
|
6228
|
+
borderColor: "red.400",
|
|
6229
|
+
_nextTheme: {
|
|
6184
6230
|
borderColor: "border.danger"
|
|
6231
|
+
},
|
|
6232
|
+
_hover: {
|
|
6233
|
+
borderColor: "border.danger",
|
|
6234
|
+
_nextTheme: {
|
|
6235
|
+
borderColor: "red.400"
|
|
6236
|
+
}
|
|
6185
6237
|
}
|
|
6186
6238
|
},
|
|
6187
6239
|
_disabled: {
|
|
6188
|
-
backgroundColor: "
|
|
6189
|
-
borderColor: "
|
|
6190
|
-
color: "
|
|
6240
|
+
backgroundColor: "gray,50",
|
|
6241
|
+
borderColor: "gray.100",
|
|
6242
|
+
color: "gray.400",
|
|
6191
6243
|
cursor: "not-allowed",
|
|
6244
|
+
_nextTheme: {
|
|
6245
|
+
backgroundColor: "background.disabled",
|
|
6246
|
+
borderColor: "border.disabled",
|
|
6247
|
+
color: "text.disabled"
|
|
6248
|
+
},
|
|
6192
6249
|
_hover: {
|
|
6193
|
-
borderColor: "
|
|
6250
|
+
borderColor: "gray.100",
|
|
6251
|
+
_nextTheme: {
|
|
6252
|
+
borderColor: "border.disabled"
|
|
6253
|
+
}
|
|
6194
6254
|
}
|
|
6195
6255
|
}
|
|
6196
6256
|
},
|
|
@@ -6207,20 +6267,29 @@ var aireneInputSlotRecipe = (0, import_dev46.defineSlotRecipe)({
|
|
|
6207
6267
|
maxHeight: "136px",
|
|
6208
6268
|
outline: "none",
|
|
6209
6269
|
resize: "none",
|
|
6210
|
-
caretColor: "
|
|
6270
|
+
caretColor: "blue.400",
|
|
6211
6271
|
fontSize: "md",
|
|
6212
6272
|
fontWeight: "regular",
|
|
6213
6273
|
lineHeight: "md",
|
|
6214
6274
|
scrollbarWidth: "none",
|
|
6275
|
+
_nextTheme: {
|
|
6276
|
+
caretColor: "border.selected"
|
|
6277
|
+
},
|
|
6215
6278
|
"-ms-overflow-style": "none",
|
|
6216
6279
|
"&::-webkit-scrollbar": {
|
|
6217
6280
|
display: "none"
|
|
6218
6281
|
},
|
|
6219
6282
|
"&::selection": {
|
|
6220
|
-
background: "
|
|
6283
|
+
background: "ice.50",
|
|
6284
|
+
_nextTheme: {
|
|
6285
|
+
background: "background.brand"
|
|
6286
|
+
}
|
|
6221
6287
|
},
|
|
6222
6288
|
"&::-moz-selection": {
|
|
6223
|
-
background: "
|
|
6289
|
+
background: "ice.50",
|
|
6290
|
+
_nextTheme: {
|
|
6291
|
+
background: "background.brand"
|
|
6292
|
+
}
|
|
6224
6293
|
}
|
|
6225
6294
|
}
|
|
6226
6295
|
},
|
|
@@ -6241,34 +6310,53 @@ var aireneBubbleSlotRecipe = (0, import_dev47.defineSlotRecipe)({
|
|
|
6241
6310
|
width: "full",
|
|
6242
6311
|
display: "flex",
|
|
6243
6312
|
flexDirection: "column",
|
|
6244
|
-
gap: "
|
|
6245
|
-
py: "
|
|
6313
|
+
gap: "2",
|
|
6314
|
+
py: "2",
|
|
6315
|
+
_nextTheme: {
|
|
6316
|
+
gap: "xs",
|
|
6317
|
+
py: "xs"
|
|
6318
|
+
}
|
|
6246
6319
|
},
|
|
6247
6320
|
header: {
|
|
6248
6321
|
display: "flex",
|
|
6249
6322
|
alignItems: "center",
|
|
6250
|
-
gap: "
|
|
6323
|
+
gap: "2",
|
|
6324
|
+
_nextTheme: {
|
|
6325
|
+
gap: "xs"
|
|
6326
|
+
}
|
|
6251
6327
|
},
|
|
6252
6328
|
loading: {
|
|
6253
6329
|
display: "flex",
|
|
6254
6330
|
flexDirection: "column",
|
|
6255
|
-
gap: "
|
|
6331
|
+
gap: "1.5",
|
|
6332
|
+
_nextTheme: {
|
|
6333
|
+
gap: "2xs"
|
|
6334
|
+
}
|
|
6256
6335
|
},
|
|
6257
6336
|
body: {
|
|
6258
6337
|
position: "relative",
|
|
6259
6338
|
display: "flex",
|
|
6260
6339
|
flexDirection: "column",
|
|
6261
|
-
gap: "
|
|
6262
|
-
padding: "
|
|
6340
|
+
gap: "3",
|
|
6341
|
+
padding: "3",
|
|
6263
6342
|
background: "lightPurple",
|
|
6264
6343
|
borderRadius: "lg",
|
|
6265
6344
|
borderWidth: "1px",
|
|
6266
6345
|
borderStyle: "solid",
|
|
6267
|
-
borderColor: "
|
|
6346
|
+
borderColor: "blue.50",
|
|
6347
|
+
_nextTheme: {
|
|
6348
|
+
gap: "sm",
|
|
6349
|
+
padding: "sm",
|
|
6350
|
+
background: "lightPurple",
|
|
6351
|
+
borderColor: "background.neutral.subtle"
|
|
6352
|
+
}
|
|
6268
6353
|
},
|
|
6269
6354
|
text: {
|
|
6270
6355
|
display: "flex",
|
|
6271
|
-
gap: "
|
|
6356
|
+
gap: "2",
|
|
6357
|
+
_nextTheme: {
|
|
6358
|
+
gap: "xs"
|
|
6359
|
+
}
|
|
6272
6360
|
}
|
|
6273
6361
|
},
|
|
6274
6362
|
variants: {},
|
|
@@ -6424,6 +6512,7 @@ var colors = import_dev50.defineTokens.colors({
|
|
|
6424
6512
|
overlay: { value: "rgba(22, 26, 32, 0.8)" },
|
|
6425
6513
|
white: { value: "#FFFFFF" },
|
|
6426
6514
|
vibrantPurple: { value: "linear-gradient(98deg, #F8F9FB 0%, #B5A2EC 50.01%, #4B61DD 100%)" },
|
|
6515
|
+
lightPurple: { value: "radial-gradient(108.28% 139.29% at 0% 0%, #E9F1FD 0%, #F4F0FF 100%)" },
|
|
6427
6516
|
whiteAlpha: {
|
|
6428
6517
|
50: { value: "rgba(255, 255, 255, 0.04)" },
|
|
6429
6518
|
100: { value: "rgba(255, 255, 255, 0.06)" },
|
|
@@ -6583,7 +6672,7 @@ var radii = import_dev53.defineTokens.radii({
|
|
|
6583
6672
|
md: { value: "0.375rem", description: "6px" },
|
|
6584
6673
|
lg: { value: "0.5rem", description: "8px" },
|
|
6585
6674
|
xl: { value: "0.75rem", description: "12px" },
|
|
6586
|
-
full: { value: "
|
|
6675
|
+
full: { value: "999px" }
|
|
6587
6676
|
});
|
|
6588
6677
|
|
|
6589
6678
|
// 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",
|
|
@@ -3365,7 +3397,7 @@ var dividerSlotRecipe = defineSlotRecipe15({
|
|
|
3365
3397
|
_before: {
|
|
3366
3398
|
content: '""',
|
|
3367
3399
|
flex: 1,
|
|
3368
|
-
borderTopWidth: "
|
|
3400
|
+
borderTopWidth: "1px",
|
|
3369
3401
|
marginRight: "2",
|
|
3370
3402
|
borderColor: "gray.100",
|
|
3371
3403
|
_nextTheme: {
|
|
@@ -3375,7 +3407,7 @@ var dividerSlotRecipe = defineSlotRecipe15({
|
|
|
3375
3407
|
_after: {
|
|
3376
3408
|
content: '""',
|
|
3377
3409
|
flex: 1,
|
|
3378
|
-
borderTopWidth: "
|
|
3410
|
+
borderTopWidth: "1px",
|
|
3379
3411
|
marginLeft: "2",
|
|
3380
3412
|
borderColor: "gray.100",
|
|
3381
3413
|
_nextTheme: {
|
|
@@ -6105,7 +6137,7 @@ var skeletonRecipe = defineRecipe15({
|
|
|
6105
6137
|
// src/recipes/scrollbar.ts
|
|
6106
6138
|
import { defineRecipe as defineRecipe16 } from "@pandacss/dev";
|
|
6107
6139
|
var scrollbarRecipe = defineRecipe16({
|
|
6108
|
-
className: "
|
|
6140
|
+
className: "scrollbar",
|
|
6109
6141
|
jsx: ["MpScrollbar", "mp-scrollbar"],
|
|
6110
6142
|
base: {
|
|
6111
6143
|
"& .os-scrollbar": {
|
|
@@ -6136,35 +6168,63 @@ var aireneInputSlotRecipe = defineSlotRecipe32({
|
|
|
6136
6168
|
alignItems: "flex-end",
|
|
6137
6169
|
gap: "2",
|
|
6138
6170
|
width: "full",
|
|
6139
|
-
py: "
|
|
6140
|
-
px: "
|
|
6171
|
+
py: "2",
|
|
6172
|
+
px: "4",
|
|
6141
6173
|
rounded: "full",
|
|
6142
6174
|
borderWidth: "1px",
|
|
6143
|
-
borderColor: "
|
|
6144
|
-
backgroundColor: "
|
|
6145
|
-
color: "
|
|
6175
|
+
borderColor: "gray.100",
|
|
6176
|
+
backgroundColor: "white",
|
|
6177
|
+
color: "dark",
|
|
6146
6178
|
transitionDuration: "250ms",
|
|
6147
6179
|
transitionProperty: "border-color",
|
|
6148
6180
|
transitionTimingFunction: "linear",
|
|
6181
|
+
_nextTheme: {
|
|
6182
|
+
gap: "xs",
|
|
6183
|
+
py: "xs",
|
|
6184
|
+
px: "md",
|
|
6185
|
+
borderColor: "border.default",
|
|
6186
|
+
backgroundColor: "background.neutral",
|
|
6187
|
+
color: "text.default"
|
|
6188
|
+
},
|
|
6149
6189
|
_hover: {
|
|
6150
|
-
borderColor: "
|
|
6190
|
+
borderColor: "blue.400",
|
|
6191
|
+
_nextTheme: {
|
|
6192
|
+
borderColor: "border.focused"
|
|
6193
|
+
}
|
|
6151
6194
|
},
|
|
6152
6195
|
_focusWithin: {
|
|
6153
|
-
borderColor: "
|
|
6196
|
+
borderColor: "blue.400",
|
|
6197
|
+
_nextTheme: {
|
|
6198
|
+
borderColor: "border.focused"
|
|
6199
|
+
}
|
|
6154
6200
|
},
|
|
6155
6201
|
_invalid: {
|
|
6156
|
-
borderColor: "
|
|
6157
|
-
|
|
6202
|
+
borderColor: "red.400",
|
|
6203
|
+
_nextTheme: {
|
|
6158
6204
|
borderColor: "border.danger"
|
|
6205
|
+
},
|
|
6206
|
+
_hover: {
|
|
6207
|
+
borderColor: "border.danger",
|
|
6208
|
+
_nextTheme: {
|
|
6209
|
+
borderColor: "red.400"
|
|
6210
|
+
}
|
|
6159
6211
|
}
|
|
6160
6212
|
},
|
|
6161
6213
|
_disabled: {
|
|
6162
|
-
backgroundColor: "
|
|
6163
|
-
borderColor: "
|
|
6164
|
-
color: "
|
|
6214
|
+
backgroundColor: "gray,50",
|
|
6215
|
+
borderColor: "gray.100",
|
|
6216
|
+
color: "gray.400",
|
|
6165
6217
|
cursor: "not-allowed",
|
|
6218
|
+
_nextTheme: {
|
|
6219
|
+
backgroundColor: "background.disabled",
|
|
6220
|
+
borderColor: "border.disabled",
|
|
6221
|
+
color: "text.disabled"
|
|
6222
|
+
},
|
|
6166
6223
|
_hover: {
|
|
6167
|
-
borderColor: "
|
|
6224
|
+
borderColor: "gray.100",
|
|
6225
|
+
_nextTheme: {
|
|
6226
|
+
borderColor: "border.disabled"
|
|
6227
|
+
}
|
|
6168
6228
|
}
|
|
6169
6229
|
}
|
|
6170
6230
|
},
|
|
@@ -6181,20 +6241,29 @@ var aireneInputSlotRecipe = defineSlotRecipe32({
|
|
|
6181
6241
|
maxHeight: "136px",
|
|
6182
6242
|
outline: "none",
|
|
6183
6243
|
resize: "none",
|
|
6184
|
-
caretColor: "
|
|
6244
|
+
caretColor: "blue.400",
|
|
6185
6245
|
fontSize: "md",
|
|
6186
6246
|
fontWeight: "regular",
|
|
6187
6247
|
lineHeight: "md",
|
|
6188
6248
|
scrollbarWidth: "none",
|
|
6249
|
+
_nextTheme: {
|
|
6250
|
+
caretColor: "border.selected"
|
|
6251
|
+
},
|
|
6189
6252
|
"-ms-overflow-style": "none",
|
|
6190
6253
|
"&::-webkit-scrollbar": {
|
|
6191
6254
|
display: "none"
|
|
6192
6255
|
},
|
|
6193
6256
|
"&::selection": {
|
|
6194
|
-
background: "
|
|
6257
|
+
background: "ice.50",
|
|
6258
|
+
_nextTheme: {
|
|
6259
|
+
background: "background.brand"
|
|
6260
|
+
}
|
|
6195
6261
|
},
|
|
6196
6262
|
"&::-moz-selection": {
|
|
6197
|
-
background: "
|
|
6263
|
+
background: "ice.50",
|
|
6264
|
+
_nextTheme: {
|
|
6265
|
+
background: "background.brand"
|
|
6266
|
+
}
|
|
6198
6267
|
}
|
|
6199
6268
|
}
|
|
6200
6269
|
},
|
|
@@ -6215,34 +6284,53 @@ var aireneBubbleSlotRecipe = defineSlotRecipe33({
|
|
|
6215
6284
|
width: "full",
|
|
6216
6285
|
display: "flex",
|
|
6217
6286
|
flexDirection: "column",
|
|
6218
|
-
gap: "
|
|
6219
|
-
py: "
|
|
6287
|
+
gap: "2",
|
|
6288
|
+
py: "2",
|
|
6289
|
+
_nextTheme: {
|
|
6290
|
+
gap: "xs",
|
|
6291
|
+
py: "xs"
|
|
6292
|
+
}
|
|
6220
6293
|
},
|
|
6221
6294
|
header: {
|
|
6222
6295
|
display: "flex",
|
|
6223
6296
|
alignItems: "center",
|
|
6224
|
-
gap: "
|
|
6297
|
+
gap: "2",
|
|
6298
|
+
_nextTheme: {
|
|
6299
|
+
gap: "xs"
|
|
6300
|
+
}
|
|
6225
6301
|
},
|
|
6226
6302
|
loading: {
|
|
6227
6303
|
display: "flex",
|
|
6228
6304
|
flexDirection: "column",
|
|
6229
|
-
gap: "
|
|
6305
|
+
gap: "1.5",
|
|
6306
|
+
_nextTheme: {
|
|
6307
|
+
gap: "2xs"
|
|
6308
|
+
}
|
|
6230
6309
|
},
|
|
6231
6310
|
body: {
|
|
6232
6311
|
position: "relative",
|
|
6233
6312
|
display: "flex",
|
|
6234
6313
|
flexDirection: "column",
|
|
6235
|
-
gap: "
|
|
6236
|
-
padding: "
|
|
6314
|
+
gap: "3",
|
|
6315
|
+
padding: "3",
|
|
6237
6316
|
background: "lightPurple",
|
|
6238
6317
|
borderRadius: "lg",
|
|
6239
6318
|
borderWidth: "1px",
|
|
6240
6319
|
borderStyle: "solid",
|
|
6241
|
-
borderColor: "
|
|
6320
|
+
borderColor: "blue.50",
|
|
6321
|
+
_nextTheme: {
|
|
6322
|
+
gap: "sm",
|
|
6323
|
+
padding: "sm",
|
|
6324
|
+
background: "lightPurple",
|
|
6325
|
+
borderColor: "background.neutral.subtle"
|
|
6326
|
+
}
|
|
6242
6327
|
},
|
|
6243
6328
|
text: {
|
|
6244
6329
|
display: "flex",
|
|
6245
|
-
gap: "
|
|
6330
|
+
gap: "2",
|
|
6331
|
+
_nextTheme: {
|
|
6332
|
+
gap: "xs"
|
|
6333
|
+
}
|
|
6246
6334
|
}
|
|
6247
6335
|
},
|
|
6248
6336
|
variants: {},
|
|
@@ -6398,6 +6486,7 @@ var colors = defineTokens2.colors({
|
|
|
6398
6486
|
overlay: { value: "rgba(22, 26, 32, 0.8)" },
|
|
6399
6487
|
white: { value: "#FFFFFF" },
|
|
6400
6488
|
vibrantPurple: { value: "linear-gradient(98deg, #F8F9FB 0%, #B5A2EC 50.01%, #4B61DD 100%)" },
|
|
6489
|
+
lightPurple: { value: "radial-gradient(108.28% 139.29% at 0% 0%, #E9F1FD 0%, #F4F0FF 100%)" },
|
|
6401
6490
|
whiteAlpha: {
|
|
6402
6491
|
50: { value: "rgba(255, 255, 255, 0.04)" },
|
|
6403
6492
|
100: { value: "rgba(255, 255, 255, 0.06)" },
|
|
@@ -6557,7 +6646,7 @@ var radii = defineTokens5.radii({
|
|
|
6557
6646
|
md: { value: "0.375rem", description: "6px" },
|
|
6558
6647
|
lg: { value: "0.5rem", description: "8px" },
|
|
6559
6648
|
xl: { value: "0.75rem", description: "12px" },
|
|
6560
|
-
full: { value: "
|
|
6649
|
+
full: { value: "999px" }
|
|
6561
6650
|
});
|
|
6562
6651
|
|
|
6563
6652
|
// src/tokens/shadows.ts
|
package/dist/tokens/colors.d.mts
CHANGED
package/dist/tokens/colors.d.ts
CHANGED
package/dist/tokens/index.d.mts
CHANGED
package/dist/tokens/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -10,34 +10,58 @@ const aireneBubbleSlotRecipe = defineSlotRecipe({
|
|
|
10
10
|
width: 'full',
|
|
11
11
|
display: 'flex',
|
|
12
12
|
flexDirection: 'column',
|
|
13
|
-
gap: '
|
|
14
|
-
py: '
|
|
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: '
|
|
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: '
|
|
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: '
|
|
31
|
-
padding: '
|
|
43
|
+
gap: '3',
|
|
44
|
+
padding: '3',
|
|
32
45
|
background: 'lightPurple',
|
|
33
46
|
borderRadius: 'lg',
|
|
34
47
|
borderWidth: '1px',
|
|
35
48
|
borderStyle: 'solid',
|
|
36
|
-
borderColor: '
|
|
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: '
|
|
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: '
|
|
15
|
-
px: '
|
|
14
|
+
py: '2',
|
|
15
|
+
px: '4',
|
|
16
16
|
rounded: 'full',
|
|
17
17
|
borderWidth: '1px',
|
|
18
|
-
borderColor: '
|
|
19
|
-
backgroundColor: '
|
|
20
|
-
color: '
|
|
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: '
|
|
35
|
+
borderColor: 'blue.400',
|
|
36
|
+
|
|
37
|
+
_nextTheme: {
|
|
38
|
+
borderColor: 'border.focused'
|
|
39
|
+
}
|
|
27
40
|
},
|
|
28
41
|
_focusWithin: {
|
|
29
|
-
borderColor: '
|
|
42
|
+
borderColor: 'blue.400',
|
|
43
|
+
|
|
44
|
+
_nextTheme: {
|
|
45
|
+
borderColor: 'border.focused'
|
|
46
|
+
}
|
|
30
47
|
},
|
|
31
48
|
_invalid: {
|
|
32
|
-
borderColor: '
|
|
33
|
-
|
|
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: '
|
|
39
|
-
borderColor: '
|
|
40
|
-
color: '
|
|
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: '
|
|
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: '
|
|
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: '
|
|
112
|
+
background: 'ice.50',
|
|
113
|
+
|
|
114
|
+
_nextTheme: {
|
|
115
|
+
background: 'background.brand'
|
|
116
|
+
}
|
|
71
117
|
},
|
|
72
118
|
'&::-moz-selection': {
|
|
73
|
-
background: '
|
|
119
|
+
background: 'ice.50',
|
|
120
|
+
|
|
121
|
+
_nextTheme: {
|
|
122
|
+
background: 'background.brand'
|
|
123
|
+
}
|
|
74
124
|
}
|
|
75
125
|
}
|
|
76
126
|
},
|
package/src/recipes/divider.ts
CHANGED
|
@@ -25,7 +25,7 @@ const dividerSlotRecipe = defineSlotRecipe({
|
|
|
25
25
|
_before: {
|
|
26
26
|
content: '""',
|
|
27
27
|
flex: 1,
|
|
28
|
-
borderTopWidth: '
|
|
28
|
+
borderTopWidth: '1px',
|
|
29
29
|
marginRight: '2',
|
|
30
30
|
borderColor: 'gray.100',
|
|
31
31
|
_nextTheme: {
|
|
@@ -35,7 +35,7 @@ const dividerSlotRecipe = defineSlotRecipe({
|
|
|
35
35
|
_after: {
|
|
36
36
|
content: '""',
|
|
37
37
|
flex: 1,
|
|
38
|
-
borderTopWidth: '
|
|
38
|
+
borderTopWidth: '1px',
|
|
39
39
|
marginLeft: '2',
|
|
40
40
|
borderColor: 'gray.100',
|
|
41
41
|
_nextTheme: {
|
package/src/recipes/scrollbar.ts
CHANGED
package/src/recipes/shared.ts
CHANGED
|
@@ -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: {
|
package/src/recipes/table.ts
CHANGED
|
@@ -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',
|
package/src/tokens/colors.ts
CHANGED
|
@@ -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)' },
|
package/src/tokens/radii.ts
CHANGED