@mekari/pixel3-theme 0.0.11 → 0.1.0-dev.0
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 +586 -93
- package/dist/index.mjs +592 -99
- package/dist/recipes/accordion.d.mts +2 -2
- package/dist/recipes/accordion.d.ts +2 -2
- package/dist/recipes/autocomplete.d.mts +5 -0
- package/dist/recipes/autocomplete.d.ts +5 -0
- package/dist/recipes/color-picker.d.mts +5 -0
- package/dist/recipes/color-picker.d.ts +5 -0
- package/dist/recipes/date-picker.d.mts +2 -1
- package/dist/recipes/date-picker.d.ts +2 -1
- package/dist/recipes/index.d.mts +11 -2
- package/dist/recipes/index.d.ts +11 -2
- package/dist/recipes/slider.d.mts +5 -0
- package/dist/recipes/slider.d.ts +5 -0
- package/dist/recipes/tabs.d.mts +2 -2
- package/dist/recipes/tabs.d.ts +2 -2
- package/dist/recipes/timeline.d.mts +9 -0
- package/dist/recipes/timeline.d.ts +9 -0
- package/package.json +1 -1
- package/src/recipes/accordion.ts +40 -43
- package/src/recipes/autocomplete.ts +47 -0
- package/src/recipes/color-picker.ts +126 -0
- package/src/recipes/date-picker.ts +22 -0
- package/src/recipes/index.ts +25 -6
- package/src/recipes/slider.ts +81 -0
- package/src/recipes/tabs.ts +30 -13
- package/src/recipes/timeline.ts +211 -0
package/dist/index.mjs
CHANGED
|
@@ -1029,58 +1029,56 @@ var spinnerRecipe = defineRecipe4({
|
|
|
1029
1029
|
|
|
1030
1030
|
// src/recipes/accordion.ts
|
|
1031
1031
|
import { defineSlotRecipe as defineSlotRecipe5 } from "@pandacss/dev";
|
|
1032
|
-
var
|
|
1032
|
+
var accordionSlotRecipe = defineSlotRecipe5({
|
|
1033
1033
|
className: "accordion",
|
|
1034
|
-
slots: ["
|
|
1034
|
+
slots: ["header", "item", "panel"],
|
|
1035
|
+
jsx: [
|
|
1036
|
+
"MpAccordionHeader",
|
|
1037
|
+
"MpAccordionItem",
|
|
1038
|
+
"MpAccordionPanel",
|
|
1039
|
+
"mp-accordion-header",
|
|
1040
|
+
"mp-accordion-item",
|
|
1041
|
+
"mp-accordion-panel"
|
|
1042
|
+
],
|
|
1035
1043
|
base: {
|
|
1036
|
-
|
|
1037
|
-
divideY: "1px",
|
|
1038
|
-
width: "full"
|
|
1039
|
-
},
|
|
1040
|
-
trigger: {
|
|
1041
|
-
alignItems: "center",
|
|
1042
|
-
color: "fg.default",
|
|
1043
|
-
cursor: "pointer",
|
|
1044
|
+
header: {
|
|
1044
1045
|
display: "flex",
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1046
|
+
alignItems: "center",
|
|
1047
|
+
width: "100%",
|
|
1048
|
+
outline: 0,
|
|
1049
|
+
gap: 4,
|
|
1050
|
+
transition: "all 0.2s",
|
|
1051
|
+
py: 3,
|
|
1052
|
+
fontWeight: "semiBold",
|
|
1053
|
+
fontSize: "md",
|
|
1054
|
+
color: "dark",
|
|
1055
|
+
_disabled: { opacity: "0.4", cursor: "not-allowed" }
|
|
1050
1056
|
},
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
_open: {
|
|
1059
|
-
gridTemplateRows: "1fr"
|
|
1060
|
-
},
|
|
1061
|
-
"& > div": {
|
|
1062
|
-
overflow: "hidden"
|
|
1063
|
-
}
|
|
1057
|
+
item: {
|
|
1058
|
+
borderBottomWidth: "1px",
|
|
1059
|
+
borderColor: "gray.100",
|
|
1060
|
+
_last: { borderBottomWidth: "1px", borderColor: "gray.100" }
|
|
1061
|
+
},
|
|
1062
|
+
panel: {
|
|
1063
|
+
py: 3
|
|
1064
1064
|
}
|
|
1065
1065
|
},
|
|
1066
|
-
defaultVariants: {
|
|
1067
|
-
size: "md"
|
|
1068
|
-
},
|
|
1069
1066
|
variants: {
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
}
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
pb: "0"
|
|
1080
|
-
}
|
|
1067
|
+
isClickable: {
|
|
1068
|
+
true: {
|
|
1069
|
+
header: {
|
|
1070
|
+
cursor: "pointer"
|
|
1071
|
+
}
|
|
1072
|
+
},
|
|
1073
|
+
false: {
|
|
1074
|
+
header: {
|
|
1075
|
+
cursor: "default"
|
|
1081
1076
|
}
|
|
1082
1077
|
}
|
|
1083
1078
|
}
|
|
1079
|
+
},
|
|
1080
|
+
defaultVariants: {
|
|
1081
|
+
isClickable: true
|
|
1084
1082
|
}
|
|
1085
1083
|
});
|
|
1086
1084
|
|
|
@@ -1404,21 +1402,38 @@ var tooltipRecipe = defineRecipe8({
|
|
|
1404
1402
|
});
|
|
1405
1403
|
|
|
1406
1404
|
// src/recipes/tabs.ts
|
|
1407
|
-
import { defineRecipe as defineRecipe9 } from "@pandacss/dev";
|
|
1408
|
-
var
|
|
1405
|
+
import { defineRecipe as defineRecipe9, defineSlotRecipe as defineSlotRecipe6 } from "@pandacss/dev";
|
|
1406
|
+
var tabListSlotRecipe = defineSlotRecipe6({
|
|
1409
1407
|
className: "tab-list",
|
|
1410
1408
|
jsx: ["MpTabList", "mp-tab-list"],
|
|
1409
|
+
slots: ["root", "list"],
|
|
1411
1410
|
base: {
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1411
|
+
root: {
|
|
1412
|
+
position: "relative",
|
|
1413
|
+
"&[data-border=true]": {
|
|
1414
|
+
_before: {
|
|
1415
|
+
content: '""',
|
|
1416
|
+
height: "1px",
|
|
1417
|
+
background: "gray.100",
|
|
1418
|
+
position: "absolute",
|
|
1419
|
+
right: 0,
|
|
1420
|
+
left: 0,
|
|
1421
|
+
bottom: "1px"
|
|
1422
|
+
}
|
|
1423
|
+
}
|
|
1424
|
+
},
|
|
1425
|
+
list: {
|
|
1426
|
+
display: "flex",
|
|
1427
|
+
overflow: "auto",
|
|
1428
|
+
gap: "1.5rem",
|
|
1429
|
+
fontSize: "md",
|
|
1430
|
+
color: "gray.600",
|
|
1431
|
+
marginBottom: 6,
|
|
1432
|
+
padding: 0.5,
|
|
1433
|
+
alignItems: "center",
|
|
1434
|
+
justifyContent: "flex-start",
|
|
1435
|
+
maxWidth: "full"
|
|
1436
|
+
}
|
|
1422
1437
|
}
|
|
1423
1438
|
});
|
|
1424
1439
|
var tabRecipe = defineRecipe9({
|
|
@@ -1603,8 +1618,8 @@ var selectedBorderRecipe = defineRecipe9({
|
|
|
1603
1618
|
});
|
|
1604
1619
|
|
|
1605
1620
|
// src/recipes/checkbox.ts
|
|
1606
|
-
import { defineSlotRecipe as
|
|
1607
|
-
var checkboxSlotRecipe =
|
|
1621
|
+
import { defineSlotRecipe as defineSlotRecipe7 } from "@pandacss/dev";
|
|
1622
|
+
var checkboxSlotRecipe = defineSlotRecipe7({
|
|
1608
1623
|
className: "checkbox",
|
|
1609
1624
|
jsx: ["MpCheckbox", "mp-checkbox"],
|
|
1610
1625
|
slots: ["root", "control", "label"],
|
|
@@ -1694,8 +1709,8 @@ var checkboxSlotRecipe = defineSlotRecipe6({
|
|
|
1694
1709
|
});
|
|
1695
1710
|
|
|
1696
1711
|
// src/recipes/radio.ts
|
|
1697
|
-
import { defineSlotRecipe as
|
|
1698
|
-
var radioSlotRecipe =
|
|
1712
|
+
import { defineSlotRecipe as defineSlotRecipe8 } from "@pandacss/dev";
|
|
1713
|
+
var radioSlotRecipe = defineSlotRecipe8({
|
|
1699
1714
|
className: "radio",
|
|
1700
1715
|
jsx: ["MpRadio", "mp-radio"],
|
|
1701
1716
|
slots: ["root", "control", "label"],
|
|
@@ -1794,8 +1809,8 @@ var radioSlotRecipe = defineSlotRecipe7({
|
|
|
1794
1809
|
});
|
|
1795
1810
|
|
|
1796
1811
|
// src/recipes/shared.ts
|
|
1797
|
-
import { defineSlotRecipe as
|
|
1798
|
-
var sharedSlotRecipe =
|
|
1812
|
+
import { defineSlotRecipe as defineSlotRecipe9 } from "@pandacss/dev";
|
|
1813
|
+
var sharedSlotRecipe = defineSlotRecipe9({
|
|
1799
1814
|
className: "shared",
|
|
1800
1815
|
jsx: ["MpCheckbox", "mp-checkbox", "MpRadio", "mp-radio"],
|
|
1801
1816
|
slots: ["hidden"],
|
|
@@ -1812,8 +1827,8 @@ var sharedSlotRecipe = defineSlotRecipe8({
|
|
|
1812
1827
|
});
|
|
1813
1828
|
|
|
1814
1829
|
// src/recipes/toggle.ts
|
|
1815
|
-
import { defineSlotRecipe as
|
|
1816
|
-
var toggleSlotRecipe =
|
|
1830
|
+
import { defineSlotRecipe as defineSlotRecipe10 } from "@pandacss/dev";
|
|
1831
|
+
var toggleSlotRecipe = defineSlotRecipe10({
|
|
1817
1832
|
className: "toggle",
|
|
1818
1833
|
jsx: ["MpToggle", "mp-toggle"],
|
|
1819
1834
|
slots: ["root", "control", "label"],
|
|
@@ -2018,8 +2033,8 @@ var tableContainerRecipe = defineRecipe10({
|
|
|
2018
2033
|
});
|
|
2019
2034
|
|
|
2020
2035
|
// src/recipes/progress.ts
|
|
2021
|
-
import { defineSlotRecipe as
|
|
2022
|
-
var progressSlotRecipe =
|
|
2036
|
+
import { defineSlotRecipe as defineSlotRecipe11 } from "@pandacss/dev";
|
|
2037
|
+
var progressSlotRecipe = defineSlotRecipe11({
|
|
2023
2038
|
className: "progress",
|
|
2024
2039
|
jsx: ["MpProgress", "mp-progress"],
|
|
2025
2040
|
slots: ["root", "linear", "circularBase", "circularTrack"],
|
|
@@ -2092,8 +2107,8 @@ var progressSlotRecipe = defineSlotRecipe10({
|
|
|
2092
2107
|
});
|
|
2093
2108
|
|
|
2094
2109
|
// src/recipes/form-control.ts
|
|
2095
|
-
import { defineSlotRecipe as
|
|
2096
|
-
var formControlSlotRecipe =
|
|
2110
|
+
import { defineSlotRecipe as defineSlotRecipe12 } from "@pandacss/dev";
|
|
2111
|
+
var formControlSlotRecipe = defineSlotRecipe12({
|
|
2097
2112
|
className: "form-control",
|
|
2098
2113
|
jsx: ["MpFormControl", "mp-form-control"],
|
|
2099
2114
|
slots: ["root", "label", "required", "helpText", "errorMessage"],
|
|
@@ -2131,8 +2146,8 @@ var formControlSlotRecipe = defineSlotRecipe11({
|
|
|
2131
2146
|
});
|
|
2132
2147
|
|
|
2133
2148
|
// src/recipes/input-tag.ts
|
|
2134
|
-
import { defineSlotRecipe as
|
|
2135
|
-
var inputTagSlotRecipe =
|
|
2149
|
+
import { defineSlotRecipe as defineSlotRecipe13 } from "@pandacss/dev";
|
|
2150
|
+
var inputTagSlotRecipe = defineSlotRecipe13({
|
|
2136
2151
|
className: "input-tag",
|
|
2137
2152
|
jsx: ["MpInputTag", "mp-input-tag"],
|
|
2138
2153
|
slots: [
|
|
@@ -2280,8 +2295,8 @@ var dividerRecipe = defineRecipe11({
|
|
|
2280
2295
|
});
|
|
2281
2296
|
|
|
2282
2297
|
// src/recipes/modal.ts
|
|
2283
|
-
import { defineSlotRecipe as
|
|
2284
|
-
var modalSlotRecipe =
|
|
2298
|
+
import { defineSlotRecipe as defineSlotRecipe14 } from "@pandacss/dev";
|
|
2299
|
+
var modalSlotRecipe = defineSlotRecipe14({
|
|
2285
2300
|
className: "modal",
|
|
2286
2301
|
description: "The styles for the Modal component",
|
|
2287
2302
|
jsx: ["MpModal", "mp-modal"],
|
|
@@ -2387,8 +2402,8 @@ var modalSlotRecipe = defineSlotRecipe13({
|
|
|
2387
2402
|
});
|
|
2388
2403
|
|
|
2389
2404
|
// src/recipes/upload.ts
|
|
2390
|
-
import { defineSlotRecipe as
|
|
2391
|
-
var uploadSlotRecipe =
|
|
2405
|
+
import { defineSlotRecipe as defineSlotRecipe15 } from "@pandacss/dev";
|
|
2406
|
+
var uploadSlotRecipe = defineSlotRecipe15({
|
|
2392
2407
|
className: "upload",
|
|
2393
2408
|
jsx: ["MpUpload", "mp-upload"],
|
|
2394
2409
|
slots: ["root", "resetButton"],
|
|
@@ -2441,7 +2456,7 @@ var uploadSlotRecipe = defineSlotRecipe14({
|
|
|
2441
2456
|
}
|
|
2442
2457
|
}
|
|
2443
2458
|
});
|
|
2444
|
-
var uploadListSlotRecipe =
|
|
2459
|
+
var uploadListSlotRecipe = defineSlotRecipe15({
|
|
2445
2460
|
className: "upload-list",
|
|
2446
2461
|
jsx: ["MpUploadList", "mp-upload-list"],
|
|
2447
2462
|
slots: ["root", "titleWrapper", "actionWrapper"],
|
|
@@ -2484,8 +2499,8 @@ var uploadListSlotRecipe = defineSlotRecipe14({
|
|
|
2484
2499
|
});
|
|
2485
2500
|
|
|
2486
2501
|
// src/recipes/dropzone.ts
|
|
2487
|
-
import { defineSlotRecipe as
|
|
2488
|
-
var dropzoneSlotRecipe =
|
|
2502
|
+
import { defineSlotRecipe as defineSlotRecipe16 } from "@pandacss/dev";
|
|
2503
|
+
var dropzoneSlotRecipe = defineSlotRecipe16({
|
|
2489
2504
|
className: "dropzone",
|
|
2490
2505
|
jsx: ["MpDropzone", "mp-dropzone"],
|
|
2491
2506
|
slots: [
|
|
@@ -2644,8 +2659,8 @@ var dropzoneSlotRecipe = defineSlotRecipe15({
|
|
|
2644
2659
|
});
|
|
2645
2660
|
|
|
2646
2661
|
// src/recipes/segmented-control.ts
|
|
2647
|
-
import { defineSlotRecipe as
|
|
2648
|
-
var segmentedControlSlotRecipe =
|
|
2662
|
+
import { defineSlotRecipe as defineSlotRecipe17 } from "@pandacss/dev";
|
|
2663
|
+
var segmentedControlSlotRecipe = defineSlotRecipe17({
|
|
2649
2664
|
className: "segmented-control",
|
|
2650
2665
|
jsx: ["MpSegmentedControl", "mp-segmented-control"],
|
|
2651
2666
|
slots: ["root", "item", "hidden", "control", "label", "icon"],
|
|
@@ -2732,8 +2747,8 @@ var segmentedControlSlotRecipe = defineSlotRecipe16({
|
|
|
2732
2747
|
});
|
|
2733
2748
|
|
|
2734
2749
|
// src/recipes/toast.ts
|
|
2735
|
-
import { defineSlotRecipe as
|
|
2736
|
-
var toastSlotRecipe =
|
|
2750
|
+
import { defineSlotRecipe as defineSlotRecipe18 } from "@pandacss/dev";
|
|
2751
|
+
var toastSlotRecipe = defineSlotRecipe18({
|
|
2737
2752
|
className: "toast",
|
|
2738
2753
|
jsx: ["MpToast", "mp-toast"],
|
|
2739
2754
|
slots: ["root", "icon", "label"],
|
|
@@ -2780,8 +2795,8 @@ var toastSlotRecipe = defineSlotRecipe17({
|
|
|
2780
2795
|
});
|
|
2781
2796
|
|
|
2782
2797
|
// src/recipes/broadcast.ts
|
|
2783
|
-
import { defineSlotRecipe as
|
|
2784
|
-
var broadcastSlotRecipe =
|
|
2798
|
+
import { defineSlotRecipe as defineSlotRecipe19 } from "@pandacss/dev";
|
|
2799
|
+
var broadcastSlotRecipe = defineSlotRecipe19({
|
|
2785
2800
|
className: "broadcast",
|
|
2786
2801
|
jsx: ["MpBroadcast", "mp-broadcast"],
|
|
2787
2802
|
slots: ["root", "container", "wrapper", "icon", "label", "textLink", "action", "close"],
|
|
@@ -2851,8 +2866,8 @@ var broadcastSlotRecipe = defineSlotRecipe18({
|
|
|
2851
2866
|
});
|
|
2852
2867
|
|
|
2853
2868
|
// src/recipes/rich-text-editor.ts
|
|
2854
|
-
import { defineRecipe as defineRecipe12, defineSlotRecipe as
|
|
2855
|
-
var richTextEditorSlotRecipe =
|
|
2869
|
+
import { defineRecipe as defineRecipe12, defineSlotRecipe as defineSlotRecipe20 } from "@pandacss/dev";
|
|
2870
|
+
var richTextEditorSlotRecipe = defineSlotRecipe20({
|
|
2856
2871
|
className: "rich-text-editor",
|
|
2857
2872
|
jsx: ["MpRichTextEditor", "mp-rich-text-editor"],
|
|
2858
2873
|
slots: ["root", "toolbar", "area"],
|
|
@@ -2977,8 +2992,8 @@ var RTEStyleProviderRecipe = defineRecipe12({
|
|
|
2977
2992
|
});
|
|
2978
2993
|
|
|
2979
2994
|
// src/recipes/date-picker.ts
|
|
2980
|
-
import { defineSlotRecipe as
|
|
2981
|
-
var datePickerSlotRecipe =
|
|
2995
|
+
import { defineSlotRecipe as defineSlotRecipe21, defineRecipe as defineRecipe13 } from "@pandacss/dev";
|
|
2996
|
+
var datePickerSlotRecipe = defineSlotRecipe21({
|
|
2982
2997
|
className: "datepicker",
|
|
2983
2998
|
jsx: ["MpDatePicker", "mp-date-picker"],
|
|
2984
2999
|
slots: ["root", "popoverContent"],
|
|
@@ -3012,7 +3027,27 @@ var calendarPanelRangeRecipe = defineRecipe13({
|
|
|
3012
3027
|
gridTemplateColumns: "repeat(2, 1fr)"
|
|
3013
3028
|
}
|
|
3014
3029
|
});
|
|
3015
|
-
var
|
|
3030
|
+
var timePanelSlotRecipe = defineSlotRecipe21({
|
|
3031
|
+
className: "timePanel",
|
|
3032
|
+
slots: ["root", "column"],
|
|
3033
|
+
jsx: ["TimePanel", "time-panel"],
|
|
3034
|
+
base: {
|
|
3035
|
+
root: {
|
|
3036
|
+
display: "flex",
|
|
3037
|
+
flexDirection: "row",
|
|
3038
|
+
gap: "0.5"
|
|
3039
|
+
},
|
|
3040
|
+
column: {
|
|
3041
|
+
display: "flex",
|
|
3042
|
+
flexDirection: "column",
|
|
3043
|
+
height: "224px",
|
|
3044
|
+
overflowY: "scroll",
|
|
3045
|
+
overflowX: "hidden",
|
|
3046
|
+
py: "10px"
|
|
3047
|
+
}
|
|
3048
|
+
}
|
|
3049
|
+
});
|
|
3050
|
+
var tableDateSlotRecipe = defineSlotRecipe21({
|
|
3016
3051
|
className: "tableDate",
|
|
3017
3052
|
jsx: ["TableDate", "table-date"],
|
|
3018
3053
|
slots: [
|
|
@@ -3037,7 +3072,7 @@ var tableDateSlotRecipe = defineSlotRecipe20({
|
|
|
3037
3072
|
}
|
|
3038
3073
|
}
|
|
3039
3074
|
});
|
|
3040
|
-
var tableMonthSlotRecipe =
|
|
3075
|
+
var tableMonthSlotRecipe = defineSlotRecipe21({
|
|
3041
3076
|
className: "tableMonth",
|
|
3042
3077
|
jsx: ["TableMonth", "table-month"],
|
|
3043
3078
|
slots: ["headerRoot", "headerLabel", "monthItemRoot", "monthItemWrapper", "shortcutLabelWrapper"],
|
|
@@ -3054,7 +3089,7 @@ var tableMonthSlotRecipe = defineSlotRecipe20({
|
|
|
3054
3089
|
}
|
|
3055
3090
|
}
|
|
3056
3091
|
});
|
|
3057
|
-
var tableYearSlotRecipe =
|
|
3092
|
+
var tableYearSlotRecipe = defineSlotRecipe21({
|
|
3058
3093
|
className: "tableYear",
|
|
3059
3094
|
jsx: ["TableYear", "table-year"],
|
|
3060
3095
|
slots: ["headerRoot", "headerLabel", "yearItemRoot", "yearItemWrapper", "shortcutLabelWrapper"],
|
|
@@ -3183,7 +3218,7 @@ var dateItemRecipe = defineRecipe13({
|
|
|
3183
3218
|
},
|
|
3184
3219
|
staticCss: ["*"]
|
|
3185
3220
|
});
|
|
3186
|
-
var pinbarSlotRecipe =
|
|
3221
|
+
var pinbarSlotRecipe = defineSlotRecipe21({
|
|
3187
3222
|
className: "pinbar",
|
|
3188
3223
|
slots: ["root", "pinbar"],
|
|
3189
3224
|
base: {
|
|
@@ -3360,8 +3395,8 @@ var timeItemRecipe = defineRecipe13({
|
|
|
3360
3395
|
});
|
|
3361
3396
|
|
|
3362
3397
|
// src/recipes/carousel.ts
|
|
3363
|
-
import { defineSlotRecipe as
|
|
3364
|
-
var carouselSlotRecipe =
|
|
3398
|
+
import { defineSlotRecipe as defineSlotRecipe22 } from "@pandacss/dev";
|
|
3399
|
+
var carouselSlotRecipe = defineSlotRecipe22({
|
|
3365
3400
|
className: "carousel",
|
|
3366
3401
|
jsx: ["MpCarousel", "mp-carousel"],
|
|
3367
3402
|
slots: [
|
|
@@ -3409,8 +3444,8 @@ var carouselSlotRecipe = defineSlotRecipe21({
|
|
|
3409
3444
|
});
|
|
3410
3445
|
|
|
3411
3446
|
// src/recipes/chart.ts
|
|
3412
|
-
import { defineSlotRecipe as
|
|
3413
|
-
var chartSlotRecipe =
|
|
3447
|
+
import { defineSlotRecipe as defineSlotRecipe23 } from "@pandacss/dev";
|
|
3448
|
+
var chartSlotRecipe = defineSlotRecipe23({
|
|
3414
3449
|
className: "chart",
|
|
3415
3450
|
jsx: ["MpChart", "mp-chart"],
|
|
3416
3451
|
slots: [
|
|
@@ -3509,9 +3544,256 @@ var chartSlotRecipe = defineSlotRecipe22({
|
|
|
3509
3544
|
}
|
|
3510
3545
|
});
|
|
3511
3546
|
|
|
3547
|
+
// src/recipes/autocomplete.ts
|
|
3548
|
+
import { defineSlotRecipe as defineSlotRecipe24 } from "@pandacss/dev";
|
|
3549
|
+
var autocompleteSlotRecipe = defineSlotRecipe24({
|
|
3550
|
+
className: "autocomplete",
|
|
3551
|
+
jsx: ["MpAutocomplete", "mp-autocomplete"],
|
|
3552
|
+
slots: ["groupText", "popoverContent", "buttonAction", "emptyText", "contentLoading"],
|
|
3553
|
+
base: {
|
|
3554
|
+
groupText: {
|
|
3555
|
+
px: 3,
|
|
3556
|
+
py: 2
|
|
3557
|
+
},
|
|
3558
|
+
popoverContent: {
|
|
3559
|
+
maxHeight: "300px",
|
|
3560
|
+
overflowY: "auto",
|
|
3561
|
+
position: "relative"
|
|
3562
|
+
},
|
|
3563
|
+
buttonAction: {
|
|
3564
|
+
cursor: "pointer",
|
|
3565
|
+
width: "full",
|
|
3566
|
+
textAlign: "center",
|
|
3567
|
+
roundedTop: "0",
|
|
3568
|
+
borderTopWidth: "1px",
|
|
3569
|
+
borderColor: "blue.50",
|
|
3570
|
+
color: "blue.400",
|
|
3571
|
+
position: "sticky",
|
|
3572
|
+
bottom: "0px",
|
|
3573
|
+
bg: "white",
|
|
3574
|
+
fontSize: "md",
|
|
3575
|
+
zIndex: "999",
|
|
3576
|
+
py: 2,
|
|
3577
|
+
height: "9.5",
|
|
3578
|
+
_hover: { color: "blue.500" }
|
|
3579
|
+
},
|
|
3580
|
+
emptyText: {
|
|
3581
|
+
px: 3,
|
|
3582
|
+
py: 2
|
|
3583
|
+
},
|
|
3584
|
+
contentLoading: {
|
|
3585
|
+
px: 3,
|
|
3586
|
+
py: 2,
|
|
3587
|
+
display: "flex",
|
|
3588
|
+
alignItems: "center",
|
|
3589
|
+
gap: 3
|
|
3590
|
+
}
|
|
3591
|
+
}
|
|
3592
|
+
});
|
|
3593
|
+
|
|
3594
|
+
// src/recipes/timeline.ts
|
|
3595
|
+
import { defineSlotRecipe as defineSlotRecipe25 } from "@pandacss/dev";
|
|
3596
|
+
var timelineSlotRecipe = defineSlotRecipe25({
|
|
3597
|
+
className: "timeline",
|
|
3598
|
+
jsx: [
|
|
3599
|
+
"MpTimeline",
|
|
3600
|
+
"MpTimelineBody",
|
|
3601
|
+
"MpTimelineCaption",
|
|
3602
|
+
"MpTimelineContent",
|
|
3603
|
+
"MpTimelineItem",
|
|
3604
|
+
"mp-timeline",
|
|
3605
|
+
"mp-timeline-body",
|
|
3606
|
+
"mp-timeline-caption",
|
|
3607
|
+
"mp-timeline-content",
|
|
3608
|
+
"mp-timeline-item"
|
|
3609
|
+
],
|
|
3610
|
+
slots: ["root", "body", "caption", "content", "item"],
|
|
3611
|
+
base: {
|
|
3612
|
+
root: {
|
|
3613
|
+
maxWidth: "sm"
|
|
3614
|
+
},
|
|
3615
|
+
body: {
|
|
3616
|
+
marginLeft: "3",
|
|
3617
|
+
paddingTop: "6px",
|
|
3618
|
+
paddingBottom: "3",
|
|
3619
|
+
width: "full"
|
|
3620
|
+
},
|
|
3621
|
+
caption: {
|
|
3622
|
+
fontSize: "sm",
|
|
3623
|
+
color: "gray.400",
|
|
3624
|
+
lineHeight: "sm",
|
|
3625
|
+
marginTop: "0.5"
|
|
3626
|
+
},
|
|
3627
|
+
content: {
|
|
3628
|
+
paddingTop: 3
|
|
3629
|
+
},
|
|
3630
|
+
item: {
|
|
3631
|
+
display: "flex"
|
|
3632
|
+
}
|
|
3633
|
+
}
|
|
3634
|
+
});
|
|
3635
|
+
var timelineDocumentSlotRecipe = defineSlotRecipe25({
|
|
3636
|
+
className: "timelineDocument",
|
|
3637
|
+
jsx: ["MpTimelineDocument", "mp-timeline-document"],
|
|
3638
|
+
slots: ["root", "content", "title", "description", "fileSize"],
|
|
3639
|
+
base: {
|
|
3640
|
+
root: {
|
|
3641
|
+
display: "flex",
|
|
3642
|
+
alignItems: "center",
|
|
3643
|
+
paddingX: "3",
|
|
3644
|
+
paddingY: "2",
|
|
3645
|
+
borderRadius: "lg",
|
|
3646
|
+
borderWidth: "1px",
|
|
3647
|
+
borderColor: "gray.100",
|
|
3648
|
+
width: "full",
|
|
3649
|
+
gap: "3"
|
|
3650
|
+
},
|
|
3651
|
+
content: {
|
|
3652
|
+
display: "flex",
|
|
3653
|
+
flexDirection: "column"
|
|
3654
|
+
},
|
|
3655
|
+
title: {
|
|
3656
|
+
fontSize: "sm",
|
|
3657
|
+
lineHeight: "md",
|
|
3658
|
+
fontWeight: "regular",
|
|
3659
|
+
letterSpacing: "normal",
|
|
3660
|
+
color: "dark"
|
|
3661
|
+
},
|
|
3662
|
+
description: {
|
|
3663
|
+
display: "flex",
|
|
3664
|
+
alignItems: "center"
|
|
3665
|
+
},
|
|
3666
|
+
fileSize: {
|
|
3667
|
+
fontSize: "sm",
|
|
3668
|
+
lineHeight: "md",
|
|
3669
|
+
fontWeight: "regular",
|
|
3670
|
+
letterSpacing: "normal",
|
|
3671
|
+
color: "gray.400"
|
|
3672
|
+
}
|
|
3673
|
+
},
|
|
3674
|
+
variants: {
|
|
3675
|
+
icon: {
|
|
3676
|
+
true: { content: { marginLeft: "3" } },
|
|
3677
|
+
false: { content: { marginLeft: "0" } }
|
|
3678
|
+
}
|
|
3679
|
+
},
|
|
3680
|
+
defaultVariants: {
|
|
3681
|
+
icon: false
|
|
3682
|
+
}
|
|
3683
|
+
});
|
|
3684
|
+
var timelineLogSlotRecipe = defineSlotRecipe25({
|
|
3685
|
+
className: "timelineLog",
|
|
3686
|
+
jsx: ["MpTimelineLog", "MpTimelineLogItem", "mp-timeline-log", "mp-timeline-log-item"],
|
|
3687
|
+
slots: ["root", "log", "logText", "logIcon", "content", "logItem"],
|
|
3688
|
+
base: {
|
|
3689
|
+
root: {
|
|
3690
|
+
display: "flex",
|
|
3691
|
+
flexDirection: "column"
|
|
3692
|
+
},
|
|
3693
|
+
log: {
|
|
3694
|
+
display: "flex",
|
|
3695
|
+
cursor: "pointer"
|
|
3696
|
+
},
|
|
3697
|
+
logText: {
|
|
3698
|
+
color: "gray.400",
|
|
3699
|
+
_groupHover: {
|
|
3700
|
+
color: "blue.500"
|
|
3701
|
+
}
|
|
3702
|
+
},
|
|
3703
|
+
logIcon: {
|
|
3704
|
+
color: "gray.400",
|
|
3705
|
+
_groupHover: { color: "blue.500" }
|
|
3706
|
+
},
|
|
3707
|
+
content: {
|
|
3708
|
+
listStyleType: "disc",
|
|
3709
|
+
paddingLeft: 5
|
|
3710
|
+
},
|
|
3711
|
+
logItem: {
|
|
3712
|
+
color: "gray.600"
|
|
3713
|
+
}
|
|
3714
|
+
}
|
|
3715
|
+
});
|
|
3716
|
+
var timelineSeparatorSlotRecipe = defineSlotRecipe25({
|
|
3717
|
+
className: "timelineSeparetor",
|
|
3718
|
+
jsx: ["MpTimelineSeparator", "mp-timeline-separator"],
|
|
3719
|
+
slots: ["root", "topConnector", "bottomConnector"],
|
|
3720
|
+
base: {
|
|
3721
|
+
root: {
|
|
3722
|
+
display: "flex",
|
|
3723
|
+
flexDirection: "column",
|
|
3724
|
+
alignItems: "center"
|
|
3725
|
+
},
|
|
3726
|
+
topConnector: {
|
|
3727
|
+
height: "6px",
|
|
3728
|
+
width: "2px",
|
|
3729
|
+
backgroundColor: "gray.100",
|
|
3730
|
+
"&[data-position=first]": {
|
|
3731
|
+
backgroundColor: "transparent"
|
|
3732
|
+
}
|
|
3733
|
+
},
|
|
3734
|
+
bottomConnector: {
|
|
3735
|
+
height: "100%",
|
|
3736
|
+
flexGrow: 1,
|
|
3737
|
+
width: "2px",
|
|
3738
|
+
roundedTop: "2px",
|
|
3739
|
+
backgroundColor: "gray.100",
|
|
3740
|
+
"&[data-position=last]": {
|
|
3741
|
+
backgroundColor: "transparent"
|
|
3742
|
+
}
|
|
3743
|
+
}
|
|
3744
|
+
}
|
|
3745
|
+
});
|
|
3746
|
+
var timelineAccordionSlotRecipe = defineSlotRecipe25({
|
|
3747
|
+
className: "timelineAccordion",
|
|
3748
|
+
jsx: ["MpTimelineAccordion", "mp-timeline-accordion"],
|
|
3749
|
+
slots: ["body", "separator", "icon", "topConnector", "bottomConnector", "title", "label"],
|
|
3750
|
+
base: {
|
|
3751
|
+
body: {
|
|
3752
|
+
display: "flex"
|
|
3753
|
+
},
|
|
3754
|
+
separator: {
|
|
3755
|
+
display: "flex",
|
|
3756
|
+
flexDirection: "column",
|
|
3757
|
+
alignItems: "center"
|
|
3758
|
+
},
|
|
3759
|
+
icon: {
|
|
3760
|
+
my: 1,
|
|
3761
|
+
cursor: "pointer"
|
|
3762
|
+
},
|
|
3763
|
+
topConnector: {
|
|
3764
|
+
height: "4px",
|
|
3765
|
+
width: "2px",
|
|
3766
|
+
backgroundColor: "gray.100",
|
|
3767
|
+
"&[data-position=first]": {
|
|
3768
|
+
backgroundColor: "transparent"
|
|
3769
|
+
},
|
|
3770
|
+
roundedBottom: "full"
|
|
3771
|
+
},
|
|
3772
|
+
bottomConnector: {
|
|
3773
|
+
flexGrow: 1,
|
|
3774
|
+
width: "2px",
|
|
3775
|
+
backgroundColor: "gray.100",
|
|
3776
|
+
"&[data-position=last]": {
|
|
3777
|
+
backgroundColor: "transparent"
|
|
3778
|
+
},
|
|
3779
|
+
roundedTop: "full"
|
|
3780
|
+
},
|
|
3781
|
+
title: {
|
|
3782
|
+
paddingTop: 1
|
|
3783
|
+
},
|
|
3784
|
+
label: {
|
|
3785
|
+
fontSize: "md",
|
|
3786
|
+
lineHeight: "md",
|
|
3787
|
+
color: "dark",
|
|
3788
|
+
fontWeight: "semibold",
|
|
3789
|
+
letterSpacing: "normal"
|
|
3790
|
+
}
|
|
3791
|
+
}
|
|
3792
|
+
});
|
|
3793
|
+
|
|
3512
3794
|
// src/recipes/banner.ts
|
|
3513
|
-
import { defineRecipe as defineRecipe14, defineSlotRecipe as
|
|
3514
|
-
var bannerSlotRecipe =
|
|
3795
|
+
import { defineRecipe as defineRecipe14, defineSlotRecipe as defineSlotRecipe26 } from "@pandacss/dev";
|
|
3796
|
+
var bannerSlotRecipe = defineSlotRecipe26({
|
|
3515
3797
|
className: "banner",
|
|
3516
3798
|
jsx: ["MpBanner", "mp-banner"],
|
|
3517
3799
|
slots: ["root", "body"],
|
|
@@ -3584,7 +3866,7 @@ var bannerDescriptionRecipe = defineRecipe14({
|
|
|
3584
3866
|
compoundVariants: [],
|
|
3585
3867
|
defaultVariants: {}
|
|
3586
3868
|
});
|
|
3587
|
-
var bannerIconSlotRecipe =
|
|
3869
|
+
var bannerIconSlotRecipe = defineSlotRecipe26({
|
|
3588
3870
|
className: "banner-icon",
|
|
3589
3871
|
jsx: ["MpBannerIcon", "mp-banner-icon"],
|
|
3590
3872
|
slots: ["root", "custom"],
|
|
@@ -3639,6 +3921,208 @@ var bannerCloseButtonRecipe = defineRecipe14({
|
|
|
3639
3921
|
defaultVariants: {}
|
|
3640
3922
|
});
|
|
3641
3923
|
|
|
3924
|
+
// src/recipes/color-picker.ts
|
|
3925
|
+
import { defineSlotRecipe as defineSlotRecipe27 } from "@pandacss/dev";
|
|
3926
|
+
var colorPickerSlotRecipe = defineSlotRecipe27({
|
|
3927
|
+
className: "color-picker",
|
|
3928
|
+
jsx: ["MpColorPicker", "mp-color-picker"],
|
|
3929
|
+
slots: [
|
|
3930
|
+
"root",
|
|
3931
|
+
"popoverTrigger",
|
|
3932
|
+
"boxColor",
|
|
3933
|
+
"inputTrigger",
|
|
3934
|
+
"iconDropdown",
|
|
3935
|
+
"popoverContent",
|
|
3936
|
+
"wrapperAdvance",
|
|
3937
|
+
"wrapperBasic",
|
|
3938
|
+
"wrapperSaturation",
|
|
3939
|
+
"wrapperHue",
|
|
3940
|
+
"wrapperInput",
|
|
3941
|
+
"boxPreset",
|
|
3942
|
+
"wrapperPreset",
|
|
3943
|
+
"wrapperBasicPreset"
|
|
3944
|
+
],
|
|
3945
|
+
base: {
|
|
3946
|
+
root: {
|
|
3947
|
+
width: "280px",
|
|
3948
|
+
position: "relative",
|
|
3949
|
+
display: "flex",
|
|
3950
|
+
flexDirection: "column",
|
|
3951
|
+
gap: "2"
|
|
3952
|
+
},
|
|
3953
|
+
popoverTrigger: {
|
|
3954
|
+
display: "flex",
|
|
3955
|
+
alignItems: "center",
|
|
3956
|
+
cursor: "pointer",
|
|
3957
|
+
position: "relative",
|
|
3958
|
+
height: "38px",
|
|
3959
|
+
pl: "2",
|
|
3960
|
+
pr: "3",
|
|
3961
|
+
borderRadius: "md",
|
|
3962
|
+
border: "1px solid",
|
|
3963
|
+
_focus: {
|
|
3964
|
+
boxShadow: "outline !important",
|
|
3965
|
+
borderColor: "blue.400 !important",
|
|
3966
|
+
outline: "none"
|
|
3967
|
+
}
|
|
3968
|
+
},
|
|
3969
|
+
boxColor: {
|
|
3970
|
+
flex: "none",
|
|
3971
|
+
width: "6",
|
|
3972
|
+
height: "6",
|
|
3973
|
+
borderWidth: "1px",
|
|
3974
|
+
borderColor: "gray.50",
|
|
3975
|
+
borderRadius: "sm",
|
|
3976
|
+
mr: "2"
|
|
3977
|
+
},
|
|
3978
|
+
inputTrigger: {
|
|
3979
|
+
margin: "-12px",
|
|
3980
|
+
textTransform: "uppercase"
|
|
3981
|
+
},
|
|
3982
|
+
iconDropdown: {
|
|
3983
|
+
position: "absolute",
|
|
3984
|
+
right: "3",
|
|
3985
|
+
ml: "2",
|
|
3986
|
+
_focus: {
|
|
3987
|
+
outline: "none"
|
|
3988
|
+
}
|
|
3989
|
+
},
|
|
3990
|
+
popoverContent: {
|
|
3991
|
+
bg: "white",
|
|
3992
|
+
rounded: "md",
|
|
3993
|
+
shadow: "lg",
|
|
3994
|
+
borderWidth: "1px",
|
|
3995
|
+
borderColor: "gray.400"
|
|
3996
|
+
},
|
|
3997
|
+
wrapperAdvance: {
|
|
3998
|
+
display: "flex",
|
|
3999
|
+
flexDirection: "column",
|
|
4000
|
+
position: "relative",
|
|
4001
|
+
width: "280px",
|
|
4002
|
+
padding: "3",
|
|
4003
|
+
gap: "3"
|
|
4004
|
+
},
|
|
4005
|
+
wrapperBasic: {
|
|
4006
|
+
display: "flex",
|
|
4007
|
+
flexDirection: "column",
|
|
4008
|
+
position: "relative",
|
|
4009
|
+
width: "188px",
|
|
4010
|
+
padding: "3",
|
|
4011
|
+
gap: "3"
|
|
4012
|
+
},
|
|
4013
|
+
wrapperSaturation: {
|
|
4014
|
+
position: "relative",
|
|
4015
|
+
width: "100%",
|
|
4016
|
+
height: "144px",
|
|
4017
|
+
overflow: "hidden"
|
|
4018
|
+
},
|
|
4019
|
+
wrapperHue: {
|
|
4020
|
+
position: "relative",
|
|
4021
|
+
height: "28px"
|
|
4022
|
+
},
|
|
4023
|
+
wrapperInput: {
|
|
4024
|
+
position: "relative",
|
|
4025
|
+
display: "flex",
|
|
4026
|
+
gap: "2"
|
|
4027
|
+
},
|
|
4028
|
+
boxPreset: {
|
|
4029
|
+
display: "flex",
|
|
4030
|
+
flexDirection: "column",
|
|
4031
|
+
gap: "2",
|
|
4032
|
+
position: "relative"
|
|
4033
|
+
},
|
|
4034
|
+
wrapperPreset: {
|
|
4035
|
+
position: "relative",
|
|
4036
|
+
display: "flex",
|
|
4037
|
+
flexWrap: "wrap",
|
|
4038
|
+
gap: "5px"
|
|
4039
|
+
},
|
|
4040
|
+
wrapperBasicPreset: {
|
|
4041
|
+
position: "relative",
|
|
4042
|
+
display: "flex",
|
|
4043
|
+
flexWrap: "wrap",
|
|
4044
|
+
gap: "4px"
|
|
4045
|
+
}
|
|
4046
|
+
}
|
|
4047
|
+
});
|
|
4048
|
+
|
|
4049
|
+
// src/recipes/slider.ts
|
|
4050
|
+
import { defineSlotRecipe as defineSlotRecipe28 } from "@pandacss/dev";
|
|
4051
|
+
var sliderSlotRecipe = defineSlotRecipe28({
|
|
4052
|
+
className: "slider",
|
|
4053
|
+
jsx: ["MpSlider", "mp-slider"],
|
|
4054
|
+
slots: [
|
|
4055
|
+
"root",
|
|
4056
|
+
"labelWrapper",
|
|
4057
|
+
"sliderWrapper",
|
|
4058
|
+
"progress",
|
|
4059
|
+
"slider",
|
|
4060
|
+
"inputWrapper",
|
|
4061
|
+
"input",
|
|
4062
|
+
"legendWrapper"
|
|
4063
|
+
],
|
|
4064
|
+
base: {
|
|
4065
|
+
root: {
|
|
4066
|
+
position: "relative",
|
|
4067
|
+
width: "full",
|
|
4068
|
+
display: "flex",
|
|
4069
|
+
flexDirection: "column",
|
|
4070
|
+
gap: "10px"
|
|
4071
|
+
},
|
|
4072
|
+
labelWrapper: {
|
|
4073
|
+
display: "flex",
|
|
4074
|
+
justifyContent: "space-between"
|
|
4075
|
+
},
|
|
4076
|
+
sliderWrapper: {
|
|
4077
|
+
position: "relative",
|
|
4078
|
+
width: "full",
|
|
4079
|
+
display: "flex",
|
|
4080
|
+
flexDirection: "column"
|
|
4081
|
+
},
|
|
4082
|
+
progress: {
|
|
4083
|
+
position: "relative",
|
|
4084
|
+
height: "2",
|
|
4085
|
+
borderRadius: "100px"
|
|
4086
|
+
},
|
|
4087
|
+
slider: {
|
|
4088
|
+
position: "absolute",
|
|
4089
|
+
height: "2",
|
|
4090
|
+
borderRadius: "100px"
|
|
4091
|
+
},
|
|
4092
|
+
inputWrapper: {
|
|
4093
|
+
position: "relative"
|
|
4094
|
+
},
|
|
4095
|
+
input: {
|
|
4096
|
+
appearance: "none",
|
|
4097
|
+
position: "absolute",
|
|
4098
|
+
width: "full",
|
|
4099
|
+
height: "2",
|
|
4100
|
+
top: "-8px",
|
|
4101
|
+
background: "none",
|
|
4102
|
+
outline: "none",
|
|
4103
|
+
_focusVisible: {
|
|
4104
|
+
borderRadius: "100px",
|
|
4105
|
+
borderWidth: "1px",
|
|
4106
|
+
borderStyle: "solid",
|
|
4107
|
+
borderColor: "blue.400",
|
|
4108
|
+
boxShadow: "focus"
|
|
4109
|
+
},
|
|
4110
|
+
"&::-webkit-slider-thumb": {
|
|
4111
|
+
appearance: "none",
|
|
4112
|
+
width: "5",
|
|
4113
|
+
height: "5",
|
|
4114
|
+
borderRadius: "full",
|
|
4115
|
+
borderStyle: "solid",
|
|
4116
|
+
borderColor: "gray.100",
|
|
4117
|
+
boxShadow: "sm",
|
|
4118
|
+
filter: "drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.05)) drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.10))",
|
|
4119
|
+
transition: "border-color 250ms",
|
|
4120
|
+
pointerEvents: "auto"
|
|
4121
|
+
}
|
|
4122
|
+
}
|
|
4123
|
+
}
|
|
4124
|
+
});
|
|
4125
|
+
|
|
3642
4126
|
// src/recipes/index.ts
|
|
3643
4127
|
var recipes = {
|
|
3644
4128
|
buttonRecipe,
|
|
@@ -3652,7 +4136,6 @@ var recipes = {
|
|
|
3652
4136
|
badgeRecipe,
|
|
3653
4137
|
textareaRecipe,
|
|
3654
4138
|
tooltipRecipe,
|
|
3655
|
-
tabListRecipe,
|
|
3656
4139
|
tabRecipe,
|
|
3657
4140
|
selectedBorderRecipe,
|
|
3658
4141
|
tableRecipe,
|
|
@@ -3671,7 +4154,7 @@ var recipes = {
|
|
|
3671
4154
|
timeItemRecipe
|
|
3672
4155
|
};
|
|
3673
4156
|
var slotRecipes = {
|
|
3674
|
-
|
|
4157
|
+
accordionSlotRecipe,
|
|
3675
4158
|
checkboxSlotRecipe,
|
|
3676
4159
|
radioSlotRecipe,
|
|
3677
4160
|
sharedSlotRecipe,
|
|
@@ -3697,12 +4180,22 @@ var slotRecipes = {
|
|
|
3697
4180
|
broadcastSlotRecipe,
|
|
3698
4181
|
richTextEditorSlotRecipe,
|
|
3699
4182
|
datePickerSlotRecipe,
|
|
4183
|
+
timePanelSlotRecipe,
|
|
3700
4184
|
tableDateSlotRecipe,
|
|
3701
4185
|
tableMonthSlotRecipe,
|
|
3702
4186
|
tableYearSlotRecipe,
|
|
3703
4187
|
pinbarSlotRecipe,
|
|
3704
4188
|
carouselSlotRecipe,
|
|
3705
|
-
chartSlotRecipe
|
|
4189
|
+
chartSlotRecipe,
|
|
4190
|
+
autocompleteSlotRecipe,
|
|
4191
|
+
timelineSlotRecipe,
|
|
4192
|
+
timelineDocumentSlotRecipe,
|
|
4193
|
+
timelineLogSlotRecipe,
|
|
4194
|
+
timelineSeparatorSlotRecipe,
|
|
4195
|
+
timelineAccordionSlotRecipe,
|
|
4196
|
+
tabListSlotRecipe,
|
|
4197
|
+
colorPickerSlotRecipe,
|
|
4198
|
+
sliderSlotRecipe
|
|
3706
4199
|
};
|
|
3707
4200
|
|
|
3708
4201
|
// src/text-styles.ts
|