@abqm-ds/icons 1.0.7 → 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.
Files changed (77) hide show
  1. package/.turbo/turbo-build.log +8 -8
  2. package/CHANGELOG.md +12 -0
  3. package/dist/index.cjs +506 -359
  4. package/dist/index.d.cts +30 -20
  5. package/dist/index.d.ts +30 -20
  6. package/dist/index.js +498 -356
  7. package/package.json +1 -1
  8. package/scripts/move-icons.js +8 -69
  9. package/scripts/process.js +54 -0
  10. package/scripts/updateIndex.js +16 -0
  11. package/scripts/utils.js +9 -0
  12. package/src/_logos/LogoSeqm.tsx +2 -2
  13. package/src/components/ArrowDownShortIcon.tsx +19 -0
  14. package/src/components/AwardFillIcon.tsx +5 -7
  15. package/src/components/BoxArrowInLeftIcon.tsx +2 -2
  16. package/src/components/BroadcastIcon.tsx +6 -7
  17. package/src/components/CaretDownFillIcon.tsx +17 -0
  18. package/src/components/CaretLeftFillIcon.tsx +17 -0
  19. package/src/components/CaretRightFillIcon.tsx +17 -0
  20. package/src/components/CircleIcon.tsx +24 -0
  21. package/src/components/FacebookIcon.tsx +12 -6
  22. package/src/components/FileTextIcon.tsx +21 -0
  23. package/src/components/FilterIcon.tsx +3 -4
  24. package/src/components/HorseIcon.tsx +1 -1
  25. package/src/components/InstagramIcon.tsx +12 -6
  26. package/src/components/ListIcon.tsx +19 -0
  27. package/src/components/ListOlIcon.tsx +5 -7
  28. package/src/components/LogoPadraoIcon.tsx +4 -4
  29. package/src/components/LogoSeqmIcon.tsx +13 -13
  30. package/src/components/LogoSeqmMobileIcon.tsx +5 -5
  31. package/src/components/PencilSquareIcon.tsx +5 -7
  32. package/src/components/PersonCircleIcon.tsx +6 -6
  33. package/src/components/PlusIcon.tsx +3 -4
  34. package/src/components/PrinterIcon.tsx +4 -4
  35. package/src/components/SearchIcon.tsx +6 -7
  36. package/src/components/SpinnerRingResizeIcon.tsx +37 -0
  37. package/src/components/StarIcon.tsx +12 -6
  38. package/src/components/XIcon.tsx +3 -4
  39. package/src/components/YoutubeIcon.tsx +3 -4
  40. package/src/icons/Broadcast.svg +5 -5
  41. package/src/icons/Circle.svg +10 -0
  42. package/src/icons/Search.svg +5 -5
  43. package/src/icons/Star.svg +9 -2
  44. package/src/icons/X.svg +2 -2
  45. package/src/icons/arrow-down-short.svg +3 -0
  46. package/src/icons/award-fill.svg +4 -0
  47. package/src/icons/caret-down-fill.svg +3 -0
  48. package/src/icons/caret-left-fill.svg +3 -0
  49. package/src/icons/caret-right-fill.svg +3 -0
  50. package/src/icons/facebook.svg +9 -2
  51. package/src/icons/file-text.svg +4 -0
  52. package/src/icons/filter.svg +2 -2
  53. package/src/icons/instagram.svg +9 -2
  54. package/src/icons/list-ol.svg +4 -0
  55. package/src/icons/list.svg +3 -0
  56. package/src/icons/pencil-square.svg +4 -0
  57. package/src/icons/person-circle.svg +11 -0
  58. package/src/icons/plus.svg +2 -2
  59. package/src/icons/printer.svg +3 -2
  60. package/src/icons/spinner-ring-resize.svg +1 -0
  61. package/src/icons/youtube.svg +2 -2
  62. package/src/index.ts +20 -27
  63. package/src/components/CaretDownIcon.tsx +0 -18
  64. package/src/components/CaretRightIcon.tsx +0 -18
  65. package/src/components/MenuIcon.tsx +0 -20
  66. package/src/icons/AwardFill.svg +0 -4
  67. package/src/icons/CaretDown.svg +0 -3
  68. package/src/icons/CaretRight.svg +0 -3
  69. package/src/icons/ListOl.svg +0 -4
  70. package/src/icons/Menu.svg +0 -3
  71. package/src/icons/PencilSquare.svg +0 -4
  72. package/src/icons/PersonCircle.svg +0 -11
  73. package/src/icons/horse.svg +0 -3
  74. /package/src/icons/{BoxArrowInLeft.svg → box-arrow-in-left.svg} +0 -0
  75. /package/src/logos/{LogoPadrao.svg → logo-padrao.svg} +0 -0
  76. /package/src/logos/{LogoSeqmMobile.svg → logo-seqm-mobile.svg} +0 -0
  77. /package/src/logos/{LogoSeqm.svg → logo-seqm.svg} +0 -0
