domql 1.5.78 → 1.5.80

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
@@ -2,7 +2,7 @@
2
2
  "name": "domql",
3
3
  "description": "DOM rendering Javascript framework at early stage.",
4
4
  "author": "symbo.ls",
5
- "version": "1.5.78",
5
+ "version": "1.5.80",
6
6
  "repository": "https://github.com/domql/domql",
7
7
  "publishConfig": {
8
8
  "registry": "https://registry.npmjs.org"
@@ -6,7 +6,8 @@ import { is, isObject, isFunction, isUndefined } from '@domql/utils'
6
6
 
7
7
  export const IGNORE_STATE_PARAMS = [
8
8
  'update', 'parse', 'clean', 'create', 'parent', '__element', '__depends', '__ref', '__root',
9
- '__components', '__projectSystem', '__projectState', '__projectLibrary',
9
+ '__components',
10
+ '__projectSystem', '__projectState', '__projectComponents', '__projectPages',
10
11
  'projectStateUpdate', 'projectSystemUpdate'
11
12
  ]
12
13
 
@@ -170,7 +171,8 @@ export const createState = function (element, parent) {
170
171
  state.__components = (state.__root || state).COMPONENTS
171
172
  state.__projectSystem = (state.__root || state).PROJECT_SYSTEM
172
173
  state.__projectState = (state.__root || state).PROJECT_STATE
173
- state.__projectLibrary = (state.__root || state).PROJECT_LIBRARY
174
+ state.__projectComponents = (state.__root || state).PROJECT_COMPONENTS
175
+ state.__projectPages = (state.__root || state).PROJECT_PAGES
174
176
 
175
177
  // run `on.stateCreated`
176
178
  if (element.on && isFunction(element.on.stateCreated)) {