ziko 0.34.2 → 0.35.1
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/ziko.cjs +162 -162
- package/dist/ziko.js +194 -248
- package/dist/ziko.min.js +2 -2
- package/dist/ziko.mjs +194 -248
- package/package.json +6 -4
- package/src/index.js +2 -2
- package/src/reactivity/hooks/UI/index.js +2 -2
- package/src/reactivity/hooks/index.js +1 -1
- package/src/ui/{elements/ZikoUIElement.js → constructors/ziko-ui-element.js} +12 -7
- package/src/ui/constructors/ziko-ui-node.js +15 -0
- package/src/ui/elements/flex/index.js +1 -1
- package/src/ui/elements/grid/index.js +1 -1
- package/src/ui/elements/io/Inputs/__helpers__.js +1 -1
- package/src/ui/elements/io/Inputs/input/index.js +1 -1
- package/src/ui/elements/io/Inputs/input-file/input-image.js +1 -1
- package/src/ui/elements/io/Select/index.js +1 -1
- package/src/ui/elements/io/Textarea/index.js +1 -1
- package/src/ui/elements/list/index.js +1 -1
- package/src/ui/elements/media/Image/figure.js +1 -1
- package/src/ui/elements/media/Image/image.js +1 -1
- package/src/ui/elements/media/__ZikoUIDynamicMediaELement__.js +1 -1
- package/src/ui/elements/misc/hyperscript.js +1 -1
- package/src/ui/elements/misc/index.js +1 -1
- package/src/ui/elements/misc/suspense.js +1 -1
- package/src/ui/elements/misc/xml-wrapper.js +1 -1
- package/src/ui/elements/semantic/index.js +1 -1
- package/src/ui/elements/table/elements.js +1 -1
- package/src/ui/elements/table/table.js +1 -1
- package/src/ui/elements/text/__ZikoUIText__.js +1 -1
- package/src/ui/elements/text/heading.js +1 -1
- package/src/ui/index.js +1 -1
- package/src/ui/tags/index.js +1 -1
- package/src/ui/utils/index.js +1 -1
- package/src/watch/dom-observer/ziko-observer.js +15 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import ZikoUIElement from "
|
|
1
|
+
import ZikoUIElement from "../../../../constructors/ziko-ui-element.js";
|
|
2
2
|
import { useInputEvent } from "../../../../../reactivity/index.js";
|
|
3
3
|
class ZikoUIInput extends ZikoUIElement {
|
|
4
4
|
constructor(type, name , value = "", datalist) {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import ZikoUIElement from "
|
|
1
|
+
import ZikoUIElement from "../../constructors/ziko-ui-element.js"
|
|
2
2
|
import { tbody,caption,ZikoUICaption,thead} from "./elements.js";
|
|
3
3
|
import { matrix } from "../../../math/matrix/index.js";
|
|
4
4
|
import { MatrixToTableUI } from "./utils.js";
|
package/src/ui/index.js
CHANGED
|
@@ -20,7 +20,7 @@ import * as Flex from "./elements/flex/index.js";
|
|
|
20
20
|
import * as Grid from "./elements/grid/index.js";
|
|
21
21
|
|
|
22
22
|
|
|
23
|
-
import ZikoUIElement from "./
|
|
23
|
+
import ZikoUIElement from "./constructors/ziko-ui-element.js";
|
|
24
24
|
|
|
25
25
|
export{
|
|
26
26
|
ZikoUIElement
|
package/src/ui/tags/index.js
CHANGED
package/src/ui/utils/index.js
CHANGED