@colijnit/extendedcomponents 12.0.5 → 12.0.6

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.
Files changed (34) hide show
  1. package/README.md +24 -24
  2. package/bundles/colijnit-extendedcomponents.umd.js +875 -11
  3. package/bundles/colijnit-extendedcomponents.umd.js.map +1 -1
  4. package/esm2015/lib/components/stacked-line-chart/co-stacked-line-chart.component.js +24 -7
  5. package/esm2015/lib/components/summary-grid/components/recursive-list/recursive-list.component.js +121 -0
  6. package/esm2015/lib/components/summary-grid/components/recursive-list/recursive-list.module.js +30 -0
  7. package/esm2015/lib/components/summary-grid/model/recursive-collection-layer.interface.js +2 -0
  8. package/esm2015/lib/components/summary-grid/summary-grid.component.js +101 -0
  9. package/esm2015/lib/components/summary-grid/summary-grid.module.js +30 -0
  10. package/esm2015/lib/enum/icon.enum.js +299 -0
  11. package/esm2015/lib/model/icon-svg.js +298 -0
  12. package/esm2015/lib/service/icon-cache.service.js +49 -0
  13. package/esm2015/public-api.js +3 -1
  14. package/fesm2015/colijnit-extendedcomponents.js +933 -7
  15. package/fesm2015/colijnit-extendedcomponents.js.map +1 -1
  16. package/lib/components/stacked-line-chart/co-stacked-line-chart.component.d.ts +6 -2
  17. package/lib/components/summary-grid/components/recursive-list/recursive-list.component.d.ts +21 -0
  18. package/lib/components/summary-grid/components/recursive-list/recursive-list.module.d.ts +9 -0
  19. package/lib/components/summary-grid/components/recursive-list/style/_layout.scss +80 -0
  20. package/lib/components/summary-grid/components/recursive-list/style/_material-definition.scss +0 -0
  21. package/lib/components/summary-grid/components/recursive-list/style/_theme.scss +4 -0
  22. package/lib/components/summary-grid/components/recursive-list/style/material.scss +4 -0
  23. package/lib/components/summary-grid/model/recursive-collection-layer.interface.d.ts +6 -0
  24. package/lib/components/summary-grid/style/_layout.scss +37 -0
  25. package/lib/components/summary-grid/style/_material-definition.scss +0 -0
  26. package/lib/components/summary-grid/style/_theme.scss +4 -0
  27. package/lib/components/summary-grid/style/material.scss +4 -0
  28. package/lib/components/summary-grid/summary-grid.component.d.ts +12 -0
  29. package/lib/components/summary-grid/summary-grid.module.d.ts +9 -0
  30. package/lib/enum/icon.enum.d.ts +297 -0
  31. package/lib/model/icon-svg.d.ts +4 -0
  32. package/lib/service/icon-cache.service.d.ts +21 -0
  33. package/package.json +1 -1
  34. package/public-api.d.ts +2 -0
@@ -1,5 +1,7 @@
1
- import { OnInit } from "@angular/core";
1
+ import { EventEmitter, OnInit } from "@angular/core";
2
2
  import type { EChartsOption } from 'echarts';
3
+ import type { ECElementEvent } from 'echarts';
4
+ import type { ECActionEvent } from 'echarts/types/src/util/types';
3
5
  import * as i0 from "@angular/core";
