@theseam/ui-common 0.2.11 → 0.2.12
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/bundles/theseam-ui-common-table-cell-types.umd.js +245 -19
- package/bundles/theseam-ui-common-table-cell-types.umd.js.map +1 -1
- package/esm2015/table-cell-types/public-api.js +8 -1
- package/esm2015/table-cell-types/table-cell-type-currency/table-cell-type-currency-config.js +2 -0
- package/esm2015/table-cell-types/table-cell-type-currency/table-cell-type-currency.component.js +74 -0
- package/esm2015/table-cell-types/table-cell-type-currency/table-cell-type-currency.js +2 -0
- package/esm2015/table-cell-types/table-cell-type-decimal/table-cell-type-decimal-config.js +1 -1
- package/esm2015/table-cell-types/table-cell-type-decimal/table-cell-type-decimal.component.js +73 -0
- package/esm2015/table-cell-types/table-cell-type-decimal/table-cell-type-decimal.js +2 -0
- package/esm2015/table-cell-types/table-cell-type-integer/table-cell-type-integer-config.js +1 -1
- package/esm2015/table-cell-types/table-cell-type-integer/table-cell-type-integer.component.js +71 -0
- package/esm2015/table-cell-types/table-cell-type-integer/table-cell-type-integer.js +2 -0
- package/esm2015/table-cell-types/table-cell-type-manifests.js +29 -17
- package/esm2015/table-cell-types/table-cell-types.module.js +9 -2
- package/fesm2015/theseam-ui-common-table-cell-types.js +232 -20
- package/fesm2015/theseam-ui-common-table-cell-types.js.map +1 -1
- package/package.json +1 -1
- package/table-cell-types/public-api.d.ts +7 -0
- package/table-cell-types/table-cell-type-currency/table-cell-type-currency-config.d.ts +39 -0
- package/table-cell-types/table-cell-type-currency/table-cell-type-currency.component.d.ts +19 -0
- package/table-cell-types/table-cell-type-currency/table-cell-type-currency.d.ts +3 -0
- package/table-cell-types/table-cell-type-decimal/table-cell-type-decimal-config.d.ts +31 -1
- package/table-cell-types/table-cell-type-decimal/table-cell-type-decimal.component.d.ts +19 -0
- package/table-cell-types/table-cell-type-decimal/table-cell-type-decimal.d.ts +3 -0
- package/table-cell-types/table-cell-type-integer/table-cell-type-integer-config.d.ts +23 -1
- package/table-cell-types/table-cell-type-integer/table-cell-type-integer.component.d.ts +19 -0
- package/table-cell-types/table-cell-type-integer/table-cell-type-integer.d.ts +3 -0
- package/table-cell-types/table-cell-type-manifests.d.ts +2 -1
- package/table-cell-types/theseam-ui-common-table-cell-types.metadata.json +1 -1
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { TableCellTypesHelpersService, TABLE_CELL_DATA, TABLE_CELL_TYPE_MANIFEST, TheSeamTableCellTypeModule } from '@theseam/ui-common/table-cell-type';
|
|
2
|
+
import { formatCurrency, formatNumber, CommonModule } from '@angular/common';
|
|
2
3
|
import { Component, ChangeDetectionStrategy, ChangeDetectorRef, Optional, Inject, Input, HostBinding, NgModule } from '@angular/core';
|
|
3
4
|
import { Subject } from 'rxjs';
|
|
4
5
|
import { takeUntil } from 'rxjs/operators';
|
|
6
|
+
import { notNullOrUndefined, hasProperty } from '@theseam/ui-common/utils';
|
|
7
|
+
import { coerceBooleanProperty, coerceNumberProperty } from '@angular/cdk/coercion';
|
|
5
8
|
import { DatatableComponent } from '@theseam/ui-common/datatable';
|
|
6
9
|
import { getKnownIcon, TheSeamIconModule } from '@theseam/ui-common/icon';
|
|
7
10
|
import { TableComponent } from '@theseam/ui-common/table';
|
|
8
11
|
import { THESEAM_DEFAULT_PHONE_NUMBER_FORMAT, coercePhoneNumberFormat, TheSeamTelInputModule } from '@theseam/ui-common/tel-input';
|
|
9
|
-
import { hasProperty } from '@theseam/ui-common/utils';
|
|
10
|
-
import { coerceNumberProperty, coerceBooleanProperty } from '@angular/cdk/coercion';
|
|
11
12
|
import { PortalModule } from '@angular/cdk/portal';
|
|
12
|
-
import { CommonModule } from '@angular/common';
|
|
13
13
|
import { RouterModule } from '@angular/router';
|
|
14
14
|
import { NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap';
|
|
15
15
|
import { TheSeamAssetReaderModule } from '@theseam/ui-common/asset-reader';
|
|
@@ -17,6 +17,75 @@ import { TheSeamPopoverModule } from '@theseam/ui-common/popover';
|
|
|
17
17
|
import { TheSeamProgressModule } from '@theseam/ui-common/progress';
|
|
18
18
|
import { TheSeamSharedModule } from '@theseam/ui-common/shared';
|
|
19
19
|
|
|
20
|
+
class TableCellTypeCurrencyComponent {
|
|
21
|
+
// TODO: implement
|
|
22
|
+
// titleAttr?: string
|
|
23
|
+
constructor(_cdf, _tableCellTypeHelpers, _tableData) {
|
|
24
|
+
var _a, _b;
|
|
25
|
+
this._cdf = _cdf;
|
|
26
|
+
this._tableCellTypeHelpers = _tableCellTypeHelpers;
|
|
27
|
+
this._ngUnsubscribe = new Subject();
|
|
28
|
+
const tableData = _tableData;
|
|
29
|
+
this.value = tableData && this._formatCurrency(tableData.value, tableData);
|
|
30
|
+
this.row = tableData && tableData.row;
|
|
31
|
+
this.rowIndex = tableData && tableData.rowIndex;
|
|
32
|
+
this.colData = tableData && tableData.colData;
|
|
33
|
+
this.textAlign = this._parseConfigValue((_b = (_a = tableData === null || tableData === void 0 ? void 0 : tableData.colData) === null || _a === void 0 ? void 0 : _a.cellTypeConfig) === null || _b === void 0 ? void 0 : _b.textAlign, tableData) || 'right';
|
|
34
|
+
// this.titleAttr = this._parseConfigValue(tableData?.colData?.cellTypeConfig?.titleAttr, tableData) || this.value
|
|
35
|
+
if (tableData) {
|
|
36
|
+
tableData.changed
|
|
37
|
+
.pipe(takeUntil(this._ngUnsubscribe))
|
|
38
|
+
.subscribe(v => {
|
|
39
|
+
if (v.changes.hasOwnProperty('value')) {
|
|
40
|
+
this.value = this._formatCurrency(v.changes.value.currentValue, tableData);
|
|
41
|
+
this._cdf.markForCheck();
|
|
42
|
+
}
|
|
43
|
+
if (v.changes.hasOwnProperty('colData')) {
|
|
44
|
+
this.colData = v.changes.colData.currentValue;
|
|
45
|
+
this._cdf.markForCheck();
|
|
46
|
+
}
|
|
47
|
+
});
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
ngOnInit() { }
|
|
51
|
+
ngOnDestroy() {
|
|
52
|
+
this._ngUnsubscribe.next();
|
|
53
|
+
this._ngUnsubscribe.complete();
|
|
54
|
+
}
|
|
55
|
+
_formatCurrency(currentValue, tableData) {
|
|
56
|
+
var _a;
|
|
57
|
+
const config = (_a = tableData === null || tableData === void 0 ? void 0 : tableData.colData) === null || _a === void 0 ? void 0 : _a.cellTypeConfig;
|
|
58
|
+
const locale = this._parseConfigValue(config === null || config === void 0 ? void 0 : config.locale, tableData) || 'en-US';
|
|
59
|
+
const currency = this._parseConfigValue(config === null || config === void 0 ? void 0 : config.currency, tableData) || '$';
|
|
60
|
+
const currencyCode = this._parseConfigValue(config === null || config === void 0 ? void 0 : config.currencyCode, tableData) || 'USD';
|
|
61
|
+
const minIntegerDigits = this._parseConfigValue(config === null || config === void 0 ? void 0 : config.minIntegerDigits, tableData) || 1;
|
|
62
|
+
const minFractionDigits = this._parseConfigValue(config === null || config === void 0 ? void 0 : config.minFractionDigits, tableData) || 0;
|
|
63
|
+
const maxFractionDigits = this._parseConfigValue(config === null || config === void 0 ? void 0 : config.maxFractionDigits, tableData) || 2;
|
|
64
|
+
const format = `${minIntegerDigits}.${minFractionDigits}-${maxFractionDigits}`;
|
|
65
|
+
return formatCurrency(currentValue, locale, currency, currencyCode, format);
|
|
66
|
+
}
|
|
67
|
+
_parseConfigValue(val, tableData) {
|
|
68
|
+
const contextFn = () => this._tableCellTypeHelpers.getValueContext(val, tableData);
|
|
69
|
+
return this._tableCellTypeHelpers.parseValueProp(val, contextFn);
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
TableCellTypeCurrencyComponent.decorators = [
|
|
73
|
+
{ type: Component, args: [{
|
|
74
|
+
selector: 'seam-table-cell-type-currency',
|
|
75
|
+
template: "<div [class]=\"'text-' + textAlign\">\n <seam-table-cell-type-selector\n type=\"string\"\n [value]=\"value\"\n [rowIndex]=\"rowIndex\"\n [row]=\"row\"\n [colData]=\"colData\"></seam-table-cell-type-selector>\n</div>\n",
|
|
76
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
77
|
+
styles: [""]
|
|
78
|
+
},] }
|
|
79
|
+
];
|
|
80
|
+
TableCellTypeCurrencyComponent.ctorParameters = () => [
|
|
81
|
+
{ type: ChangeDetectorRef },
|
|
82
|
+
{ type: TableCellTypesHelpersService },
|
|
83
|
+
{ type: undefined, decorators: [{ type: Optional }, { type: Inject, args: [TABLE_CELL_DATA,] }] }
|
|
84
|
+
];
|
|
85
|
+
TableCellTypeCurrencyComponent.propDecorators = {
|
|
86
|
+
value: [{ type: Input }]
|
|
87
|
+
};
|
|
88
|
+
|
|
20
89
|
class TableCellTypeDateComponent {
|
|
21
90
|
constructor(_cdf, _tableData) {
|
|
22
91
|
this._cdf = _cdf;
|
|
@@ -68,6 +137,72 @@ TableCellTypeDateComponent.propDecorators = {
|
|
|
68
137
|
format: [{ type: Input }]
|
|
69
138
|
};
|
|
70
139
|
|
|
140
|
+
class TableCellTypeDecimalComponent {
|
|
141
|
+
constructor(_cdf, _tableCellTypeHelpers, _tableData) {
|
|
142
|
+
var _a, _b;
|
|
143
|
+
this._cdf = _cdf;
|
|
144
|
+
this._tableCellTypeHelpers = _tableCellTypeHelpers;
|
|
145
|
+
this._ngUnsubscribe = new Subject();
|
|
146
|
+
const tableData = _tableData;
|
|
147
|
+
this.value = tableData && this._formatDecimal(tableData.value, tableData);
|
|
148
|
+
this.row = tableData && tableData.row;
|
|
149
|
+
this.rowIndex = tableData && tableData.rowIndex;
|
|
150
|
+
this.colData = tableData && tableData.colData;
|
|
151
|
+
this.textAlign = this._parseConfigValue((_b = (_a = tableData === null || tableData === void 0 ? void 0 : tableData.colData) === null || _a === void 0 ? void 0 : _a.cellTypeConfig) === null || _b === void 0 ? void 0 : _b.textAlign, tableData) || 'right';
|
|
152
|
+
if (tableData) {
|
|
153
|
+
tableData.changed
|
|
154
|
+
.pipe(takeUntil(this._ngUnsubscribe))
|
|
155
|
+
.subscribe(v => {
|
|
156
|
+
if (v.changes.hasOwnProperty('value')) {
|
|
157
|
+
this.value = this._formatDecimal(v.changes.value.currentValue, tableData);
|
|
158
|
+
this._cdf.markForCheck();
|
|
159
|
+
}
|
|
160
|
+
if (v.changes.hasOwnProperty('colData')) {
|
|
161
|
+
this.colData = v.changes.colData.currentValue;
|
|
162
|
+
this._cdf.markForCheck();
|
|
163
|
+
}
|
|
164
|
+
});
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
ngOnInit() { }
|
|
168
|
+
ngOnDestroy() {
|
|
169
|
+
this._ngUnsubscribe.next();
|
|
170
|
+
this._ngUnsubscribe.complete();
|
|
171
|
+
}
|
|
172
|
+
_formatDecimal(currentValue, tableData) {
|
|
173
|
+
var _a;
|
|
174
|
+
const config = (_a = tableData === null || tableData === void 0 ? void 0 : tableData.colData) === null || _a === void 0 ? void 0 : _a.cellTypeConfig;
|
|
175
|
+
const formatDecimal = notNullOrUndefined(config === null || config === void 0 ? void 0 : config.formatNumber) ?
|
|
176
|
+
this._parseConfigValue(coerceBooleanProperty(config === null || config === void 0 ? void 0 : config.formatNumber), tableData) : true;
|
|
177
|
+
const locale = this._parseConfigValue(config === null || config === void 0 ? void 0 : config.locale, tableData) || 'en-US';
|
|
178
|
+
const minIntegerDigits = this._parseConfigValue(config === null || config === void 0 ? void 0 : config.minIntegerDigits, tableData) || 1;
|
|
179
|
+
const minFractionDigits = this._parseConfigValue(config === null || config === void 0 ? void 0 : config.minFractionDigits, tableData) || 0;
|
|
180
|
+
const maxFractionDigits = this._parseConfigValue(config === null || config === void 0 ? void 0 : config.maxFractionDigits, tableData) || 3;
|
|
181
|
+
const format = `${minIntegerDigits}.${minFractionDigits}-${maxFractionDigits}`;
|
|
182
|
+
return formatDecimal ? formatNumber(currentValue, locale, format) : currentValue;
|
|
183
|
+
}
|
|
184
|
+
_parseConfigValue(val, tableData) {
|
|
185
|
+
const contextFn = () => this._tableCellTypeHelpers.getValueContext(val, tableData);
|
|
186
|
+
return this._tableCellTypeHelpers.parseValueProp(val, contextFn);
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
TableCellTypeDecimalComponent.decorators = [
|
|
190
|
+
{ type: Component, args: [{
|
|
191
|
+
selector: 'seam-table-cell-type-decimal',
|
|
192
|
+
template: "<div [class]=\"'text-' + textAlign\">\n <seam-table-cell-type-selector\n type=\"string\"\n [value]=\"value\"\n [rowIndex]=\"rowIndex\"\n [row]=\"row\"\n [colData]=\"colData\"></seam-table-cell-type-selector>\n</div>\n",
|
|
193
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
194
|
+
styles: [""]
|
|
195
|
+
},] }
|
|
196
|
+
];
|
|
197
|
+
TableCellTypeDecimalComponent.ctorParameters = () => [
|
|
198
|
+
{ type: ChangeDetectorRef },
|
|
199
|
+
{ type: TableCellTypesHelpersService },
|
|
200
|
+
{ type: undefined, decorators: [{ type: Optional }, { type: Inject, args: [TABLE_CELL_DATA,] }] }
|
|
201
|
+
];
|
|
202
|
+
TableCellTypeDecimalComponent.propDecorators = {
|
|
203
|
+
value: [{ type: Input }]
|
|
204
|
+
};
|
|
205
|
+
|
|
71
206
|
class TableCellTypeIconComponent {
|
|
72
207
|
constructor(_cdf, _tableCellTypeHelpers, _datatable, _table, _tableData) {
|
|
73
208
|
this._cdf = _cdf;
|
|
@@ -227,6 +362,70 @@ TableCellTypeIconComponent.propDecorators = {
|
|
|
227
362
|
_isDatatable: [{ type: HostBinding, args: ['class.datatable-cell-type',] }]
|
|
228
363
|
};
|
|
229
364
|
|
|
365
|
+
class TableCellTypeIntegerComponent {
|
|
366
|
+
constructor(_cdf, _tableCellTypeHelpers, _tableData) {
|
|
367
|
+
var _a, _b;
|
|
368
|
+
this._cdf = _cdf;
|
|
369
|
+
this._tableCellTypeHelpers = _tableCellTypeHelpers;
|
|
370
|
+
this._ngUnsubscribe = new Subject();
|
|
371
|
+
const tableData = _tableData;
|
|
372
|
+
this.value = tableData && this._formatInteger(tableData.value, tableData);
|
|
373
|
+
this.row = tableData && tableData.row;
|
|
374
|
+
this.rowIndex = tableData && tableData.rowIndex;
|
|
375
|
+
this.colData = tableData && tableData.colData;
|
|
376
|
+
this.textAlign = this._parseConfigValue((_b = (_a = tableData === null || tableData === void 0 ? void 0 : tableData.colData) === null || _a === void 0 ? void 0 : _a.cellTypeConfig) === null || _b === void 0 ? void 0 : _b.textAlign, tableData) || 'right';
|
|
377
|
+
if (tableData) {
|
|
378
|
+
tableData.changed
|
|
379
|
+
.pipe(takeUntil(this._ngUnsubscribe))
|
|
380
|
+
.subscribe(v => {
|
|
381
|
+
if (v.changes.hasOwnProperty('value')) {
|
|
382
|
+
this.value = this._formatInteger(v.changes.value.currentValue, tableData);
|
|
383
|
+
this._cdf.markForCheck();
|
|
384
|
+
}
|
|
385
|
+
if (v.changes.hasOwnProperty('colData')) {
|
|
386
|
+
this.colData = v.changes.colData.currentValue;
|
|
387
|
+
this._cdf.markForCheck();
|
|
388
|
+
}
|
|
389
|
+
});
|
|
390
|
+
}
|
|
391
|
+
}
|
|
392
|
+
ngOnInit() { }
|
|
393
|
+
ngOnDestroy() {
|
|
394
|
+
this._ngUnsubscribe.next();
|
|
395
|
+
this._ngUnsubscribe.complete();
|
|
396
|
+
}
|
|
397
|
+
_formatInteger(currentValue, tableData) {
|
|
398
|
+
var _a;
|
|
399
|
+
const config = (_a = tableData === null || tableData === void 0 ? void 0 : tableData.colData) === null || _a === void 0 ? void 0 : _a.cellTypeConfig;
|
|
400
|
+
const formatInteger = notNullOrUndefined(config === null || config === void 0 ? void 0 : config.formatNumber) ?
|
|
401
|
+
this._parseConfigValue(coerceBooleanProperty(config === null || config === void 0 ? void 0 : config.formatNumber), tableData) : true;
|
|
402
|
+
const locale = this._parseConfigValue(config === null || config === void 0 ? void 0 : config.locale, tableData) || 'en-US';
|
|
403
|
+
const minIntegerDigits = this._parseConfigValue(config === null || config === void 0 ? void 0 : config.minIntegerDigits, tableData) || 1;
|
|
404
|
+
const format = `${minIntegerDigits}.0-0`;
|
|
405
|
+
return formatInteger ? formatNumber(currentValue, locale, format) : currentValue;
|
|
406
|
+
}
|
|
407
|
+
_parseConfigValue(val, tableData) {
|
|
408
|
+
const contextFn = () => this._tableCellTypeHelpers.getValueContext(val, tableData);
|
|
409
|
+
return this._tableCellTypeHelpers.parseValueProp(val, contextFn);
|
|
410
|
+
}
|
|
411
|
+
}
|
|
412
|
+
TableCellTypeIntegerComponent.decorators = [
|
|
413
|
+
{ type: Component, args: [{
|
|
414
|
+
selector: 'seam-table-cell-type-integer',
|
|
415
|
+
template: "<div [class]=\"'text-' + textAlign\">\n <seam-table-cell-type-selector\n type=\"string\"\n [value]=\"value\"\n [rowIndex]=\"rowIndex\"\n [row]=\"row\"\n [colData]=\"colData\"></seam-table-cell-type-selector>\n</div>\n",
|
|
416
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
417
|
+
styles: [""]
|
|
418
|
+
},] }
|
|
419
|
+
];
|
|
420
|
+
TableCellTypeIntegerComponent.ctorParameters = () => [
|
|
421
|
+
{ type: ChangeDetectorRef },
|
|
422
|
+
{ type: TableCellTypesHelpersService },
|
|
423
|
+
{ type: undefined, decorators: [{ type: Optional }, { type: Inject, args: [TABLE_CELL_DATA,] }] }
|
|
424
|
+
];
|
|
425
|
+
TableCellTypeIntegerComponent.propDecorators = {
|
|
426
|
+
value: [{ type: Input }]
|
|
427
|
+
};
|
|
428
|
+
|
|
230
429
|
class TableCellTypePhoneComponent {
|
|
231
430
|
constructor(_cdf, _tableData) {
|
|
232
431
|
this._cdf = _cdf;
|
|
@@ -668,17 +867,17 @@ const TABLE_CELL_TYPE_MANIFEST_STRING = {
|
|
|
668
867
|
multi: true
|
|
669
868
|
};
|
|
670
869
|
const ɵ1 = {
|
|
671
|
-
name: '
|
|
672
|
-
component:
|
|
870
|
+
name: 'currency',
|
|
871
|
+
component: TableCellTypeCurrencyComponent
|
|
673
872
|
};
|
|
674
|
-
const
|
|
873
|
+
const TABLE_CELL_TYPE_MANIFEST_CURRENCY = {
|
|
675
874
|
provide: TABLE_CELL_TYPE_MANIFEST,
|
|
676
875
|
useValue: ɵ1,
|
|
677
876
|
multi: true
|
|
678
877
|
};
|
|
679
878
|
const ɵ2 = {
|
|
680
879
|
name: 'decimal',
|
|
681
|
-
component:
|
|
880
|
+
component: TableCellTypeDecimalComponent
|
|
682
881
|
};
|
|
683
882
|
const TABLE_CELL_TYPE_MANIFEST_DECIMAL = {
|
|
684
883
|
provide: TABLE_CELL_TYPE_MANIFEST,
|
|
@@ -686,64 +885,76 @@ const TABLE_CELL_TYPE_MANIFEST_DECIMAL = {
|
|
|
686
885
|
multi: true
|
|
687
886
|
};
|
|
688
887
|
const ɵ3 = {
|
|
888
|
+
name: 'integer',
|
|
889
|
+
component: TableCellTypeIntegerComponent
|
|
890
|
+
};
|
|
891
|
+
const TABLE_CELL_TYPE_MANIFEST_INTEGER = {
|
|
892
|
+
provide: TABLE_CELL_TYPE_MANIFEST,
|
|
893
|
+
useValue: ɵ3,
|
|
894
|
+
multi: true
|
|
895
|
+
};
|
|
896
|
+
const ɵ4 = {
|
|
689
897
|
name: 'date',
|
|
690
898
|
component: TableCellTypeDateComponent
|
|
691
899
|
};
|
|
692
900
|
const TABLE_CELL_TYPE_MANIFEST_DATE = {
|
|
693
901
|
provide: TABLE_CELL_TYPE_MANIFEST,
|
|
694
|
-
useValue: ɵ
|
|
902
|
+
useValue: ɵ4,
|
|
695
903
|
multi: true
|
|
696
904
|
};
|
|
697
|
-
const ɵ
|
|
905
|
+
const ɵ5 = {
|
|
698
906
|
name: 'icon',
|
|
699
907
|
component: TableCellTypeIconComponent
|
|
700
908
|
};
|
|
701
909
|
const TABLE_CELL_TYPE_MANIFEST_ICON = {
|
|
702
910
|
provide: TABLE_CELL_TYPE_MANIFEST,
|
|
703
|
-
useValue: ɵ
|
|
911
|
+
useValue: ɵ5,
|
|
704
912
|
multi: true
|
|
705
913
|
};
|
|
706
|
-
const ɵ
|
|
914
|
+
const ɵ6 = {
|
|
707
915
|
name: 'image',
|
|
708
916
|
component: TableCellTypeIconComponent
|
|
709
917
|
};
|
|
710
918
|
const TABLE_CELL_TYPE_MANIFEST_IMAGE = {
|
|
711
919
|
provide: TABLE_CELL_TYPE_MANIFEST,
|
|
712
|
-
useValue: ɵ
|
|
920
|
+
useValue: ɵ6,
|
|
713
921
|
multi: true
|
|
714
922
|
};
|
|
715
|
-
const ɵ
|
|
923
|
+
const ɵ7 = {
|
|
716
924
|
name: 'progress-circle',
|
|
717
925
|
component: TableCellTypeProgressCircleComponent
|
|
718
926
|
};
|
|
719
927
|
const TABLE_CELL_TYPE_MANIFEST_PROGRESS_CIRCLE = {
|
|
720
928
|
provide: TABLE_CELL_TYPE_MANIFEST,
|
|
721
|
-
useValue: ɵ
|
|
929
|
+
useValue: ɵ7,
|
|
722
930
|
multi: true
|
|
723
931
|
};
|
|
724
|
-
const ɵ
|
|
932
|
+
const ɵ8 = {
|
|
725
933
|
name: 'progress-circle-icon',
|
|
726
934
|
component: TableCellTypeProgressCircleIconComponent
|
|
727
935
|
};
|
|
728
936
|
const TABLE_CELL_TYPE_MANIFEST_PROGRESS_CIRCLE_ICON = {
|
|
729
937
|
provide: TABLE_CELL_TYPE_MANIFEST,
|
|
730
|
-
useValue: ɵ
|
|
938
|
+
useValue: ɵ8,
|
|
731
939
|
multi: true
|
|
732
940
|
};
|
|
733
|
-
const ɵ
|
|
941
|
+
const ɵ9 = {
|
|
734
942
|
name: 'phone',
|
|
735
943
|
component: TableCellTypePhoneComponent
|
|
736
944
|
};
|
|
737
945
|
const TABLE_CELL_TYPE_MANIFEST_PHONE = {
|
|
738
946
|
provide: TABLE_CELL_TYPE_MANIFEST,
|
|
739
|
-
useValue: ɵ
|
|
947
|
+
useValue: ɵ9,
|
|
740
948
|
multi: true
|
|
741
949
|
};
|
|
742
950
|
|
|
743
951
|
const cellTypeComponents = [
|
|
744
952
|
TableCellTypeStringComponent,
|
|
953
|
+
TableCellTypeCurrencyComponent,
|
|
745
954
|
TableCellTypeDateComponent,
|
|
955
|
+
TableCellTypeDecimalComponent,
|
|
746
956
|
TableCellTypeIconComponent,
|
|
957
|
+
TableCellTypeIntegerComponent,
|
|
747
958
|
TableCellTypeProgressCircleComponent,
|
|
748
959
|
TableCellTypeProgressCircleIconComponent,
|
|
749
960
|
TableCellTypePhoneComponent
|
|
@@ -751,6 +962,7 @@ const cellTypeComponents = [
|
|
|
751
962
|
const cellTypeProviders = [
|
|
752
963
|
TABLE_CELL_TYPE_MANIFEST_STRING,
|
|
753
964
|
TABLE_CELL_TYPE_MANIFEST_INTEGER,
|
|
965
|
+
TABLE_CELL_TYPE_MANIFEST_CURRENCY,
|
|
754
966
|
TABLE_CELL_TYPE_MANIFEST_DECIMAL,
|
|
755
967
|
TABLE_CELL_TYPE_MANIFEST_DATE,
|
|
756
968
|
TABLE_CELL_TYPE_MANIFEST_ICON,
|
|
@@ -795,5 +1007,5 @@ TheSeamTableCellTypesModule.decorators = [
|
|
|
795
1007
|
* Generated bundle index. Do not edit.
|
|
796
1008
|
*/
|
|
797
1009
|
|
|
798
|
-
export { TABLE_CELL_TYPE_MANIFEST_DATE, TABLE_CELL_TYPE_MANIFEST_DECIMAL, TABLE_CELL_TYPE_MANIFEST_ICON, TABLE_CELL_TYPE_MANIFEST_IMAGE, TABLE_CELL_TYPE_MANIFEST_INTEGER, TABLE_CELL_TYPE_MANIFEST_PHONE, TABLE_CELL_TYPE_MANIFEST_PROGRESS_CIRCLE, TABLE_CELL_TYPE_MANIFEST_PROGRESS_CIRCLE_ICON, TABLE_CELL_TYPE_MANIFEST_STRING, TableCellTypeDateComponent, TableCellTypeIconComponent, TableCellTypePhoneComponent, TableCellTypeProgressCircleComponent, TableCellTypeProgressCircleIconComponent, TableCellTypeStringComponent, TheSeamTableCellTypesModule, ɵ0, ɵ1, ɵ2, ɵ3, ɵ4, ɵ5, ɵ6, ɵ7, ɵ8 };
|
|
1010
|
+
export { TABLE_CELL_TYPE_MANIFEST_CURRENCY, TABLE_CELL_TYPE_MANIFEST_DATE, TABLE_CELL_TYPE_MANIFEST_DECIMAL, TABLE_CELL_TYPE_MANIFEST_ICON, TABLE_CELL_TYPE_MANIFEST_IMAGE, TABLE_CELL_TYPE_MANIFEST_INTEGER, TABLE_CELL_TYPE_MANIFEST_PHONE, TABLE_CELL_TYPE_MANIFEST_PROGRESS_CIRCLE, TABLE_CELL_TYPE_MANIFEST_PROGRESS_CIRCLE_ICON, TABLE_CELL_TYPE_MANIFEST_STRING, TableCellTypeCurrencyComponent, TableCellTypeDateComponent, TableCellTypeDecimalComponent, TableCellTypeIconComponent, TableCellTypeIntegerComponent, TableCellTypePhoneComponent, TableCellTypeProgressCircleComponent, TableCellTypeProgressCircleIconComponent, TableCellTypeStringComponent, TheSeamTableCellTypesModule, ɵ0, ɵ1, ɵ2, ɵ3, ɵ4, ɵ5, ɵ6, ɵ7, ɵ8, ɵ9 };
|
|
799
1011
|
//# sourceMappingURL=theseam-ui-common-table-cell-types.js.map
|