@epilot360/icons 1.17.27 → 1.17.29
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/icons.config.yaml +16 -6
- package/index.js +1878 -1733
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/react/EpilotIcon.d.ts +188 -186
- package/react/EpilotIcon.js +544 -433
- package/react/EpilotIcon.js.map +1 -1
- package/react/Exclamation/index.js +2 -2
- package/react/FeatureSearch/index.d.ts +4 -0
- package/react/FeatureSearch/index.js +209 -0
- package/react/FeatureSearch/index.js.map +1 -0
- package/react/index.d.ts +184 -183
- package/react/index.js +981 -867
- package/react/index.js.map +1 -1
- package/svg/Exclamation/index.js +2 -2
- package/svg/FeatureSearch/icon-fill.svg +1 -0
- package/svg/FeatureSearch/icon.svg +1 -0
- package/svg/FeatureSearch/index.d.ts +3 -0
- package/svg/FeatureSearch/index.js +159 -0
- package/svg/FeatureSearch/index.js.map +1 -0
- package/svg/index.d.ts +184 -183
- package/svg/index.js +947 -866
- package/svg/index.js.map +1 -1
- package/svg/svgIcon.d.ts +4 -3
- package/svg/svgIcon.js +510 -432
- package/svg/svgIcon.js.map +1 -1
package/icons.config.yaml
CHANGED
|
@@ -340,7 +340,13 @@ Automation:
|
|
|
340
340
|
svg_import: "@material-symbols/svg-600/rounded/bolt.svg"
|
|
341
341
|
AutomationCircle:
|
|
342
342
|
name: automation_circle
|
|
343
|
-
aliases:
|
|
343
|
+
aliases:
|
|
344
|
+
[
|
|
345
|
+
"automation_circle",
|
|
346
|
+
"automation_action2",
|
|
347
|
+
"automation_trigger2",
|
|
348
|
+
"offline_bolt",
|
|
349
|
+
]
|
|
344
350
|
svg_import: "@material-symbols/svg-600/rounded/offline_bolt.svg"
|
|
345
351
|
Journey:
|
|
346
352
|
name: journey
|
|
@@ -637,7 +643,8 @@ Condition:
|
|
|
637
643
|
aliases: ["route", "alternative", "condition"]
|
|
638
644
|
ConditionCircle:
|
|
639
645
|
name: condition_circle
|
|
640
|
-
aliases:
|
|
646
|
+
aliases:
|
|
647
|
+
["condition_circle", "alternative2", "condition2", "swap_horizontal_circle"]
|
|
641
648
|
svg_import: "@material-symbols/svg-600/rounded/swap_horizontal_circle.svg"
|
|
642
649
|
NoteStack:
|
|
643
650
|
name: note_stack
|
|
@@ -796,7 +803,7 @@ Campaign:
|
|
|
796
803
|
svg_import: "@material-symbols/svg-600/rounded/campaign.svg"
|
|
797
804
|
Ticket:
|
|
798
805
|
name: ticket
|
|
799
|
-
aliases: ["ticket","case"]
|
|
806
|
+
aliases: ["ticket", "case"]
|
|
800
807
|
svg_import: "@material-symbols/svg-600/rounded/confirmation_number.svg"
|
|
801
808
|
Flow:
|
|
802
809
|
name: flow
|
|
@@ -807,7 +814,7 @@ Cards:
|
|
|
807
814
|
svg_import: "@material-symbols/svg-600/rounded/cards.svg"
|
|
808
815
|
Task:
|
|
809
816
|
name: task
|
|
810
|
-
aliases: ["task","manual_task","user_task"]
|
|
817
|
+
aliases: ["task", "manual_task", "user_task"]
|
|
811
818
|
svg_import: "@material-symbols/svg-600/rounded/inventory.svg"
|
|
812
819
|
Widgets:
|
|
813
820
|
name: widgets
|
|
@@ -827,7 +834,7 @@ StackedEmail:
|
|
|
827
834
|
svg_import: "@material-symbols/svg-600/rounded/stacked_email.svg"
|
|
828
835
|
ChatBubble:
|
|
829
836
|
name: chat_bubble
|
|
830
|
-
alias: ["chat_bubble",
|
|
837
|
+
alias: ["chat_bubble", "message", "chat"]
|
|
831
838
|
svg_import: "@material-symbols/svg-600/rounded/chat_bubble.svg"
|
|
832
839
|
Globe:
|
|
833
840
|
name: globe
|
|
@@ -862,4 +869,7 @@ MoveIn:
|
|
|
862
869
|
ConditionGraph:
|
|
863
870
|
name: condition_graph
|
|
864
871
|
aliases: ["condition_graph"]
|
|
865
|
-
|
|
872
|
+
FeatureSearch:
|
|
873
|
+
name: feature_search
|
|
874
|
+
aliases: ["feature_search"]
|
|
875
|
+
svg_import: "@material-symbols/svg-600/rounded/feature_search.svg"
|