From c1f4f38f1026ff8424e8aa402754c7589e43a71f Mon Sep 17 00:00:00 2001 From: Ron Birk Date: Tue, 30 May 2023 12:57:33 -0400 Subject: [PATCH] fix(icons): add missing icon exports (#240) closes #209 --- projects/core/custom-elements.json | 64 ++++++++++++++++++++++++++++++ projects/core/src/icon/index.ts | 4 ++ 2 files changed, 68 insertions(+) diff --git a/projects/core/custom-elements.json b/projects/core/custom-elements.json index 895c9c232..024e9e1bb 100644 --- a/projects/core/custom-elements.json +++ b/projects/core/custom-elements.json @@ -12603,6 +12603,22 @@ "module": "./shapes/beta.js" } }, + { + "kind": "js", + "name": "birthdayCakeIcon", + "declaration": { + "name": "birthdayCakeIcon", + "module": "./shapes/birthday-cake.js" + } + }, + { + "kind": "js", + "name": "birthdayCakeIconName", + "declaration": { + "name": "birthdayCakeIconName", + "module": "./shapes/birthday-cake.js" + } + }, { "kind": "js", "name": "boltIcon", @@ -13307,6 +13323,22 @@ "module": "./shapes/fuel.js" } }, + { + "kind": "js", + "name": "gavelIcon", + "declaration": { + "name": "gavelIcon", + "module": "./shapes/gavel.js" + } + }, + { + "kind": "js", + "name": "gavelIconName", + "declaration": { + "name": "gavelIconName", + "module": "./shapes/gavel.js" + } + }, { "kind": "js", "name": "gridViewIcon", @@ -14123,6 +14155,22 @@ "module": "./shapes/thermometer.js" } }, + { + "kind": "js", + "name": "timelineIcon", + "declaration": { + "name": "timelineIcon", + "module": "./shapes/timeline.js" + } + }, + { + "kind": "js", + "name": "timelineIconName", + "declaration": { + "name": "timelineIconName", + "module": "./shapes/timeline.js" + } + }, { "kind": "js", "name": "timesCircleIcon", @@ -16747,6 +16795,22 @@ "module": "./shapes/nvme.js" } }, + { + "kind": "js", + "name": "pdfFileIcon", + "declaration": { + "name": "pdfFileIcon", + "module": "./shapes/pdf-file.js" + } + }, + { + "kind": "js", + "name": "pdfFileIconName", + "declaration": { + "name": "pdfFileIconName", + "module": "./shapes/pdf-file.js" + } + }, { "kind": "js", "name": "phoneHandsetIcon", diff --git a/projects/core/src/icon/index.ts b/projects/core/src/icon/index.ts index a0e9bdf2b..aa83503e4 100644 --- a/projects/core/src/icon/index.ts +++ b/projects/core/src/icon/index.ts @@ -62,6 +62,7 @@ export { alarmOffIcon, alarmOffIconName } from './shapes/alarm-off.js'; export { asteriskIcon, asteriskIconName } from './shapes/asterisk.js'; export { banIcon, banIconName } from './shapes/ban.js'; export { betaIcon, betaIconName } from './shapes/beta.js'; +export { birthdayCakeIcon, birthdayCakeIconName } from './shapes/birthday-cake.js'; export { boltIcon, boltIconName } from './shapes/bolt.js'; export { bookIcon, bookIconName } from './shapes/book.js'; export { briefcaseIcon, briefcaseIconName } from './shapes/briefcase.js'; @@ -106,6 +107,7 @@ export { fishIcon, fishIconName } from './shapes/fish.js'; export { flameIcon, flameIconName } from './shapes/flame.js'; export { formIcon, formIconName } from './shapes/form.js'; export { fuelIcon, fuelIconName } from './shapes/fuel.js'; +export { gavelIcon, gavelIconName } from './shapes/gavel.js'; export { gridViewIcon, gridViewIconName } from './shapes/grid-view.js'; export { helpIcon, helpIconName } from './shapes/help.js'; export { historyIcon, historyIconName } from './shapes/history.js'; @@ -157,6 +159,7 @@ export { tagIcon, tagIconName } from './shapes/tag.js'; export { tagsIcon, tagsIconName } from './shapes/tags.js'; export { targetIcon, targetIconName } from './shapes/target.js'; export { thermometerIcon, thermometerIconName } from './shapes/thermometer.js'; +export { timelineIcon, timelineIconName } from './shapes/timeline.js'; export { timesCircleIcon, timesCircleIconName } from './shapes/times-circle.js'; export { toolsIcon, toolsIconName } from './shapes/tools.js'; export { trashIcon, trashIconName } from './shapes/trash.js'; @@ -331,6 +334,7 @@ export { nodeIcon, nodeIconName } from './shapes/node.js'; export { nodesIcon, nodesIconName } from './shapes/nodes.js'; export { noWifiIcon, noWifiIconName } from './shapes/no-wifi.js'; export { nvmeIcon, nvmeIconName } from './shapes/nvme.js'; +export { pdfFileIcon, pdfFileIconName } from './shapes/pdf-file.js'; export { phoneHandsetIcon, phoneHandsetIconName } from './shapes/phone-handset.js'; export { pluginIcon, pluginIconName } from './shapes/plugin.js'; export { podIcon, podIconName } from './shapes/pod.js';