pipesol-notificationbar 1.0.5 → 1.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.
@@ -4,10 +4,13 @@ export interface TermsAndPrivacyProps {
4
4
  url_politica_privacidade: string;
5
5
  background_color?: string;
6
6
  color?: string;
7
+ border_radius?: string;
7
8
  background_color_button_ok?: string;
8
9
  color_button_ok?: string;
10
+ border_radius_button_ok?: string;
9
11
  background_color_button_cancel?: string;
10
12
  color_button_cancel?: string;
13
+ border_radius_button_cancel?: string;
11
14
  background_color_link?: string;
12
15
  color_link?: string;
13
16
  background_color_hover_link?: string;
@@ -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,7 @@
1
+ export interface ColorProps {
2
+ background?: string;
3
+ backgroundHover?: string;
4
+ colorText?: string;
5
+ colorHover?: string;
6
+ }
7
+ export declare const COLOR_STYLE_FORWARD_PROPS: (keyof ColorProps)[];
@@ -0,0 +1,7 @@
1
+ export const COLOR_STYLE_FORWARD_PROPS = [
2
+ 'background',
3
+ 'colorText',
4
+ 'backgroundHover',
5
+ 'colorHover',
6
+ ];
7
+ //# sourceMappingURL=ColorProps.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ColorProps.js","sourceRoot":"","sources":["../../../src/types/style/ColorProps.ts"],"names":[],"mappings":"AAOA,MAAM,CAAC,MAAM,yBAAyB,GAAyB;IAC7D,YAAY;IACZ,WAAW;IACX,iBAAiB;IACjB,YAAY;CACb,CAAC"}
@@ -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-notificationbar",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/pipeline-solucoes/cmp-barra-notificacao"