@elementor/icons 0.5.0 → 0.6.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 +11 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.js +93 -83
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +92 -83
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/components/pages-icon.tsx +14 -0
- package/src/index.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.6.0](https://github.com/elementor/elementor-packages/compare/@elementor/icons@0.5.0...@elementor/icons@0.6.0) (2023-06-26)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* added panel infrastructure to pages panel [ED-10863] ([#65](https://github.com/elementor/elementor-packages/issues/65)) ([e743522](https://github.com/elementor/elementor-packages/commit/e743522558b9e7cdf40e2c2dcf71e4049c815992))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [0.5.0](https://github.com/elementor/elementor-packages/compare/@elementor/icons@0.4.0...@elementor/icons@0.5.0) (2023-06-25)
|
|
7
18
|
|
|
8
19
|
|
package/dist/index.d.ts
CHANGED
|
@@ -61,6 +61,8 @@ declare const MobileLandscapeIcon: React.ForwardRefExoticComponent<Omit<SvgIconP
|
|
|
61
61
|
|
|
62
62
|
declare const MobileIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
63
63
|
|
|
64
|
+
declare const PagesIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
65
|
+
|
|
64
66
|
declare const PageTemplateIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
65
67
|
|
|
66
68
|
declare const PageTypeIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
@@ -103,4 +105,4 @@ declare const WordpressIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps,
|
|
|
103
105
|
|
|
104
106
|
declare const XIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<unknown>>;
|
|
105
107
|
|
|
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 };
|
|
108
|
+
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, PlusIcon, PopupTemplateIcon, PostTypeIcon, RefreshIcon, SearchIcon, SearchResultsTemplateIcon, SectionTemplateIcon, SettingsIcon, ShrinkIcon, StructureIcon, TabletLandscapeIcon, TabletIcon as TabletPortraitIcon, ThemeBuilderIcon, ToggleRightIcon, TrashIcon, UpgradeIcon, WidescreenIcon, WordpressIcon, XIcon };
|