pipesol-button 1.0.11 → 1.0.13

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.
@@ -0,0 +1 @@
1
+ export declare const COMMON_STYLE_FORWARD_PROPS: readonly ["width", "height", "padding", "margin", "background", "backgroundHover", "colorText", "colorHover", "borderRadius", "boxShadow"];
@@ -0,0 +1,14 @@
1
+ // types/commonForwardProps.ts
2
+ export const COMMON_STYLE_FORWARD_PROPS = [
3
+ "width",
4
+ "height",
5
+ "padding",
6
+ "margin",
7
+ "background",
8
+ "backgroundHover",
9
+ "colorText",
10
+ "colorHover",
11
+ "borderRadius",
12
+ "boxShadow",
13
+ ];
14
+ //# sourceMappingURL=CommonForwardProps.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CommonForwardProps.js","sourceRoot":"","sources":["../../src/types/CommonForwardProps.ts"],"names":[],"mappings":"AAAA,8BAA8B;AAC9B,MAAM,CAAC,MAAM,0BAA0B,GAAG;IACxC,OAAO;IACP,QAAQ;IACR,SAAS;IACT,QAAQ;IACR,YAAY;IACZ,iBAAiB;IACjB,WAAW;IACX,YAAY;IACZ,cAAc;IACd,WAAW;CACH,CAAC"}
@@ -0,0 +1,5 @@
1
+ export interface BorderProps {
2
+ borderRadius?: string;
3
+ border?: string;
4
+ boxShadow?: string;
5
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=BorderProps.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BorderProps.js","sourceRoot":"","sources":["../../../src/types/style/BorderProps.ts"],"names":[],"mappings":""}
@@ -0,0 +1,6 @@
1
+ export interface ColorProps {
2
+ background?: string;
3
+ backgroundHover?: string;
4
+ colorText?: string;
5
+ colorHover?: string;
6
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=ColorProps.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ColorProps.js","sourceRoot":"","sources":["../../../src/types/style/ColorProps.ts"],"names":[],"mappings":""}
@@ -0,0 +1,5 @@
1
+ import { LayoutProps } from "./LayoutProps";
2
+ import { ColorProps } from "./ColorProps";
3
+ import { BorderProps } from "./BorderProps";
4
+ export interface CommonStyleProps extends LayoutProps, ColorProps, BorderProps {
5
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=CommonStyleProps.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CommonStyleProps.js","sourceRoot":"","sources":["../../../src/types/style/CommonStyleProps.ts"],"names":[],"mappings":""}
@@ -0,0 +1,6 @@
1
+ export interface LayoutProps {
2
+ width?: string;
3
+ height?: string;
4
+ padding?: string;
5
+ margin?: string;
6
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=LayoutProps.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LayoutProps.js","sourceRoot":"","sources":["../../../src/types/style/LayoutProps.ts"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pipesol-button",
3
- "version": "1.0.11",
3
+ "version": "1.0.13",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/pipeline-solucoes/cmp-button"