@abqm-ds/icons 1.0.14 → 1.0.16

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 (115) hide show
  1. package/.turbo/turbo-build.log +9 -9
  2. package/CHANGELOG.md +12 -0
  3. package/README.md +13 -7
  4. package/dist/index.cjs +1108 -464
  5. package/dist/index.d.cts +56 -10
  6. package/dist/index.d.ts +56 -10
  7. package/dist/index.js +1084 -463
  8. package/package.json +10 -7
  9. package/scripts/move-icons.js +11 -6
  10. package/scripts/process.js +8 -2
  11. package/scripts/updateIndex.js +16 -6
  12. package/src/components/ApartacaoIconSEQM.tsx +20 -0
  13. package/src/components/BreakawayRopingIconSEQM.tsx +20 -0
  14. package/src/components/BulldogIconSEQM.tsx +20 -0
  15. package/src/components/CincoTamboresIconSEQM.tsx +20 -0
  16. package/src/components/ConformacaoIconSEQM.tsx +20 -0
  17. package/src/components/LacoCabecaIconSEQM.tsx +20 -0
  18. package/src/components/LacoCompridoIconSEQM.tsx +20 -0
  19. package/src/components/LacoCompridoTecnicoIconSEQM.tsx +20 -0
  20. package/src/components/LacoEmDuplaIconSEQM.tsx +20 -0
  21. package/src/components/LacoIndividualIconSEQM.tsx +20 -0
  22. package/src/components/LacoIndividualTecnicoIconSEQM.tsx +20 -0
  23. package/src/components/LacoPeIconSEQM.tsx +20 -0
  24. package/src/components/ManeabilidadeEVelocidadeIconSEQM.tsx +20 -0
  25. package/src/components/PerformanceHalterIconSEQM.tsx +20 -0
  26. package/src/components/RanchSortingIconSEQM.tsx +20 -0
  27. package/src/components/RedeasIconSEQM.tsx +20 -0
  28. package/src/components/SeisBalizasIconSEQM.tsx +20 -0
  29. package/src/components/TeamPenningIconSEQM.tsx +20 -0
  30. package/src/components/TresTamboresIconSEQM.tsx +20 -0
  31. package/src/components/VaquejadaIconSEQM.tsx +20 -0
  32. package/src/components/WesternPleasureIconSEQM.tsx +20 -0
  33. package/src/components/WorkingCowHorseIconSEQM.tsx +20 -0
  34. package/src/components/icons/AppleIcon.tsx +22 -0
  35. package/src/components/icons/ArrowDownShortIcon.tsx +19 -0
  36. package/src/components/icons/AwardFillIcon.tsx +21 -0
  37. package/src/components/icons/BarChartIcon.tsx +17 -0
  38. package/src/components/icons/BoxArrowInLeftIcon.tsx +25 -0
  39. package/src/components/icons/BroadcastIcon.tsx +24 -0
  40. package/src/components/icons/CaretDownFillIcon.tsx +17 -0
  41. package/src/components/icons/CaretLeftFillIcon.tsx +17 -0
  42. package/src/components/icons/CaretRightFillIcon.tsx +17 -0
  43. package/src/components/icons/CircleIcon.tsx +24 -0
  44. package/src/components/icons/FacebookIcon.tsx +24 -0
  45. package/src/components/icons/FileEarmarkTextIcon.tsx +21 -0
  46. package/src/components/icons/FileTextIcon.tsx +21 -0
  47. package/src/components/icons/FilterIcon.tsx +17 -0
  48. package/src/components/icons/GoogleColorIcon.tsx +28 -0
  49. package/src/components/icons/GoogleIcon.tsx +24 -0
  50. package/src/components/icons/InstagramIcon.tsx +24 -0
  51. package/src/components/icons/ListIcon.tsx +19 -0
  52. package/src/components/icons/ListOlIcon.tsx +23 -0
  53. package/src/components/icons/PencilSquareIcon.tsx +23 -0
  54. package/src/components/icons/PersonCircleIcon.tsx +26 -0
  55. package/src/components/icons/PlusIcon.tsx +17 -0
  56. package/src/components/icons/PrinterIcon.tsx +18 -0
  57. package/src/components/icons/SearchIcon.tsx +24 -0
  58. package/src/components/icons/SpinnerRingResizeIcon.tsx +37 -0
  59. package/src/components/icons/StarIcon.tsx +24 -0
  60. package/src/components/icons/XIcon.tsx +17 -0
  61. package/src/components/icons/YoutubeIcon.tsx +17 -0
  62. package/src/components/icons/index.ts +28 -0
  63. package/src/components/iconsSEQM/ApartacaoIconSEQM.tsx +20 -0
  64. package/src/components/iconsSEQM/BreakawayRopingIconSEQM.tsx +20 -0
  65. package/src/components/iconsSEQM/BulldogIconSEQM.tsx +20 -0
  66. package/src/components/iconsSEQM/CincoTamboresIconSEQM.tsx +20 -0
  67. package/src/components/iconsSEQM/ConformacaoIconSEQM.tsx +20 -0
  68. package/src/components/iconsSEQM/LacoCabecaIconSEQM.tsx +20 -0
  69. package/src/components/iconsSEQM/LacoCompridoIconSEQM.tsx +20 -0
  70. package/src/components/iconsSEQM/LacoCompridoTecnicoIconSEQM.tsx +20 -0
  71. package/src/components/iconsSEQM/LacoEmDuplaIconSEQM.tsx +20 -0
  72. package/src/components/iconsSEQM/LacoIndividualIconSEQM.tsx +20 -0
  73. package/src/components/iconsSEQM/LacoIndividualTecnicoIconSEQM.tsx +20 -0
  74. package/src/components/iconsSEQM/LacoPeIconSEQM.tsx +20 -0
  75. package/src/components/iconsSEQM/ManeabilidadeEVelocidadeIconSEQM.tsx +20 -0
  76. package/src/components/iconsSEQM/PerformanceHalterIconSEQM.tsx +20 -0
  77. package/src/components/iconsSEQM/RanchSortingIconSEQM.tsx +20 -0
  78. package/src/components/iconsSEQM/RedeasIconSEQM.tsx +20 -0
  79. package/src/components/iconsSEQM/SeisBalizasIconSEQM.tsx +20 -0
  80. package/src/components/iconsSEQM/TeamPenningIconSEQM.tsx +20 -0
  81. package/src/components/iconsSEQM/TresTamboresIconSEQM.tsx +20 -0
  82. package/src/components/iconsSEQM/VaquejadaIconSEQM.tsx +20 -0
  83. package/src/components/iconsSEQM/WesternPleasureIconSEQM.tsx +20 -0
  84. package/src/components/iconsSEQM/WorkingCowHorseIconSEQM.tsx +20 -0
  85. package/src/components/iconsSEQM/index.ts +22 -0
  86. package/src/{_logos/LogoPadrao.tsx → components/logos/LogoPadraoIcon.tsx} +6 -7
  87. package/src/{_logos/LogoSeqmBlackGreen.tsx → components/logos/LogoSeqmBlackGreenIcon.tsx} +13 -14
  88. package/src/{_logos/LogoSeqm.tsx → components/logos/LogoSeqmIcon.tsx} +13 -14
  89. package/src/{_logos/LogoSeqmMobile.tsx → components/logos/LogoSeqmMobileIcon.tsx} +7 -8
  90. package/src/components/logos/index.ts +4 -0
  91. package/src/icons/google-color.svg +1 -0
  92. package/src/icons/google.svg +10 -0
  93. package/src/iconsSEQM/apartacao.svg +3 -0
  94. package/src/iconsSEQM/breakaway-roping.svg +3 -0
  95. package/src/iconsSEQM/bulldog.svg +3 -0
  96. package/src/iconsSEQM/cinco-tambores.svg +3 -0
  97. package/src/iconsSEQM/conformacao.svg +3 -0
  98. package/src/iconsSEQM/laco-cabeca.svg +3 -0
  99. package/src/iconsSEQM/laco-comprido-tecnico.svg +3 -0
  100. package/src/iconsSEQM/laco-comprido.svg +3 -0
  101. package/src/iconsSEQM/laco-em-dupla.svg +3 -0
  102. package/src/iconsSEQM/laco-individual-tecnico.svg +3 -0
  103. package/src/iconsSEQM/laco-individual.svg +3 -0
  104. package/src/iconsSEQM/laco-pe.svg +3 -0
  105. package/src/iconsSEQM/maneabilidade-e-velocidade.svg +6 -0
  106. package/src/iconsSEQM/performance-halter.svg +3 -0
  107. package/src/iconsSEQM/ranch-sorting.svg +3 -0
  108. package/src/iconsSEQM/redeas.svg +3 -0
  109. package/src/iconsSEQM/seis-balizas.svg +3 -0
  110. package/src/iconsSEQM/team-penning.svg +3 -0
  111. package/src/iconsSEQM/tres-tambores.svg +3 -0
  112. package/src/iconsSEQM/vaquejada.svg +4 -0
  113. package/src/iconsSEQM/western-pleasure.svg +3 -0
  114. package/src/iconsSEQM/working-cow-horse.svg +3 -0
  115. package/src/index.ts +3 -31
