@onehat/ui 0.3.126 → 0.3.128

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onehat/ui",
3
- "version": "0.3.126",
3
+ "version": "0.3.128",
4
4
  "description": "Base UI for OneHat apps",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -474,7 +474,9 @@ function Form(props) {
474
474
  editorTypeProps.selectorId = selectorId;
475
475
  }
476
476
  if (propsToPass.selectorId || editorTypeProps.selectorId) { // editorTypeProps.selectorId causes just this one field to use selectorId
477
- editorTypeProps.selectorSelected = record;
477
+ if (_.isNil(propsToPass.selectorSelected)) {
478
+ editorTypeProps.selectorSelected = record;
479
+ }
478
480
  }
479
481
  let dynamicProps = {};
480
482
  if (getDynamicProps) {
@@ -0,0 +1,20 @@
1
+ // Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc.
2
+ import * as React from "react"
3
+ import Svg, { Path } from "react-native-svg"
4
+ import { Icon } from 'native-base';
5
+
6
+ function SvgComponent(props) {
7
+ return (
8
+ <Icon
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ height={16}
11
+ width={14}
12
+ viewBox="0 0 448 512"
13
+ {...props}
14
+ >
15
+ <Path d="M8 256a56 56 0 11112 0 56 56 0 11-112 0zm160 0a56 56 0 11112 0 56 56 0 11-112 0zm216-56a56 56 0 110 112 56 56 0 110-112z" />
16
+ </Icon>
17
+ )
18
+ }
19
+
20
+ export default SvgComponent
@@ -0,0 +1,20 @@
1
+ // Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc.
2
+ import * as React from "react"
3
+ import Svg, { Path } from "react-native-svg"
4
+ import { Icon } from 'native-base';
5
+
6
+ function SvgComponent(props) {
7
+ return (
8
+ <Icon
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ height={16}
11
+ width={14}
12
+ viewBox="0 0 448 512"
13
+ {...props}
14
+ >
15
+ <Path d="M0 32v448h448V32H0zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z" />
16
+ </Icon>
17
+ )
18
+ }
19
+
20
+ export default SvgComponent
@@ -0,0 +1,20 @@
1
+ // Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc.
2
+ import * as React from "react"
3
+ import Svg, { Path } from "react-native-svg"
4
+ import { Icon } from 'native-base';
5
+
6
+ function SvgComponent(props) {
7
+ return (
8
+ <Icon
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ height={16}
11
+ width={16}
12
+ viewBox="0 0 512 512"
13
+ {...props}
14
+ >
15
+ <Path d="M64 256v-96h160v96H64zm0 64h160v96H64v-96zm224 96v-96h160v96H288zm160-160H288v-96h160v96zM64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64z" />
16
+ </Icon>
17
+ )
18
+ }
19
+
20
+ export default SvgComponent
@@ -60,6 +60,7 @@ import Copyright from '../Components/Icons/Copyright.js';
60
60
  import Dot from '../Components/Icons/Dot.js';
61
61
  import Duplicate from '../Components/Icons/Duplicate.js';
62
62
  import Edit from '../Components/Icons/Edit.js';
63
+ import EllipsisHorizontal from '../Components/Icons/EllipsisHorizontal.js';
63
64
  import EllipsisVertical from '../Components/Icons/EllipsisVertical.js';
64
65
  import Envelope from '../Components/Icons/Envelope.js';
65
66
  import EnvelopeRegular from '../Components/Icons/EnvelopeRegular.js';
@@ -90,6 +91,7 @@ import House from '../Components/Icons/House.js';
90
91
  import Images from '../Components/Icons/Images.js';
91
92
  import Info from '../Components/Icons/Info.js';
92
93
  import ItunesNote from '../Components/Icons/ItunesNote.js';
94
+ import Js from '../Components/Icons/Js.js';
93
95
  import Leaf from '../Components/Icons/Leaf.js';
94
96
  import List from '../Components/Icons/List.js';
95
97
  import ListCheck from '../Components/Icons/ListCheck.js';
@@ -161,6 +163,7 @@ import SquareCheckRegular from '../Components/Icons/SquareCheckRegular.js';
161
163
  import SquareMinus from '../Components/Icons/SquareMinus.js';
162
164
  import SquareRegular from '../Components/Icons/SquareRegular.js';
163
165
  import Store from '../Components/Icons/Store.js';
166
+ import Table from '../Components/Icons/Table.js';
164
167
  import ThumbsDown from '../Components/Icons/ThumbsDown.js';
165
168
  import ThumbsDownRegular from '../Components/Icons/ThumbsDownRegular.js';
166
169
  import ThumbsUp from '../Components/Icons/ThumbsUp.js';
@@ -287,6 +290,7 @@ const components = {
287
290
  Dot,
288
291
  Duplicate,
289
292
  Edit,
293
+ EllipsisHorizontal,
290
294
  EllipsisVertical,
291
295
  Envelope,
292
296
  EnvelopeRegular,
@@ -317,6 +321,7 @@ const components = {
317
321
  Images,
318
322
  Info,
319
323
  ItunesNote,
324
+ Js,
320
325
  Leaf,
321
326
  List,
322
327
  ListCheck,
@@ -388,6 +393,7 @@ const components = {
388
393
  SquareMinus,
389
394
  SquareRegular,
390
395
  Store,
396
+ Table,
391
397
  ThumbsDown,
392
398
  ThumbsDownRegular,
393
399
  ThumbsUp,