pipesol-button 1.0.2 → 1.0.9

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/README.md CHANGED
@@ -1,31 +1,38 @@
1
- # Sobre
2
-
3
- Este projeto é uma biblioteca React preparada para publicação no npm.
4
- Essa biblioteca contem componentes de barra de notificacao.
5
- Abaixo está o passo a passo para publicar ou atualizar a lib.
6
-
7
- # Pré-requisitos
8
-
9
- 1. Conta no NPM
10
- - Crie uma conta em: https://www.npmjs.com/signup
11
-
12
- 2. Node.js instalado
13
- - Recomenda-se uma versão LTS. Verifique com: node -v
14
- - Login no NPM pelo terminal: npm login
15
- npm: pipeline-solucoes
16
- senha:pipesollinecoes
17
- key: pipeline@12345#
18
-
19
- # Como Publicar a biblioteca:
20
-
21
- 1. Instalar dependências: npm install
22
-
23
- 2. No package.json, altere o campo version de acordo com a semântica de versionamento.
24
- 1.0.1 correção de bug
25
- 1.1.0 – nova funcionalidade compatível
26
- 2.0.0 mudanças incompatíveis
27
-
28
- - para publicar versão beta: "1.0.0-beta.x"
29
-
30
- 3. Comando para versao beta: npm run release-beta
31
- Comando para versao oficial: npm run release
1
+ # Sobre
2
+
3
+ Este projeto é uma biblioteca React preparada para publicação no npm.
4
+ Essa biblioteca contem componentes de botao.
5
+
6
+ Abaixo está o passo a passo para publicar ou atualizar a lib.
7
+
8
+ # Pré-requisitos
9
+
10
+ 1. Node.js instalado
11
+ - Recomenda-se uma versão LTS. Verifique com: node -v
12
+
13
+ # Como Publicar a biblioteca:
14
+
15
+ 1. Instalar dependências: npm install
16
+
17
+ 2. No package.json, altere o campo version de acordo com a semântica de versionamento.
18
+ 1.0.1 – correção de bug
19
+ 1.1.0 nova funcionalidade compatível
20
+ 2.0.0 – mudanças incompatíveis
21
+
22
+ - para publicar versão beta: "1.0.0-beta.x"
23
+
24
+ 3. Este pacote é publicado exclusivamente via CI/CD (GitHub Actions).
25
+
26
+ - Releases são disparados apenas por tags Git (vX.Y.Z)
27
+ - Publicações manuais (npm publish) são desabilitadas
28
+ - A autenticação no npm utiliza Trusted Publishing (OIDC)
29
+ - Nenhum token npm é armazenado ou utilizado
30
+ - Tokens de publicação estão explicitamente desabilitados
31
+ - Autenticação em dois fatores (2FA) é obrigatória
32
+ - Versionamento segue Semantic Versioning (SemVer)
33
+
34
+ Esse modelo garante publicações seguras, rastreáveis e reprodutíveis.
35
+
36
+ # Comando:
37
+
38
+ 1. npm view pipesol-button versions --json - verifica todas as versões publicadas no npm.
@@ -1,5 +1,5 @@
1
1
  import { ButtonKind } from "@/types/ButtonKind";
2
- export declare const StyledButtonKind: import("@emotion/styled").StyledComponent<import("@mui/material").ButtonOwnProps & Omit<import("@mui/material").ButtonBaseOwnProps, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "className" | "style" | "classes" | "action" | "centerRipple" | "children" | "disabled" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "sx" | "tabIndex" | "TouchRippleProps" | "touchRippleRef" | "href" | "color" | "disableElevation" | "disableFocusRipple" | "endIcon" | "fullWidth" | "loading" | "loadingIndicator" | "loadingPosition" | "size" | "startIcon" | "variant"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
2
+ export declare const StyledButtonKind: import("@emotion/styled").StyledComponent<import("@mui/material").ButtonOwnProps & Omit<import("@mui/material").ButtonBaseOwnProps, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "style" | "color" | "children" | "sx" | "className" | "tabIndex" | "classes" | "href" | "action" | "centerRipple" | "disabled" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "loading" | "loadingIndicator" | "size" | "variant" | "disableElevation" | "endIcon" | "fullWidth" | "loadingPosition" | "startIcon"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
3
3
  kind: ButtonKind;
4
4
  width?: string;
5
5
  height?: string;