linked-data-browser 0.0.8-alpha.5 → 0.0.8-alpha.7
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/README.md +55 -0
- package/dist-lib/index.d.mts +45 -3
- package/dist-lib/index.d.ts +45 -3
- package/dist-lib/index.js +959 -746
- package/dist-lib/index.mjs +825 -617
- package/dist-server/RefreshWorker.js +2045 -0
- package/dist-server/_expo/static/css/global-9f1ade27c4ac36316f91e9e008f2f694.css +1 -0
- package/dist-server/_expo/static/js/web/AppEntry-3fb182fd2bcf22f400f77c2d2f09bc56.js +14269 -0
- package/dist-server/index.html +2 -2
- package/dist-standalone/RefreshWorker.js +2045 -0
- package/dist-standalone/_expo/static/css/global-9f1ade27c4ac36316f91e9e008f2f694.css +1 -0
- package/dist-standalone/_expo/static/js/web/AppEntry-3fb182fd2bcf22f400f77c2d2f09bc56.js +14269 -0
- package/dist-standalone/index.html +2 -2
- package/package.json +29 -29
- package/dist-server/_expo/static/css/global-c029fb6f4311978a769388b3a9f28b01.css +0 -1
- package/dist-server/_expo/static/js/web/AppEntry-02974cfff24938192767ab98511c2421.js +0 -12640
- package/dist-standalone/_expo/static/css/global-c029fb6f4311978a769388b3a9f28b01.css +0 -1
- package/dist-standalone/_expo/static/js/web/AppEntry-02974cfff24938192767ab98511c2421.js +0 -12640
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
flex: 1;
|
|
24
24
|
}
|
|
25
25
|
</style>
|
|
26
|
-
<link rel="preload" href="/_expo/static/css/global-
|
|
26
|
+
<link rel="preload" href="/_expo/static/css/global-9f1ade27c4ac36316f91e9e008f2f694.css" as="style"><link rel="stylesheet" href="/_expo/static/css/global-9f1ade27c4ac36316f91e9e008f2f694.css"><link rel="icon" href="/favicon.ico" /></head>
|
|
27
27
|
|
|
28
28
|
<body>
|
|
29
29
|
<!-- Use static rendering with Expo Router to support running without JavaScript. -->
|
|
@@ -32,6 +32,6 @@
|
|
|
32
32
|
</noscript>
|
|
33
33
|
<!-- The root element for your Expo app. -->
|
|
34
34
|
<div id="root"></div>
|
|
35
|
-
<script src="/_expo/static/js/web/AppEntry-
|
|
35
|
+
<script src="/_expo/static/js/web/AppEntry-3fb182fd2bcf22f400f77c2d2f09bc56.js" defer></script>
|
|
36
36
|
</body>
|
|
37
37
|
</html>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "linked-data-browser",
|
|
3
|
-
"version": "0.0.8-alpha.
|
|
3
|
+
"version": "0.0.8-alpha.7",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": {
|
|
6
6
|
"types": "./dist-lib/index.d.ts",
|
|
@@ -14,22 +14,23 @@
|
|
|
14
14
|
"dev:android": "expo start -c --android",
|
|
15
15
|
"dev:server-hosted": "concurrently \"npm run solid-server\" \"npm run build:server:watch\"",
|
|
16
16
|
"clean": "rm -rf .expo node_modules dist-standalone dist-server dist-lib",
|
|
17
|
-
"build:standalone": "expo export -p web --output-dir dist-standalone && node scripts/adjust-standalone-paths.js",
|
|
18
|
-
"build:server": "EXPO_PUBLIC_IS_SERVER_HOSTED=true expo export -p web --output-dir dist-server && node scripts/adjust-server-paths.js",
|
|
17
|
+
"build:standalone": "expo export -p web --output-dir dist-standalone && node scripts/adjust-standalone-paths.js && cp node_modules/@uvdsl/solid-oidc-client-browser/dist/esm/web/RefreshWorker.js dist-standalone/RefreshWorker.js",
|
|
18
|
+
"build:server": "EXPO_PUBLIC_IS_SERVER_HOSTED=true expo export -p web --output-dir dist-server && node scripts/adjust-server-paths.js && cp node_modules/@uvdsl/solid-oidc-client-browser/dist/esm/web/RefreshWorker.js dist-server/RefreshWorker.js",
|
|
19
19
|
"build:server:watch": "npx chokidar '**/*' -i 'dist-standalone/**' -i 'dist-server/**' -i 'node_modules/**' -i 'data/**' -c 'npm run build:server'",
|
|
20
20
|
"solid-server": "community-solid-server -c ./test-server/server-config.json -f ./data --seed-config ./test-server/solid-css-seed.json",
|
|
21
21
|
"build:ldo": "ldo build --input .shapes --output .ldo",
|
|
22
22
|
"build:lib": "tsup lib/index.js --format cjs,esm --dts --out-dir dist-lib --clean",
|
|
23
23
|
"build": "npm run build:standalone && npm run build:server && npm run build:lib",
|
|
24
|
+
"postinstall": "mkdir -p public && cp node_modules/@uvdsl/solid-oidc-client-browser/dist/esm/web/RefreshWorker.js public/RefreshWorker.js",
|
|
24
25
|
"prepublishOnly": "npm run build"
|
|
25
26
|
},
|
|
26
27
|
"dependencies": {
|
|
27
28
|
"@inrupt/solid-client-authn-browser": "^3.0.0",
|
|
28
|
-
"@ldo/connected": "^1.0.0-alpha.
|
|
29
|
-
"@ldo/connected-solid": "^1.0.0-alpha.
|
|
30
|
-
"@ldo/ldo": "^1.0.0-alpha.
|
|
31
|
-
"@ldo/react": "^1.0.0-alpha.
|
|
32
|
-
"@ldo/solid-react": "^1.0.0-alpha.
|
|
29
|
+
"@ldo/connected": "^1.0.0-alpha.51",
|
|
30
|
+
"@ldo/connected-solid": "^1.0.0-alpha.51",
|
|
31
|
+
"@ldo/ldo": "^1.0.0-alpha.51",
|
|
32
|
+
"@ldo/react": "^1.0.0-alpha.51",
|
|
33
|
+
"@ldo/solid-react": "^1.0.0-alpha.51",
|
|
33
34
|
"@monaco-editor/react": "^4.7.0",
|
|
34
35
|
"@radix-ui/react-dialog": "^1.1.14",
|
|
35
36
|
"@radix-ui/react-dropdown-menu": "^2.1.15",
|
|
@@ -40,7 +41,7 @@
|
|
|
40
41
|
"@radix-ui/react-radio-group": "^1.3.7",
|
|
41
42
|
"@radix-ui/react-switch": "^1.2.5",
|
|
42
43
|
"@radix-ui/react-tooltip": "^1.2.7",
|
|
43
|
-
"@react-native-async-storage/async-storage": "2.
|
|
44
|
+
"@react-native-async-storage/async-storage": "2.2.0",
|
|
44
45
|
"@react-navigation/native": "^7.1.14",
|
|
45
46
|
"@rn-primitives/accordion": "^1.2.0",
|
|
46
47
|
"@rn-primitives/aspect-ratio": "^1.2.0",
|
|
@@ -70,36 +71,35 @@
|
|
|
70
71
|
"class-variance-authority": "^0.7.0",
|
|
71
72
|
"clsx": "^2.1.0",
|
|
72
73
|
"constate": "^3.3.3",
|
|
73
|
-
"expo": "
|
|
74
|
-
"expo-document-picker": "~
|
|
75
|
-
"expo-linking": "~
|
|
76
|
-
"expo-navigation-bar": "~
|
|
77
|
-
"expo-splash-screen": "~0.
|
|
78
|
-
"expo-status-bar": "~
|
|
79
|
-
"expo-system-ui": "~
|
|
74
|
+
"expo": "~54.0.34",
|
|
75
|
+
"expo-document-picker": "~14.0.8",
|
|
76
|
+
"expo-linking": "~8.0.12",
|
|
77
|
+
"expo-navigation-bar": "~5.0.10",
|
|
78
|
+
"expo-splash-screen": "~31.0.13",
|
|
79
|
+
"expo-status-bar": "~3.0.9",
|
|
80
|
+
"expo-system-ui": "~6.0.9",
|
|
80
81
|
"lodash": "^4.17.21",
|
|
81
82
|
"lucide-react-native": "^0.511.0",
|
|
82
|
-
"react": "19.
|
|
83
|
-
"react-dom": "19.
|
|
84
|
-
"react-native": "0.
|
|
83
|
+
"react": "19.1.0",
|
|
84
|
+
"react-dom": "19.1.0",
|
|
85
|
+
"react-native": "0.81.5",
|
|
85
86
|
"react-native-notifier": "^2.0.0",
|
|
86
87
|
"react-native-progress": "^5.0.1",
|
|
87
|
-
"react-native-reanimated": "~
|
|
88
|
+
"react-native-reanimated": "~4.1.1",
|
|
88
89
|
"react-native-safe-area-context": "^5.4.0",
|
|
89
|
-
"react-native-screens": "~4.
|
|
90
|
-
"react-native-svg": "15.
|
|
91
|
-
"react-native-web": "
|
|
92
|
-
"react-native-worklets": "
|
|
90
|
+
"react-native-screens": "~4.16.0",
|
|
91
|
+
"react-native-svg": "15.12.1",
|
|
92
|
+
"react-native-web": "^0.21.0",
|
|
93
|
+
"react-native-worklets": "0.5.1"
|
|
93
94
|
},
|
|
94
95
|
"devDependencies": {
|
|
95
96
|
"@babel/core": "^7.26.0",
|
|
96
|
-
"@
|
|
97
|
-
"@
|
|
98
|
-
"@ldo/cli": "^1.0.0-alpha.32",
|
|
97
|
+
"@expo/metro-runtime": "~6.1.2",
|
|
98
|
+
"@ldo/cli": "^1.0.0-alpha.51",
|
|
99
99
|
"@react-native-community/eslint-config": "^3.2.0",
|
|
100
100
|
"@solid/community-server": "^8.0.0-alpha.0",
|
|
101
101
|
"@types/jsonld": "^1.5.15",
|
|
102
|
-
"@types/react": "~19.
|
|
102
|
+
"@types/react": "~19.1.10",
|
|
103
103
|
"@types/shexj": "^2.1.7",
|
|
104
104
|
"chokidar-cli": "^3.0.0",
|
|
105
105
|
"concurrently": "^9.1.2",
|
|
@@ -115,4 +115,4 @@
|
|
|
115
115
|
"dist-server",
|
|
116
116
|
"dist-standalone"
|
|
117
117
|
]
|
|
118
|
-
}
|
|
118
|
+
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
:root{--focus-ring-color:#2258c3;--focus-ring-width:2px;--focus-ring-offset:2px;--focus-ring-shadow:0 0 0 var(--focus-ring-offset)transparent,0 0 0 calc(var(--focus-ring-offset) + var(--focus-ring-width))var(--focus-ring-color)}:where(button,a[href],area[href],input:not([type=hidden]),select,textarea,summary,[role=button],[role=link],[role=menuitem],[role=menuitemradio],[role=menuitemcheckbox],[role=option],[role=treeitem],[role=tab],[role=switch],[role=checkbox],[role=radio],[role=slider],[role=spinbutton],[role=textbox],[role=combobox],[role=gridcell],[role=rowheader],[role=columnheader],[tabindex]:not([tabindex^=\-])){box-shadow:none;outline:none}:where(button,a[href],area[href],input:not([type=hidden]),select,textarea,summary,[role=button],[role=link],[role=menuitem],[role=menuitemradio],[role=menuitemcheckbox],[role=option],[role=treeitem],[role=tab],[role=switch],[role=checkbox],[role=radio],[role=slider],[role=spinbutton],[role=textbox],[role=combobox],[role=gridcell],[role=rowheader],[role=columnheader],[tabindex]:not([tabindex^=\-]))[disabled],:where([aria-disabled=true],[data-disabled],[data-state=disabled]),:where(button,a[href],area[href],input:not([type=hidden]),select,textarea,summary,[role=button],[role=link],[role=menuitem],[role=menuitemradio],[role=menuitemcheckbox],[role=option],[role=treeitem],[role=tab],[role=switch],[role=checkbox],[role=radio],[role=slider],[role=spinbutton],[role=textbox],[role=combobox],[role=gridcell],[role=rowheader],[role=columnheader],[tabindex]:not([tabindex^=\-])):focus:not(:focus-visible){box-shadow:none!important;outline:none!important}button::-moz-focus-inner{border:0;padding:0}button:-moz-focusring:not(:focus-visible){outline:none}@layer base{:root{--background:0 0% 99%;--foreground:220 15% 12%;--card:0 0% 100%;--card-foreground:220 15% 12%;--popover:0 0% 100%;--popover-foreground:220 15% 12%;--primary:220 70% 45%;--primary-foreground:0 0% 100%;--secondary:220 14% 96%;--secondary-foreground:220 15% 20%;--muted:220 14% 96%;--muted-foreground:220 10% 42%;--accent:220 14% 94%;--accent-foreground:220 15% 20%;--destructive:0 72% 51%;--destructive-foreground:0 0% 100%;--border:220 13% 91%;--input:220 13% 91%;--ring:220 70% 45%;--radius:.5rem;--radius-sm:.375rem;--radius-lg:.75rem}.dark:root,html.dark{--background:222 18% 8%;--foreground:210 20% 96%;--card:222 18% 10%;--card-foreground:210 20% 96%;--popover:222 18% 10%;--popover-foreground:210 20% 96%;--primary:217 91% 60%;--primary-foreground:0 0% 100%;--secondary:217 18% 18%;--secondary-foreground:210 20% 96%;--muted:217 18% 16%;--muted-foreground:215 16% 57%;--accent:217 18% 14%;--accent-foreground:210 20% 96%;--destructive:0 62% 50%;--destructive-foreground:0 0% 100%;--border:217 18% 18%;--input:217 18% 18%;--ring:217 91% 60%}}html.bg-background{background-color:hsl(var(--background))}.scrollbar-hide{-ms-overflow-style:none;scrollbar-width:none}.scrollbar-hide::-webkit-scrollbar{display:none}
|