@hanzogui/spacer 2.0.4 → 2.0.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.
@@ -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("@hanzo/gui-web");
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("@hanzo/gui-web"),
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("@hanzo/gui-web"),
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("@hanzo/gui-web"),
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");
@@ -1,4 +1,4 @@
1
- import { styled, View } from "@hanzo/gui-web";
1
+ import { styled, View } from "@hanzogui/web";
2
2
  const getSpacerSize = (size, {
3
3
  tokens
4
4
  }) => {
@@ -1,4 +1,4 @@
1
- import { styled, View } from "@hanzo/gui-web";
1
+ import { styled, View } from "@hanzogui/web";
2
2
  var getSpacerSize = function (size, param) {
3
3
  var {
4
4
  tokens
@@ -1,4 +1,4 @@
1
- import { createComponent } from "@hanzo/gui-web";
1
+ import { createComponent } from "@hanzogui/web";
2
2
  import React from "react";
3
3
  import { Spacer } from "./Spacer.mjs";
4
4
  import { isUnspaced } from "./Unspaced.mjs";
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
- import { createComponent } from "@hanzo/gui-web";
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hanzogui/spacer",
3
- "version": "2.0.4",
3
+ "version": "2.0.5",
4
4
  "files": [
5
5
  "src",
6
6
  "types",
package/src/Spacer.tsx CHANGED
@@ -1,4 +1,4 @@
1
- import { styled, View, type SizeTokens } from '@hanzo/gui-web'
1
+ import { styled, View, type SizeTokens } from '@hanzogui/web'
2
2
 
3
3
  const getSpacerSize = (size: SizeTokens | number | boolean, { tokens }) => {
4
4
  size = size === true ? '$true' : size
@@ -1,4 +1,4 @@
1
- import { createComponent } from '@hanzo/gui-web'
1
+ import { createComponent } from '@hanzogui/web'
2
2
  import React from 'react'
3
3
  import { Spacer } from './Spacer'
4
4
  import { isUnspaced } from './Unspaced'
package/src/types.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { DebugProp, SpaceTokens, SpaceValue } from '@hanzo/gui-web'
1
+ import type { DebugProp, SpaceTokens, SpaceValue } from '@hanzogui/web'
2
2
 
3
3
  export type SpaceDirection = 'vertical' | 'horizontal' | 'both'
4
4
 
package/types/types.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { DebugProp, SpaceTokens, SpaceValue } from '@hanzo/gui-web';
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;