@shoutem/ui 7.0.0-rc.0 → 7.0.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": "7.0.0-rc.0",
3
+ "version": "7.0.0",
4
4
  "description": "Styleable set of components for React Native applications",
5
5
  "scripts": {
6
6
  "lint": "eslint .",
@@ -30,7 +30,7 @@
30
30
  "lottie-react-native": "6.7.0",
31
31
  "prop-types": "15.8.1",
32
32
  "qs": "6.9.3",
33
- "react-native-device-info": "9.0.2",
33
+ "react-native-device-info": "10.13.2",
34
34
  "react-native-lightbox-v2": "0.9.0",
35
35
  "react-native-linear-gradient": "2.8.3",
36
36
  "react-native-modal": "13.0.1",
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
  },