@trackunit/iris-app-api 0.2.1 → 0.2.3

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 CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [0.2.3](https://github.com/Trackunit/manager/compare/iris-app-api/0.2.2...iris-app-api/0.2.3) (2024-09-11)
6
+
7
+ ## [0.2.2](https://github.com/Trackunit/manager/compare/iris-app-api/0.2.1...iris-app-api/0.2.2) (2024-09-09)
8
+
5
9
  ## [0.2.1](https://github.com/Trackunit/manager/compare/iris-app-api/0.2.0...iris-app-api/0.2.1) (2024-09-05)
6
10
 
7
11
  ## [0.2.0](https://github.com/Trackunit/manager/compare/iris-app-api/0.1.0...iris-app-api/0.2.0) (2024-09-04)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app-api",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "engines": {
@@ -1,3 +1,4 @@
1
+ import { IconByName, IconImage } from "../iconImage";
1
2
  import { AbstractExtensionManifest, RegExpType, TranslationKey, Translations } from "../irisAppExtensionManifest";
2
3
  import { AccountScope } from "../scopes";
3
4
  export interface FleetExtensionManifest extends AbstractExtensionManifest {
@@ -22,5 +23,6 @@ export interface FleetExtensionManifest extends AbstractExtensionManifest {
22
23
  menuItem: {
23
24
  name: string | Translations | TranslationKey;
24
25
  icon: string;
26
+ image?: IconByName | IconImage;
25
27
  };
26
28
  }
@@ -1 +1 @@
1
- {"version":3,"file":"fleetExtensionManifest.js","sourceRoot":"","sources":["../../../../../../../libs/iris-app-sdk/iris-app-api/src/types/extensions/fleetExtensionManifest.ts"],"names":[],"mappings":"","sourcesContent":["import { AbstractExtensionManifest, RegExpType, TranslationKey, Translations } from \"../irisAppExtensionManifest\";\nimport { AccountScope } from \"../scopes\";\n\nexport interface FleetExtensionManifest extends AbstractExtensionManifest {\n type: \"FLEET_EXTENSION\";\n\n /**\n * Conditions for the fleet extension to be shown.\n * It is case insensitive so does not matter how you write the brand.\n * brand: \"trackunit\" and brand: \"Trackunit\" will be the same.\n *\n * Its doing AND between the conditions types and OR between the conditions of the same type:\n * - If both model and brand are used/filled out then asset needs to match both model and brand.\n * - If only brand or model is used/filled out then the asset needs to match the filled out property.\n * - If only scopes is used/filled out then the fleet extension will be shown if the user has the required scope.\n * - If more scopes are used/filled out then the fleet extension will be shown if the user has one of the required scopes.\n * - If no conditions are used/filled out then the asset home extension will be shown for all assets.\n */\n conditions?: {\n model?: (string | RegExpType)[] | string | RegExpType;\n brand?: (string | RegExpType)[] | string | RegExpType;\n scopes?: AccountScope | AccountScope[];\n };\n menuItem: {\n name: string | Translations | TranslationKey;\n icon: string;\n };\n}\n"]}
1
+ {"version":3,"file":"fleetExtensionManifest.js","sourceRoot":"","sources":["../../../../../../../libs/iris-app-sdk/iris-app-api/src/types/extensions/fleetExtensionManifest.ts"],"names":[],"mappings":"","sourcesContent":["import { IconByName, IconImage } from \"../iconImage\";\nimport { AbstractExtensionManifest, RegExpType, TranslationKey, Translations } from \"../irisAppExtensionManifest\";\nimport { AccountScope } from \"../scopes\";\n\nexport interface FleetExtensionManifest extends AbstractExtensionManifest {\n type: \"FLEET_EXTENSION\";\n\n /**\n * Conditions for the fleet extension to be shown.\n * It is case insensitive so does not matter how you write the brand.\n * brand: \"trackunit\" and brand: \"Trackunit\" will be the same.\n *\n * Its doing AND between the conditions types and OR between the conditions of the same type:\n * - If both model and brand are used/filled out then asset needs to match both model and brand.\n * - If only brand or model is used/filled out then the asset needs to match the filled out property.\n * - If only scopes is used/filled out then the fleet extension will be shown if the user has the required scope.\n * - If more scopes are used/filled out then the fleet extension will be shown if the user has one of the required scopes.\n * - If no conditions are used/filled out then the asset home extension will be shown for all assets.\n */\n conditions?: {\n model?: (string | RegExpType)[] | string | RegExpType;\n brand?: (string | RegExpType)[] | string | RegExpType;\n scopes?: AccountScope | AccountScope[];\n };\n\n menuItem: {\n name: string | Translations | TranslationKey;\n icon: string;\n image?: IconByName | IconImage;\n };\n}\n"]}
@@ -0,0 +1,47 @@
1
+ import { IconName } from "./icons.generated";
2
+ type HexColor = `#${string}`;
3
+ type RgbColor = `rgb(${number},${number},${number})`;
4
+ export type SvgImagePath = `${string}.svg`;
5
+ /**
6
+ * Checks if the value is a valid hex color
7
+ */
8
+ export declare const isHexColor: (color: any) => color is HexColor;
9
+ /**
10
+ * Checks if the value is a valid rgb color
11
+ */
12
+ export declare const isRgbColor: (color: any) => color is RgbColor;
13
+ export type Color = HexColor | RgbColor;
14
+ export type IconImage = {
15
+ /**
16
+ * Path relative to the projects src folder defined in the extensions sourceRoot
17
+ *
18
+ * @example "assets/icon.svg"
19
+ */
20
+ path: SvgImagePath;
21
+ color?: Color;
22
+ };
23
+ export type IconByName = {
24
+ name: IconName;
25
+ /**
26
+ * Color of the background for the icon
27
+ * Supports hex or rgb
28
+ *
29
+ * @example "#ff0000" or "rgb(255,0,0)"
30
+ */
31
+ color?: Color;
32
+ };
33
+ /**
34
+ * Checks if value is an IconImage
35
+ *
36
+ * @param value - The value to check
37
+ * @returns - True if value is an IconImage
38
+ */
39
+ export declare const isIconImage: (value: unknown) => value is IconImage;
40
+ /**
41
+ * Checks if value is an IconByName
42
+ *
43
+ * @param value - The value to check
44
+ * @returns - True if value is an IconByName
45
+ */
46
+ export declare const isIconByName: (value: unknown) => value is IconByName;
47
+ export {};
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.isIconByName = exports.isIconImage = exports.isRgbColor = exports.isHexColor = void 0;
4
+ /**
5
+ * Checks if the value is a valid hex color
6
+ */
7
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
8
+ const isHexColor = (color) => {
9
+ return /^#[0-9A-F]{6}$/i.test(color) || /^#[0-9A-F]{3}$/i.test(color);
10
+ };
11
+ exports.isHexColor = isHexColor;
12
+ /**
13
+ * Checks if the value is a valid rgb color
14
+ */
15
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
16
+ const isRgbColor = (color) => {
17
+ return /^rgb\(\d{1,3},\d{1,3},\d{1,3}\)$/i.test(color);
18
+ };
19
+ exports.isRgbColor = isRgbColor;
20
+ /**
21
+ * Checks if value is an IconImage
22
+ *
23
+ * @param value - The value to check
24
+ * @returns - True if value is an IconImage
25
+ */
26
+ const isIconImage = (value) => {
27
+ return !!(value === null || value === void 0 ? void 0 : value.path);
28
+ };
29
+ exports.isIconImage = isIconImage;
30
+ /**
31
+ * Checks if value is an IconByName
32
+ *
33
+ * @param value - The value to check
34
+ * @returns - True if value is an IconByName
35
+ */
36
+ const isIconByName = (value) => {
37
+ return !!(value === null || value === void 0 ? void 0 : value.name);
38
+ };
39
+ exports.isIconByName = isIconByName;
40
+ //# sourceMappingURL=iconImage.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"iconImage.js","sourceRoot":"","sources":["../../../../../../libs/iris-app-sdk/iris-app-api/src/types/iconImage.ts"],"names":[],"mappings":";;;AAMA;;GAEG;AACH,8DAA8D;AACvD,MAAM,UAAU,GAAG,CAAC,KAAU,EAAqB,EAAE;IAC1D,OAAO,iBAAiB,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,iBAAiB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;AACxE,CAAC,CAAC;AAFW,QAAA,UAAU,cAErB;AAEF;;GAEG;AACH,8DAA8D;AACvD,MAAM,UAAU,GAAG,CAAC,KAAU,EAAqB,EAAE;IAC1D,OAAO,mCAAmC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;AACzD,CAAC,CAAC;AAFW,QAAA,UAAU,cAErB;AAyBF;;;;;GAKG;AACI,MAAM,WAAW,GAAG,CAAC,KAAc,EAAsB,EAAE;IAChE,OAAO,CAAC,CAAC,CAAC,KAA+B,aAA/B,KAAK,uBAAL,KAAK,CAA4B,IAAI,CAAA,CAAC;AAClD,CAAC,CAAC;AAFW,QAAA,WAAW,eAEtB;AAEF;;;;;GAKG;AACI,MAAM,YAAY,GAAG,CAAC,KAAc,EAAuB,EAAE;IAClE,OAAO,CAAC,CAAC,CAAC,KAAgC,aAAhC,KAAK,uBAAL,KAAK,CAA6B,IAAI,CAAA,CAAC;AACnD,CAAC,CAAC;AAFW,QAAA,YAAY,gBAEvB","sourcesContent":["import { IconName } from \"./icons.generated\";\n\ntype HexColor = `#${string}`;\ntype RgbColor = `rgb(${number},${number},${number})`;\nexport type SvgImagePath = `${string}.svg`;\n\n/**\n * Checks if the value is a valid hex color\n */\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport const isHexColor = (color: any): color is HexColor => {\n return /^#[0-9A-F]{6}$/i.test(color) || /^#[0-9A-F]{3}$/i.test(color);\n};\n\n/**\n * Checks if the value is a valid rgb color\n */\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport const isRgbColor = (color: any): color is RgbColor => {\n return /^rgb\\(\\d{1,3},\\d{1,3},\\d{1,3}\\)$/i.test(color);\n};\n\nexport type Color = HexColor | RgbColor;\n\nexport type IconImage = {\n /**\n * Path relative to the projects src folder defined in the extensions sourceRoot\n *\n * @example \"assets/icon.svg\"\n */\n path: SvgImagePath;\n color?: Color;\n};\n\nexport type IconByName = {\n name: IconName;\n /**\n * Color of the background for the icon\n * Supports hex or rgb\n *\n * @example \"#ff0000\" or \"rgb(255,0,0)\"\n */\n color?: Color;\n};\n\n/**\n * Checks if value is an IconImage\n *\n * @param value - The value to check\n * @returns - True if value is an IconImage\n */\nexport const isIconImage = (value: unknown): value is IconImage => {\n return !!(value as IconImage | undefined)?.path;\n};\n\n/**\n * Checks if value is an IconByName\n *\n * @param value - The value to check\n * @returns - True if value is an IconByName\n */\nexport const isIconByName = (value: unknown): value is IconByName => {\n return !!(value as IconByName | undefined)?.name;\n};\n"]}
@@ -0,0 +1,324 @@
1
+ export declare const iconNames: {
2
+ readonly Zone: "Zone";
3
+ readonly WackerNeusonZeroEmission: "WackerNeusonZeroEmission";
4
+ readonly Timeline: "Timeline";
5
+ readonly Timeline1: "Timeline1";
6
+ readonly Slash: "Slash";
7
+ readonly RawDevice: "RawDevice";
8
+ readonly Plug: "Plug";
9
+ readonly Pin: "Pin";
10
+ readonly MapMarkerPointSquare: "MapMarkerPointSquare";
11
+ readonly MapMarkerPointRound: "MapMarkerPointRound";
12
+ readonly MapMarkerLabelSquare: "MapMarkerLabelSquare";
13
+ readonly MapMarkerLabelRound: "MapMarkerLabelRound";
14
+ readonly Leaf: "Leaf";
15
+ readonly IrisX: "IrisX";
16
+ readonly Hierarchy: "Hierarchy";
17
+ readonly Gps: "Gps";
18
+ readonly FitToWidth: "FitToWidth";
19
+ readonly FitToHeight: "FitToHeight";
20
+ readonly Excavator: "Excavator";
21
+ readonly EllipsisDrag: "EllipsisDrag";
22
+ readonly Directions: "Directions";
23
+ readonly DemolitionHammer: "DemolitionHammer";
24
+ readonly ConstructionCone: "ConstructionCone";
25
+ readonly ConcreteMixer: "ConcreteMixer";
26
+ readonly Co2: "Co2";
27
+ readonly CloudX: "CloudX";
28
+ readonly Bucket: "Bucket";
29
+ readonly Bluetooth: "Bluetooth";
30
+ readonly BatteryBig: "BatteryBig";
31
+ readonly XMark: "XMark";
32
+ readonly XCircle: "XCircle";
33
+ readonly Wrench: "Wrench";
34
+ readonly WrenchScrewdriver: "WrenchScrewdriver";
35
+ readonly Window: "Window";
36
+ readonly Wifi: "Wifi";
37
+ readonly Wallet: "Wallet";
38
+ readonly ViewfinderCircle: "ViewfinderCircle";
39
+ readonly ViewColumns: "ViewColumns";
40
+ readonly VideoCamera: "VideoCamera";
41
+ readonly VideoCameraSlash: "VideoCameraSlash";
42
+ readonly Variable: "Variable";
43
+ readonly Users: "Users";
44
+ readonly User: "User";
45
+ readonly UserPlus: "UserPlus";
46
+ readonly UserMinus: "UserMinus";
47
+ readonly UserGroup: "UserGroup";
48
+ readonly UserCircle: "UserCircle";
49
+ readonly Tv: "Tv";
50
+ readonly Truck: "Truck";
51
+ readonly Trophy: "Trophy";
52
+ readonly Trash: "Trash";
53
+ readonly Ticket: "Ticket";
54
+ readonly Tag: "Tag";
55
+ readonly TableCells: "TableCells";
56
+ readonly Swatch: "Swatch";
57
+ readonly Sun: "Sun";
58
+ readonly Stop: "Stop";
59
+ readonly StopCircle: "StopCircle";
60
+ readonly Star: "Star";
61
+ readonly SquaresPlus: "SquaresPlus";
62
+ readonly Squares2X2: "Squares2X2";
63
+ readonly Square3Stack3D: "Square3Stack3D";
64
+ readonly Square2Stack: "Square2Stack";
65
+ readonly SpeakerXMark: "SpeakerXMark";
66
+ readonly SpeakerWave: "SpeakerWave";
67
+ readonly Sparkles: "Sparkles";
68
+ readonly Signal: "Signal";
69
+ readonly SignalSlash: "SignalSlash";
70
+ readonly ShoppingCart: "ShoppingCart";
71
+ readonly ShoppingBag: "ShoppingBag";
72
+ readonly ShieldExclamation: "ShieldExclamation";
73
+ readonly ShieldCheck: "ShieldCheck";
74
+ readonly Share: "Share";
75
+ readonly Server: "Server";
76
+ readonly ServerStack: "ServerStack";
77
+ readonly Scissors: "Scissors";
78
+ readonly Scale: "Scale";
79
+ readonly Rss: "Rss";
80
+ readonly RocketLaunch: "RocketLaunch";
81
+ readonly RectangleStack: "RectangleStack";
82
+ readonly RectangleGroup: "RectangleGroup";
83
+ readonly ReceiptRefund: "ReceiptRefund";
84
+ readonly ReceiptPercent: "ReceiptPercent";
85
+ readonly Radio: "Radio";
86
+ readonly QueueList: "QueueList";
87
+ readonly QuestionMarkCircle: "QuestionMarkCircle";
88
+ readonly QrCode: "QrCode";
89
+ readonly PuzzlePiece: "PuzzlePiece";
90
+ readonly Printer: "Printer";
91
+ readonly PresentationChartLine: "PresentationChartLine";
92
+ readonly PresentationChartBar: "PresentationChartBar";
93
+ readonly Power: "Power";
94
+ readonly Plus: "Plus";
95
+ readonly PlusSmall: "PlusSmall";
96
+ readonly PlusCircle: "PlusCircle";
97
+ readonly Play: "Play";
98
+ readonly PlayPause: "PlayPause";
99
+ readonly PlayCircle: "PlayCircle";
100
+ readonly Photo: "Photo";
101
+ readonly Phone: "Phone";
102
+ readonly PhoneXMark: "PhoneXMark";
103
+ readonly PhoneArrowUpRight: "PhoneArrowUpRight";
104
+ readonly PhoneArrowDownLeft: "PhoneArrowDownLeft";
105
+ readonly Pencil: "Pencil";
106
+ readonly PencilSquare: "PencilSquare";
107
+ readonly Pause: "Pause";
108
+ readonly PauseCircle: "PauseCircle";
109
+ readonly PaperClip: "PaperClip";
110
+ readonly PaperAirplane: "PaperAirplane";
111
+ readonly PaintBrush: "PaintBrush";
112
+ readonly NoSymbol: "NoSymbol";
113
+ readonly Newspaper: "Newspaper";
114
+ readonly MusicalNote: "MusicalNote";
115
+ readonly Moon: "Moon";
116
+ readonly Minus: "Minus";
117
+ readonly MinusSmall: "MinusSmall";
118
+ readonly MinusCircle: "MinusCircle";
119
+ readonly Microphone: "Microphone";
120
+ readonly Megaphone: "Megaphone";
121
+ readonly Map: "Map";
122
+ readonly MapPin: "MapPin";
123
+ readonly MagnifyingGlass: "MagnifyingGlass";
124
+ readonly MagnifyingGlassPlus: "MagnifyingGlassPlus";
125
+ readonly MagnifyingGlassMinus: "MagnifyingGlassMinus";
126
+ readonly MagnifyingGlassCircle: "MagnifyingGlassCircle";
127
+ readonly LockOpen: "LockOpen";
128
+ readonly LockClosed: "LockClosed";
129
+ readonly ListBullet: "ListBullet";
130
+ readonly Link: "Link";
131
+ readonly LightBulb: "LightBulb";
132
+ readonly Lifebuoy: "Lifebuoy";
133
+ readonly Language: "Language";
134
+ readonly Key: "Key";
135
+ readonly InformationCircle: "InformationCircle";
136
+ readonly Inbox: "Inbox";
137
+ readonly InboxStack: "InboxStack";
138
+ readonly InboxArrowDown: "InboxArrowDown";
139
+ readonly Identification: "Identification";
140
+ readonly Home: "Home";
141
+ readonly HomeModern: "HomeModern";
142
+ readonly Heart: "Heart";
143
+ readonly Hashtag: "Hashtag";
144
+ readonly HandThumbUp: "HandThumbUp";
145
+ readonly HandThumbDown: "HandThumbDown";
146
+ readonly HandRaised: "HandRaised";
147
+ readonly GlobeEuropeAfrica: "GlobeEuropeAfrica";
148
+ readonly GlobeAsiaAustralia: "GlobeAsiaAustralia";
149
+ readonly GlobeAmericas: "GlobeAmericas";
150
+ readonly GlobeAlt: "GlobeAlt";
151
+ readonly Gift: "Gift";
152
+ readonly GiftTop: "GiftTop";
153
+ readonly Gif: "Gif";
154
+ readonly Funnel: "Funnel";
155
+ readonly Forward: "Forward";
156
+ readonly Folder: "Folder";
157
+ readonly FolderPlus: "FolderPlus";
158
+ readonly FolderOpen: "FolderOpen";
159
+ readonly FolderMinus: "FolderMinus";
160
+ readonly FolderArrowDown: "FolderArrowDown";
161
+ readonly Flag: "Flag";
162
+ readonly Fire: "Fire";
163
+ readonly FingerPrint: "FingerPrint";
164
+ readonly Film: "Film";
165
+ readonly FaceSmile: "FaceSmile";
166
+ readonly FaceFrown: "FaceFrown";
167
+ readonly Eye: "Eye";
168
+ readonly EyeSlash: "EyeSlash";
169
+ readonly EyeDropper: "EyeDropper";
170
+ readonly ExclamationTriangle: "ExclamationTriangle";
171
+ readonly ExclamationCircle: "ExclamationCircle";
172
+ readonly Envelope: "Envelope";
173
+ readonly EnvelopeOpen: "EnvelopeOpen";
174
+ readonly EllipsisVertical: "EllipsisVertical";
175
+ readonly EllipsisHorizontal: "EllipsisHorizontal";
176
+ readonly EllipsisHorizontalCircle: "EllipsisHorizontalCircle";
177
+ readonly Document: "Document";
178
+ readonly DocumentText: "DocumentText";
179
+ readonly DocumentPlus: "DocumentPlus";
180
+ readonly DocumentMinus: "DocumentMinus";
181
+ readonly DocumentMagnifyingGlass: "DocumentMagnifyingGlass";
182
+ readonly DocumentDuplicate: "DocumentDuplicate";
183
+ readonly DocumentCheck: "DocumentCheck";
184
+ readonly DocumentChartBar: "DocumentChartBar";
185
+ readonly DocumentArrowUp: "DocumentArrowUp";
186
+ readonly DocumentArrowDown: "DocumentArrowDown";
187
+ readonly DeviceTablet: "DeviceTablet";
188
+ readonly DevicePhoneMobile: "DevicePhoneMobile";
189
+ readonly CursorArrowRipple: "CursorArrowRipple";
190
+ readonly CursorArrowRays: "CursorArrowRays";
191
+ readonly CurrencyYen: "CurrencyYen";
192
+ readonly CurrencyRupee: "CurrencyRupee";
193
+ readonly CurrencyPound: "CurrencyPound";
194
+ readonly CurrencyEuro: "CurrencyEuro";
195
+ readonly CurrencyDollar: "CurrencyDollar";
196
+ readonly CurrencyBangladeshi: "CurrencyBangladeshi";
197
+ readonly Cube: "Cube";
198
+ readonly CubeTransparent: "CubeTransparent";
199
+ readonly CreditCard: "CreditCard";
200
+ readonly CpuChip: "CpuChip";
201
+ readonly ComputerDesktop: "ComputerDesktop";
202
+ readonly CommandLine: "CommandLine";
203
+ readonly Cog: "Cog";
204
+ readonly Cog8Tooth: "Cog8Tooth";
205
+ readonly Cog6Tooth: "Cog6Tooth";
206
+ readonly CodeBracket: "CodeBracket";
207
+ readonly CodeBracketSquare: "CodeBracketSquare";
208
+ readonly Cloud: "Cloud";
209
+ readonly CloudArrowUp: "CloudArrowUp";
210
+ readonly CloudArrowDown: "CloudArrowDown";
211
+ readonly Clock: "Clock";
212
+ readonly Clipboard: "Clipboard";
213
+ readonly ClipboardDocument: "ClipboardDocument";
214
+ readonly ClipboardDocumentList: "ClipboardDocumentList";
215
+ readonly ClipboardDocumentCheck: "ClipboardDocumentCheck";
216
+ readonly CircleStack: "CircleStack";
217
+ readonly ChevronUp: "ChevronUp";
218
+ readonly ChevronUpDown: "ChevronUpDown";
219
+ readonly ChevronRight: "ChevronRight";
220
+ readonly ChevronLeft: "ChevronLeft";
221
+ readonly ChevronDown: "ChevronDown";
222
+ readonly ChevronDoubleUp: "ChevronDoubleUp";
223
+ readonly ChevronDoubleRight: "ChevronDoubleRight";
224
+ readonly ChevronDoubleLeft: "ChevronDoubleLeft";
225
+ readonly ChevronDoubleDown: "ChevronDoubleDown";
226
+ readonly Check: "Check";
227
+ readonly CheckCircle: "CheckCircle";
228
+ readonly CheckBadge: "CheckBadge";
229
+ readonly ChatBubbleOvalLeft: "ChatBubbleOvalLeft";
230
+ readonly ChatBubbleOvalLeftEllipsis: "ChatBubbleOvalLeftEllipsis";
231
+ readonly ChatBubbleLeft: "ChatBubbleLeft";
232
+ readonly ChatBubbleLeftRight: "ChatBubbleLeftRight";
233
+ readonly ChatBubbleLeftEllipsis: "ChatBubbleLeftEllipsis";
234
+ readonly ChatBubbleBottomCenter: "ChatBubbleBottomCenter";
235
+ readonly ChatBubbleBottomCenterText: "ChatBubbleBottomCenterText";
236
+ readonly ChartPie: "ChartPie";
237
+ readonly ChartBar: "ChartBar";
238
+ readonly ChartBarSquare: "ChartBarSquare";
239
+ readonly Camera: "Camera";
240
+ readonly Calendar: "Calendar";
241
+ readonly CalendarDays: "CalendarDays";
242
+ readonly Calculator: "Calculator";
243
+ readonly Cake: "Cake";
244
+ readonly BuildingStorefront: "BuildingStorefront";
245
+ readonly BuildingOffice: "BuildingOffice";
246
+ readonly BuildingOffice2: "BuildingOffice2";
247
+ readonly BuildingLibrary: "BuildingLibrary";
248
+ readonly BugAnt: "BugAnt";
249
+ readonly Briefcase: "Briefcase";
250
+ readonly Bookmark: "Bookmark";
251
+ readonly BookmarkSquare: "BookmarkSquare";
252
+ readonly BookmarkSlash: "BookmarkSlash";
253
+ readonly BookOpen: "BookOpen";
254
+ readonly Bolt: "Bolt";
255
+ readonly BoltSlash: "BoltSlash";
256
+ readonly Bell: "Bell";
257
+ readonly BellSnooze: "BellSnooze";
258
+ readonly BellSlash: "BellSlash";
259
+ readonly BellAlert: "BellAlert";
260
+ readonly Beaker: "Beaker";
261
+ readonly Battery50: "Battery50";
262
+ readonly Battery100: "Battery100";
263
+ readonly Battery0: "Battery0";
264
+ readonly BarsArrowUp: "BarsArrowUp";
265
+ readonly BarsArrowDown: "BarsArrowDown";
266
+ readonly Bars4: "Bars4";
267
+ readonly Bars3: "Bars3";
268
+ readonly Bars3CenterLeft: "Bars3CenterLeft";
269
+ readonly Bars3BottomRight: "Bars3BottomRight";
270
+ readonly Bars3BottomLeft: "Bars3BottomLeft";
271
+ readonly Bars2: "Bars2";
272
+ readonly Banknotes: "Banknotes";
273
+ readonly Backward: "Backward";
274
+ readonly Backspace: "Backspace";
275
+ readonly AtSymbol: "AtSymbol";
276
+ readonly ArrowsUpDown: "ArrowsUpDown";
277
+ readonly ArrowsRightLeft: "ArrowsRightLeft";
278
+ readonly ArrowsPointingOut: "ArrowsPointingOut";
279
+ readonly ArrowsPointingIn: "ArrowsPointingIn";
280
+ readonly ArrowUturnUp: "ArrowUturnUp";
281
+ readonly ArrowUturnRight: "ArrowUturnRight";
282
+ readonly ArrowUturnLeft: "ArrowUturnLeft";
283
+ readonly ArrowUturnDown: "ArrowUturnDown";
284
+ readonly ArrowUp: "ArrowUp";
285
+ readonly ArrowUpTray: "ArrowUpTray";
286
+ readonly ArrowUpRight: "ArrowUpRight";
287
+ readonly ArrowUpOnSquare: "ArrowUpOnSquare";
288
+ readonly ArrowUpOnSquareStack: "ArrowUpOnSquareStack";
289
+ readonly ArrowUpLeft: "ArrowUpLeft";
290
+ readonly ArrowUpCircle: "ArrowUpCircle";
291
+ readonly ArrowTrendingUp: "ArrowTrendingUp";
292
+ readonly ArrowTrendingDown: "ArrowTrendingDown";
293
+ readonly ArrowTopRightOnSquare: "ArrowTopRightOnSquare";
294
+ readonly ArrowSmallUp: "ArrowSmallUp";
295
+ readonly ArrowSmallRight: "ArrowSmallRight";
296
+ readonly ArrowSmallLeft: "ArrowSmallLeft";
297
+ readonly ArrowSmallDown: "ArrowSmallDown";
298
+ readonly ArrowRight: "ArrowRight";
299
+ readonly ArrowRightOnRectangle: "ArrowRightOnRectangle";
300
+ readonly ArrowRightCircle: "ArrowRightCircle";
301
+ readonly ArrowPath: "ArrowPath";
302
+ readonly ArrowPathRoundedSquare: "ArrowPathRoundedSquare";
303
+ readonly ArrowLongUp: "ArrowLongUp";
304
+ readonly ArrowLongRight: "ArrowLongRight";
305
+ readonly ArrowLongLeft: "ArrowLongLeft";
306
+ readonly ArrowLongDown: "ArrowLongDown";
307
+ readonly ArrowLeft: "ArrowLeft";
308
+ readonly ArrowLeftOnRectangle: "ArrowLeftOnRectangle";
309
+ readonly ArrowLeftCircle: "ArrowLeftCircle";
310
+ readonly ArrowDown: "ArrowDown";
311
+ readonly ArrowDownTray: "ArrowDownTray";
312
+ readonly ArrowDownRight: "ArrowDownRight";
313
+ readonly ArrowDownOnSquare: "ArrowDownOnSquare";
314
+ readonly ArrowDownOnSquareStack: "ArrowDownOnSquareStack";
315
+ readonly ArrowDownLeft: "ArrowDownLeft";
316
+ readonly ArrowDownCircle: "ArrowDownCircle";
317
+ readonly ArchiveBox: "ArchiveBox";
318
+ readonly ArchiveBoxXMark: "ArchiveBoxXMark";
319
+ readonly ArchiveBoxArrowDown: "ArchiveBoxArrowDown";
320
+ readonly AdjustmentsVertical: "AdjustmentsVertical";
321
+ readonly AdjustmentsHorizontal: "AdjustmentsHorizontal";
322
+ readonly AcademicCap: "AcademicCap";
323
+ };
324
+ export type IconName = keyof typeof iconNames;
@@ -0,0 +1,327 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.iconNames = void 0;
4
+ exports.iconNames = {
5
+ Zone: "Zone",
6
+ WackerNeusonZeroEmission: "WackerNeusonZeroEmission",
7
+ Timeline: "Timeline",
8
+ Timeline1: "Timeline1",
9
+ Slash: "Slash",
10
+ RawDevice: "RawDevice",
11
+ Plug: "Plug",
12
+ Pin: "Pin",
13
+ MapMarkerPointSquare: "MapMarkerPointSquare",
14
+ MapMarkerPointRound: "MapMarkerPointRound",
15
+ MapMarkerLabelSquare: "MapMarkerLabelSquare",
16
+ MapMarkerLabelRound: "MapMarkerLabelRound",
17
+ Leaf: "Leaf",
18
+ IrisX: "IrisX",
19
+ Hierarchy: "Hierarchy",
20
+ Gps: "Gps",
21
+ FitToWidth: "FitToWidth",
22
+ FitToHeight: "FitToHeight",
23
+ Excavator: "Excavator",
24
+ EllipsisDrag: "EllipsisDrag",
25
+ Directions: "Directions",
26
+ DemolitionHammer: "DemolitionHammer",
27
+ ConstructionCone: "ConstructionCone",
28
+ ConcreteMixer: "ConcreteMixer",
29
+ Co2: "Co2",
30
+ CloudX: "CloudX",
31
+ Bucket: "Bucket",
32
+ Bluetooth: "Bluetooth",
33
+ BatteryBig: "BatteryBig",
34
+ XMark: "XMark",
35
+ XCircle: "XCircle",
36
+ Wrench: "Wrench",
37
+ WrenchScrewdriver: "WrenchScrewdriver",
38
+ Window: "Window",
39
+ Wifi: "Wifi",
40
+ Wallet: "Wallet",
41
+ ViewfinderCircle: "ViewfinderCircle",
42
+ ViewColumns: "ViewColumns",
43
+ VideoCamera: "VideoCamera",
44
+ VideoCameraSlash: "VideoCameraSlash",
45
+ Variable: "Variable",
46
+ Users: "Users",
47
+ User: "User",
48
+ UserPlus: "UserPlus",
49
+ UserMinus: "UserMinus",
50
+ UserGroup: "UserGroup",
51
+ UserCircle: "UserCircle",
52
+ Tv: "Tv",
53
+ Truck: "Truck",
54
+ Trophy: "Trophy",
55
+ Trash: "Trash",
56
+ Ticket: "Ticket",
57
+ Tag: "Tag",
58
+ TableCells: "TableCells",
59
+ Swatch: "Swatch",
60
+ Sun: "Sun",
61
+ Stop: "Stop",
62
+ StopCircle: "StopCircle",
63
+ Star: "Star",
64
+ SquaresPlus: "SquaresPlus",
65
+ Squares2X2: "Squares2X2",
66
+ Square3Stack3D: "Square3Stack3D",
67
+ Square2Stack: "Square2Stack",
68
+ SpeakerXMark: "SpeakerXMark",
69
+ SpeakerWave: "SpeakerWave",
70
+ Sparkles: "Sparkles",
71
+ Signal: "Signal",
72
+ SignalSlash: "SignalSlash",
73
+ ShoppingCart: "ShoppingCart",
74
+ ShoppingBag: "ShoppingBag",
75
+ ShieldExclamation: "ShieldExclamation",
76
+ ShieldCheck: "ShieldCheck",
77
+ Share: "Share",
78
+ Server: "Server",
79
+ ServerStack: "ServerStack",
80
+ Scissors: "Scissors",
81
+ Scale: "Scale",
82
+ Rss: "Rss",
83
+ RocketLaunch: "RocketLaunch",
84
+ RectangleStack: "RectangleStack",
85
+ RectangleGroup: "RectangleGroup",
86
+ ReceiptRefund: "ReceiptRefund",
87
+ ReceiptPercent: "ReceiptPercent",
88
+ Radio: "Radio",
89
+ QueueList: "QueueList",
90
+ QuestionMarkCircle: "QuestionMarkCircle",
91
+ QrCode: "QrCode",
92
+ PuzzlePiece: "PuzzlePiece",
93
+ Printer: "Printer",
94
+ PresentationChartLine: "PresentationChartLine",
95
+ PresentationChartBar: "PresentationChartBar",
96
+ Power: "Power",
97
+ Plus: "Plus",
98
+ PlusSmall: "PlusSmall",
99
+ PlusCircle: "PlusCircle",
100
+ Play: "Play",
101
+ PlayPause: "PlayPause",
102
+ PlayCircle: "PlayCircle",
103
+ Photo: "Photo",
104
+ Phone: "Phone",
105
+ PhoneXMark: "PhoneXMark",
106
+ PhoneArrowUpRight: "PhoneArrowUpRight",
107
+ PhoneArrowDownLeft: "PhoneArrowDownLeft",
108
+ Pencil: "Pencil",
109
+ PencilSquare: "PencilSquare",
110
+ Pause: "Pause",
111
+ PauseCircle: "PauseCircle",
112
+ PaperClip: "PaperClip",
113
+ PaperAirplane: "PaperAirplane",
114
+ PaintBrush: "PaintBrush",
115
+ NoSymbol: "NoSymbol",
116
+ Newspaper: "Newspaper",
117
+ MusicalNote: "MusicalNote",
118
+ Moon: "Moon",
119
+ Minus: "Minus",
120
+ MinusSmall: "MinusSmall",
121
+ MinusCircle: "MinusCircle",
122
+ Microphone: "Microphone",
123
+ Megaphone: "Megaphone",
124
+ Map: "Map",
125
+ MapPin: "MapPin",
126
+ MagnifyingGlass: "MagnifyingGlass",
127
+ MagnifyingGlassPlus: "MagnifyingGlassPlus",
128
+ MagnifyingGlassMinus: "MagnifyingGlassMinus",
129
+ MagnifyingGlassCircle: "MagnifyingGlassCircle",
130
+ LockOpen: "LockOpen",
131
+ LockClosed: "LockClosed",
132
+ ListBullet: "ListBullet",
133
+ Link: "Link",
134
+ LightBulb: "LightBulb",
135
+ Lifebuoy: "Lifebuoy",
136
+ Language: "Language",
137
+ Key: "Key",
138
+ InformationCircle: "InformationCircle",
139
+ Inbox: "Inbox",
140
+ InboxStack: "InboxStack",
141
+ InboxArrowDown: "InboxArrowDown",
142
+ Identification: "Identification",
143
+ Home: "Home",
144
+ HomeModern: "HomeModern",
145
+ Heart: "Heart",
146
+ Hashtag: "Hashtag",
147
+ HandThumbUp: "HandThumbUp",
148
+ HandThumbDown: "HandThumbDown",
149
+ HandRaised: "HandRaised",
150
+ GlobeEuropeAfrica: "GlobeEuropeAfrica",
151
+ GlobeAsiaAustralia: "GlobeAsiaAustralia",
152
+ GlobeAmericas: "GlobeAmericas",
153
+ GlobeAlt: "GlobeAlt",
154
+ Gift: "Gift",
155
+ GiftTop: "GiftTop",
156
+ Gif: "Gif",
157
+ Funnel: "Funnel",
158
+ Forward: "Forward",
159
+ Folder: "Folder",
160
+ FolderPlus: "FolderPlus",
161
+ FolderOpen: "FolderOpen",
162
+ FolderMinus: "FolderMinus",
163
+ FolderArrowDown: "FolderArrowDown",
164
+ Flag: "Flag",
165
+ Fire: "Fire",
166
+ FingerPrint: "FingerPrint",
167
+ Film: "Film",
168
+ FaceSmile: "FaceSmile",
169
+ FaceFrown: "FaceFrown",
170
+ Eye: "Eye",
171
+ EyeSlash: "EyeSlash",
172
+ EyeDropper: "EyeDropper",
173
+ ExclamationTriangle: "ExclamationTriangle",
174
+ ExclamationCircle: "ExclamationCircle",
175
+ Envelope: "Envelope",
176
+ EnvelopeOpen: "EnvelopeOpen",
177
+ EllipsisVertical: "EllipsisVertical",
178
+ EllipsisHorizontal: "EllipsisHorizontal",
179
+ EllipsisHorizontalCircle: "EllipsisHorizontalCircle",
180
+ Document: "Document",
181
+ DocumentText: "DocumentText",
182
+ DocumentPlus: "DocumentPlus",
183
+ DocumentMinus: "DocumentMinus",
184
+ DocumentMagnifyingGlass: "DocumentMagnifyingGlass",
185
+ DocumentDuplicate: "DocumentDuplicate",
186
+ DocumentCheck: "DocumentCheck",
187
+ DocumentChartBar: "DocumentChartBar",
188
+ DocumentArrowUp: "DocumentArrowUp",
189
+ DocumentArrowDown: "DocumentArrowDown",
190
+ DeviceTablet: "DeviceTablet",
191
+ DevicePhoneMobile: "DevicePhoneMobile",
192
+ CursorArrowRipple: "CursorArrowRipple",
193
+ CursorArrowRays: "CursorArrowRays",
194
+ CurrencyYen: "CurrencyYen",
195
+ CurrencyRupee: "CurrencyRupee",
196
+ CurrencyPound: "CurrencyPound",
197
+ CurrencyEuro: "CurrencyEuro",
198
+ CurrencyDollar: "CurrencyDollar",
199
+ CurrencyBangladeshi: "CurrencyBangladeshi",
200
+ Cube: "Cube",
201
+ CubeTransparent: "CubeTransparent",
202
+ CreditCard: "CreditCard",
203
+ CpuChip: "CpuChip",
204
+ ComputerDesktop: "ComputerDesktop",
205
+ CommandLine: "CommandLine",
206
+ Cog: "Cog",
207
+ Cog8Tooth: "Cog8Tooth",
208
+ Cog6Tooth: "Cog6Tooth",
209
+ CodeBracket: "CodeBracket",
210
+ CodeBracketSquare: "CodeBracketSquare",
211
+ Cloud: "Cloud",
212
+ CloudArrowUp: "CloudArrowUp",
213
+ CloudArrowDown: "CloudArrowDown",
214
+ Clock: "Clock",
215
+ Clipboard: "Clipboard",
216
+ ClipboardDocument: "ClipboardDocument",
217
+ ClipboardDocumentList: "ClipboardDocumentList",
218
+ ClipboardDocumentCheck: "ClipboardDocumentCheck",
219
+ CircleStack: "CircleStack",
220
+ ChevronUp: "ChevronUp",
221
+ ChevronUpDown: "ChevronUpDown",
222
+ ChevronRight: "ChevronRight",
223
+ ChevronLeft: "ChevronLeft",
224
+ ChevronDown: "ChevronDown",
225
+ ChevronDoubleUp: "ChevronDoubleUp",
226
+ ChevronDoubleRight: "ChevronDoubleRight",
227
+ ChevronDoubleLeft: "ChevronDoubleLeft",
228
+ ChevronDoubleDown: "ChevronDoubleDown",
229
+ Check: "Check",
230
+ CheckCircle: "CheckCircle",
231
+ CheckBadge: "CheckBadge",
232
+ ChatBubbleOvalLeft: "ChatBubbleOvalLeft",
233
+ ChatBubbleOvalLeftEllipsis: "ChatBubbleOvalLeftEllipsis",
234
+ ChatBubbleLeft: "ChatBubbleLeft",
235
+ ChatBubbleLeftRight: "ChatBubbleLeftRight",
236
+ ChatBubbleLeftEllipsis: "ChatBubbleLeftEllipsis",
237
+ ChatBubbleBottomCenter: "ChatBubbleBottomCenter",
238
+ ChatBubbleBottomCenterText: "ChatBubbleBottomCenterText",
239
+ ChartPie: "ChartPie",
240
+ ChartBar: "ChartBar",
241
+ ChartBarSquare: "ChartBarSquare",
242
+ Camera: "Camera",
243
+ Calendar: "Calendar",
244
+ CalendarDays: "CalendarDays",
245
+ Calculator: "Calculator",
246
+ Cake: "Cake",
247
+ BuildingStorefront: "BuildingStorefront",
248
+ BuildingOffice: "BuildingOffice",
249
+ BuildingOffice2: "BuildingOffice2",
250
+ BuildingLibrary: "BuildingLibrary",
251
+ BugAnt: "BugAnt",
252
+ Briefcase: "Briefcase",
253
+ Bookmark: "Bookmark",
254
+ BookmarkSquare: "BookmarkSquare",
255
+ BookmarkSlash: "BookmarkSlash",
256
+ BookOpen: "BookOpen",
257
+ Bolt: "Bolt",
258
+ BoltSlash: "BoltSlash",
259
+ Bell: "Bell",
260
+ BellSnooze: "BellSnooze",
261
+ BellSlash: "BellSlash",
262
+ BellAlert: "BellAlert",
263
+ Beaker: "Beaker",
264
+ Battery50: "Battery50",
265
+ Battery100: "Battery100",
266
+ Battery0: "Battery0",
267
+ BarsArrowUp: "BarsArrowUp",
268
+ BarsArrowDown: "BarsArrowDown",
269
+ Bars4: "Bars4",
270
+ Bars3: "Bars3",
271
+ Bars3CenterLeft: "Bars3CenterLeft",
272
+ Bars3BottomRight: "Bars3BottomRight",
273
+ Bars3BottomLeft: "Bars3BottomLeft",
274
+ Bars2: "Bars2",
275
+ Banknotes: "Banknotes",
276
+ Backward: "Backward",
277
+ Backspace: "Backspace",
278
+ AtSymbol: "AtSymbol",
279
+ ArrowsUpDown: "ArrowsUpDown",
280
+ ArrowsRightLeft: "ArrowsRightLeft",
281
+ ArrowsPointingOut: "ArrowsPointingOut",
282
+ ArrowsPointingIn: "ArrowsPointingIn",
283
+ ArrowUturnUp: "ArrowUturnUp",
284
+ ArrowUturnRight: "ArrowUturnRight",
285
+ ArrowUturnLeft: "ArrowUturnLeft",
286
+ ArrowUturnDown: "ArrowUturnDown",
287
+ ArrowUp: "ArrowUp",
288
+ ArrowUpTray: "ArrowUpTray",
289
+ ArrowUpRight: "ArrowUpRight",
290
+ ArrowUpOnSquare: "ArrowUpOnSquare",
291
+ ArrowUpOnSquareStack: "ArrowUpOnSquareStack",
292
+ ArrowUpLeft: "ArrowUpLeft",
293
+ ArrowUpCircle: "ArrowUpCircle",
294
+ ArrowTrendingUp: "ArrowTrendingUp",
295
+ ArrowTrendingDown: "ArrowTrendingDown",
296
+ ArrowTopRightOnSquare: "ArrowTopRightOnSquare",
297
+ ArrowSmallUp: "ArrowSmallUp",
298
+ ArrowSmallRight: "ArrowSmallRight",
299
+ ArrowSmallLeft: "ArrowSmallLeft",
300
+ ArrowSmallDown: "ArrowSmallDown",
301
+ ArrowRight: "ArrowRight",
302
+ ArrowRightOnRectangle: "ArrowRightOnRectangle",
303
+ ArrowRightCircle: "ArrowRightCircle",
304
+ ArrowPath: "ArrowPath",
305
+ ArrowPathRoundedSquare: "ArrowPathRoundedSquare",
306
+ ArrowLongUp: "ArrowLongUp",
307
+ ArrowLongRight: "ArrowLongRight",
308
+ ArrowLongLeft: "ArrowLongLeft",
309
+ ArrowLongDown: "ArrowLongDown",
310
+ ArrowLeft: "ArrowLeft",
311
+ ArrowLeftOnRectangle: "ArrowLeftOnRectangle",
312
+ ArrowLeftCircle: "ArrowLeftCircle",
313
+ ArrowDown: "ArrowDown",
314
+ ArrowDownTray: "ArrowDownTray",
315
+ ArrowDownRight: "ArrowDownRight",
316
+ ArrowDownOnSquare: "ArrowDownOnSquare",
317
+ ArrowDownOnSquareStack: "ArrowDownOnSquareStack",
318
+ ArrowDownLeft: "ArrowDownLeft",
319
+ ArrowDownCircle: "ArrowDownCircle",
320
+ ArchiveBox: "ArchiveBox",
321
+ ArchiveBoxXMark: "ArchiveBoxXMark",
322
+ ArchiveBoxArrowDown: "ArchiveBoxArrowDown",
323
+ AdjustmentsVertical: "AdjustmentsVertical",
324
+ AdjustmentsHorizontal: "AdjustmentsHorizontal",
325
+ AcademicCap: "AcademicCap",
326
+ };
327
+ //# sourceMappingURL=icons.generated.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icons.generated.js","sourceRoot":"","sources":["../../../../../../libs/iris-app-sdk/iris-app-api/src/types/icons.generated.ts"],"names":[],"mappings":"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","sourcesContent":["export const iconNames = {\n Zone: \"Zone\",\n WackerNeusonZeroEmission: \"WackerNeusonZeroEmission\",\n Timeline: \"Timeline\",\n Timeline1: \"Timeline1\",\n Slash: \"Slash\",\n RawDevice: \"RawDevice\",\n Plug: \"Plug\",\n Pin: \"Pin\",\n MapMarkerPointSquare: \"MapMarkerPointSquare\",\n MapMarkerPointRound: \"MapMarkerPointRound\",\n MapMarkerLabelSquare: \"MapMarkerLabelSquare\",\n MapMarkerLabelRound: \"MapMarkerLabelRound\",\n Leaf: \"Leaf\",\n IrisX: \"IrisX\",\n Hierarchy: \"Hierarchy\",\n Gps: \"Gps\",\n FitToWidth: \"FitToWidth\",\n FitToHeight: \"FitToHeight\",\n Excavator: \"Excavator\",\n EllipsisDrag: \"EllipsisDrag\",\n Directions: \"Directions\",\n DemolitionHammer: \"DemolitionHammer\",\n ConstructionCone: \"ConstructionCone\",\n ConcreteMixer: \"ConcreteMixer\",\n Co2: \"Co2\",\n CloudX: \"CloudX\",\n Bucket: \"Bucket\",\n Bluetooth: \"Bluetooth\",\n BatteryBig: \"BatteryBig\",\n XMark: \"XMark\",\n XCircle: \"XCircle\",\n Wrench: \"Wrench\",\n WrenchScrewdriver: \"WrenchScrewdriver\",\n Window: \"Window\",\n Wifi: \"Wifi\",\n Wallet: \"Wallet\",\n ViewfinderCircle: \"ViewfinderCircle\",\n ViewColumns: \"ViewColumns\",\n VideoCamera: \"VideoCamera\",\n VideoCameraSlash: \"VideoCameraSlash\",\n Variable: \"Variable\",\n Users: \"Users\",\n User: \"User\",\n UserPlus: \"UserPlus\",\n UserMinus: \"UserMinus\",\n UserGroup: \"UserGroup\",\n UserCircle: \"UserCircle\",\n Tv: \"Tv\",\n Truck: \"Truck\",\n Trophy: \"Trophy\",\n Trash: \"Trash\",\n Ticket: \"Ticket\",\n Tag: \"Tag\",\n TableCells: \"TableCells\",\n Swatch: \"Swatch\",\n Sun: \"Sun\",\n Stop: \"Stop\",\n StopCircle: \"StopCircle\",\n Star: \"Star\",\n SquaresPlus: \"SquaresPlus\",\n Squares2X2: \"Squares2X2\",\n Square3Stack3D: \"Square3Stack3D\",\n Square2Stack: \"Square2Stack\",\n SpeakerXMark: \"SpeakerXMark\",\n SpeakerWave: \"SpeakerWave\",\n Sparkles: \"Sparkles\",\n Signal: \"Signal\",\n SignalSlash: \"SignalSlash\",\n ShoppingCart: \"ShoppingCart\",\n ShoppingBag: \"ShoppingBag\",\n ShieldExclamation: \"ShieldExclamation\",\n ShieldCheck: \"ShieldCheck\",\n Share: \"Share\",\n Server: \"Server\",\n ServerStack: \"ServerStack\",\n Scissors: \"Scissors\",\n Scale: \"Scale\",\n Rss: \"Rss\",\n RocketLaunch: \"RocketLaunch\",\n RectangleStack: \"RectangleStack\",\n RectangleGroup: \"RectangleGroup\",\n ReceiptRefund: \"ReceiptRefund\",\n ReceiptPercent: \"ReceiptPercent\",\n Radio: \"Radio\",\n QueueList: \"QueueList\",\n QuestionMarkCircle: \"QuestionMarkCircle\",\n QrCode: \"QrCode\",\n PuzzlePiece: \"PuzzlePiece\",\n Printer: \"Printer\",\n PresentationChartLine: \"PresentationChartLine\",\n PresentationChartBar: \"PresentationChartBar\",\n Power: \"Power\",\n Plus: \"Plus\",\n PlusSmall: \"PlusSmall\",\n PlusCircle: \"PlusCircle\",\n Play: \"Play\",\n PlayPause: \"PlayPause\",\n PlayCircle: \"PlayCircle\",\n Photo: \"Photo\",\n Phone: \"Phone\",\n PhoneXMark: \"PhoneXMark\",\n PhoneArrowUpRight: \"PhoneArrowUpRight\",\n PhoneArrowDownLeft: \"PhoneArrowDownLeft\",\n Pencil: \"Pencil\",\n PencilSquare: \"PencilSquare\",\n Pause: \"Pause\",\n PauseCircle: \"PauseCircle\",\n PaperClip: \"PaperClip\",\n PaperAirplane: \"PaperAirplane\",\n PaintBrush: \"PaintBrush\",\n NoSymbol: \"NoSymbol\",\n Newspaper: \"Newspaper\",\n MusicalNote: \"MusicalNote\",\n Moon: \"Moon\",\n Minus: \"Minus\",\n MinusSmall: \"MinusSmall\",\n MinusCircle: \"MinusCircle\",\n Microphone: \"Microphone\",\n Megaphone: \"Megaphone\",\n Map: \"Map\",\n MapPin: \"MapPin\",\n MagnifyingGlass: \"MagnifyingGlass\",\n MagnifyingGlassPlus: \"MagnifyingGlassPlus\",\n MagnifyingGlassMinus: \"MagnifyingGlassMinus\",\n MagnifyingGlassCircle: \"MagnifyingGlassCircle\",\n LockOpen: \"LockOpen\",\n LockClosed: \"LockClosed\",\n ListBullet: \"ListBullet\",\n Link: \"Link\",\n LightBulb: \"LightBulb\",\n Lifebuoy: \"Lifebuoy\",\n Language: \"Language\",\n Key: \"Key\",\n InformationCircle: \"InformationCircle\",\n Inbox: \"Inbox\",\n InboxStack: \"InboxStack\",\n InboxArrowDown: \"InboxArrowDown\",\n Identification: \"Identification\",\n Home: \"Home\",\n HomeModern: \"HomeModern\",\n Heart: \"Heart\",\n Hashtag: \"Hashtag\",\n HandThumbUp: \"HandThumbUp\",\n HandThumbDown: \"HandThumbDown\",\n HandRaised: \"HandRaised\",\n GlobeEuropeAfrica: \"GlobeEuropeAfrica\",\n GlobeAsiaAustralia: \"GlobeAsiaAustralia\",\n GlobeAmericas: \"GlobeAmericas\",\n GlobeAlt: \"GlobeAlt\",\n Gift: \"Gift\",\n GiftTop: \"GiftTop\",\n Gif: \"Gif\",\n Funnel: \"Funnel\",\n Forward: \"Forward\",\n Folder: \"Folder\",\n FolderPlus: \"FolderPlus\",\n FolderOpen: \"FolderOpen\",\n FolderMinus: \"FolderMinus\",\n FolderArrowDown: \"FolderArrowDown\",\n Flag: \"Flag\",\n Fire: \"Fire\",\n FingerPrint: \"FingerPrint\",\n Film: \"Film\",\n FaceSmile: \"FaceSmile\",\n FaceFrown: \"FaceFrown\",\n Eye: \"Eye\",\n EyeSlash: \"EyeSlash\",\n EyeDropper: \"EyeDropper\",\n ExclamationTriangle: \"ExclamationTriangle\",\n ExclamationCircle: \"ExclamationCircle\",\n Envelope: \"Envelope\",\n EnvelopeOpen: \"EnvelopeOpen\",\n EllipsisVertical: \"EllipsisVertical\",\n EllipsisHorizontal: \"EllipsisHorizontal\",\n EllipsisHorizontalCircle: \"EllipsisHorizontalCircle\",\n Document: \"Document\",\n DocumentText: \"DocumentText\",\n DocumentPlus: \"DocumentPlus\",\n DocumentMinus: \"DocumentMinus\",\n DocumentMagnifyingGlass: \"DocumentMagnifyingGlass\",\n DocumentDuplicate: \"DocumentDuplicate\",\n DocumentCheck: \"DocumentCheck\",\n DocumentChartBar: \"DocumentChartBar\",\n DocumentArrowUp: \"DocumentArrowUp\",\n DocumentArrowDown: \"DocumentArrowDown\",\n DeviceTablet: \"DeviceTablet\",\n DevicePhoneMobile: \"DevicePhoneMobile\",\n CursorArrowRipple: \"CursorArrowRipple\",\n CursorArrowRays: \"CursorArrowRays\",\n CurrencyYen: \"CurrencyYen\",\n CurrencyRupee: \"CurrencyRupee\",\n CurrencyPound: \"CurrencyPound\",\n CurrencyEuro: \"CurrencyEuro\",\n CurrencyDollar: \"CurrencyDollar\",\n CurrencyBangladeshi: \"CurrencyBangladeshi\",\n Cube: \"Cube\",\n CubeTransparent: \"CubeTransparent\",\n CreditCard: \"CreditCard\",\n CpuChip: \"CpuChip\",\n ComputerDesktop: \"ComputerDesktop\",\n CommandLine: \"CommandLine\",\n Cog: \"Cog\",\n Cog8Tooth: \"Cog8Tooth\",\n Cog6Tooth: \"Cog6Tooth\",\n CodeBracket: \"CodeBracket\",\n CodeBracketSquare: \"CodeBracketSquare\",\n Cloud: \"Cloud\",\n CloudArrowUp: \"CloudArrowUp\",\n CloudArrowDown: \"CloudArrowDown\",\n Clock: \"Clock\",\n Clipboard: \"Clipboard\",\n ClipboardDocument: \"ClipboardDocument\",\n ClipboardDocumentList: \"ClipboardDocumentList\",\n ClipboardDocumentCheck: \"ClipboardDocumentCheck\",\n CircleStack: \"CircleStack\",\n ChevronUp: \"ChevronUp\",\n ChevronUpDown: \"ChevronUpDown\",\n ChevronRight: \"ChevronRight\",\n ChevronLeft: \"ChevronLeft\",\n ChevronDown: \"ChevronDown\",\n ChevronDoubleUp: \"ChevronDoubleUp\",\n ChevronDoubleRight: \"ChevronDoubleRight\",\n ChevronDoubleLeft: \"ChevronDoubleLeft\",\n ChevronDoubleDown: \"ChevronDoubleDown\",\n Check: \"Check\",\n CheckCircle: \"CheckCircle\",\n CheckBadge: \"CheckBadge\",\n ChatBubbleOvalLeft: \"ChatBubbleOvalLeft\",\n ChatBubbleOvalLeftEllipsis: \"ChatBubbleOvalLeftEllipsis\",\n ChatBubbleLeft: \"ChatBubbleLeft\",\n ChatBubbleLeftRight: \"ChatBubbleLeftRight\",\n ChatBubbleLeftEllipsis: \"ChatBubbleLeftEllipsis\",\n ChatBubbleBottomCenter: \"ChatBubbleBottomCenter\",\n ChatBubbleBottomCenterText: \"ChatBubbleBottomCenterText\",\n ChartPie: \"ChartPie\",\n ChartBar: \"ChartBar\",\n ChartBarSquare: \"ChartBarSquare\",\n Camera: \"Camera\",\n Calendar: \"Calendar\",\n CalendarDays: \"CalendarDays\",\n Calculator: \"Calculator\",\n Cake: \"Cake\",\n BuildingStorefront: \"BuildingStorefront\",\n BuildingOffice: \"BuildingOffice\",\n BuildingOffice2: \"BuildingOffice2\",\n BuildingLibrary: \"BuildingLibrary\",\n BugAnt: \"BugAnt\",\n Briefcase: \"Briefcase\",\n Bookmark: \"Bookmark\",\n BookmarkSquare: \"BookmarkSquare\",\n BookmarkSlash: \"BookmarkSlash\",\n BookOpen: \"BookOpen\",\n Bolt: \"Bolt\",\n BoltSlash: \"BoltSlash\",\n Bell: \"Bell\",\n BellSnooze: \"BellSnooze\",\n BellSlash: \"BellSlash\",\n BellAlert: \"BellAlert\",\n Beaker: \"Beaker\",\n Battery50: \"Battery50\",\n Battery100: \"Battery100\",\n Battery0: \"Battery0\",\n BarsArrowUp: \"BarsArrowUp\",\n BarsArrowDown: \"BarsArrowDown\",\n Bars4: \"Bars4\",\n Bars3: \"Bars3\",\n Bars3CenterLeft: \"Bars3CenterLeft\",\n Bars3BottomRight: \"Bars3BottomRight\",\n Bars3BottomLeft: \"Bars3BottomLeft\",\n Bars2: \"Bars2\",\n Banknotes: \"Banknotes\",\n Backward: \"Backward\",\n Backspace: \"Backspace\",\n AtSymbol: \"AtSymbol\",\n ArrowsUpDown: \"ArrowsUpDown\",\n ArrowsRightLeft: \"ArrowsRightLeft\",\n ArrowsPointingOut: \"ArrowsPointingOut\",\n ArrowsPointingIn: \"ArrowsPointingIn\",\n ArrowUturnUp: \"ArrowUturnUp\",\n ArrowUturnRight: \"ArrowUturnRight\",\n ArrowUturnLeft: \"ArrowUturnLeft\",\n ArrowUturnDown: \"ArrowUturnDown\",\n ArrowUp: \"ArrowUp\",\n ArrowUpTray: \"ArrowUpTray\",\n ArrowUpRight: \"ArrowUpRight\",\n ArrowUpOnSquare: \"ArrowUpOnSquare\",\n ArrowUpOnSquareStack: \"ArrowUpOnSquareStack\",\n ArrowUpLeft: \"ArrowUpLeft\",\n ArrowUpCircle: \"ArrowUpCircle\",\n ArrowTrendingUp: \"ArrowTrendingUp\",\n ArrowTrendingDown: \"ArrowTrendingDown\",\n ArrowTopRightOnSquare: \"ArrowTopRightOnSquare\",\n ArrowSmallUp: \"ArrowSmallUp\",\n ArrowSmallRight: \"ArrowSmallRight\",\n ArrowSmallLeft: \"ArrowSmallLeft\",\n ArrowSmallDown: \"ArrowSmallDown\",\n ArrowRight: \"ArrowRight\",\n ArrowRightOnRectangle: \"ArrowRightOnRectangle\",\n ArrowRightCircle: \"ArrowRightCircle\",\n ArrowPath: \"ArrowPath\",\n ArrowPathRoundedSquare: \"ArrowPathRoundedSquare\",\n ArrowLongUp: \"ArrowLongUp\",\n ArrowLongRight: \"ArrowLongRight\",\n ArrowLongLeft: \"ArrowLongLeft\",\n ArrowLongDown: \"ArrowLongDown\",\n ArrowLeft: \"ArrowLeft\",\n ArrowLeftOnRectangle: \"ArrowLeftOnRectangle\",\n ArrowLeftCircle: \"ArrowLeftCircle\",\n ArrowDown: \"ArrowDown\",\n ArrowDownTray: \"ArrowDownTray\",\n ArrowDownRight: \"ArrowDownRight\",\n ArrowDownOnSquare: \"ArrowDownOnSquare\",\n ArrowDownOnSquareStack: \"ArrowDownOnSquareStack\",\n ArrowDownLeft: \"ArrowDownLeft\",\n ArrowDownCircle: \"ArrowDownCircle\",\n ArchiveBox: \"ArchiveBox\",\n ArchiveBoxXMark: \"ArchiveBoxXMark\",\n ArchiveBoxArrowDown: \"ArchiveBoxArrowDown\",\n AdjustmentsVertical: \"AdjustmentsVertical\",\n AdjustmentsHorizontal: \"AdjustmentsHorizontal\",\n AcademicCap: \"AcademicCap\",\n} as const;\nexport type IconName = keyof typeof iconNames;\n"]}
@@ -1,5 +1,7 @@
1
1
  export * from "./defaultValidHosts";
2
2
  export * from "./extensions";
3
+ export * from "./iconImage";
4
+ export * from "./icons.generated";
3
5
  export * from "./irisAppCspInput";
4
6
  export * from "./irisAppCustomFields";
5
7
  export * from "./irisAppExtensionManifest";
@@ -3,6 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  tslib_1.__exportStar(require("./defaultValidHosts"), exports);
5
5
  tslib_1.__exportStar(require("./extensions"), exports);
6
+ tslib_1.__exportStar(require("./iconImage"), exports);
7
+ tslib_1.__exportStar(require("./icons.generated"), exports);
6
8
  tslib_1.__exportStar(require("./irisAppCspInput"), exports);
7
9
  tslib_1.__exportStar(require("./irisAppCustomFields"), exports);
8
10
  tslib_1.__exportStar(require("./irisAppExtensionManifest"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../libs/iris-app-sdk/iris-app-api/src/types/index.ts"],"names":[],"mappings":";;;AAAA,8DAAoC;AACpC,uDAA6B;AAC7B,4DAAkC;AAClC,gEAAsC;AACtC,qEAA2C;AAC3C,sEAA4C;AAC5C,4DAAkC;AAClC,+DAAqC;AACrC,6DAAmC;AACnC,mDAAyB;AACzB,iEAAuC;AACvC,iEAAuC","sourcesContent":["export * from \"./defaultValidHosts\";\nexport * from \"./extensions\";\nexport * from \"./irisAppCspInput\";\nexport * from \"./irisAppCustomFields\";\nexport * from \"./irisAppExtensionManifest\";\nexport * from \"./irisAppInstallationConfig\";\nexport * from \"./irisAppManifest\";\nexport * from \"./irisAppMarketplace\";\nexport * from \"./modulefederation\";\nexport * from \"./scopes\";\nexport * from \"./serversideInterfaces\";\nexport * from \"./subscriptionPackages\";\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../libs/iris-app-sdk/iris-app-api/src/types/index.ts"],"names":[],"mappings":";;;AAAA,8DAAoC;AACpC,uDAA6B;AAC7B,sDAA4B;AAC5B,4DAAkC;AAClC,4DAAkC;AAClC,gEAAsC;AACtC,qEAA2C;AAC3C,sEAA4C;AAC5C,4DAAkC;AAClC,+DAAqC;AACrC,6DAAmC;AACnC,mDAAyB;AACzB,iEAAuC;AACvC,iEAAuC","sourcesContent":["export * from \"./defaultValidHosts\";\nexport * from \"./extensions\";\nexport * from \"./iconImage\";\nexport * from \"./icons.generated\";\nexport * from \"./irisAppCspInput\";\nexport * from \"./irisAppCustomFields\";\nexport * from \"./irisAppExtensionManifest\";\nexport * from \"./irisAppInstallationConfig\";\nexport * from \"./irisAppManifest\";\nexport * from \"./irisAppMarketplace\";\nexport * from \"./modulefederation\";\nexport * from \"./scopes\";\nexport * from \"./serversideInterfaces\";\nexport * from \"./subscriptionPackages\";\n"]}