@abqm-ds/icons 1.0.13 → 1.0.15

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.
Files changed (55) hide show
  1. package/.turbo/turbo-build.log +8 -8
  2. package/CHANGELOG.md +12 -0
  3. package/README.md +2 -2
  4. package/dist/index.cjs +742 -148
  5. package/dist/index.d.cts +45 -1
  6. package/dist/index.d.ts +45 -1
  7. package/dist/index.js +720 -148
  8. package/package.json +5 -2
  9. package/scripts/move-icons.js +4 -3
  10. package/scripts/process.js +3 -2
  11. package/src/components/ApartacaoIconSEQM.tsx +20 -0
  12. package/src/components/BreakawayRopingIconSEQM.tsx +20 -0
  13. package/src/components/BulldogIconSEQM.tsx +20 -0
  14. package/src/components/CincoTamboresIconSEQM.tsx +20 -0
  15. package/src/components/ConformacaoIconSEQM.tsx +20 -0
  16. package/src/components/LacoCabecaIconSEQM.tsx +20 -0
  17. package/src/components/LacoCompridoIconSEQM.tsx +20 -0
  18. package/src/components/LacoCompridoTecnicoIconSEQM.tsx +20 -0
  19. package/src/components/LacoEmDuplaIconSEQM.tsx +20 -0
  20. package/src/components/LacoIndividualIconSEQM.tsx +20 -0
  21. package/src/components/LacoIndividualTecnicoIconSEQM.tsx +20 -0
  22. package/src/components/LacoPeIconSEQM.tsx +20 -0
  23. package/src/components/ManeabilidadeEVelocidadeIconSEQM.tsx +20 -0
  24. package/src/components/PerformanceHalterIconSEQM.tsx +20 -0
  25. package/src/components/RanchSortingIconSEQM.tsx +20 -0
  26. package/src/components/RedeasIconSEQM.tsx +20 -0
  27. package/src/components/SeisBalizasIconSEQM.tsx +20 -0
  28. package/src/components/TeamPenningIconSEQM.tsx +20 -0
  29. package/src/components/TresTamboresIconSEQM.tsx +20 -0
  30. package/src/components/VaquejadaIconSEQM.tsx +20 -0
  31. package/src/components/WesternPleasureIconSEQM.tsx +20 -0
  32. package/src/components/WorkingCowHorseIconSEQM.tsx +20 -0
  33. package/src/iconsSEQM/apartacao.svg +3 -0
  34. package/src/iconsSEQM/breakaway-roping.svg +3 -0
  35. package/src/iconsSEQM/bulldog.svg +3 -0
  36. package/src/iconsSEQM/cinco-tambores.svg +3 -0
  37. package/src/iconsSEQM/conformacao.svg +3 -0
  38. package/src/iconsSEQM/laco-cabeca.svg +3 -0
  39. package/src/iconsSEQM/laco-comprido-tecnico.svg +3 -0
  40. package/src/iconsSEQM/laco-comprido.svg +3 -0
  41. package/src/iconsSEQM/laco-em-dupla.svg +3 -0
  42. package/src/iconsSEQM/laco-individual-tecnico.svg +3 -0
  43. package/src/iconsSEQM/laco-individual.svg +3 -0
  44. package/src/iconsSEQM/laco-pe.svg +3 -0
  45. package/src/iconsSEQM/maneabilidade-e-velocidade.svg +6 -0
  46. package/src/iconsSEQM/performance-halter.svg +3 -0
  47. package/src/iconsSEQM/ranch-sorting.svg +3 -0
  48. package/src/iconsSEQM/redeas.svg +3 -0
  49. package/src/iconsSEQM/seis-balizas.svg +3 -0
  50. package/src/iconsSEQM/team-penning.svg +3 -0
  51. package/src/iconsSEQM/tres-tambores.svg +3 -0
  52. package/src/iconsSEQM/vaquejada.svg +4 -0
  53. package/src/iconsSEQM/western-pleasure.svg +3 -0
  54. package/src/iconsSEQM/working-cow-horse.svg +3 -0
  55. package/src/index.ts +22 -0
@@ -1,5 +1,5 @@
1
1
 
2
- > @abqm-ds/icons@1.0.13 build
2
+ > @abqm-ds/icons@1.0.15 build
3
3
  > tsup --dts
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -10,11 +10,11 @@
10
10
  CLI Cleaning output folder
11
11
  ESM Build start
12
12
  CJS Build start
13
- ESM dist/index.js 167.04 KB
14
- ESM ⚡️ Build success in 54ms
15
- CJS dist/index.cjs 168.20 KB
16
- CJS ⚡️ Build success in 61ms
13
+ ESM dist/index.js 1.01 MB
14
+ ESM ⚡️ Build success in 75ms
15
+ CJS dist/index.cjs 1.01 MB
16
+ CJS ⚡️ Build success in 81ms
17
17
  DTS Build start
18
- DTS ⚡️ Build success in 2456ms
19
- DTS dist/index.d.ts 3.50 KB
20
- DTS dist/index.d.cts 3.50 KB
18
+ DTS ⚡️ Build success in 2090ms
19
+ DTS dist/index.d.ts 6.24 KB
20
+ DTS dist/index.d.cts 6.24 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @abqm-ds/icons
2
2
 
3
+ ## 1.0.15
4
+
5
+ ### Patch Changes
6
+
7
+ - feat: 🎸 Adicição de icones e componentes
8
+
9
+ ## 1.0.14
10
+
11
+ ### Patch Changes
12
+
13
+ - feat: 🎸 Nova versão do package react/icons/tokens
14
+
3
15
  ## 1.0.13
4
16
 
5
17
  ### Patch Changes
package/README.md CHANGED
@@ -20,7 +20,7 @@ npm install @abqm-ds/icons
20
20
 
21
21
  ## ⚙️ Como Funciona
22
22
 
23
- 1. Adicione os arquivos **SVG** que deseja converter nas pastas `src/icons/` **ou** `src/logos/`:
23
+ 1. Adicione os arquivos **SVG** que deseja converter nas pastas `src/icons/`, `src/iconsSEQM/` **ou** `src/logos/`:
24
24
 
25
25
  > **Atenção:** A nomenclatura dos ícones deve ser capitalizada, ex:
26
26
  >
@@ -35,7 +35,7 @@ npm run generate:icons
35
35
  ```
36
36
 
37
37
  3. O processo de geração segue estas etapas:
38
- - Os SVGs das pastas `icons` e `logos` são convertidos e salvos temporariamente em `_temp` e `_logos`.
38
+ - Os SVGs das pastas `icons`, `iconsSEQM` e `logos` são convertidos e salvos temporariamente em `_temp`, `_iconsSEQM` e `_logos`.
39
39
  - Em seguida, são organizados e movidos para a pasta `components`.
40
40
 
41
41
  > 💡 Esse processo evita que todos os ícones existentes sejam modificados a cada nova adição. O script verifica se um ícone já existe e somente cria ou atualiza os que são realmente novos ou alterados.