linked-data-browser 0.0.5 → 0.0.6

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/.eslintrc.js CHANGED
@@ -21,6 +21,8 @@ module.exports = {
21
21
  '~/lib/*',
22
22
  'resourceViews/*',
23
23
  '~/resourceViews/*',
24
+ '.ldo/*',
25
+ '~/ldo/*',
24
26
  ],
25
27
  message:
26
28
  'Absolute imports are not allowed. Please use relative imports instead.',
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { SolidProfileShape } from '.ldo/profile.typings';
2
+ import { SolidProfileShape } from '../../.ldo/profile.typings';
3
3
  import { Avatar, AvatarFallback, AvatarImage } from '../ui/avatar';
4
4
  import { Text } from '../ui/text';
5
5
  import { User } from '../../lib/icons/User';
@@ -1,4 +1,4 @@
1
- import { SolidProfileShapeShapeType } from '.ldo/profile.shapeTypes';
1
+ import { SolidProfileShapeShapeType } from '../../../.ldo/profile.shapeTypes';
2
2
  import { useResource, useSolidAuth, useSubject } from '@ldo/solid-react';
3
3
  import React, { FunctionComponent, ReactNode } from 'react';
4
4
  import { View } from 'react-native';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "linked-data-browser",
3
3
  "main": "index.js",
4
- "version": "0.0.5",
4
+ "version": "0.0.6",
5
5
  "scripts": {
6
6
  "dev:ios": "expo start -c --ios",
7
7
  "dev:web": "concurrently \"npm run solid-server\" \"expo start -c --web\"",
@@ -1,4 +1,4 @@
1
- import { SolidProfileShapeShapeType } from '.ldo/profile.shapeTypes';
1
+ import { SolidProfileShapeShapeType } from '../../.ldo/profile.shapeTypes';
2
2
  import { ResourceViewConfig } from '../../components/ResourceView';
3
3
  import { User } from '../../lib/icons/User';
4
4
  import { ProfileView } from './ProfileView';
@@ -1,7 +1,7 @@
1
1
  import { Input } from '../../components/ui/input';
2
2
  import React, { FunctionComponent, useCallback, useState } from 'react';
3
3
  import { Plus } from '../../lib/icons/Plus';
4
- import { SolidProfileShape } from '.ldo/profile.typings';
4
+ import { SolidProfileShape } from '../../.ldo/profile.typings';
5
5
  import { AgentInformation } from '../../components/sharing/agentPermissions/AgentInformation';
6
6
  import { View } from 'react-native';
7
7
  import { useChangeSetData } from '@ldo/react';
@@ -5,7 +5,7 @@ import { Input } from '../../components/ui/input';
5
5
  import { Separator } from '../../components/ui/separator';
6
6
  import { ProfileKnows } from './ProfileKnows';
7
7
  import { useViewContext } from '../../components/useViewContext';
8
- import { SolidProfileShapeShapeType } from '.ldo/profile.shapeTypes';
8
+ import { SolidProfileShapeShapeType } from '../../.ldo/profile.shapeTypes';
9
9
  import { useChangeSubject, useResource } from '@ldo/solid-react';
10
10
  import { Button } from '../../components/ui/button';
11
11
  import { SolidLeaf } from '@ldo/connected-solid';