@elementor/icons 0.7.3 → 0.8.1
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 +19 -0
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +129 -107
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +128 -107
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/components/link-icon.tsx +22 -0
- package/src/index.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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.8.1](https://github.com/elementor/elementor-packages/compare/@elementor/icons@0.8.0...@elementor/icons@0.8.1) (2024-07-03)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @elementor/icons
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [0.8.0](https://github.com/elementor/elementor-packages/compare/@elementor/icons@0.7.3...@elementor/icons@0.8.0) (2024-05-09)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* conversions - add logic to top bar for links page ([#181](https://github.com/elementor/elementor-packages/issues/181)) ([19b3d82](https://github.com/elementor/elementor-packages/commit/19b3d82b3795917e8d0aaaf40da36309ec83da97))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [0.7.3](https://github.com/elementor/elementor-packages/compare/@elementor/icons@0.7.2...@elementor/icons@0.7.3) (2024-03-05)
|
|
7
26
|
|
|
8
27
|
|
package/dist/index.d.mts
CHANGED
|
@@ -53,6 +53,8 @@ declare const LandingPageTemplateIcon: React.ForwardRefExoticComponent<Omit<SvgI
|
|
|
53
53
|
|
|
54
54
|
declare const LaptopIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
55
55
|
|
|
56
|
+
declare const LinkIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
57
|
+
|
|
56
58
|
declare const LoopItemTemplateIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
57
59
|
|
|
58
60
|
declare const MessageIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
@@ -107,4 +109,4 @@ declare const WordpressIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps,
|
|
|
107
109
|
|
|
108
110
|
declare const XIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
109
111
|
|
|
110
|
-
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, PagesIcon, PlugIcon, PlusIcon, PopupTemplateIcon, PostTypeIcon, RefreshIcon, SearchIcon, SearchResultsTemplateIcon, SectionTemplateIcon, SettingsIcon, ShrinkIcon, StructureIcon, TabletLandscapeIcon, TabletIcon as TabletPortraitIcon, ThemeBuilderIcon, ToggleRightIcon, TrashIcon, UpgradeIcon, WidescreenIcon, WordpressIcon, XIcon };
|
|
112
|
+
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, LinkIcon, LoopItemTemplateIcon, MessageIcon, MobileLandscapeIcon, MobileIcon as MobilePortraitIcon, PageTemplateIcon, PageTypeIcon, PagesIcon, PlugIcon, PlusIcon, PopupTemplateIcon, PostTypeIcon, RefreshIcon, SearchIcon, SearchResultsTemplateIcon, SectionTemplateIcon, SettingsIcon, ShrinkIcon, StructureIcon, TabletLandscapeIcon, TabletIcon as TabletPortraitIcon, ThemeBuilderIcon, ToggleRightIcon, TrashIcon, UpgradeIcon, WidescreenIcon, WordpressIcon, XIcon };
|
package/dist/index.d.ts
CHANGED
|
@@ -53,6 +53,8 @@ declare const LandingPageTemplateIcon: React.ForwardRefExoticComponent<Omit<SvgI
|
|
|
53
53
|
|
|
54
54
|
declare const LaptopIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
55
55
|
|
|
56
|
+
declare const LinkIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
57
|
+
|
|
56
58
|
declare const LoopItemTemplateIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
57
59
|
|
|
58
60
|
declare const MessageIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
@@ -107,4 +109,4 @@ declare const WordpressIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps,
|
|
|
107
109
|
|
|
108
110
|
declare const XIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
109
111
|
|
|
110
|
-
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, PagesIcon, PlugIcon, PlusIcon, PopupTemplateIcon, PostTypeIcon, RefreshIcon, SearchIcon, SearchResultsTemplateIcon, SectionTemplateIcon, SettingsIcon, ShrinkIcon, StructureIcon, TabletLandscapeIcon, TabletIcon as TabletPortraitIcon, ThemeBuilderIcon, ToggleRightIcon, TrashIcon, UpgradeIcon, WidescreenIcon, WordpressIcon, XIcon };
|
|
112
|
+
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, LinkIcon, LoopItemTemplateIcon, MessageIcon, MobileLandscapeIcon, MobileIcon as MobilePortraitIcon, PageTemplateIcon, PageTypeIcon, PagesIcon, PlugIcon, PlusIcon, PopupTemplateIcon, PostTypeIcon, RefreshIcon, SearchIcon, SearchResultsTemplateIcon, SectionTemplateIcon, SettingsIcon, ShrinkIcon, StructureIcon, TabletLandscapeIcon, TabletIcon as TabletPortraitIcon, ThemeBuilderIcon, ToggleRightIcon, TrashIcon, UpgradeIcon, WidescreenIcon, WordpressIcon, XIcon };
|