@@ -1,20 +1,20 @@
1
1
 
2
- > @abqm-ds/icons@1.0.14 build
2
+ > @abqm-ds/icons@1.0.16 build
3
3
  > tsup --dts
4
4
 
5
5
  CLI Building entry: src/index.ts
6
6
  CLI Using tsconfig: tsconfig.json
7
- CLI tsup v8.5.0
7
+ CLI tsup v8.4.0
8
8
  CLI Using tsup config: /home/runner/work/design-system/design-system/packages/icons/tsup.config.ts
9
9
  CLI Target: esnext
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 68ms
15
- CJS dist/index.cjs 168.20 KB
16
- CJS ⚡️ Build success in 68ms
13
+ ESM dist/index.js 1.01 MB
14
+ ESM ⚡️ Build success in 83ms
15
+ CJS dist/index.cjs 1.01 MB
16
+ CJS ⚡️ Build success in 83ms
17
17
  DTS Build start
18
- DTS ⚡️ Build success in 2482ms
19
- DTS dist/index.d.ts 3.50 KB
20
- DTS dist/index.d.cts 3.50 KB
18
+ DTS ⚡️ Build success in 2026ms
19
+ DTS dist/index.d.ts 6.36 KB
20
+ DTS dist/index.d.cts 6.36 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @abqm-ds/icons
2
2
 
