@hanzogui/spacer 2.0.4 → 2.0.7
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/cjs/Spacer.cjs +1 -1
- package/dist/cjs/Spacer.native.js +1 -1
- package/dist/cjs/spacedChildren.cjs +1 -1
- package/dist/cjs/spacedChildren.native.js +1 -1
- package/dist/esm/Spacer.mjs +1 -1
- package/dist/esm/Spacer.native.js +1 -1
- package/dist/esm/spacedChildren.mjs +1 -1
- package/dist/esm/spacedChildren.native.js +1 -1
- package/package.json +1 -1
- package/src/Spacer.tsx +1 -1
- package/src/spacedChildren.tsx +1 -1
- package/src/types.ts +1 -1
- package/types/types.d.ts +1 -1
package/dist/cjs/Spacer.cjs
CHANGED
|
@@ -23,7 +23,7 @@ __export(Spacer_exports, {
|
|
|
23
23
|
Spacer: () => Spacer
|
|
24
24
|
});
|
|
25
25
|
module.exports = __toCommonJS(Spacer_exports);
|
|
26
|
-
var import_gui_web = require("@
|
|
26
|
+
var import_gui_web = require("@hanzogui/web");
|
|
27
27
|
const getSpacerSize = (size, {
|
|
28
28
|
tokens
|
|
29
29
|
}) => {
|
|
@@ -25,7 +25,7 @@ __export(Spacer_exports, {
|
|
|
25
25
|
Spacer: () => Spacer
|
|
26
26
|
});
|
|
27
27
|
module.exports = __toCommonJS(Spacer_exports);
|
|
28
|
-
var import_gui_web = require("@
|
|
28
|
+
var import_gui_web = require("@hanzogui/web"),
|
|
29
29
|
getSpacerSize = function (size, param) {
|
|
30
30
|
var {
|
|
31
31
|
tokens
|
|
@@ -34,7 +34,7 @@ __export(spacedChildren_exports, {
|
|
|
34
34
|
spacedChildren: () => spacedChildren
|
|
35
35
|
});
|
|
36
36
|
module.exports = __toCommonJS(spacedChildren_exports);
|
|
37
|
-
var import_gui_web = require("@
|
|
37
|
+
var import_gui_web = require("@hanzogui/web"),
|
|
38
38
|
import_react = __toESM(require("react"), 1),
|
|
39
39
|
import_Spacer = require("./Spacer.cjs"),
|
|
40
40
|
import_Unspaced = require("./Unspaced.cjs"),
|
|
@@ -37,7 +37,7 @@ __export(spacedChildren_exports, {
|
|
|
37
37
|
});
|
|
38
38
|
module.exports = __toCommonJS(spacedChildren_exports);
|
|
39
39
|
var import_jsx_runtime = require("react/jsx-runtime"),
|
|
40
|
-
import_gui_web = require("@
|
|
40
|
+
import_gui_web = require("@hanzogui/web"),
|
|
41
41
|
import_react = __toESM(require("react"), 1),
|
|
42
42
|
import_Spacer = require("./Spacer.native.js"),
|
|
43
43
|
import_Unspaced = require("./Unspaced.native.js");
|
package/dist/esm/Spacer.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import { createComponent } from "@
|
|
2
|
+
import { createComponent } from "@hanzogui/web";
|
|
3
3
|
import React from "react";
|
|
4
4
|
import { Spacer } from "./Spacer.native.js";
|
|
5
5
|
import { isUnspaced } from "./Unspaced.native.js";
|
package/package.json
CHANGED
package/src/Spacer.tsx
CHANGED
package/src/spacedChildren.tsx
CHANGED
package/src/types.ts
CHANGED
package/types/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { DebugProp, SpaceTokens, SpaceValue } from '@
|
|
1
|
+
import type { DebugProp, SpaceTokens, SpaceValue } from '@hanzogui/web';
|
|
2
2
|
export type SpaceDirection = 'vertical' | 'horizontal' | 'both';
|
|
3
3
|
export type SpacedChildrenProps = {
|
|
4
4
|
isZStack?: boolean;
|