@onehat/ui 0.2.60 → 0.2.62

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.2.60",
3
+ "version": "0.2.62",
4
4
  "description": "Base UI for OneHat apps",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -46,7 +46,7 @@ import MagnifyingGlass from '../Icons/MagnifyingGlass.js';
46
46
  import NoReorderRows from '../Icons/NoReorderRows.js';
47
47
  import ReorderRows from '../Icons/ReorderRows.js';
48
48
  import PaginationToolbar from '../Toolbar/PaginationToolbar.js';
49
- import NoRecordsFound from './NoRecordsFound.js';
49
+ import NoRecordsFound from '../Grid/NoRecordsFound.js';
50
50
  import Toolbar from '../Toolbar/Toolbar.js';
51
51
  import _ from 'lodash';
52
52
 
@@ -44,6 +44,8 @@ import Text from './Form/Field/Text.js';
44
44
  import TimezonesCombo from './Form/Field/Combo/TimezonesCombo.js';
45
45
  import Toggle from './Form/Field/Toggle.js';
46
46
  import Toolbar from './Toolbar/Toolbar.js';
47
+ import Tree from './Tree/Tree.js';
48
+ import TreeNode from './Tree/TreeNode.js';
47
49
  import YearsCombo from './Form/Field/Combo/YearsCombo.js';
48
50
  import _ from 'lodash';
49
51
 
@@ -92,6 +94,8 @@ const components = {
92
94
  TimezonesCombo,
93
95
  Toggle,
94
96
  Toolbar,
97
+ Tree,
98
+ TreeNode,
95
99
  YearsCombo,
96
100
  };
97
101
 
@@ -1,5 +1,5 @@
1
1
  import UiGlobals from '../UiGlobals.js';
2
- import CKEditor from '../Components/Form/Field/CKEditor/CKEditor.js';
2
+ // import CKEditor from '../Components/Form/Field/CKEditor/CKEditor.js';
3
3
  import Datetime from '../PlatformImports/Web/Datetime.js';
4
4
  import Draggable from '../PlatformImports/Web/Draggable.js';
5
5
  import File from '../Components/Form/Field/File.js';
@@ -7,7 +7,7 @@ import _ from 'lodash';
7
7
 
8
8
  export default function registerWebComponents() {
9
9
  _.merge(UiGlobals.components, {
10
- CKEditor,
10
+ // CKEditor, // The CKEditor was giving me CSS import errors, so had to disable it until I can fix those
11
11
  Datetime,
12
12
  Draggable,
13
13
  File,