@lets-events/react 3.0.0 → 4.0.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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @lets-events/react@3.0.0 build
2
+ > @lets-events/react@4.0.0 build
3
3
  > tsup src/index.tsx --format esm,cjs --dts --external react
4
4
 
5
5
  CLI Building entry: src/index.tsx
@@ -8,11 +8,11 @@
8
8
  CLI Target: es6
9
9
  ESM Build start
10
10
  CJS Build start
11
- ESM dist\index.mjs 79.13 KB
12
- ESM ⚡️ Build success in 78ms
13
- CJS dist\index.js 82.12 KB
14
- CJS ⚡️ Build success in 77ms
11
+ CJS dist\index.js 99.94 KB
12
+ CJS ⚡️ Build success in 76ms
13
+ ESM dist\index.mjs 96.79 KB
14
+ ESM ⚡️ Build success in 77ms
15
15
  DTS Build start
16
- DTS ⚡️ Build success in 3577ms
17
- DTS dist\index.d.mts 185.25 KB
18
- DTS dist\index.d.ts 185.25 KB
16
+ DTS ⚡️ Build success in 3787ms
17
+ DTS dist\index.d.mts 195.46 KB
18
+ DTS dist\index.d.ts 195.46 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @lets-events/react
2
2
 
3
+ ## 4.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - 651db6f: new variants
8
+
3
9
  ## 3.0.0
4
10
 
5
11
  ### Major Changes
package/dist/index.d.mts CHANGED
@@ -5,12 +5,13 @@ import PropTypes from 'prop-types';
5
5
  import * as _stitches_react_types_styled_component from '@stitches/react/types/styled-component';
6
6
  import * as _stitches_react_types_css_util from '@stitches/react/types/css-util';
7
7
  import * as react from 'react';
8
- import { ComponentProps, ElementType } from 'react';
8
+ import react__default, { ComponentProps, ElementType } from 'react';
9
9
  import * as _radix_ui_themes from '@radix-ui/themes';
10
10
  import { TextField as TextField$1, RadioGroup as RadioGroup$1, CheckboxGroup as CheckboxGroup$1, DropdownMenu as DropdownMenu$1 } from '@radix-ui/themes';
11
11
 
