@cdx-ui/components 0.0.1-alpha.6 → 0.0.1-alpha.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/README.md +1 -1
- package/lib/commonjs/components/Stack/HStack.js +1 -1
- package/lib/commonjs/components/Stack/VStack.js +1 -1
- package/lib/module/components/Stack/HStack.js +1 -1
- package/lib/module/components/Stack/VStack.js +1 -1
- package/package.json +3 -3
- package/src/components/Stack/HStack.tsx +1 -1
- package/src/components/Stack/VStack.tsx +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Styled, theme-aware UI components for the Candescent Design System.
|
|
4
4
|
|
|
5
|
-
Built on top of [`@cdx-ui/primitives`](../primitives/) and [`@cdx-ui/
|
|
5
|
+
Built on top of [`@cdx-ui/primitives`](../primitives/) and [`@cdx-ui/styles`](../styles/), styled via [Uniwind](https://uniwind.dev) + [CVA](https://cva.style).
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
@@ -7,7 +7,7 @@ exports.HStack = void 0;
|
|
|
7
7
|
var _react = require("react");
|
|
8
8
|
var _reactNative = require("react-native");
|
|
9
9
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
10
|
-
// import { spacing } from '@cdx-ui/
|
|
10
|
+
// import { spacing } from '@cdx-ui/styles';
|
|
11
11
|
|
|
12
12
|
// TODO: Integrate with tokens (multiply by spacing)
|
|
13
13
|
const spaceScale = {
|
|
@@ -7,7 +7,7 @@ exports.VStack = void 0;
|
|
|
7
7
|
var _react = require("react");
|
|
8
8
|
var _reactNative = require("react-native");
|
|
9
9
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
10
|
-
// import { spacing } from '@cdx-ui/
|
|
10
|
+
// import { spacing } from '@cdx-ui/styles';
|
|
11
11
|
|
|
12
12
|
// TODO: Integrate with tokens (multiply by spacing)
|
|
13
13
|
const spaceScale = {
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import { forwardRef } from 'react';
|
|
4
4
|
import { View } from 'react-native';
|
|
5
|
-
// import { spacing } from '@cdx-ui/
|
|
5
|
+
// import { spacing } from '@cdx-ui/styles';
|
|
6
6
|
|
|
7
7
|
// TODO: Integrate with tokens (multiply by spacing)
|
|
8
8
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import { forwardRef } from 'react';
|
|
4
4
|
import { View } from 'react-native';
|
|
5
|
-
// import { spacing } from '@cdx-ui/
|
|
5
|
+
// import { spacing } from '@cdx-ui/styles';
|
|
6
6
|
|
|
7
7
|
// TODO: Integrate with tokens (multiply by spacing)
|
|
8
8
|
import { jsx as _jsx } from "react/jsx-runtime";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cdx-ui/components",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.7",
|
|
4
4
|
"main": "lib/commonjs/index.js",
|
|
5
5
|
"module": "lib/module/index.js",
|
|
6
6
|
"react-native": "src/index.ts",
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"class-variance-authority": "^0.7.1",
|
|
62
62
|
"uniwind": "1.4.1",
|
|
63
|
-
"@cdx-ui/primitives": "0.0.1-alpha.
|
|
64
|
-
"@cdx-ui/utils": "0.0.1-alpha.
|
|
63
|
+
"@cdx-ui/primitives": "0.0.1-alpha.7",
|
|
64
|
+
"@cdx-ui/utils": "0.0.1-alpha.7"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"@types/react": "*",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { ForwardedRef } from 'react';
|
|
2
2
|
import { forwardRef } from 'react';
|
|
3
3
|
import { View, type ViewProps } from 'react-native';
|
|
4
|
-
// import { spacing } from '@cdx-ui/
|
|
4
|
+
// import { spacing } from '@cdx-ui/styles';
|
|
5
5
|
|
|
6
6
|
// TODO: Integrate with tokens (multiply by spacing)
|
|
7
7
|
const spaceScale = {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { ForwardedRef } from 'react';
|
|
2
2
|
import { forwardRef } from 'react';
|
|
3
3
|
import { View, type ViewProps } from 'react-native';
|
|
4
|
-
// import { spacing } from '@cdx-ui/
|
|
4
|
+
// import { spacing } from '@cdx-ui/styles';
|
|
5
5
|
|
|
6
6
|
// TODO: Integrate with tokens (multiply by spacing)
|
|
7
7
|
const spaceScale = {
|