@razorpay/blade 12.40.0 → 12.41.1
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/build/lib/native/components/EmptyState/EmptyState.native.js +12 -0
- package/build/lib/native/components/EmptyState/EmptyState.native.js.map +1 -0
- package/build/lib/native/components/Tabs/TabItem.native.js +2 -2
- package/build/lib/native/components/Tabs/TabItem.native.js.map +1 -1
- package/build/lib/native/components/Tabs/tabTokens.js +2 -2
- package/build/lib/native/components/Tabs/tabTokens.js.map +1 -1
- package/build/lib/native/components/Tabs/utils.js +1 -1
- package/build/lib/native/components/Tabs/utils.js.map +1 -1
- package/build/lib/native/components/index.js +1 -0
- package/build/lib/native/components/index.js.map +1 -1
- package/build/lib/native/utils/metaAttribute/metaConstants.js +1 -1
- package/build/lib/native/utils/metaAttribute/metaConstants.js.map +1 -1
- package/build/lib/web/development/components/EmptyState/EmptyState.web.js +77 -0
- package/build/lib/web/development/components/EmptyState/EmptyState.web.js.map +1 -0
- package/build/lib/web/development/components/EmptyState/emptyStateTokens.js +33 -0
- package/build/lib/web/development/components/EmptyState/emptyStateTokens.js.map +1 -0
- package/build/lib/web/development/components/EmptyState/index.js +2 -0
- package/build/lib/web/development/components/EmptyState/index.js.map +1 -0
- package/build/lib/web/development/components/Tabs/TabItem.web.js +12 -21
- package/build/lib/web/development/components/Tabs/TabItem.web.js.map +1 -1
- package/build/lib/web/development/components/Tabs/tabTokens.js +57 -66
- package/build/lib/web/development/components/Tabs/tabTokens.js.map +1 -1
- package/build/lib/web/development/components/Tabs/utils.js +9 -0
- package/build/lib/web/development/components/Tabs/utils.js.map +1 -1
- package/build/lib/web/development/components/index.js +2 -0
- package/build/lib/web/development/components/index.js.map +1 -1
- package/build/lib/web/development/utils/metaAttribute/metaConstants.js +1 -0
- package/build/lib/web/development/utils/metaAttribute/metaConstants.js.map +1 -1
- package/build/lib/web/production/components/EmptyState/EmptyState.web.js +77 -0
- package/build/lib/web/production/components/EmptyState/EmptyState.web.js.map +1 -0
- package/build/lib/web/production/components/EmptyState/emptyStateTokens.js +33 -0
- package/build/lib/web/production/components/EmptyState/emptyStateTokens.js.map +1 -0
- package/build/lib/web/production/components/EmptyState/index.js +2 -0
- package/build/lib/web/production/components/EmptyState/index.js.map +1 -0
- package/build/lib/web/production/components/Tabs/TabItem.web.js +12 -21
- package/build/lib/web/production/components/Tabs/TabItem.web.js.map +1 -1
- package/build/lib/web/production/components/Tabs/tabTokens.js +57 -66
- package/build/lib/web/production/components/Tabs/tabTokens.js.map +1 -1
- package/build/lib/web/production/components/Tabs/utils.js +9 -0
- package/build/lib/web/production/components/Tabs/utils.js.map +1 -1
- package/build/lib/web/production/components/index.js +2 -0
- package/build/lib/web/production/components/index.js.map +1 -1
- package/build/lib/web/production/utils/metaAttribute/metaConstants.js +1 -0
- package/build/lib/web/production/utils/metaAttribute/metaConstants.js.map +1 -1
- package/build/types/components/index.d.ts +603 -3
- package/build/types/components/index.native.d.ts +41 -3
- package/package.json +1 -1
|
@@ -16628,6 +16628,606 @@ type ElevateProps = Pick<BaseMotionBoxProps, 'type' | 'motionTriggers' | 'childr
|
|
|
16628
16628
|
*/
|
|
16629
16629
|
declare const Elevate: ({ children, isHighlighted, type, motionTriggers, }: ElevateProps) => React__default.ReactElement;
|
|
16630
16630
|
|
|
16631
|
+
type EmptyStateSize = 'small' | 'medium' | 'large' | 'xlarge';
|
|
16632
|
+
|
|
16633
|
+
declare const EmptyState: React__default.ForwardRefExoticComponent<{
|
|
16634
|
+
asset?: React__default.ReactNode;
|
|
16635
|
+
title?: string | undefined;
|
|
16636
|
+
description?: string | undefined;
|
|
16637
|
+
children?: React__default.ReactNode;
|
|
16638
|
+
size?: EmptyStateSize | undefined;
|
|
16639
|
+
} & TestID & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "flexWrap" | "justifySelf" | "order" | "placeSelf"> & {
|
|
16640
|
+
bottom: SpacingValueType | {
|
|
16641
|
+
readonly base?: SpacingValueType | undefined;
|
|
16642
|
+
readonly xs?: SpacingValueType | undefined;
|
|
16643
|
+
readonly s?: SpacingValueType | undefined;
|
|
16644
|
+
readonly m?: SpacingValueType | undefined;
|
|
16645
|
+
readonly l?: SpacingValueType | undefined;
|
|
16646
|
+
readonly xl?: SpacingValueType | undefined;
|
|
16647
|
+
};
|
|
16648
|
+
left: SpacingValueType | {
|
|
16649
|
+
readonly base?: SpacingValueType | undefined;
|
|
16650
|
+
readonly xs?: SpacingValueType | undefined;
|
|
16651
|
+
readonly s?: SpacingValueType | undefined;
|
|
16652
|
+
readonly m?: SpacingValueType | undefined;
|
|
16653
|
+
readonly l?: SpacingValueType | undefined;
|
|
16654
|
+
readonly xl?: SpacingValueType | undefined;
|
|
16655
|
+
};
|
|
16656
|
+
position?: csstype.Property.Position | {
|
|
16657
|
+
readonly base?: csstype.Property.Position | undefined;
|
|
16658
|
+
readonly xs?: csstype.Property.Position | undefined;
|
|
16659
|
+
readonly s?: csstype.Property.Position | undefined;
|
|
16660
|
+
readonly m?: csstype.Property.Position | undefined;
|
|
16661
|
+
readonly l?: csstype.Property.Position | undefined;
|
|
16662
|
+
readonly xl?: csstype.Property.Position | undefined;
|
|
16663
|
+
} | undefined;
|
|
16664
|
+
right: SpacingValueType | {
|
|
16665
|
+
readonly base?: SpacingValueType | undefined;
|
|
16666
|
+
readonly xs?: SpacingValueType | undefined;
|
|
16667
|
+
readonly s?: SpacingValueType | undefined;
|
|
16668
|
+
readonly m?: SpacingValueType | undefined;
|
|
16669
|
+
readonly l?: SpacingValueType | undefined;
|
|
16670
|
+
readonly xl?: SpacingValueType | undefined;
|
|
16671
|
+
};
|
|
16672
|
+
top: SpacingValueType | {
|
|
16673
|
+
readonly base?: SpacingValueType | undefined;
|
|
16674
|
+
readonly xs?: SpacingValueType | undefined;
|
|
16675
|
+
readonly s?: SpacingValueType | undefined;
|
|
16676
|
+
readonly m?: SpacingValueType | undefined;
|
|
16677
|
+
readonly l?: SpacingValueType | undefined;
|
|
16678
|
+
readonly xl?: SpacingValueType | undefined;
|
|
16679
|
+
};
|
|
16680
|
+
zIndex?: csstype.Property.ZIndex | {
|
|
16681
|
+
readonly base?: csstype.Property.ZIndex | undefined;
|
|
16682
|
+
readonly xs?: csstype.Property.ZIndex | undefined;
|
|
16683
|
+
readonly s?: csstype.Property.ZIndex | undefined;
|
|
16684
|
+
readonly m?: csstype.Property.ZIndex | undefined;
|
|
16685
|
+
readonly l?: csstype.Property.ZIndex | undefined;
|
|
16686
|
+
readonly xl?: csstype.Property.ZIndex | undefined;
|
|
16687
|
+
} | undefined;
|
|
16688
|
+
__brand__?: "platform-web" | {
|
|
16689
|
+
readonly base?: "platform-web" | undefined;
|
|
16690
|
+
readonly xs?: "platform-web" | undefined;
|
|
16691
|
+
readonly s?: "platform-web" | undefined;
|
|
16692
|
+
readonly m?: "platform-web" | undefined;
|
|
16693
|
+
readonly l?: "platform-web" | undefined;
|
|
16694
|
+
readonly xl?: "platform-web" | undefined;
|
|
16695
|
+
} | undefined;
|
|
16696
|
+
} & Pick<{
|
|
16697
|
+
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | {
|
|
16698
|
+
readonly base?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
16699
|
+
readonly xs?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
16700
|
+
readonly s?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
16701
|
+
readonly m?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
16702
|
+
readonly l?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
16703
|
+
readonly xl?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
16704
|
+
} | undefined;
|
|
16705
|
+
gridAutoFlow?: csstype.Property.GridAutoFlow | {
|
|
16706
|
+
readonly base?: csstype.Property.GridAutoFlow | undefined;
|
|
16707
|
+
readonly xs?: csstype.Property.GridAutoFlow | undefined;
|
|
16708
|
+
readonly s?: csstype.Property.GridAutoFlow | undefined;
|
|
16709
|
+
readonly m?: csstype.Property.GridAutoFlow | undefined;
|
|
16710
|
+
readonly l?: csstype.Property.GridAutoFlow | undefined;
|
|
16711
|
+
readonly xl?: csstype.Property.GridAutoFlow | undefined;
|
|
16712
|
+
} | undefined;
|
|
16713
|
+
gridAutoRows?: csstype.Property.GridAutoRows<string | number> | {
|
|
16714
|
+
readonly base?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
16715
|
+
readonly xs?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
16716
|
+
readonly s?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
16717
|
+
readonly m?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
16718
|
+
readonly l?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
16719
|
+
readonly xl?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
16720
|
+
} | undefined;
|
|
16721
|
+
gridColumnEnd?: csstype.Property.GridColumnEnd | {
|
|
16722
|
+
readonly base?: csstype.Property.GridColumnEnd | undefined;
|
|
16723
|
+
readonly xs?: csstype.Property.GridColumnEnd | undefined;
|
|
16724
|
+
readonly s?: csstype.Property.GridColumnEnd | undefined;
|
|
16725
|
+
readonly m?: csstype.Property.GridColumnEnd | undefined;
|
|
16726
|
+
readonly l?: csstype.Property.GridColumnEnd | undefined;
|
|
16727
|
+
readonly xl?: csstype.Property.GridColumnEnd | undefined;
|
|
16728
|
+
} | undefined;
|
|
16729
|
+
gridColumnStart?: csstype.Property.GridColumnStart | {
|
|
16730
|
+
readonly base?: csstype.Property.GridColumnStart | undefined;
|
|
16731
|
+
readonly xs?: csstype.Property.GridColumnStart | undefined;
|
|
16732
|
+
readonly s?: csstype.Property.GridColumnStart | undefined;
|
|
16733
|
+
readonly m?: csstype.Property.GridColumnStart | undefined;
|
|
16734
|
+
readonly l?: csstype.Property.GridColumnStart | undefined;
|
|
16735
|
+
readonly xl?: csstype.Property.GridColumnStart | undefined;
|
|
16736
|
+
} | undefined;
|
|
16737
|
+
gridRowEnd?: csstype.Property.GridRowEnd | {
|
|
16738
|
+
readonly base?: csstype.Property.GridRowEnd | undefined;
|
|
16739
|
+
readonly xs?: csstype.Property.GridRowEnd | undefined;
|
|
16740
|
+
readonly s?: csstype.Property.GridRowEnd | undefined;
|
|
16741
|
+
readonly m?: csstype.Property.GridRowEnd | undefined;
|
|
16742
|
+
readonly l?: csstype.Property.GridRowEnd | undefined;
|
|
16743
|
+
readonly xl?: csstype.Property.GridRowEnd | undefined;
|
|
16744
|
+
} | undefined;
|
|
16745
|
+
gridRowStart?: csstype.Property.GridRowStart | {
|
|
16746
|
+
readonly base?: csstype.Property.GridRowStart | undefined;
|
|
16747
|
+
readonly xs?: csstype.Property.GridRowStart | undefined;
|
|
16748
|
+
readonly s?: csstype.Property.GridRowStart | undefined;
|
|
16749
|
+
readonly m?: csstype.Property.GridRowStart | undefined;
|
|
16750
|
+
readonly l?: csstype.Property.GridRowStart | undefined;
|
|
16751
|
+
readonly xl?: csstype.Property.GridRowStart | undefined;
|
|
16752
|
+
} | undefined;
|
|
16753
|
+
gridTemplateAreas?: csstype.Property.GridTemplateAreas | {
|
|
16754
|
+
readonly base?: csstype.Property.GridTemplateAreas | undefined;
|
|
16755
|
+
readonly xs?: csstype.Property.GridTemplateAreas | undefined;
|
|
16756
|
+
readonly s?: csstype.Property.GridTemplateAreas | undefined;
|
|
16757
|
+
readonly m?: csstype.Property.GridTemplateAreas | undefined;
|
|
16758
|
+
readonly l?: csstype.Property.GridTemplateAreas | undefined;
|
|
16759
|
+
readonly xl?: csstype.Property.GridTemplateAreas | undefined;
|
|
16760
|
+
} | undefined;
|
|
16761
|
+
gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | {
|
|
16762
|
+
readonly base?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
16763
|
+
readonly xs?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
16764
|
+
readonly s?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
16765
|
+
readonly m?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
16766
|
+
readonly l?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
16767
|
+
readonly xl?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
16768
|
+
} | undefined;
|
|
16769
|
+
gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | {
|
|
16770
|
+
readonly base?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
16771
|
+
readonly xs?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
16772
|
+
readonly s?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
16773
|
+
readonly m?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
16774
|
+
readonly l?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
16775
|
+
readonly xl?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
16776
|
+
} | undefined;
|
|
16777
|
+
grid?: csstype.Property.Grid | {
|
|
16778
|
+
readonly base?: csstype.Property.Grid | undefined;
|
|
16779
|
+
readonly xs?: csstype.Property.Grid | undefined;
|
|
16780
|
+
readonly s?: csstype.Property.Grid | undefined;
|
|
16781
|
+
readonly m?: csstype.Property.Grid | undefined;
|
|
16782
|
+
readonly l?: csstype.Property.Grid | undefined;
|
|
16783
|
+
readonly xl?: csstype.Property.Grid | undefined;
|
|
16784
|
+
} | undefined;
|
|
16785
|
+
gridArea?: csstype.Property.GridArea | {
|
|
16786
|
+
readonly base?: csstype.Property.GridArea | undefined;
|
|
16787
|
+
readonly xs?: csstype.Property.GridArea | undefined;
|
|
16788
|
+
readonly s?: csstype.Property.GridArea | undefined;
|
|
16789
|
+
readonly m?: csstype.Property.GridArea | undefined;
|
|
16790
|
+
readonly l?: csstype.Property.GridArea | undefined;
|
|
16791
|
+
readonly xl?: csstype.Property.GridArea | undefined;
|
|
16792
|
+
} | undefined;
|
|
16793
|
+
gridColumn?: csstype.Property.GridColumn | {
|
|
16794
|
+
readonly base?: csstype.Property.GridColumn | undefined;
|
|
16795
|
+
readonly xs?: csstype.Property.GridColumn | undefined;
|
|
16796
|
+
readonly s?: csstype.Property.GridColumn | undefined;
|
|
16797
|
+
readonly m?: csstype.Property.GridColumn | undefined;
|
|
16798
|
+
readonly l?: csstype.Property.GridColumn | undefined;
|
|
16799
|
+
readonly xl?: csstype.Property.GridColumn | undefined;
|
|
16800
|
+
} | undefined;
|
|
16801
|
+
gridRow?: csstype.Property.GridRow | {
|
|
16802
|
+
readonly base?: csstype.Property.GridRow | undefined;
|
|
16803
|
+
readonly xs?: csstype.Property.GridRow | undefined;
|
|
16804
|
+
readonly s?: csstype.Property.GridRow | undefined;
|
|
16805
|
+
readonly m?: csstype.Property.GridRow | undefined;
|
|
16806
|
+
readonly l?: csstype.Property.GridRow | undefined;
|
|
16807
|
+
readonly xl?: csstype.Property.GridRow | undefined;
|
|
16808
|
+
} | undefined;
|
|
16809
|
+
gridTemplate?: csstype.Property.GridTemplate | {
|
|
16810
|
+
readonly base?: csstype.Property.GridTemplate | undefined;
|
|
16811
|
+
readonly xs?: csstype.Property.GridTemplate | undefined;
|
|
16812
|
+
readonly s?: csstype.Property.GridTemplate | undefined;
|
|
16813
|
+
readonly m?: csstype.Property.GridTemplate | undefined;
|
|
16814
|
+
readonly l?: csstype.Property.GridTemplate | undefined;
|
|
16815
|
+
readonly xl?: csstype.Property.GridTemplate | undefined;
|
|
16816
|
+
} | undefined;
|
|
16817
|
+
__brand__?: "platform-web" | {
|
|
16818
|
+
readonly base?: "platform-web" | undefined;
|
|
16819
|
+
readonly xs?: "platform-web" | undefined;
|
|
16820
|
+
readonly s?: "platform-web" | undefined;
|
|
16821
|
+
readonly m?: "platform-web" | undefined;
|
|
16822
|
+
readonly l?: "platform-web" | undefined;
|
|
16823
|
+
readonly xl?: "platform-web" | undefined;
|
|
16824
|
+
} | undefined;
|
|
16825
|
+
}, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow"> & Pick<{
|
|
16826
|
+
width: SpacingValueType | {
|
|
16827
|
+
readonly base?: SpacingValueType | undefined;
|
|
16828
|
+
readonly xs?: SpacingValueType | undefined;
|
|
16829
|
+
readonly s?: SpacingValueType | undefined;
|
|
16830
|
+
readonly m?: SpacingValueType | undefined;
|
|
16831
|
+
readonly l?: SpacingValueType | undefined;
|
|
16832
|
+
readonly xl?: SpacingValueType | undefined;
|
|
16833
|
+
};
|
|
16834
|
+
display?: csstype.Property.Display | {
|
|
16835
|
+
readonly base?: csstype.Property.Display | undefined;
|
|
16836
|
+
readonly xs?: csstype.Property.Display | undefined;
|
|
16837
|
+
readonly s?: csstype.Property.Display | undefined;
|
|
16838
|
+
readonly m?: csstype.Property.Display | undefined;
|
|
16839
|
+
readonly l?: csstype.Property.Display | undefined;
|
|
16840
|
+
readonly xl?: csstype.Property.Display | undefined;
|
|
16841
|
+
} | undefined;
|
|
16842
|
+
height: SpacingValueType | {
|
|
16843
|
+
readonly base?: SpacingValueType | undefined;
|
|
16844
|
+
readonly xs?: SpacingValueType | undefined;
|
|
16845
|
+
readonly s?: SpacingValueType | undefined;
|
|
16846
|
+
readonly m?: SpacingValueType | undefined;
|
|
16847
|
+
readonly l?: SpacingValueType | undefined;
|
|
16848
|
+
readonly xl?: SpacingValueType | undefined;
|
|
16849
|
+
};
|
|
16850
|
+
maxHeight: SpacingValueType | {
|
|
16851
|
+
readonly base?: SpacingValueType | undefined;
|
|
16852
|
+
readonly xs?: SpacingValueType | undefined;
|
|
16853
|
+
readonly s?: SpacingValueType | undefined;
|
|
16854
|
+
readonly m?: SpacingValueType | undefined;
|
|
16855
|
+
readonly l?: SpacingValueType | undefined;
|
|
16856
|
+
readonly xl?: SpacingValueType | undefined;
|
|
16857
|
+
};
|
|
16858
|
+
maxWidth: SpacingValueType | {
|
|
16859
|
+
readonly base?: SpacingValueType | undefined;
|
|
16860
|
+
readonly xs?: SpacingValueType | undefined;
|
|
16861
|
+
readonly s?: SpacingValueType | undefined;
|
|
16862
|
+
readonly m?: SpacingValueType | undefined;
|
|
16863
|
+
readonly l?: SpacingValueType | undefined;
|
|
16864
|
+
readonly xl?: SpacingValueType | undefined;
|
|
16865
|
+
};
|
|
16866
|
+
minHeight: SpacingValueType | {
|
|
16867
|
+
readonly base?: SpacingValueType | undefined;
|
|
16868
|
+
readonly xs?: SpacingValueType | undefined;
|
|
16869
|
+
readonly s?: SpacingValueType | undefined;
|
|
16870
|
+
readonly m?: SpacingValueType | undefined;
|
|
16871
|
+
readonly l?: SpacingValueType | undefined;
|
|
16872
|
+
readonly xl?: SpacingValueType | undefined;
|
|
16873
|
+
};
|
|
16874
|
+
minWidth: SpacingValueType | {
|
|
16875
|
+
readonly base?: SpacingValueType | undefined;
|
|
16876
|
+
readonly xs?: SpacingValueType | undefined;
|
|
16877
|
+
readonly s?: SpacingValueType | undefined;
|
|
16878
|
+
readonly m?: SpacingValueType | undefined;
|
|
16879
|
+
readonly l?: SpacingValueType | undefined;
|
|
16880
|
+
readonly xl?: SpacingValueType | undefined;
|
|
16881
|
+
};
|
|
16882
|
+
overflowX?: csstype.Property.OverflowX | {
|
|
16883
|
+
readonly base?: csstype.Property.OverflowX | undefined;
|
|
16884
|
+
readonly xs?: csstype.Property.OverflowX | undefined;
|
|
16885
|
+
readonly s?: csstype.Property.OverflowX | undefined;
|
|
16886
|
+
readonly m?: csstype.Property.OverflowX | undefined;
|
|
16887
|
+
readonly l?: csstype.Property.OverflowX | undefined;
|
|
16888
|
+
readonly xl?: csstype.Property.OverflowX | undefined;
|
|
16889
|
+
} | undefined;
|
|
16890
|
+
overflowY?: csstype.Property.OverflowY | {
|
|
16891
|
+
readonly base?: csstype.Property.OverflowY | undefined;
|
|
16892
|
+
readonly xs?: csstype.Property.OverflowY | undefined;
|
|
16893
|
+
readonly s?: csstype.Property.OverflowY | undefined;
|
|
16894
|
+
readonly m?: csstype.Property.OverflowY | undefined;
|
|
16895
|
+
readonly l?: csstype.Property.OverflowY | undefined;
|
|
16896
|
+
readonly xl?: csstype.Property.OverflowY | undefined;
|
|
16897
|
+
} | undefined;
|
|
16898
|
+
textAlign?: csstype.Property.TextAlign | {
|
|
16899
|
+
readonly base?: csstype.Property.TextAlign | undefined;
|
|
16900
|
+
readonly xs?: csstype.Property.TextAlign | undefined;
|
|
16901
|
+
readonly s?: csstype.Property.TextAlign | undefined;
|
|
16902
|
+
readonly m?: csstype.Property.TextAlign | undefined;
|
|
16903
|
+
readonly l?: csstype.Property.TextAlign | undefined;
|
|
16904
|
+
readonly xl?: csstype.Property.TextAlign | undefined;
|
|
16905
|
+
} | undefined;
|
|
16906
|
+
whiteSpace?: csstype.Property.WhiteSpace | {
|
|
16907
|
+
readonly base?: csstype.Property.WhiteSpace | undefined;
|
|
16908
|
+
readonly xs?: csstype.Property.WhiteSpace | undefined;
|
|
16909
|
+
readonly s?: csstype.Property.WhiteSpace | undefined;
|
|
16910
|
+
readonly m?: csstype.Property.WhiteSpace | undefined;
|
|
16911
|
+
readonly l?: csstype.Property.WhiteSpace | undefined;
|
|
16912
|
+
readonly xl?: csstype.Property.WhiteSpace | undefined;
|
|
16913
|
+
} | undefined;
|
|
16914
|
+
overflow?: csstype.Property.Overflow | {
|
|
16915
|
+
readonly base?: csstype.Property.Overflow | undefined;
|
|
16916
|
+
readonly xs?: csstype.Property.Overflow | undefined;
|
|
16917
|
+
readonly s?: csstype.Property.Overflow | undefined;
|
|
16918
|
+
readonly m?: csstype.Property.Overflow | undefined;
|
|
16919
|
+
readonly l?: csstype.Property.Overflow | undefined;
|
|
16920
|
+
readonly xl?: csstype.Property.Overflow | undefined;
|
|
16921
|
+
} | undefined;
|
|
16922
|
+
__brand__?: "platform-web" | {
|
|
16923
|
+
readonly base?: "platform-web" | undefined;
|
|
16924
|
+
readonly xs?: "platform-web" | undefined;
|
|
16925
|
+
readonly s?: "platform-web" | undefined;
|
|
16926
|
+
readonly m?: "platform-web" | undefined;
|
|
16927
|
+
readonly l?: "platform-web" | undefined;
|
|
16928
|
+
readonly xl?: "platform-web" | undefined;
|
|
16929
|
+
} | undefined;
|
|
16930
|
+
}, "display"> & Pick<{
|
|
16931
|
+
elevation?: ElevationLevels | {
|
|
16932
|
+
readonly base?: ElevationLevels | undefined;
|
|
16933
|
+
readonly xs?: ElevationLevels | undefined;
|
|
16934
|
+
readonly s?: ElevationLevels | undefined;
|
|
16935
|
+
readonly m?: ElevationLevels | undefined;
|
|
16936
|
+
readonly l?: ElevationLevels | undefined;
|
|
16937
|
+
readonly xl?: ElevationLevels | undefined;
|
|
16938
|
+
} | undefined;
|
|
16939
|
+
backgroundImage?: csstype.Property.BackgroundImage | {
|
|
16940
|
+
readonly base?: csstype.Property.BackgroundImage | undefined;
|
|
16941
|
+
readonly xs?: csstype.Property.BackgroundImage | undefined;
|
|
16942
|
+
readonly s?: csstype.Property.BackgroundImage | undefined;
|
|
16943
|
+
readonly m?: csstype.Property.BackgroundImage | undefined;
|
|
16944
|
+
readonly l?: csstype.Property.BackgroundImage | undefined;
|
|
16945
|
+
readonly xl?: csstype.Property.BackgroundImage | undefined;
|
|
16946
|
+
} | undefined;
|
|
16947
|
+
backgroundOrigin?: csstype.Property.BackgroundOrigin | {
|
|
16948
|
+
readonly base?: csstype.Property.BackgroundOrigin | undefined;
|
|
16949
|
+
readonly xs?: csstype.Property.BackgroundOrigin | undefined;
|
|
16950
|
+
readonly s?: csstype.Property.BackgroundOrigin | undefined;
|
|
16951
|
+
readonly m?: csstype.Property.BackgroundOrigin | undefined;
|
|
16952
|
+
readonly l?: csstype.Property.BackgroundOrigin | undefined;
|
|
16953
|
+
readonly xl?: csstype.Property.BackgroundOrigin | undefined;
|
|
16954
|
+
} | undefined;
|
|
16955
|
+
backgroundRepeat?: csstype.Property.BackgroundRepeat | {
|
|
16956
|
+
readonly base?: csstype.Property.BackgroundRepeat | undefined;
|
|
16957
|
+
readonly xs?: csstype.Property.BackgroundRepeat | undefined;
|
|
16958
|
+
readonly s?: csstype.Property.BackgroundRepeat | undefined;
|
|
16959
|
+
readonly m?: csstype.Property.BackgroundRepeat | undefined;
|
|
16960
|
+
readonly l?: csstype.Property.BackgroundRepeat | undefined;
|
|
16961
|
+
readonly xl?: csstype.Property.BackgroundRepeat | undefined;
|
|
16962
|
+
} | undefined;
|
|
16963
|
+
backgroundSize?: csstype.Property.BackgroundSize<string | number> | {
|
|
16964
|
+
readonly base?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
16965
|
+
readonly xs?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
16966
|
+
readonly s?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
16967
|
+
readonly m?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
16968
|
+
readonly l?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
16969
|
+
readonly xl?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
16970
|
+
} | undefined;
|
|
16971
|
+
borderBottomColor: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | {
|
|
16972
|
+
readonly base?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
16973
|
+
readonly xs?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
16974
|
+
readonly s?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
16975
|
+
readonly m?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
16976
|
+
readonly l?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
16977
|
+
readonly xl?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
16978
|
+
};
|
|
16979
|
+
borderBottomLeftRadius: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | {
|
|
16980
|
+
readonly base?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
16981
|
+
readonly xs?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
16982
|
+
readonly s?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
16983
|
+
readonly m?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
16984
|
+
readonly l?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
16985
|
+
readonly xl?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
16986
|
+
};
|
|
16987
|
+
borderBottomRightRadius: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | {
|
|
16988
|
+
readonly base?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
16989
|
+
readonly xs?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
16990
|
+
readonly s?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
16991
|
+
readonly m?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
16992
|
+
readonly l?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
16993
|
+
readonly xl?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
16994
|
+
};
|
|
16995
|
+
borderBottomStyle?: csstype.Property.BorderBottomStyle | {
|
|
16996
|
+
readonly base?: csstype.Property.BorderBottomStyle | undefined;
|
|
16997
|
+
readonly xs?: csstype.Property.BorderBottomStyle | undefined;
|
|
16998
|
+
readonly s?: csstype.Property.BorderBottomStyle | undefined;
|
|
16999
|
+
readonly m?: csstype.Property.BorderBottomStyle | undefined;
|
|
17000
|
+
readonly l?: csstype.Property.BorderBottomStyle | undefined;
|
|
17001
|
+
readonly xl?: csstype.Property.BorderBottomStyle | undefined;
|
|
17002
|
+
} | undefined;
|
|
17003
|
+
borderBottomWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
17004
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17005
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17006
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17007
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17008
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17009
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17010
|
+
};
|
|
17011
|
+
borderLeftColor: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | {
|
|
17012
|
+
readonly base?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
17013
|
+
readonly xs?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
17014
|
+
readonly s?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
17015
|
+
readonly m?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
17016
|
+
readonly l?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
17017
|
+
readonly xl?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
17018
|
+
};
|
|
17019
|
+
borderLeftStyle?: csstype.Property.BorderLeftStyle | {
|
|
17020
|
+
readonly base?: csstype.Property.BorderLeftStyle | undefined;
|
|
17021
|
+
readonly xs?: csstype.Property.BorderLeftStyle | undefined;
|
|
17022
|
+
readonly s?: csstype.Property.BorderLeftStyle | undefined;
|
|
17023
|
+
readonly m?: csstype.Property.BorderLeftStyle | undefined;
|
|
17024
|
+
readonly l?: csstype.Property.BorderLeftStyle | undefined;
|
|
17025
|
+
readonly xl?: csstype.Property.BorderLeftStyle | undefined;
|
|
17026
|
+
} | undefined;
|
|
17027
|
+
borderLeftWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
17028
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17029
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17030
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17031
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17032
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17033
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17034
|
+
};
|
|
17035
|
+
borderRightColor: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | {
|
|
17036
|
+
readonly base?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
17037
|
+
readonly xs?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
17038
|
+
readonly s?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
17039
|
+
readonly m?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
17040
|
+
readonly l?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
17041
|
+
readonly xl?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
17042
|
+
};
|
|
17043
|
+
borderRightStyle?: csstype.Property.BorderRightStyle | {
|
|
17044
|
+
readonly base?: csstype.Property.BorderRightStyle | undefined;
|
|
17045
|
+
readonly xs?: csstype.Property.BorderRightStyle | undefined;
|
|
17046
|
+
readonly s?: csstype.Property.BorderRightStyle | undefined;
|
|
17047
|
+
readonly m?: csstype.Property.BorderRightStyle | undefined;
|
|
17048
|
+
readonly l?: csstype.Property.BorderRightStyle | undefined;
|
|
17049
|
+
readonly xl?: csstype.Property.BorderRightStyle | undefined;
|
|
17050
|
+
} | undefined;
|
|
17051
|
+
borderRightWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
17052
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17053
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17054
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17055
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17056
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17057
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17058
|
+
};
|
|
17059
|
+
borderTopColor: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | {
|
|
17060
|
+
readonly base?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
17061
|
+
readonly xs?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
17062
|
+
readonly s?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
17063
|
+
readonly m?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
17064
|
+
readonly l?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
17065
|
+
readonly xl?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
17066
|
+
};
|
|
17067
|
+
borderTopLeftRadius: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | {
|
|
17068
|
+
readonly base?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
17069
|
+
readonly xs?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
17070
|
+
readonly s?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
17071
|
+
readonly m?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
17072
|
+
readonly l?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
17073
|
+
readonly xl?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
17074
|
+
};
|
|
17075
|
+
borderTopRightRadius: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | {
|
|
17076
|
+
readonly base?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
17077
|
+
readonly xs?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
17078
|
+
readonly s?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
17079
|
+
readonly m?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
17080
|
+
readonly l?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
17081
|
+
readonly xl?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
17082
|
+
};
|
|
17083
|
+
borderTopStyle?: csstype.Property.BorderTopStyle | {
|
|
17084
|
+
readonly base?: csstype.Property.BorderTopStyle | undefined;
|
|
17085
|
+
readonly xs?: csstype.Property.BorderTopStyle | undefined;
|
|
17086
|
+
readonly s?: csstype.Property.BorderTopStyle | undefined;
|
|
17087
|
+
readonly m?: csstype.Property.BorderTopStyle | undefined;
|
|
17088
|
+
readonly l?: csstype.Property.BorderTopStyle | undefined;
|
|
17089
|
+
readonly xl?: csstype.Property.BorderTopStyle | undefined;
|
|
17090
|
+
} | undefined;
|
|
17091
|
+
borderTopWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
17092
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17093
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17094
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17095
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17096
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17097
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17098
|
+
};
|
|
17099
|
+
clipPath?: csstype.Property.ClipPath | {
|
|
17100
|
+
readonly base?: csstype.Property.ClipPath | undefined;
|
|
17101
|
+
readonly xs?: csstype.Property.ClipPath | undefined;
|
|
17102
|
+
readonly s?: csstype.Property.ClipPath | undefined;
|
|
17103
|
+
readonly m?: csstype.Property.ClipPath | undefined;
|
|
17104
|
+
readonly l?: csstype.Property.ClipPath | undefined;
|
|
17105
|
+
readonly xl?: csstype.Property.ClipPath | undefined;
|
|
17106
|
+
} | undefined;
|
|
17107
|
+
opacity?: csstype.Property.Opacity | {
|
|
17108
|
+
readonly base?: csstype.Property.Opacity | undefined;
|
|
17109
|
+
readonly xs?: csstype.Property.Opacity | undefined;
|
|
17110
|
+
readonly s?: csstype.Property.Opacity | undefined;
|
|
17111
|
+
readonly m?: csstype.Property.Opacity | undefined;
|
|
17112
|
+
readonly l?: csstype.Property.Opacity | undefined;
|
|
17113
|
+
readonly xl?: csstype.Property.Opacity | undefined;
|
|
17114
|
+
} | undefined;
|
|
17115
|
+
pointerEvents?: csstype.Property.PointerEvents | {
|
|
17116
|
+
readonly base?: csstype.Property.PointerEvents | undefined;
|
|
17117
|
+
readonly xs?: csstype.Property.PointerEvents | undefined;
|
|
17118
|
+
readonly s?: csstype.Property.PointerEvents | undefined;
|
|
17119
|
+
readonly m?: csstype.Property.PointerEvents | undefined;
|
|
17120
|
+
readonly l?: csstype.Property.PointerEvents | undefined;
|
|
17121
|
+
readonly xl?: csstype.Property.PointerEvents | undefined;
|
|
17122
|
+
} | undefined;
|
|
17123
|
+
transform?: csstype.Property.Transform | {
|
|
17124
|
+
readonly base?: csstype.Property.Transform | undefined;
|
|
17125
|
+
readonly xs?: csstype.Property.Transform | undefined;
|
|
17126
|
+
readonly s?: csstype.Property.Transform | undefined;
|
|
17127
|
+
readonly m?: csstype.Property.Transform | undefined;
|
|
17128
|
+
readonly l?: csstype.Property.Transform | undefined;
|
|
17129
|
+
readonly xl?: csstype.Property.Transform | undefined;
|
|
17130
|
+
} | undefined;
|
|
17131
|
+
transformOrigin?: csstype.Property.TransformOrigin<string | number> | {
|
|
17132
|
+
readonly base?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
17133
|
+
readonly xs?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
17134
|
+
readonly s?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
17135
|
+
readonly m?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
17136
|
+
readonly l?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
17137
|
+
readonly xl?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
17138
|
+
} | undefined;
|
|
17139
|
+
visibility?: csstype.Property.Visibility | {
|
|
17140
|
+
readonly base?: csstype.Property.Visibility | undefined;
|
|
17141
|
+
readonly xs?: csstype.Property.Visibility | undefined;
|
|
17142
|
+
readonly s?: csstype.Property.Visibility | undefined;
|
|
17143
|
+
readonly m?: csstype.Property.Visibility | undefined;
|
|
17144
|
+
readonly l?: csstype.Property.Visibility | undefined;
|
|
17145
|
+
readonly xl?: csstype.Property.Visibility | undefined;
|
|
17146
|
+
} | undefined;
|
|
17147
|
+
backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | {
|
|
17148
|
+
readonly base?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
17149
|
+
readonly xs?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
17150
|
+
readonly s?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
17151
|
+
readonly m?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
17152
|
+
readonly l?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
17153
|
+
readonly xl?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
17154
|
+
} | undefined;
|
|
17155
|
+
borderColor: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | {
|
|
17156
|
+
readonly base?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
17157
|
+
readonly xs?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
17158
|
+
readonly s?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
17159
|
+
readonly m?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
17160
|
+
readonly l?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
17161
|
+
readonly xl?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
17162
|
+
};
|
|
17163
|
+
borderRadius: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | {
|
|
17164
|
+
readonly base?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
17165
|
+
readonly xs?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
17166
|
+
readonly s?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
17167
|
+
readonly m?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
17168
|
+
readonly l?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
17169
|
+
readonly xl?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
17170
|
+
};
|
|
17171
|
+
borderStyle?: csstype.Property.BorderStyle | {
|
|
17172
|
+
readonly base?: csstype.Property.BorderStyle | undefined;
|
|
17173
|
+
readonly xs?: csstype.Property.BorderStyle | undefined;
|
|
17174
|
+
readonly s?: csstype.Property.BorderStyle | undefined;
|
|
17175
|
+
readonly m?: csstype.Property.BorderStyle | undefined;
|
|
17176
|
+
readonly l?: csstype.Property.BorderStyle | undefined;
|
|
17177
|
+
readonly xl?: csstype.Property.BorderStyle | undefined;
|
|
17178
|
+
} | undefined;
|
|
17179
|
+
borderWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
17180
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17181
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17182
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17183
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17184
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17185
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
17186
|
+
};
|
|
17187
|
+
__brand__?: "platform-web" | {
|
|
17188
|
+
readonly base?: "platform-web" | undefined;
|
|
17189
|
+
readonly xs?: "platform-web" | undefined;
|
|
17190
|
+
readonly s?: "platform-web" | undefined;
|
|
17191
|
+
readonly m?: "platform-web" | undefined;
|
|
17192
|
+
readonly l?: "platform-web" | undefined;
|
|
17193
|
+
readonly xl?: "platform-web" | undefined;
|
|
17194
|
+
} | undefined;
|
|
17195
|
+
}, "visibility">, "__brand__">> & DataAnalyticsAttribute & React__default.RefAttributes<BladeElementRef>>;
|
|
17196
|
+
|
|
17197
|
+
type EmptyStateProps = {
|
|
17198
|
+
/**
|
|
17199
|
+
* Asset slot for custom illustrations, images, or any visual element.
|
|
17200
|
+
* Supports PNGs, custom brand illustrations, SVGs, animated gifs, lottie components etc.
|
|
17201
|
+
*
|
|
17202
|
+
* @example
|
|
17203
|
+
* ```jsx
|
|
17204
|
+
* // Custom image
|
|
17205
|
+
* <EmptyState asset={<img src="/custom-illustration.png" alt="No data" />} />
|
|
17206
|
+
*
|
|
17207
|
+
* // Custom component
|
|
17208
|
+
* <EmptyState asset={<CustomIllustration />} />
|
|
17209
|
+
* ```
|
|
17210
|
+
*/
|
|
17211
|
+
asset?: React.ReactNode;
|
|
17212
|
+
/**
|
|
17213
|
+
* Primary heading text for the empty state
|
|
17214
|
+
*/
|
|
17215
|
+
title?: string;
|
|
17216
|
+
/**
|
|
17217
|
+
* Supporting description text providing context and guidance
|
|
17218
|
+
*/
|
|
17219
|
+
description?: string;
|
|
17220
|
+
/**
|
|
17221
|
+
* Children content for actions, links, or any custom content.
|
|
17222
|
+
*/
|
|
17223
|
+
children?: React.ReactNode;
|
|
17224
|
+
/**
|
|
17225
|
+
* Size variant affecting the overall scale of the component
|
|
17226
|
+
* @default medium
|
|
17227
|
+
*/
|
|
17228
|
+
size?: EmptyStateSize;
|
|
17229
|
+
} & TestID & StyledPropsBlade & DataAnalyticsAttribute;
|
|
17230
|
+
|
|
16631
17231
|
type FadeProps = Pick<BaseMotionEntryExitProps, 'children' | 'isVisible' | 'motionTriggers' | 'shouldUnmountWhenHidden' | 'type' | 'delay'>;
|
|
16632
17232
|
|
|
16633
17233
|
/**
|
|
@@ -25970,7 +26570,7 @@ declare const Tabs: React__default.ForwardRefExoticComponent<{
|
|
|
25970
26570
|
web: "horizontal" | "vertical";
|
|
25971
26571
|
native: "horizontal";
|
|
25972
26572
|
}> | undefined;
|
|
25973
|
-
size?: "medium" | "large" | undefined;
|
|
26573
|
+
size?: "small" | "medium" | "large" | undefined;
|
|
25974
26574
|
variant?: "filled" | "bordered" | "borderless" | undefined;
|
|
25975
26575
|
isFullWidthTabItem?: boolean | undefined;
|
|
25976
26576
|
isLazy?: boolean | undefined;
|
|
@@ -26007,7 +26607,7 @@ type TabsProps = {
|
|
|
26007
26607
|
*
|
|
26008
26608
|
* @default 'medium'
|
|
26009
26609
|
*/
|
|
26010
|
-
size?: 'medium' | 'large';
|
|
26610
|
+
size?: 'small' | 'medium' | 'large';
|
|
26011
26611
|
/**
|
|
26012
26612
|
* The variant of the tabs.
|
|
26013
26613
|
*
|
|
@@ -28778,4 +29378,4 @@ declare const PreviewBody: (PreviewBodyProps: PreviewBodyProps) => React__defaul
|
|
|
28778
29378
|
declare const PreviewFooter: (PreviewFooterProps: PreviewFooterProps) => React__default.ReactElement;
|
|
28779
29379
|
declare const Preview: ({ children, onFullScreen: onFullScreenProp, onZoomChange, zoomScaleStep, isDragAndZoomDisabled, defaultZoom, onDragChange, }: PreviewProps) => React__default.ReactElement;
|
|
28780
29380
|
|
|
28781
|
-
export { AcceptPaymentsIcon, Accordion, AccordionItem, AccordionItemBody, AccordionItemHeader, AccordionItemProps, AccordionProps, ActionList, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemAvatar, ActionListItemBadge, ActionListItemBadgeGroup, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, ActionListSectionProps, ActionListSectionTitle, ActivityIcon, AddressBookIcon, AffordabilityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AndroidIcon, AnimateInteractions, AnimateInteractionsProps, AnnouncementIcon, ApertureIcon, AppStoreIcon, AppleIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowSquareDownIcon, ArrowSquareDownLeftIcon, ArrowSquareDownRightIcon, ArrowSquareLeftIcon, ArrowSquareRightIcon, ArrowSquareUpIcon, ArrowSquareUpLeftIcon, ArrowSquareUpRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, AttachmentIcon, AutoComplete, AutoCompleteProps, AutomateAccountingIcon, AutomatePayrollIcon, Avatar, AvatarGroup, AvatarGroupProps, AvatarProps, AwardIcon, Badge, BadgeProps, BankAccountVerificationIcon, BankIcon, BarChartAltIcon, BarChartIcon, BarCodeIcon, Battery100PercentIcon, Battery20PercentIcon, Battery40PercentIcon, Battery60PercentIcon, Battery80PercentIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BfsiIcon, BillIcon, BillMeIcon, BladeCommonEvents, BladeFile, BladeFileList, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomNav, BottomNavItem, BottomNavItemProps, BottomNavProps, BottomSheet, BottomSheetBody, BottomSheetBodyProps, BottomSheetFooter, BottomSheetFooterProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetProps, Box, BoxIcon, BoxProps, BoxRefType, Breadcrumb, BreadcrumbItem, BreadcrumbItemProps, BreadcrumbProps, BriefcaseIcon, BugIcon, BuildingIcon, BulkPayoutsIcon, BusinessBankingIcon, BusinessSpendManagementIcon, Button, ButtonGroup, ButtonGroupProps, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderAmount, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, Carousel, CarouselItem, CarouselProps, CashIcon, CastIcon, ChatMessage, ChatMessageProps, CheckCircle2Icon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpDownIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, Chip, ChipGroup, ChipGroupProps, ChipProps, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, ClosedCaptioningIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodeSnippetIcon, CodepenIcon, CoinIcon, CoinsIcon, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CommandIcon, CompanyRegistrationIcon, CompassIcon, ComponentIds, ConfettiIcon, ContactlessPaymentIcon, CookieIcon, CopyIcon, CopyrightIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CreditsAndLoansIcon, CropIcon, CrosshairIcon, CurrentAccountIcon, CustomersIcon, CutIcon, DashboardIcon, DatePicker, DatePickerProps, DeleteIcon, DigitalLendingIcon, DisbursePaymentsIcon, DiscIcon, Display, DisplayProps, Divider, DividerProps, DollarIcon, DollarsIcon, DotIcon, DownloadCloudIcon, DownloadIcon, DragHandleIcon, Drawer, DrawerBody, DrawerHeader, DrawerHeaderProps, DrawerProps, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, DropdownIconButton, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EcommerceIcon, EditComposeIcon, EditIcon, EditInlineIcon, EducationIcon, Elevate, ElevateProps, EngageIcon, EqualsIcon, EscrowAccountIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, Fade, FadeProps, FastForwardIcon, FeatherIcon, FigmaIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FileUpload, FileUploadProps, FileZipIcon, FilmIcon, FilterChipDatePicker, FilterChipGroup, FilterChipGroupContextType, FilterChipGroupProps, FilterChipSelectInput, FilterIcon, FlagIcon, FlaskIcon, FolderIcon, ForexManagementIcon, FreelanceIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphoneIcon, HeadphonesIcon, HeadsetIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconColors, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, IndiaFlagIcon, Indicator, IndicatorProps, InfoGroup, InfoGroupProps, InfoIcon, InfoItem, InfoItemKey, InfoItemKeyProps, InfoItemProps, InfoItemValue, InfoItemValueProps, InputDropdownButton, InputGroup, InputGroupProps, InputRow, InputRowProps, InstagramIcon, InstantSettlementIcon, InternationalPaymentsIcon, InvoicesIcon, ItalicIcon, KeyIcon, KeyboardIcon, LayersIcon, LayoutIcon, LeftCircularCornerIcon, LifeBuoyIcon, Link, LinkButtonVariantProps, LinkIcon, LinkProps, List, ListIcon, ListItem, ListItemCode, ListItemCodeProps, ListItemLink, ListItemLinkProps, ListItemProps, ListItemText, ListItemTextProps, ListProps, ListSearchIcon, ListView, ListViewFilters, LoaderIcon, LoansForBusinessesIcon, LockIcon, LogInIcon, LogOutIcon, MagicCheckoutIcon, MagicKonnectIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, Menu, MenuDivider, MenuDotsIcon, MenuFooter, MenuFooterProps, MenuHeader, MenuHeaderProps, MenuIcon, MenuItem, MenuItemProps, MenuOverlay, MenuOverlayProps, MenuProps, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, MobileAppIcon, Modal, ModalBody, ModalBodyProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps, ModalProps, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreIcon, MoreVerticalIcon, Morph, MorphProps, Move, MoveIcon, MoveProps, MusicIcon, MyAccountIcon, NavigationIcon, NoSignalIcon, OTPInput, OTPInputCommonProps, OTPInputProps, OctagonIcon, OffersIcon, OptimizerIcon, PackageIcon, PaperclipIcon, PasswordInput, PasswordInputProps, PauseCircleIcon, PauseIcon, PaymentButtonIcon, PaymentButtonsIcon, PaymentGatewayIcon, PaymentLinkIcon, PaymentLinksIcon, PaymentPagesIcon, PayoutLinkIcon, PayrollAddonsIcon, PayrollForCaIcon, PayrollForStartupOrSmeIcon, PercentIcon, PettyCashBudgetIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneNumberInput, PhoneNumberInputProps, PhoneOffIcon, PhoneOutgoingIcon, PictureInPictureIcon, PieChartIcon, PinIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, Popover, PopoverInteractiveWrapper, PopoverProps, PopoverTriggerProps, PosIcon, PowerIcon, Preview, PreviewBody, PreviewBodyProps, PreviewFooter, PreviewFooterProps, PreviewHeader, PreviewHeaderProps, PreviewProps, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, PromptIcon, QRCodeIcon, QuickFilter, QuickFilterGroup, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RayIcon, RazorpayIcon, RazorpayXIcon, RazorpayxPayrollIcon, RefreshIcon, RepeatIcon, ReportsIcon, ResizerIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RouteIcon, RoutesIcon, RupeeIcon, RupeesIcon, SIDE_NAV_EXPANDED_L1_WIDTH_BASE, SIDE_NAV_EXPANDED_L1_WIDTH_XL, SaasIcon, SaveIcon, Scale, ScaleProps, ScissorsIcon, SearchIcon, SearchInput, SearchInputProps, SelectInput, SelectInputProps, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingBagIcon, ShoppingCartIcon, ShuffleIcon, SideNav, SideNavBody, SideNavFooter, SideNavFooterProps, SideNavItem, SideNavItemProps, SideNavLevel, SideNavLink, SideNavLinkProps, SideNavProps, SideNavSection, SideNavSectionProps, SidebarIcon, Signal1BarIcon, Signal2BarIcon, Signal3BarIcon, Signal4BarIcon, SignalIcon, SimCardIcon, Skeleton, SkeletonProps, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, Slide, SlideProps, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SolutionsIcon, SortIcon, SourceToPayIcon, SparklesIcon, SpeakerIcon, Spinner, SpinnerProps, SpotlightPopoverStepRenderProps, SpotlightPopoverTour, SpotlightPopoverTourFooter, SpotlightPopoverTourProps, SpotlightPopoverTourStep, SpotlightPopoverTourSteps, SquareIcon, Stagger, StaggerProps, StampIcon, StarIcon, StepGroup, StepGroupProps, StepItem, StepItemIcon, StepItemIndicator, StepItemProps, StopCircleIcon, StorefrontIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabItem, TabItemProps, TabList, TabNav, TabNavItem, TabNavItemData, TabNavItemProps, TabNavItems, TabNavProps, TabPanel, TabPanelProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableData, TableEditableCell, TableEditableCellProps, TableEditableDropdownCell, TableEditableDropdownCellProps, TableFooter, TableFooterCell, TableFooterCellProps, TableFooterProps, TableFooterRow, TableFooterRowProps, TableHeader, TableHeaderCell, TableHeaderCellProps, TableHeaderProps, TableHeaderRow, TableHeaderRowProps, TableNode, TablePagination, TablePaginationProps, TableProps, TableRow, TableRowProps, TableToolbar, TableToolbarActions, TableToolbarActionsProps, TableToolbarProps, TabletIcon, Tabs, TabsProps, Tag, TagIcon, TagProps, TargetIcon, TaxPaymentsIcon, TestIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, TicketIcon, TitleCollectionProps, ToastContainer, ToastProps, ToggleLeftIcon, ToggleRightIcon, TokenHqIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, TopLeftRoundedCornerIcon, TopLeftSharpCornerIcon, TopNav, TopNavActions, TopNavBrand, TopNavContent, TopNavProps, TrademarkIcon, TrademarkRegisteredIcon, TransactionsIcon, TranslateIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TrustedBadgeIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UpiAutopayIcon, UpiIcon, UploadCloudIcon, UploadIcon, UseToastReturn, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VendorPaymentsIcon, VideoIcon, VideoOffIcon, ViewLiveDemoIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, WalletIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, WorldwideIcon, XCircleIcon, XSquareIcon, YoutubeIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, drawerPadding, getHeadingProps, getTextProps, screenReaderStyles, useTheme, useToast };
|
|
29381
|
+
export { AcceptPaymentsIcon, Accordion, AccordionItem, AccordionItemBody, AccordionItemHeader, AccordionItemProps, AccordionProps, ActionList, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemAvatar, ActionListItemBadge, ActionListItemBadgeGroup, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, ActionListSectionProps, ActionListSectionTitle, ActivityIcon, AddressBookIcon, AffordabilityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AndroidIcon, AnimateInteractions, AnimateInteractionsProps, AnnouncementIcon, ApertureIcon, AppStoreIcon, AppleIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowSquareDownIcon, ArrowSquareDownLeftIcon, ArrowSquareDownRightIcon, ArrowSquareLeftIcon, ArrowSquareRightIcon, ArrowSquareUpIcon, ArrowSquareUpLeftIcon, ArrowSquareUpRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, AttachmentIcon, AutoComplete, AutoCompleteProps, AutomateAccountingIcon, AutomatePayrollIcon, Avatar, AvatarGroup, AvatarGroupProps, AvatarProps, AwardIcon, Badge, BadgeProps, BankAccountVerificationIcon, BankIcon, BarChartAltIcon, BarChartIcon, BarCodeIcon, Battery100PercentIcon, Battery20PercentIcon, Battery40PercentIcon, Battery60PercentIcon, Battery80PercentIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BfsiIcon, BillIcon, BillMeIcon, BladeCommonEvents, BladeFile, BladeFileList, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomNav, BottomNavItem, BottomNavItemProps, BottomNavProps, BottomSheet, BottomSheetBody, BottomSheetBodyProps, BottomSheetFooter, BottomSheetFooterProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetProps, Box, BoxIcon, BoxProps, BoxRefType, Breadcrumb, BreadcrumbItem, BreadcrumbItemProps, BreadcrumbProps, BriefcaseIcon, BugIcon, BuildingIcon, BulkPayoutsIcon, BusinessBankingIcon, BusinessSpendManagementIcon, Button, ButtonGroup, ButtonGroupProps, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderAmount, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, Carousel, CarouselItem, CarouselProps, CashIcon, CastIcon, ChatMessage, ChatMessageProps, CheckCircle2Icon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpDownIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, Chip, ChipGroup, ChipGroupProps, ChipProps, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, ClosedCaptioningIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodeSnippetIcon, CodepenIcon, CoinIcon, CoinsIcon, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CommandIcon, CompanyRegistrationIcon, CompassIcon, ComponentIds, ConfettiIcon, ContactlessPaymentIcon, CookieIcon, CopyIcon, CopyrightIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CreditsAndLoansIcon, CropIcon, CrosshairIcon, CurrentAccountIcon, CustomersIcon, CutIcon, DashboardIcon, DatePicker, DatePickerProps, DeleteIcon, DigitalLendingIcon, DisbursePaymentsIcon, DiscIcon, Display, DisplayProps, Divider, DividerProps, DollarIcon, DollarsIcon, DotIcon, DownloadCloudIcon, DownloadIcon, DragHandleIcon, Drawer, DrawerBody, DrawerHeader, DrawerHeaderProps, DrawerProps, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, DropdownIconButton, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EcommerceIcon, EditComposeIcon, EditIcon, EditInlineIcon, EducationIcon, Elevate, ElevateProps, EmptyState, EmptyStateProps, EngageIcon, EqualsIcon, EscrowAccountIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, Fade, FadeProps, FastForwardIcon, FeatherIcon, FigmaIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FileUpload, FileUploadProps, FileZipIcon, FilmIcon, FilterChipDatePicker, FilterChipGroup, FilterChipGroupContextType, FilterChipGroupProps, FilterChipSelectInput, FilterIcon, FlagIcon, FlaskIcon, FolderIcon, ForexManagementIcon, FreelanceIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphoneIcon, HeadphonesIcon, HeadsetIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconColors, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, IndiaFlagIcon, Indicator, IndicatorProps, InfoGroup, InfoGroupProps, InfoIcon, InfoItem, InfoItemKey, InfoItemKeyProps, InfoItemProps, InfoItemValue, InfoItemValueProps, InputDropdownButton, InputGroup, InputGroupProps, InputRow, InputRowProps, InstagramIcon, InstantSettlementIcon, InternationalPaymentsIcon, InvoicesIcon, ItalicIcon, KeyIcon, KeyboardIcon, LayersIcon, LayoutIcon, LeftCircularCornerIcon, LifeBuoyIcon, Link, LinkButtonVariantProps, LinkIcon, LinkProps, List, ListIcon, ListItem, ListItemCode, ListItemCodeProps, ListItemLink, ListItemLinkProps, ListItemProps, ListItemText, ListItemTextProps, ListProps, ListSearchIcon, ListView, ListViewFilters, LoaderIcon, LoansForBusinessesIcon, LockIcon, LogInIcon, LogOutIcon, MagicCheckoutIcon, MagicKonnectIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, Menu, MenuDivider, MenuDotsIcon, MenuFooter, MenuFooterProps, MenuHeader, MenuHeaderProps, MenuIcon, MenuItem, MenuItemProps, MenuOverlay, MenuOverlayProps, MenuProps, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, MobileAppIcon, Modal, ModalBody, ModalBodyProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps, ModalProps, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreIcon, MoreVerticalIcon, Morph, MorphProps, Move, MoveIcon, MoveProps, MusicIcon, MyAccountIcon, NavigationIcon, NoSignalIcon, OTPInput, OTPInputCommonProps, OTPInputProps, OctagonIcon, OffersIcon, OptimizerIcon, PackageIcon, PaperclipIcon, PasswordInput, PasswordInputProps, PauseCircleIcon, PauseIcon, PaymentButtonIcon, PaymentButtonsIcon, PaymentGatewayIcon, PaymentLinkIcon, PaymentLinksIcon, PaymentPagesIcon, PayoutLinkIcon, PayrollAddonsIcon, PayrollForCaIcon, PayrollForStartupOrSmeIcon, PercentIcon, PettyCashBudgetIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneNumberInput, PhoneNumberInputProps, PhoneOffIcon, PhoneOutgoingIcon, PictureInPictureIcon, PieChartIcon, PinIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, Popover, PopoverInteractiveWrapper, PopoverProps, PopoverTriggerProps, PosIcon, PowerIcon, Preview, PreviewBody, PreviewBodyProps, PreviewFooter, PreviewFooterProps, PreviewHeader, PreviewHeaderProps, PreviewProps, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, PromptIcon, QRCodeIcon, QuickFilter, QuickFilterGroup, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RayIcon, RazorpayIcon, RazorpayXIcon, RazorpayxPayrollIcon, RefreshIcon, RepeatIcon, ReportsIcon, ResizerIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RouteIcon, RoutesIcon, RupeeIcon, RupeesIcon, SIDE_NAV_EXPANDED_L1_WIDTH_BASE, SIDE_NAV_EXPANDED_L1_WIDTH_XL, SaasIcon, SaveIcon, Scale, ScaleProps, ScissorsIcon, SearchIcon, SearchInput, SearchInputProps, SelectInput, SelectInputProps, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingBagIcon, ShoppingCartIcon, ShuffleIcon, SideNav, SideNavBody, SideNavFooter, SideNavFooterProps, SideNavItem, SideNavItemProps, SideNavLevel, SideNavLink, SideNavLinkProps, SideNavProps, SideNavSection, SideNavSectionProps, SidebarIcon, Signal1BarIcon, Signal2BarIcon, Signal3BarIcon, Signal4BarIcon, SignalIcon, SimCardIcon, Skeleton, SkeletonProps, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, Slide, SlideProps, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SolutionsIcon, SortIcon, SourceToPayIcon, SparklesIcon, SpeakerIcon, Spinner, SpinnerProps, SpotlightPopoverStepRenderProps, SpotlightPopoverTour, SpotlightPopoverTourFooter, SpotlightPopoverTourProps, SpotlightPopoverTourStep, SpotlightPopoverTourSteps, SquareIcon, Stagger, StaggerProps, StampIcon, StarIcon, StepGroup, StepGroupProps, StepItem, StepItemIcon, StepItemIndicator, StepItemProps, StopCircleIcon, StorefrontIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabItem, TabItemProps, TabList, TabNav, TabNavItem, TabNavItemData, TabNavItemProps, TabNavItems, TabNavProps, TabPanel, TabPanelProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableData, TableEditableCell, TableEditableCellProps, TableEditableDropdownCell, TableEditableDropdownCellProps, TableFooter, TableFooterCell, TableFooterCellProps, TableFooterProps, TableFooterRow, TableFooterRowProps, TableHeader, TableHeaderCell, TableHeaderCellProps, TableHeaderProps, TableHeaderRow, TableHeaderRowProps, TableNode, TablePagination, TablePaginationProps, TableProps, TableRow, TableRowProps, TableToolbar, TableToolbarActions, TableToolbarActionsProps, TableToolbarProps, TabletIcon, Tabs, TabsProps, Tag, TagIcon, TagProps, TargetIcon, TaxPaymentsIcon, TestIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, TicketIcon, TitleCollectionProps, ToastContainer, ToastProps, ToggleLeftIcon, ToggleRightIcon, TokenHqIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, TopLeftRoundedCornerIcon, TopLeftSharpCornerIcon, TopNav, TopNavActions, TopNavBrand, TopNavContent, TopNavProps, TrademarkIcon, TrademarkRegisteredIcon, TransactionsIcon, TranslateIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TrustedBadgeIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UpiAutopayIcon, UpiIcon, UploadCloudIcon, UploadIcon, UseToastReturn, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VendorPaymentsIcon, VideoIcon, VideoOffIcon, ViewLiveDemoIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, WalletIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, WorldwideIcon, XCircleIcon, XSquareIcon, YoutubeIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, drawerPadding, getHeadingProps, getTextProps, screenReaderStyles, useTheme, useToast };
|