package/dist/index.d.cts CHANGED
@@ -1,48 +1,58 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import { SVGProps } from 'react';
3
3
 
4
- declare const FacebookIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
4
+ declare const ArrowDownShortIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
5
5
 
6
- declare const HorseIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
6
+ declare const AwardFillIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
7
7
 
8
- declare const InstagramIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
8
+ declare const BoxArrowInLeftIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
9
9
 
10
- declare const FilterIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
10
+ declare const BroadcastIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
11
11
 
12
- declare const PlusIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
12
+ declare const CaretDownFillIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
13
13
 
14
- declare const PrinterIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
14
+ declare const CaretLeftFillIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
15
15
 
16
- declare const YoutubeIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
16
+ declare const CaretRightFillIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
17
17
 
18
- declare const CaretDownIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
18
+ declare const CircleIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
19
19
 
20
- declare const CaretRightIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
20
+ declare const FacebookIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
21
21
 
22
- declare const PersonCircleIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
22
+ declare const FileTextIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
23
23
 
24
- declare const LogoSeqmIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
24
+ declare const FilterIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
25
25
 
26
- declare const AwardFillIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
26
+ declare const HorseIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
27
27
 
28
- declare const BroadcastIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
28
+ declare const InstagramIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
29
+
30
+ declare const ListIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
29
31
 
30
32
  declare const ListOlIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
31
33
 
32
- declare const StarIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
34
+ declare const LogoPadraoIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
35
+
36
+ declare const LogoSeqmIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
37
+
38
+ declare const LogoSeqmMobileIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
33
39
 
34
40
  declare const PencilSquareIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
35
41
 
42
+ declare const PersonCircleIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
43
+
44
+ declare const PlusIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
45
+
46
+ declare const PrinterIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
47
+
36
48
  declare const SearchIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
37
49
 
38
- declare const LogoSeqmMobileIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
50
+ declare const SpinnerRingResizeIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
39
51
 
40
- declare const MenuIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
52
+ declare const StarIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
41
53
 
42
54
  declare const XIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
43
55
 
44
- declare const BoxArrowInLeftIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
45
-
46
- declare const LogoPadraoIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
56
+ declare const YoutubeIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
47
57
 
