@sqlrooms/s3-browser 0.26.1-rc.4 → 0.26.1-rc.5
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/dist/index.d.ts +4 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/package.json +7 -6
package/dist/index.d.ts
CHANGED
|
@@ -2,8 +2,9 @@
|
|
|
2
2
|
* {@include ../README.md}
|
|
3
3
|
* @packageDocumentation
|
|
4
4
|
*/
|
|
5
|
-
export {
|
|
5
|
+
export { createS3BrowserSlice } from './S3BrowserSlice';
|
|
6
|
+
export type { S3BrowserState } from './S3BrowserSlice';
|
|
6
7
|
export { S3CredentialsForm } from './S3CredentialsForm';
|
|
7
|
-
export {
|
|
8
|
-
export
|
|
8
|
+
export { default as S3FileBrowser } from './S3FileBrowser';
|
|
9
|
+
export { S3Config, S3Credentials, S3FileOrDirectory, } from '@sqlrooms/s3-browser-config';
|
|
9
10
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,OAAO,EAAC,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,OAAO,EAAC,oBAAoB,EAAC,MAAM,kBAAkB,CAAC;AACtD,YAAY,EAAC,cAAc,EAAC,MAAM,kBAAkB,CAAC;AACrD,OAAO,EAAC,iBAAiB,EAAC,MAAM,qBAAqB,CAAC;AACtD,OAAO,EAAC,OAAO,IAAI,aAAa,EAAC,MAAM,iBAAiB,CAAC;AAIzD,OAAO,EACL,QAAQ,EACR,aAAa,EACb,iBAAiB,GAClB,MAAM,6BAA6B,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -2,8 +2,10 @@
|
|
|
2
2
|
* {@include ../README.md}
|
|
3
3
|
* @packageDocumentation
|
|
4
4
|
*/
|
|
5
|
-
export { default as S3FileBrowser } from './S3FileBrowser';
|
|
6
|
-
export { S3CredentialsForm } from './S3CredentialsForm';
|
|
7
5
|
export { createS3BrowserSlice } from './S3BrowserSlice';
|
|
8
|
-
export
|
|
6
|
+
export { S3CredentialsForm } from './S3CredentialsForm';
|
|
7
|
+
export { default as S3FileBrowser } from './S3FileBrowser';
|
|
8
|
+
// Re-export from @sqlrooms/s3-browser-config
|
|
9
|
+
// Values also export their corresponding types automatically
|
|
10
|
+
export { S3Config, S3Credentials, S3FileOrDirectory, } from '@sqlrooms/s3-browser-config';
|
|
9
11
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,OAAO,EAAC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,OAAO,EAAC,oBAAoB,EAAC,MAAM,kBAAkB,CAAC;AAEtD,OAAO,EAAC,iBAAiB,EAAC,MAAM,qBAAqB,CAAC;AACtD,OAAO,EAAC,OAAO,IAAI,aAAa,EAAC,MAAM,iBAAiB,CAAC;AAEzD,6CAA6C;AAC7C,6DAA6D;AAC7D,OAAO,EACL,QAAQ,EACR,aAAa,EACb,iBAAiB,GAClB,MAAM,6BAA6B,CAAC","sourcesContent":["/**\n * {@include ../README.md}\n * @packageDocumentation\n */\nexport {createS3BrowserSlice} from './S3BrowserSlice';\nexport type {S3BrowserState} from './S3BrowserSlice';\nexport {S3CredentialsForm} from './S3CredentialsForm';\nexport {default as S3FileBrowser} from './S3FileBrowser';\n\n// Re-export from @sqlrooms/s3-browser-config\n// Values also export their corresponding types automatically\nexport {\n S3Config,\n S3Credentials,\n S3FileOrDirectory,\n} from '@sqlrooms/s3-browser-config';\n"]}
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sqlrooms/s3-browser",
|
|
3
|
-
"version": "0.26.1-rc.
|
|
3
|
+
"version": "0.26.1-rc.5",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"module": "dist/index.js",
|
|
7
7
|
"type": "module",
|
|
8
|
+
"sideEffects": false,
|
|
8
9
|
"author": "Ilya Boyandin <ilya@boyandin.me>",
|
|
9
10
|
"license": "MIT",
|
|
10
11
|
"repository": {
|
|
@@ -19,10 +20,10 @@
|
|
|
19
20
|
},
|
|
20
21
|
"dependencies": {
|
|
21
22
|
"@hookform/resolvers": "^3.10.0",
|
|
22
|
-
"@sqlrooms/room-shell": "0.26.1-rc.
|
|
23
|
-
"@sqlrooms/s3-browser-config": "0.26.1-rc.
|
|
24
|
-
"@sqlrooms/ui": "0.26.1-rc.
|
|
25
|
-
"@sqlrooms/utils": "0.26.1-rc.
|
|
23
|
+
"@sqlrooms/room-shell": "0.26.1-rc.5",
|
|
24
|
+
"@sqlrooms/s3-browser-config": "0.26.1-rc.5",
|
|
25
|
+
"@sqlrooms/ui": "0.26.1-rc.5",
|
|
26
|
+
"@sqlrooms/utils": "0.26.1-rc.5",
|
|
26
27
|
"immer": "^11.0.1",
|
|
27
28
|
"lucide-react": "^0.555.0",
|
|
28
29
|
"react-hook-form": "^7.63.0",
|
|
@@ -40,5 +41,5 @@
|
|
|
40
41
|
"typecheck": "tsc --noEmit",
|
|
41
42
|
"typedoc": "typedoc"
|
|
42
43
|
},
|
|
43
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "1df21f4729c5deb96f7af790cff7c189c6885074"
|
|
44
45
|
}
|