{ "version": 3, "sources": ["libs/pos-shared/src/lib/components/pos2-numeric-input.component.ts"], "sourcesContent": ["import { Component, Input, Output, OnInit, EventEmitter, OnDestroy } from '@angular/core';\nimport { findByProperty } from '@proman/utils';\nimport { Subject } from '@proman/rxjs-common';\nimport { fromEvent } from '@proman/rxjs-common';\nimport { takeUntil } from '@proman/rxjs-common';\nimport { PromanButtonComponent } from '@proman/button';\nimport { CommonModule } from '@angular/common';\nimport { FlexLayoutModule } from 'ngx-flexible-layout';\n\nconst BUTTONS = [\n { name: '1', value: '1' },\n { name: '2', value: '2' },\n { name: '3', value: '3' },\n { name: '4', value: '4' },\n { name: '5', value: '5' },\n { name: '6', value: '6' },\n { name: '7', value: '7' },\n { name: '8', value: '8' },\n { name: '9', value: '9' },\n { icon: 'times', value: '-1' },\n { name: '0', value: '0' },\n];\n\n@Component({\n selector: 'pos2-numeric-input',\n standalone: true,\n imports: [\n CommonModule,\n FlexLayoutModule,\n PromanButtonComponent,\n ],\n providers: [],\n template: `\n