@rocket.chat/fuselage 0.6.3-dev.358 → 0.6.3-dev.361
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Menu/index.d.ts +1 -1
- package/dist/components/Message/Message.d.ts +124 -125
- package/dist/components/Message/Message.d.ts.map +1 -1
- package/dist/components/Options/Option/Option.d.ts +18 -0
- package/dist/components/Options/Option/Option.d.ts.map +1 -0
- package/dist/components/Options/Option/OptionAvatar.d.ts +4 -0
- package/dist/components/Options/Option/OptionAvatar.d.ts.map +1 -0
- package/dist/components/Options/Option/OptionColumn.d.ts +4 -0
- package/dist/components/Options/Option/OptionColumn.d.ts.map +1 -0
- package/dist/components/Options/Option/OptionContent.d.ts +4 -0
- package/dist/components/Options/Option/OptionContent.d.ts.map +1 -0
- package/dist/components/Options/Option/OptionDescription.d.ts +4 -0
- package/dist/components/Options/Option/OptionDescription.d.ts.map +1 -0
- package/dist/components/Options/Option/OptionIcon.d.ts +7 -0
- package/dist/components/Options/Option/OptionIcon.d.ts.map +1 -0
- package/dist/components/Options/Option/OptionMenu.d.ts +4 -0
- package/dist/components/Options/Option/OptionMenu.d.ts.map +1 -0
- package/dist/components/Options/Option/OptionSkeleton.d.ts +3 -0
- package/dist/components/Options/Option/OptionSkeleton.d.ts.map +1 -0
- package/dist/components/Options/Option/index.d.ts +278 -27
- package/dist/components/Options/Option/index.d.ts.map +1 -1
- package/dist/components/States/States.d.ts +5 -0
- package/dist/components/States/States.d.ts.map +1 -0
- package/dist/components/States/StatesAction.d.ts +5 -0
- package/dist/components/States/StatesAction.d.ts.map +1 -0
- package/dist/components/States/StatesActions.d.ts +5 -0
- package/dist/components/States/StatesActions.d.ts.map +1 -0
- package/dist/components/States/StatesIcon.d.ts +7 -0
- package/dist/components/States/StatesIcon.d.ts.map +1 -0
- package/dist/components/States/StatesSubtitle.d.ts +4 -0
- package/dist/components/States/StatesSubtitle.d.ts.map +1 -0
- package/dist/components/States/StatesSuggestion.d.ts +4 -0
- package/dist/components/States/StatesSuggestion.d.ts.map +1 -0
- package/dist/components/States/StatesSuggestionList.d.ts +4 -0
- package/dist/components/States/StatesSuggestionList.d.ts.map +1 -0
- package/dist/components/States/StatesSuggestionListItem.d.ts +4 -0
- package/dist/components/States/StatesSuggestionListItem.d.ts.map +1 -0
- package/dist/components/States/StatesSuggestionText.d.ts +4 -0
- package/dist/components/States/StatesSuggestionText.d.ts.map +1 -0
- package/dist/components/States/StatesTitle.d.ts +4 -0
- package/dist/components/States/StatesTitle.d.ts.map +1 -0
- package/dist/components/States/index.d.ts +12 -0
- package/dist/components/States/index.d.ts.map +1 -0
- package/dist/components/index.d.ts +2 -1
- package/dist/components/index.d.ts.map +1 -1
- package/dist/fuselage.development.js +833 -199
- package/dist/fuselage.development.js.map +1 -1
- package/dist/fuselage.production.js +1 -1
- package/package.json +11 -11
|
@@ -3,7 +3,7 @@ import { ComponentProps, ForwardRefExoticComponent, ReactNode } from 'react';
|
|
|
3
3
|
|
|
4
4
|
import { Box } from '../Box';
|
|
5
5
|
import { ActionButton } from '../Button';
|
|
6
|
-
import
|
|
6
|
+
import Option from '../Options/Option';
|
|
7
7
|
|
|
8
8
|
type MenuProps = Omit<ComponentProps<typeof ActionButton>, 'icon'> & {
|
|
9
9
|
icon?: string;
|
|
@@ -843,7 +843,7 @@ declare const _default: React.ForwardRefExoticComponent<React.AllHTMLAttributes<
|
|
|
843
843
|
renderItem?: ((props: {
|
|
844
844
|
is?: (React.ElementType<any> & string) | undefined;
|
|
845
845
|
id?: string | undefined;
|
|
846
|
-
children
|
|
846
|
+
children?: React.ReactNode;
|
|
847
847
|
label?: string | undefined;
|
|
848
848
|
focus?: boolean | undefined;
|
|
849
849
|
selected?: boolean | undefined;
|
|
@@ -852,130 +852,129 @@ declare const _default: React.ForwardRefExoticComponent<React.AllHTMLAttributes<
|
|
|
852
852
|
icon?: string | undefined;
|
|
853
853
|
avatar?: React.ReactNode;
|
|
854
854
|
title?: string | undefined;
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
}) => React.ReactNode) | undefined;
|
|
855
|
+
} & Pick<{
|
|
856
|
+
is?: React.ElementType<any> | undefined;
|
|
857
|
+
className?: string | (<T extends readonly unknown[]>(...args: T) => string) | (string | (<T extends readonly unknown[]>(...args: T) => string))[] | undefined;
|
|
858
|
+
style?: React.CSSProperties | undefined;
|
|
859
|
+
border?: import("csstype").Property.Border<string | number> | undefined;
|
|
860
|
+
borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
|
|
861
|
+
borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
|
|
862
|
+
borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
|
|
863
|
+
borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
|
|
864
|
+
borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
|
|
865
|
+
borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
|
|
866
|
+
borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
|
|
867
|
+
borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
|
|
868
|
+
borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
|
|
869
|
+
borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
|
|
870
|
+
borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
|
|
871
|
+
borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
|
|
872
|
+
borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
|
|
873
|
+
borderStyle?: import("csstype").Property.BorderStyle | undefined;
|
|
874
|
+
borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
|
|
875
|
+
borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
|
|
876
|
+
borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
|
|
877
|
+
borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
|
|
878
|
+
borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
|
|
879
|
+
borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
880
|
+
borderColor?: import("csstype").Property.BorderColor | undefined;
|
|
881
|
+
borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
|
|
882
|
+
borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
|
|
883
|
+
borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
|
|
884
|
+
borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
|
|
885
|
+
borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
|
|
886
|
+
borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
887
|
+
borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
888
|
+
borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
|
|
889
|
+
borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
|
|
890
|
+
borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
|
|
891
|
+
borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
|
|
892
|
+
color?: import("csstype").Property.Color | undefined;
|
|
893
|
+
backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
|
|
894
|
+
bg?: import("csstype").Property.BackgroundColor | undefined;
|
|
895
|
+
opacity?: import("csstype").Property.Opacity | undefined;
|
|
896
|
+
alignItems?: import("csstype").Property.AlignItems | undefined;
|
|
897
|
+
alignContent?: import("csstype").Property.AlignContent | undefined;
|
|
898
|
+
justifyItems?: import("csstype").Property.JustifyItems | undefined;
|
|
899
|
+
justifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
900
|
+
flexWrap?: import("csstype").Property.FlexWrap | undefined;
|
|
901
|
+
flexDirection?: import("csstype").Property.FlexDirection | undefined;
|
|
902
|
+
flexGrow?: import("csstype").Property.FlexGrow | undefined;
|
|
903
|
+
flexShrink?: import("csstype").Property.FlexShrink | undefined;
|
|
904
|
+
flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
|
|
905
|
+
justifySelf?: import("csstype").Property.JustifySelf | undefined;
|
|
906
|
+
alignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
907
|
+
order?: import("csstype").Property.Order | undefined;
|
|
908
|
+
w?: import("csstype").Property.Width<string | number> | undefined;
|
|
909
|
+
width?: import("csstype").Property.Width<string | number> | undefined;
|
|
910
|
+
minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
|
|
911
|
+
maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
|
|
912
|
+
h?: import("csstype").Property.Height<string | number> | undefined;
|
|
913
|
+
height?: import("csstype").Property.Height<string | number> | undefined;
|
|
914
|
+
minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
|
|
915
|
+
maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
|
|
916
|
+
display?: import("csstype").Property.Display | undefined;
|
|
917
|
+
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
918
|
+
overflow?: import("csstype").Property.Overflow | undefined;
|
|
919
|
+
overflowX?: import("csstype").Property.OverflowX | undefined;
|
|
920
|
+
overflowY?: import("csstype").Property.OverflowY | undefined;
|
|
921
|
+
position?: import("csstype").Property.Position | undefined;
|
|
922
|
+
zIndex?: import("csstype").Property.ZIndex | undefined;
|
|
923
|
+
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
924
|
+
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
925
|
+
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
926
|
+
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
927
|
+
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
928
|
+
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
929
|
+
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
930
|
+
m?: import("csstype").Property.Margin<string | number> | undefined;
|
|
931
|
+
margin?: import("csstype").Property.Margin<string | number> | undefined;
|
|
932
|
+
mb?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
933
|
+
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
934
|
+
mbs?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
|
|
935
|
+
marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
|
|
936
|
+
mbe?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
|
|
937
|
+
marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
|
|
938
|
+
mi?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
939
|
+
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
940
|
+
mis?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
941
|
+
marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
942
|
+
mie?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
943
|
+
marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
944
|
+
p?: import("csstype").Property.Padding<string | number> | undefined;
|
|
945
|
+
padding?: import("csstype").Property.Padding<string | number> | undefined;
|
|
946
|
+
pb?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
947
|
+
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
948
|
+
pbs?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
|
|
949
|
+
paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
|
|
950
|
+
pbe?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
|
|
951
|
+
paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
|
|
952
|
+
pi?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
953
|
+
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
954
|
+
pis?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
955
|
+
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
956
|
+
pie?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
957
|
+
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
958
|
+
fontFamily?: import("csstype").Property.FontFamily | ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | undefined;
|
|
959
|
+
fontSize?: string | number | (string & {}) | undefined;
|
|
960
|
+
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
961
|
+
fontWeight?: ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | import("csstype").Property.FontWeight | undefined;
|
|
962
|
+
letterSpacing?: string | number | undefined;
|
|
963
|
+
lineHeight?: string | number | (string & {}) | (number & {}) | undefined;
|
|
964
|
+
textAlign?: import("csstype").Property.TextAlign | undefined;
|
|
965
|
+
textTransform?: import("csstype").Property.TextTransform | undefined;
|
|
966
|
+
textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
967
|
+
elevation?: "0" | "1" | "2" | undefined;
|
|
968
|
+
invisible?: boolean | undefined;
|
|
969
|
+
withRichContent?: string | boolean | undefined;
|
|
970
|
+
withTruncatedText?: boolean | undefined;
|
|
971
|
+
size?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
972
|
+
minSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
973
|
+
maxSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
974
|
+
fontScale?: ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | undefined;
|
|
975
|
+
} & {
|
|
976
|
+
children?: React.ReactNode;
|
|
977
|
+
} & Omit<React.AllHTMLAttributes<HTMLOrSVGElement>, "className"> & Omit<React.SVGAttributes<SVGElement>, keyof React.AllHTMLAttributes<HTMLOrSVGElement>> & React.RefAttributes<unknown>, "onClick">) => React.ReactNode) | undefined;
|
|
979
978
|
}>;
|
|
980
979
|
};
|
|
981
980
|
Container: React.FC<{}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Message.d.ts","sourceRoot":"","sources":["../../../src/components/Message/Message.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EACZ,iBAAiB,EACjB,EAAE,EAEF,YAAY,EACZ,SAAS,EACV,MAAM,OAAO,CAAC;AAEf,OAAO,wBAAwB,CAAC;AAQhC,eAAO,MAAM,gBAAgB,EAAE,EAI9B,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,EAOnC,CAAC;AAEF,aAAK,yBAAyB,GAAG;IAC/B,QAAQ,CAAC,EAAE,SAAS,CAAC;CACtB,CAAC;AAEF,eAAO,MAAM,oBAAoB,UACxB,yBAAyB,KAC/B,YAKF,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,EAQ3B,CAAC;AAEF,aAAK,gBAAgB,GAAG,iBAAiB,CAAC,cAAc,CAAC,GAAG;IAC1D,KAAK,CAAC,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;CACnB,CAAC;AAEF,eAAO,MAAM,WAAW,mCAIrB,gBAAgB,KAAG,YAerB,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,EAAE,CAAC;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,CAenD,CAAC;AAOF,eAAO,MAAM,OAAO;;;wCA4BnB,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,EAAE,CAAC;IAAE,QAAQ,EAAE,MAAM,CAAA;CAAE,CAQnD,CAAC;AAEJ,eAAO,MAAM,WAAW,EAAE,EAAE,CAAC;IAAE,QAAQ,EAAE,MAAM,CAAA;CAAE,CAShD,CAAC;AACF,eAAO,MAAM,eAAe,EAAE,EAAE,CAAC;IAAE,QAAQ,EAAE,MAAM,CAAA;CAAE,CAQlD,CAAC;AAEJ,eAAO,MAAM,WAAW,EAAE,EAAE,CAAC;IAAE,QAAQ,EAAE,MAAM,CAAA;CAAE,CAYhD,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,EAO1B,CAAC
|
|
1
|
+
{"version":3,"file":"Message.d.ts","sourceRoot":"","sources":["../../../src/components/Message/Message.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EACZ,iBAAiB,EACjB,EAAE,EAEF,YAAY,EACZ,SAAS,EACV,MAAM,OAAO,CAAC;AAEf,OAAO,wBAAwB,CAAC;AAQhC,eAAO,MAAM,gBAAgB,EAAE,EAI9B,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,EAOnC,CAAC;AAEF,aAAK,yBAAyB,GAAG;IAC/B,QAAQ,CAAC,EAAE,SAAS,CAAC;CACtB,CAAC;AAEF,eAAO,MAAM,oBAAoB,UACxB,yBAAyB,KAC/B,YAKF,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,EAQ3B,CAAC;AAEF,aAAK,gBAAgB,GAAG,iBAAiB,CAAC,cAAc,CAAC,GAAG;IAC1D,KAAK,CAAC,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;CACnB,CAAC;AAEF,eAAO,MAAM,WAAW,mCAIrB,gBAAgB,KAAG,YAerB,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,EAAE,CAAC;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,CAenD,CAAC;AAOF,eAAO,MAAM,OAAO;;;wCA4BnB,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,EAAE,CAAC;IAAE,QAAQ,EAAE,MAAM,CAAA;CAAE,CAQnD,CAAC;AAEJ,eAAO,MAAM,WAAW,EAAE,EAAE,CAAC;IAAE,QAAQ,EAAE,MAAM,CAAA;CAAE,CAShD,CAAC;AACF,eAAO,MAAM,eAAe,EAAE,EAAE,CAAC;IAAE,QAAQ,EAAE,MAAM,CAAA;CAAE,CAQlD,CAAC;AAEJ,eAAO,MAAM,WAAW,EAAE,EAAE,CAAC;IAAE,QAAQ,EAAE,MAAM,CAAA;CAAE,CAYhD,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,EAO1B,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEF,wBAeG"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React, { Ref, ComponentProps, ReactNode } from 'react';
|
|
2
|
+
import { Box } from '../../Box';
|
|
3
|
+
declare type OptionProps = {
|
|
4
|
+
is?: ComponentProps<typeof Box>['is'];
|
|
5
|
+
id?: string;
|
|
6
|
+
children?: ReactNode;
|
|
7
|
+
label?: string;
|
|
8
|
+
focus?: boolean;
|
|
9
|
+
selected?: boolean;
|
|
10
|
+
className?: ComponentProps<typeof Box>['className'];
|
|
11
|
+
ref?: Ref<Element>;
|
|
12
|
+
icon?: string;
|
|
13
|
+
avatar?: ReactNode;
|
|
14
|
+
title?: string;
|
|
15
|
+
} & Pick<ComponentProps<typeof Box>, 'onClick'>;
|
|
16
|
+
declare const Option: React.MemoExoticComponent<({ is: Tag, id, children, label, focus, selected, className, ref, icon, avatar, title, onClick, ...options }: OptionProps) => JSX.Element>;
|
|
17
|
+
export default Option;
|
|
18
|
+
//# sourceMappingURL=Option.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Option.d.ts","sourceRoot":"","sources":["../../../../src/components/Options/Option/Option.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,GAAG,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAE9D,OAAO,EAAE,GAAG,EAAE,MAAM,WAAW,CAAC;AAKhC,aAAK,WAAW,GAAG;IACjB,EAAE,CAAC,EAAE,cAAc,CAAC,OAAO,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC;IACtC,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,cAAc,CAAC,OAAO,GAAG,CAAC,CAAC,WAAW,CAAC,CAAC;IACpD,GAAG,CAAC,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC;IACnB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,SAAS,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,GAAG,IAAI,CAAC,cAAc,CAAC,OAAO,GAAG,CAAC,EAAE,SAAS,CAAC,CAAC;AAEhD,QAAA,MAAM,MAAM,0IAeP,WAAW,iBA0Bf,CAAC;AAEF,eAAe,MAAM,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OptionAvatar.d.ts","sourceRoot":"","sources":["../../../../src/components/Options/Option/OptionAvatar.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAElC,QAAA,MAAM,YAAY,EAAE,EAEnB,CAAC;AAEF,eAAe,YAAY,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OptionColumn.d.ts","sourceRoot":"","sources":["../../../../src/components/Options/Option/OptionColumn.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAElC,QAAA,MAAM,YAAY,EAAE,EAEnB,CAAC;AAEF,eAAe,YAAY,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OptionContent.d.ts","sourceRoot":"","sources":["../../../../src/components/Options/Option/OptionContent.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAElC,QAAA,MAAM,aAAa,EAAE,EAEpB,CAAC;AAEF,eAAe,aAAa,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OptionDescription.d.ts","sourceRoot":"","sources":["../../../../src/components/Options/Option/OptionDescription.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAElC,QAAA,MAAM,iBAAiB,EAAE,EAExB,CAAC;AAEF,eAAe,iBAAiB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OptionIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/Options/Option/OptionIcon.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AAE9C,OAAO,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;AAGlC,QAAA,MAAM,UAAU;UAGR,eAAe,WAAW,CAAC,CAAC,MAAM,CAAC;iBAK1C,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OptionMenu.d.ts","sourceRoot":"","sources":["../../../../src/components/Options/Option/OptionMenu.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAElC,QAAA,MAAM,UAAU,EAAE,EAEjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OptionSkeleton.d.ts","sourceRoot":"","sources":["../../../../src/components/Options/Option/OptionSkeleton.tsx"],"names":[],"mappings":"AAOA,QAAA,MAAM,cAAc,mBASnB,CAAC;AAEF,eAAe,cAAc,CAAC"}
|