stream-chat-react-native-core 5.15.3-beta.4 → 5.15.3-beta.5
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/lib/commonjs/components/ChannelPreview/ChannelPreviewUnreadCount.js +20 -19
- package/lib/commonjs/components/ChannelPreview/ChannelPreviewUnreadCount.js.map +1 -1
- package/lib/commonjs/version.json +1 -1
- package/lib/module/components/ChannelPreview/ChannelPreviewUnreadCount.js +20 -19
- package/lib/module/components/ChannelPreview/ChannelPreviewUnreadCount.js.map +1 -1
- package/lib/module/version.json +1 -1
- package/lib/typescript/components/ChannelPreview/ChannelPreviewUnreadCount.d.ts +1 -1
- package/package.json +1 -1
- package/src/components/ChannelPreview/ChannelPreviewUnreadCount.tsx +21 -21
- package/src/version.json +1 -1
|
@@ -8,21 +8,6 @@ var _reactNative = require("react-native");
|
|
|
8
8
|
var _ThemeContext = require("../../contexts/themeContext/ThemeContext");
|
|
9
9
|
var _this = this,
|
|
10
10
|
_jsxFileName = "/home/runner/work/stream-chat-react-native/stream-chat-react-native/package/src/components/ChannelPreview/ChannelPreviewUnreadCount.tsx";
|
|
11
|
-
var styles = _reactNative.StyleSheet.create({
|
|
12
|
-
unreadContainer: {
|
|
13
|
-
alignItems: 'center',
|
|
14
|
-
borderRadius: 8,
|
|
15
|
-
flexShrink: 1,
|
|
16
|
-
justifyContent: 'center'
|
|
17
|
-
},
|
|
18
|
-
unreadText: {
|
|
19
|
-
color: '#FFFFFF',
|
|
20
|
-
fontSize: 11,
|
|
21
|
-
fontWeight: '700',
|
|
22
|
-
paddingHorizontal: 5,
|
|
23
|
-
paddingVertical: 1
|
|
24
|
-
}
|
|
25
|
-
});
|
|
26
11
|
var ChannelPreviewUnreadCount = function ChannelPreviewUnreadCount(props) {
|
|
27
12
|
var maxUnreadCount = props.maxUnreadCount,
|
|
28
13
|
unread = props.unread;
|
|
@@ -32,6 +17,7 @@ var ChannelPreviewUnreadCount = function ChannelPreviewUnreadCount(props) {
|
|
|
32
17
|
unreadContainer = _useTheme$theme$chann.unreadContainer,
|
|
33
18
|
unreadText = _useTheme$theme$chann.unreadText,
|
|
34
19
|
accent_red = _useTheme$theme.colors.accent_red;
|
|
20
|
+
if (!unread) return null;
|
|
35
21
|
return _react["default"].createElement(_reactNative.View, {
|
|
36
22
|
style: [styles.unreadContainer, {
|
|
37
23
|
backgroundColor: accent_red
|
|
@@ -39,19 +25,34 @@ var ChannelPreviewUnreadCount = function ChannelPreviewUnreadCount(props) {
|
|
|
39
25
|
__self: _this,
|
|
40
26
|
__source: {
|
|
41
27
|
fileName: _jsxFileName,
|
|
42
|
-
lineNumber:
|
|
28
|
+
lineNumber: 33,
|
|
43
29
|
columnNumber: 5
|
|
44
30
|
}
|
|
45
|
-
},
|
|
31
|
+
}, _react["default"].createElement(_reactNative.Text, {
|
|
46
32
|
numberOfLines: 1,
|
|
47
33
|
style: [styles.unreadText, unreadText],
|
|
48
34
|
__self: _this,
|
|
49
35
|
__source: {
|
|
50
36
|
fileName: _jsxFileName,
|
|
51
|
-
lineNumber:
|
|
52
|
-
columnNumber:
|
|
37
|
+
lineNumber: 34,
|
|
38
|
+
columnNumber: 7
|
|
53
39
|
}
|
|
54
40
|
}, unread > maxUnreadCount ? maxUnreadCount + "+" : unread));
|
|
55
41
|
};
|
|
56
42
|
exports.ChannelPreviewUnreadCount = ChannelPreviewUnreadCount;
|
|
43
|
+
var styles = _reactNative.StyleSheet.create({
|
|
44
|
+
unreadContainer: {
|
|
45
|
+
alignItems: 'center',
|
|
46
|
+
borderRadius: 8,
|
|
47
|
+
flexShrink: 1,
|
|
48
|
+
justifyContent: 'center'
|
|
49
|
+
},
|
|
50
|
+
unreadText: {
|
|
51
|
+
color: '#FFFFFF',
|
|
52
|
+
fontSize: 11,
|
|
53
|
+
fontWeight: '700',
|
|
54
|
+
paddingHorizontal: 5,
|
|
55
|
+
paddingVertical: 1
|
|
56
|
+
}
|
|
57
|
+
});
|
|
57
58
|
//# sourceMappingURL=ChannelPreviewUnreadCount.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_ThemeContext","_this","_jsxFileName","
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_ThemeContext","_this","_jsxFileName","ChannelPreviewUnreadCount","props","maxUnreadCount","unread","_useTheme","useTheme","_useTheme$theme","theme","_useTheme$theme$chann","channelPreview","unreadContainer","unreadText","accent_red","colors","createElement","View","style","styles","backgroundColor","__self","__source","fileName","lineNumber","columnNumber","Text","numberOfLines","exports","StyleSheet","create","alignItems","borderRadius","flexShrink","justifyContent","color","fontSize","fontWeight","paddingHorizontal","paddingVertical"],"sources":["ChannelPreviewUnreadCount.tsx"],"sourcesContent":["import React from 'react';\nimport { StyleSheet, Text, View } from 'react-native';\n\nimport type { ChannelPreviewProps } from './ChannelPreview';\n\nimport { useTheme } from '../../contexts/themeContext/ThemeContext';\n\nimport type { DefaultStreamChatGenerics } from '../../types/types';\n\nexport type ChannelPreviewUnreadCountProps<\n StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics,\n> = Pick<ChannelPreviewProps<StreamChatGenerics>, 'channel'> & {\n maxUnreadCount: number;\n unread?: number;\n};\n\nexport const ChannelPreviewUnreadCount = <\n StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics,\n>(\n props: ChannelPreviewUnreadCountProps<StreamChatGenerics>,\n) => {\n const { maxUnreadCount, unread } = props;\n const {\n theme: {\n channelPreview: { unreadContainer, unreadText },\n colors: { accent_red },\n },\n } = useTheme();\n\n if (!unread) return null;\n\n return (\n <View style={[styles.unreadContainer, { backgroundColor: accent_red }, unreadContainer]}>\n <Text numberOfLines={1} style={[styles.unreadText, unreadText]}>\n {unread > maxUnreadCount ? `${maxUnreadCount}+` : unread}\n </Text>\n </View>\n );\n};\n\nconst styles = StyleSheet.create({\n unreadContainer: {\n alignItems: 'center',\n borderRadius: 8,\n flexShrink: 1,\n justifyContent: 'center',\n },\n unreadText: {\n color: '#FFFFFF',\n fontSize: 11,\n fontWeight: '700',\n paddingHorizontal: 5,\n paddingVertical: 1,\n },\n});\n"],"mappings":";;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AAIA,IAAAE,aAAA,GAAAF,OAAA;AAAoE,IAAAG,KAAA;EAAAC,YAAA;AAW7D,IAAMC,yBAAyB,GAAG,SAA5BA,yBAAyBA,CAGpCC,KAAyD,EACtD;EACH,IAAQC,cAAc,GAAaD,KAAK,CAAhCC,cAAc;IAAEC,MAAM,GAAKF,KAAK,CAAhBE,MAAM;EAC9B,IAAAC,SAAA,GAKI,IAAAC,sBAAQ,EAAC,CAAC;IAAAC,eAAA,GAAAF,SAAA,CAJZG,KAAK;IAAAC,qBAAA,GAAAF,eAAA,CACHG,cAAc;IAAIC,eAAe,GAAAF,qBAAA,CAAfE,eAAe;IAAEC,UAAU,GAAAH,qBAAA,CAAVG,UAAU;IACnCC,UAAU,GAAAN,eAAA,CAApBO,MAAM,CAAID,UAAU;EAIxB,IAAI,CAACT,MAAM,EAAE,OAAO,IAAI;EAExB,OACEV,MAAA,YAAAqB,aAAA,CAAClB,YAAA,CAAAmB,IAAI;IAACC,KAAK,EAAE,CAACC,MAAM,CAACP,eAAe,EAAE;MAAEQ,eAAe,EAAEN;IAAW,CAAC,EAAEF,eAAe,CAAE;IAAAS,MAAA,EAAArB,KAAA;IAAAsB,QAAA;MAAAC,QAAA,EAAAtB,YAAA;MAAAuB,UAAA;MAAAC,YAAA;IAAA;EAAA,GACtF9B,MAAA,YAAAqB,aAAA,CAAClB,YAAA,CAAA4B,IAAI;IAACC,aAAa,EAAE,CAAE;IAACT,KAAK,EAAE,CAACC,MAAM,CAACN,UAAU,EAAEA,UAAU,CAAE;IAAAQ,MAAA,EAAArB,KAAA;IAAAsB,QAAA;MAAAC,QAAA,EAAAtB,YAAA;MAAAuB,UAAA;MAAAC,YAAA;IAAA;EAAA,GAC5DpB,MAAM,GAAGD,cAAc,GAAMA,cAAc,SAAMC,MAC9C,CACF,CAAC;AAEX,CAAC;AAACuB,OAAA,CAAA1B,yBAAA,GAAAA,yBAAA;AAEF,IAAMiB,MAAM,GAAGU,uBAAU,CAACC,MAAM,CAAC;EAC/BlB,eAAe,EAAE;IACfmB,UAAU,EAAE,QAAQ;IACpBC,YAAY,EAAE,CAAC;IACfC,UAAU,EAAE,CAAC;IACbC,cAAc,EAAE;EAClB,CAAC;EACDrB,UAAU,EAAE;IACVsB,KAAK,EAAE,SAAS;IAChBC,QAAQ,EAAE,EAAE;IACZC,UAAU,EAAE,KAAK;IACjBC,iBAAiB,EAAE,CAAC;IACpBC,eAAe,EAAE;EACnB;AACF,CAAC,CAAC"}
|
|
@@ -8,21 +8,6 @@ var _reactNative = require("react-native");
|
|
|
8
8
|
var _ThemeContext = require("../../contexts/themeContext/ThemeContext");
|
|
9
9
|
var _this = this,
|
|
10
10
|
_jsxFileName = "/home/runner/work/stream-chat-react-native/stream-chat-react-native/package/src/components/ChannelPreview/ChannelPreviewUnreadCount.tsx";
|
|
11
|
-
var styles = _reactNative.StyleSheet.create({
|
|
12
|
-
unreadContainer: {
|
|
13
|
-
alignItems: 'center',
|
|
14
|
-
borderRadius: 8,
|
|
15
|
-
flexShrink: 1,
|
|
16
|
-
justifyContent: 'center'
|
|
17
|
-
},
|
|
18
|
-
unreadText: {
|
|
19
|
-
color: '#FFFFFF',
|
|
20
|
-
fontSize: 11,
|
|
21
|
-
fontWeight: '700',
|
|
22
|
-
paddingHorizontal: 5,
|
|
23
|
-
paddingVertical: 1
|
|
24
|
-
}
|
|
25
|
-
});
|
|
26
11
|
var ChannelPreviewUnreadCount = function ChannelPreviewUnreadCount(props) {
|
|
27
12
|
var maxUnreadCount = props.maxUnreadCount,
|
|
28
13
|
unread = props.unread;
|
|
@@ -32,6 +17,7 @@ var ChannelPreviewUnreadCount = function ChannelPreviewUnreadCount(props) {
|
|
|
32
17
|
unreadContainer = _useTheme$theme$chann.unreadContainer,
|
|
33
18
|
unreadText = _useTheme$theme$chann.unreadText,
|
|
34
19
|
accent_red = _useTheme$theme.colors.accent_red;
|
|
20
|
+
if (!unread) return null;
|
|
35
21
|
return _react["default"].createElement(_reactNative.View, {
|
|
36
22
|
style: [styles.unreadContainer, {
|
|
37
23
|
backgroundColor: accent_red
|
|
@@ -39,19 +25,34 @@ var ChannelPreviewUnreadCount = function ChannelPreviewUnreadCount(props) {
|
|
|
39
25
|
__self: _this,
|
|
40
26
|
__source: {
|
|
41
27
|
fileName: _jsxFileName,
|
|
42
|
-
lineNumber:
|
|
28
|
+
lineNumber: 33,
|
|
43
29
|
columnNumber: 5
|
|
44
30
|
}
|
|
45
|
-
},
|
|
31
|
+
}, _react["default"].createElement(_reactNative.Text, {
|
|
46
32
|
numberOfLines: 1,
|
|
47
33
|
style: [styles.unreadText, unreadText],
|
|
48
34
|
__self: _this,
|
|
49
35
|
__source: {
|
|
50
36
|
fileName: _jsxFileName,
|
|
51
|
-
lineNumber:
|
|
52
|
-
columnNumber:
|
|
37
|
+
lineNumber: 34,
|
|
38
|
+
columnNumber: 7
|
|
53
39
|
}
|
|
54
40
|
}, unread > maxUnreadCount ? maxUnreadCount + "+" : unread));
|
|
55
41
|
};
|
|
56
42
|
exports.ChannelPreviewUnreadCount = ChannelPreviewUnreadCount;
|
|
43
|
+
var styles = _reactNative.StyleSheet.create({
|
|
44
|
+
unreadContainer: {
|
|
45
|
+
alignItems: 'center',
|
|
46
|
+
borderRadius: 8,
|
|
47
|
+
flexShrink: 1,
|
|
48
|
+
justifyContent: 'center'
|
|
49
|
+
},
|
|
50
|
+
unreadText: {
|
|
51
|
+
color: '#FFFFFF',
|
|
52
|
+
fontSize: 11,
|
|
53
|
+
fontWeight: '700',
|
|
54
|
+
paddingHorizontal: 5,
|
|
55
|
+
paddingVertical: 1
|
|
56
|
+
}
|
|
57
|
+
});
|
|
57
58
|
//# sourceMappingURL=ChannelPreviewUnreadCount.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_ThemeContext","_this","_jsxFileName","
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_ThemeContext","_this","_jsxFileName","ChannelPreviewUnreadCount","props","maxUnreadCount","unread","_useTheme","useTheme","_useTheme$theme","theme","_useTheme$theme$chann","channelPreview","unreadContainer","unreadText","accent_red","colors","createElement","View","style","styles","backgroundColor","__self","__source","fileName","lineNumber","columnNumber","Text","numberOfLines","exports","StyleSheet","create","alignItems","borderRadius","flexShrink","justifyContent","color","fontSize","fontWeight","paddingHorizontal","paddingVertical"],"sources":["ChannelPreviewUnreadCount.tsx"],"sourcesContent":["import React from 'react';\nimport { StyleSheet, Text, View } from 'react-native';\n\nimport type { ChannelPreviewProps } from './ChannelPreview';\n\nimport { useTheme } from '../../contexts/themeContext/ThemeContext';\n\nimport type { DefaultStreamChatGenerics } from '../../types/types';\n\nexport type ChannelPreviewUnreadCountProps<\n StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics,\n> = Pick<ChannelPreviewProps<StreamChatGenerics>, 'channel'> & {\n maxUnreadCount: number;\n unread?: number;\n};\n\nexport const ChannelPreviewUnreadCount = <\n StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics,\n>(\n props: ChannelPreviewUnreadCountProps<StreamChatGenerics>,\n) => {\n const { maxUnreadCount, unread } = props;\n const {\n theme: {\n channelPreview: { unreadContainer, unreadText },\n colors: { accent_red },\n },\n } = useTheme();\n\n if (!unread) return null;\n\n return (\n <View style={[styles.unreadContainer, { backgroundColor: accent_red }, unreadContainer]}>\n <Text numberOfLines={1} style={[styles.unreadText, unreadText]}>\n {unread > maxUnreadCount ? `${maxUnreadCount}+` : unread}\n </Text>\n </View>\n );\n};\n\nconst styles = StyleSheet.create({\n unreadContainer: {\n alignItems: 'center',\n borderRadius: 8,\n flexShrink: 1,\n justifyContent: 'center',\n },\n unreadText: {\n color: '#FFFFFF',\n fontSize: 11,\n fontWeight: '700',\n paddingHorizontal: 5,\n paddingVertical: 1,\n },\n});\n"],"mappings":";;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AAIA,IAAAE,aAAA,GAAAF,OAAA;AAAoE,IAAAG,KAAA;EAAAC,YAAA;AAW7D,IAAMC,yBAAyB,GAAG,SAA5BA,yBAAyBA,CAGpCC,KAAyD,EACtD;EACH,IAAQC,cAAc,GAAaD,KAAK,CAAhCC,cAAc;IAAEC,MAAM,GAAKF,KAAK,CAAhBE,MAAM;EAC9B,IAAAC,SAAA,GAKI,IAAAC,sBAAQ,EAAC,CAAC;IAAAC,eAAA,GAAAF,SAAA,CAJZG,KAAK;IAAAC,qBAAA,GAAAF,eAAA,CACHG,cAAc;IAAIC,eAAe,GAAAF,qBAAA,CAAfE,eAAe;IAAEC,UAAU,GAAAH,qBAAA,CAAVG,UAAU;IACnCC,UAAU,GAAAN,eAAA,CAApBO,MAAM,CAAID,UAAU;EAIxB,IAAI,CAACT,MAAM,EAAE,OAAO,IAAI;EAExB,OACEV,MAAA,YAAAqB,aAAA,CAAClB,YAAA,CAAAmB,IAAI;IAACC,KAAK,EAAE,CAACC,MAAM,CAACP,eAAe,EAAE;MAAEQ,eAAe,EAAEN;IAAW,CAAC,EAAEF,eAAe,CAAE;IAAAS,MAAA,EAAArB,KAAA;IAAAsB,QAAA;MAAAC,QAAA,EAAAtB,YAAA;MAAAuB,UAAA;MAAAC,YAAA;IAAA;EAAA,GACtF9B,MAAA,YAAAqB,aAAA,CAAClB,YAAA,CAAA4B,IAAI;IAACC,aAAa,EAAE,CAAE;IAACT,KAAK,EAAE,CAACC,MAAM,CAACN,UAAU,EAAEA,UAAU,CAAE;IAAAQ,MAAA,EAAArB,KAAA;IAAAsB,QAAA;MAAAC,QAAA,EAAAtB,YAAA;MAAAuB,UAAA;MAAAC,YAAA;IAAA;EAAA,GAC5DpB,MAAM,GAAGD,cAAc,GAAMA,cAAc,SAAMC,MAC9C,CACF,CAAC;AAEX,CAAC;AAACuB,OAAA,CAAA1B,yBAAA,GAAAA,yBAAA;AAEF,IAAMiB,MAAM,GAAGU,uBAAU,CAACC,MAAM,CAAC;EAC/BlB,eAAe,EAAE;IACfmB,UAAU,EAAE,QAAQ;IACpBC,YAAY,EAAE,CAAC;IACfC,UAAU,EAAE,CAAC;IACbC,cAAc,EAAE;EAClB,CAAC;EACDrB,UAAU,EAAE;IACVsB,KAAK,EAAE,SAAS;IAChBC,QAAQ,EAAE,EAAE;IACZC,UAAU,EAAE,KAAK;IACjBC,iBAAiB,EAAE,CAAC;IACpBC,eAAe,EAAE;EACnB;AACF,CAAC,CAAC"}
|
package/lib/module/version.json
CHANGED
|
@@ -5,4 +5,4 @@ export declare type ChannelPreviewUnreadCountProps<StreamChatGenerics extends De
|
|
|
5
5
|
maxUnreadCount: number;
|
|
6
6
|
unread?: number;
|
|
7
7
|
};
|
|
8
|
-
export declare const ChannelPreviewUnreadCount: <StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>(props: ChannelPreviewUnreadCountProps<StreamChatGenerics>) => JSX.Element;
|
|
8
|
+
export declare const ChannelPreviewUnreadCount: <StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>(props: ChannelPreviewUnreadCountProps<StreamChatGenerics>) => JSX.Element | null;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stream-chat-react-native-core",
|
|
3
3
|
"description": "The official React Native and Expo components for Stream Chat, a service for building chat applications",
|
|
4
|
-
"version": "5.15.3-beta.
|
|
4
|
+
"version": "5.15.3-beta.5",
|
|
5
5
|
"author": {
|
|
6
6
|
"company": "Stream.io Inc",
|
|
7
7
|
"name": "Stream.io Inc"
|
|
@@ -7,22 +7,6 @@ import { useTheme } from '../../contexts/themeContext/ThemeContext';
|
|
|
7
7
|
|
|
8
8
|
import type { DefaultStreamChatGenerics } from '../../types/types';
|
|
9
9
|
|
|
10
|
-
const styles = StyleSheet.create({
|
|
11
|
-
unreadContainer: {
|
|
12
|
-
alignItems: 'center',
|
|
13
|
-
borderRadius: 8,
|
|
14
|
-
flexShrink: 1,
|
|
15
|
-
justifyContent: 'center',
|
|
16
|
-
},
|
|
17
|
-
unreadText: {
|
|
18
|
-
color: '#FFFFFF',
|
|
19
|
-
fontSize: 11,
|
|
20
|
-
fontWeight: '700',
|
|
21
|
-
paddingHorizontal: 5,
|
|
22
|
-
paddingVertical: 1,
|
|
23
|
-
},
|
|
24
|
-
});
|
|
25
|
-
|
|
26
10
|
export type ChannelPreviewUnreadCountProps<
|
|
27
11
|
StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics,
|
|
28
12
|
> = Pick<ChannelPreviewProps<StreamChatGenerics>, 'channel'> & {
|
|
@@ -43,13 +27,29 @@ export const ChannelPreviewUnreadCount = <
|
|
|
43
27
|
},
|
|
44
28
|
} = useTheme();
|
|
45
29
|
|
|
30
|
+
if (!unread) return null;
|
|
31
|
+
|
|
46
32
|
return (
|
|
47
33
|
<View style={[styles.unreadContainer, { backgroundColor: accent_red }, unreadContainer]}>
|
|
48
|
-
{
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
</Text>
|
|
52
|
-
)}
|
|
34
|
+
<Text numberOfLines={1} style={[styles.unreadText, unreadText]}>
|
|
35
|
+
{unread > maxUnreadCount ? `${maxUnreadCount}+` : unread}
|
|
36
|
+
</Text>
|
|
53
37
|
</View>
|
|
54
38
|
);
|
|
55
39
|
};
|
|
40
|
+
|
|
41
|
+
const styles = StyleSheet.create({
|
|
42
|
+
unreadContainer: {
|
|
43
|
+
alignItems: 'center',
|
|
44
|
+
borderRadius: 8,
|
|
45
|
+
flexShrink: 1,
|
|
46
|
+
justifyContent: 'center',
|
|
47
|
+
},
|
|
48
|
+
unreadText: {
|
|
49
|
+
color: '#FFFFFF',
|
|
50
|
+
fontSize: 11,
|
|
51
|
+
fontWeight: '700',
|
|
52
|
+
paddingHorizontal: 5,
|
|
53
|
+
paddingVertical: 1,
|
|
54
|
+
},
|
|
55
|
+
});
|
package/src/version.json
CHANGED