@hanzogui/card 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/Card.cjs +2 -2
- package/dist/cjs/Card.native.js +2 -2
- package/dist/esm/Card.mjs +2 -2
- package/dist/esm/Card.native.js +2 -2
- package/dist/jsx/Card.mjs +2 -2
- package/dist/jsx/Card.native.js +2 -2
- package/package.json +1 -1
- package/src/Card.tsx +3 -3
package/dist/cjs/Card.cjs
CHANGED
|
@@ -27,8 +27,8 @@ __export(Card_exports, {
|
|
|
27
27
|
CardHeader: () => CardHeader
|
|
28
28
|
});
|
|
29
29
|
module.exports = __toCommonJS(Card_exports);
|
|
30
|
-
var import_gui_stacks = require("@
|
|
31
|
-
import_gui_web = require("@
|
|
30
|
+
var import_gui_stacks = require("@hanzogui/stacks"),
|
|
31
|
+
import_gui_web = require("@hanzogui/web");
|
|
32
32
|
const CardContext = (0, import_gui_web.createStyledContext)({
|
|
33
33
|
size: "$true"
|
|
34
34
|
}),
|
package/dist/cjs/Card.native.js
CHANGED
|
@@ -29,8 +29,8 @@ __export(Card_exports, {
|
|
|
29
29
|
CardHeader: () => CardHeader
|
|
30
30
|
});
|
|
31
31
|
module.exports = __toCommonJS(Card_exports);
|
|
32
|
-
var import_gui_stacks = require("@
|
|
33
|
-
import_gui_web = require("@
|
|
32
|
+
var import_gui_stacks = require("@hanzogui/stacks"),
|
|
33
|
+
import_gui_web = require("@hanzogui/web"),
|
|
34
34
|
CardContext = (0, import_gui_web.createStyledContext)({
|
|
35
35
|
size: "$true"
|
|
36
36
|
}),
|
package/dist/esm/Card.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { YStack } from "@
|
|
2
|
-
import { createStyledContext, styled, withStaticProperties } from "@
|
|
1
|
+
import { YStack } from "@hanzogui/stacks";
|
|
2
|
+
import { createStyledContext, styled, withStaticProperties } from "@hanzogui/web";
|
|
3
3
|
const CardContext = createStyledContext({
|
|
4
4
|
size: "$true"
|
|
5
5
|
}),
|
package/dist/esm/Card.native.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { YStack } from "@
|
|
2
|
-
import { createStyledContext, styled, withStaticProperties } from "@
|
|
1
|
+
import { YStack } from "@hanzogui/stacks";
|
|
2
|
+
import { createStyledContext, styled, withStaticProperties } from "@hanzogui/web";
|
|
3
3
|
var CardContext = createStyledContext({
|
|
4
4
|
size: "$true"
|
|
5
5
|
}),
|
package/dist/jsx/Card.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { YStack } from "@
|
|
2
|
-
import { createStyledContext, styled, withStaticProperties } from "@
|
|
1
|
+
import { YStack } from "@hanzogui/stacks";
|
|
2
|
+
import { createStyledContext, styled, withStaticProperties } from "@hanzogui/web";
|
|
3
3
|
const CardContext = createStyledContext({
|
|
4
4
|
size: "$true"
|
|
5
5
|
}),
|
package/dist/jsx/Card.native.js
CHANGED
|
@@ -29,8 +29,8 @@ __export(Card_exports, {
|
|
|
29
29
|
CardHeader: () => CardHeader
|
|
30
30
|
});
|
|
31
31
|
module.exports = __toCommonJS(Card_exports);
|
|
32
|
-
var import_gui_stacks = require("@
|
|
33
|
-
import_gui_web = require("@
|
|
32
|
+
var import_gui_stacks = require("@hanzogui/stacks"),
|
|
33
|
+
import_gui_web = require("@hanzogui/web"),
|
|
34
34
|
CardContext = (0, import_gui_web.createStyledContext)({
|
|
35
35
|
size: "$true"
|
|
36
36
|
}),
|
package/package.json
CHANGED
package/src/Card.tsx
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { YStack } from '@
|
|
2
|
-
import type { GetProps, SizeTokens } from '@
|
|
3
|
-
import { createStyledContext, styled, withStaticProperties } from '@
|
|
1
|
+
import { YStack } from '@hanzogui/stacks'
|
|
2
|
+
import type { GetProps, SizeTokens } from '@hanzogui/web'
|
|
3
|
+
import { createStyledContext, styled, withStaticProperties } from '@hanzogui/web'
|
|
4
4
|
|
|
5
5
|
const CardContext = createStyledContext({
|
|
6
6
|
size: '$true' as SizeTokens,
|