48
- export { AwardFillIcon, BoxArrowInLeftIcon, BroadcastIcon, CaretDownIcon, CaretRightIcon, FacebookIcon, FilterIcon, HorseIcon, InstagramIcon, ListOlIcon, LogoPadraoIcon, LogoSeqmIcon, LogoSeqmMobileIcon, MenuIcon, PencilSquareIcon, PersonCircleIcon, PlusIcon, PrinterIcon, SearchIcon, StarIcon, XIcon, YoutubeIcon };
58
+ export { ArrowDownShortIcon, AwardFillIcon, BoxArrowInLeftIcon, BroadcastIcon, CaretDownFillIcon, CaretLeftFillIcon, CaretRightFillIcon, CircleIcon, FacebookIcon, FileTextIcon, FilterIcon, HorseIcon, InstagramIcon, ListIcon, ListOlIcon, LogoPadraoIcon, LogoSeqmIcon, LogoSeqmMobileIcon, PencilSquareIcon, PersonCircleIcon, PlusIcon, PrinterIcon, SearchIcon, SpinnerRingResizeIcon, StarIcon, XIcon, YoutubeIcon };
package/dist/index.d.ts CHANGED
@@ -1,48 +1,58 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import { SVGProps } from 'react';
3
3
 
4
- declare const FacebookIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
4
+ declare const ArrowDownShortIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
5
5
 
6
- declare const HorseIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
6
+ declare const AwardFillIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
7
7
 
8
- declare const InstagramIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
8
+ declare const BoxArrowInLeftIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
9
9
 
10
- declare const FilterIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
10
+ declare const BroadcastIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
11
11
 
12
- declare const PlusIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
12
+ declare const CaretDownFillIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
13
13
 
14
- declare const PrinterIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
14
+ declare const CaretLeftFillIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
15
15
 
16
- declare const YoutubeIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
16
+ declare const CaretRightFillIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
17
17
 
18
- declare const CaretDownIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
18
+ declare const CircleIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
19
19
 
20
- declare const CaretRightIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
20
+ declare const FacebookIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
21
21
 
22
- declare const PersonCircleIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
22
+ declare const FileTextIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
23
23
 
24
- declare const LogoSeqmIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
24
+ declare const FilterIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
25
25
 
26
- declare const AwardFillIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
26
+ declare const HorseIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
27
27
 
28
- declare const BroadcastIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
28
+ declare const InstagramIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
29
+
30
+ declare const ListIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
29
31
 
30
32
  declare const ListOlIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
31
33
 
32
- declare const StarIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
34
+ declare const LogoPadraoIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
35
+
36
+ declare const LogoSeqmIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
37
+
38
+ declare const LogoSeqmMobileIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
33
39
 
34
40
  declare const PencilSquareIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
35
41
 
42
+ declare const PersonCircleIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
43
+
44
+ declare const PlusIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
45
+
46
+ declare const PrinterIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
47
+
36
48
  declare const SearchIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
37
49
 
38
- declare const LogoSeqmMobileIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
50
+ declare const SpinnerRingResizeIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
39
51
 
40
- declare const MenuIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
52
+ declare const StarIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
41
53
 
42
54
  declare const XIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
43
55
 
44
- declare const BoxArrowInLeftIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
45
-
46
- declare const LogoPadraoIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
56
+ declare const YoutubeIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
47
57
 
48
- export { AwardFillIcon, BoxArrowInLeftIcon, BroadcastIcon, CaretDownIcon, CaretRightIcon, FacebookIcon, FilterIcon, HorseIcon, InstagramIcon, ListOlIcon, LogoPadraoIcon, LogoSeqmIcon, LogoSeqmMobileIcon, MenuIcon, PencilSquareIcon, PersonCircleIcon, PlusIcon, PrinterIcon, SearchIcon, StarIcon, XIcon, YoutubeIcon };
58
+ export { ArrowDownShortIcon, AwardFillIcon, BoxArrowInLeftIcon, BroadcastIcon, CaretDownFillIcon, CaretLeftFillIcon, CaretRightFillIcon, CircleIcon, FacebookIcon, FileTextIcon, FilterIcon, HorseIcon, InstagramIcon, ListIcon, ListOlIcon, LogoPadraoIcon, LogoSeqmIcon, LogoSeqmMobileIcon, PencilSquareIcon, PersonCircleIcon, PlusIcon, PrinterIcon, SearchIcon, SpinnerRingResizeIcon, StarIcon, XIcon, YoutubeIcon };