@abrasileirado/dsgovbr-bootstraped 0.1.0
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/LICENSE +21 -0
- package/README.md +62 -0
- package/dist/dsgovbr-bootstraped.css +11872 -0
- package/dist/dsgovbr-bootstraped.css.map +1 -0
- package/dist/dsgovbr-bootstraped.min.css +5 -0
- package/package.json +53 -0
- package/src/scss/_bootstrap-settings.scss +142 -0
- package/src/scss/_tokens.scss +78 -0
- package/src/scss/components/.gitkeep +0 -0
- package/src/scss/components/_card.scss +8 -0
- package/src/scss/index.scss +18 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Abrasileirado
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# dsgovbr-bootstraped
|
|
2
|
+
|
|
3
|
+
> Projeto comunitário, independente e não oficial. Não representa nem
|
|
4
|
+
> implica homologação ou endosso pelo GOV.BR DS, pelo Governo Federal ou
|
|
5
|
+
> pelo projeto Bootstrap.
|
|
6
|
+
|
|
7
|
+
[](https://github.com/abrasileirado/dsgovbr-bootstraped/actions/workflows/semgrep.yml)
|
|
8
|
+
[](https://github.com/abrasileirado/dsgovbr-bootstraped/actions/workflows/pages.yml)
|
|
9
|
+
|
|
10
|
+
Camada de compatibilidade visual entre o **Bootstrap 5** e o **Design
|
|
11
|
+
System do Governo Digital Brasileiro (GOV.BR DS)**: continue escrevendo
|
|
12
|
+
`.btn`, `.form-control`, `.alert`, `.card` — sem exigir nenhuma classe
|
|
13
|
+
`.br-*` — e receba a aparência visual do GOV.BR DS.
|
|
14
|
+
|
|
15
|
+
## Antes / depois
|
|
16
|
+
|
|
17
|
+
O mesmo HTML, com dois CSS diferentes:
|
|
18
|
+
|
|
19
|
+
| Bootstrap padrão | Com dsgovbr-bootstraped |
|
|
20
|
+
|---|---|
|
|
21
|
+
| [ver ao vivo →](https://abrasileirado.github.io/dsgovbr-bootstraped/exemplos/comparacao-padrao.html) | [ver ao vivo →](https://abrasileirado.github.io/dsgovbr-bootstraped/exemplos/comparacao-tema.html) |
|
|
22
|
+
|
|
23
|
+
Veja também a [tela de login completa](https://abrasileirado.github.io/dsgovbr-bootstraped/exemplos/login.html)
|
|
24
|
+
e o [catálogo de componentes](https://abrasileirado.github.io/dsgovbr-bootstraped/componentes/index.html)
|
|
25
|
+
(variantes, tamanhos, estados e diferenças conhecidas por componente).
|
|
26
|
+
|
|
27
|
+
## Estado do projeto
|
|
28
|
+
|
|
29
|
+
Em desenvolvimento ativo (MVP). O pacote **ainda não foi publicado no
|
|
30
|
+
npm** — ver [requisitos e matriz de compatibilidade](docs/requisitos.md)
|
|
31
|
+
para o que já é suportado e o que está fora do escopo atual.
|
|
32
|
+
|
|
33
|
+
## Início rápido
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
git clone --recurse-submodules https://github.com/abrasileirado/dsgovbr-bootstraped.git
|
|
37
|
+
cd dsgovbr-bootstraped
|
|
38
|
+
npm install
|
|
39
|
+
npm run build
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
```html
|
|
43
|
+
<link rel="stylesheet" href="dist/dsgovbr-bootstraped.min.css">
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
Nenhum outro CSS do Bootstrap precisa ser carregado — a build é autônoma
|
|
47
|
+
(já inclui o Bootstrap inteiro recompilado com os tokens do GOV.BR DS).
|
|
48
|
+
Guia completo: [Getting Started](docs/getting-started.md) ·
|
|
49
|
+
[Setup de desenvolvimento](docs/setup.md).
|
|
50
|
+
|
|
51
|
+
## Documentação
|
|
52
|
+
|
|
53
|
+
- [docs/index.md](docs/index.md) — índice completo da documentação.
|
|
54
|
+
- [docs/requisitos.md](docs/requisitos.md) — escopo, decisões e matriz de compatibilidade.
|
|
55
|
+
- [Catálogo de componentes](https://abrasileirado.github.io/dsgovbr-bootstraped/componentes/index.html) — por componente suportado.
|
|
56
|
+
- [Como contribuir](docs/contribua.md).
|
|
57
|
+
|
|
58
|
+
## Licença
|
|
59
|
+
|
|
60
|
+
MIT — ver [LICENSE](LICENSE). Bibliotecas de terceiros usadas (Bootstrap,
|
|
61
|
+
`@govbr-ds/core`) mantêm suas próprias licenças (também MIT) e permanecem
|
|
62
|
+
como git submodules em `vendor/`, nunca redistribuídas neste repositório.
|