@manamerge/mana-atomic-ui 1.0.190 → 1.0.192

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.
@@ -142,7 +142,7 @@ const button = {
142
142
  },
143
143
  hover: {
144
144
  text: colors.one.a,
145
- border: `1px solid transparent`,
145
+ border: `1px solid ${colors.one.a}`,
146
146
  background: `${colors.two.g}`
147
147
  },
148
148
  active: {
@@ -14,15 +14,15 @@ const cardSimpleRender = {
14
14
  maxWidth: "550px",
15
15
  minWidth: "250px",
16
16
  focus: {
17
- border: "none",
17
+ border: "",
18
18
  outline: `2px dashed ${colors.two.c}`,
19
- boxShadow: "none",
19
+ boxShadow: "",
20
20
  transition: "outline 0.5s ease"
21
21
  },
22
22
  hover: {
23
- border: "none",
23
+ border: "",
24
24
  outline: `2px solid ${colors.two.c}`,
25
- boxShadow: "none",
25
+ boxShadow: "",
26
26
  transition: "outline 0.5s ease"
27
27
  },
28
28
 
@@ -58,7 +58,7 @@ const header = {
58
58
  },
59
59
  "Header-secondary": {
60
60
  height: "380px",
61
- backgroundColor: "rgba(186, 250, 97, 0.49)",
61
+ backgroundColor: colors.transparent,
62
62
  justifyContent: "flex-start",
63
63
  bannerColor: "lightgray",
64
64
  wrapperHeader: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@manamerge/mana-atomic-ui",
3
- "version": "1.0.190",
3
+ "version": "1.0.192",
4
4
  "description": "Mana Merge design system",
5
5
  "license": "ISC",
6
6
  "author": "MM",
@@ -1,11 +0,0 @@
1
- import { Meta, StoryObj } from "@storybook/react";
2
- import { CardSimpleRenderTypes } from "./CardSimpleRender";
3
- declare const meta: Meta<CardSimpleRenderTypes>;
4
- export default meta;
5
- type Story = StoryObj<CardSimpleRenderTypes>;
6
- export declare const Default: Story;
7
- export declare const Hover: Story;
8
- export declare const Flex: Story;
9
- export declare const FlexExtra: Story;
10
- export declare const Flex2: Story;
11
- export declare const Isolado: Story;