@uniweb/core 0.4.4 → 0.4.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniweb/core",
3
- "version": "0.4.4",
3
+ "version": "0.4.5",
4
4
  "description": "Core classes for the Uniweb platform - Uniweb, Website, Page, Block",
5
5
  "type": "module",
6
6
  "exports": {
package/src/index.js CHANGED
@@ -12,11 +12,7 @@ export { Uniweb }
12
12
  export { default as Website } from './website.js'
13
13
  export { default as Page } from './page.js'
14
14
  export { default as Block } from './block.js'
15
- export { default as Input } from './input.js'
16
- export { default as Analytics } from './analytics.js'
17
15
  export { default as Theme } from './theme.js'
18
- export { default as DataStore } from './datastore.js'
19
- export { default as EntityStore } from './entity-store.js'
20
16
 
21
17
  /**
22
18
  * The singleton Uniweb instance.
package/src/input.js DELETED
@@ -1,15 +0,0 @@
1
- /**
2
- * Input
3
- *
4
- * Handles input/form data within blocks.
5
- */
6
-
7
- export default class Input {
8
- constructor(inputData) {
9
- this.data = inputData || {}
10
- }
11
-
12
- getData() {
13
- return this.data
14
- }
15
- }