@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.
- package/.turbo/turbo-build.log +8 -8
- package/CHANGELOG.md +12 -0
- package/dist/index.cjs +506 -359
- package/dist/index.d.cts +30 -20
- package/dist/index.d.ts +30 -20
- package/dist/index.js +498 -356
- package/package.json +1 -1
- package/scripts/move-icons.js +8 -69
- package/scripts/process.js +54 -0
- package/scripts/updateIndex.js +16 -0
- package/scripts/utils.js +9 -0
- package/src/_logos/LogoSeqm.tsx +2 -2
- package/src/components/ArrowDownShortIcon.tsx +19 -0
- package/src/components/AwardFillIcon.tsx +5 -7
- package/src/components/BoxArrowInLeftIcon.tsx +2 -2
- package/src/components/BroadcastIcon.tsx +6 -7
- package/src/components/CaretDownFillIcon.tsx +17 -0
- package/src/components/CaretLeftFillIcon.tsx +17 -0
- package/src/components/CaretRightFillIcon.tsx +17 -0
- package/src/components/CircleIcon.tsx +24 -0
- package/src/components/FacebookIcon.tsx +12 -6
- package/src/components/FileTextIcon.tsx +21 -0
- package/src/components/FilterIcon.tsx +3 -4
- package/src/components/HorseIcon.tsx +1 -1
- package/src/components/InstagramIcon.tsx +12 -6
- package/src/components/ListIcon.tsx +19 -0
- package/src/components/ListOlIcon.tsx +5 -7
- package/src/components/LogoPadraoIcon.tsx +4 -4
- package/src/components/LogoSeqmIcon.tsx +13 -13
- package/src/components/LogoSeqmMobileIcon.tsx +5 -5
- package/src/components/PencilSquareIcon.tsx +5 -7
- package/src/components/PersonCircleIcon.tsx +6 -6
- package/src/components/PlusIcon.tsx +3 -4
- package/src/components/PrinterIcon.tsx +4 -4
- package/src/components/SearchIcon.tsx +6 -7
- package/src/components/SpinnerRingResizeIcon.tsx +37 -0
- package/src/components/StarIcon.tsx +12 -6
- package/src/components/XIcon.tsx +3 -4
- package/src/components/YoutubeIcon.tsx +3 -4
- package/src/icons/Broadcast.svg +5 -5
- package/src/icons/Circle.svg +10 -0
- package/src/icons/Search.svg +5 -5
- package/src/icons/Star.svg +9 -2
- package/src/icons/X.svg +2 -2
- package/src/icons/arrow-down-short.svg +3 -0
- package/src/icons/award-fill.svg +4 -0
- package/src/icons/caret-down-fill.svg +3 -0
- package/src/icons/caret-left-fill.svg +3 -0
- package/src/icons/caret-right-fill.svg +3 -0
- package/src/icons/facebook.svg +9 -2
- package/src/icons/file-text.svg +4 -0
- package/src/icons/filter.svg +2 -2
- package/src/icons/instagram.svg +9 -2
- package/src/icons/list-ol.svg +4 -0
- package/src/icons/list.svg +3 -0
- package/src/icons/pencil-square.svg +4 -0
- package/src/icons/person-circle.svg +11 -0
- package/src/icons/plus.svg +2 -2
- package/src/icons/printer.svg +3 -2
- package/src/icons/spinner-ring-resize.svg +1 -0
- package/src/icons/youtube.svg +2 -2
- package/src/index.ts +20 -27
- package/src/components/CaretDownIcon.tsx +0 -18
- package/src/components/CaretRightIcon.tsx +0 -18
- package/src/components/MenuIcon.tsx +0 -20
- package/src/icons/AwardFill.svg +0 -4
- package/src/icons/CaretDown.svg +0 -3
- package/src/icons/CaretRight.svg +0 -3
- package/src/icons/ListOl.svg +0 -4
- package/src/icons/Menu.svg +0 -3
- package/src/icons/PencilSquare.svg +0 -4
- package/src/icons/PersonCircle.svg +0 -11
- package/src/icons/horse.svg +0 -3
- /package/src/icons/{BoxArrowInLeft.svg → box-arrow-in-left.svg} +0 -0
- /package/src/logos/{LogoPadrao.svg → logo-padrao.svg} +0 -0
- /package/src/logos/{LogoSeqmMobile.svg → logo-seqm-mobile.svg} +0 -0
- /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
|
|
4
|
+
declare const ArrowDownShortIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
5
5
|
|
|
6
|
-
declare const
|
|
6
|
+
declare const AwardFillIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
7
7
|
|
|
8
|
-
declare const
|
|
8
|
+
declare const BoxArrowInLeftIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
9
9
|
|
|
10
|
-
declare const
|
|
10
|
+
declare const BroadcastIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
11
11
|
|
|
12
|
-
declare const
|
|
12
|
+
declare const CaretDownFillIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
13
13
|
|
|
14
|
-
declare const
|
|
14
|
+
declare const CaretLeftFillIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
15
15
|
|
|
16
|
-
declare const
|
|
16
|
+
declare const CaretRightFillIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
17
17
|
|
|
18
|
-
declare const
|
|
18
|
+
declare const CircleIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
19
19
|
|
|
20
|
-
declare const
|
|
20
|
+
declare const FacebookIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
21
21
|
|
|
22
|
-
declare const
|
|
22
|
+
declare const FileTextIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
23
23
|
|
|
24
|
-
declare const
|
|
24
|
+
declare const FilterIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
25
25
|
|
|
26
|
-
declare const
|
|
26
|
+
declare const HorseIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
27
27
|
|
|
28
|
-
declare const
|
|
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
|
|
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
|
|
50
|
+
declare const SpinnerRingResizeIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
39
51
|
|
|
40
|
-
declare const
|
|
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
|
|
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,
|
|
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
|
|
4
|
+
declare const ArrowDownShortIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
5
5
|
|
|
6
|
-
declare const
|
|
6
|
+
declare const AwardFillIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
7
7
|
|
|
8
|
-
declare const
|
|
8
|
+
declare const BoxArrowInLeftIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
9
9
|
|
|
10
|
-
declare const
|
|
10
|
+
declare const BroadcastIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
11
11
|
|
|
12
|
-
declare const
|
|
12
|
+
declare const CaretDownFillIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
13
13
|
|
|
14
|
-
declare const
|
|
14
|
+
declare const CaretLeftFillIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
15
15
|
|
|
16
|
-
declare const
|
|
16
|
+
declare const CaretRightFillIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
17
17
|
|
|
18
|
-
declare const
|
|
18
|
+
declare const CircleIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
19
19
|
|
|
20
|
-
declare const
|
|
20
|
+
declare const FacebookIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
21
21
|
|
|
22
|
-
declare const
|
|
22
|
+
declare const FileTextIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
23
23
|
|
|
24
|
-
declare const
|
|
24
|
+
declare const FilterIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
25
25
|
|
|
26
|
-
declare const
|
|
26
|
+
declare const HorseIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
27
27
|
|
|
28
|
-
declare const
|
|
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
|
|
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
|
|
50
|
+
declare const SpinnerRingResizeIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
39
51
|
|
|
40
|
-
declare const
|
|
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
|
|
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,
|
|
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 };
|