@pipelinesolucoes/theme 1.0.7-beta.5 → 1.0.7-beta.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.
@@ -1,3 +1,4 @@
1
+ import { PipelineSolucoesTypographyTokens } from "./typographyTokens";
1
2
  export type ButtonKind = "primary" | "secondary" | "tertiary" | "delete" | "none";
2
3
  export interface PipelineSolucoesButtonTokens {
3
4
  background?: string;
@@ -11,4 +12,5 @@ export interface PipelineSolucoesButtonTokens {
11
12
  border?: string;
12
13
  padding?: string;
13
14
  margin?: string;
15
+ typography?: PipelineSolucoesTypographyTokens;
14
16
  }
@@ -2,11 +2,20 @@ import { BorderProps } from "../props/BorderProps";
2
2
  import { ColorProps } from "../props/ColorProps";
3
3
  import { IconProps } from "../props/IconProps";
4
4
  import { LayoutProps } from "../props/LayoutProps";
5
+ import { PipelineSolucoesButtonTokens } from "./buttonTokens";
6
+ import { PipelineSolucoesTypographyTokens } from "./typographyTokens";
5
7
  export interface PipelineSolucoesNotificationTokens extends Pick<ColorProps, 'background' | 'color'>, BorderProps, LayoutProps {
6
8
  success?: PipelineSolucoesNotificationIconTokens;
7
9
  error?: PipelineSolucoesNotificationIconTokens;
8
10
  warning?: PipelineSolucoesNotificationIconTokens;
9
11
  info?: PipelineSolucoesNotificationIconTokens;
12
+ corfim?: PipelineSolucoesNotificationIconTokens;
13
+ buttons?: {
14
+ primary?: PipelineSolucoesButtonTokens;
15
+ secondary?: PipelineSolucoesButtonTokens;
16
+ tertiary?: PipelineSolucoesButtonTokens;
17
+ };
18
+ typography?: PipelineSolucoesTypographyTokens;
10
19
  }
11
20
  export interface PipelineSolucoesNotificationIconTokens extends Pick<IconProps, 'icon' | 'color' | 'size'> {
12
21
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipelinesolucoes/theme",
3
- "version": "1.0.7-beta.5",
3
+ "version": "1.0.7-beta.7",
4
4
  "description": "Base de tema e design system da Pipeline Soluções",
5
5
  "license": "UNLICENSED",
6
6
  "repository": {