@hanzogui/spacer 2.0.0 → 2.0.4

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@hanzogui/spacer",
3
- "version": "2.0.0",
3
+ "version": "2.0.4",
4
4
  "files": [
5
5
  "src",
6
6
  "types",
@@ -33,10 +33,10 @@
33
33
  "clean:build": "hanzo-gui-build clean:build"
34
34
  },
35
35
  "dependencies": {
36
- "@hanzogui/web": "2.0.0-rc.29"
36
+ "@hanzogui/web": "2.0.1"
37
37
  },
38
38
  "devDependencies": {
39
- "@hanzogui/build": "2.0.0-rc.29",
39
+ "@hanzogui/build": "2.0.1",
40
40
  "react": ">=19",
41
41
  "react-native": "0.83.2"
42
42
  },
package/src/Spacer.tsx CHANGED
@@ -1,4 +1,4 @@
1
- import { styled, View, type SizeTokens } from '@hanzogui/web'
1
+ import { styled, View, type SizeTokens } from '@hanzo/gui-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 '@hanzogui/web'
1
+ import { createComponent } from '@hanzo/gui-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 '@hanzogui/web'
1
+ import type { DebugProp, SpaceTokens, SpaceValue } from '@hanzo/gui-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 '@hanzogui/web';
1
+ import type { DebugProp, SpaceTokens, SpaceValue } from '@hanzo/gui-web';
2
2
  export type SpaceDirection = 'vertical' | 'horizontal' | 'both';
3
3
  export type SpacedChildrenProps = {
4
4
  isZStack?: boolean;