4
6
  export declare class StackedLineChartComponent implements OnInit {
5
7
  showClass(): boolean;
@@ -10,7 +12,9 @@ export declare class StackedLineChartComponent implements OnInit {
10
12
  chartHeight: number | string;
11
13
  chartWidth: number | string;
12
14
  chartOptions: EChartsOption;
15
+ chartEventEmitter: EventEmitter<ECElementEvent | ECActionEvent | unknown>;
13
16
  ngOnInit(): void;
17
+ onChartEvent(event: ECElementEvent | ECActionEvent | unknown, type: string): void;
14
18
  static ɵfac: i0.ɵɵFactoryDeclaration<StackedLineChartComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<StackedLineChartComponent, "co-stacked-line-chart", never, { "chartName": "chartName"; "chartData": "chartData"; "chartLegend": "chartLegend"; "chartXAxis": "chartXAxis"; "chartHeight": "chartHeight"; "chartWidth": "chartWidth"; "chartOptions": "chartOptions"; }, {}, never, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<StackedLineChartComponent, "co-stacked-line-chart", never, { "chartName": "chartName"; "chartData": "chartData"; "chartLegend": "chartLegend"; "chartXAxis": "chartXAxis"; "chartHeight": "chartHeight"; "chartWidth": "chartWidth"; "chartOptions": "chartOptions"; }, { "chartEventEmitter": "chartEventEmitter"; }, never, never>;
16
20
  }
@@ -0,0 +1,21 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { IconCacheService } from '../../../../service/icon-cache.service';
3
+ import { Icon } from '../../../../enum/icon.enum';
4
+ import { RecursiveCollectionLayer } from '../../model/recursive-collection-layer.interface';
5
+ import * as i0 from "@angular/core";
6
+ export declare class RecursiveListComponent {
7
+ iconCacheService: IconCacheService;
8
+ readonly icons: typeof Icon;
9
+ collection: RecursiveCollectionLayer[];
10
+ columns: string[];
11
+ tableLegend: string;
12
+ depth: number;
13
+ indentation: number;
14
+ dataPipe: PipeTransform | null;
15
+ constructor(iconCacheService: IconCacheService);
16
+ toggleCollapse(event: Event, item: RecursiveCollectionLayer): void;
17
+ getCurrentIcon(item: RecursiveCollectionLayer): Icon;
18
+ formatDataValue(dataValue: number | string): string;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<RecursiveListComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<RecursiveListComponent, "co-recursive-list", never, { "collection": "collection"; "columns": "columns"; "tableLegend": "tableLegend"; "depth": "depth"; "indentation": "indentation"; "dataPipe": "dataPipe"; }, {}, never, never>;
21
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./recursive-list.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@colijnit/corecomponents_v12";
5
+ export declare class RecursiveListModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<RecursiveListModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<RecursiveListModule, [typeof i1.RecursiveListComponent], [typeof i2.CommonModule, typeof i3.IconModule], [typeof i1.RecursiveListComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<RecursiveListModule>;
9
+ }
@@ -0,0 +1,80 @@
1
+ //_layout.scss
2
+ @include export-module('cc-recursive-list-layout') {
3
+ .co-recursive-list {
4
+ display: table;
5
+ width: 100%;
6
+ background-color: white;
7
+
8
+ .tree-node.background:nth-child(even) {
9
+ background-color: rgba(#8083A3, 0.1);
10
+ }
11
+
12
+ .table-row {
13
+ display: flex;
14
+ flex-direction: row;
15
+ }
16
+
17
+ .table-header-row {
18
+ display: flex;
19
+ flex-direction: row;
20
+ .table-legend {
21
+ padding: 1em;
22
+ width: 20%;
23
+ border: 0.5px solid rgba(#8083A3, 0.2);
24
+ }
25
+ .table-header {
26
+ width: 80%;
27
+ display: flex;
28
+ flex-direction: row;
29
+ .table-row {
30
+ width: 100%;
31
+ display: flex;
32
+ justify-content: space-evenly;
33
+ .table-cell {
34
+ border: 0.5px solid rgba(#8083A3, 0.2);
35
+ width: 100%;
36
+ display: flex;
37
+ justify-content: center;
38
+ align-items: center;
39
+ padding: 0.5em;
40
+ }
41
+ }
42
+ }
43
+ }
44
+
45
+ .table-cell.node-text-icon {
46
+ border: 0.5px solid rgba(#8083A3, 0.2);
47
+ display: flex;
48
+ flex-direction: row;
49
+ align-items: center;
50
+ width: 20%;
51
+
52
+
53
+ }
54
+
55
+ .table-cell.data-points {
56
+ width: 80%;
57
+ display: flex;
58
+ justify-content: space-evenly;
59
+
60
+ .custom-property{
61
+ width: 100%;
62
+ display: flex;
63
+ justify-content: center;
64
+ align-items: center;
65
+ padding: 0.5em;
66
+ border: 0.5px solid rgba(#8083A3, 0.2);
67
+ }
68
+ }
69
+
70
+ .tree-node {
71
+
72
+ display: flex;
73
+ flex-direction: column; /* Change to column to make child nodes appear below the parent */
74
+ width: 100%;
75
+ .table-row {
76
+ width: 100%;
77
+ }
78
+ }
79
+ }
80
+ }
@@ -0,0 +1,4 @@
1
+ @include export-module('cc-recursive-list-theme') {
2
+ .co-recursive-list {
3
+ }
4
+ }
@@ -0,0 +1,4 @@
1
+ @import "../../../../../style/mixin";
2
+ @import "./_material-definition";
3
+ @import "./_layout";
4
+ @import "./_theme";
@@ -0,0 +1,6 @@
1
+ export interface RecursiveCollectionLayer {
2
+ name: string;
3
+ expanded: boolean;
4
+ data: (number | string)[];
5
+ children?: RecursiveCollectionLayer[];
6
+ }
@@ -0,0 +1,37 @@
1
+ @include export-module('cc-summary-grid-layout') {
2
+ .co-summary-grid {
3
+ .row {
4
+ display: flex;
5
+ flex-direction: row;
6
+ align-items: center;
7
+ }
8
+
9
+ .column {
10
+ display: flex;
11
+ flex-direction: column;
12
+ align-items: center;
13
+ }
14
+
15
+ .space-between {
16
+ justify-content: space-between;
17
+ }
18
+
19
+ .space-evenly {
20
+ justify-content: space-evenly;
21
+ }
22
+
23
+ .justify-center {
24
+ width: 100%;
25
+ display: flex;
26
+ justify-content: center;
27
+ }
28
+
29
+ .full-width {
30
+ width: 100%;
31
+ }
32
+ .wrapper {
33
+ width: 100%;
34
+ height: 50vh;
35
+ }
36
+ }
37
+ }
@@ -0,0 +1,4 @@
1
+ @include export-module('cc-summary-grid-theme') {
2
+ .co-summary-grid {
3
+ }
4
+ }
@@ -0,0 +1,4 @@
1
+ @import "../../../style/mixin";
2
+ @import "./_material-definition";
3
+ @import "./_layout";
4
+ @import "./_theme";
@@ -0,0 +1,12 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { RecursiveCollectionLayer } from "./model/recursive-collection-layer.interface";
3
+ import * as i0 from "@angular/core";
4
+ export declare class SummaryGridComponent {
5
+ showClass: boolean;
6
+ columns: string[];
7
+ tableLegend: string;
8
+ dataPipe: PipeTransform | null;
9
+ collection: RecursiveCollectionLayer[];
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<SummaryGridComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<SummaryGridComponent, "co-summary-grid", never, { "columns": "columns"; "tableLegend": "tableLegend"; "dataPipe": "dataPipe"; "collection": "collection"; }, {}, never, never>;
12
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./summary-grid.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "./components/recursive-list/recursive-list.module";
5
+ export declare class SummaryGridModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<SummaryGridModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SummaryGridModule, [typeof i1.SummaryGridComponent], [typeof i2.CommonModule, typeof i3.RecursiveListModule], [typeof i1.SummaryGridComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<SummaryGridModule>;
9
+ }
@@ -0,0 +1,297 @@
1
+ /** AUTO GENERATED FILE. DO NOT CHANGE.. OR YOU WILL SUFFER THE CONSEQUENCES OF YOUR ACTIONS **/
2
+ export declare enum Icon {
3
+ Account = "account",
4
+ AccountRoundOpen = "account_round_open",
5
+ Activities = "activities",
6
+ AddToCartDrop = "add_to_cart_drop",
7
+ ArrowDown = "arrow_down",
8
+ ArrowFatLeft = "arrow_fat_left",
9
+ ArrowFatRight = "arrow_fat_right",
10
+ ArrowLeft = "arrow_left",
11
+ ArrowLeftRoundOpen = "arrow_left_round_open",
12
+ ArrowPointDown = "arrow_point_down",
13
+ ArrowPointLeft = "arrow_point_left",
14
+ ArrowPointRight = "arrow_point_right",
15
+ ArrowPointUp = "arrow_point_up",
16
+ ArrowRightRoundOpen = "arrow_right_round_open",
17
+ ArrowScrollDown = "arrow_scroll_down",
18
+ ArrowScrollLeft = "arrow_scroll_left",
19
+ ArrowScrollRight = "arrow_scroll_right",
20
+ ArrowScrollUp = "arrow_scroll_up",
21
+ ArrowUp = "arrow_up",
22
+ Article = "article",
23
+ ArticleWithFold = "article_with_fold",
24
+ AsteriskSmall = "asterisk_small",
25
+ Attachments = "attachments",
26
+ BackToTop = "back_to_top",
27
+ Barcode = "Barcode",
28
+ BigMac = "big_mac",
29
+ Boxes = "boxes",
30
+ Brush = "brush",
31
+ BrushRoundOpen = "brush_round_open",
32
+ BuildingColumns = "building_columns",
33
+ Businessrules = "businessrules",
34
+ Calendar = "calendar",
35
+ CalendarDay = "calendar_day",
36
+ CalendarDayRegular = "calendar_day_regular",
37
+ CalendarEmpty = "calendar_empty",
38
+ CalendarRange = "calendar_range",
39
+ CalendarRoundOpen = "calendar_round_open",
40
+ Camera = "camera",
41
+ Cancel = "cancel",
42
+ CancelRoundFilled = "cancel_round_filled",
43
+ CancelRoundOpen = "cancel_round_open",
44
+ Cart = "cart",
45
+ CartOpen = "cart_open",
46
+ CaseManager = "case_manager",
47
+ CashRegister = "CashRegister",
48
+ CashRegisterSimple = "cash_register_simple",
49
+ ChangeLocation = "change_location",
50
+ Check = "check",
51
+ CheckRound = "check_round",
52
+ CheckRoundOpen = "check_round_open",
53
+ CheckSimple = "check_simple",
54
+ CheckThin = "check_thin",
55
+ ChevronDownRegular = "chevron_down_regular",
56
+ ChevronUpRegular = "chevron_up_regular",
57
+ CirclePlusSkinny = "CirclePlusSkinny",
58
+ Client = "client",
59
+ Clock = "clock",
60
+ ClockArrow = "clockArrow",
61
+ CogWheelPlus = "cogWheelPlus",
62
+ CogWheels = "cogWheels",
63
+ ColumnOptions = "column_options",
64
+ Company = "company",
65
+ CompanyFlat = "company_flat",
66
+ Configurable = "configurable",
67
+ Consultant = "consultant",
68
+ Copy = "copy",
69
+ Crosshair1 = "crosshair_1",
70
+ CrossSkinny = "CrossSkinny",
71
+ Dashboard = "dashboard",
72
+ DeliveryMethod = "delivery_method",
73
+ DeliveryStatusUncheck = "delivery_status_uncheck",
74
+ DeliveryTruck = "delivery_truck",
75
+ DetailRecord = "detail_record",
76
+ DetailView = "detail_view",
77
+ Dictionary = "dictionary",
78
+ Documents = "documents",
79
+ DocumentWrench = "documentWrench",
80
+ Dollar = "dollar",
81
+ Download = "download",
82
+ Dropdown = "dropdown",
83
+ Dropzone = "dropzone",
84
+ EditPencil = "edit_pencil",
85
+ EditPencilCircle = "edit_pencil_circle",
86
+ EditPencilRound = "edit_pencil_round",
87
+ EditPencilSimple = "edit_pencil_simple",
88
+ Email = "email",
89
+ EmailRoundOpen = "email_round_open",
90
+ Employee = "employee",
91
+ EmployeeTwo = "employee_two",
92
+ Employer = "employer",
93
+ Employment = "employment",
94
+ EmploymentEnd = "employment_end",
95
+ Equal = "equal",
96
+ Euro = "euro",
97
+ Exclamation = "exclamation",
98
+ ExclamationRoundOpen = "exclamation_round_open",
99
+ EyeCircle = "eye_circle",
100
+ EyeCircleLarge = "eye_circle_large",
101
+ EyeRoundFilled = "eye_round_filled",
102
+ Factory = "factory",
103
+ Fasttrack = "fasttrack",
104
+ Filter = "filter",
105
+ Finish = "finish",
106
+ FixedOptionValueTree = "fixed_option_value_tree",
107
+ FixedTreeOptionValue = "fixed_tree_option_value",
108
+ FloppyDiskSolid = "floppy_disk_solid",
109
+ FolderArrow = "FolderArrow",
110
+ FolderArrowIn = "folder_arrow_in",
111
+ Formula = "formula",
112
+ Fullscreen = "fullscreen",
113
+ GearDouble = "gear_double",
114
+ GlobalSearch = "global_search",
115
+ Globe = "globe",
116
+ GreaterThan = "greater_than",
117
+ Groupby = "groupby",
118
+ Hamburger = "hamburger",
119
+ HandPointer = "hand_pointer",
120
+ Hbarchart = "hbarchart",
121
+ Home = "Home",
122
+ HomeCircle = "home_circle",
123
+ HomeOpen = "home_open",
124
+ HomeRoundOpen = "home_round_open",
125
+ Hourglass = "hourglass",
126
+ Icon3d = "icon_3d",
127
+ Id = "id",
128
+ Image = "image",
129
+ IncomingStorage = "incoming_storage",
130
+ Information = "information",
131
+ InformationRoundOpen = "information_round_open",
132
+ InputMultiplechoice = "input_multiplechoice",
133
+ InputText = "input_text",
134
+ InputTextarea = "input_textarea",
135
+ Inventory = "inventory",
136
+ Invoice = "invoice",
137
+ IoneLogo = "ione_logo",
138
+ IoneLogoFat = "ione_logo_fat",
139
+ IoneStatusNext = "ione_status_next",
140
+ IoneWorkflow = "ione_workflow",
141
+ Keyboard = "keyboard",
142
+ Keychain = "keychain",
143
+ Label = "label",
144
+ LabelRoundOpen = "label_round_open",
145
+ LandmarkFlag = "landmark_flag",
146
+ Library = "library",
147
+ Linechart = "linechart",
148
+ LinkedProducts = "linked_products",
149
+ LinkCircle = "link_circle",
150
+ ListView = "list_view",
151
+ Location = "location",
152
+ Lock = "lock",
153
+ LockRoundOpen = "lock_round_open",
154
+ Logo = "logo",
155
+ Logout = "logout",
156
+ MagicWand = "magic_wand",
157
+ Magnifier = "magnifier",
158
+ Manager = "manager",
159
+ Mask = "mask",
160
+ MasterDetail = "master_detail",
161
+ MaterialCircleLarge = "material_circle_large",
162
+ MedalBronze = "medal_bronze",
163
+ MedalGold = "medal_gold",
164
+ MedalSilver = "medal_silver",
165
+ MedicalOfficer = "medical_officer",
166
+ Microphone = "microphone",
167
+ MinusRoundOpen = "minus_round_open",
168
+ MinusSimple = "minus_simple",
169
+ Mobile = "mobile",
170
+ MultiSelectCheck = "multi_select_check",
171
+ NewTask = "new_task",
172
+ Note = "note",
173
+ NoteBordered = "note_bordered",
174
+ Notification = "notification",
175
+ NotEqual = "not_equal",
176
+ Option = "option",
177
+ Optionset = "optionset",
178
+ Order = "order",
179
+ Orderpicking = "orderpicking",
180
+ OutgoingStorage = "outgoing_storage",
181
+ OverBooking = "over_booking",
182
+ PauseCircle = "pause_circle",
183
+ PencilRoundOpen = "pencil_round_open",
184
+ PenToSquareSolid = "pen_to_square_solid",
185
+ Phone = "phone",
186
+ PhoneRoundOpen = "phone_round_open",
187
+ Piechart = "piechart",
188
+ Pin = "pin",
189
+ PinRoundOpen = "pin_round_open",
190
+ PlayCircle = "play_circle",
191
+ PlusRound = "plus_round",
192
+ PlusRoundOpen = "plus_round_open",
193
+ PlusSimple = "plus_simple",
194
+ PlusSkinny = "plus_skinny",
195
+ PlusSolid = "plus_solid",
196
+ PlusStars = "plus_stars",
197
+ Pointer = "pointer",
198
+ Pointer3d = "pointer_3d",
199
+ PointerFilled = "pointer_filled",
200
+ POS = "POS",
201
+ Positioning = "positioning",
202
+ Pregnancy = "pregnancy",
203
+ Preset = "preset",
204
+ Print = "print",
205
+ ProductProperties = "product_properties",
206
+ Purchase = "purchase",
207
+ Qrcode = "qrcode",
208
+ Question = "question",
209
+ RadioUncheck = "radio_uncheck",
210
+ Range = "range",
211
+ RangeSelect = "range_select",
212
+ Rectangles = "rectangles",
213
+ Refresh = "refresh",
214
+ Relations = "relations",
215
+ Remark = "remark",
216
+ RemarkRoundOpen = "remark_round_open",
217
+ ReportInType = "report_in_type",
218
+ Resize = "resize",
219
+ ResizeDown = "resize_down",
220
+ ResizeUp = "resize_up",
221
+ Returns = "returns",
222
+ ReturnGoods = "return_goods",
223
+ RotateLeftSolid = "rotate_left_solid",
224
+ SaveDisk = "save_disk",
225
+ SaveSkinny = "save_skinny",
226
+ ScaleBalanced = "scale_balanced",
227
+ Scanner = "scanner",
228
+ SearchRoundOpen = "search_round_open",
229
+ Sections = "sections",
230
+ SelectAllRound = "select_all_round",
231
+ Services = "services",
232
+ Settings = "settings",
233
+ Shop = "Shop",
234
+ ShoppingCart = "shopping_cart",
235
+ ShoppingCartNr = "shopping_cart_nr",
236
+ Shortcut = "shortcut",
237
+ SinglePerson = "SinglePerson",
238
+ Skills = "skills",
239
+ SliderPanel = "slider_panel",
240
+ SlideIn = "slide_in",
241
+ SmallerThan = "smaller_than",
242
+ SmallTiles = "small_tiles",
243
+ SortAsc = "sort_asc",
244
+ SortDesc = "sort_desc",
245
+ Star = "Star",
246
+ StarRoundOpen = "star_round_open",
247
+ StatusActive = "status_active",
248
+ StatusAdoption = "status_adoption",
249
+ StatusFostercare = "status_fostercare",
250
+ StatusIll = "status_ill",
251
+ StatusLeave = "status_leave",
252
+ StatusPregnancy = "status_pregnancy",
253
+ Stock = "stock",
254
+ StockManagement = "stock_management",
255
+ Storage = "storage",
256
+ Supervisor = "supervisor",
257
+ Supplier = "supplier",
258
+ Surgery = "surgery",
259
+ Tablechart = "tablechart",
260
+ Tag = "tag",
261
+ TalkTooMuch = "talk_too_much",
262
+ Target = "target",
263
+ Task = "task",
264
+ ThickLines = "thick_lines",
265
+ ThinLines = "thin_lines",
266
+ ThreeSixtyView = "three_sixty_view",
267
+ ThumbBronze = "thumb_bronze",
268
+ ThumbGold = "thumb_gold",
269
+ ThumbSilver = "thumb_silver",
270
+ Timeline = "timeline",
271
+ Transactions = "transactions",
272
+ TransactionDetail = "transaction_detail",
273
+ TrashBin = "TrashBin",
274
+ TrashCanSolid = "trash_can_solid",
275
+ TriangleDown = "triangle_down",
276
+ TriangleLarge = "triangle_large",
277
+ TriangleLeft = "triangle_left",
278
+ TriangleRight = "triangle_right",
279
+ TriangleUp = "triangle_up",
280
+ Truck = "truck",
281
+ TruckCalendar = "truck_calendar",
282
+ UndoRoundOpen = "undo_round_open",
283
+ User = "user",
284
+ Variants = "variants",
285
+ Vbarchart = "vbarchart",
286
+ View = "view",
287
+ Warehouse = "warehouse",
288
+ Watermark = "watermark",
289
+ Website = "website",
290
+ Wizard = "wizard",
291
+ Wms = "wms",
292
+ WorkInProgress = "work_in_progress",
293
+ WorkInProgressRoundOpen = "work_in_progress_round_open",
294
+ Wrench = "wrench",
295
+ XAxis = "x_axis",
296
+ YAxis = "y_axis"
297
+ }
@@ -0,0 +1,4 @@
1
+ /** AUTO GENERATED FILE. DO NOT CHANGE.. OR YOU WILL SUFFER THE CONSEQUENCES OF YOUR ACTIONS **/
2
+ export declare const IconSvg: {
3
+ [iconName: string]: string;
4
+ };
@@ -0,0 +1,21 @@
1
+ import { DomSanitizer, SafeHtml } from "@angular/platform-browser";
2
+ import { Icon } from "../enum/icon.enum";
3
+ import * as i0 from "@angular/core";
4
+ export declare class IconCacheService {
5
+ private _sanitizer;
6
+ /**
7
+ * All the icons as a large JSON object, from the all-icons.json file.
8
+ * The object has property keys that are the icon names, and property values with the data string of the actual svg icon.
9
+ */
10
+ get iconCache(): {
11
+ [iconName: string]: SafeHtml;
12
+ };
13
+ private _iconCache;
14
+ constructor(_sanitizer: DomSanitizer);
15
+ getIcon(iconName: Icon | string): SafeHtml;
16
+ getIconAsBase64(iconName: Icon): SafeHtml;
17
+ getRawIcon(iconName: Icon): string;
18
+ setIconCache(): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<IconCacheService, never>;
20
+ static ɵprov: i0.ɵɵInjectableDeclaration<IconCacheService>;
21
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/extendedcomponents",
3
- "version": "12.0.5",
3
+ "version": "12.0.6",
4
4
  "description": "Colijn IT extended components for Angular 12",
5
5
  "private": false,
6
6
  "peerDependencies": {
package/public-api.d.ts CHANGED
@@ -1,4 +1,6 @@
1
1
  export * from './lib/components/stacked-line-chart/co-stacked-line-chart.module';
2
2
  export * from './lib/components/stacked-line-chart/co-stacked-line-chart.component';
3
+ export * from './lib/components/summary-grid/summary-grid.module';
4
+ export * from './lib/components/summary-grid/summary-grid.component';
3
5
  export * from './lib/translation/extended-components-translation.module';
4
6
  export * from './lib/translation/extended-components-translation.service';