@wizco/fenixds-ngx 17.0.19 → 17.0.22
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/esm2022/lib/timeline/timeline.component.mjs +22 -0
- package/esm2022/lib/upload/upload.component.mjs +90 -84
- package/esm2022/public-api.mjs +3 -1
- package/fesm2022/wizco-fenixds-ngx.mjs +106 -82
- package/fesm2022/wizco-fenixds-ngx.mjs.map +1 -1
- package/lib/timeline/timeline.component.d.ts +23 -0
- package/lib/timeline/timeline.component.d.ts.map +1 -0
- package/lib/upload/upload.component.d.ts +67 -67
- package/lib/upload/upload.component.d.ts.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/public-api.d.ts.map +1 -1
|
@@ -146,7 +146,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
146
146
|
class UploadComponent {
|
|
147
147
|
http;
|
|
148
148
|
/* Texto de descrição do arquivo */
|
|
149
|
-
description =
|
|
149
|
+
description = '(XX MB de tamanho máximo e é permitido qualquer tipo de arquivos)';
|
|
150
150
|
/* config <AngularFileUploaderConfig> configuração do componente principais parâmetros */
|
|
151
151
|
config = {
|
|
152
152
|
uploadAPI: {
|
|
@@ -157,127 +157,127 @@ class UploadComponent {
|
|
|
157
157
|
},
|
|
158
158
|
responseType: 'json',
|
|
159
159
|
withCredentials: false,
|
|
160
|
-
}
|
|
160
|
+
},
|
|
161
161
|
};
|
|
162
162
|
/*
|
|
163
|
-
|
|
164
|
-
|
|
163
|
+
* Opção de resetar o componente
|
|
164
|
+
*/
|
|
165
165
|
resetUpload = false;
|
|
166
166
|
/*
|
|
167
|
-
|
|
168
|
-
|
|
167
|
+
* Evento Resposta da requisição sendo sucesso ou erro
|
|
168
|
+
*/
|
|
169
169
|
ApiResponse = new EventEmitter();
|
|
170
170
|
/*
|
|
171
|
-
|
|
172
|
-
|
|
171
|
+
* Evento javascript puro para retorno do arquivo
|
|
172
|
+
*/
|
|
173
173
|
fileSelected = new EventEmitter();
|
|
174
174
|
/**
|
|
175
|
-
|
|
176
|
-
|
|
175
|
+
* @ignore
|
|
176
|
+
*/
|
|
177
177
|
theme = '';
|
|
178
178
|
/**
|
|
179
|
-
|
|
180
|
-
|
|
179
|
+
* @ignore
|
|
180
|
+
*/
|
|
181
181
|
id = 0;
|
|
182
182
|
/**
|
|
183
|
-
|
|
184
|
-
|
|
183
|
+
* @ignore
|
|
184
|
+
*/
|
|
185
185
|
hideProgressBar = false;
|
|
186
186
|
/**
|
|
187
|
-
|
|
188
|
-
|
|
187
|
+
* @ignore
|
|
188
|
+
*/
|
|
189
189
|
maxSize = 20 * 1024000; // mb to bytes.
|
|
190
190
|
/**
|
|
191
|
-
|
|
192
|
-
|
|
191
|
+
* @ignore
|
|
192
|
+
*/
|
|
193
193
|
uploadAPI = '';
|
|
194
194
|
/**
|
|
195
|
-
|
|
196
|
-
|
|
195
|
+
* @ignore
|
|
196
|
+
*/
|
|
197
197
|
method = 'POST';
|
|
198
198
|
/**
|
|
199
|
-
|
|
200
|
-
|
|
199
|
+
* @ignore
|
|
200
|
+
*/
|
|
201
201
|
formatsAllowed = '*';
|
|
202
202
|
/**
|
|
203
|
-
|
|
204
|
-
|
|
203
|
+
* @ignore
|
|
204
|
+
*/
|
|
205
205
|
formatsAllowedText = '';
|
|
206
206
|
/**
|
|
207
|
-
|
|
208
|
-
|
|
207
|
+
* @ignore
|
|
208
|
+
*/
|
|
209
209
|
multiple = false;
|
|
210
210
|
/**
|
|
211
|
-
|
|
212
|
-
|
|
211
|
+
* @ignore
|
|
212
|
+
*/
|
|
213
213
|
headers = {};
|
|
214
214
|
/**
|
|
215
|
-
|
|
216
|
-
|
|
215
|
+
* @ignore
|
|
216
|
+
*/
|
|
217
217
|
params = {};
|
|
218
218
|
/**
|
|
219
|
-
|
|
220
|
-
|
|
219
|
+
* @ignore
|
|
220
|
+
*/
|
|
221
221
|
responseType = 'blob';
|
|
222
222
|
/**
|
|
223
|
-
|
|
224
|
-
|
|
223
|
+
* @ignore
|
|
224
|
+
*/
|
|
225
225
|
hideResetBtn = false;
|
|
226
226
|
/**
|
|
227
|
-
|
|
228
|
-
|
|
227
|
+
* @ignore
|
|
228
|
+
*/
|
|
229
229
|
hideSelectBtn = false;
|
|
230
230
|
/**
|
|
231
|
-
|
|
232
|
-
|
|
231
|
+
* @ignore
|
|
232
|
+
*/
|
|
233
233
|
allowedFiles = [];
|
|
234
234
|
/**
|
|
235
|
-
|
|
236
|
-
|
|
235
|
+
* @ignore
|
|
236
|
+
*/
|
|
237
237
|
notAllowedFiles = [];
|
|
238
238
|
/**
|
|
239
|
-
|
|
240
|
-
|
|
239
|
+
* @ignore
|
|
240
|
+
*/
|
|
241
241
|
Caption = [];
|
|
242
242
|
/**
|
|
243
|
-
|
|
244
|
-
|
|
243
|
+
* @ignore
|
|
244
|
+
*/
|
|
245
245
|
isAllowedFileSingle = true;
|
|
246
246
|
/**
|
|
247
|
-
|
|
248
|
-
|
|
247
|
+
* @ignore
|
|
248
|
+
*/
|
|
249
249
|
progressBarShow = false;
|
|
250
250
|
/**
|
|
251
|
-
|
|
252
|
-
|
|
251
|
+
* @ignore
|
|
252
|
+
*/
|
|
253
253
|
enableUploadBtn = false;
|
|
254
254
|
/**
|
|
255
|
-
|
|
256
|
-
|
|
255
|
+
* @ignore
|
|
256
|
+
*/
|
|
257
257
|
uploadMsg = false;
|
|
258
258
|
/**
|
|
259
|
-
|
|
260
|
-
|
|
259
|
+
* @ignore
|
|
260
|
+
*/
|
|
261
261
|
afterUpload = false;
|
|
262
262
|
/**
|
|
263
|
-
|
|
264
|
-
|
|
263
|
+
* @ignore
|
|
264
|
+
*/
|
|
265
265
|
uploadStarted = false;
|
|
266
266
|
/**
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
uploadMsgText =
|
|
267
|
+
* @ignore
|
|
268
|
+
*/
|
|
269
|
+
uploadMsgText = '';
|
|
270
270
|
/**
|
|
271
|
-
|
|
272
|
-
|
|
271
|
+
* @ignore
|
|
272
|
+
*/
|
|
273
273
|
uploadMsgClass = 'text-success';
|
|
274
274
|
/**
|
|
275
|
-
|
|
276
|
-
|
|
275
|
+
* @ignore
|
|
276
|
+
*/
|
|
277
277
|
uploadPercent = 0;
|
|
278
278
|
/**
|
|
279
|
-
|
|
280
|
-
|
|
279
|
+
* @ignore
|
|
280
|
+
*/
|
|
281
281
|
replaceTexts = {
|
|
282
282
|
selectFileBtn: 'Selecionar Arquivo',
|
|
283
283
|
resetBtn: 'Resetar',
|
|
@@ -289,31 +289,31 @@ class UploadComponent {
|
|
|
289
289
|
sizeLimit: 'Tamanho máximo',
|
|
290
290
|
};
|
|
291
291
|
/**
|
|
292
|
-
|
|
293
|
-
|
|
292
|
+
* @ignore
|
|
293
|
+
*/
|
|
294
294
|
currentUploads = [];
|
|
295
295
|
/**
|
|
296
|
-
|
|
297
|
-
|
|
296
|
+
* @ignore
|
|
297
|
+
*/
|
|
298
298
|
fileNameIndex = true;
|
|
299
299
|
/**
|
|
300
|
-
|
|
301
|
-
|
|
300
|
+
* @ignore
|
|
301
|
+
*/
|
|
302
302
|
withCredentials = false;
|
|
303
303
|
/**
|
|
304
|
-
|
|
305
|
-
|
|
304
|
+
* @ignore
|
|
305
|
+
*/
|
|
306
306
|
autoUpload = true;
|
|
307
307
|
/**
|
|
308
|
-
|
|
309
|
-
|
|
308
|
+
* @ignore
|
|
309
|
+
*/
|
|
310
310
|
idDate = +new Date();
|
|
311
311
|
constructor(http) {
|
|
312
312
|
this.http = http;
|
|
313
313
|
}
|
|
314
314
|
/**
|
|
315
|
-
|
|
316
|
-
|
|
315
|
+
* @ignore
|
|
316
|
+
*/
|
|
317
317
|
ngOnChanges(changes) {
|
|
318
318
|
// Track changes in Configuration and see if user has even provided Configuration.
|
|
319
319
|
if (changes.config && this.config) {
|
|
@@ -337,7 +337,8 @@ class UploadComponent {
|
|
|
337
337
|
this.responseType = this.config.uploadAPI.responseType || 'json';
|
|
338
338
|
this.withCredentials = this.config.uploadAPI.withCredentials || false;
|
|
339
339
|
}
|
|
340
|
-
this.formatsAllowedText =
|
|
340
|
+
this.formatsAllowedText =
|
|
341
|
+
this.formatsAllowed === '*' ? '' : '(' + this.formatsAllowed + ')';
|
|
341
342
|
this.fileNameIndex = this.config.fileNameIndex === false ? false : true;
|
|
342
343
|
this.autoUpload = this.config.autoUpload || false;
|
|
343
344
|
if (this.config.replaceTexts) {
|
|
@@ -383,7 +384,9 @@ class UploadComponent {
|
|
|
383
384
|
// tslint:disable-next-line: for-of
|
|
384
385
|
for (let i = 0; i < fileList.length; i++) {
|
|
385
386
|
const _currentFileExt = fileExtRegExp.exec(fileList[i].name);
|
|
386
|
-
const currentFileExt = typeof _currentFileExt[1] === 'string'
|
|
387
|
+
const currentFileExt = typeof _currentFileExt[1] === 'string'
|
|
388
|
+
? _currentFileExt[1].toLowerCase()
|
|
389
|
+
: '';
|
|
387
390
|
const isFormatValid = this.formatsAllowed.includes('*')
|
|
388
391
|
? true
|
|
389
392
|
: this.formatsAllowed.includes(currentFileExt);
|
|
@@ -453,7 +456,9 @@ class UploadComponent {
|
|
|
453
456
|
this.uploadMsg = true;
|
|
454
457
|
this.afterUpload = true;
|
|
455
458
|
if (!isError) {
|
|
456
|
-
this.uploadMsgText =
|
|
459
|
+
this.uploadMsgText =
|
|
460
|
+
this.replaceTexts.afterUploadMsg_success ||
|
|
461
|
+
'Successfully Uploaded !';
|
|
457
462
|
this.uploadMsgClass = 'text-success lead';
|
|
458
463
|
}
|
|
459
464
|
}
|
|
@@ -479,7 +484,8 @@ class UploadComponent {
|
|
|
479
484
|
this.enableUploadBtn = false;
|
|
480
485
|
this.uploadMsg = true;
|
|
481
486
|
this.afterUpload = true;
|
|
482
|
-
this.uploadMsgText =
|
|
487
|
+
this.uploadMsgText =
|
|
488
|
+
this.replaceTexts.afterUploadMsg_error || 'Error in uploading files';
|
|
483
489
|
this.uploadMsgClass = 'text-danger lead';
|
|
484
490
|
}
|
|
485
491
|
removeFile(i, sf_na) {
|
|
@@ -516,11 +522,11 @@ class UploadComponent {
|
|
|
516
522
|
event.dataTransfer.dropEffect = 'copy';
|
|
517
523
|
}
|
|
518
524
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UploadComponent, deps: [{ token: i1$1.HttpClient, skipSelf: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
519
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: UploadComponent, isStandalone: true, selector: "wco-file-upload", inputs: { description: "description", config: "config", resetUpload: "resetUpload" }, outputs: { ApiResponse: "apiResponse", fileSelected: "fileSelected" }, usesOnChanges: true, ngImport: i0, template: "<label for=\"sel{{id}}\" class=\"wco-file-upload\" (drop)=\"drop($event)\" (dragover)=\"allowDrop($event)\">\n <div class=\"upload__drop-info\">\n <span>Arraste-os aqui ou</span>\n <div class=\"upload__button\">\n <span class=\"material-icons\">cloud_upload</span>\n <span>{{replaceTexts.selectFileBtn}}</span>\n </div>\n </div>\n <span class=\"upload__info\" *ngIf=\"!allowedFiles.length\" >{{description}}</span>\n <ng-container *ngIf=\"allowedFiles.length\">\n <span class=\"upload__info\" *ngFor=\"let sf of allowedFiles;let i=index\">\n {{sf.name}} <small>({{convertSize(sf.size)}})</small>\n </span>\n </ng-container>\n <input class=\"upload__file\" type=\"file\" id=\"sel{{id}}\" (change)=\"onChange($event)\" style=\"display: none\" title=\"Select file\"\n name=\"files[]\" [accept]=\"formatsAllowed\" [attr.multiple]=\"multiple ? '' : null\" />\n</label
|
|
525
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: UploadComponent, isStandalone: true, selector: "wco-file-upload", inputs: { description: "description", config: "config", resetUpload: "resetUpload" }, outputs: { ApiResponse: "apiResponse", fileSelected: "fileSelected" }, usesOnChanges: true, ngImport: i0, template: "<label for=\"sel{{id}}\" class=\"wco-file-upload\" (drop)=\"drop($event)\" (dragover)=\"allowDrop($event)\">\n <div class=\"upload__drop-info\">\n <span>Arraste-os aqui ou</span>\n <div class=\"upload__button\">\n <span class=\"material-icons\">cloud_upload</span>\n <span>{{replaceTexts.selectFileBtn}}</span>\n </div>\n </div>\n <span class=\"upload__info\" *ngIf=\"!allowedFiles.length\" >{{description}}</span>\n <ng-container *ngIf=\"allowedFiles.length\">\n <span class=\"upload__info\" *ngFor=\"let sf of allowedFiles;let i=index\">\n {{sf.name}} <small>({{convertSize(sf.size)}})</small>\n </span>\n </ng-container>\n <input class=\"upload__file\" type=\"file\" id=\"sel{{id}}\" (change)=\"onChange($event)\" style=\"display: none\" title=\"Select file\"\n name=\"files[]\" [accept]=\"formatsAllowed\" [attr.multiple]=\"multiple ? '' : null\" />\n</label>", styles: [".wco-file-upload{--color-button: var(--wco-color-primary-600);--color-button-hover: var(--wco-color-primary-700);border:2px dashed #c1c3c5;border-radius:10px;padding:10px;display:flex;flex-direction:column;align-items:center;gap:12px;cursor:pointer}.wco-file-upload .upload__drop-info{display:inherit;justify-content:center;align-items:center;gap:16px}.wco-file-upload .upload__button{display:inherit;justify-content:center;gap:8px;padding:10px 0}.wco-file-upload .upload__button span,.wco-file-upload .upload__button label{color:var(--color-button);cursor:pointer}.wco-file-upload .upload__file{display:none}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: HttpClientModule }] });
|
|
520
526
|
}
|
|
521
527
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UploadComponent, decorators: [{
|
|
522
528
|
type: Component,
|
|
523
|
-
args: [{ selector:
|
|
529
|
+
args: [{ selector: 'wco-file-upload', standalone: true, imports: [CommonModule, HttpClientModule], template: "<label for=\"sel{{id}}\" class=\"wco-file-upload\" (drop)=\"drop($event)\" (dragover)=\"allowDrop($event)\">\n <div class=\"upload__drop-info\">\n <span>Arraste-os aqui ou</span>\n <div class=\"upload__button\">\n <span class=\"material-icons\">cloud_upload</span>\n <span>{{replaceTexts.selectFileBtn}}</span>\n </div>\n </div>\n <span class=\"upload__info\" *ngIf=\"!allowedFiles.length\" >{{description}}</span>\n <ng-container *ngIf=\"allowedFiles.length\">\n <span class=\"upload__info\" *ngFor=\"let sf of allowedFiles;let i=index\">\n {{sf.name}} <small>({{convertSize(sf.size)}})</small>\n </span>\n </ng-container>\n <input class=\"upload__file\" type=\"file\" id=\"sel{{id}}\" (change)=\"onChange($event)\" style=\"display: none\" title=\"Select file\"\n name=\"files[]\" [accept]=\"formatsAllowed\" [attr.multiple]=\"multiple ? '' : null\" />\n</label>", styles: [".wco-file-upload{--color-button: var(--wco-color-primary-600);--color-button-hover: var(--wco-color-primary-700);border:2px dashed #c1c3c5;border-radius:10px;padding:10px;display:flex;flex-direction:column;align-items:center;gap:12px;cursor:pointer}.wco-file-upload .upload__drop-info{display:inherit;justify-content:center;align-items:center;gap:16px}.wco-file-upload .upload__button{display:inherit;justify-content:center;gap:8px;padding:10px 0}.wco-file-upload .upload__button span,.wco-file-upload .upload__button label{color:var(--color-button);cursor:pointer}.wco-file-upload .upload__file{display:none}\n"] }]
|
|
524
530
|
}], ctorParameters: function () { return [{ type: i1$1.HttpClient, decorators: [{
|
|
525
531
|
type: SkipSelf
|
|
526
532
|
}] }]; }, propDecorators: { description: [{
|
|
@@ -1331,6 +1337,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1331
1337
|
type: Input
|
|
1332
1338
|
}] } });
|
|
1333
1339
|
|
|
1340
|
+
class TimelineComponent {
|
|
1341
|
+
timelineItems = [];
|
|
1342
|
+
statusToIcon = {
|
|
1343
|
+
finalized: 'check',
|
|
1344
|
+
current: '',
|
|
1345
|
+
waiting: '',
|
|
1346
|
+
error: 'priority_high'
|
|
1347
|
+
};
|
|
1348
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TimelineComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1349
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: TimelineComponent, isStandalone: true, selector: "wco-timeline", inputs: { timelineItems: "timelineItems" }, ngImport: i0, template: "<div class=\"wco-timeline\">\n <div class=\"wco-timeline-item\" *ngFor=\"let item of timelineItems; let i = index\">\n <div class=\"wco-timeline-item-dot-container\">\n <div class=\"wco-timeline-item-dot-container-inner\">\n <span class=\"wco-timeline-item-dot-number\">\n {{ timelineItems.length - i }}\n </span>\n <div class=\"wco-timeline-item-dot-line-container\">\n <div [className]=\"'wco-timeline-item-dot wco-timeline-item-dot-' + item.status\">\n <span [className]=\"'material-icons wco-timeline-item-dot-icon wco-timeline-item-dot-icon-' + item.status\"> {{ statusToIcon[item.status] }} </span>\n </div>\n <hr class=\"wco-timeline-item-dot-line\" />\n </div>\n </div>\n </div>\n <div class=\"wco-timeline-item-content-container\">\n <div class=\"wco-timeline-item-content\">\n <h4 [className]=\"'wco-timeline-item-content-title wco-timeline-item-content-title-' + item.status\"> {{ item.title }} </h4>\n <p [className]=\"'wco-timeline-item-content-description wco-timeline-item-content-description-' + item.status\"> {{ item.description }} </p>\n <button class=\"wco-btn btn-primary btn-link\" *ngIf=\"item.action\" (click)=\"item.action.handler()\" [disabled]=\"item.status === 'waiting'\"> {{item.action.label}} </button>\n </div>\n <span [className]=\"'wco-timeline-item-content-date wco-timeline-item-content-date-' + item.status\"> {{ item.date }} </span>\n </div>\n </div>\n</div>\n", styles: [".wco-timeline{display:flex;flex-wrap:wrap;flex-direction:column;align-items:center;margin:20px 0;--wco-timeline-dot-color: var(--wco-color-neutral-300)}.wco-timeline .wco-timeline-item{width:100%;display:flex;flex-direction:row;gap:10px}.wco-timeline .wco-timeline-item-dot-container{display:flex;flex-direction:column;align-items:center;gap:5px}.wco-timeline .wco-timeline-item-dot-container-inner{height:100%;display:flex;flex-direction:row;gap:5px}.wco-timeline .wco-timeline-item-dot-line-container{display:flex;flex-direction:column;align-items:center}.wco-timeline .wco-timeline-item-dot-line{width:var(--wco-borderwidth-thin);height:100%;background-color:var(--wco-color-neutral-500)}.wco-timeline .wco-timeline-item-dot{min-width:20px;min-height:20px;max-width:20px;max-height:20px;justify-content:center;align-items:center;display:flex;border-radius:var(--wco-radius-circular);background-color:var(--wco-timeline-dot-color)}.wco-timeline .wco-timeline-item-dot-finalized{--wco-timeline-dot-color: var(--wco-color-success-500)}.wco-timeline .wco-timeline-item-dot-current{--wco-timeline-dot-color: var(--wco-color-primary-600)}.wco-timeline .wco-timeline-item-dot-waiting{--wco-timeline-dot-color: var(--wco-color-neutral-300)}.wco-timeline .wco-timeline-item-dot-error{--wco-timeline-dot-color: var(--wco-color-danger-100)}.wco-timeline .wco-timeline-item-content{flex-direction:column;display:flex;margin-bottom:var(--wco-spacing-xl)}@media (max-width: 900px){.wco-timeline .wco-timeline-item-content{margin-bottom:var(--wco-spacing-xs)}}.wco-timeline .wco-timeline-item-content-container{width:100%;display:flex;justify-content:space-between;flex-direction:row;gap:2rem}.wco-timeline .wco-timeline-item-content-title{font-size:var(--wco-font-size-sm);font-weight:var(--wco-timeline-item-content-title-font-weight);color:var(--wco-timeline-item-content-title-font-color);margin-bottom:var(--wco-spacing-quark)}.wco-timeline .wco-timeline-item-content-title-finalized{--wco-timeline-item-content-title-font-weight: 400;--wco-timeline-item-content-title-font-color: var(--wco-color-neutral-900)}.wco-timeline .wco-timeline-item-content-title-current{--wco-timeline-item-content-title-font-weight: 700;--wco-timeline-item-content-title-font-color: var(--wco-color-neutral-900)}.wco-timeline .wco-timeline-item-content-title-waiting{--wco-timeline-item-content-title-font-weight: 400;--wco-timeline-item-content-title-font-color: var(--wco-color-neutral-600)}.wco-timeline .wco-timeline-item-content-title-error{--wco-timeline-item-content-title-font-weight: 400;--wco-timeline-item-content-title-font-color: var(--wco-color-danger-600)}.wco-timeline .wco-timeline-item-content-description{font-size:var(--wco-font-size-sm);font-weight:var(--wco-timeline-item-content-description-font-weight);color:var(--wco-timeline-item-content-description-font-color);margin-bottom:var(--wco-spacing-quark)}.wco-timeline .wco-timeline-item-content-description-finalized,.wco-timeline .wco-timeline-item-content-description-current{--wco-timeline-item-content-description-font-weight: 400;--wco-timeline-item-content-description-font-color: var(--wco-color-neutral-700)}.wco-timeline .wco-timeline-item-content-description-waiting{--wco-timeline-item-content-description-font-weight: 400;--wco-timeline-item-content-description-font-color: var(--wco-color-neutral-600)}.wco-timeline .wco-timeline-item-content-description-error{--wco-timeline-item-content-description-font-weight: 400;--wco-timeline-item-content-description-font-color: var(--wco-color-neutral-700)}.wco-timeline .wco-timeline-item-content-date{font-size:1rem;color:var(--wco-color-neutral-700)}.wco-timeline .wco-timeline-item-dot-icon{font-size:.8rem;color:var(--wco-timeline-dot-icon-color)}.wco-timeline .wco-timeline-item-dot-icon-finalized{--wco-timeline-dot-icon-color: var(--wco-color-neutral-50)}.wco-timeline .wco-timeline-item-dot-icon-error{--wco-timeline-dot-icon-color: var(--wco-color-danger-600)}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
1350
|
+
}
|
|
1351
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TimelineComponent, decorators: [{
|
|
1352
|
+
type: Component,
|
|
1353
|
+
args: [{ selector: 'wco-timeline', standalone: true, imports: [CommonModule], encapsulation: ViewEncapsulation.None, template: "<div class=\"wco-timeline\">\n <div class=\"wco-timeline-item\" *ngFor=\"let item of timelineItems; let i = index\">\n <div class=\"wco-timeline-item-dot-container\">\n <div class=\"wco-timeline-item-dot-container-inner\">\n <span class=\"wco-timeline-item-dot-number\">\n {{ timelineItems.length - i }}\n </span>\n <div class=\"wco-timeline-item-dot-line-container\">\n <div [className]=\"'wco-timeline-item-dot wco-timeline-item-dot-' + item.status\">\n <span [className]=\"'material-icons wco-timeline-item-dot-icon wco-timeline-item-dot-icon-' + item.status\"> {{ statusToIcon[item.status] }} </span>\n </div>\n <hr class=\"wco-timeline-item-dot-line\" />\n </div>\n </div>\n </div>\n <div class=\"wco-timeline-item-content-container\">\n <div class=\"wco-timeline-item-content\">\n <h4 [className]=\"'wco-timeline-item-content-title wco-timeline-item-content-title-' + item.status\"> {{ item.title }} </h4>\n <p [className]=\"'wco-timeline-item-content-description wco-timeline-item-content-description-' + item.status\"> {{ item.description }} </p>\n <button class=\"wco-btn btn-primary btn-link\" *ngIf=\"item.action\" (click)=\"item.action.handler()\" [disabled]=\"item.status === 'waiting'\"> {{item.action.label}} </button>\n </div>\n <span [className]=\"'wco-timeline-item-content-date wco-timeline-item-content-date-' + item.status\"> {{ item.date }} </span>\n </div>\n </div>\n</div>\n", styles: [".wco-timeline{display:flex;flex-wrap:wrap;flex-direction:column;align-items:center;margin:20px 0;--wco-timeline-dot-color: var(--wco-color-neutral-300)}.wco-timeline .wco-timeline-item{width:100%;display:flex;flex-direction:row;gap:10px}.wco-timeline .wco-timeline-item-dot-container{display:flex;flex-direction:column;align-items:center;gap:5px}.wco-timeline .wco-timeline-item-dot-container-inner{height:100%;display:flex;flex-direction:row;gap:5px}.wco-timeline .wco-timeline-item-dot-line-container{display:flex;flex-direction:column;align-items:center}.wco-timeline .wco-timeline-item-dot-line{width:var(--wco-borderwidth-thin);height:100%;background-color:var(--wco-color-neutral-500)}.wco-timeline .wco-timeline-item-dot{min-width:20px;min-height:20px;max-width:20px;max-height:20px;justify-content:center;align-items:center;display:flex;border-radius:var(--wco-radius-circular);background-color:var(--wco-timeline-dot-color)}.wco-timeline .wco-timeline-item-dot-finalized{--wco-timeline-dot-color: var(--wco-color-success-500)}.wco-timeline .wco-timeline-item-dot-current{--wco-timeline-dot-color: var(--wco-color-primary-600)}.wco-timeline .wco-timeline-item-dot-waiting{--wco-timeline-dot-color: var(--wco-color-neutral-300)}.wco-timeline .wco-timeline-item-dot-error{--wco-timeline-dot-color: var(--wco-color-danger-100)}.wco-timeline .wco-timeline-item-content{flex-direction:column;display:flex;margin-bottom:var(--wco-spacing-xl)}@media (max-width: 900px){.wco-timeline .wco-timeline-item-content{margin-bottom:var(--wco-spacing-xs)}}.wco-timeline .wco-timeline-item-content-container{width:100%;display:flex;justify-content:space-between;flex-direction:row;gap:2rem}.wco-timeline .wco-timeline-item-content-title{font-size:var(--wco-font-size-sm);font-weight:var(--wco-timeline-item-content-title-font-weight);color:var(--wco-timeline-item-content-title-font-color);margin-bottom:var(--wco-spacing-quark)}.wco-timeline .wco-timeline-item-content-title-finalized{--wco-timeline-item-content-title-font-weight: 400;--wco-timeline-item-content-title-font-color: var(--wco-color-neutral-900)}.wco-timeline .wco-timeline-item-content-title-current{--wco-timeline-item-content-title-font-weight: 700;--wco-timeline-item-content-title-font-color: var(--wco-color-neutral-900)}.wco-timeline .wco-timeline-item-content-title-waiting{--wco-timeline-item-content-title-font-weight: 400;--wco-timeline-item-content-title-font-color: var(--wco-color-neutral-600)}.wco-timeline .wco-timeline-item-content-title-error{--wco-timeline-item-content-title-font-weight: 400;--wco-timeline-item-content-title-font-color: var(--wco-color-danger-600)}.wco-timeline .wco-timeline-item-content-description{font-size:var(--wco-font-size-sm);font-weight:var(--wco-timeline-item-content-description-font-weight);color:var(--wco-timeline-item-content-description-font-color);margin-bottom:var(--wco-spacing-quark)}.wco-timeline .wco-timeline-item-content-description-finalized,.wco-timeline .wco-timeline-item-content-description-current{--wco-timeline-item-content-description-font-weight: 400;--wco-timeline-item-content-description-font-color: var(--wco-color-neutral-700)}.wco-timeline .wco-timeline-item-content-description-waiting{--wco-timeline-item-content-description-font-weight: 400;--wco-timeline-item-content-description-font-color: var(--wco-color-neutral-600)}.wco-timeline .wco-timeline-item-content-description-error{--wco-timeline-item-content-description-font-weight: 400;--wco-timeline-item-content-description-font-color: var(--wco-color-neutral-700)}.wco-timeline .wco-timeline-item-content-date{font-size:1rem;color:var(--wco-color-neutral-700)}.wco-timeline .wco-timeline-item-dot-icon{font-size:.8rem;color:var(--wco-timeline-dot-icon-color)}.wco-timeline .wco-timeline-item-dot-icon-finalized{--wco-timeline-dot-icon-color: var(--wco-color-neutral-50)}.wco-timeline .wco-timeline-item-dot-icon-error{--wco-timeline-dot-icon-color: var(--wco-color-danger-600)}\n"] }]
|
|
1354
|
+
}], propDecorators: { timelineItems: [{
|
|
1355
|
+
type: Input
|
|
1356
|
+
}] } });
|
|
1357
|
+
|
|
1334
1358
|
/*
|
|
1335
1359
|
* Public API Surface of ngx-fenixds
|
|
1336
1360
|
*/
|
|
@@ -1339,5 +1363,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1339
1363
|
* Generated bundle index. Do not edit.
|
|
1340
1364
|
*/
|
|
1341
1365
|
|
|
1342
|
-
export { MsgBoxFeedbackComponent, PaginationComponent, SmartSelectComponent, SmartSelectOptionComponent, StepComponent, StepperComponent, TabsComponent, UploadComponent, UserAvatarComponent };
|
|
1366
|
+
export { MsgBoxFeedbackComponent, PaginationComponent, SmartSelectComponent, SmartSelectOptionComponent, StepComponent, StepperComponent, TabsComponent, TimelineComponent, UploadComponent, UserAvatarComponent };
|
|
1343
1367
|
//# sourceMappingURL=wizco-fenixds-ngx.mjs.map
|