alinea 0.0.15 → 0.1.2
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 +1 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +2 -2
- package/dist/server.d.ts +1 -1
- package/dist/server.js +2 -2
- package/dist/server.js.map +1 -1
- package/package.json +20 -19
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export { MediaSchema } from '@alinea/dashboard/schema/MediaSchema';
|
|
|
4
4
|
export { BrowserPreview } from '@alinea/dashboard/view/preview/BrowserPreview';
|
|
5
5
|
export { code } from '@alinea/input.code';
|
|
6
6
|
export { check } from '@alinea/input.check';
|
|
7
|
+
export { date } from '@alinea/input.date';
|
|
7
8
|
export { link } from '@alinea/input.link';
|
|
8
9
|
export { list } from '@alinea/input.list';
|
|
9
10
|
export { number } from '@alinea/input.number';
|
package/dist/index.js
CHANGED
|
@@ -4,6 +4,7 @@ import { MediaSchema } from "@alinea/dashboard/schema/MediaSchema";
|
|
|
4
4
|
import { BrowserPreview } from "@alinea/dashboard/view/preview/BrowserPreview";
|
|
5
5
|
import { code } from "@alinea/input.code";
|
|
6
6
|
import { check } from "@alinea/input.check";
|
|
7
|
+
import { date } from "@alinea/input.date";
|
|
7
8
|
import { link } from "@alinea/input.link";
|
|
8
9
|
import { list } from "@alinea/input.list";
|
|
9
10
|
import { number } from "@alinea/input.number";
|
|
@@ -28,6 +29,7 @@ export {
|
|
|
28
29
|
check,
|
|
29
30
|
code,
|
|
30
31
|
createConfig,
|
|
32
|
+
date,
|
|
31
33
|
link,
|
|
32
34
|
list,
|
|
33
35
|
number,
|
package/dist/index.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../packages/alinea/src/index.ts"],
|
|
4
|
-
"sourcesContent": ["// Config creation\nexport {createConfig, schema, type, Tree, workspace, Workspace, root, Root} from '@alinea/core'\nexport type {Config, Schema, TextDoc, Type} from '@alinea/core'\n\n// Dashboard\nexport {MediaSchema} from '@alinea/dashboard/schema/MediaSchema'\nexport {BrowserPreview} from '@alinea/dashboard/view/preview/BrowserPreview'\n\n// Included inputs\nexport {code} from '@alinea/input.code'\nexport {check} from '@alinea/input.check'\nexport {link} from '@alinea/input.link'\nexport {list} from '@alinea/input.list'\nexport {number} from '@alinea/input.number'\nexport {object} from '@alinea/input.object'\nexport {path} from '@alinea/input.path'\nexport {richText} from '@alinea/input.richtext'\nexport {select} from '@alinea/input.select'\nexport {tab, tabs} from '@alinea/input.tabs'\nexport {text} from '@alinea/input.text'\n\n// Store\nexport {Collection, Cursor, Expr} from '@alinea/store'\nimport type {Store} from '@alinea/store'\nexport type TypeOf<T> = Store.TypeOf<T>\n\n// Used in init template\nexport {Welcome} from './Welcome'\n"],
|
|
5
|
-
"mappings": ";AACA;AAIA;AACA;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAGA;AAKA;",
|
|
4
|
+
"sourcesContent": ["// Config creation\nexport {createConfig, schema, type, Tree, workspace, Workspace, root, Root} from '@alinea/core'\nexport type {Config, Schema, TextDoc, Type} from '@alinea/core'\n\n// Dashboard\nexport {MediaSchema} from '@alinea/dashboard/schema/MediaSchema'\nexport {BrowserPreview} from '@alinea/dashboard/view/preview/BrowserPreview'\n\n// Included inputs\nexport {code} from '@alinea/input.code'\nexport {check} from '@alinea/input.check'\nexport {date} from '@alinea/input.date'\nexport {link} from '@alinea/input.link'\nexport {list} from '@alinea/input.list'\nexport {number} from '@alinea/input.number'\nexport {object} from '@alinea/input.object'\nexport {path} from '@alinea/input.path'\nexport {richText} from '@alinea/input.richtext'\nexport {select} from '@alinea/input.select'\nexport {tab, tabs} from '@alinea/input.tabs'\nexport {text} from '@alinea/input.text'\n\n// Store\nexport {Collection, Cursor, Expr} from '@alinea/store'\nimport type {Store} from '@alinea/store'\nexport type TypeOf<T> = Store.TypeOf<T>\n\n// Used in init template\nexport {Welcome} from './Welcome'\n"],
|
|
5
|
+
"mappings": ";AACA;AAIA;AACA;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAGA;AAKA;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/dist/server.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { Backend,
|
|
1
|
+
export { Backend, DevBackend, Server } from '@alinea/backend';
|
package/dist/server.js
CHANGED
package/dist/server.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../packages/alinea/src/server.ts"],
|
|
4
|
-
"sourcesContent": ["// Backend\nexport {Backend,
|
|
4
|
+
"sourcesContent": ["// Backend\nexport {Backend, DevBackend, Server} from '@alinea/backend'\n"],
|
|
5
5
|
"mappings": ";AACA;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"bin": "./dist/cli.js",
|
|
3
3
|
"name": "alinea",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.1.2",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -26,24 +26,25 @@
|
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@alinea/backend": "0.
|
|
30
|
-
"@alinea/cli": "0.
|
|
31
|
-
"@alinea/core": "0.
|
|
32
|
-
"@alinea/css": "0.
|
|
33
|
-
"@alinea/dashboard": "0.
|
|
34
|
-
"@alinea/input.check": "0.
|
|
35
|
-
"@alinea/input.code": "0.
|
|
36
|
-
"@alinea/input.
|
|
37
|
-
"@alinea/input.
|
|
38
|
-
"@alinea/input.
|
|
39
|
-
"@alinea/input.
|
|
40
|
-
"@alinea/input.
|
|
41
|
-
"@alinea/input.
|
|
42
|
-
"@alinea/input.
|
|
43
|
-
"@alinea/input.
|
|
44
|
-
"@alinea/input.
|
|
29
|
+
"@alinea/backend": "0.1.2",
|
|
30
|
+
"@alinea/cli": "0.1.2",
|
|
31
|
+
"@alinea/core": "0.1.2",
|
|
32
|
+
"@alinea/css": "0.1.2",
|
|
33
|
+
"@alinea/dashboard": "0.1.2",
|
|
34
|
+
"@alinea/input.check": "0.1.2",
|
|
35
|
+
"@alinea/input.code": "0.1.2",
|
|
36
|
+
"@alinea/input.date": "0.1.2",
|
|
37
|
+
"@alinea/input.link": "0.1.2",
|
|
38
|
+
"@alinea/input.list": "0.1.2",
|
|
39
|
+
"@alinea/input.number": "0.1.2",
|
|
40
|
+
"@alinea/input.object": "0.1.2",
|
|
41
|
+
"@alinea/input.path": "0.1.2",
|
|
42
|
+
"@alinea/input.richtext": "0.1.2",
|
|
43
|
+
"@alinea/input.select": "0.1.2",
|
|
44
|
+
"@alinea/input.tabs": "0.1.2",
|
|
45
|
+
"@alinea/input.text": "0.1.2",
|
|
45
46
|
"@alinea/sqlite-wasm": "^0.1.6",
|
|
46
|
-
"@alinea/store": "0.
|
|
47
|
-
"@alinea/ui": "0.
|
|
47
|
+
"@alinea/store": "0.1.2",
|
|
48
|
+
"@alinea/ui": "0.1.2"
|
|
48
49
|
}
|
|
49
50
|
}
|