@mekari/pixel3-theme 0.2.2-dev.3 → 0.2.2-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 +285 -102
- package/dist/index.mjs +292 -109
- package/dist/recipes/divider.d.mts +2 -2
- package/dist/recipes/divider.d.ts +2 -2
- package/dist/recipes/index.d.mts +2 -1
- package/dist/recipes/index.d.ts +2 -1
- package/dist/recipes/textlink.d.mts +5 -0
- package/dist/recipes/textlink.d.ts +5 -0
- package/package.json +1 -1
- package/src/recipes/airene-button.ts +1 -1
- package/src/recipes/autocomplete.ts +23 -9
- package/src/recipes/broadcast.ts +27 -1
- package/src/recipes/button.ts +3 -0
- package/src/recipes/date-picker.ts +13 -4
- package/src/recipes/divider.ts +37 -31
- package/src/recipes/index.ts +5 -3
- package/src/recipes/modal.ts +4 -1
- package/src/recipes/popover.ts +3 -2
- package/src/recipes/select.ts +4 -4
- package/src/recipes/tag.ts +10 -15
- package/src/recipes/textlink.ts +105 -0
- package/src/recipes/timeline.ts +4 -2
- package/src/recipes/toast.ts +21 -1
- package/src/tokens/typography.ts +1 -1
package/dist/index.mjs
CHANGED
|
@@ -208,18 +208,13 @@ var tagSlotRecipe = defineSlotRecipe({
|
|
|
208
208
|
}
|
|
209
209
|
}
|
|
210
210
|
}
|
|
211
|
-
},
|
|
212
|
-
{
|
|
213
|
-
size: "sm",
|
|
214
|
-
css: {
|
|
215
|
-
close: { paddingTop: "0" }
|
|
216
|
-
}
|
|
217
211
|
}
|
|
218
212
|
],
|
|
219
213
|
defaultVariants: {
|
|
220
214
|
size: "md",
|
|
221
215
|
variant: "gray"
|
|
222
|
-
}
|
|
216
|
+
},
|
|
217
|
+
staticCss: ["*"]
|
|
223
218
|
});
|
|
224
219
|
|
|
225
220
|
// src/recipes/avatar.ts
|
|
@@ -502,7 +497,7 @@ var aireneButtonSlotRecipe = defineSlotRecipe3({
|
|
|
502
497
|
color: "blue.400!",
|
|
503
498
|
borderRadius: "25px!",
|
|
504
499
|
fontSize: "md",
|
|
505
|
-
fontWeight: "semiBold",
|
|
500
|
+
fontWeight: "semiBold!",
|
|
506
501
|
paddingLeft: "0.625rem!",
|
|
507
502
|
paddingRight: "0.625rem!",
|
|
508
503
|
overflow: "hidden",
|
|
@@ -627,6 +622,9 @@ var buttonRecipe = defineRecipe({
|
|
|
627
622
|
transitionDuration: "250ms",
|
|
628
623
|
transitionProperty: "background, border-color, color, box-shadow",
|
|
629
624
|
transitionTimingFunction: "linear",
|
|
625
|
+
_isFullWidth: {
|
|
626
|
+
width: "full"
|
|
627
|
+
},
|
|
630
628
|
_loading: {
|
|
631
629
|
cursor: "wait",
|
|
632
630
|
position: "absolute",
|
|
@@ -1481,15 +1479,15 @@ var selectSlotRecipe = defineSlotRecipe5({
|
|
|
1481
1479
|
}
|
|
1482
1480
|
},
|
|
1483
1481
|
_focus: {
|
|
1484
|
-
borderColor: "
|
|
1482
|
+
borderColor: "border.focused",
|
|
1485
1483
|
boxShadow: "focus",
|
|
1486
1484
|
_hover: {
|
|
1487
|
-
borderColor: "
|
|
1485
|
+
borderColor: "border.focused"
|
|
1488
1486
|
},
|
|
1489
1487
|
_invalid: {
|
|
1490
|
-
borderColor: "
|
|
1488
|
+
borderColor: "border.focused",
|
|
1491
1489
|
_hover: {
|
|
1492
|
-
borderColor: "
|
|
1490
|
+
borderColor: "border.focused"
|
|
1493
1491
|
}
|
|
1494
1492
|
}
|
|
1495
1493
|
},
|
|
@@ -1825,7 +1823,8 @@ var popoverContentRecipe = defineRecipe5({
|
|
|
1825
1823
|
defaultVariants: {
|
|
1826
1824
|
isDark: false,
|
|
1827
1825
|
isUnstyled: false
|
|
1828
|
-
}
|
|
1826
|
+
},
|
|
1827
|
+
staticCss: ["*"]
|
|
1829
1828
|
});
|
|
1830
1829
|
var popoverListRecipe = defineRecipe5({
|
|
1831
1830
|
className: "popover-list",
|
|
@@ -1872,7 +1871,7 @@ var popoverListItemRecipe = defineRecipe5({
|
|
|
1872
1871
|
color: "text.default"
|
|
1873
1872
|
}
|
|
1874
1873
|
},
|
|
1875
|
-
|
|
1874
|
+
'&[data-active="true"]': {
|
|
1876
1875
|
background: "ice.50",
|
|
1877
1876
|
color: "dark",
|
|
1878
1877
|
outline: 0,
|
|
@@ -3314,50 +3313,56 @@ var inputTagSlotRecipe = defineSlotRecipe14({
|
|
|
3314
3313
|
});
|
|
3315
3314
|
|
|
3316
3315
|
// src/recipes/divider.ts
|
|
3317
|
-
import {
|
|
3318
|
-
var
|
|
3316
|
+
import { defineSlotRecipe as defineSlotRecipe15 } from "@pandacss/dev";
|
|
3317
|
+
var dividerSlotRecipe = defineSlotRecipe15({
|
|
3319
3318
|
className: "divider",
|
|
3320
3319
|
jsx: ["MpDivider", "mp-divider"],
|
|
3320
|
+
slots: ["root", "label"],
|
|
3321
3321
|
base: {
|
|
3322
|
-
|
|
3323
|
-
|
|
3324
|
-
|
|
3325
|
-
|
|
3326
|
-
|
|
3327
|
-
|
|
3328
|
-
|
|
3329
|
-
},
|
|
3330
|
-
variants: {
|
|
3331
|
-
variant: {
|
|
3332
|
-
solid: {
|
|
3333
|
-
borderStyle: "solid"
|
|
3334
|
-
},
|
|
3335
|
-
dashed: {
|
|
3336
|
-
borderStyle: "dashed"
|
|
3322
|
+
root: {
|
|
3323
|
+
position: "relative",
|
|
3324
|
+
borderColor: "gray.100",
|
|
3325
|
+
color: "gray.100",
|
|
3326
|
+
_nextTheme: {
|
|
3327
|
+
color: "text.secondary",
|
|
3328
|
+
borderColor: "border.default"
|
|
3337
3329
|
}
|
|
3338
3330
|
},
|
|
3339
|
-
|
|
3340
|
-
|
|
3341
|
-
|
|
3342
|
-
|
|
3343
|
-
|
|
3331
|
+
label: {
|
|
3332
|
+
display: "flex",
|
|
3333
|
+
alignItems: "center",
|
|
3334
|
+
borderColor: "gray.100",
|
|
3335
|
+
color: "gray.600",
|
|
3336
|
+
_nextTheme: {
|
|
3337
|
+
color: "text.secondary"
|
|
3344
3338
|
},
|
|
3345
|
-
|
|
3346
|
-
|
|
3347
|
-
|
|
3348
|
-
|
|
3339
|
+
_before: {
|
|
3340
|
+
content: '""',
|
|
3341
|
+
flex: 1,
|
|
3342
|
+
borderTopWidth: "0.0625rem",
|
|
3343
|
+
marginRight: "2",
|
|
3344
|
+
borderColor: "gray.100",
|
|
3345
|
+
_nextTheme: {
|
|
3346
|
+
borderColor: "border.default"
|
|
3347
|
+
}
|
|
3348
|
+
},
|
|
3349
|
+
_after: {
|
|
3350
|
+
content: '""',
|
|
3351
|
+
flex: 1,
|
|
3352
|
+
borderTopWidth: "0.0625rem",
|
|
3353
|
+
marginLeft: "2",
|
|
3354
|
+
borderColor: "gray.100",
|
|
3355
|
+
_nextTheme: {
|
|
3356
|
+
borderColor: "border.default"
|
|
3357
|
+
}
|
|
3349
3358
|
}
|
|
3350
3359
|
}
|
|
3351
|
-
},
|
|
3352
|
-
compoundVariants: [],
|
|
3353
|
-
defaultVariants: {
|
|
3354
|
-
orientation: "horizontal"
|
|
3355
3360
|
}
|
|
3356
3361
|
});
|
|
3357
3362
|
|
|
3358
3363
|
// src/recipes/modal.ts
|
|
3359
|
-
import { defineSlotRecipe as
|
|
3360
|
-
var modalSlotRecipe =
|
|
3364
|
+
import { defineSlotRecipe as defineSlotRecipe16 } from "@pandacss/dev";
|
|
3365
|
+
var modalSlotRecipe = defineSlotRecipe16({
|
|
3361
3366
|
className: "modal",
|
|
3362
3367
|
description: "The styles for the Modal component",
|
|
3363
3368
|
jsx: ["MpModal", "mp-modal"],
|
|
@@ -3458,7 +3463,10 @@ var modalSlotRecipe = defineSlotRecipe15({
|
|
|
3458
3463
|
top: "0",
|
|
3459
3464
|
w: "100vw",
|
|
3460
3465
|
h: "100vh",
|
|
3461
|
-
zIndex: "overlay"
|
|
3466
|
+
zIndex: "overlay",
|
|
3467
|
+
_nextTheme: {
|
|
3468
|
+
background: "background.overlay"
|
|
3469
|
+
}
|
|
3462
3470
|
}
|
|
3463
3471
|
},
|
|
3464
3472
|
variants: {
|
|
@@ -3491,8 +3499,8 @@ var modalSlotRecipe = defineSlotRecipe15({
|
|
|
3491
3499
|
});
|
|
3492
3500
|
|
|
3493
3501
|
// src/recipes/upload.ts
|
|
3494
|
-
import { defineSlotRecipe as
|
|
3495
|
-
var uploadSlotRecipe =
|
|
3502
|
+
import { defineSlotRecipe as defineSlotRecipe17 } from "@pandacss/dev";
|
|
3503
|
+
var uploadSlotRecipe = defineSlotRecipe17({
|
|
3496
3504
|
className: "upload",
|
|
3497
3505
|
jsx: ["MpUpload", "mp-upload"],
|
|
3498
3506
|
slots: ["root", "resetButton"],
|
|
@@ -3577,7 +3585,7 @@ var uploadSlotRecipe = defineSlotRecipe16({
|
|
|
3577
3585
|
}
|
|
3578
3586
|
}
|
|
3579
3587
|
});
|
|
3580
|
-
var uploadListSlotRecipe =
|
|
3588
|
+
var uploadListSlotRecipe = defineSlotRecipe17({
|
|
3581
3589
|
className: "upload-list",
|
|
3582
3590
|
jsx: ["MpUploadList", "mp-upload-list"],
|
|
3583
3591
|
slots: ["root", "titleWrapper", "actionWrapper"],
|
|
@@ -3620,8 +3628,8 @@ var uploadListSlotRecipe = defineSlotRecipe16({
|
|
|
3620
3628
|
});
|
|
3621
3629
|
|
|
3622
3630
|
// src/recipes/dropzone.ts
|
|
3623
|
-
import { defineSlotRecipe as
|
|
3624
|
-
var dropzoneSlotRecipe =
|
|
3631
|
+
import { defineSlotRecipe as defineSlotRecipe18 } from "@pandacss/dev";
|
|
3632
|
+
var dropzoneSlotRecipe = defineSlotRecipe18({
|
|
3625
3633
|
className: "dropzone",
|
|
3626
3634
|
jsx: ["MpDropzone", "mp-dropzone"],
|
|
3627
3635
|
slots: [
|
|
@@ -3850,8 +3858,8 @@ var dropzoneSlotRecipe = defineSlotRecipe17({
|
|
|
3850
3858
|
});
|
|
3851
3859
|
|
|
3852
3860
|
// src/recipes/segmented-control.ts
|
|
3853
|
-
import { defineSlotRecipe as
|
|
3854
|
-
var segmentedControlSlotRecipe =
|
|
3861
|
+
import { defineSlotRecipe as defineSlotRecipe19 } from "@pandacss/dev";
|
|
3862
|
+
var segmentedControlSlotRecipe = defineSlotRecipe19({
|
|
3855
3863
|
className: "segmented-control",
|
|
3856
3864
|
jsx: ["MpSegmentedControl", "mp-segmented-control"],
|
|
3857
3865
|
slots: ["root", "item", "hidden", "control", "label", "icon"],
|
|
@@ -3978,8 +3986,8 @@ var segmentedControlSlotRecipe = defineSlotRecipe18({
|
|
|
3978
3986
|
});
|
|
3979
3987
|
|
|
3980
3988
|
// src/recipes/toast.ts
|
|
3981
|
-
import { defineSlotRecipe as
|
|
3982
|
-
var toastSlotRecipe =
|
|
3989
|
+
import { defineSlotRecipe as defineSlotRecipe20 } from "@pandacss/dev";
|
|
3990
|
+
var toastSlotRecipe = defineSlotRecipe20({
|
|
3983
3991
|
className: "toast",
|
|
3984
3992
|
jsx: ["MpToast", "mp-toast"],
|
|
3985
3993
|
slots: ["root", "icon", "label"],
|
|
@@ -4009,7 +4017,8 @@ var toastSlotRecipe = defineSlotRecipe19({
|
|
|
4009
4017
|
variants: {
|
|
4010
4018
|
variant: {
|
|
4011
4019
|
success: {},
|
|
4012
|
-
error: {}
|
|
4020
|
+
error: {},
|
|
4021
|
+
greeting: {}
|
|
4013
4022
|
}
|
|
4014
4023
|
},
|
|
4015
4024
|
compoundVariants: [
|
|
@@ -4034,6 +4043,25 @@ var toastSlotRecipe = defineSlotRecipe19({
|
|
|
4034
4043
|
}
|
|
4035
4044
|
}
|
|
4036
4045
|
}
|
|
4046
|
+
},
|
|
4047
|
+
{
|
|
4048
|
+
variant: "greeting",
|
|
4049
|
+
css: {
|
|
4050
|
+
root: {
|
|
4051
|
+
borderRadius: "999px",
|
|
4052
|
+
border: "none",
|
|
4053
|
+
backgroundColor: "overlay",
|
|
4054
|
+
_nextTheme: {
|
|
4055
|
+
backgroundColor: "background.overlay"
|
|
4056
|
+
}
|
|
4057
|
+
},
|
|
4058
|
+
label: {
|
|
4059
|
+
color: "white",
|
|
4060
|
+
_nextTheme: {
|
|
4061
|
+
color: "text.inverse-static"
|
|
4062
|
+
}
|
|
4063
|
+
}
|
|
4064
|
+
}
|
|
4037
4065
|
}
|
|
4038
4066
|
],
|
|
4039
4067
|
defaultVariants: {
|
|
@@ -4042,8 +4070,8 @@ var toastSlotRecipe = defineSlotRecipe19({
|
|
|
4042
4070
|
});
|
|
4043
4071
|
|
|
4044
4072
|
// src/recipes/broadcast.ts
|
|
4045
|
-
import { defineSlotRecipe as
|
|
4046
|
-
var broadcastSlotRecipe =
|
|
4073
|
+
import { defineSlotRecipe as defineSlotRecipe21 } from "@pandacss/dev";
|
|
4074
|
+
var broadcastSlotRecipe = defineSlotRecipe21({
|
|
4047
4075
|
className: "broadcast",
|
|
4048
4076
|
jsx: ["MpBroadcast", "mp-broadcast"],
|
|
4049
4077
|
slots: ["root", "container", "wrapper", "icon", "label", "textLink", "action", "close"],
|
|
@@ -4169,6 +4197,32 @@ var broadcastSlotRecipe = defineSlotRecipe20({
|
|
|
4169
4197
|
color: "text.warning.inverse"
|
|
4170
4198
|
}
|
|
4171
4199
|
}
|
|
4200
|
+
},
|
|
4201
|
+
critical: {
|
|
4202
|
+
container: {
|
|
4203
|
+
backgroundColor: "rose.400",
|
|
4204
|
+
_nextTheme: {
|
|
4205
|
+
backgroundColor: "background.danger.bold"
|
|
4206
|
+
}
|
|
4207
|
+
},
|
|
4208
|
+
icon: {
|
|
4209
|
+
color: "white",
|
|
4210
|
+
_nextTheme: {
|
|
4211
|
+
color: "icon.inverse"
|
|
4212
|
+
}
|
|
4213
|
+
},
|
|
4214
|
+
label: {
|
|
4215
|
+
color: "white",
|
|
4216
|
+
_nextTheme: {
|
|
4217
|
+
color: "text.inverse"
|
|
4218
|
+
}
|
|
4219
|
+
},
|
|
4220
|
+
textLink: {
|
|
4221
|
+
color: "white",
|
|
4222
|
+
_nextTheme: {
|
|
4223
|
+
color: "text.inverse"
|
|
4224
|
+
}
|
|
4225
|
+
}
|
|
4172
4226
|
}
|
|
4173
4227
|
}
|
|
4174
4228
|
},
|
|
@@ -4179,8 +4233,8 @@ var broadcastSlotRecipe = defineSlotRecipe20({
|
|
|
4179
4233
|
});
|
|
4180
4234
|
|
|
4181
4235
|
// src/recipes/rich-text-editor.ts
|
|
4182
|
-
import { defineRecipe as
|
|
4183
|
-
var richTextEditorSlotRecipe =
|
|
4236
|
+
import { defineRecipe as defineRecipe11, defineSlotRecipe as defineSlotRecipe22 } from "@pandacss/dev";
|
|
4237
|
+
var richTextEditorSlotRecipe = defineSlotRecipe22({
|
|
4184
4238
|
className: "rich-text-editor",
|
|
4185
4239
|
jsx: ["MpRichTextEditor", "mp-rich-text-editor"],
|
|
4186
4240
|
slots: ["root", "toolbar", "area"],
|
|
@@ -4285,7 +4339,7 @@ var richTextEditorSlotRecipe = defineSlotRecipe21({
|
|
|
4285
4339
|
compoundVariants: [],
|
|
4286
4340
|
defaultVariants: {}
|
|
4287
4341
|
});
|
|
4288
|
-
var RTEStyleProviderRecipe =
|
|
4342
|
+
var RTEStyleProviderRecipe = defineRecipe11({
|
|
4289
4343
|
className: "typography-style-provider",
|
|
4290
4344
|
jsx: ["MpTypographyStyleProvider", "mp-typography-style-provider"],
|
|
4291
4345
|
base: {
|
|
@@ -4342,8 +4396,8 @@ var RTEStyleProviderRecipe = defineRecipe12({
|
|
|
4342
4396
|
});
|
|
4343
4397
|
|
|
4344
4398
|
// src/recipes/date-picker.ts
|
|
4345
|
-
import { defineSlotRecipe as
|
|
4346
|
-
var datePickerSlotRecipe =
|
|
4399
|
+
import { defineSlotRecipe as defineSlotRecipe23, defineRecipe as defineRecipe12 } from "@pandacss/dev";
|
|
4400
|
+
var datePickerSlotRecipe = defineSlotRecipe23({
|
|
4347
4401
|
className: "datepicker",
|
|
4348
4402
|
jsx: ["MpDatePicker", "mp-date-picker"],
|
|
4349
4403
|
slots: ["root", "popoverContent"],
|
|
@@ -4370,14 +4424,14 @@ var datePickerSlotRecipe = defineSlotRecipe22({
|
|
|
4370
4424
|
}
|
|
4371
4425
|
}
|
|
4372
4426
|
});
|
|
4373
|
-
var calendarPanelRangeRecipe =
|
|
4427
|
+
var calendarPanelRangeRecipe = defineRecipe12({
|
|
4374
4428
|
className: "calendarPanelRange",
|
|
4375
4429
|
base: {
|
|
4376
4430
|
display: "grid",
|
|
4377
4431
|
gridTemplateColumns: "repeat(2, 1fr)"
|
|
4378
4432
|
}
|
|
4379
4433
|
});
|
|
4380
|
-
var timePanelSlotRecipe =
|
|
4434
|
+
var timePanelSlotRecipe = defineSlotRecipe23({
|
|
4381
4435
|
className: "timePanel",
|
|
4382
4436
|
slots: ["root", "column"],
|
|
4383
4437
|
jsx: ["TimePanel", "time-panel"],
|
|
@@ -4397,7 +4451,7 @@ var timePanelSlotRecipe = defineSlotRecipe22({
|
|
|
4397
4451
|
}
|
|
4398
4452
|
}
|
|
4399
4453
|
});
|
|
4400
|
-
var tableDateSlotRecipe =
|
|
4454
|
+
var tableDateSlotRecipe = defineSlotRecipe23({
|
|
4401
4455
|
className: "tableDate",
|
|
4402
4456
|
jsx: ["TableDate", "table-date"],
|
|
4403
4457
|
slots: [
|
|
@@ -4426,7 +4480,7 @@ var tableDateSlotRecipe = defineSlotRecipe22({
|
|
|
4426
4480
|
}
|
|
4427
4481
|
}
|
|
4428
4482
|
});
|
|
4429
|
-
var tableMonthSlotRecipe =
|
|
4483
|
+
var tableMonthSlotRecipe = defineSlotRecipe23({
|
|
4430
4484
|
className: "tableMonth",
|
|
4431
4485
|
jsx: ["TableMonth", "table-month"],
|
|
4432
4486
|
slots: ["headerRoot", "headerLabel", "monthItemRoot", "monthItemWrapper", "shortcutLabelWrapper"],
|
|
@@ -4447,7 +4501,7 @@ var tableMonthSlotRecipe = defineSlotRecipe22({
|
|
|
4447
4501
|
}
|
|
4448
4502
|
}
|
|
4449
4503
|
});
|
|
4450
|
-
var tableYearSlotRecipe =
|
|
4504
|
+
var tableYearSlotRecipe = defineSlotRecipe23({
|
|
4451
4505
|
className: "tableYear",
|
|
4452
4506
|
jsx: ["TableYear", "table-year"],
|
|
4453
4507
|
slots: ["headerRoot", "headerLabel", "yearItemRoot", "yearItemWrapper", "shortcutLabelWrapper"],
|
|
@@ -4467,7 +4521,7 @@ var tableYearSlotRecipe = defineSlotRecipe22({
|
|
|
4467
4521
|
}
|
|
4468
4522
|
}
|
|
4469
4523
|
});
|
|
4470
|
-
var dayItemRecipe =
|
|
4524
|
+
var dayItemRecipe = defineRecipe12({
|
|
4471
4525
|
className: "day",
|
|
4472
4526
|
jsx: ["Day", "day"],
|
|
4473
4527
|
base: {
|
|
@@ -4489,7 +4543,7 @@ var dayItemRecipe = defineRecipe13({
|
|
|
4489
4543
|
}
|
|
4490
4544
|
}
|
|
4491
4545
|
});
|
|
4492
|
-
var dateItemRecipe =
|
|
4546
|
+
var dateItemRecipe = defineRecipe12({
|
|
4493
4547
|
className: "dateItem",
|
|
4494
4548
|
jsx: ["DateItem", "date-item", "Date", "date"],
|
|
4495
4549
|
base: {
|
|
@@ -4639,7 +4693,7 @@ var dateItemRecipe = defineRecipe13({
|
|
|
4639
4693
|
},
|
|
4640
4694
|
staticCss: ["*"]
|
|
4641
4695
|
});
|
|
4642
|
-
var pinbarSlotRecipe =
|
|
4696
|
+
var pinbarSlotRecipe = defineSlotRecipe23({
|
|
4643
4697
|
className: "pinbar",
|
|
4644
4698
|
slots: ["root", "pinbar"],
|
|
4645
4699
|
base: {
|
|
@@ -4658,7 +4712,7 @@ var pinbarSlotRecipe = defineSlotRecipe22({
|
|
|
4658
4712
|
}
|
|
4659
4713
|
}
|
|
4660
4714
|
});
|
|
4661
|
-
var monthItemRecipe =
|
|
4715
|
+
var monthItemRecipe = defineRecipe12({
|
|
4662
4716
|
className: "monthItem",
|
|
4663
4717
|
jsx: ["MonthItem", "month-item"],
|
|
4664
4718
|
base: {
|
|
@@ -4676,7 +4730,10 @@ var monthItemRecipe = defineRecipe13({
|
|
|
4676
4730
|
color: "gray.400",
|
|
4677
4731
|
cursor: "not-allowed",
|
|
4678
4732
|
borderColor: "transparent",
|
|
4679
|
-
backgroundColor: "transparent"
|
|
4733
|
+
backgroundColor: "transparent",
|
|
4734
|
+
_nextTheme: {
|
|
4735
|
+
color: "text.disabled"
|
|
4736
|
+
}
|
|
4680
4737
|
},
|
|
4681
4738
|
_nextTheme: {
|
|
4682
4739
|
color: "text.default"
|
|
@@ -4737,7 +4794,7 @@ var monthItemRecipe = defineRecipe13({
|
|
|
4737
4794
|
},
|
|
4738
4795
|
staticCss: ["*"]
|
|
4739
4796
|
});
|
|
4740
|
-
var yearItemRecipe =
|
|
4797
|
+
var yearItemRecipe = defineRecipe12({
|
|
4741
4798
|
className: "yearItem",
|
|
4742
4799
|
jsx: ["YearItem", "year-item"],
|
|
4743
4800
|
base: {
|
|
@@ -4755,7 +4812,10 @@ var yearItemRecipe = defineRecipe13({
|
|
|
4755
4812
|
color: "gray.400",
|
|
4756
4813
|
cursor: "not-allowed",
|
|
4757
4814
|
borderColor: "transparent",
|
|
4758
|
-
backgroundColor: "transparent"
|
|
4815
|
+
backgroundColor: "transparent",
|
|
4816
|
+
_nextTheme: {
|
|
4817
|
+
color: "text.disabled"
|
|
4818
|
+
}
|
|
4759
4819
|
},
|
|
4760
4820
|
_nextTheme: {
|
|
4761
4821
|
color: "text.default"
|
|
@@ -4816,7 +4876,7 @@ var yearItemRecipe = defineRecipe13({
|
|
|
4816
4876
|
},
|
|
4817
4877
|
staticCss: ["*"]
|
|
4818
4878
|
});
|
|
4819
|
-
var timeItemRecipe =
|
|
4879
|
+
var timeItemRecipe = defineRecipe12({
|
|
4820
4880
|
className: "timeItem",
|
|
4821
4881
|
jsx: ["TimeItem", "time-item"],
|
|
4822
4882
|
base: {
|
|
@@ -4834,7 +4894,10 @@ var timeItemRecipe = defineRecipe13({
|
|
|
4834
4894
|
color: "gray.400",
|
|
4835
4895
|
cursor: "not-allowed",
|
|
4836
4896
|
borderColor: "transparent",
|
|
4837
|
-
backgroundColor: "transparent"
|
|
4897
|
+
backgroundColor: "transparent",
|
|
4898
|
+
_nextTheme: {
|
|
4899
|
+
color: "text.disabled"
|
|
4900
|
+
}
|
|
4838
4901
|
},
|
|
4839
4902
|
_nextTheme: {
|
|
4840
4903
|
color: "text.default"
|
|
@@ -4879,8 +4942,8 @@ var timeItemRecipe = defineRecipe13({
|
|
|
4879
4942
|
});
|
|
4880
4943
|
|
|
4881
4944
|
// src/recipes/carousel.ts
|
|
4882
|
-
import { defineSlotRecipe as
|
|
4883
|
-
var carouselSlotRecipe =
|
|
4945
|
+
import { defineSlotRecipe as defineSlotRecipe24 } from "@pandacss/dev";
|
|
4946
|
+
var carouselSlotRecipe = defineSlotRecipe24({
|
|
4884
4947
|
className: "carousel",
|
|
4885
4948
|
jsx: ["MpCarousel", "mp-carousel"],
|
|
4886
4949
|
slots: [
|
|
@@ -4933,8 +4996,8 @@ var carouselSlotRecipe = defineSlotRecipe23({
|
|
|
4933
4996
|
});
|
|
4934
4997
|
|
|
4935
4998
|
// src/recipes/chart.ts
|
|
4936
|
-
import { defineSlotRecipe as
|
|
4937
|
-
var chartSlotRecipe =
|
|
4999
|
+
import { defineSlotRecipe as defineSlotRecipe25 } from "@pandacss/dev";
|
|
5000
|
+
var chartSlotRecipe = defineSlotRecipe25({
|
|
4938
5001
|
className: "chart",
|
|
4939
5002
|
jsx: ["MpChart", "mp-chart"],
|
|
4940
5003
|
slots: [
|
|
@@ -5039,11 +5102,19 @@ var chartSlotRecipe = defineSlotRecipe24({
|
|
|
5039
5102
|
});
|
|
5040
5103
|
|
|
5041
5104
|
// src/recipes/autocomplete.ts
|
|
5042
|
-
import { defineSlotRecipe as
|
|
5043
|
-
var autocompleteSlotRecipe =
|
|
5105
|
+
import { defineSlotRecipe as defineSlotRecipe26 } from "@pandacss/dev";
|
|
5106
|
+
var autocompleteSlotRecipe = defineSlotRecipe26({
|
|
5044
5107
|
className: "autocomplete",
|
|
5045
5108
|
jsx: ["MpAutocomplete", "mp-autocomplete"],
|
|
5046
|
-
slots: [
|
|
5109
|
+
slots: [
|
|
5110
|
+
"groupText",
|
|
5111
|
+
"popoverContent",
|
|
5112
|
+
"buttonAction",
|
|
5113
|
+
"emptyText",
|
|
5114
|
+
"contentLoading",
|
|
5115
|
+
"input",
|
|
5116
|
+
"infinityScroll"
|
|
5117
|
+
],
|
|
5047
5118
|
base: {
|
|
5048
5119
|
groupText: {
|
|
5049
5120
|
px: 3,
|
|
@@ -5089,13 +5160,18 @@ var autocompleteSlotRecipe = defineSlotRecipe25({
|
|
|
5089
5160
|
},
|
|
5090
5161
|
input: {
|
|
5091
5162
|
cursor: "pointer"
|
|
5163
|
+
},
|
|
5164
|
+
infinityScroll: {
|
|
5165
|
+
height: "1px",
|
|
5166
|
+
width: "100%",
|
|
5167
|
+
marginTop: "-1px"
|
|
5092
5168
|
}
|
|
5093
5169
|
}
|
|
5094
5170
|
});
|
|
5095
5171
|
|
|
5096
5172
|
// src/recipes/timeline.ts
|
|
5097
|
-
import { defineSlotRecipe as
|
|
5098
|
-
var timelineSlotRecipe =
|
|
5173
|
+
import { defineSlotRecipe as defineSlotRecipe27 } from "@pandacss/dev";
|
|
5174
|
+
var timelineSlotRecipe = defineSlotRecipe27({
|
|
5099
5175
|
className: "timeline",
|
|
5100
5176
|
jsx: [
|
|
5101
5177
|
"MpTimeline",
|
|
@@ -5137,7 +5213,7 @@ var timelineSlotRecipe = defineSlotRecipe26({
|
|
|
5137
5213
|
}
|
|
5138
5214
|
}
|
|
5139
5215
|
});
|
|
5140
|
-
var timelineDocumentSlotRecipe =
|
|
5216
|
+
var timelineDocumentSlotRecipe = defineSlotRecipe27({
|
|
5141
5217
|
className: "timelineDocument",
|
|
5142
5218
|
jsx: ["MpTimelineDocument", "mp-timeline-document"],
|
|
5143
5219
|
slots: ["root", "content", "title", "description", "fileSize"],
|
|
@@ -5195,18 +5271,20 @@ var timelineDocumentSlotRecipe = defineSlotRecipe26({
|
|
|
5195
5271
|
icon: false
|
|
5196
5272
|
}
|
|
5197
5273
|
});
|
|
5198
|
-
var timelineLogSlotRecipe =
|
|
5274
|
+
var timelineLogSlotRecipe = defineSlotRecipe27({
|
|
5199
5275
|
className: "timelineLog",
|
|
5200
5276
|
jsx: ["MpTimelineLog", "MpTimelineLogItem", "mp-timeline-log", "mp-timeline-log-item"],
|
|
5201
5277
|
slots: ["root", "log", "logText", "logIcon", "content", "logItem"],
|
|
5202
5278
|
base: {
|
|
5203
5279
|
root: {
|
|
5204
5280
|
display: "flex",
|
|
5205
|
-
flexDirection: "column"
|
|
5281
|
+
flexDirection: "column",
|
|
5282
|
+
gap: "1"
|
|
5206
5283
|
},
|
|
5207
5284
|
log: {
|
|
5208
5285
|
display: "flex",
|
|
5209
|
-
cursor: "pointer"
|
|
5286
|
+
cursor: "pointer",
|
|
5287
|
+
gap: "1"
|
|
5210
5288
|
},
|
|
5211
5289
|
logText: {
|
|
5212
5290
|
color: "gray.400",
|
|
@@ -5227,7 +5305,7 @@ var timelineLogSlotRecipe = defineSlotRecipe26({
|
|
|
5227
5305
|
}
|
|
5228
5306
|
}
|
|
5229
5307
|
});
|
|
5230
|
-
var timelineSeparatorSlotRecipe =
|
|
5308
|
+
var timelineSeparatorSlotRecipe = defineSlotRecipe27({
|
|
5231
5309
|
className: "timelineSeparetor",
|
|
5232
5310
|
jsx: ["MpTimelineSeparator", "mp-timeline-separator"],
|
|
5233
5311
|
slots: ["root", "topConnector", "bottomConnector"],
|
|
@@ -5267,7 +5345,7 @@ var timelineSeparatorSlotRecipe = defineSlotRecipe26({
|
|
|
5267
5345
|
}
|
|
5268
5346
|
}
|
|
5269
5347
|
});
|
|
5270
|
-
var timelineAccordionSlotRecipe =
|
|
5348
|
+
var timelineAccordionSlotRecipe = defineSlotRecipe27({
|
|
5271
5349
|
className: "timelineAccordion",
|
|
5272
5350
|
jsx: ["MpTimelineAccordion", "mp-timeline-accordion"],
|
|
5273
5351
|
slots: ["body", "separator", "icon", "topConnector", "bottomConnector", "title", "label"],
|
|
@@ -5328,8 +5406,8 @@ var timelineAccordionSlotRecipe = defineSlotRecipe26({
|
|
|
5328
5406
|
});
|
|
5329
5407
|
|
|
5330
5408
|
// src/recipes/banner.ts
|
|
5331
|
-
import { defineRecipe as
|
|
5332
|
-
var bannerSlotRecipe =
|
|
5409
|
+
import { defineRecipe as defineRecipe13, defineSlotRecipe as defineSlotRecipe28 } from "@pandacss/dev";
|
|
5410
|
+
var bannerSlotRecipe = defineSlotRecipe28({
|
|
5333
5411
|
className: "banner",
|
|
5334
5412
|
jsx: ["MpBanner", "mp-banner"],
|
|
5335
5413
|
slots: ["root", "body"],
|
|
@@ -5390,7 +5468,7 @@ var bannerSlotRecipe = defineSlotRecipe27({
|
|
|
5390
5468
|
variant: "info"
|
|
5391
5469
|
}
|
|
5392
5470
|
});
|
|
5393
|
-
var bannerTitleRecipe =
|
|
5471
|
+
var bannerTitleRecipe = defineRecipe13({
|
|
5394
5472
|
className: "banner-title",
|
|
5395
5473
|
jsx: ["MpBannerTitle", "mp-banner-title"],
|
|
5396
5474
|
base: {
|
|
@@ -5409,7 +5487,7 @@ var bannerTitleRecipe = defineRecipe14({
|
|
|
5409
5487
|
compoundVariants: [],
|
|
5410
5488
|
defaultVariants: {}
|
|
5411
5489
|
});
|
|
5412
|
-
var bannerDescriptionRecipe =
|
|
5490
|
+
var bannerDescriptionRecipe = defineRecipe13({
|
|
5413
5491
|
className: "banner-description",
|
|
5414
5492
|
jsx: ["MpBannerDescription", "mp-banner-description"],
|
|
5415
5493
|
base: {
|
|
@@ -5427,7 +5505,7 @@ var bannerDescriptionRecipe = defineRecipe14({
|
|
|
5427
5505
|
compoundVariants: [],
|
|
5428
5506
|
defaultVariants: {}
|
|
5429
5507
|
});
|
|
5430
|
-
var bannerIconSlotRecipe =
|
|
5508
|
+
var bannerIconSlotRecipe = defineSlotRecipe28({
|
|
5431
5509
|
className: "banner-icon",
|
|
5432
5510
|
jsx: ["MpBannerIcon", "mp-banner-icon"],
|
|
5433
5511
|
slots: ["root", "custom"],
|
|
@@ -5450,7 +5528,7 @@ var bannerIconSlotRecipe = defineSlotRecipe27({
|
|
|
5450
5528
|
compoundVariants: [],
|
|
5451
5529
|
defaultVariants: {}
|
|
5452
5530
|
});
|
|
5453
|
-
var bannerLinkRecipe =
|
|
5531
|
+
var bannerLinkRecipe = defineRecipe13({
|
|
5454
5532
|
className: "banner-link",
|
|
5455
5533
|
jsx: ["MpBannerLink", "mp-banner-link"],
|
|
5456
5534
|
base: {
|
|
@@ -5462,7 +5540,7 @@ var bannerLinkRecipe = defineRecipe14({
|
|
|
5462
5540
|
compoundVariants: [],
|
|
5463
5541
|
defaultVariants: {}
|
|
5464
5542
|
});
|
|
5465
|
-
var bannerCloseButtonRecipe =
|
|
5543
|
+
var bannerCloseButtonRecipe = defineRecipe13({
|
|
5466
5544
|
className: "banner-close-button",
|
|
5467
5545
|
jsx: ["MpBannerCloseButton", "mp-banner-close-button"],
|
|
5468
5546
|
base: {
|
|
@@ -5482,8 +5560,8 @@ var bannerCloseButtonRecipe = defineRecipe14({
|
|
|
5482
5560
|
});
|
|
5483
5561
|
|
|
5484
5562
|
// src/recipes/color-picker.ts
|
|
5485
|
-
import { defineSlotRecipe as
|
|
5486
|
-
var colorPickerSlotRecipe =
|
|
5563
|
+
import { defineSlotRecipe as defineSlotRecipe29 } from "@pandacss/dev";
|
|
5564
|
+
var colorPickerSlotRecipe = defineSlotRecipe29({
|
|
5487
5565
|
className: "color-picker",
|
|
5488
5566
|
jsx: ["MpColorPicker", "mp-color-picker"],
|
|
5489
5567
|
slots: [
|
|
@@ -5656,8 +5734,8 @@ var colorPickerSlotRecipe = defineSlotRecipe28({
|
|
|
5656
5734
|
});
|
|
5657
5735
|
|
|
5658
5736
|
// src/recipes/slider.ts
|
|
5659
|
-
import { defineSlotRecipe as
|
|
5660
|
-
var sliderSlotRecipe =
|
|
5737
|
+
import { defineSlotRecipe as defineSlotRecipe30 } from "@pandacss/dev";
|
|
5738
|
+
var sliderSlotRecipe = defineSlotRecipe30({
|
|
5661
5739
|
className: "slider",
|
|
5662
5740
|
jsx: ["MpSlider", "mp-slider"],
|
|
5663
5741
|
slots: [
|
|
@@ -5766,8 +5844,8 @@ var sliderSlotRecipe = defineSlotRecipe29({
|
|
|
5766
5844
|
});
|
|
5767
5845
|
|
|
5768
5846
|
// src/recipes/tour.ts
|
|
5769
|
-
import { defineSlotRecipe as
|
|
5770
|
-
var tourSlotRecipe =
|
|
5847
|
+
import { defineSlotRecipe as defineSlotRecipe31 } from "@pandacss/dev";
|
|
5848
|
+
var tourSlotRecipe = defineSlotRecipe31({
|
|
5771
5849
|
className: "tour",
|
|
5772
5850
|
jsx: ["MpTour", "mp-tour"],
|
|
5773
5851
|
slots: ["root", "overlay", "panel"],
|
|
@@ -5793,6 +5871,110 @@ var tourSlotRecipe = defineSlotRecipe30({
|
|
|
5793
5871
|
defaultVariants: {}
|
|
5794
5872
|
});
|
|
5795
5873
|
|
|
5874
|
+
// src/recipes/textlink.ts
|
|
5875
|
+
import { defineRecipe as defineRecipe14 } from "@pandacss/dev";
|
|
5876
|
+
var textlinkRecipe = defineRecipe14({
|
|
5877
|
+
className: "textlink",
|
|
5878
|
+
jsx: ["MpTextlink", "mp-textlink"],
|
|
5879
|
+
base: {
|
|
5880
|
+
display: "inline-flex !important",
|
|
5881
|
+
gap: "1",
|
|
5882
|
+
py: "0 !important",
|
|
5883
|
+
px: "2px !important",
|
|
5884
|
+
backgroundColor: "transparent !important",
|
|
5885
|
+
textStyle: "label.md !important",
|
|
5886
|
+
_hover: {
|
|
5887
|
+
textDecoration: "underline"
|
|
5888
|
+
},
|
|
5889
|
+
_loading: {
|
|
5890
|
+
background: "white"
|
|
5891
|
+
}
|
|
5892
|
+
},
|
|
5893
|
+
variants: {
|
|
5894
|
+
variant: {
|
|
5895
|
+
primary: {
|
|
5896
|
+
color: "blue.400",
|
|
5897
|
+
_hover: {
|
|
5898
|
+
color: "blue.400"
|
|
5899
|
+
},
|
|
5900
|
+
_active: {
|
|
5901
|
+
color: "blue.700"
|
|
5902
|
+
},
|
|
5903
|
+
_nextTheme: {
|
|
5904
|
+
color: "text.link",
|
|
5905
|
+
_hover: {
|
|
5906
|
+
color: "text.link"
|
|
5907
|
+
},
|
|
5908
|
+
_active: {
|
|
5909
|
+
color: "text.link.pressed"
|
|
5910
|
+
}
|
|
5911
|
+
}
|
|
5912
|
+
},
|
|
5913
|
+
secondary: {
|
|
5914
|
+
color: "gray.400",
|
|
5915
|
+
_hover: {
|
|
5916
|
+
color: "gray.400"
|
|
5917
|
+
},
|
|
5918
|
+
_active: {
|
|
5919
|
+
color: "gray.700"
|
|
5920
|
+
},
|
|
5921
|
+
_nextTheme: {
|
|
5922
|
+
color: "text.secondary",
|
|
5923
|
+
_hover: {
|
|
5924
|
+
color: "text.secondary"
|
|
5925
|
+
},
|
|
5926
|
+
_active: {
|
|
5927
|
+
color: "text.secondary.pressed"
|
|
5928
|
+
}
|
|
5929
|
+
}
|
|
5930
|
+
},
|
|
5931
|
+
danger: {
|
|
5932
|
+
color: "red.400",
|
|
5933
|
+
_hover: {
|
|
5934
|
+
color: "red.400"
|
|
5935
|
+
},
|
|
5936
|
+
_active: {
|
|
5937
|
+
color: "red.700"
|
|
5938
|
+
},
|
|
5939
|
+
_nextTheme: {
|
|
5940
|
+
color: "text.danger",
|
|
5941
|
+
_hover: {
|
|
5942
|
+
color: "text.danger"
|
|
5943
|
+
},
|
|
5944
|
+
_active: {
|
|
5945
|
+
color: "text.danger.pressed"
|
|
5946
|
+
}
|
|
5947
|
+
}
|
|
5948
|
+
}
|
|
5949
|
+
}
|
|
5950
|
+
},
|
|
5951
|
+
compoundVariants: [
|
|
5952
|
+
{
|
|
5953
|
+
variant: ["primary", "secondary", "danger"],
|
|
5954
|
+
css: {
|
|
5955
|
+
_disabled: {
|
|
5956
|
+
cursor: "not-allowed",
|
|
5957
|
+
color: "gray.100",
|
|
5958
|
+
_hover: {
|
|
5959
|
+
color: "gray.100",
|
|
5960
|
+
textDecoration: "none"
|
|
5961
|
+
},
|
|
5962
|
+
_nextTheme: {
|
|
5963
|
+
color: "text.disabled",
|
|
5964
|
+
_hover: {
|
|
5965
|
+
color: "text.disabled",
|
|
5966
|
+
textDecoration: "none"
|
|
5967
|
+
}
|
|
5968
|
+
}
|
|
5969
|
+
},
|
|
5970
|
+
_focusVisible: {
|
|
5971
|
+
boxShadow: "focus"
|
|
5972
|
+
}
|
|
5973
|
+
}
|
|
5974
|
+
}
|
|
5975
|
+
]
|
|
5976
|
+
});
|
|
5977
|
+
|
|
5796
5978
|
// src/recipes/index.ts
|
|
5797
5979
|
var recipes = {
|
|
5798
5980
|
buttonRecipe,
|
|
@@ -5810,7 +5992,6 @@ var recipes = {
|
|
|
5810
5992
|
tabSelectedBorderRecipe,
|
|
5811
5993
|
tableRecipe,
|
|
5812
5994
|
tableContainerRecipe,
|
|
5813
|
-
dividerRecipe,
|
|
5814
5995
|
bannerTitleRecipe,
|
|
5815
5996
|
bannerDescriptionRecipe,
|
|
5816
5997
|
bannerLinkRecipe,
|
|
@@ -5821,11 +6002,13 @@ var recipes = {
|
|
|
5821
6002
|
dateItemRecipe,
|
|
5822
6003
|
monthItemRecipe,
|
|
5823
6004
|
yearItemRecipe,
|
|
5824
|
-
timeItemRecipe
|
|
6005
|
+
timeItemRecipe,
|
|
6006
|
+
textlinkRecipe
|
|
5825
6007
|
};
|
|
5826
6008
|
var slotRecipes = {
|
|
5827
6009
|
accordionSlotRecipe,
|
|
5828
6010
|
checkboxSlotRecipe,
|
|
6011
|
+
dividerSlotRecipe,
|
|
5829
6012
|
radioSlotRecipe,
|
|
5830
6013
|
sharedSlotRecipe,
|
|
5831
6014
|
progressSlotRecipe,
|
|
@@ -6230,7 +6413,7 @@ var fontWeights = defineTokens10.fontWeights({
|
|
|
6230
6413
|
var lineHeights = defineTokens10.lineHeights({
|
|
6231
6414
|
xs: { value: 1.2 },
|
|
6232
6415
|
sm: { value: 1.34 },
|
|
6233
|
-
md: { value: 1.
|
|
6416
|
+
md: { value: 1.43 },
|
|
6234
6417
|
lg: { value: 1.429 },
|
|
6235
6418
|
xl: { value: 1.5 },
|
|
6236
6419
|
"2xl": { value: 1.67 },
|