12
- interface IconProps extends Omit<FontAwesomeIconProps, "icon"> {
12
+ interface IconProps extends Omit<FontAwesomeIconProps, "icon" | "size"> {
13
13
  name: IconName;
14
+ size?: 'xs' | 'sm' | 'md' | 'xl';
14
15
  prefix?: IconPrefix;
15
16
  }
16
17
  declare const Icon: {
@@ -25,7 +26,7 @@ declare const Icon: {
25
26
  };
26
27
 
27
28
  declare const Text: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_radix_ui_themes.TextProps & react.RefAttributes<HTMLSpanElement>>, {
28
- size?: "sm" | "lg" | "md" | undefined;
29
+ size?: "sm" | "md" | "lg" | undefined;
29
30
  }, {}, _stitches_react_types_css_util.CSS<{}, {
30
31
  colors: {
31
32
  brand50: string;
@@ -401,7 +402,7 @@ type TextProps = ComponentProps<typeof Text> & {
401
402
  };
402
403
 
403
404
  declare const DisplayText: _stitches_react_types_styled_component.StyledComponent<"p", {
404
- size?: "sm" | "lg" | "md" | undefined;
405
+ size?: "sm" | "md" | "lg" | undefined;
405
406
  }, {}, _stitches_react_types_css_util.CSS<{}, {
406
407
  colors: {
407
408
  brand50: string;
@@ -2281,7 +2282,7 @@ type LabelProps = ComponentProps<typeof Label> & {
2281
2282
  };
2282
2283
 
2283
2284
  declare const BadgeText: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_radix_ui_themes.TextProps & react.RefAttributes<HTMLSpanElement>>, {
2284
- size?: 1 | 2 | "1" | "2" | "3" | "4" | 4 | 3 | undefined;
2285
+ size?: 1 | 2 | "1" | "2" | "3" | "4" | "xs" | "sm" | "md" | "xl" | 4 | 3 | undefined;
2285
2286
  }, {}, _stitches_react_types_css_util.CSS<{}, {
2286
2287
  colors: {
2287
2288
  brand50: string;
@@ -3405,8 +3406,9 @@ interface TooltipTextProps extends ComponentProps<typeof TooltipText> {
3405
3406
  }
3406
3407
 
3407
3408
  declare const ButtonStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_radix_ui_themes.ButtonProps & react.RefAttributes<HTMLButtonElement>>, {
3408
- variant?: "purple" | "simple" | "primary" | "secondary" | undefined;
3409
- size?: "xs" | "sm" | "lg" | "md" | undefined;
3409
+ color?: "purple" | "brand" | "neutral" | undefined;
3410
+ variant?: "text" | "contained" | "outlined" | undefined;
3411
+ size?: "xs" | "sm" | "md" | "lg" | undefined;
3410
3412
  radii?: "full" | undefined;
3411
3413
  }, {}, _stitches_react_types_css_util.CSS<{}, {
3412
3414
  colors: {
@@ -4156,8 +4158,9 @@ declare const ButtonItemStyled: _stitches_react_types_styled_component.StyledCom
4156
4158
  zIndex: "zIndices";
4157
4159
  }, {}>>;
4158
4160
  declare const ButtonGroupStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_radix_ui_themes.FlexProps & react.RefAttributes<HTMLDivElement>>, {
4159
- variant?: "simple" | "primary" | undefined;
4160
- size?: "sm" | "lg" | "md" | undefined;
4161
+ color?: "blue" | "green" | "purple" | "red" | "brand" | "neutral" | undefined;
4162
+ variant?: "text" | "contained" | "outlined" | undefined;
4163
+ size?: "xs" | "sm" | "md" | "lg" | undefined;
4161
4164
  }, {}, _stitches_react_types_css_util.CSS<{}, {
4162
4165
  colors: {
4163
4166
  brand50: string;
@@ -4535,7 +4538,7 @@ declare function ButtonItem({ children, active, ...props }: ButtonItemProps): re
4535
4538
  declare function ButtonGroup({ children, ...props }: ButtonGroupProps): react_jsx_runtime.JSX.Element;
4536
4539
 
4537
4540
  declare const AvatarStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_radix_ui_themes.AvatarProps & react.RefAttributes<HTMLImageElement>>, {
4538
- size?: "xs" | "sm" | "lg" | "xl" | "md" | undefined;
4541
+ size?: "xs" | "sm" | "md" | "xl" | "lg" | undefined;
4539
4542
  radii?: "full" | undefined;
4540
4543
  variant?: "without-image" | "with-image" | undefined;
4541
4544
  }, {}, _stitches_react_types_css_util.CSS<{}, {
@@ -4916,7 +4919,7 @@ type AvatarProps = ComponentProps<typeof AvatarStyled> & {
4916
4919
  declare function Avatar({ asChild, ...props }: AvatarProps): react_jsx_runtime.JSX.Element;
4917
4920
 
4918
4921
  declare const Flex: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_radix_ui_themes.FlexProps & react.RefAttributes<HTMLDivElement>>, {
4919
- direction?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
4922
+ direction?: "column" | "column-reverse" | "row" | "row-reverse" | undefined;
4920
4923
  gap?: 2 | "2" | "4" | "6" | "8" | 4 | 6 | 8 | 10 | 12 | 14 | 16 | 20 | 22 | 24 | 32 | 36 | 40 | 48 | 56 | 64 | 72 | 80 | "full" | "10" | "12" | "14" | "16" | "20" | "22" | "24" | "32" | "36" | "40" | "48" | "56" | "64" | "72" | "80" | undefined;
4921
4924
  }, {}, _stitches_react_types_css_util.CSS<{}, {
4922
4925
  colors: {
@@ -5295,7 +5298,8 @@ type FlexProps = ComponentProps<typeof Flex> & {
5295
5298
  declare const Box: react.ForwardRefExoticComponent<_radix_ui_themes.BoxProps & react.RefAttributes<HTMLDivElement>>;
5296
5299
 
5297
5300
  declare const TextFieldStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<TextField$1.RootProps & react.RefAttributes<HTMLInputElement>>, {
5298
- isValid?: boolean | "true" | "false" | undefined;
5301
+ color?: "default" | "error" | undefined;
5302
+ isValid?: boolean | "false" | "true" | undefined;
5299
5303
  }, {}, _stitches_react_types_css_util.CSS<{}, {
5300
5304
  colors: {
5301
5305
  brand50: string;
@@ -6042,18 +6046,19 @@ type TextFieldProps = ComponentProps<typeof TextFieldStyled> & {
6042
6046
  isValid?: boolean;
6043
6047
  name?: string;
6044
6048
  };
6045
- type TextFieldSlotProps = ComponentProps<typeof TextFieldStyled> & {
6049
+ type TextFieldSlotProps = Omit<ComponentProps<typeof TextFieldStyled>, 'color'> & {
6046
6050
  placeholder?: string;
6047
6051
  children?: React.ReactNode;
6048
6052
  position?: 'flex-start' | 'flex-end';
6049
6053
  onClick?: () => void;
6054
+ color?: "error" | "success" | undefined;
6050
6055
  };
6051
- declare function TextField({ children, isValid, name, ...props }: TextFieldProps): react_jsx_runtime.JSX.Element;
6056
+ declare function TextField({ children, isValid, name, color, ...props }: TextFieldProps): react_jsx_runtime.JSX.Element;
6052
6057
  declare function TextFieldSlot({ children, position, onClick, ...props }: TextFieldSlotProps): react_jsx_runtime.JSX.Element;
6053
6058
 
6054
6059
  declare const RadioGroupStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<RadioGroup$1.RootProps & react.RefAttributes<HTMLDivElement>>, {
6055
- isValid?: boolean | "true" | "false" | undefined;
6056
- disabled?: boolean | "true" | "false" | undefined;
6060
+ color?: "blue" | "error" | "success" | undefined;
6061
+ disabled?: boolean | "false" | "true" | undefined;
6057
6062
  }, {}, _stitches_react_types_css_util.CSS<{}, {
6058
6063
  colors: {
6059
6064
  brand50: string;
@@ -6427,19 +6432,19 @@ declare const RadioGroupStyled: _stitches_react_types_styled_component.StyledCom
6427
6432
  type RadioGroupProps = ComponentProps<typeof RadioGroupStyled> & {
6428
6433
  placeholder?: string;
6429
6434
  children?: React.ReactNode;
6430
- isValid?: boolean;
6435
+ color?: string;
6431
6436
  disabled?: boolean;
6432
6437
  };
6433
6438
  type RadioItemProps = {
6434
6439
  children?: React.ReactNode;
6435
6440
  value: string;
6436
6441
  };
6437
- declare function RadioGroup({ children, isValid, disabled, ...props }: RadioGroupProps): react_jsx_runtime.JSX.Element;
6442
+ declare function RadioGroup({ children, disabled, ...props }: RadioGroupProps): react_jsx_runtime.JSX.Element;
6438
6443
  declare function RadioItem({ children, ...props }: RadioItemProps): react_jsx_runtime.JSX.Element;
6439
6444
 
6440
6445
  declare const CheckboxGroupStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<CheckboxGroup$1.RootProps & react.RefAttributes<HTMLDivElement>>, {
6441
- isValid?: boolean | "true" | "false" | undefined;
6442
- disabled?: boolean | "true" | "false" | undefined;
6446
+ color?: "blue" | "error" | "success" | undefined;
6447
+ disabled?: boolean | "false" | "true" | undefined;
6443
6448
  }, {}, _stitches_react_types_css_util.CSS<{}, {
6444
6449
  colors: {
6445
6450
  brand50: string;
@@ -6813,7 +6818,7 @@ declare const CheckboxGroupStyled: _stitches_react_types_styled_component.Styled
6813
6818
  type CheckboxGroupProps = ComponentProps<typeof CheckboxGroupStyled> & {
6814
6819
  placeholder?: string;
6815
6820
  children?: React.ReactNode;
6816
- isValid?: boolean;
6821
+ color?: string;
6817
6822
  disabled?: boolean;
6818
6823
  };
6819
6824
  type CheckboxItemProps = {
@@ -7216,4 +7221,386 @@ type DropdownMenuItemProps = ComponentProps<typeof DropdownMenuItemStyled> & {
7216
7221
  declare function DropdownMenu({ children, placeholder, ...props }: DropdownMenuProps): react_jsx_runtime.JSX.Element;
7217
7222
  declare function DropdownMenuItem({ children, ...props }: DropdownMenuItemProps): react_jsx_runtime.JSX.Element;
7218
7223
 
7219
- export { Avatar, type AvatarProps, AvatarStyled, BadgeText, type BadgeTextProps, BodyText, type BodyTextProps, Box, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupStyled, ButtonItem, type ButtonItemProps, ButtonItemStyled, type ButtonProps, ButtonStyled, CaptionText, type CaptionTextProps, CheckboxGroup, type CheckboxGroupProps, CheckboxGroupStyled, CheckboxItem, type CheckboxItemProps, DisplayText, type DisplayTextProps, DropdownMenu, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuProps, Filter, FilterItem, type FilterItemProps, type FilterProps, Flex, type FlexProps, Headline, type HeadlineProps, Icon, Label, type LabelProps, RadioGroup, type RadioGroupProps, RadioGroupStyled, RadioItem, type RadioItemProps, Subtitle, type SubtitleProps, Text, TextField, type TextFieldProps, TextFieldSlot, type TextFieldSlotProps, TextFieldSlotStyled, TextFieldStyled, type TextProps, TooltipText, type TooltipTextProps };
7224
+ declare const BadgeStyled: _stitches_react_types_styled_component.StyledComponent<react__default.ForwardRefExoticComponent<_radix_ui_themes.BadgeProps & react__default.RefAttributes<HTMLSpanElement>>, {
7225
+ color?: "blue" | "green" | "grey" | "orange" | "pink" | "purple" | "red" | "yellow" | "dark" | "light" | "primary" | "disable" | undefined;
7226
+ size?: "xs" | "sm" | "md" | "xl" | undefined;
7227
+ radii?: "full" | undefined;
7228
+ }, {}, _stitches_react_types_css_util.CSS<{}, {
7229
+ colors: {
7230
+ brand50: string;
7231
+ brand100: string;
7232
+ brand200: string;
7233
+ brand300: string;
7234
+ brand400: string;
7235
+ brand500: string;
7236
+ brand600: string;
7237
+ brand700: string;
7238
+ brand800: string;
7239
+ brand900: string;
7240
+ brand950: string;
7241
+ blue50: string;
7242
+ blue100: string;
7243
+ blue200: string;
7244
+ blue300: string;
7245
+ blue400: string;
7246
+ blue500: string;
7247
+ blue600: string;
7248
+ blue700: string;
7249
+ blue800: string;
7250
+ blue900: string;
7251
+ blue950: string;
7252
+ red50: string;
7253
+ red100: string;
7254
+ red200: string;
7255
+ red300: string;
7256
+ red400: string;
7257
+ red500: string;
7258
+ red600: string;
7259
+ red700: string;
7260
+ red800: string;
7261
+ red900: string;
7262
+ red950: string;
7263
+ purple50: string;
7264
+ purple100: string;
7265
+ purple200: string;
7266
+ purple300: string;
7267
+ purple400: string;
7268
+ purple500: string;
7269
+ purple600: string;
7270
+ purple700: string;
7271
+ purple800: string;
7272
+ purple900: string;
7273
+ purple950: string;
7274
+ yellow50: string;
7275
+ yellow100: string;
7276
+ yellow200: string;
7277
+ yellow300: string;
7278
+ yellow400: string;
7279
+ yellow500: string;
7280
+ yellow600: string;
7281
+ yellow700: string;
7282
+ yellow800: string;
7283
+ yellow900: string;
7284
+ yellow950: string;
7285
+ dark50: string;
7286
+ dark100: string;
7287
+ dark200: string;
7288
+ dark300: string;
7289
+ dark400: string;
7290
+ dark500: string;
7291
+ dark600: string;
7292
+ dark700: string;
7293
+ dark800: string;
7294
+ dark900: string;
7295
+ dark950: string;
7296
+ neutral50: string;
7297
+ neutral100: string;
7298
+ neutral200: string;
7299
+ neutral300: string;
7300
+ neutral400: string;
7301
+ neutral500: string;
7302
+ neutral600: string;
7303
+ neutral700: string;
7304
+ neutral800: string;
7305
+ neutral900: string;
7306
+ neutral950: string;
7307
+ green50: string;
7308
+ green100: string;
7309
+ green200: string;
7310
+ green300: string;
7311
+ green400: string;
7312
+ green500: string;
7313
+ green600: string;
7314
+ green700: string;
7315
+ green800: string;
7316
+ green900: string;
7317
+ green950: string;
7318
+ grey50: string;
7319
+ grey100: string;
7320
+ grey200: string;
7321
+ grey300: string;
7322
+ grey400: string;
7323
+ grey500: string;
7324
+ grey600: string;
7325
+ grey700: string;
7326
+ grey800: string;
7327
+ grey900: string;
7328
+ grey950: string;
7329
+ error50: string;
7330
+ error100: string;
7331
+ error200: string;
7332
+ error300: string;
7333
+ error400: string;
7334
+ error500: string;
7335
+ error600: string;
7336
+ error700: string;
7337
+ error800: string;
7338
+ error900: string;
7339
+ error950: string;
7340
+ success50: string;
7341
+ success100: string;
7342
+ success200: string;
7343
+ success300: string;
7344
+ success400: string;
7345
+ success500: string;
7346
+ success600: string;
7347
+ success700: string;
7348
+ success800: string;
7349
+ success900: string;
7350
+ success950: string;
7351
+ warning50: string;
7352
+ warning100: string;
7353
+ warning200: string;
7354
+ warning300: string;
7355
+ warning400: string;
7356
+ warning500: string;
7357
+ warning600: string;
7358
+ warning700: string;
7359
+ warning800: string;
7360
+ warning900: string;
7361
+ warning950: string;
7362
+ info50: string;
7363
+ info100: string;
7364
+ info200: string;
7365
+ info300: string;
7366
+ info400: string;
7367
+ info500: string;
7368
+ info600: string;
7369
+ info700: string;
7370
+ info800: string;
7371
+ info900: string;
7372
+ info950: string;
7373
+ };
7374
+ fontSizes: {
7375
+ 2: string;
7376
+ 4: string;
7377
+ 6: string;
7378
+ 8: string;
7379
+ 10: string;
7380
+ 12: string;
7381
+ 13: string;
7382
+ 14: string;
7383
+ 16: string;
7384
+ 18: string;
7385
+ 20: string;
7386
+ 22: string;
7387
+ 24: string;
7388
+ 32: string;
7389
+ 36: string;
7390
+ 40: string;
7391
+ 48: string;
7392
+ 56: string;
7393
+ 64: string;
7394
+ 72: string;
7395
+ 80: string;
7396
+ xs: string;
7397
+ sm: string;
7398
+ md: string;
7399
+ lg: string;
7400
+ '2xl': string;
7401
+ '3xl': string;
7402
+ '4xl': string;
7403
+ full: string;
7404
+ };
7405
+ fonts: {
7406
+ default: string;
7407
+ };
7408
+ fontWeights: {
7409
+ regular: string;
7410
+ medium: string;
7411
+ semibold: string;
7412
+ bold: string;
7413
+ };
7414
+ lineHeights: {
7415
+ smaller: string;
7416
+ shorter: string;
7417
+ short: string;
7418
+ base: string;
7419
+ tall: string;
7420
+ };
7421
+ radii: {
7422
+ '3xs': string;
7423
+ '2xs': string;
7424
+ xs: string;
7425
+ sm: string;
7426
+ md: string;
7427
+ lg: string;
7428
+ xl: string;
7429
+ '2xl': string;
7430
+ '3xl': string;
7431
+ '4xl': string;
7432
+ '5xl': string;
7433
+ '6xl': string;
7434
+ '7xl': string;
7435
+ '8xl': string;
7436
+ '9xl': string;
7437
+ '10xl': string;
7438
+ '11xl': string;
7439
+ '12xl': string;
7440
+ '13xl': string;
7441
+ '14xl': string;
7442
+ full: string;
7443
+ };
7444
+ space: {
7445
+ 2: string;
7446
+ 4: string;
7447
+ 6: string;
7448
+ 8: string;
7449
+ 10: string;
7450
+ 12: string;
7451
+ 13: string;
7452
+ 14: string;
7453
+ 16: string;
7454
+ 18: string;
7455
+ 20: string;
7456
+ 22: string;
7457
+ 24: string;
7458
+ 32: string;
7459
+ 36: string;
7460
+ 40: string;
7461
+ 48: string;
7462
+ 56: string;
7463
+ 64: string;
7464
+ 72: string;
7465
+ 80: string;
7466
+ full: string;
7467
+ };
7468
+ }, {
7469
+ height: "space";
7470
+ width: "space";
7471
+ gap: "space";
7472
+ gridGap: "space";
7473
+ columnGap: "space";
7474
+ gridColumnGap: "space";
7475
+ rowGap: "space";
7476
+ gridRowGap: "space";
7477
+ inset: "space";
7478
+ insetBlock: "space";
7479
+ insetBlockEnd: "space";
7480
+ insetBlockStart: "space";
7481
+ insetInline: "space";
7482
+ insetInlineEnd: "space";
7483
+ insetInlineStart: "space";
7484
+ margin: "space";
7485
+ marginTop: "space";
7486
+ marginRight: "space";
7487
+ marginBottom: "space";
7488
+ marginLeft: "space";
7489
+ marginBlock: "space";
7490
+ marginBlockEnd: "space";
7491
+ marginBlockStart: "space";
7492
+ marginInline: "space";
7493
+ marginInlineEnd: "space";
7494
+ marginInlineStart: "space";
7495
+ padding: "space";
7496
+ paddingTop: "space";
7497
+ paddingRight: "space";
7498
+ paddingBottom: "space";
7499
+ paddingLeft: "space";
7500
+ paddingBlock: "space";
7501
+ paddingBlockEnd: "space";
7502
+ paddingBlockStart: "space";
7503
+ paddingInline: "space";
7504
+ paddingInlineEnd: "space";
7505
+ paddingInlineStart: "space";
7506
+ scrollMargin: "space";
7507
+ scrollMarginTop: "space";
7508
+ scrollMarginRight: "space";
7509
+ scrollMarginBottom: "space";
7510
+ scrollMarginLeft: "space";
7511
+ scrollMarginBlock: "space";
7512
+ scrollMarginBlockEnd: "space";
7513
+ scrollMarginBlockStart: "space";
7514
+ scrollMarginInline: "space";
7515
+ scrollMarginInlineEnd: "space";
7516
+ scrollMarginInlineStart: "space";
7517
+ scrollPadding: "space";
7518
+ scrollPaddingTop: "space";
7519
+ scrollPaddingRight: "space";
7520
+ scrollPaddingBottom: "space";
7521
+ scrollPaddingLeft: "space";
7522
+ scrollPaddingBlock: "space";
7523
+ scrollPaddingBlockEnd: "space";
7524
+ scrollPaddingBlockStart: "space";
7525
+ scrollPaddingInline: "space";
7526
+ scrollPaddingInlineEnd: "space";
7527
+ scrollPaddingInlineStart: "space";
7528
+ top: "space";
7529
+ right: "space";
7530
+ bottom: "space";
7531
+ left: "space";
7532
+ fontSize: "fontSizes";
7533
+ background: "colors";
7534
+ backgroundColor: "colors";
7535
+ backgroundImage: "colors";
7536
+ borderImage: "colors";
7537
+ border: "colors";
7538
+ borderBlock: "colors";
7539
+ borderBlockEnd: "colors";
7540
+ borderBlockStart: "colors";
7541
+ borderBottom: "colors";
7542
+ borderBottomColor: "colors";
7543
+ borderColor: "colors";
7544
+ borderInline: "colors";
7545
+ borderInlineEnd: "colors";
7546
+ borderInlineStart: "colors";
7547
+ borderLeft: "colors";
7548
+ borderLeftColor: "colors";
7549
+ borderRight: "colors";
7550
+ borderRightColor: "colors";
7551
+ borderTop: "colors";
7552
+ borderTopColor: "colors";
7553
+ caretColor: "colors";
7554
+ color: "colors";
7555
+ columnRuleColor: "colors";
7556
+ outline: "colors";
7557
+ outlineColor: "colors";
7558
+ fill: "colors";
7559
+ stroke: "colors";
7560
+ textDecorationColor: "colors";
7561
+ fontFamily: "fonts";
7562
+ fontWeight: "fontWeights";
7563
+ lineHeight: "lineHeights";
7564
+ letterSpacing: "letterSpacings";
7565
+ blockSize: "sizes";
7566
+ minBlockSize: "sizes";
7567
+ maxBlockSize: "sizes";
7568
+ inlineSize: "sizes";
7569
+ minInlineSize: "sizes";
7570
+ maxInlineSize: "sizes";
7571
+ minWidth: "sizes";
7572
+ maxWidth: "sizes";
7573
+ minHeight: "sizes";
7574
+ maxHeight: "sizes";
7575
+ flexBasis: "sizes";
7576
+ gridTemplateColumns: "sizes";
7577
+ gridTemplateRows: "sizes";
7578
+ borderWidth: "borderWidths";
7579
+ borderTopWidth: "borderWidths";
7580
+ borderLeftWidth: "borderWidths";
7581
+ borderRightWidth: "borderWidths";
7582
+ borderBottomWidth: "borderWidths";
7583
+ borderStyle: "borderStyles";
7584
+ borderTopStyle: "borderStyles";
7585
+ borderLeftStyle: "borderStyles";
7586
+ borderRightStyle: "borderStyles";
7587
+ borderBottomStyle: "borderStyles";
7588
+ borderRadius: "radii";
7589
+ borderTopLeftRadius: "radii";
7590
+ borderTopRightRadius: "radii";
7591
+ borderBottomRightRadius: "radii";
7592
+ borderBottomLeftRadius: "radii";
7593
+ boxShadow: "shadows";
7594
+ textShadow: "shadows";
7595
+ transition: "transitions";
7596
+ zIndex: "zIndices";
7597
+ }, {}>>;
7598
+ type BadgeProps = ComponentProps<typeof BadgeStyled> & {
7599
+ as?: ElementType;
7600
+ icon?: boolean;
7601
+ size: 'md';
7602
+ children: react__default.ReactNode;
7603
+ };
7604
+ declare function Badge({ asChild, children, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
7605
+
7606
+ export { Avatar, type AvatarProps, AvatarStyled, Badge, type BadgeProps, BadgeStyled, BadgeText, type BadgeTextProps, BodyText, type BodyTextProps, Box, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupStyled, ButtonItem, type ButtonItemProps, ButtonItemStyled, type ButtonProps, ButtonStyled, CaptionText, type CaptionTextProps, CheckboxGroup, type CheckboxGroupProps, CheckboxGroupStyled, CheckboxItem, type CheckboxItemProps, DisplayText, type DisplayTextProps, DropdownMenu, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuProps, Filter, FilterItem, type FilterItemProps, type FilterProps, Flex, type FlexProps, Headline, type HeadlineProps, Icon, Label, type LabelProps, RadioGroup, type RadioGroupProps, RadioGroupStyled, RadioItem, type RadioItemProps, Subtitle, type SubtitleProps, Text, TextField, type TextFieldProps, TextFieldSlot, type TextFieldSlotProps, TextFieldSlotStyled, TextFieldStyled, type TextProps, TooltipText, type TooltipTextProps };