@razorpay/blade 12.8.0 → 12.8.2

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.
@@ -13337,11 +13337,7 @@ type CheckboxGroupProps = {
13337
13337
  } & TestID & DataAnalyticsAttribute & StyledPropsBlade;
13338
13338
  declare const CheckboxGroup: ({ children, label, helpText, isDisabled, isRequired, necessityIndicator, labelPosition, validationState, errorText, name, defaultValue, onChange, value, size, testID, ...rest }: CheckboxGroupProps) => React__default.ReactElement;
13339
13339
 
13340
- type ChipProps = {
13341
- /**
13342
- * Sets the label of the Chip
13343
- */
13344
- children: StringChildrenType;
13340
+ type ChipCommonProps = {
13345
13341
  /**
13346
13342
  * Displays the Blade Icon component within the Chip
13347
13343
  * Accepts a component of type `IconComponent` from Blade.
@@ -13366,6 +13362,15 @@ type ChipProps = {
13366
13362
  */
13367
13363
  value?: string;
13368
13364
  } & TestID & DataAnalyticsAttribute & StyledPropsBlade & MotionMetaProp;
13365
+ type ChipWithoutIconProps = ChipCommonProps & {
13366
+ icon?: undefined;
13367
+ children: StringChildrenType;
13368
+ };
13369
+ type ChipWithIconProps = ChipCommonProps & {
13370
+ icon: IconComponent;
13371
+ children?: StringChildrenType;
13372
+ };
13373
+ type ChipProps = ChipWithoutIconProps | ChipWithIconProps;
13369
13374
  type ChipGroupCommonProps = {
13370
13375
  /**
13371
13376
  * Sets the position of the label
@@ -13477,569 +13482,7 @@ type ChipGroupPropsWithLabel = {
13477
13482
  };
13478
13483
  type ChipGroupProps = (ChipGroupPropsWithA11yLabel | ChipGroupPropsWithLabel) & ChipGroupCommonProps;
13479
13484
 
13480
- declare const Chip: React__default.ForwardRefExoticComponent<{
13481
- children: StringChildrenType;
13482
- icon?: IconComponent | undefined;
13483
- color?: "negative" | "positive" | "primary" | undefined;
13484
- isDisabled?: boolean | undefined;
13485
- value?: string | undefined;
13486
- } & TestID & DataAnalyticsAttribute & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
13487
- bottom: SpacingValueType | {
13488
- readonly base?: SpacingValueType | undefined;
13489
- readonly xs?: SpacingValueType | undefined;
13490
- readonly s?: SpacingValueType | undefined;
13491
- readonly m?: SpacingValueType | undefined;
13492
- readonly l?: SpacingValueType | undefined;
13493
- readonly xl?: SpacingValueType | undefined;
13494
- };
13495
- left: SpacingValueType | {
13496
- readonly base?: SpacingValueType | undefined;
13497
- readonly xs?: SpacingValueType | undefined;
13498
- readonly s?: SpacingValueType | undefined;
13499
- readonly m?: SpacingValueType | undefined;
13500
- readonly l?: SpacingValueType | undefined;
13501
- readonly xl?: SpacingValueType | undefined;
13502
- };
13503
- position?: csstype.Property.Position | {
13504
- readonly base?: csstype.Property.Position | undefined;
13505
- readonly xs?: csstype.Property.Position | undefined;
13506
- readonly s?: csstype.Property.Position | undefined;
13507
- readonly m?: csstype.Property.Position | undefined;
13508
- readonly l?: csstype.Property.Position | undefined;
13509
- readonly xl?: csstype.Property.Position | undefined;
13510
- } | undefined;
13511
- right: SpacingValueType | {
13512
- readonly base?: SpacingValueType | undefined;
13513
- readonly xs?: SpacingValueType | undefined;
13514
- readonly s?: SpacingValueType | undefined;
13515
- readonly m?: SpacingValueType | undefined;
13516
- readonly l?: SpacingValueType | undefined;
13517
- readonly xl?: SpacingValueType | undefined;
13518
- };
13519
- top: SpacingValueType | {
13520
- readonly base?: SpacingValueType | undefined;
13521
- readonly xs?: SpacingValueType | undefined;
13522
- readonly s?: SpacingValueType | undefined;
13523
- readonly m?: SpacingValueType | undefined;
13524
- readonly l?: SpacingValueType | undefined;
13525
- readonly xl?: SpacingValueType | undefined;
13526
- };
13527
- zIndex?: csstype.Property.ZIndex | {
13528
- readonly base?: csstype.Property.ZIndex | undefined;
13529
- readonly xs?: csstype.Property.ZIndex | undefined;
13530
- readonly s?: csstype.Property.ZIndex | undefined;
13531
- readonly m?: csstype.Property.ZIndex | undefined;
13532
- readonly l?: csstype.Property.ZIndex | undefined;
13533
- readonly xl?: csstype.Property.ZIndex | undefined;
13534
- } | undefined;
13535
- __brand__?: "platform-web" | {
13536
- readonly base?: "platform-web" | undefined;
13537
- readonly xs?: "platform-web" | undefined;
13538
- readonly s?: "platform-web" | undefined;
13539
- readonly m?: "platform-web" | undefined;
13540
- readonly l?: "platform-web" | undefined;
13541
- readonly xl?: "platform-web" | undefined;
13542
- } | undefined;
13543
- } & Pick<{
13544
- gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | {
13545
- readonly base?: csstype.Property.GridAutoColumns<string | number> | undefined;
13546
- readonly xs?: csstype.Property.GridAutoColumns<string | number> | undefined;
13547
- readonly s?: csstype.Property.GridAutoColumns<string | number> | undefined;
13548
- readonly m?: csstype.Property.GridAutoColumns<string | number> | undefined;
13549
- readonly l?: csstype.Property.GridAutoColumns<string | number> | undefined;
13550
- readonly xl?: csstype.Property.GridAutoColumns<string | number> | undefined;
13551
- } | undefined;
13552
- gridAutoFlow?: csstype.Property.GridAutoFlow | {
13553
- readonly base?: csstype.Property.GridAutoFlow | undefined;
13554
- readonly xs?: csstype.Property.GridAutoFlow | undefined;
13555
- readonly s?: csstype.Property.GridAutoFlow | undefined;
13556
- readonly m?: csstype.Property.GridAutoFlow | undefined;
13557
- readonly l?: csstype.Property.GridAutoFlow | undefined;
13558
- readonly xl?: csstype.Property.GridAutoFlow | undefined;
13559
- } | undefined;
13560
- gridAutoRows?: csstype.Property.GridAutoRows<string | number> | {
13561
- readonly base?: csstype.Property.GridAutoRows<string | number> | undefined;
13562
- readonly xs?: csstype.Property.GridAutoRows<string | number> | undefined;
13563
- readonly s?: csstype.Property.GridAutoRows<string | number> | undefined;
13564
- readonly m?: csstype.Property.GridAutoRows<string | number> | undefined;
13565
- readonly l?: csstype.Property.GridAutoRows<string | number> | undefined;
13566
- readonly xl?: csstype.Property.GridAutoRows<string | number> | undefined;
13567
- } | undefined;
13568
- gridColumnEnd?: csstype.Property.GridColumnEnd | {
13569
- readonly base?: csstype.Property.GridColumnEnd | undefined;
13570
- readonly xs?: csstype.Property.GridColumnEnd | undefined;
13571
- readonly s?: csstype.Property.GridColumnEnd | undefined;
13572
- readonly m?: csstype.Property.GridColumnEnd | undefined;
13573
- readonly l?: csstype.Property.GridColumnEnd | undefined;
13574
- readonly xl?: csstype.Property.GridColumnEnd | undefined;
13575
- } | undefined;
13576
- gridColumnStart?: csstype.Property.GridColumnStart | {
13577
- readonly base?: csstype.Property.GridColumnStart | undefined;
13578
- readonly xs?: csstype.Property.GridColumnStart | undefined;
13579
- readonly s?: csstype.Property.GridColumnStart | undefined;
13580
- readonly m?: csstype.Property.GridColumnStart | undefined;
13581
- readonly l?: csstype.Property.GridColumnStart | undefined;
13582
- readonly xl?: csstype.Property.GridColumnStart | undefined;
13583
- } | undefined;
13584
- gridRowEnd?: csstype.Property.GridRowEnd | {
13585
- readonly base?: csstype.Property.GridRowEnd | undefined;
13586
- readonly xs?: csstype.Property.GridRowEnd | undefined;
13587
- readonly s?: csstype.Property.GridRowEnd | undefined;
13588
- readonly m?: csstype.Property.GridRowEnd | undefined;
13589
- readonly l?: csstype.Property.GridRowEnd | undefined;
13590
- readonly xl?: csstype.Property.GridRowEnd | undefined;
13591
- } | undefined;
13592
- gridRowStart?: csstype.Property.GridRowStart | {
13593
- readonly base?: csstype.Property.GridRowStart | undefined;
13594
- readonly xs?: csstype.Property.GridRowStart | undefined;
13595
- readonly s?: csstype.Property.GridRowStart | undefined;
13596
- readonly m?: csstype.Property.GridRowStart | undefined;
13597
- readonly l?: csstype.Property.GridRowStart | undefined;
13598
- readonly xl?: csstype.Property.GridRowStart | undefined;
13599
- } | undefined;
13600
- gridTemplateAreas?: csstype.Property.GridTemplateAreas | {
13601
- readonly base?: csstype.Property.GridTemplateAreas | undefined;
13602
- readonly xs?: csstype.Property.GridTemplateAreas | undefined;
13603
- readonly s?: csstype.Property.GridTemplateAreas | undefined;
13604
- readonly m?: csstype.Property.GridTemplateAreas | undefined;
13605
- readonly l?: csstype.Property.GridTemplateAreas | undefined;
13606
- readonly xl?: csstype.Property.GridTemplateAreas | undefined;
13607
- } | undefined;
13608
- gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | {
13609
- readonly base?: csstype.Property.GridTemplateColumns<string | number> | undefined;
13610
- readonly xs?: csstype.Property.GridTemplateColumns<string | number> | undefined;
13611
- readonly s?: csstype.Property.GridTemplateColumns<string | number> | undefined;
13612
- readonly m?: csstype.Property.GridTemplateColumns<string | number> | undefined;
13613
- readonly l?: csstype.Property.GridTemplateColumns<string | number> | undefined;
13614
- readonly xl?: csstype.Property.GridTemplateColumns<string | number> | undefined;
13615
- } | undefined;
13616
- gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | {
13617
- readonly base?: csstype.Property.GridTemplateRows<string | number> | undefined;
13618
- readonly xs?: csstype.Property.GridTemplateRows<string | number> | undefined;
13619
- readonly s?: csstype.Property.GridTemplateRows<string | number> | undefined;
13620
- readonly m?: csstype.Property.GridTemplateRows<string | number> | undefined;
13621
- readonly l?: csstype.Property.GridTemplateRows<string | number> | undefined;
13622
- readonly xl?: csstype.Property.GridTemplateRows<string | number> | undefined;
13623
- } | undefined;
13624
- grid?: csstype.Property.Grid | {
13625
- readonly base?: csstype.Property.Grid | undefined;
13626
- readonly xs?: csstype.Property.Grid | undefined;
13627
- readonly s?: csstype.Property.Grid | undefined;
13628
- readonly m?: csstype.Property.Grid | undefined;
13629
- readonly l?: csstype.Property.Grid | undefined;
13630
- readonly xl?: csstype.Property.Grid | undefined;
13631
- } | undefined;
13632
- gridArea?: csstype.Property.GridArea | {
13633
- readonly base?: csstype.Property.GridArea | undefined;
13634
- readonly xs?: csstype.Property.GridArea | undefined;
13635
- readonly s?: csstype.Property.GridArea | undefined;
13636
- readonly m?: csstype.Property.GridArea | undefined;
13637
- readonly l?: csstype.Property.GridArea | undefined;
13638
- readonly xl?: csstype.Property.GridArea | undefined;
13639
- } | undefined;
13640
- gridColumn?: csstype.Property.GridColumn | {
13641
- readonly base?: csstype.Property.GridColumn | undefined;
13642
- readonly xs?: csstype.Property.GridColumn | undefined;
13643
- readonly s?: csstype.Property.GridColumn | undefined;
13644
- readonly m?: csstype.Property.GridColumn | undefined;
13645
- readonly l?: csstype.Property.GridColumn | undefined;
13646
- readonly xl?: csstype.Property.GridColumn | undefined;
13647
- } | undefined;
13648
- gridRow?: csstype.Property.GridRow | {
13649
- readonly base?: csstype.Property.GridRow | undefined;
13650
- readonly xs?: csstype.Property.GridRow | undefined;
13651
- readonly s?: csstype.Property.GridRow | undefined;
13652
- readonly m?: csstype.Property.GridRow | undefined;
13653
- readonly l?: csstype.Property.GridRow | undefined;
13654
- readonly xl?: csstype.Property.GridRow | undefined;
13655
- } | undefined;
13656
- gridTemplate?: csstype.Property.GridTemplate | {
13657
- readonly base?: csstype.Property.GridTemplate | undefined;
13658
- readonly xs?: csstype.Property.GridTemplate | undefined;
13659
- readonly s?: csstype.Property.GridTemplate | undefined;
13660
- readonly m?: csstype.Property.GridTemplate | undefined;
13661
- readonly l?: csstype.Property.GridTemplate | undefined;
13662
- readonly xl?: csstype.Property.GridTemplate | undefined;
13663
- } | undefined;
13664
- __brand__?: "platform-web" | {
13665
- readonly base?: "platform-web" | undefined;
13666
- readonly xs?: "platform-web" | undefined;
13667
- readonly s?: "platform-web" | undefined;
13668
- readonly m?: "platform-web" | undefined;
13669
- readonly l?: "platform-web" | undefined;
13670
- readonly xl?: "platform-web" | undefined;
13671
- } | undefined;
13672
- }, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow"> & Pick<{
13673
- width: SpacingValueType | {
13674
- readonly base?: SpacingValueType | undefined;
13675
- readonly xs?: SpacingValueType | undefined;
13676
- readonly s?: SpacingValueType | undefined;
13677
- readonly m?: SpacingValueType | undefined;
13678
- readonly l?: SpacingValueType | undefined;
13679
- readonly xl?: SpacingValueType | undefined;
13680
- };
13681
- display?: csstype.Property.Display | {
13682
- readonly base?: csstype.Property.Display | undefined;
13683
- readonly xs?: csstype.Property.Display | undefined;
13684
- readonly s?: csstype.Property.Display | undefined;
13685
- readonly m?: csstype.Property.Display | undefined;
13686
- readonly l?: csstype.Property.Display | undefined;
13687
- readonly xl?: csstype.Property.Display | undefined;
13688
- } | undefined;
13689
- height: SpacingValueType | {
13690
- readonly base?: SpacingValueType | undefined;
13691
- readonly xs?: SpacingValueType | undefined;
13692
- readonly s?: SpacingValueType | undefined;
13693
- readonly m?: SpacingValueType | undefined;
13694
- readonly l?: SpacingValueType | undefined;
13695
- readonly xl?: SpacingValueType | undefined;
13696
- };
13697
- maxHeight: SpacingValueType | {
13698
- readonly base?: SpacingValueType | undefined;
13699
- readonly xs?: SpacingValueType | undefined;
13700
- readonly s?: SpacingValueType | undefined;
13701
- readonly m?: SpacingValueType | undefined;
13702
- readonly l?: SpacingValueType | undefined;
13703
- readonly xl?: SpacingValueType | undefined;
13704
- };
13705
- maxWidth: SpacingValueType | {
13706
- readonly base?: SpacingValueType | undefined;
13707
- readonly xs?: SpacingValueType | undefined;
13708
- readonly s?: SpacingValueType | undefined;
13709
- readonly m?: SpacingValueType | undefined;
13710
- readonly l?: SpacingValueType | undefined;
13711
- readonly xl?: SpacingValueType | undefined;
13712
- };
13713
- minHeight: SpacingValueType | {
13714
- readonly base?: SpacingValueType | undefined;
13715
- readonly xs?: SpacingValueType | undefined;
13716
- readonly s?: SpacingValueType | undefined;
13717
- readonly m?: SpacingValueType | undefined;
13718
- readonly l?: SpacingValueType | undefined;
13719
- readonly xl?: SpacingValueType | undefined;
13720
- };
13721
- minWidth: SpacingValueType | {
13722
- readonly base?: SpacingValueType | undefined;
13723
- readonly xs?: SpacingValueType | undefined;
13724
- readonly s?: SpacingValueType | undefined;
13725
- readonly m?: SpacingValueType | undefined;
13726
- readonly l?: SpacingValueType | undefined;
13727
- readonly xl?: SpacingValueType | undefined;
13728
- };
13729
- overflowX?: csstype.Property.OverflowX | {
13730
- readonly base?: csstype.Property.OverflowX | undefined;
13731
- readonly xs?: csstype.Property.OverflowX | undefined;
13732
- readonly s?: csstype.Property.OverflowX | undefined;
13733
- readonly m?: csstype.Property.OverflowX | undefined;
13734
- readonly l?: csstype.Property.OverflowX | undefined;
13735
- readonly xl?: csstype.Property.OverflowX | undefined;
13736
- } | undefined;
13737
- overflowY?: csstype.Property.OverflowY | {
13738
- readonly base?: csstype.Property.OverflowY | undefined;
13739
- readonly xs?: csstype.Property.OverflowY | undefined;
13740
- readonly s?: csstype.Property.OverflowY | undefined;
13741
- readonly m?: csstype.Property.OverflowY | undefined;
13742
- readonly l?: csstype.Property.OverflowY | undefined;
13743
- readonly xl?: csstype.Property.OverflowY | undefined;
13744
- } | undefined;
13745
- textAlign?: csstype.Property.TextAlign | {
13746
- readonly base?: csstype.Property.TextAlign | undefined;
13747
- readonly xs?: csstype.Property.TextAlign | undefined;
13748
- readonly s?: csstype.Property.TextAlign | undefined;
13749
- readonly m?: csstype.Property.TextAlign | undefined;
13750
- readonly l?: csstype.Property.TextAlign | undefined;
13751
- readonly xl?: csstype.Property.TextAlign | undefined;
13752
- } | undefined;
13753
- whiteSpace?: csstype.Property.WhiteSpace | {
13754
- readonly base?: csstype.Property.WhiteSpace | undefined;
13755
- readonly xs?: csstype.Property.WhiteSpace | undefined;
13756
- readonly s?: csstype.Property.WhiteSpace | undefined;
13757
- readonly m?: csstype.Property.WhiteSpace | undefined;
13758
- readonly l?: csstype.Property.WhiteSpace | undefined;
13759
- readonly xl?: csstype.Property.WhiteSpace | undefined;
13760
- } | undefined;
13761
- overflow?: csstype.Property.Overflow | {
13762
- readonly base?: csstype.Property.Overflow | undefined;
13763
- readonly xs?: csstype.Property.Overflow | undefined;
13764
- readonly s?: csstype.Property.Overflow | undefined;
13765
- readonly m?: csstype.Property.Overflow | undefined;
13766
- readonly l?: csstype.Property.Overflow | undefined;
13767
- readonly xl?: csstype.Property.Overflow | undefined;
13768
- } | undefined;
13769
- __brand__?: "platform-web" | {
13770
- readonly base?: "platform-web" | undefined;
13771
- readonly xs?: "platform-web" | undefined;
13772
- readonly s?: "platform-web" | undefined;
13773
- readonly m?: "platform-web" | undefined;
13774
- readonly l?: "platform-web" | undefined;
13775
- readonly xl?: "platform-web" | undefined;
13776
- } | undefined;
13777
- }, "display"> & Pick<{
13778
- elevation?: ElevationLevels | {
13779
- readonly base?: ElevationLevels | undefined;
13780
- readonly xs?: ElevationLevels | undefined;
13781
- readonly s?: ElevationLevels | undefined;
13782
- readonly m?: ElevationLevels | undefined;
13783
- readonly l?: ElevationLevels | undefined;
13784
- readonly xl?: ElevationLevels | undefined;
13785
- } | undefined;
13786
- backgroundImage?: csstype.Property.BackgroundImage | {
13787
- readonly base?: csstype.Property.BackgroundImage | undefined;
13788
- readonly xs?: csstype.Property.BackgroundImage | undefined;
13789
- readonly s?: csstype.Property.BackgroundImage | undefined;
13790
- readonly m?: csstype.Property.BackgroundImage | undefined;
13791
- readonly l?: csstype.Property.BackgroundImage | undefined;
13792
- readonly xl?: csstype.Property.BackgroundImage | undefined;
13793
- } | undefined;
13794
- backgroundOrigin?: csstype.Property.BackgroundOrigin | {
13795
- readonly base?: csstype.Property.BackgroundOrigin | undefined;
13796
- readonly xs?: csstype.Property.BackgroundOrigin | undefined;
13797
- readonly s?: csstype.Property.BackgroundOrigin | undefined;
13798
- readonly m?: csstype.Property.BackgroundOrigin | undefined;
13799
- readonly l?: csstype.Property.BackgroundOrigin | undefined;
13800
- readonly xl?: csstype.Property.BackgroundOrigin | undefined;
13801
- } | undefined;
13802
- backgroundRepeat?: csstype.Property.BackgroundRepeat | {
13803
- readonly base?: csstype.Property.BackgroundRepeat | undefined;
13804
- readonly xs?: csstype.Property.BackgroundRepeat | undefined;
13805
- readonly s?: csstype.Property.BackgroundRepeat | undefined;
13806
- readonly m?: csstype.Property.BackgroundRepeat | undefined;
13807
- readonly l?: csstype.Property.BackgroundRepeat | undefined;
13808
- readonly xl?: csstype.Property.BackgroundRepeat | undefined;
13809
- } | undefined;
13810
- backgroundSize?: csstype.Property.BackgroundSize<string | number> | {
13811
- readonly base?: csstype.Property.BackgroundSize<string | number> | undefined;
13812
- readonly xs?: csstype.Property.BackgroundSize<string | number> | undefined;
13813
- readonly s?: csstype.Property.BackgroundSize<string | number> | undefined;
13814
- readonly m?: csstype.Property.BackgroundSize<string | number> | undefined;
13815
- readonly l?: csstype.Property.BackgroundSize<string | number> | undefined;
13816
- readonly xl?: csstype.Property.BackgroundSize<string | number> | undefined;
13817
- } | undefined;
13818
- borderBottomColor: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | {
13819
- readonly base?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
13820
- readonly xs?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
13821
- readonly s?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
13822
- readonly m?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
13823
- readonly l?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
13824
- readonly xl?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
13825
- };
13826
- borderBottomLeftRadius: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | {
13827
- readonly base?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
13828
- readonly xs?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
13829
- readonly s?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
13830
- readonly m?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
13831
- readonly l?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
13832
- readonly xl?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
13833
- };
13834
- borderBottomRightRadius: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | {
13835
- readonly base?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
13836
- readonly xs?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
13837
- readonly s?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
13838
- readonly m?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
13839
- readonly l?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
13840
- readonly xl?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
13841
- };
13842
- borderBottomStyle?: csstype.Property.BorderBottomStyle | {
13843
- readonly base?: csstype.Property.BorderBottomStyle | undefined;
13844
- readonly xs?: csstype.Property.BorderBottomStyle | undefined;
13845
- readonly s?: csstype.Property.BorderBottomStyle | undefined;
13846
- readonly m?: csstype.Property.BorderBottomStyle | undefined;
13847
- readonly l?: csstype.Property.BorderBottomStyle | undefined;
13848
- readonly xl?: csstype.Property.BorderBottomStyle | undefined;
13849
- } | undefined;
13850
- borderBottomWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
13851
- readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
13852
- readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
13853
- readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
13854
- readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
13855
- readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
13856
- readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
13857
- };
13858
- borderLeftColor: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | {
13859
- readonly base?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
13860
- readonly xs?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
13861
- readonly s?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
13862
- readonly m?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
13863
- readonly l?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
13864
- readonly xl?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
13865
- };
13866
- borderLeftStyle?: csstype.Property.BorderLeftStyle | {
13867
- readonly base?: csstype.Property.BorderLeftStyle | undefined;
13868
- readonly xs?: csstype.Property.BorderLeftStyle | undefined;
13869
- readonly s?: csstype.Property.BorderLeftStyle | undefined;
13870
- readonly m?: csstype.Property.BorderLeftStyle | undefined;
13871
- readonly l?: csstype.Property.BorderLeftStyle | undefined;
13872
- readonly xl?: csstype.Property.BorderLeftStyle | undefined;
13873
- } | undefined;
13874
- borderLeftWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
13875
- readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
13876
- readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
13877
- readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
13878
- readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
13879
- readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
13880
- readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
13881
- };
13882
- borderRightColor: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | {
13883
- readonly base?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
13884
- readonly xs?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
13885
- readonly s?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
13886
- readonly m?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
13887
- readonly l?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
13888
- readonly xl?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
13889
- };
13890
- borderRightStyle?: csstype.Property.BorderRightStyle | {
13891
- readonly base?: csstype.Property.BorderRightStyle | undefined;
13892
- readonly xs?: csstype.Property.BorderRightStyle | undefined;
13893
- readonly s?: csstype.Property.BorderRightStyle | undefined;
13894
- readonly m?: csstype.Property.BorderRightStyle | undefined;
13895
- readonly l?: csstype.Property.BorderRightStyle | undefined;
13896
- readonly xl?: csstype.Property.BorderRightStyle | undefined;
13897
- } | undefined;
13898
- borderRightWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
13899
- readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
13900
- readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
13901
- readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
13902
- readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
13903
- readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
13904
- readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
13905
- };
13906
- borderTopColor: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | {
13907
- readonly base?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
13908
- readonly xs?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
13909
- readonly s?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
13910
- readonly m?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
13911
- readonly l?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
13912
- readonly xl?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
13913
- };
13914
- borderTopLeftRadius: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | {
13915
- readonly base?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
13916
- readonly xs?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
13917
- readonly s?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
13918
- readonly m?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
13919
- readonly l?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
13920
- readonly xl?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
13921
- };
13922
- borderTopRightRadius: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | {
13923
- readonly base?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
13924
- readonly xs?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
13925
- readonly s?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
13926
- readonly m?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
13927
- readonly l?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
13928
- readonly xl?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
13929
- };
13930
- borderTopStyle?: csstype.Property.BorderTopStyle | {
13931
- readonly base?: csstype.Property.BorderTopStyle | undefined;
13932
- readonly xs?: csstype.Property.BorderTopStyle | undefined;
13933
- readonly s?: csstype.Property.BorderTopStyle | undefined;
13934
- readonly m?: csstype.Property.BorderTopStyle | undefined;
13935
- readonly l?: csstype.Property.BorderTopStyle | undefined;
13936
- readonly xl?: csstype.Property.BorderTopStyle | undefined;
13937
- } | undefined;
13938
- borderTopWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
13939
- readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
13940
- readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
13941
- readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
13942
- readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
13943
- readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
13944
- readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
13945
- };
13946
- clipPath?: csstype.Property.ClipPath | {
13947
- readonly base?: csstype.Property.ClipPath | undefined;
13948
- readonly xs?: csstype.Property.ClipPath | undefined;
13949
- readonly s?: csstype.Property.ClipPath | undefined;
13950
- readonly m?: csstype.Property.ClipPath | undefined;
13951
- readonly l?: csstype.Property.ClipPath | undefined;
13952
- readonly xl?: csstype.Property.ClipPath | undefined;
13953
- } | undefined;
13954
- opacity?: csstype.Property.Opacity | {
13955
- readonly base?: csstype.Property.Opacity | undefined;
13956
- readonly xs?: csstype.Property.Opacity | undefined;
13957
- readonly s?: csstype.Property.Opacity | undefined;
13958
- readonly m?: csstype.Property.Opacity | undefined;
13959
- readonly l?: csstype.Property.Opacity | undefined;
13960
- readonly xl?: csstype.Property.Opacity | undefined;
13961
- } | undefined;
13962
- pointerEvents?: csstype.Property.PointerEvents | {
13963
- readonly base?: csstype.Property.PointerEvents | undefined;
13964
- readonly xs?: csstype.Property.PointerEvents | undefined;
13965
- readonly s?: csstype.Property.PointerEvents | undefined;
13966
- readonly m?: csstype.Property.PointerEvents | undefined;
13967
- readonly l?: csstype.Property.PointerEvents | undefined;
13968
- readonly xl?: csstype.Property.PointerEvents | undefined;
13969
- } | undefined;
13970
- transform?: csstype.Property.Transform | {
13971
- readonly base?: csstype.Property.Transform | undefined;
13972
- readonly xs?: csstype.Property.Transform | undefined;
13973
- readonly s?: csstype.Property.Transform | undefined;
13974
- readonly m?: csstype.Property.Transform | undefined;
13975
- readonly l?: csstype.Property.Transform | undefined;
13976
- readonly xl?: csstype.Property.Transform | undefined;
13977
- } | undefined;
13978
- transformOrigin?: csstype.Property.TransformOrigin<string | number> | {
13979
- readonly base?: csstype.Property.TransformOrigin<string | number> | undefined;
13980
- readonly xs?: csstype.Property.TransformOrigin<string | number> | undefined;
13981
- readonly s?: csstype.Property.TransformOrigin<string | number> | undefined;
13982
- readonly m?: csstype.Property.TransformOrigin<string | number> | undefined;
13983
- readonly l?: csstype.Property.TransformOrigin<string | number> | undefined;
13984
- readonly xl?: csstype.Property.TransformOrigin<string | number> | undefined;
13985
- } | undefined;
13986
- visibility?: csstype.Property.Visibility | {
13987
- readonly base?: csstype.Property.Visibility | undefined;
13988
- readonly xs?: csstype.Property.Visibility | undefined;
13989
- readonly s?: csstype.Property.Visibility | undefined;
13990
- readonly m?: csstype.Property.Visibility | undefined;
13991
- readonly l?: csstype.Property.Visibility | undefined;
13992
- readonly xl?: csstype.Property.Visibility | undefined;
13993
- } | undefined;
13994
- backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | {
13995
- readonly base?: csstype.Property.BackgroundPosition<string | number> | undefined;
13996
- readonly xs?: csstype.Property.BackgroundPosition<string | number> | undefined;
13997
- readonly s?: csstype.Property.BackgroundPosition<string | number> | undefined;
13998
- readonly m?: csstype.Property.BackgroundPosition<string | number> | undefined;
13999
- readonly l?: csstype.Property.BackgroundPosition<string | number> | undefined;
14000
- readonly xl?: csstype.Property.BackgroundPosition<string | number> | undefined;
14001
- } | undefined;
14002
- borderColor: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | {
14003
- readonly base?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
14004
- readonly xs?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
14005
- readonly s?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
14006
- readonly m?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
14007
- readonly l?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
14008
- readonly xl?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
14009
- };
14010
- borderRadius: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | {
14011
- readonly base?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
14012
- readonly xs?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
14013
- readonly s?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
14014
- readonly m?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
14015
- readonly l?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
14016
- readonly xl?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
14017
- };
14018
- borderStyle?: csstype.Property.BorderStyle | {
14019
- readonly base?: csstype.Property.BorderStyle | undefined;
14020
- readonly xs?: csstype.Property.BorderStyle | undefined;
14021
- readonly s?: csstype.Property.BorderStyle | undefined;
14022
- readonly m?: csstype.Property.BorderStyle | undefined;
14023
- readonly l?: csstype.Property.BorderStyle | undefined;
14024
- readonly xl?: csstype.Property.BorderStyle | undefined;
14025
- } | undefined;
14026
- borderWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
14027
- readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
14028
- readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
14029
- readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
14030
- readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
14031
- readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
14032
- readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
14033
- };
14034
- __brand__?: "platform-web" | {
14035
- readonly base?: "platform-web" | undefined;
14036
- readonly xs?: "platform-web" | undefined;
14037
- readonly s?: "platform-web" | undefined;
14038
- readonly m?: "platform-web" | undefined;
14039
- readonly l?: "platform-web" | undefined;
14040
- readonly xl?: "platform-web" | undefined;
14041
- } | undefined;
14042
- }, "visibility">, "__brand__">> & MotionMetaProp & React__default.RefAttributes<BladeElementRef>>;
13485
+ declare const Chip: React__default.ForwardRefExoticComponent<ChipProps & React__default.RefAttributes<BladeElementRef>>;
14043
13486
 
14044
13487
  declare const ChipGroup: React__default.ForwardRefExoticComponent<ChipGroupProps & React__default.RefAttributes<BladeElementRef>>;
14045
13488