@shoutem/ui 6.5.0-rc.3 → 6.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -106,6 +106,7 @@ import sidebar from './sidebar.svg';
|
|
|
106
106
|
import skipNext from './skip-next.svg';
|
|
107
107
|
import sleep from './sleep.svg';
|
|
108
108
|
import socialWall from './social-wall.svg';
|
|
109
|
+
import speedMeter from './speed-meter.svg';
|
|
109
110
|
import stamp from './stamp.svg';
|
|
110
111
|
import stop from './stop.svg';
|
|
111
112
|
import takeAPhoto from './take-a-photo.svg';
|
|
@@ -231,6 +232,7 @@ export const defaultConfig = [
|
|
|
231
232
|
{ name: 'skip-next', icon: skipNext },
|
|
232
233
|
{ name: 'sleep', icon: sleep },
|
|
233
234
|
{ name: 'social-wall', icon: socialWall },
|
|
235
|
+
{ name: 'speed-meter', icon: speedMeter },
|
|
234
236
|
{ name: 'stamp', icon: stamp },
|
|
235
237
|
{ name: 'stop', icon: stop },
|
|
236
238
|
{ name: 'take-a-photo', icon: takeAPhoto },
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'><svg enable-background="new 0 0 64 64" height="64px" id="Layer_1" version="1.1" viewBox="0 0 64 64" width="64px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g><path d="M28.371,31.879c0,2.19,1.777,3.966,3.966,3.966c1.538,0,2.856-0.884,3.514-2.163l0.011,0.01l7.24-13.062l-12.71,7.794 l0.012,0.012C29.197,29.117,28.371,30.395,28.371,31.879z"/><path d="M48.315,12.981C44.251,9.429,39,7.161,33,6.822v6.027c5,0.318,7.946,1.906,10.904,4.384L48.315,12.981z"/><path d="M51.146,30h6.02c-0.404-6-2.751-10.93-6.395-14.97l-4.259,4.233C49.078,22.203,50.766,26,51.146,30z"/><path d="M51.174,33c-0.637,10-8.922,17.931-19.042,17.931c-10.535,0-19.421-8.544-19.421-19.078C12.711,21.825,21,13.62,30,12.85 V6.823C17,7.602,6.711,18.54,6.711,31.879c0,13.843,11.42,25.052,25.263,25.052C45.406,56.931,56.564,46,57.205,33H51.174z"/></g></svg>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shoutem/ui",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.6.0",
|
|
4
4
|
"description": "Styleable set of components for React Native applications",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"lint": "eslint .",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"@react-native-community/datetimepicker": "6.2.0",
|
|
18
18
|
"@shoutem/animation": "~0.15.0",
|
|
19
19
|
"@shoutem/eslint-config-react": "~1.0.6",
|
|
20
|
-
"@shoutem/theme": "~0.13.2
|
|
20
|
+
"@shoutem/theme": "~0.13.2",
|
|
21
21
|
"auto-bind": "4.0.0",
|
|
22
22
|
"babel-plugin-transform-decorators-legacy": "1.3.5",
|
|
23
23
|
"buffer": "5.6.0",
|
package/theme.js
CHANGED
|
@@ -348,6 +348,18 @@ export default () => {
|
|
|
348
348
|
borderColor: 'transparent',
|
|
349
349
|
},
|
|
350
350
|
|
|
351
|
+
'.rounded-corners-sm': {
|
|
352
|
+
borderRadius: 5,
|
|
353
|
+
},
|
|
354
|
+
|
|
355
|
+
'.rounded-corners-md': {
|
|
356
|
+
borderRadius: 10,
|
|
357
|
+
},
|
|
358
|
+
|
|
359
|
+
'.rounded-corners-lg': {
|
|
360
|
+
borderRadius: 15,
|
|
361
|
+
},
|
|
362
|
+
|
|
351
363
|
'.flexible': {
|
|
352
364
|
flex: 1,
|
|
353
365
|
},
|