@okshaun/components 0.4.5 → 0.5.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/preset.js CHANGED
@@ -116,6 +116,28 @@ const keyframes$1 = {
116
116
  transform: "none",
117
117
  animationTimingFunction: "cubic-bezier(0,0,0.2,1)"
118
118
  }
119
+ },
120
+ badgePop: {
121
+ "0%": {
122
+ transform: "translate(50%, -50%) scale(1)"
123
+ },
124
+ "50%": {
125
+ transform: "translate(50%, -50%) scale(1.2)"
126
+ },
127
+ "100%": {
128
+ transform: "translate(50%, -50%) scale(1)"
129
+ }
130
+ },
131
+ badgePopStandalone: {
132
+ "0%": {
133
+ transform: "scale(1)"
134
+ },
135
+ "50%": {
136
+ transform: "scale(1.2)"
137
+ },
138
+ "100%": {
139
+ transform: "scale(1)"
140
+ }
119
141
  }
120
142
  };
121
143
  const easings = {
@@ -4478,6 +4500,7 @@ const conditions = {
4478
4500
  focusWithin: "&:focus-within",
4479
4501
  focusVisible: "&:is(:focus-visible, [data-focus-visible=true])",
4480
4502
  disabled: "&:is(:disabled, [disabled], [data-disabled], [aria-disabled=true])",
4503
+ deleted: "&:is(:deleted, [deleted], [data-deleted=true])",
4481
4504
  active: "&:is(:active, [data-active=true])",
4482
4505
  visited: "&:visited",
4483
4506
  target: "&:target",
@@ -4548,7 +4571,7 @@ const conditions = {
4548
4571
  open: '&:is([open], [data-open], [data-state="open"], :popover-open)',
4549
4572
  closed: '&:is([closed], [data-closed], [data-state="closed"])',
4550
4573
  fullscreen: "&:is(:fullscreen, [data-fullscreen])",
4551
- loading: "&:is([data-loading], [aria-busy=true])",
4574
+ loading: "&:is([data-loading=true], [aria-busy=true])",
4552
4575
  hidden: "&:is([hidden], [data-hidden])",
4553
4576
  current: "&:is([aria-current=true], [data-current])",
4554
4577
  currentPage: "&[aria-current=page]",
@@ -4667,78 +4690,6 @@ const globalCss = defineGlobalStyles({
4667
4690
  display: "list-item"
4668
4691
  }
4669
4692
  });
4670
- const badgeRecipe = defineRecipe({
4671
- className: "badge",
4672
- jsx: ["Badge"],
4673
- staticCss: [{ size: ["sm", "md", "lg"] }],
4674
- base: {
4675
- alignItems: "center",
4676
- borderRadius: "full",
4677
- colorPalette: "accent",
4678
- display: "inline-flex",
4679
- fontWeight: "medium",
4680
- userSelect: "none",
4681
- whiteSpace: "nowrap"
4682
- },
4683
- defaultVariants: {
4684
- variant: "subtle",
4685
- size: "md"
4686
- },
4687
- variants: {
4688
- variant: {
4689
- solid: {
4690
- background: "colorPalette.default",
4691
- color: "colorPalette.fg"
4692
- },
4693
- subtle: {
4694
- background: "bg.subtle",
4695
- borderColor: "border.subtle",
4696
- borderWidth: "1px",
4697
- color: "fg.default",
4698
- "& svg": {
4699
- color: "fg.muted"
4700
- }
4701
- },
4702
- outline: {
4703
- color: "fg.default",
4704
- borderWidth: "2px",
4705
- borderColor: "border.default"
4706
- }
4707
- },
4708
- size: {
4709
- sm: {
4710
- textStyle: "xs",
4711
- px: "2",
4712
- h: "5",
4713
- gap: "1",
4714
- "& svg": {
4715
- width: "3",
4716
- height: "3"
4717
- }
4718
- },
4719
- md: {
4720
- textStyle: "xs",
4721
- px: "2.5",
4722
- h: "6",
4723
- gap: "1.5",
4724
- "& svg": {
4725
- width: "4",
4726
- height: "4"
4727
- }
4728
- },
4729
- lg: {
4730
- textStyle: "sm",
4731
- px: "3",
4732
- h: "7",
4733
- gap: "1.5",
4734
- "& svg": {
4735
- width: "4",
4736
- height: "4"
4737
- }
4738
- }
4739
- }
4740
- }
4741
- });
4742
4693
  const textareaVariants = {
4743
4694
  size: {
4744
4695
  medium: {
@@ -5779,6 +5730,8 @@ const baseButtonStyles = {
5779
5730
  alignItems: "center",
5780
5731
  gap: 4,
5781
5732
  minWidth: 0,
5733
+ width: "fit",
5734
+ height: "fit",
5782
5735
  transitionDuration: "fast",
5783
5736
  transitionProperty: "background, border-color, color, box-shadow",
5784
5737
  transitionTimingFunction: "default",
@@ -5795,12 +5748,10 @@ const baseButtonStyles = {
5795
5748
  outlineWidth: 2,
5796
5749
  outlineStyle: "solid",
5797
5750
  outlineColor: "transparent",
5798
- // outlineOffset: 1,
5799
5751
  textDecoration: "none",
5800
5752
  whiteSpace: "nowrap",
5801
5753
  cursor: "pointer",
5802
5754
  _focusVisible: {
5803
- // borderColor: 'border.focused',
5804
5755
  outlineColor: "border.focused"
5805
5756
  },
5806
5757
  _disabled: {
@@ -6731,15 +6682,598 @@ const menuRecipe$1 = defineSlotRecipe({
6731
6682
  indicatorPosition: "left"
6732
6683
  }
6733
6684
  });
6685
+ const chipBase = {
6686
+ container: {
6687
+ position: "relative",
6688
+ display: "inline-flex",
6689
+ alignItems: "center",
6690
+ width: "fit",
6691
+ borderRadius: "full",
6692
+ fontFamily: "sans",
6693
+ lineHeight: "default",
6694
+ fontWeight: "medium",
6695
+ whiteSpace: "nowrap",
6696
+ verticalAlign: "middle",
6697
+ cursor: "pointer",
6698
+ transitionDuration: "fast",
6699
+ transitionProperty: "background, border-color, color, box-shadow",
6700
+ transitionTimingFunction: "default",
6701
+ userSelect: "none",
6702
+ outlineWidth: 2,
6703
+ outlineStyle: "solid",
6704
+ outlineColor: "transparent",
6705
+ bg: "bg.neutral",
6706
+ color: "text",
6707
+ icon: { fill: "icon.decorative" },
6708
+ _hover: {
6709
+ bg: "bg.neutral.hovered",
6710
+ icon: { fill: "icon.decorative.hovered" }
6711
+ },
6712
+ _active: {
6713
+ bg: "bg.neutral.pressed",
6714
+ icon: { fill: "icon.decorative.hovered" }
6715
+ },
6716
+ _focusVisible: {
6717
+ outlineColor: "border.focused"
6718
+ },
6719
+ _loading: {
6720
+ cursor: "wait",
6721
+ animation: "pulse"
6722
+ },
6723
+ _deleted: {
6724
+ textDecoration: "line-through",
6725
+ cursor: "not-allowed",
6726
+ opacity: 0.6
6727
+ },
6728
+ _disabled: {
6729
+ cursor: "not-allowed",
6730
+ bg: "bg.disabled",
6731
+ color: "text.disabled",
6732
+ borderColor: "border.disabled",
6733
+ icon: { fill: "icon.disabled" },
6734
+ _hover: {
6735
+ bg: "bg.disabled",
6736
+ color: "text.disabled",
6737
+ borderColor: "border.disabled",
6738
+ icon: { fill: "icon.disabled" }
6739
+ }
6740
+ },
6741
+ _selected: {
6742
+ bg: "bg.brand.boldest",
6743
+ color: "text.inverse",
6744
+ icon: { fill: "icon.decorative.inverse" },
6745
+ _hover: {
6746
+ bg: "bg.brand.boldest.hovered",
6747
+ icon: { fill: "icon.inverse" }
6748
+ },
6749
+ _active: {
6750
+ bg: "bg.brand.boldest.pressed",
6751
+ icon: { fill: "icon.inverse" }
6752
+ }
6753
+ }
6754
+ },
6755
+ icon: {
6756
+ aspectRatio: "square",
6757
+ transitionDuration: "fast",
6758
+ transitionProperty: "fill",
6759
+ transitionTimingFunction: "default"
6760
+ }
6761
+ };
6762
+ const chipRecipe$1 = defineSlotRecipe({
6763
+ className: "chip",
6764
+ jsx: ["Chip"],
6765
+ slots: ["container", "icon"],
6766
+ base: chipBase,
6767
+ variants: {
6768
+ size: {
6769
+ default: {
6770
+ container: {
6771
+ gap: "4",
6772
+ h: "24",
6773
+ px: "8",
6774
+ py: "1",
6775
+ fontSize: "14"
6776
+ },
6777
+ icon: {
6778
+ w: "20",
6779
+ h: "20"
6780
+ }
6781
+ },
6782
+ small: {
6783
+ container: {
6784
+ gap: "2",
6785
+ h: "20",
6786
+ px: "6",
6787
+ py: "0",
6788
+ fontSize: "14"
6789
+ },
6790
+ icon: {
6791
+ w: "20",
6792
+ h: "20"
6793
+ }
6794
+ },
6795
+ large: {
6796
+ container: {
6797
+ gap: "4",
6798
+ h: "32",
6799
+ px: "10",
6800
+ py: "4",
6801
+ fontSize: "16"
6802
+ },
6803
+ icon: {
6804
+ w: "24",
6805
+ h: "24"
6806
+ }
6807
+ }
6808
+ },
6809
+ before: {
6810
+ true: { container: {} }
6811
+ },
6812
+ after: {
6813
+ true: { container: {} }
6814
+ }
6815
+ },
6816
+ compoundVariants: [
6817
+ {
6818
+ size: "default",
6819
+ before: true,
6820
+ css: {
6821
+ container: { ps: "2" }
6822
+ }
6823
+ },
6824
+ {
6825
+ size: "default",
6826
+ after: true,
6827
+ css: {
6828
+ container: { pe: "2" }
6829
+ }
6830
+ },
6831
+ {
6832
+ size: "small",
6833
+ before: true,
6834
+ css: {
6835
+ container: { ps: "2" }
6836
+ }
6837
+ },
6838
+ {
6839
+ size: "small",
6840
+ after: true,
6841
+ css: {
6842
+ container: { pe: "2" }
6843
+ }
6844
+ },
6845
+ {
6846
+ size: "large",
6847
+ before: true,
6848
+ css: {
6849
+ container: { ps: "4" }
6850
+ }
6851
+ },
6852
+ {
6853
+ size: "large",
6854
+ after: true,
6855
+ css: {
6856
+ container: { pe: "4" }
6857
+ }
6858
+ }
6859
+ ],
6860
+ defaultVariants: {
6861
+ size: "default"
6862
+ }
6863
+ });
6864
+ const badgeRecipe$1 = defineSlotRecipe({
6865
+ className: "badge",
6866
+ jsx: ["Badge"],
6867
+ slots: ["root", "indicator"],
6868
+ staticCss: [
6869
+ {
6870
+ size: ["sm", "md", "lg"],
6871
+ standalone: ["true", "false"],
6872
+ dot: ["true", "false"],
6873
+ appearance: [
6874
+ "neutral",
6875
+ "inverted",
6876
+ "subtle",
6877
+ "subtle-inverted",
6878
+ "success",
6879
+ "danger",
6880
+ "warning",
6881
+ "info"
6882
+ ]
6883
+ }
6884
+ ],
6885
+ base: {
6886
+ root: {
6887
+ display: "inline-flex",
6888
+ position: "relative",
6889
+ verticalAlign: "middle"
6890
+ },
6891
+ indicator: {
6892
+ display: "inline-flex",
6893
+ alignItems: "center",
6894
+ justifyContent: "center",
6895
+ borderRadius: "full",
6896
+ fontWeight: "medium",
6897
+ fontFamily: "sans",
6898
+ lineHeight: "1",
6899
+ whiteSpace: "nowrap",
6900
+ userSelect: "none",
6901
+ zIndex: "1"
6902
+ }
6903
+ },
6904
+ variants: {
6905
+ size: {
6906
+ sm: {
6907
+ indicator: {
6908
+ h: "6",
6909
+ fontSize: "10",
6910
+ p: "3"
6911
+ }
6912
+ },
6913
+ md: {
6914
+ indicator: {
6915
+ h: "8",
6916
+ fontSize: "12",
6917
+ p: "4"
6918
+ }
6919
+ },
6920
+ lg: {
6921
+ indicator: {
6922
+ h: "10",
6923
+ fontSize: "14",
6924
+ p: "5"
6925
+ }
6926
+ }
6927
+ },
6928
+ // When standalone (no children), don't use absolute positioning
6929
+ standalone: {
6930
+ true: {
6931
+ root: {
6932
+ display: "inline-flex"
6933
+ },
6934
+ indicator: {
6935
+ position: "static",
6936
+ transform: "none"
6937
+ }
6938
+ },
6939
+ false: {
6940
+ root: {
6941
+ display: "inline-flex",
6942
+ position: "relative",
6943
+ verticalAlign: "middle"
6944
+ },
6945
+ indicator: {
6946
+ position: "absolute",
6947
+ top: "0",
6948
+ right: "0",
6949
+ transform: "translate(50%, -50%)"
6950
+ }
6951
+ }
6952
+ },
6953
+ // Dot mode: smaller, no text
6954
+ dot: {
6955
+ true: {
6956
+ indicator: {
6957
+ // Dot mode styles handled by base + size variants
6958
+ }
6959
+ },
6960
+ false: {
6961
+ indicator: {
6962
+ // Count mode - compound variants handle sizing
6963
+ }
6964
+ }
6965
+ },
6966
+ // Appearance variants for color schemes
6967
+ appearance: {
6968
+ neutral: {
6969
+ indicator: {
6970
+ bg: { base: "neutral.30", _dark: "darkNeutral.40" },
6971
+ color: "text"
6972
+ }
6973
+ },
6974
+ subtle: {
6975
+ indicator: {
6976
+ bg: "bg.neutral",
6977
+ color: "text"
6978
+ }
6979
+ },
6980
+ inverted: {
6981
+ indicator: {
6982
+ bg: "bg.neutral.inverse.bold",
6983
+ color: "text.inverse"
6984
+ }
6985
+ },
6986
+ "subtle-inverted": {
6987
+ indicator: {
6988
+ bg: "bg.neutral.inverse.subtle",
6989
+ color: "text"
6990
+ }
6991
+ },
6992
+ success: {
6993
+ indicator: {
6994
+ bg: "bg.success.bold",
6995
+ color: "text.inverse"
6996
+ }
6997
+ },
6998
+ danger: {
6999
+ indicator: {
7000
+ bg: "bg.danger.bold",
7001
+ color: "text.inverse"
7002
+ }
7003
+ },
7004
+ warning: {
7005
+ indicator: {
7006
+ bg: "bg.warning.bold",
7007
+ color: "text.warning.inverse"
7008
+ }
7009
+ },
7010
+ info: {
7011
+ indicator: {
7012
+ bg: "bg.info.bold",
7013
+ color: "text.inverse"
7014
+ }
7015
+ }
7016
+ }
7017
+ },
7018
+ compoundVariants: [
7019
+ // Count mode sizes (smaller than count mode)
7020
+ {
7021
+ dot: false,
7022
+ size: "sm",
7023
+ css: {
7024
+ indicator: {
7025
+ minW: "16",
7026
+ h: "fit"
7027
+ // w: '4',
7028
+ // h: '4',
7029
+ // p: '3',
7030
+ }
7031
+ }
7032
+ },
7033
+ {
7034
+ dot: false,
7035
+ size: "md",
7036
+ css: {
7037
+ indicator: {
7038
+ minW: "20",
7039
+ h: "fit"
7040
+ // w: '6',
7041
+ // h: '6',
7042
+ // p: '4',
7043
+ }
7044
+ }
7045
+ },
7046
+ {
7047
+ dot: false,
7048
+ size: "lg",
7049
+ css: {
7050
+ indicator: {
7051
+ minW: "24",
7052
+ h: "fit"
7053
+ // w: '8',
7054
+ // h: '8',
7055
+ // p: '5',
7056
+ }
7057
+ }
7058
+ }
7059
+ ],
7060
+ defaultVariants: {
7061
+ size: "md",
7062
+ appearance: "danger"
7063
+ }
7064
+ });
7065
+ const avatarRecipe$1 = defineSlotRecipe({
7066
+ className: "avatar",
7067
+ jsx: ["Avatar"],
7068
+ slots: ["root", "image", "fallback", "presence", "status"],
7069
+ staticCss: [
7070
+ {
7071
+ size: ["xs", "sm", "md", "lx", "xl", "2xl"],
7072
+ shape: ["circle", "square", "hexagon"]
7073
+ }
7074
+ ],
7075
+ base: {
7076
+ root: {
7077
+ display: "inline-flex",
7078
+ position: "relative",
7079
+ alignItems: "center",
7080
+ justifyContent: "center",
7081
+ verticalAlign: "middle",
7082
+ flexShrink: 0,
7083
+ color: "text",
7084
+ bg: "bg.neutral",
7085
+ userSelect: "none",
7086
+ aspectRatio: "square"
7087
+ },
7088
+ image: {
7089
+ w: "full",
7090
+ h: "full",
7091
+ objectFit: "cover",
7092
+ overflow: "hidden"
7093
+ },
7094
+ fallback: {
7095
+ display: "flex",
7096
+ alignItems: "center",
7097
+ justifyContent: "center",
7098
+ w: "full",
7099
+ h: "full",
7100
+ fontFamily: "sans",
7101
+ fontWeight: "medium",
7102
+ textTransform: "uppercase",
7103
+ color: "text.subtle"
7104
+ },
7105
+ presence: {
7106
+ position: "absolute",
7107
+ bottom: "0",
7108
+ right: "0",
7109
+ borderRadius: "full",
7110
+ borderWidth: "2",
7111
+ borderStyle: "solid",
7112
+ borderColor: "bg",
7113
+ zIndex: 1
7114
+ },
7115
+ status: {
7116
+ position: "absolute",
7117
+ top: "0",
7118
+ right: "0",
7119
+ display: "flex",
7120
+ alignItems: "center",
7121
+ justifyContent: "center",
7122
+ borderRadius: "full",
7123
+ borderWidth: "2",
7124
+ borderStyle: "solid",
7125
+ borderColor: "bg",
7126
+ zIndex: 1
7127
+ }
7128
+ },
7129
+ variants: {
7130
+ size: {
7131
+ xs: {
7132
+ root: {
7133
+ w: "16",
7134
+ h: "16"
7135
+ },
7136
+ fallback: {
7137
+ fontSize: "8"
7138
+ },
7139
+ presence: {
7140
+ w: "6",
7141
+ h: "6"
7142
+ },
7143
+ status: {
7144
+ w: "8",
7145
+ h: "8"
7146
+ }
7147
+ },
7148
+ sm: {
7149
+ root: {
7150
+ w: "20",
7151
+ h: "20"
7152
+ },
7153
+ fallback: {
7154
+ fontSize: "10"
7155
+ },
7156
+ presence: {
7157
+ w: "8",
7158
+ h: "8"
7159
+ },
7160
+ status: {
7161
+ w: "10",
7162
+ h: "10"
7163
+ }
7164
+ },
7165
+ md: {
7166
+ root: {
7167
+ w: "24",
7168
+ h: "24"
7169
+ },
7170
+ fallback: {
7171
+ fontSize: "12"
7172
+ },
7173
+ presence: {
7174
+ w: "8",
7175
+ h: "8"
7176
+ },
7177
+ status: {
7178
+ w: "10",
7179
+ h: "10"
7180
+ }
7181
+ },
7182
+ lg: {
7183
+ root: {
7184
+ w: "32",
7185
+ h: "32"
7186
+ },
7187
+ fallback: {
7188
+ fontSize: "14"
7189
+ },
7190
+ presence: {
7191
+ w: "10",
7192
+ h: "10"
7193
+ },
7194
+ status: {
7195
+ w: "12",
7196
+ h: "12"
7197
+ }
7198
+ },
7199
+ xl: {
7200
+ root: {
7201
+ w: "48",
7202
+ h: "48"
7203
+ },
7204
+ fallback: {
7205
+ fontSize: "20"
7206
+ },
7207
+ presence: {
7208
+ w: "12",
7209
+ h: "12"
7210
+ },
7211
+ status: {
7212
+ w: "16",
7213
+ h: "16"
7214
+ }
7215
+ },
7216
+ "2xl": {
7217
+ root: {
7218
+ w: "64",
7219
+ h: "64"
7220
+ },
7221
+ fallback: {
7222
+ fontSize: "24"
7223
+ },
7224
+ presence: {
7225
+ w: "14",
7226
+ h: "14"
7227
+ },
7228
+ status: {
7229
+ w: "20",
7230
+ h: "20"
7231
+ }
7232
+ }
7233
+ },
7234
+ shape: {
7235
+ circle: {
7236
+ root: {
7237
+ borderRadius: "full"
7238
+ },
7239
+ image: {
7240
+ borderRadius: "full"
7241
+ }
7242
+ },
7243
+ square: {
7244
+ root: {
7245
+ borderRadius: "4"
7246
+ },
7247
+ image: {
7248
+ borderRadius: "4"
7249
+ }
7250
+ },
7251
+ hexagon: {
7252
+ root: {
7253
+ clipPath: "polygon(45% 1.33975%,46.5798% .60307%,48.26352% .15192%,50% 0,51.73648% .15192%,53.4202% .60307%,55% 1.33975%,89.64102% 21.33975%,91.06889% 22.33956%,92.30146% 23.57212%,93.30127% 25%,94.03794% 26.5798%,94.48909% 28.26352%,94.64102% 30%,94.64102% 70%,94.48909% 71.73648%,94.03794% 73.4202%,93.30127% 75%,92.30146% 76.42788%,91.06889% 77.66044%,89.64102% 78.66025%,55% 98.66025%,53.4202% 99.39693%,51.73648% 99.84808%,50% 100%,48.26352% 99.84808%,46.5798% 99.39693%,45% 98.66025%,10.35898% 78.66025%,8.93111% 77.66044%,7.69854% 76.42788%,6.69873% 75%,5.96206% 73.4202%,5.51091% 71.73648%,5.35898% 70%,5.35898% 30%,5.51091% 28.26352%,5.96206% 26.5798%,6.69873% 25%,7.69854% 23.57212%,8.93111% 22.33956%,10.35898% 21.33975%)"
7254
+ },
7255
+ image: {
7256
+ clipPath: "polygon(45% 1.33975%,46.5798% .60307%,48.26352% .15192%,50% 0,51.73648% .15192%,53.4202% .60307%,55% 1.33975%,89.64102% 21.33975%,91.06889% 22.33956%,92.30146% 23.57212%,93.30127% 25%,94.03794% 26.5798%,94.48909% 28.26352%,94.64102% 30%,94.64102% 70%,94.48909% 71.73648%,94.03794% 73.4202%,93.30127% 75%,92.30146% 76.42788%,91.06889% 77.66044%,89.64102% 78.66025%,55% 98.66025%,53.4202% 99.39693%,51.73648% 99.84808%,50% 100%,48.26352% 99.84808%,46.5798% 99.39693%,45% 98.66025%,10.35898% 78.66025%,8.93111% 77.66044%,7.69854% 76.42788%,6.69873% 75%,5.96206% 73.4202%,5.51091% 71.73648%,5.35898% 70%,5.35898% 30%,5.51091% 28.26352%,5.96206% 26.5798%,6.69873% 25%,7.69854% 23.57212%,8.93111% 22.33956%,10.35898% 21.33975%)"
7257
+ }
7258
+ }
7259
+ }
7260
+ },
7261
+ defaultVariants: {
7262
+ size: "md",
7263
+ shape: "circle"
7264
+ }
7265
+ });
6734
7266
  const componentRecipes = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6735
7267
  __proto__: null,
6736
- badgeRecipe,
7268
+ avatarRecipe: avatarRecipe$1,
7269
+ badgeRecipe: badgeRecipe$1,
6737
7270
  boxRecipe,
6738
7271
  breadcrumbsRecipe,
6739
7272
  buttonRecipe: buttonRecipe$1,
6740
7273
  cardRecipe,
6741
7274
  checkboxInputRecipe,
6742
7275
  checkboxRecipe: checkboxRecipe$1,
7276
+ chipRecipe: chipRecipe$1,
6743
7277
  codeRecipe,
6744
7278
  dividerRecipe,
6745
7279
  headingRecipe,
@@ -6761,6 +7295,7 @@ const componentRecipes = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.de
6761
7295
  tooltipRecipe: tooltipRecipe$1
6762
7296
  }, Symbol.toStringTag, { value: "Module" }));
6763
7297
  const {
7298
+ badgeRecipe,
6764
7299
  buttonRecipe,
6765
7300
  iconButtonRecipe,
6766
7301
  checkboxRecipe,
@@ -6768,6 +7303,8 @@ const {
6768
7303
  tooltipRecipe,
6769
7304
  menuRecipe,
6770
7305
  toggleRecipe,
7306
+ chipRecipe,
7307
+ avatarRecipe,
6771
7308
  ...regularComponents
6772
7309
  } = componentRecipes;
6773
7310
  const transformedRecipes = Object.fromEntries(
@@ -6813,13 +7350,16 @@ const okshaunPreset = definePreset$1({
6813
7350
  ...transformedRecipes
6814
7351
  },
6815
7352
  slotRecipes: {
7353
+ badge: badgeRecipe,
6816
7354
  button: buttonRecipe,
6817
7355
  iconButton: iconButtonRecipe,
6818
7356
  checkbox: checkboxRecipe,
6819
7357
  radio: radioRecipe,
6820
7358
  tooltip: tooltipRecipe,
6821
7359
  menu: menuRecipe,
6822
- toggle: toggleRecipe
7360
+ toggle: toggleRecipe,
7361
+ chip: chipRecipe,
7362
+ avatar: avatarRecipe
6823
7363
  }
6824
7364
  }
6825
7365
  },