@factor_ec/ui 1.0.13 → 1.0.17
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/esm2020/factor_ec-ui.mjs +5 -0
- package/esm2020/lib/display/avatar/avatar.component.mjs +74 -0
- package/esm2020/lib/display/content/content.component.mjs +19 -0
- package/esm2020/lib/display/display.module.mjs +66 -0
- package/esm2020/lib/display/icon/icon.component.mjs +97 -0
- package/esm2020/lib/display/image/image.component.mjs +80 -0
- package/esm2020/lib/display/message/message.component.mjs +30 -0
- package/esm2020/lib/display/message.service.mjs +58 -0
- package/esm2020/lib/display/observe-intersecting.directive.mjs +43 -0
- package/esm2020/lib/display/progress/progress.component.mjs +42 -0
- package/esm2020/lib/display/progress.service.mjs +50 -0
- package/esm2020/lib/inputs/inputs.module.mjs +24 -0
- package/esm2020/lib/inputs/rating/rating.component.mjs +73 -0
- package/esm2020/lib/models/action.mjs +2 -0
- package/esm2020/lib/models/content.mjs +2 -0
- package/esm2020/lib/models/icon.mjs +2 -0
- package/esm2020/lib/models/message-options.mjs +2 -0
- package/esm2020/lib/models/module-configuration.mjs +2 -0
- package/esm2020/lib/models/ui-configuration.mjs +2 -0
- package/esm2020/lib/navigation/list/list.component.mjs +70 -0
- package/esm2020/lib/navigation/navbar/navbar.component.mjs +74 -0
- package/esm2020/lib/navigation/navigation.module.mjs +55 -0
- package/esm2020/lib/navigation/searchbox/searchbox.component.mjs +109 -0
- package/esm2020/lib/navigation/toolbar/toolbar.component.mjs +53 -0
- package/esm2020/lib/ui.module.mjs +47 -0
- package/esm2020/public-api.mjs +22 -0
- package/fesm2015/factor_ec-ui.mjs +1002 -0
- package/fesm2015/factor_ec-ui.mjs.map +1 -0
- package/fesm2020/factor_ec-ui.mjs +993 -0
- package/fesm2020/factor_ec-ui.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/display/avatar/avatar.component.d.ts +22 -0
- package/lib/display/content/content.component.d.ts +7 -0
- package/lib/display/display.module.d.ts +17 -0
- package/lib/display/icon/icon.component.d.ts +24 -0
- package/lib/display/image/image.component.d.ts +15 -0
- package/lib/display/message/message.component.d.ts +11 -0
- package/lib/display/message.service.d.ts +15 -0
- package/lib/display/observe-intersecting.directive.d.ts +16 -0
- package/lib/display/progress/progress.component.d.ts +15 -0
- package/lib/display/progress.service.d.ts +15 -0
- package/lib/inputs/inputs.module.d.ts +8 -0
- package/lib/inputs/rating/rating.component.d.ts +23 -0
- package/{src/lib/models/action.ts → lib/models/action.d.ts} +1 -1
- package/{src/lib/models/content.ts → lib/models/content.d.ts} +1 -1
- package/{src/lib/models/icon.ts → lib/models/icon.d.ts} +1 -1
- package/{src/lib/models/message-options.ts → lib/models/message-options.d.ts} +1 -2
- package/lib/models/module-configuration.d.ts +6 -0
- package/lib/models/ui-configuration.d.ts +7 -0
- package/lib/navigation/list/list.component.d.ts +21 -0
- package/lib/navigation/navbar/navbar.component.d.ts +23 -0
- package/lib/navigation/navigation.module.d.ts +15 -0
- package/lib/navigation/searchbox/searchbox.component.d.ts +34 -0
- package/lib/navigation/toolbar/toolbar.component.d.ts +18 -0
- package/lib/ui.module.d.ts +13 -0
- package/package.json +23 -3
- package/{src/public-api.ts → public-api.d.ts} +0 -4
- package/.browserslistrc +0 -16
- package/karma.conf.js +0 -44
- package/ng-package.json +0 -7
- package/src/lib/display/avatar/avatar.component.html +0 -1
- package/src/lib/display/avatar/avatar.component.scss +0 -20
- package/src/lib/display/avatar/avatar.component.spec.ts +0 -23
- package/src/lib/display/avatar/avatar.component.ts +0 -69
- package/src/lib/display/content/content.component.html +0 -4
- package/src/lib/display/content/content.component.scss +0 -0
- package/src/lib/display/content/content.component.spec.ts +0 -23
- package/src/lib/display/content/content.component.ts +0 -15
- package/src/lib/display/display.module.ts +0 -41
- package/src/lib/display/icon/icon.component.html +0 -4
- package/src/lib/display/icon/icon.component.scss +0 -47
- package/src/lib/display/icon/icon.component.spec.ts +0 -23
- package/src/lib/display/icon/icon.component.ts +0 -88
- package/src/lib/display/image/image.component.html +0 -2
- package/src/lib/display/image/image.component.scss +0 -53
- package/src/lib/display/image/image.component.spec.ts +0 -23
- package/src/lib/display/image/image.component.ts +0 -71
- package/src/lib/display/message/message.component.html +0 -33
- package/src/lib/display/message/message.component.scss +0 -25
- package/src/lib/display/message/message.component.spec.ts +0 -23
- package/src/lib/display/message/message.component.ts +0 -24
- package/src/lib/display/message.service.spec.ts +0 -16
- package/src/lib/display/message.service.ts +0 -58
- package/src/lib/display/observe-intersecting.directive.spec.ts +0 -8
- package/src/lib/display/observe-intersecting.directive.ts +0 -34
- package/src/lib/display/progress/progress.component.html +0 -6
- package/src/lib/display/progress/progress.component.scss +0 -121
- package/src/lib/display/progress/progress.component.spec.ts +0 -23
- package/src/lib/display/progress/progress.component.ts +0 -36
- package/src/lib/display/progress.service.spec.ts +0 -16
- package/src/lib/display/progress.service.ts +0 -51
- package/src/lib/inputs/inputs.module.ts +0 -17
- package/src/lib/inputs/rating/rating.component.html +0 -13
- package/src/lib/inputs/rating/rating.component.scss +0 -61
- package/src/lib/inputs/rating/rating.component.spec.ts +0 -25
- package/src/lib/inputs/rating/rating.component.ts +0 -66
- package/src/lib/models/action-group.ts +0 -9
- package/src/lib/models/module-configuration.ts +0 -6
- package/src/lib/models/ui-configuration.ts +0 -7
- package/src/lib/navigation/list/list.component.html +0 -52
- package/src/lib/navigation/list/list.component.scss +0 -93
- package/src/lib/navigation/list/list.component.spec.ts +0 -23
- package/src/lib/navigation/list/list.component.ts +0 -56
- package/src/lib/navigation/navbar/navbar.component.html +0 -23
- package/src/lib/navigation/navbar/navbar.component.scss +0 -202
- package/src/lib/navigation/navbar/navbar.component.spec.ts +0 -23
- package/src/lib/navigation/navbar/navbar.component.ts +0 -57
- package/src/lib/navigation/navigation.module.ts +0 -34
- package/src/lib/navigation/searchbox/searchbox.component.html +0 -34
- package/src/lib/navigation/searchbox/searchbox.component.scss +0 -37
- package/src/lib/navigation/searchbox/searchbox.component.spec.ts +0 -23
- package/src/lib/navigation/searchbox/searchbox.component.ts +0 -94
- package/src/lib/navigation/toolbar/toolbar.component.html +0 -43
- package/src/lib/navigation/toolbar/toolbar.component.scss +0 -29
- package/src/lib/navigation/toolbar/toolbar.component.spec.ts +0 -23
- package/src/lib/navigation/toolbar/toolbar.component.ts +0 -43
- package/src/lib/scss/breakpoints.scss +0 -123
- package/src/lib/scss/variables.scss +0 -8
- package/src/lib/ui.module.ts +0 -34
- package/src/test.ts +0 -27
- package/tsconfig.lib.json +0 -15
- package/tsconfig.lib.prod.json +0 -10
- package/tsconfig.spec.json +0 -17
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"factor_ec-ui.mjs","sources":["../../../projects/ui/src/lib/display/avatar/avatar.component.ts","../../../projects/ui/src/lib/display/avatar/avatar.component.html","../../../projects/ui/src/lib/display/icon/icon.component.ts","../../../projects/ui/src/lib/display/icon/icon.component.html","../../../projects/ui/src/lib/display/image/image.component.ts","../../../projects/ui/src/lib/display/image/image.component.html","../../../projects/ui/src/lib/display/content/content.component.ts","../../../projects/ui/src/lib/display/content/content.component.html","../../../projects/ui/src/lib/display/message/message.component.ts","../../../projects/ui/src/lib/display/message/message.component.html","../../../projects/ui/src/lib/display/message.service.ts","../../../projects/ui/src/lib/display/progress/progress.component.ts","../../../projects/ui/src/lib/display/progress/progress.component.html","../../../projects/ui/src/lib/display/progress.service.ts","../../../projects/ui/src/lib/display/observe-intersecting.directive.ts","../../../projects/ui/src/lib/display/display.module.ts","../../../projects/ui/src/lib/inputs/rating/rating.component.ts","../../../projects/ui/src/lib/inputs/rating/rating.component.html","../../../projects/ui/src/lib/inputs/inputs.module.ts","../../../projects/ui/src/lib/navigation/list/list.component.ts","../../../projects/ui/src/lib/navigation/list/list.component.html","../../../projects/ui/src/lib/navigation/navbar/navbar.component.ts","../../../projects/ui/src/lib/navigation/navbar/navbar.component.html","../../../projects/ui/src/lib/navigation/searchbox/searchbox.component.ts","../../../projects/ui/src/lib/navigation/searchbox/searchbox.component.html","../../../projects/ui/src/lib/navigation/toolbar/toolbar.component.ts","../../../projects/ui/src/lib/navigation/toolbar/toolbar.component.html","../../../projects/ui/src/lib/navigation/navigation.module.ts","../../../projects/ui/src/lib/ui.module.ts","../../../projects/ui/src/public-api.ts","../../../projects/ui/src/factor_ec-ui.ts"],"sourcesContent":["import { Component, HostBinding, Input, OnInit } from '@angular/core';\nimport { ColorService } from '@factor_ec/utils';\n\n@Component({\n selector: 'ft-avatar',\n templateUrl: './avatar.component.html',\n styleUrls: ['./avatar.component.scss']\n})\nexport class AvatarComponent implements OnInit {\n _label!: string;\n _src!: string;\n @Input()\n color!: string;\n initials!: string;\n loaded!: boolean;\n @Input()\n class: string = '';\n @Input()\n set src(value: string | undefined) {\n if (value && value.trim()!='') {\n this._src = value;\n let image = new Image();\n image.src = value;\n image.onload = () => {\n if (\"decode\" in image) {\n image.decode().then(() => {\n this.loaded = true;\n });\n } else {\n console.error('Image.decode not available.');\n }\n };\n }\n }\n @Input()\n set label(value: string) {\n this._label = value;\n this.initials = this.getInitials(value);\n }\n @HostBinding('style.background-color')\n get backgroundColor(): string {\n return this.color || this.colorService.hex(this._label);\n }\n @HostBinding('style.background-image')\n get backgroundImage(): string {\n return this._src ? `url(${this._src})` : '';\n }\n @HostBinding('class')\n get hostClasses(): string {\n return [\n 'ft-avatar',\n this.class\n ].join(' ');\n }\n\n constructor(\n private colorService: ColorService\n ) { }\n\n ngOnInit() {\n\n }\n getInitials(value: string): string {\n let allInitials: string[] = value.match(/\\b\\w/g) || [];\n let initials: string = ((allInitials.shift() || '') + (allInitials.pop() || '')).toUpperCase();\n return initials;\n }\n\n}\n","<div *ngIf=\"!loaded\">{{ initials }}</div>\n","import { Component, OnInit, Input, Inject, HostBinding } from '@angular/core';\nimport { UiConfiguration } from '../../models/ui-configuration';\n\n@Component({\n selector: 'ft-icon',\n templateUrl: './icon.component.html',\n styleUrls: ['./icon.component.scss']\n})\nexport class IconComponent implements OnInit {\n _collection!: string;\n _name!: string;\n _mode!: 'inline' | 'external';\n _path!: string;\n @Input()\n class: string = '';\n @Input()\n set collection(collection: string) {\n this._collection = collection;\n this.update();\n }\n @Input()\n set mode(mode: 'inline' | 'external') {\n this._mode = mode;\n this.update();\n }\n @Input()\n set name(name: string) {\n this._name = name;\n this.update();\n } \n @Input()\n set path(path: string) {\n this._path = path;\n this.update();\n }\n @Input()\n size!: string;\n @Input()\n src!: string;\n url!: string;\n @HostBinding('class')\n get hostClasses(): string {\n return [\n 'ft-icon',\n this.class\n ].join(' ');\n }\n\n constructor(\n @Inject('FactorUiConfiguration') private configuration: UiConfiguration\n ) { }\n\n ngOnInit() {\n this.update();\n }\n private update() {\n // Set the default collection if the mode is external\n if (!this._collection) {\n if (this.configuration.icon && this.configuration.icon.collection) {\n this._collection = this.configuration.icon.collection;\n } else if (this._mode === 'external') {\n this._collection = 'icons';\n }\n }\n if (!this._mode) {\n if (this.configuration.icon && this.configuration.icon.mode) {\n this._mode = this.configuration.icon.mode;\n } else {\n this._mode = 'external';\n }\n }\n if (this._mode === 'external') {\n // If the icon mode is external\n if (!this._path) {\n if (this.configuration.icon && this.configuration.icon.path) {\n this._path = this.configuration.icon.path;\n } else {\n this._path = 'assets';\n }\n }\n this.url = `${ this._path }/${ this._collection }.svg#${this._name}`;\n } else {\n // If the icon mode is inline\n const name = this._collection && this._collection !== 'unset' ? `${this._collection}--${this._name}` : this._name;\n this.url = `#${name}`;\n }\n }\n}\n","<svg *ngIf=\"!src; else imageTemplate\"><use attr.xlink:href=\"{{ url }}\" attr.href=\"{{ url }}\" /></svg>\n<ng-template #imageTemplate>\n <img [src]=\"src\" />\n</ng-template>","import { Component, OnInit, Input, HostBinding, ElementRef } from '@angular/core';\n\n@Component({\n selector: 'ft-image',\n templateUrl: './image.component.html',\n styleUrls: ['./image.component.scss']\n})\nexport class ImageComponent implements OnInit {\n @Input()\n class: string = '';\n @HostBinding('class.ft-image--error')\n error!: boolean;\n @HostBinding('class.ft-image--loading')\n loading: boolean = false;\n @Input()\n src!: string;\n shown: boolean = false;\n\n constructor(\n private element: ElementRef\n ) { }\n\n ngOnInit() {\n if (\"IntersectionObserver\" in window) {\n let elementObserver = new IntersectionObserver((entries, observer) => {\n entries.forEach((entry) => {\n if (entry.isIntersecting) {\n let image = new Image();\n image.src = this.src;\n setTimeout(() => {\n if (!this.shown && !this.error) {\n this.loading = true;\n }\n }, 100);\n image.onerror = () => {\n this.error = true;\n this.loading = false;\n };\n image.onload = () => {\n if (\"decode\" in image) {\n image.decode().then(() => {\n this.loading = false;\n this.shown = true;\n });\n } else {\n this.loading = false;\n this.shown = true;\n }\n };\n elementObserver.unobserve(this.element.nativeElement);\n }\n });\n }, {\n rootMargin: \"0px 0px 200px 0px\"\n });\n elementObserver.observe(this.element.nativeElement);\n } else {\n console.error('IntersectionObserver not available.');\n this.loading = false;\n this.shown = true;\n }\n }\n @HostBinding('class')\n get hostClasses(): string {\n return [\n 'ft-image',\n this.class\n ].join(' ');\n }\n\n}\n","<img *ngIf=\"shown\" [src]=\"src\" />\n<ft-icon name=\"warning\" size=\"2\" *ngIf=\"error\"></ft-icon>\n","import { Component, Inject } from '@angular/core';\nimport { MAT_SNACK_BAR_DATA } from '@angular/material/snack-bar';\n\n@Component({\n selector: 'lib-content',\n templateUrl: './content.component.html',\n styleUrls: ['./content.component.scss']\n})\nexport class ContentComponent {\n\n constructor(\n @Inject(MAT_SNACK_BAR_DATA) public data: any\n ) { }\n\n}\n","<ng-container [ngSwitch]=\"data.message?.type\">\n <div *ngSwitchCase=\"'html'\" [innerHTML]=\"data.message?.content\"></div>\n <ng-container *ngSwitchDefault>{{ data.message?.content }}</ng-container>\n</ng-container>","import { Component, EventEmitter, Inject, OnInit, Output } from '@angular/core';\nimport { MAT_DIALOG_DATA } from '@angular/material/dialog';\n\n@Component({\n selector: 'ft-message',\n templateUrl: './message.component.html',\n styleUrls: ['./message.component.scss']\n})\nexport class MessageComponent implements OnInit {\n @Output()\n beforeSelect: EventEmitter<any> = new EventEmitter();\n\n constructor(\n @Inject(MAT_DIALOG_DATA) public data: any\n ) { }\n\n ngOnInit() {\n }\n select(value: string) {\n this.beforeSelect.emit(value);\n }\n\n\n}\n","<h1 mat-dialog-title class=\"ft-message__title\" *ngIf=\"data.options?.title\">\n <ft-icon *ngIf=\"data.options?.titleIcon\" [name]=\"data.options?.titleIcon?.name\"\n [collection]=\"data.options?.titleIcon?.collection\" [ngClass]=\"data.options?.titleIcon?.class\"\n [size]=\"data.options?.titleIcon?.size || 2\"></ft-icon>\n <div>{{ data.options?.title }}</div>\n </h1>\n <div mat-dialog-content class=\"ft-message__content\" [ngClass]=\"data.options?.class\">\n <ft-icon *ngIf=\"data.options?.icon\" [name]=\"data.options?.icon?.name\" [collection]=\"data.options?.icon?.collection\"\n [ngClass]=\"data.options?.icon?.class\" [size]=\"data.options?.icon?.size || 2\"></ft-icon>\n <ng-container [ngSwitch]=\"data.message?.type\">\n <div *ngSwitchCase=\"'html'\" [innerHTML]=\"data.message?.content\"></div>\n <ng-container *ngSwitchDefault>{{ data.message?.content }}</ng-container>\n </ng-container>\n </div>\n <div mat-dialog-actions class=\"ft-message__actions\" *ngIf=\"data.options.actionsVisible\">\n <ng-container *ngIf=\"data.options?.actions?.length > 0; else acceptTemplate\">\n <ng-container *ngFor=\"let action of data.options?.actions; let i = index\">\n <ng-container [ngSwitch]=\"action.type\">\n <button type=\"button\" *ngSwitchCase=\"'raised'\" mat-raised-button [color]=\"action.metadata?.color\"\n (click)=\"select(action.value)\" autofocus>{{ action.label }}</button>\n <button type=\"button\" *ngSwitchCase=\"'flat'\" mat-flat-button [color]=\"action.metadata?.color\"\n (click)=\"select(action.value)\" autofocus>{{ action.label }}</button>\n <button type=\"button\" *ngSwitchCase=\"'stroked'\" mat-stroked-button [color]=\"action.metadata?.color\"\n (click)=\"select(action.value)\" autofocus>{{ action.label }}</button>\n <button type=\"button\" *ngSwitchDefault mat-button [color]=\"action.metadata?.color\"\n (click)=\"select(action.value)\">{{ action.label }}</button>\n </ng-container>\n </ng-container>\n </ng-container>\n </div>\n <ng-template #acceptTemplate>\n <button type=\"button\" mat-stroked-button color=\"primary\" autofocus (click)=\"select('-1')\" i18n>Accept</button>\n </ng-template>","import { Injectable } from '@angular/core';\nimport { ReplaySubject, Observable } from \"rxjs\";\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { MatDialog } from '@angular/material/dialog';\n\nimport { MessageComponent } from './message/message.component';\nimport { Content } from '../models/content';\nimport { ContentComponent } from './content/content.component';\nimport { MessageOptions } from '../models/message-options';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class MessageService {\n element: any;\n\n constructor(\n private snackBar: MatSnackBar,\n private dialog: MatDialog\n ) { }\n\n show(message: string | Content, options?: MessageOptions): Observable<any> {\n let selectionSource: ReplaySubject<string> = new ReplaySubject<string>(undefined);\n let selection: Observable<string> = selectionSource.asObservable();\n const defaults: MessageOptions = {\n type: 'notification',\n duration: 2000,\n actionsVisible: true\n };\n options = Object.assign(defaults, options);\n const data = { message: typeof message === 'string' ? { content: message, type: 'text' } : message, options };\n switch (options.type) {\n default:\n case 'notification':\n this.snackBar.openFromComponent(ContentComponent, {\n data,\n panelClass: ['ft-message', 'ft-message--notification'],\n duration: options.duration || 2000,\n });\n break;\n case 'modal':\n const dialogRef = this.dialog.open(MessageComponent, {\n width: options.width || '350px',\n data,\n panelClass: ['ft-message', 'ft-message--modal'],\n autoFocus: false,\n disableClose: true\n });\n dialogRef.componentInstance.beforeSelect.subscribe(response => {\n selectionSource.next(response);\n dialogRef.close();\n });\n this.snackBar.dismiss();\n break;\n }\n return selection;\n }\n}","import { Component, OnInit, Input, HostBinding } from '@angular/core';\n\n@Component({\n selector: 'ft-progress',\n templateUrl: './progress.component.html',\n styleUrls: ['./progress.component.scss']\n})\nexport class ProgressComponent implements OnInit {\n @Input()\n class: string = '';\n @Input()\n color!: string;\n @Input()\n mode: 'determinate' | 'indeterminate' = 'indeterminate';\n @Input()\n overlay: boolean = false;\n @Input()\n size!: number;\n @Input()\n value!: number;\n\n constructor() { }\n\n ngOnInit() {\n this.value = 0;\n }\n @HostBinding('class')\n get hostClasses(): string {\n return [\n 'ft-progress',\n this.overlay ? 'ft-progress--overlay' : '',\n this.class\n ].join(' ');\n }\n\n}\n","<svg [ngStyle]=\"{'--bar-color': color}\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 100 100\" preserveAspectRatio=\"xMidYMid\">\n <circle class=\"track\" cx=\"50\" cy=\"50\" r=\"40\" />\n <circle class=\"bar\" [ngClass]=\"mode\" cx=\"50\" cy=\"50\" r=\"40\"\n [ngStyle]=\"{'stroke-dashoffset': mode=='determinate'? 'calc((3.14159265 * 40 * 2 * (100 - '+value+')) / 100)' : null}\">\n </circle>\n</svg>","import { ComponentFactoryResolver, EmbeddedViewRef, Injector, Injectable, ComponentRef, ApplicationRef } from '@angular/core';\n\nimport { ProgressComponent } from './progress/progress.component';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class ProgressService {\n appRef!: ApplicationRef;\n componentRef!: ComponentRef<ProgressComponent> | null;\n domElem!: HTMLElement;\n\n constructor(\n private componentFactoryResolver: ComponentFactoryResolver,\n private injector: Injector\n ) { }\n\n show(): boolean {\n if (!this.componentRef) {\n this.appRef = this.injector.get(ApplicationRef);\n // 1. Create a component reference from the component \n this.componentRef = this.componentFactoryResolver\n .resolveComponentFactory(ProgressComponent)\n .create(this.injector);\n\n // 2. Attach component to the appRef so that it's inside the ng component tree\n this.appRef.attachView(this.componentRef.hostView);\n this.componentRef.instance.overlay = true;\n\n // 3. Get DOM element from component\n const domElem = (this.componentRef.hostView as EmbeddedViewRef<any>)\n .rootNodes[0] as HTMLElement;\n\n // 4. Append DOM element to the body\n document.body.appendChild(domElem);\n return true;\n } else {\n return false;\n }\n }\n hide(): boolean {\n if (this.componentRef) {\n this.appRef.detachView(this.componentRef.hostView);\n this.componentRef.destroy();\n this.componentRef = null;\n return true;\n } else {\n return false;\n }\n }\n}\n","import { Directive, EventEmitter, OnInit, Output, Input, ElementRef, Inject, PLATFORM_ID } from '@angular/core';\nimport { isPlatformBrowser } from '@angular/common';\n\ndeclare var window: any;\n@Directive({\n selector: '[ftObserveIntersecting]'\n})\nexport class ObserveIntersectingDirective implements OnInit {\n @Input('ftObserveIntersectingOptions')\n options!: { root: any, rootMargin: any, threshold: any };\n @Output('ftObserveIntersecting')\n event: EventEmitter<boolean> = new EventEmitter();\n\n constructor(\n private element: ElementRef,\n @Inject(PLATFORM_ID) private platformId: Object\n ) { }\n\n ngOnInit() {\n if (isPlatformBrowser(this.platformId)) {\n if (\"IntersectionObserver\" in window) {\n const elementObserver = new IntersectionObserver((entries, observer) => {\n entries.forEach((entry) => {\n this.event.emit(entry.isIntersecting);\n });\n }, this.options);\n elementObserver.observe(this.element.nativeElement);\n } else {\n console.error('ftObserveIntersecting not available in this browser.');\n }\n }\n }\n\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatDialogModule } from '@angular/material/dialog';\nimport { MatSnackBarModule } from '@angular/material/snack-bar';\n\nimport { AvatarComponent } from './avatar/avatar.component';\nimport { IconComponent } from './icon/icon.component';\nimport { ImageComponent } from './image/image.component';\nimport { ProgressComponent } from './progress/progress.component';\nimport { ObserveIntersectingDirective } from './observe-intersecting.directive';\nimport { MessageComponent } from './message/message.component';\nimport { ContentComponent } from './content/content.component';\n\n@NgModule({\n declarations: [\n AvatarComponent,\n IconComponent,\n ImageComponent,\n ProgressComponent,\n ObserveIntersectingDirective,\n MessageComponent,\n ContentComponent\n ],\n exports: [\n AvatarComponent,\n IconComponent,\n ImageComponent,\n ProgressComponent,\n ObserveIntersectingDirective,\n MessageComponent,\n ContentComponent\n ],\n imports: [\n CommonModule,\n MatButtonModule,\n MatDialogModule,\n MatSnackBarModule\n ]\n})\nexport class DisplayModule { }\n","import { Component, OnInit, forwardRef, Input } from '@angular/core';\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\n\n@Component({\n selector: 'ft-rating',\n templateUrl: './rating.component.html',\n styleUrls: ['./rating.component.scss'],\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => RatingComponent),\n multi: true\n }\n ]\n})\nexport class RatingComponent implements OnInit, ControlValueAccessor {\n disabled: boolean = false;\n hoverValue!: number;\n propagateChange = (_: any) => { };\n @Input()\n readOnly: boolean = false;\n stars: any[] = [\n { value: 1 },\n { value: 2 },\n { value: 3 },\n { value: 4 },\n { value: 5 }\n ];\n _value!: number;\n\n constructor() { }\n\n ngOnInit() {\n }\n get value() {\n return this._value;\n }\n @Input()\n set value(value: any) {\n this._value = value;\n this.propagateChange(this._value);\n }\n registerOnChange(fn: (_: any) => void) {\n this.propagateChange = fn;\n }\n registerOnTouched(fn: (_: any) => void) {\n //this.propagateChange = fn;\n }\n setDisabledState(isDisabled: boolean): void {\n this.disabled = isDisabled;\n }\n setRate(value: number, isHover?: boolean) {\n if (isHover) {\n this.hoverValue = value;\n } else {\n this.value = value;\n }\n }\n updateValue(event: any) {\n this.value = event.target.value;\n }\n writeValue(value: string) {\n this.value = value;\n }\n\n}\n","<ng-container *ngFor=\"let star of stars\">\n <ng-container *ngTemplateOutlet=\"!readOnly? buttonTemplate : starTemplate; context:{star:star}\"></ng-container>\n</ng-container>\n<ng-template #buttonTemplate let-star=\"star\">\n <button type=\"button\" *ngIf=\"!readOnly; else starTemplate\" [disabled]=\"disabled\" (mouseover)=\"setRate(star.value, true)\" (focus)=\"setRate(star.value, true)\" (blur)=\"setRate(0, true)\" (mouseout)=\"setRate(0, true)\" (click)=\"setRate(star.value)\">\n <ng-container *ngTemplateOutlet=\"starTemplate; context:{star:star}\"></ng-container>\n </button>\n</ng-template>\n<ng-template #starTemplate let-star=\"star\">\n <svg [ngClass]=\"{hover: hoverValue >= star.value, active: value >= star.value}\" viewBox=\"0 0 24 24\">\n <path d=\"M17.93 21.315c-.534.408-5.22-3.186-5.881-3.181-.663 0-5.307 3.656-5.846 3.254-.537-.403 1.29-6.165 1.081-6.822-.209-.656-4.972-4.138-4.772-4.796.201-.658 6.015-.627 6.55-1.036.533-.41 2.233-6.215 2.895-6.219.663 0 2.43 5.779 2.968 6.182.539.403 6.352.297 6.56.953.21.656-4.513 4.197-4.714 4.856-.2.658 1.692 6.398 1.159 6.808z\" />\n </svg>\n</ng-template>\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { RatingComponent } from './rating/rating.component';\n\n@NgModule({\n declarations: [\n RatingComponent\n ],\n exports: [\n RatingComponent\n ],\n imports: [\n CommonModule\n ]\n})\nexport class InputsModule { }\n","import { Component, EventEmitter, Output, Input, HostBinding } from '@angular/core';\nimport { Router } from '@angular/router';\n\nimport { Action } from '../../models/action';\n\n@Component({\n selector: 'ft-list',\n templateUrl: './list.component.html',\n styleUrls: ['./list.component.scss']\n})\nexport class ListComponent {\n @Output() change = new EventEmitter<Action>();\n @Input() iconCollection!: string;\n @Input() iconNameField: string = 'iconName';\n @Input() iconPath!: string;\n @Input() labelField: string = 'label';\n @Input() items!: Action[];\n\n @Input() class: string = '';\n @HostBinding('class') get hostClasses(): string {\n return [\n 'ft-list',\n this.class\n ].join(' ');\n };\n\n constructor(\n private router: Router\n ) { }\n\n getComponentType(item: Action): string {\n let type: string = 'text';\n if (!item.url || item.url.match(/^(http|https):\\/\\/(\\w+:{0,1}\\w*@)?(\\S+)(:[0-9]+)?(\\/|\\/([\\w#!:.?+=&%@!\\-\\/]))?/)) {\n type = 'button';\n } else {\n type = 'link';\n }\n return type;\n }\n setItem(item: Action): void {\n if (item.url) {\n if (item.url.match(/^(http|https):\\/\\/(\\w+:{0,1}\\w*@)?(\\S+)(:[0-9]+)?(\\/|\\/([\\w#!:.?+=&%@!\\-\\/]))?/)) {\n window.location.href = item.url;\n }\n } else if (item.click) {\n item.click();\n }\n }\n toggleCollapsible(action: Action): void {\n action.metadata = action.metadata || {};\n action.metadata.show = !action.metadata?.show;\n this.change.emit(action);\n }\n\n}\n\n","<ng-container *ngTemplateOutlet=\"switch; context: { children: items }\"></ng-container>\n<ng-template #switch let-children=\"children\" let-level=\"level\">\n <ng-container *ngFor=\"let item of children\" [ngSwitch]=\"item.type\">\n <ng-container *ngSwitchCase=\"'collapsible'\">\n <ng-container *ngTemplateOutlet=\"collapsible; context: { item: item }\"></ng-container>\n </ng-container>\n <ng-container *ngSwitchCase=\"'header'\">\n <ng-container *ngTemplateOutlet=\"header; context: { item: item }\"></ng-container>\n </ng-container>\n <ng-container *ngSwitchDefault>\n <ng-container *ngTemplateOutlet=\"action; context: { item: item }\"></ng-container>\n </ng-container>\n </ng-container>\n</ng-template>\n<ng-template #action let-item=\"item\">\n <ng-container [ngSwitch]=\"getComponentType(item)\">\n <button *ngSwitchCase=\"'button'\" type=\"button\" matRipple class=\"ft-list__item\" [ngClass]=\"item.class\"\n (click)=\"setItem(item)\">\n <ng-container *ngTemplateOutlet=\"text; context: { item: item }\"></ng-container>\n </button>\n <a *ngSwitchCase=\"'link'\" [routerLink]=\"item.url\" routerLinkActive=\"ft-active\" matRipple class=\"ft-list__item\"\n [ngClass]=\"item.class\" (click)=\"setItem(item)\">\n <ng-container *ngTemplateOutlet=\"text; context: { item: item }\"></ng-container>\n </a>\n </ng-container>\n</ng-template>\n<ng-template #collapsible let-item=\"item\">\n <button type=\"button\" matRipple class=\"ft-collapsible-header ft-list__item\"\n [ngClass]=\"{ 'ft-show': item.metadata?.show }\" (click)=\"toggleCollapsible(item)\">\n <div class=\"ft-item\">\n <ft-icon class=\"ft-item__icon\" *ngIf=\"item[iconNameField]\" [name]=\"item[iconNameField]\"\n [collection]=\"iconCollection\" [path]=\"iconPath\"></ft-icon>\n <div class=\"ft-item__label\">{{ item[labelField] }}</div>\n <ft-icon class=\"ft-item__toggle\" name=\"angle-right\" size=\"1\"></ft-icon>\n </div>\n </button>\n <div class=\"ft-collapsible\" [ngClass]=\"{ 'ft-show': item.metadata?.show }\" *ngIf=\"item.children\">\n <ng-container *ngTemplateOutlet=\"switch; context: { children: item.children }\"></ng-container>\n </div>\n</ng-template>\n<ng-template #header let-item=\"item\">\n <div class=\"ft-header\" [ngClass]=\"item.class\">\n {{ item[labelField] }}\n </div>\n</ng-template>\n<ng-template #text let-item=\"item\">\n <div class=\"ft-item\">\n <ft-icon class=\"ft-item__icon\" *ngIf=\"item[iconNameField]\" [name]=\"item[iconNameField]\" [collection]=\"iconCollection\"\n [path]=\"iconPath\"></ft-icon>\n <div class=\"ft-item__label\">{{ item[labelField] }}</div>\n </div>\n</ng-template>","import { Component, OnInit, Input, HostBinding } from '@angular/core';\nimport { Router } from '@angular/router';\nimport { Action } from '../../models/action';\n\n@Component({\n selector: 'ft-navbar',\n templateUrl: './navbar.component.html',\n styleUrls: ['./navbar.component.scss']\n})\nexport class NavbarComponent implements OnInit {\n @Input() iconCollection!: string;\n @Input() iconNameField: string = 'iconName';\n @Input() labelField: string = 'label';\n @Input() labelPlacement: 'top' | 'right' | 'bottom' | 'left' | 'auto' | 'none' = 'auto';\n @Input() items!: Action[];\n @Input() position: 'top' | 'right' | 'bottom' | 'left' | 'auto' = 'auto';\n\n @Input() class: string = '';\n @HostBinding('class') get hostClasses(): string {\n return [\n 'ft-navbar',\n this.class,\n this.position\n ].join(' ');\n };\n\n constructor(\n private router: Router\n ) { }\n\n ngOnInit() { }\n getComponentType(item: Action): string {\n let type: string = 'text';\n if (!item.url || item.url.match(/^(http|https):\\/\\/(\\w+:{0,1}\\w*@)?(\\S+)(:[0-9]+)?(\\/|\\/([\\w#!:.?+=&%@!\\-\\/]))?/)) {\n type = 'button';\n } else {\n type = 'link';\n }\n return type;\n }\n setItem(item: Action): void {\n if (item.url) {\n if (item.url.match(/^(http|https):\\/\\/(\\w+:{0,1}\\w*@)?(\\S+)(:[0-9]+)?(\\/|\\/([\\w#!:.?+=&%@!\\-\\/]))?/)) {\n window.location.href = item.url;\n }\n } else if (item.click) {\n item.click();\n }\n }\n toggleCollapsible(action: Action): void {\n action.metadata.show = !action.metadata.show;\n }\n trackByItem(index: number, item: Action): string {\n return `${item.label} ${item.url}`;\n }\n\n}\n","<ng-content select=\"[ftStart]\"></ng-content>\n<div class=\"list\" *ngIf=\"items\">\n <ng-container *ngFor=\"let item of items; trackBy: trackByItem\">\n <ng-container *ngTemplateOutlet=\"actionTemplate; context: { item: item }\"></ng-container>\n </ng-container>\n</div>\n<ng-content select=\"[ftEnd]\"></ng-content>\n<ng-template #actionTemplate let-item=\"item\">\n <ng-container [ngSwitch]=\"getComponentType(item)\">\n <button *ngSwitchCase=\"'button'\" type=\"button\" matRipple class=\"list__item\" [ngClass]=\"[labelPlacement, item.class || '' ]\" (click)=\"setItem(item)\">\n <ng-container *ngTemplateOutlet=\"textTemplate; context: { item: item }\"></ng-container>\n </button>\n <a *ngSwitchCase=\"'link'\" [routerLink]=\"item.url\" routerLinkActive=\"active\" matRipple class=\"list__item\" [ngClass]=\"[labelPlacement, item.class || '' ]\" (click)=\"setItem(item)\">\n <ng-container *ngTemplateOutlet=\"textTemplate; context: { item: item }\"></ng-container>\n </a>\n </ng-container>\n</ng-template>\n<ng-template #textTemplate let-item=\"item\">\n <div class=\"item\">\n <ft-icon class=\"item__icon\" *ngIf=\"item[iconNameField]\" [name]=\"item[iconNameField]\" [collection]=\"iconCollection\" [title]=\"labelPlacement === 'none' ? item[labelField] : '' \"></ft-icon>\n <div class=\"item__label\" *ngIf=\"labelPlacement !== 'none'\">{{ item[labelField] }}</div>\n </div>\n</ng-template>\n","import { Component, OnInit, ViewChild, ElementRef, forwardRef, Input, HostBinding, Output, EventEmitter } from '@angular/core';\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\n\n@Component({\n selector: 'ft-searchbox',\n templateUrl: './searchbox.component.html',\n styleUrls: ['./searchbox.component.scss'],\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => SearchboxComponent),\n multi: true\n }\n ]\n})\nexport class SearchboxComponent implements OnInit {\n /**\n * Clase o clases asignadas al componente\n */\n @ViewChild('input', { static: false })\n input!: ElementRef<any>;\n @ViewChild('inputPlaceholder', { static: false })\n inputPlaceholder!: ElementRef<any>;\n disabled!: boolean;\n private _value!: string;\n private shown!: boolean;\n @Input() placeholder!: string;\n @Output() execute = new EventEmitter<string>();\n @Output() showChange = new EventEmitter<boolean>();\n\n @Input() class: string = '';\n @HostBinding('class') get hostClasses(): string {\n return [\n 'ft-searchbox',\n this.class,\n this.shown ? 'show' : ''\n ].join(' ');\n };\n\n onChange = (_: any) => { };\n onTouched = (_: any) => { };\n @Input()\n set show(value: boolean) {\n this.shown = value;\n if (value) {\n setTimeout(() => {\n this.getNativeElement().focus();\n }, 300);\n }\n }\n @Input()\n set value(value: any) {\n this._value = value || '';\n this.getNativeElement().value = this._value;\n this.onChange(this._value);\n this.onTouched(this._value);\n }\n get value() {\n return this._value;\n }\n\n constructor() { }\n\n ngOnInit(): void {\n }\n closeSearch(): void {\n this.showChange.emit(false);\n }\n getNativeElement() {\n const input = this.placeholder ? this.inputPlaceholder : this.input;\n return input.nativeElement;\n }\n registerOnChange(fn: any): void {\n this.onChange = fn;\n }\n registerOnTouched(fn: any): void {\n this.onTouched = fn;\n }\n setDisabledState(isDisabled: boolean): void {\n this.disabled = isDisabled;\n }\n onSearch(event: SubmitEvent): void {\n event.preventDefault();\n this.getNativeElement().value = '';\n this.execute.emit(this._value);\n }\n updateValue(event: any): void {\n this.value = event.target.value;\n }\n writeValue(value: string): void {\n this.value = value;\n }\n\n}\n","<form (submit)=\"onSearch($event)\" class=\"container p-2 p-sm-3 pb-md-3 pt-md-5 px-md-3 px-lg-5\">\n <div class=\"d-flex align-items-center\">\n <button type=\"button\" mat-icon-button class=\"p-2 mr-2\" (click)=\"closeSearch()\">\n <ft-icon name=\"arrow-left\" size=\"2\"></ft-icon>\n </button>\n <input\n #input\n type=\"search\"\n matInput\n class=\"flex-grow-1\"\n i18n-placeholder\n placeholder=\"Search criteria\"\n [disabled]=\"disabled\"\n (change)=\"updateValue($event)\"\n (keyup)=\"updateValue($event)\"\n *ngIf=\"!placeholder\"\n />\n <input\n #inputPlaceholder\n type=\"search\"\n matInput\n class=\"flex-grow-1\"\n [placeholder]=\"placeholder\"\n [disabled]=\"disabled\"\n (change)=\"updateValue($event)\"\n (keyup)=\"updateValue($event)\"\n *ngIf=\"placeholder\"\n />\n <button type=\"submit\" mat-icon-button class=\"p-2 ml-2\">\n <ft-icon name=\"search\" size=\"2\"></ft-icon>\n </button>\n </div>\n </form>\n ","import { Component, OnInit, Input, HostBinding } from '@angular/core';\n\nimport { Action } from '../../models/action';\n\n@Component({\n selector: 'ft-toolbar',\n templateUrl: './toolbar.component.html',\n styleUrls: ['./toolbar.component.scss']\n})\nexport class ToolbarComponent implements OnInit {\n @Input() actionOptions!: Action[];\n @Input() currentTitleOption!: Action;\n @Input() title!: string;\n @Input() titleOptions!: Action[];\n overlapped!: boolean;\n rootMargin: any = { rootMargin: '0px 0px 0px 0px' };\n\n @Input() class: string = '';\n @HostBinding('class') get hostClasses(): string {\n return [\n 'ft-toolbar',\n this.class,\n this.overlapped ? 'overlapped' : ''\n ].join(' ');\n };\n\n constructor() {\n const breakpointSm = parseInt(getComputedStyle(document.documentElement).getPropertyValue('--breakpoint-sm'));\n if (window.innerWidth < breakpointSm) {\n this.rootMargin = { rootMargin: '0px 0px 0px 0px' };\n }\n }\n\n ngOnInit(): void {\n if (this.titleOptions && !this.currentTitleOption) {\n this.currentTitleOption = this.titleOptions[0];\n }\n }\n setOverlapped(overlapped: boolean): void {\n this.overlapped = !overlapped;\n }\n\n}\n","<div (ftObserveIntersecting)=\"setOverlapped($event)\" [ftObserveIntersectingOptions]=\"rootMargin\"></div>\n<div class=\"content\">\n <div class=\"container p-2 p-sm-3 pb-md-3 pt-md-5 px-md-3 px-lg-5\">\n <div class=\"d-flex align-items-center\">\n <h5 class=\"title ml-2 ml-md-0 mb-0 mr-auto\" *ngIf=\"!titleOptions; else titleForm\">{{ title }}</h5>\n <ng-container *ngFor=\"let option of actionOptions\">\n <button type=\"button\" class=\"p-2\" mat-button [ngClass]=\"option.class || ''\" *ngIf=\"!option.children\" (click)=\"option.click ? option.click($event) : null\" title=\"{{ option.label }}\">\n <div class=\"d-flex align-items-center\">\n <ft-icon *ngIf=\"option.iconName\" [name]=\"option.iconName\" size=\"2\"></ft-icon>\n <div *ngIf=\"option.label\" class=\"label d-none d-sm-inline-block ml-1\">{{ option.label }}</div>\n </div>\n </button>\n <ng-container *ngIf=\"option.children\">\n <button type=\"button\" class=\"p-2\" mat-button [matMenuTriggerFor]=\"menu\" [ngClass]=\"option.class || ''\" title=\"{{ option.label }}\">\n <div class=\"d-flex align-items-center\">\n <ft-icon *ngIf=\"option.iconName\" [name]=\"option.iconName\" size=\"2\"></ft-icon>\n <div *ngIf=\"option.label\" class=\"label d-none d-sm-inline-block ml-1\">{{ option.label }}</div>\n </div>\n </button>\n <mat-menu #menu=\"matMenu\">\n <button mat-menu-item *ngFor=\"let childOption of option.children\" (click)=\"childOption.click ? childOption.click($event): null\">{{ childOption.label }}</button>\n </mat-menu>\n </ng-container>\n </ng-container>\n </div>\n </div>\n</div>\n<ng-template #titleForm>\n <button type=\"button\" class=\"title p-2 pl-3 mr-auto\" mat-button [matMenuTriggerFor]=\"titleMenu\">\n <div class=\"d-flex align-items-center\">\n <div class=\"label mr-1\">{{ currentTitleOption.label }}</div>\n <ft-icon name=\"angle-down\" size=\"1\"></ft-icon>\n </div>\n </button>\n <mat-menu #titleMenu=\"matMenu\">\n <button class=\"mr-4\" mat-menu-item [disabled]=\"option == currentTitleOption\" *ngFor=\"let option of titleOptions\" (click)=\"currentTitleOption = option; option.click ? option.click($event) : null\">\n <div class=\"d-flex align-items-center\">\n <ft-icon [name]=\"option == currentTitleOption? 'check' : ''\" class=\"mr-1\"></ft-icon>\n <div>{{ option.label }}</div>\n </div>\n </button>\n </mat-menu>\n</ng-template>\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { MatMenuModule } from '@angular/material/menu';\nimport { MatButtonModule } from '@angular/material/button';\n\nimport { ListComponent } from './list/list.component';\nimport { NavbarComponent } from './navbar/navbar.component';\nimport { ToolbarComponent } from './toolbar/toolbar.component';\nimport { SearchboxComponent } from './searchbox/searchbox.component';\nimport { DisplayModule } from '../display/display.module';\nimport { RouterModule } from '@angular/router';\n\n@NgModule({\n declarations: [\n ListComponent,\n NavbarComponent,\n ToolbarComponent,\n SearchboxComponent\n ],\n exports: [\n ListComponent,\n NavbarComponent,\n ToolbarComponent,\n SearchboxComponent\n ],\n imports: [\n CommonModule,\n DisplayModule,\n RouterModule,\n MatMenuModule,\n MatButtonModule\n ]\n})\nexport class NavigationModule { }\n","import { CommonModule } from '@angular/common';\nimport { ModuleWithProviders, NgModule } from '@angular/core';\nimport { DisplayModule } from './display/display.module';\n\nimport { InputsModule } from './inputs/inputs.module';\nimport { ModuleConfiguration } from './models/module-configuration';\nimport { NavigationModule } from './navigation/navigation.module';\n\n@NgModule({\n declarations: [\n \n ],\n imports: [\n CommonModule,\n DisplayModule,\n InputsModule,\n NavigationModule\n ],\n exports: [\n DisplayModule,\n InputsModule,\n NavigationModule\n ]\n})\nexport class UiModule { \n public static forRoot(configuration?: ModuleConfiguration): ModuleWithProviders<UiModule> {\n return {\n ngModule: UiModule,\n providers: [\n { provide: 'FactorUiConfiguration', useValue: configuration }\n ]\n };\n }\n}\n","/*\n * Public API Surface of ui\n */\n\nexport * from './lib/display/avatar/avatar.component';\nexport * from './lib/display/icon/icon.component';\nexport * from './lib/display/image/image.component';\nexport * from './lib/display/content/content.component';\nexport * from './lib/display/message/message.component';\nexport * from './lib/display/message.service';\nexport * from './lib/display/progress/progress.component';\nexport * from './lib/display/progress.service';\nexport * from './lib/display/observe-intersecting.directive';\nexport * from './lib/display/display.module';\nexport * from './lib/inputs/rating/rating.component';\nexport * from './lib/inputs/inputs.module';\nexport * from './lib/navigation/list/list.component';\nexport * from './lib/navigation/navbar/navbar.component';\nexport * from './lib/navigation/searchbox/searchbox.component';\nexport * from './lib/navigation/toolbar/toolbar.component';\nexport * from './lib/navigation/navigation.module';\nexport * from './lib/ui.module';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["i2","i1","i2.IconComponent","i4.IconComponent","i3.IconComponent","i3","i3.ObserveIntersectingDirective","i5"],"mappings":"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"}
|
package/index.d.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ColorService } from '@factor_ec/utils';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AvatarComponent implements OnInit {
|
|
5
|
+
private colorService;
|
|
6
|
+
_label: string;
|
|
7
|
+
_src: string;
|
|
8
|
+
color: string;
|
|
9
|
+
initials: string;
|
|
10
|
+
loaded: boolean;
|
|
11
|
+
class: string;
|
|
12
|
+
set src(value: string | undefined);
|
|
13
|
+
set label(value: string);
|
|
14
|
+
get backgroundColor(): string;
|
|
15
|
+
get backgroundImage(): string;
|
|
16
|
+
get hostClasses(): string;
|
|
17
|
+
constructor(colorService: ColorService);
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
getInitials(value: string): string;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "ft-avatar", never, { "color": "color"; "class": "class"; "src": "src"; "label": "label"; }, {}, never, never, false>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ContentComponent {
|
|
3
|
+
data: any;
|
|
4
|
+
constructor(data: any);
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContentComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContentComponent, "lib-content", never, {}, {}, never, never, false>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./avatar/avatar.component";
|
|
3
|
+
import * as i2 from "./icon/icon.component";
|
|
4
|
+
import * as i3 from "./image/image.component";
|
|
5
|
+
import * as i4 from "./progress/progress.component";
|
|
6
|
+
import * as i5 from "./observe-intersecting.directive";
|
|
7
|
+
import * as i6 from "./message/message.component";
|
|
8
|
+
import * as i7 from "./content/content.component";
|
|
9
|
+
import * as i8 from "@angular/common";
|
|
10
|
+
import * as i9 from "@angular/material/button";
|
|
11
|
+
import * as i10 from "@angular/material/dialog";
|
|
12
|
+
import * as i11 from "@angular/material/snack-bar";
|
|
13
|
+
export declare class DisplayModule {
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DisplayModule, never>;
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DisplayModule, [typeof i1.AvatarComponent, typeof i2.IconComponent, typeof i3.ImageComponent, typeof i4.ProgressComponent, typeof i5.ObserveIntersectingDirective, typeof i6.MessageComponent, typeof i7.ContentComponent], [typeof i8.CommonModule, typeof i9.MatButtonModule, typeof i10.MatDialogModule, typeof i11.MatSnackBarModule], [typeof i1.AvatarComponent, typeof i2.IconComponent, typeof i3.ImageComponent, typeof i4.ProgressComponent, typeof i5.ObserveIntersectingDirective, typeof i6.MessageComponent, typeof i7.ContentComponent]>;
|
|
16
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DisplayModule>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { UiConfiguration } from '../../models/ui-configuration';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class IconComponent implements OnInit {
|
|
5
|
+
private configuration;
|
|
6
|
+
_collection: string;
|
|
7
|
+
_name: string;
|
|
8
|
+
_mode: 'inline' | 'external';
|
|
9
|
+
_path: string;
|
|
10
|
+
class: string;
|
|
11
|
+
set collection(collection: string);
|
|
12
|
+
set mode(mode: 'inline' | 'external');
|
|
13
|
+
set name(name: string);
|
|
14
|
+
set path(path: string);
|
|
15
|
+
size: string;
|
|
16
|
+
src: string;
|
|
17
|
+
url: string;
|
|
18
|
+
get hostClasses(): string;
|
|
19
|
+
constructor(configuration: UiConfiguration);
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
private update;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "ft-icon", never, { "class": "class"; "collection": "collection"; "mode": "mode"; "name": "name"; "path": "path"; "size": "size"; "src": "src"; }, {}, never, never, false>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { OnInit, ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ImageComponent implements OnInit {
|
|
4
|
+
private element;
|
|
5
|
+
class: string;
|
|
6
|
+
error: boolean;
|
|
7
|
+
loading: boolean;
|
|
8
|
+
src: string;
|
|
9
|
+
shown: boolean;
|
|
10
|
+
constructor(element: ElementRef);
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
get hostClasses(): string;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ImageComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ImageComponent, "ft-image", never, { "class": "class"; "src": "src"; }, {}, never, never, false>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MessageComponent implements OnInit {
|
|
4
|
+
data: any;
|
|
5
|
+
beforeSelect: EventEmitter<any>;
|
|
6
|
+
constructor(data: any);
|
|
7
|
+
ngOnInit(): void;
|
|
8
|
+
select(value: string): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MessageComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MessageComponent, "ft-message", never, {}, { "beforeSelect": "beforeSelect"; }, never, never, false>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Observable } from "rxjs";
|
|
2
|
+
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
3
|
+
import { MatDialog } from '@angular/material/dialog';
|
|
4
|
+
import { Content } from '../models/content';
|
|
5
|
+
import { MessageOptions } from '../models/message-options';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class MessageService {
|
|
8
|
+
private snackBar;
|
|
9
|
+
private dialog;
|
|
10
|
+
element: any;
|
|
11
|
+
constructor(snackBar: MatSnackBar, dialog: MatDialog);
|
|
12
|
+
show(message: string | Content, options?: MessageOptions): Observable<any>;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MessageService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MessageService>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { EventEmitter, OnInit, ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ObserveIntersectingDirective implements OnInit {
|
|
4
|
+
private element;
|
|
5
|
+
private platformId;
|
|
6
|
+
options: {
|
|
7
|
+
root: any;
|
|
8
|
+
rootMargin: any;
|
|
9
|
+
threshold: any;
|
|
10
|
+
};
|
|
11
|
+
event: EventEmitter<boolean>;
|
|
12
|
+
constructor(element: ElementRef, platformId: Object);
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ObserveIntersectingDirective, never>;
|
|
15
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ObserveIntersectingDirective, "[ftObserveIntersecting]", never, { "options": "ftObserveIntersectingOptions"; }, { "event": "ftObserveIntersecting"; }, never, never, false>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ProgressComponent implements OnInit {
|
|
4
|
+
class: string;
|
|
5
|
+
color: string;
|
|
6
|
+
mode: 'determinate' | 'indeterminate';
|
|
7
|
+
overlay: boolean;
|
|
8
|
+
size: number;
|
|
9
|
+
value: number;
|
|
10
|
+
constructor();
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
get hostClasses(): string;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressComponent, "ft-progress", never, { "class": "class"; "color": "color"; "mode": "mode"; "overlay": "overlay"; "size": "size"; "value": "value"; }, {}, never, never, false>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ComponentFactoryResolver, Injector, ComponentRef, ApplicationRef } from '@angular/core';
|
|
2
|
+
import { ProgressComponent } from './progress/progress.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ProgressService {
|
|
5
|
+
private componentFactoryResolver;
|
|
6
|
+
private injector;
|
|
7
|
+
appRef: ApplicationRef;
|
|
8
|
+
componentRef: ComponentRef<ProgressComponent> | null;
|
|
9
|
+
domElem: HTMLElement;
|
|
10
|
+
constructor(componentFactoryResolver: ComponentFactoryResolver, injector: Injector);
|
|
11
|
+
show(): boolean;
|
|
12
|
+
hide(): boolean;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProgressService>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./rating/rating.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class InputsModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputsModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<InputsModule, [typeof i1.RatingComponent], [typeof i2.CommonModule], [typeof i1.RatingComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<InputsModule>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class RatingComponent implements OnInit, ControlValueAccessor {
|
|
5
|
+
disabled: boolean;
|
|
6
|
+
hoverValue: number;
|
|
7
|
+
propagateChange: (_: any) => void;
|
|
8
|
+
readOnly: boolean;
|
|
9
|
+
stars: any[];
|
|
10
|
+
_value: number;
|
|
11
|
+
constructor();
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
get value(): any;
|
|
14
|
+
set value(value: any);
|
|
15
|
+
registerOnChange(fn: (_: any) => void): void;
|
|
16
|
+
registerOnTouched(fn: (_: any) => void): void;
|
|
17
|
+
setDisabledState(isDisabled: boolean): void;
|
|
18
|
+
setRate(value: number, isHover?: boolean): void;
|
|
19
|
+
updateValue(event: any): void;
|
|
20
|
+
writeValue(value: string): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RatingComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RatingComponent, "ft-rating", never, { "readOnly": "readOnly"; "value": "value"; }, {}, never, never, false>;
|
|
23
|
+
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { Action } from "./action";
|
|
2
2
|
import { Icon } from "./icon";
|
|
3
|
-
|
|
4
3
|
export interface MessageOptions {
|
|
5
4
|
type?: 'modal' | 'notification';
|
|
6
5
|
actions?: Action[];
|
|
@@ -11,4 +10,4 @@ export interface MessageOptions {
|
|
|
11
10
|
titleIcon?: Icon;
|
|
12
11
|
icon?: Icon;
|
|
13
12
|
width?: string;
|
|
14
|
-
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { Action } from '../../models/action';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ListComponent {
|
|
6
|
+
private router;
|
|
7
|
+
change: EventEmitter<Action>;
|
|
8
|
+
iconCollection: string;
|
|
9
|
+
iconNameField: string;
|
|
10
|
+
iconPath: string;
|
|
11
|
+
labelField: string;
|
|
12
|
+
items: Action[];
|
|
13
|
+
class: string;
|
|
14
|
+
get hostClasses(): string;
|
|
15
|
+
constructor(router: Router);
|
|
16
|
+
getComponentType(item: Action): string;
|
|
17
|
+
setItem(item: Action): void;
|
|
18
|
+
toggleCollapsible(action: Action): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ListComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent, "ft-list", never, { "iconCollection": "iconCollection"; "iconNameField": "iconNameField"; "iconPath": "iconPath"; "labelField": "labelField"; "items": "items"; "class": "class"; }, { "change": "change"; }, never, never, false>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { Action } from '../../models/action';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class NavbarComponent implements OnInit {
|
|
6
|
+
private router;
|
|
7
|
+
iconCollection: string;
|
|
8
|
+
iconNameField: string;
|
|
9
|
+
labelField: string;
|
|
10
|
+
labelPlacement: 'top' | 'right' | 'bottom' | 'left' | 'auto' | 'none';
|
|
11
|
+
items: Action[];
|
|
12
|
+
position: 'top' | 'right' | 'bottom' | 'left' | 'auto';
|
|
13
|
+
class: string;
|
|
14
|
+
get hostClasses(): string;
|
|
15
|
+
constructor(router: Router);
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
getComponentType(item: Action): string;
|
|
18
|
+
setItem(item: Action): void;
|
|
19
|
+
toggleCollapsible(action: Action): void;
|
|
20
|
+
trackByItem(index: number, item: Action): string;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NavbarComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavbarComponent, "ft-navbar", never, { "iconCollection": "iconCollection"; "iconNameField": "iconNameField"; "labelField": "labelField"; "labelPlacement": "labelPlacement"; "items": "items"; "position": "position"; "class": "class"; }, {}, never, ["[ftStart]", "[ftEnd]"], false>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./list/list.component";
|
|
3
|
+
import * as i2 from "./navbar/navbar.component";
|
|
4
|
+
import * as i3 from "./toolbar/toolbar.component";
|
|
5
|
+
import * as i4 from "./searchbox/searchbox.component";
|
|
6
|
+
import * as i5 from "@angular/common";
|
|
7
|
+
import * as i6 from "../display/display.module";
|
|
8
|
+
import * as i7 from "@angular/router";
|
|
9
|
+
import * as i8 from "@angular/material/menu";
|
|
10
|
+
import * as i9 from "@angular/material/button";
|
|
11
|
+
export declare class NavigationModule {
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NavigationModule, never>;
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NavigationModule, [typeof i1.ListComponent, typeof i2.NavbarComponent, typeof i3.ToolbarComponent, typeof i4.SearchboxComponent], [typeof i5.CommonModule, typeof i6.DisplayModule, typeof i7.RouterModule, typeof i8.MatMenuModule, typeof i9.MatButtonModule], [typeof i1.ListComponent, typeof i2.NavbarComponent, typeof i3.ToolbarComponent, typeof i4.SearchboxComponent]>;
|
|
14
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<NavigationModule>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { OnInit, ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SearchboxComponent implements OnInit {
|
|
4
|
+
/**
|
|
5
|
+
* Clase o clases asignadas al componente
|
|
6
|
+
*/
|
|
7
|
+
input: ElementRef<any>;
|
|
8
|
+
inputPlaceholder: ElementRef<any>;
|
|
9
|
+
disabled: boolean;
|
|
10
|
+
private _value;
|
|
11
|
+
private shown;
|
|
12
|
+
placeholder: string;
|
|
13
|
+
execute: EventEmitter<string>;
|
|
14
|
+
showChange: EventEmitter<boolean>;
|
|
15
|
+
class: string;
|
|
16
|
+
get hostClasses(): string;
|
|
17
|
+
onChange: (_: any) => void;
|
|
18
|
+
onTouched: (_: any) => void;
|
|
19
|
+
set show(value: boolean);
|
|
20
|
+
set value(value: any);
|
|
21
|
+
get value(): any;
|
|
22
|
+
constructor();
|
|
23
|
+
ngOnInit(): void;
|
|
24
|
+
closeSearch(): void;
|
|
25
|
+
getNativeElement(): any;
|
|
26
|
+
registerOnChange(fn: any): void;
|
|
27
|
+
registerOnTouched(fn: any): void;
|
|
28
|
+
setDisabledState(isDisabled: boolean): void;
|
|
29
|
+
onSearch(event: SubmitEvent): void;
|
|
30
|
+
updateValue(event: any): void;
|
|
31
|
+
writeValue(value: string): void;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SearchboxComponent, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SearchboxComponent, "ft-searchbox", never, { "placeholder": "placeholder"; "class": "class"; "show": "show"; "value": "value"; }, { "execute": "execute"; "showChange": "showChange"; }, never, never, false>;
|
|
34
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { Action } from '../../models/action';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ToolbarComponent implements OnInit {
|
|
5
|
+
actionOptions: Action[];
|
|
6
|
+
currentTitleOption: Action;
|
|
7
|
+
title: string;
|
|
8
|
+
titleOptions: Action[];
|
|
9
|
+
overlapped: boolean;
|
|
10
|
+
rootMargin: any;
|
|
11
|
+
class: string;
|
|
12
|
+
get hostClasses(): string;
|
|
13
|
+
constructor();
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
setOverlapped(overlapped: boolean): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToolbarComponent, "ft-toolbar", never, { "actionOptions": "actionOptions"; "currentTitleOption": "currentTitleOption"; "title": "title"; "titleOptions": "titleOptions"; "class": "class"; }, {}, never, never, false>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
+
import { ModuleConfiguration } from './models/module-configuration';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "@angular/common";
|
|
5
|
+
import * as i2 from "./display/display.module";
|
|
6
|
+
import * as i3 from "./inputs/inputs.module";
|
|
7
|
+
import * as i4 from "./navigation/navigation.module";
|
|
8
|
+
export declare class UiModule {
|
|
9
|
+
static forRoot(configuration?: ModuleConfiguration): ModuleWithProviders<UiModule>;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UiModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<UiModule, never, [typeof i1.CommonModule, typeof i2.DisplayModule, typeof i3.InputsModule, typeof i4.NavigationModule], [typeof i2.DisplayModule, typeof i3.InputsModule, typeof i4.NavigationModule]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<UiModule>;
|
|
13
|
+
}
|