domql 1.6.20 → 1.6.21

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,7 +1,7 @@
1
1
  {
2
2
  "name": "domql",
3
3
  "description": "DOM rendering Javascript framework at early stage.",
4
- "version": "1.6.20",
4
+ "version": "1.6.21",
5
5
  "repository": "https://github.com/domql/domql",
6
6
  "publishConfig": {
7
7
  "registry": "https://registry.npmjs.org"
@@ -1,4 +1,4 @@
1
1
  'use strict'
2
2
 
3
- import { state } from '@domql/mixins/state'
3
+ import { state } from '@domql/mixins'
4
4
  export default state
@@ -64,6 +64,8 @@ const update = function (params = {}, options = UPDATE_DEFAULT_OPTIONS) {
64
64
  if (initUpdateReturns === false) return element
65
65
  }
66
66
 
67
+ triggerEventOn('beforeClassAssign', element, options)
68
+
67
69
  const overwriteChanges = overwriteDeep(element, params, METHODS_EXL)
68
70
  const execChanges = throughUpdatedExec(element, { ignore: UPDATE_DEFAULT_OPTIONS })
69
71
  const definedChanges = throughUpdatedDefine(element)