3
+ ## 1.0.16
4
+
5
+ ### Patch Changes
6
+
7
+ - feat: 🎸 Adicioniará novos ícones e melhorará componentes react
8
+
9
+ ## 1.0.15
10
+
11
+ ### Patch Changes
12
+
13
+ - feat: 🎸 Adicição de icones e componentes
14
+
3
15
  ## 1.0.14
4
16
 
5
17
  ### Patch Changes
package/README.md CHANGED
@@ -6,7 +6,7 @@ Esta biblioteca fornece ícones SVG como componentes React, permitindo uso simpl
6
6
 
7
7
  ---
8
8
 
9
- ## 📦 Instalação.
9
+ ## 📦 Instalação
10
10
 
11
11
  No seu projeto React (com suporte a pacotes do monorepo):
12
12
 
@@ -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
  >
@@ -28,6 +28,10 @@ npm install @abqm-ds/icons
28
28
  >
29
29
  > ✅ CaretRight.svg
30
30
 
31
+ - Para ícones normais, use `src/icons/`
32
+ - Para ícones SEQM, use `src/iconsSEQM/`
33
+ - Para logos, use `src/logos/`
34
+
31
35
  2. Em seguida, execute o comando abaixo no terminal:
32
36
 
33
37
  ```bash
@@ -35,7 +39,7 @@ npm run generate:icons
35
39
  ```
36
40
 
37
41
  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`.
42
+ - Os SVGs das pastas `icons`, `iconsSEQM` e `logos` são convertidos e salvos temporariamente em `_icons`, `_iconsSEQM` e `_logos`.
39
43
  - Em seguida, são organizados e movidos para a pasta `components`.
40
44
 
41
45
  > 💡 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.
@@ -81,7 +85,7 @@ Todos os ícones exportados são componentes React SVG e aceitam todas as propri
81
85
 
82
86
  ### Gerar componentes a partir de SVGs
83
87
 
84
- 1. Coloque seus arquivos SVG em `src/icons/` ou `src/logos/`.
88
+ 1. Coloque seus arquivos SVG em `src/icons/`, `src/iconsSEQM/` ou `src/logos/`.
85
89
  2. Rode o comando:
86
90
 
87
91
  ```bash
@@ -107,9 +111,11 @@ packages/icons/
107
111
  ├── scripts/ # Scripts de desenvolvimento
108
112
  ├── src/
109
113
  │ ├── icons/ # SVGs originais (ícones)
114
+ │ ├── iconsSEQM/ # SVGs originais (ícones SEQM)
110
115
  │ ├── logos/ # SVGs originais (logos)
111
116
  │ ├── components/ # Componentes React (.tsx)
112
- │ ├── _temp/ # SVGs temporários (ícones)
117
+ │ ├── _icons/ # SVGs temporários (ícones)
118
+ │ ├── _iconsSEQM/ # SVGs temporários (ícones SEQM)
113
119
  │ ├── _logos/ # SVGs temporários (logos)
114
120
  │ └── index.ts # Exportações centralizadas
115
121
  ├── tsconfig.json
@@ -123,9 +129,9 @@ packages/icons/
123
129
 
124
130
  Para adicionar novos ícones:
125
131
 
126
- 1. Adicione o SVG em `src/icons/` ou `src/logos/`
132
+ 1. Adicione o SVG em `src/icons/`, `src/iconsSEQM/` ou `src/logos/`
127
133
  2. Rode `npm run generate`
128
- 3. Adicione à exportação em `src/index.ts`
134
+ 3. Adicione à exportação em `src/index.ts` (caso necessário)
129
135
  4. Teste no seu projeto local
130
136
 
131
137
  ---