@elementor/icons 0.3.0 → 0.5.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/CHANGELOG.md +22 -0
- package/dist/index.d.ts +13 -1
- package/dist/index.js +215 -155
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +209 -155
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/components/chevron-right-icon.tsx +12 -0
- package/src/components/copy-icon.tsx +12 -0
- package/src/components/dots-horizontal-icon.tsx +14 -0
- package/src/components/dots-vertical-icon.tsx +3 -3
- package/src/components/erase-icon.tsx +12 -0
- package/src/components/footer-template-icon.tsx +1 -1
- package/src/components/home-icon.tsx +12 -0
- package/src/components/page-type-icon.tsx +1 -1
- package/src/components/post-type-icon.tsx +1 -1
- package/src/components/trash-icon.tsx +12 -0
- package/src/index.ts +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.5.0](https://github.com/elementor/elementor-packages/compare/@elementor/icons@0.4.0...@elementor/icons@0.5.0) (2023-06-25)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **site-navigation:** pages navigation panel UI [ED-10871] ([#51](https://github.com/elementor/elementor-packages/issues/51)) ([594427c](https://github.com/elementor/elementor-packages/commit/594427c3c296fe664577319bba29bf711f6bbdde))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [0.4.0](https://github.com/elementor/elementor-packages/compare/@elementor/icons@0.3.0...@elementor/icons@0.4.0) (2023-06-06)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* drop support for React 17 [ED-10982] ([#50](https://github.com/elementor/elementor-packages/issues/50)) ([59c576c](https://github.com/elementor/elementor-packages/commit/59c576ca218947dc0992616311d4d399a20e91a6))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
# 0.3.0 (2023-06-01)
|
|
7
29
|
|
|
8
30
|
|
package/dist/index.d.ts
CHANGED
|
@@ -13,12 +13,20 @@ declare const CheckedCircleIcon: React.ForwardRefExoticComponent<Omit<SvgIconPro
|
|
|
13
13
|
|
|
14
14
|
declare const ChevronDownIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
15
15
|
|
|
16
|
+
declare const ChevronRightIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
17
|
+
|
|
16
18
|
declare const ContainerTemplateIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
17
19
|
|
|
20
|
+
declare const CopyIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
21
|
+
|
|
18
22
|
declare const DesktopIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
19
23
|
|
|
20
24
|
declare const DotsVerticalIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
21
25
|
|
|
26
|
+
declare const DotsHorizontalIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
27
|
+
|
|
28
|
+
declare const EraseIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
29
|
+
|
|
22
30
|
declare const Error404TemplateIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
23
31
|
|
|
24
32
|
declare const ExpandIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
@@ -37,6 +45,8 @@ declare const HelpIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"
|
|
|
37
45
|
|
|
38
46
|
declare const HistoryIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
39
47
|
|
|
48
|
+
declare const HomeIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
49
|
+
|
|
40
50
|
declare const KeyboardIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
41
51
|
|
|
42
52
|
declare const LandingPageTemplateIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
@@ -83,6 +93,8 @@ declare const ThemeBuilderIcon: React.ForwardRefExoticComponent<Omit<SvgIconProp
|
|
|
83
93
|
|
|
84
94
|
declare const ToggleRightIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
85
95
|
|
|
96
|
+
declare const TrashIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
97
|
+
|
|
86
98
|
declare const UpgradeIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
87
99
|
|
|
88
100
|
declare const WidescreenIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
@@ -91,4 +103,4 @@ declare const WordpressIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps,
|
|
|
91
103
|
|
|
92
104
|
declare const XIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
93
105
|
|
|
94
|
-
export { AIIcon, AdjustmentsHorizontalIcon, ArchiveTemplateIcon, ArrowUpRightIcon, CheckedCircleIcon, ChevronDownIcon, ContainerTemplateIcon, DesktopIcon, DotsVerticalIcon, Error404TemplateIcon, ExpandIcon, EyeIcon, FileReportIcon, FolderIcon, FooterTemplateIcon, HeaderTemplateIcon, HelpIcon, HistoryIcon, KeyboardIcon, LandingPageTemplateIcon, LaptopIcon, LoopItemTemplateIcon, MessageIcon, MobileLandscapeIcon, MobileIcon as MobilePortraitIcon, PageTemplateIcon, PageTypeIcon, PlusIcon, PopupTemplateIcon, PostTypeIcon, RefreshIcon, SearchIcon, SearchResultsTemplateIcon, SectionTemplateIcon, SettingsIcon, ShrinkIcon, StructureIcon, TabletLandscapeIcon, TabletIcon as TabletPortraitIcon, ThemeBuilderIcon, ToggleRightIcon, UpgradeIcon, WidescreenIcon, WordpressIcon, XIcon };
|
|
106
|
+
export { AIIcon, AdjustmentsHorizontalIcon, ArchiveTemplateIcon, ArrowUpRightIcon, CheckedCircleIcon, ChevronDownIcon, ChevronRightIcon, ContainerTemplateIcon, CopyIcon, DesktopIcon, DotsHorizontalIcon, DotsVerticalIcon, EraseIcon, Error404TemplateIcon, ExpandIcon, EyeIcon, FileReportIcon, FolderIcon, FooterTemplateIcon, HeaderTemplateIcon, HelpIcon, HistoryIcon, HomeIcon, KeyboardIcon, LandingPageTemplateIcon, LaptopIcon, LoopItemTemplateIcon, MessageIcon, MobileLandscapeIcon, MobileIcon as MobilePortraitIcon, PageTemplateIcon, PageTypeIcon, PlusIcon, PopupTemplateIcon, PostTypeIcon, RefreshIcon, SearchIcon, SearchResultsTemplateIcon, SectionTemplateIcon, SettingsIcon, ShrinkIcon, StructureIcon, TabletLandscapeIcon, TabletIcon as TabletPortraitIcon, ThemeBuilderIcon, ToggleRightIcon, TrashIcon, UpgradeIcon, WidescreenIcon, WordpressIcon, XIcon };
|