@amnex/ui-atoms 1.0.1 → 1.0.3
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/fesm2022/amnex-ui-atoms.mjs +36 -25
- package/fesm2022/amnex-ui-atoms.mjs.map +1 -1
- package/index.d.ts +9 -3
- package/package.json +1 -1
|
@@ -11,7 +11,7 @@ import Map from 'ol/Map';
|
|
|
11
11
|
import { fromLonLat } from 'ol/proj';
|
|
12
12
|
import { XYZ } from 'ol/source';
|
|
13
13
|
import VectorSource from 'ol/source/Vector';
|
|
14
|
-
import { Style, Icon } from 'ol/style';
|
|
14
|
+
import { Style, Text, Stroke, Fill, Icon } from 'ol/style';
|
|
15
15
|
|
|
16
16
|
class AmnexButton {
|
|
17
17
|
type = 'button';
|
|
@@ -238,32 +238,42 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
238
238
|
|
|
239
239
|
class AmnexMap {
|
|
240
240
|
mapElement;
|
|
241
|
-
|
|
242
|
-
lng = 72.5714;
|
|
241
|
+
locations = [];
|
|
243
242
|
zoom = 10;
|
|
244
243
|
height = '500px';
|
|
244
|
+
tittle = '';
|
|
245
245
|
map;
|
|
246
246
|
ngAfterViewInit() {
|
|
247
|
-
this.
|
|
247
|
+
if (this.locations.length > 0) {
|
|
248
|
+
this.initMap();
|
|
249
|
+
}
|
|
248
250
|
}
|
|
249
251
|
initMap() {
|
|
250
252
|
const container = this.mapElement.nativeElement;
|
|
251
|
-
const
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
253
|
+
const features = this.locations.map(loc => {
|
|
254
|
+
const feature = new Feature({
|
|
255
|
+
geometry: new Point(fromLonLat([loc.lng, loc.lat])),
|
|
256
|
+
name: loc.title
|
|
257
|
+
});
|
|
258
|
+
feature.setStyle(new Style({
|
|
259
|
+
image: new Icon({
|
|
260
|
+
anchor: [0.5, 1],
|
|
261
|
+
src: 'https://openlayers.org/en/latest/examples/data/icon.png',
|
|
262
|
+
scale: 0.8
|
|
263
|
+
}),
|
|
264
|
+
text: new Text({
|
|
265
|
+
text: loc.title,
|
|
266
|
+
font: 'bold 14px Arial, sans-serif',
|
|
267
|
+
fill: new Fill({ color: '#ffffff' }),
|
|
268
|
+
stroke: new Stroke({ color: '#000000', width: 3 }),
|
|
269
|
+
offsetY: -45,
|
|
270
|
+
textAlign: 'center'
|
|
271
|
+
})
|
|
272
|
+
}));
|
|
273
|
+
return feature;
|
|
266
274
|
});
|
|
275
|
+
const vectorSource = new VectorSource({ features });
|
|
276
|
+
const vectorLayer = new VectorLayer({ source: vectorSource });
|
|
267
277
|
this.map = new Map({
|
|
268
278
|
target: container,
|
|
269
279
|
layers: [
|
|
@@ -276,13 +286,13 @@ class AmnexMap {
|
|
|
276
286
|
vectorLayer
|
|
277
287
|
],
|
|
278
288
|
view: new View({
|
|
279
|
-
center: fromLonLat([this.lng, this.lat]),
|
|
289
|
+
center: fromLonLat([this.locations[0].lng, this.locations[0].lat]),
|
|
280
290
|
zoom: this.zoom,
|
|
281
291
|
}),
|
|
282
292
|
});
|
|
283
293
|
}
|
|
284
294
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AmnexMap, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
285
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: AmnexMap, isStandalone: true, selector: "amnex-map", inputs: {
|
|
295
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: AmnexMap, isStandalone: true, selector: "amnex-map", inputs: { locations: "locations", zoom: "zoom", height: "height", tittle: "tittle" }, viewQueries: [{ propertyName: "mapElement", first: true, predicate: ["mapElement"], descendants: true }], ngImport: i0, template: "\r\n\r\n<div #mapElement class=\"map-container\" [style.height]=\"height\"></div>\r\n \r\n", styles: [".map-container{width:100%;border-radius:12px;border:2px solid #ddd}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] });
|
|
286
296
|
}
|
|
287
297
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AmnexMap, decorators: [{
|
|
288
298
|
type: Component,
|
|
@@ -290,14 +300,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
290
300
|
}], propDecorators: { mapElement: [{
|
|
291
301
|
type: ViewChild,
|
|
292
302
|
args: ['mapElement']
|
|
293
|
-
}],
|
|
294
|
-
type: Input
|
|
295
|
-
|
|
296
|
-
type: Input
|
|
303
|
+
}], locations: [{
|
|
304
|
+
type: Input,
|
|
305
|
+
args: [{ required: true }]
|
|
297
306
|
}], zoom: [{
|
|
298
307
|
type: Input
|
|
299
308
|
}], height: [{
|
|
300
309
|
type: Input
|
|
310
|
+
}], tittle: [{
|
|
311
|
+
type: Input
|
|
301
312
|
}] } });
|
|
302
313
|
|
|
303
314
|
class AMNEX_COMPONENTS {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"amnex-ui-atoms.mjs","sources":["../../../../projects/amnex/ui-atoms/src/lib/amnex-button/amnex-button.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-button/amnex-button.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-file/amnex-file.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-file/amnex-file.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-form/amnex-form.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-form/amnex-form.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-input/amnex-input.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-input/amnex-input.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-label/amnex-label.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-label/amnex-label.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-h1/amnex-h1.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-h1/amnex-h1.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-h2/amnex-h2.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-h2/amnex-h2.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-h3/amnex-h3.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-h3/amnex-h3.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-h4/amnex-h4.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-h4/amnex-h4.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-h5/amnex-h5.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-h5/amnex-h5.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-h6/amnex-h6.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-h6/amnex-h6.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-p/amnex-p.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-p/amnex-p.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-radio/amnex-radio.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-radio/amnex-radio.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-select/amnex-select.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-select/amnex-select.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-textarea/amnex-textarea.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-textarea/amnex-textarea.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-map/amnex-map.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-map/amnex-map.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-components.ts","../../../../projects/amnex/ui-atoms/src/public-api.ts","../../../../projects/amnex/ui-atoms/src/amnex-ui-atoms.ts"],"sourcesContent":["import { Component ,Input,ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-button',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-button.html',\r\n styleUrl: './amnex-button.css',\r\n encapsulation: ViewEncapsulation.None,\r\n \r\n})\r\nexport class AmnexButton {\r\n\r\n\r\n @Input() type: 'button' | 'submit' | 'reset' = 'button';\r\n\r\n @Input() disabled: boolean = false;\r\n}\r\n","<button [disabled]=\"disabled\" [type]=\"type\"><ng-content></ng-content></button>","import { Component,forwardRef,Input, ViewEncapsulation ,Output,EventEmitter} from '@angular/core';\r\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\r\n\r\n@Component({\r\n selector: 'amnex-file',\r\n standalone:true,\r\n encapsulation: ViewEncapsulation.None,\r\n imports: [],\r\n templateUrl: './amnex-file.html',\r\n styleUrl: './amnex-file.css',\r\n providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AmnexFile ), multi: true }],\r\n\r\n})\r\nexport class AmnexFile {\r\n\r\n\r\n @Input() accept = '*'; // Kaunsi files allow karni hain (e.g. '.pdf,.png')\r\n @Output() fileSelected = new EventEmitter<File | FileList>();\r\n\r\n onFileChange(event: any) {\r\n const files = event.target.files;\r\n if (files.length > 0) {\r\n this.fileSelected.emit(files);\r\n }\r\n }\r\n}\r\n","<input \r\n type=\"file\" \r\n [accept]=\"accept\" \r\n (change)=\"onFileChange($event)\">","import { Component ,EventEmitter,Output,ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-form',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-form.html',\r\n styleUrl: './amnex-form.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexForm {\r\n\r\n @Output() ngSubmit = new EventEmitter<Event>();\r\n\r\n onSubmit(event: Event) {\r\n this.ngSubmit.emit(event);\r\n }\r\n}\r\n","<form (ngSubmit)=\"onSubmit($event)\" ngNativeValidate><ng-content></ng-content></form>","import { Component, forwardRef ,Input ,ViewEncapsulation } from '@angular/core';\r\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\r\n\r\n@Component({\r\n selector: 'amnex-input',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-input.html',\r\n styleUrl: './amnex-input.css',\r\n encapsulation: ViewEncapsulation.None,\r\n providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AmnexInput), multi: true }],\r\n})\r\nexport class AmnexInput implements ControlValueAccessor{\r\n @Input() type ='text';\r\n @Input() placeholder ='';\r\n\r\n value : any ='';\r\n onChange=(v:any)=>{};\r\n onTouched =()=>{};\r\n\r\n writeValue(val: any): void {\r\n this.value = val || '';\r\n }\r\n registerOnChange(fn: any): void {\r\n this.onChange = fn;\r\n }\r\n registerOnTouched(fn: any): void {\r\n this.onTouched = fn;\r\n }\r\n\r\n onInput(e:any){\r\n this.value= e.target.value;\r\n\r\n this.onChange(this.value);\r\n }\r\n\r\n\r\n}\r\n","<input [type]=\"type\" \r\n[placeholder]=\"placeholder\" \r\n[value]=\"value\" \r\n(input)=\"onInput($event)\" \r\n(blur)=\"onTouched()\">\r\n","import { Component , ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-label',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-label.html',\r\n styleUrl: './amnex-label.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexLabel {\r\n\r\n}\r\n","<label><ng-content></ng-content></label>","import { Component ,ViewEncapsulation} from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-h1',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-h1.html',\r\n styleUrl: './amnex-h1.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexH1 {\r\n\r\n}\r\n","<h1><ng-content></ng-content></h1>","import { Component ,ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-h2',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-h2.html',\r\n styleUrl: './amnex-h2.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexH2 {\r\n\r\n}\r\n","<h2> <ng-content></ng-content></h2>\r\n","import { Component , ViewEncapsulation} from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-h3',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-h3.html',\r\n styleUrl: './amnex-h3.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexH3 {\r\n\r\n}\r\n","<h3><ng-content></ng-content></h3>\r\n","import { Component ,ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-h4',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-h4.html',\r\n styleUrl: './amnex-h4.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexH4 {\r\n\r\n}\r\n","<h4><ng-content></ng-content></h4>","import { Component ,ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-h5',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-h5.html',\r\n styleUrl: './amnex-h5.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexH5 {\r\n\r\n}\r\n","<h5><ng-content></ng-content></h5>\r\n","import { Component ,ViewEncapsulation} from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-h6',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-h6.html',\r\n styleUrl: './amnex-h6.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexH6 {\r\n\r\n}\r\n","<h6><ng-content></ng-content></h6>","import { Component ,ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-p',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-p.html',\r\n styleUrl: './amnex-p.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexP {\r\n\r\n}\r\n","<p><ng-content></ng-content></p>","import { CommonModule } from '@angular/common';\r\nimport { Component ,forwardRef,Input ,ViewEncapsulation } from '@angular/core';\r\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\r\n\r\n@Component({\r\n selector: 'amnex-radio',\r\n standalone:true,\r\n imports: [CommonModule],\r\n encapsulation: ViewEncapsulation.None,\r\n templateUrl: './amnex-radio.html',\r\n styleUrl: './amnex-radio.css',\r\n providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AmnexRadio), multi: true }],\r\n\r\n})\r\nexport class AmnexRadio implements ControlValueAccessor{\r\n @Input() options: {label: string, value: any}[] = [];\r\n @Input() name = 'radio-group';\r\n value: any;\r\n onChange = (v: any) => {};\r\n onTouched = () => {};\r\n writeValue(v: any) { this.value = v; }\r\n registerOnChange(fn: any) { this.onChange = fn; }\r\n registerOnTouched(fn: any) { this.onTouched = fn; }\r\n onInput(val: any) { this.value = val; this.onChange(val); }\r\n}\r\n","<div *ngFor=\"let opt of options\">\r\n <input type=\"radio\" [name]=\"name\" [value]=\"opt.value\" [checked]=\"value === opt.value\" (change)=\"onInput(opt.value)\">\r\n <span>{{opt.label}}</span>\r\n </div>","import { CommonModule } from '@angular/common';\r\nimport { Component ,forwardRef,Input ,ViewEncapsulation } from '@angular/core';\r\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\r\n\r\n@Component({\r\n selector: 'amnex-select',\r\n standalone:true,\r\n imports: [CommonModule],\r\n templateUrl: './amnex-select.html',\r\n styleUrl: './amnex-select.css',\r\n encapsulation: ViewEncapsulation.None,\r\n providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AmnexSelect), multi: true }],\r\n})\r\nexport class AmnexSelect implements ControlValueAccessor\r\n{\r\n @Input() options: {label: string, value: any}[] = [];\r\n @Input() placeholder = 'Select';\r\n value: any = '';\r\n onChange = (v: any) => {};\r\n onTouched = () => {};\r\n writeValue(v: any) { this.value = v; }\r\n registerOnChange(fn: any) { this.onChange = fn; }\r\n registerOnTouched(fn: any) { this.onTouched = fn; }\r\n onInput(e: any) { this.value = e.target.value; this.onChange(this.value);\r\n }\r\n\r\n}\r\n","<select\r\n [value]=\"value\"\r\n (change)=\"onInput($event)\" \r\n (blur)=\"onTouched()\">\r\n<option value=\"\" disabled>{{placeholder}}</option>\r\n<option *ngFor=\"let opt of options\" [value]=\"opt.value\">{{opt.label}}</select>\r\n","import { Component ,forwardRef,Input ,ViewEncapsulation} from '@angular/core';\r\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\r\n\r\n@Component({\r\n selector: 'amnex-textarea',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-textarea.html',\r\n styleUrl: './amnex-textarea.css',\r\n encapsulation: ViewEncapsulation.None,\r\n providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AmnexTextarea), multi: true }],\r\n})\r\nexport class AmnexTextarea implements ControlValueAccessor {\r\n @Input() placeholder = '';\r\n value: any = '';\r\n\r\n onChange = (v: any) => {};\r\n onTouched = () => {};\r\n\r\n writeValue(val: any): void { this.value = val || ''; }\r\n registerOnChange(fn: any): void { this.onChange = fn; }\r\n registerOnTouched(fn: any): void { this.onTouched = fn; }\r\n\r\n onInput(e: any) {\r\n this.value = e.target.value;\r\n this.onChange(this.value);\r\n }\r\n \r\n\r\n}\r\n","<textarea \r\n [placeholder]=\"placeholder\" \r\n [value]=\"value\" \r\n (input)=\"onInput($event)\" \r\n (blur)=\"onTouched()\">\r\n </textarea>","import { CommonModule } from '@angular/common';\r\nimport { AfterViewInit, Component, ElementRef, Input, ViewChild } from '@angular/core';\r\nimport { Feature, View } from 'ol';\r\nimport { Point } from 'ol/geom';\r\nimport TileLayer from 'ol/layer/Tile';\r\nimport VectorLayer from 'ol/layer/Vector';\r\nimport Map from 'ol/Map';\r\nimport { fromLonLat } from 'ol/proj';\r\nimport { XYZ } from 'ol/source';\r\nimport VectorSource from 'ol/source/Vector';\r\nimport { Icon, Style } from 'ol/style';\r\n\r\n@Component({\r\n selector: 'amnex-map',\r\n standalone:true,\r\n imports: [CommonModule],\r\n templateUrl: './amnex-map.html',\r\n styleUrl: './amnex-map.css',\r\n})\r\nexport class AmnexMap implements AfterViewInit{\r\n\r\n @ViewChild('mapElement') mapElement!: ElementRef;\r\n\r\n @Input() lat: number = 23.0225; \r\n @Input() lng: number = 72.5714;\r\n @Input() zoom: number = 10;\r\n @Input() height: string = '500px';\r\n\r\n\r\n public map!: Map;\r\n\r\n \r\n ngAfterViewInit(): void {\r\n this.initMap();\r\n }\r\n\r\n\r\n private initMap(): void{\r\n const container = this.mapElement.nativeElement;\r\n\r\n const marker = new Feature({\r\n geometry : new Point(fromLonLat([this.lng,this.lat])),\r\n });\r\n\r\n marker.setStyle (new Style({\r\n image : new Icon({\r\n anchor: [0.8, 1], \r\n src: 'https://openlayers.org/en/latest/examples/data/icon.png', \r\n scale: 1,\r\n \r\n })\r\n }));\r\n\r\n const vectorSource = new VectorSource({\r\n features: [marker]\r\n });\r\n\r\n const vectorLayer = new VectorLayer({\r\n source : vectorSource\r\n });\r\n\r\n this.map = new Map({\r\n target: container,\r\n layers: [\r\n \r\n new TileLayer({\r\n source: new XYZ({\r\n url: 'https://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}',\r\n maxZoom: 19\r\n }),\r\n }),\r\n \r\n vectorLayer\r\n ],\r\n view: new View({\r\n center: fromLonLat([this.lng, this.lat]),\r\n zoom: this.zoom,\r\n }),\r\n });\r\n\r\n }\r\n}\r\n","\r\n\r\n<div #mapElement class=\"map-container\" [style.height]=\"height\"></div>\r\n \r\n","import { AmnexH1 } from \"./amnex-h1/amnex-h1\";\r\nimport { AmnexH2 } from \"./amnex-h2/amnex-h2\";\r\nimport { AmnexH3 } from \"./amnex-h3/amnex-h3\";\r\nimport { AmnexH4 } from \"./amnex-h4/amnex-h4\";\r\nimport {AmnexH5} from \"./amnex-h5/amnex-h5\";\r\nimport { AmnexH6 } from \"./amnex-h6/amnex-h6\";\r\nimport { AmnexInput } from \"./amnex-input/amnex-input\";\r\nimport { AmnexLabel } from \"./amnex-label/amnex-label\";\r\nimport { AmnexP } from \"./amnex-p/amnex-p\";\r\nimport { AmnexButton } from \"./amnex-button/amnex-button\";\r\nimport { AmnexRadio } from \"./amnex-radio/amnex-radio\";\r\nimport { AmnexSelect } from \"./amnex-select/amnex-select\";\r\nimport { AmnexTextarea } from \"./amnex-textarea/amnex-textarea\";\r\nimport { AmnexFile } from \"./amnex-file/amnex-file\";\r\nimport { AmnexForm } from \"./amnex-form/amnex-form\";\r\nimport { NgModule } from \"@angular/core\";\r\nimport { CommonModule } from \"@angular/common\";\r\nimport { AmnexMap } from \"./amnex-map/amnex-map\";\r\n\r\n\r\n\r\n\r\n@NgModule({\r\n imports: [\r\n CommonModule,\r\n AmnexInput,\r\n AmnexButton,\r\n AmnexRadio,\r\n AmnexSelect,\r\n AmnexTextarea,\r\n AmnexFile,\r\n AmnexForm,\r\n AmnexH1,\r\n AmnexH6,\r\n AmnexP,\r\n AmnexLabel,\r\n AmnexMap\r\n ],\r\n exports: [\r\n AmnexInput,\r\n AmnexButton,\r\n AmnexRadio,\r\n AmnexSelect,\r\n AmnexTextarea,\r\n AmnexFile,\r\n AmnexForm,\r\n AmnexH1,\r\n AmnexH6,\r\n AmnexP,\r\n AmnexLabel,\r\n AmnexMap\r\n ]\r\n})\r\n\r\nexport class AMNEX_COMPONENTS {}\r\n","/*\r\n * Public API Surface of ui-atoms\r\n */\r\nexport * from './lib/amnex-button/amnex-button';\r\nexport * from './lib/amnex-file/amnex-file';\r\nexport * from './lib/amnex-form/amnex-form';\r\nexport * from './lib/amnex-input/amnex-input';\r\nexport * from './lib/amnex-label/amnex-label';\r\nexport * from './lib/amnex-h1/amnex-h1';\r\nexport * from './lib/amnex-h2/amnex-h2';\r\nexport * from './lib/amnex-h3/amnex-h3';\r\nexport * from './lib/amnex-h4/amnex-h4';\r\nexport * from './lib/amnex-h5/amnex-h5';\r\nexport * from './lib/amnex-h6/amnex-h6';\r\nexport * from './lib/amnex-p/amnex-p';\r\nexport * from './lib/amnex-radio/amnex-radio';\r\nexport * from './lib/amnex-select/amnex-select';\r\nexport * from './lib/amnex-textarea/amnex-textarea';\r\nexport * from './lib/amnex-map/amnex-map';\r\nexport * from './lib/amnex-components';\r\n\r\n\r\n\r\n\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"amnex-ui-atoms.mjs","sources":["../../../../projects/amnex/ui-atoms/src/lib/amnex-button/amnex-button.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-button/amnex-button.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-file/amnex-file.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-file/amnex-file.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-form/amnex-form.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-form/amnex-form.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-input/amnex-input.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-input/amnex-input.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-label/amnex-label.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-label/amnex-label.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-h1/amnex-h1.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-h1/amnex-h1.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-h2/amnex-h2.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-h2/amnex-h2.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-h3/amnex-h3.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-h3/amnex-h3.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-h4/amnex-h4.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-h4/amnex-h4.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-h5/amnex-h5.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-h5/amnex-h5.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-h6/amnex-h6.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-h6/amnex-h6.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-p/amnex-p.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-p/amnex-p.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-radio/amnex-radio.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-radio/amnex-radio.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-select/amnex-select.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-select/amnex-select.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-textarea/amnex-textarea.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-textarea/amnex-textarea.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-map/amnex-map.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-map/amnex-map.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-components.ts","../../../../projects/amnex/ui-atoms/src/public-api.ts","../../../../projects/amnex/ui-atoms/src/amnex-ui-atoms.ts"],"sourcesContent":["import { Component ,Input,ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-button',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-button.html',\r\n styleUrl: './amnex-button.css',\r\n encapsulation: ViewEncapsulation.None,\r\n \r\n})\r\nexport class AmnexButton {\r\n\r\n\r\n @Input() type: 'button' | 'submit' | 'reset' = 'button';\r\n\r\n @Input() disabled: boolean = false;\r\n}\r\n","<button [disabled]=\"disabled\" [type]=\"type\"><ng-content></ng-content></button>","import { Component,forwardRef,Input, ViewEncapsulation ,Output,EventEmitter} from '@angular/core';\r\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\r\n\r\n@Component({\r\n selector: 'amnex-file',\r\n standalone:true,\r\n encapsulation: ViewEncapsulation.None,\r\n imports: [],\r\n templateUrl: './amnex-file.html',\r\n styleUrl: './amnex-file.css',\r\n providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AmnexFile ), multi: true }],\r\n\r\n})\r\nexport class AmnexFile {\r\n\r\n\r\n @Input() accept = '*'; // Kaunsi files allow karni hain (e.g. '.pdf,.png')\r\n @Output() fileSelected = new EventEmitter<File | FileList>();\r\n\r\n onFileChange(event: any) {\r\n const files = event.target.files;\r\n if (files.length > 0) {\r\n this.fileSelected.emit(files);\r\n }\r\n }\r\n}\r\n","<input \r\n type=\"file\" \r\n [accept]=\"accept\" \r\n (change)=\"onFileChange($event)\">","import { Component ,EventEmitter,Output,ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-form',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-form.html',\r\n styleUrl: './amnex-form.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexForm {\r\n\r\n @Output() ngSubmit = new EventEmitter<Event>();\r\n\r\n onSubmit(event: Event) {\r\n this.ngSubmit.emit(event);\r\n }\r\n}\r\n","<form (ngSubmit)=\"onSubmit($event)\" ngNativeValidate><ng-content></ng-content></form>","import { Component, forwardRef ,Input ,ViewEncapsulation } from '@angular/core';\r\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\r\n\r\n@Component({\r\n selector: 'amnex-input',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-input.html',\r\n styleUrl: './amnex-input.css',\r\n encapsulation: ViewEncapsulation.None,\r\n providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AmnexInput), multi: true }],\r\n})\r\nexport class AmnexInput implements ControlValueAccessor{\r\n @Input() type ='text';\r\n @Input() placeholder ='';\r\n\r\n value : any ='';\r\n onChange=(v:any)=>{};\r\n onTouched =()=>{};\r\n\r\n writeValue(val: any): void {\r\n this.value = val || '';\r\n }\r\n registerOnChange(fn: any): void {\r\n this.onChange = fn;\r\n }\r\n registerOnTouched(fn: any): void {\r\n this.onTouched = fn;\r\n }\r\n\r\n onInput(e:any){\r\n this.value= e.target.value;\r\n\r\n this.onChange(this.value);\r\n }\r\n\r\n\r\n}\r\n","<input [type]=\"type\" \r\n[placeholder]=\"placeholder\" \r\n[value]=\"value\" \r\n(input)=\"onInput($event)\" \r\n(blur)=\"onTouched()\">\r\n","import { Component , ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-label',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-label.html',\r\n styleUrl: './amnex-label.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexLabel {\r\n\r\n}\r\n","<label><ng-content></ng-content></label>","import { Component ,ViewEncapsulation} from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-h1',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-h1.html',\r\n styleUrl: './amnex-h1.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexH1 {\r\n\r\n}\r\n","<h1><ng-content></ng-content></h1>","import { Component ,ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-h2',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-h2.html',\r\n styleUrl: './amnex-h2.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexH2 {\r\n\r\n}\r\n","<h2> <ng-content></ng-content></h2>\r\n","import { Component , ViewEncapsulation} from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-h3',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-h3.html',\r\n styleUrl: './amnex-h3.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexH3 {\r\n\r\n}\r\n","<h3><ng-content></ng-content></h3>\r\n","import { Component ,ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-h4',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-h4.html',\r\n styleUrl: './amnex-h4.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexH4 {\r\n\r\n}\r\n","<h4><ng-content></ng-content></h4>","import { Component ,ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-h5',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-h5.html',\r\n styleUrl: './amnex-h5.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexH5 {\r\n\r\n}\r\n","<h5><ng-content></ng-content></h5>\r\n","import { Component ,ViewEncapsulation} from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-h6',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-h6.html',\r\n styleUrl: './amnex-h6.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexH6 {\r\n\r\n}\r\n","<h6><ng-content></ng-content></h6>","import { Component ,ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-p',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-p.html',\r\n styleUrl: './amnex-p.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexP {\r\n\r\n}\r\n","<p><ng-content></ng-content></p>","import { CommonModule } from '@angular/common';\r\nimport { Component ,forwardRef,Input ,ViewEncapsulation } from '@angular/core';\r\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\r\n\r\n@Component({\r\n selector: 'amnex-radio',\r\n standalone:true,\r\n imports: [CommonModule],\r\n encapsulation: ViewEncapsulation.None,\r\n templateUrl: './amnex-radio.html',\r\n styleUrl: './amnex-radio.css',\r\n providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AmnexRadio), multi: true }],\r\n\r\n})\r\nexport class AmnexRadio implements ControlValueAccessor{\r\n @Input() options: {label: string, value: any}[] = [];\r\n @Input() name = 'radio-group';\r\n value: any;\r\n onChange = (v: any) => {};\r\n onTouched = () => {};\r\n writeValue(v: any) { this.value = v; }\r\n registerOnChange(fn: any) { this.onChange = fn; }\r\n registerOnTouched(fn: any) { this.onTouched = fn; }\r\n onInput(val: any) { this.value = val; this.onChange(val); }\r\n}\r\n","<div *ngFor=\"let opt of options\">\r\n <input type=\"radio\" [name]=\"name\" [value]=\"opt.value\" [checked]=\"value === opt.value\" (change)=\"onInput(opt.value)\">\r\n <span>{{opt.label}}</span>\r\n </div>","import { CommonModule } from '@angular/common';\r\nimport { Component ,forwardRef,Input ,ViewEncapsulation } from '@angular/core';\r\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\r\n\r\n@Component({\r\n selector: 'amnex-select',\r\n standalone:true,\r\n imports: [CommonModule],\r\n templateUrl: './amnex-select.html',\r\n styleUrl: './amnex-select.css',\r\n encapsulation: ViewEncapsulation.None,\r\n providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AmnexSelect), multi: true }],\r\n})\r\nexport class AmnexSelect implements ControlValueAccessor\r\n{\r\n @Input() options: {label: string, value: any}[] = [];\r\n @Input() placeholder = 'Select';\r\n value: any = '';\r\n onChange = (v: any) => {};\r\n onTouched = () => {};\r\n writeValue(v: any) { this.value = v; }\r\n registerOnChange(fn: any) { this.onChange = fn; }\r\n registerOnTouched(fn: any) { this.onTouched = fn; }\r\n onInput(e: any) { this.value = e.target.value; this.onChange(this.value);\r\n }\r\n\r\n}\r\n","<select\r\n [value]=\"value\"\r\n (change)=\"onInput($event)\" \r\n (blur)=\"onTouched()\">\r\n<option value=\"\" disabled>{{placeholder}}</option>\r\n<option *ngFor=\"let opt of options\" [value]=\"opt.value\">{{opt.label}}</select>\r\n","import { Component ,forwardRef,Input ,ViewEncapsulation} from '@angular/core';\r\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\r\n\r\n@Component({\r\n selector: 'amnex-textarea',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-textarea.html',\r\n styleUrl: './amnex-textarea.css',\r\n encapsulation: ViewEncapsulation.None,\r\n providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AmnexTextarea), multi: true }],\r\n})\r\nexport class AmnexTextarea implements ControlValueAccessor {\r\n @Input() placeholder = '';\r\n value: any = '';\r\n\r\n onChange = (v: any) => {};\r\n onTouched = () => {};\r\n\r\n writeValue(val: any): void { this.value = val || ''; }\r\n registerOnChange(fn: any): void { this.onChange = fn; }\r\n registerOnTouched(fn: any): void { this.onTouched = fn; }\r\n\r\n onInput(e: any) {\r\n this.value = e.target.value;\r\n this.onChange(this.value);\r\n }\r\n \r\n\r\n}\r\n","<textarea \r\n [placeholder]=\"placeholder\" \r\n [value]=\"value\" \r\n (input)=\"onInput($event)\" \r\n (blur)=\"onTouched()\">\r\n </textarea>","import { CommonModule } from '@angular/common';\r\nimport { AfterViewInit, Component, ElementRef, Input, ViewChild } from '@angular/core';\r\nimport { Feature, View } from 'ol';\r\nimport { Point } from 'ol/geom';\r\nimport TileLayer from 'ol/layer/Tile';\r\nimport VectorLayer from 'ol/layer/Vector';\r\nimport Map from 'ol/Map';\r\nimport { fromLonLat } from 'ol/proj';\r\nimport { XYZ } from 'ol/source';\r\nimport VectorSource from 'ol/source/Vector';\r\nimport { Fill, Icon, Stroke, Style , Text } from 'ol/style';\r\n\r\n\r\nexport interface MapLocation {\r\n lat: number;\r\n lng: number;\r\n title?: string;\r\n}\r\n@Component({\r\n selector: 'amnex-map',\r\n standalone:true,\r\n imports: [CommonModule],\r\n templateUrl: './amnex-map.html',\r\n styleUrl: './amnex-map.css',\r\n})\r\nexport class AmnexMap implements AfterViewInit{\r\n\r\n @ViewChild('mapElement') mapElement!: ElementRef;\r\n\r\n @Input({required :true}) locations : MapLocation[]=[];\r\n @Input() zoom: number = 10;\r\n @Input() height: string = '500px';\r\n @Input() tittle: string ='';\r\n\r\n\r\n public map!: Map;\r\n\r\n \r\n ngAfterViewInit(): void {\r\n if(this.locations.length >0){\r\n this.initMap();\r\n }\r\n }\r\n\r\n\r\n private initMap(): void{\r\n const container = this.mapElement.nativeElement;\r\n\r\n const features = this.locations.map(loc =>{\r\n const feature = new Feature({\r\n geometry: new Point(fromLonLat([loc.lng, loc.lat])),\r\n name: loc.title\r\n });\r\n\r\n\r\n feature.setStyle(new Style({\r\n image: new Icon({\r\n anchor: [0.5, 1],\r\n src: 'https://openlayers.org/en/latest/examples/data/icon.png',\r\n scale: 0.8\r\n }),\r\n text: new Text({\r\n text: loc.title, \r\n font: 'bold 14px Arial, sans-serif',\r\n fill: new Fill({ color: '#ffffff' }), \r\n stroke: new Stroke({ color: '#000000', width: 3 }), \r\n offsetY: -45, \r\n textAlign: 'center'\r\n })\r\n\r\n \r\n\r\n }));\r\n return feature;\r\n });\r\n\r\n\r\n const vectorSource = new VectorSource({ features });\r\n const vectorLayer = new VectorLayer({ source: vectorSource });\r\n\r\n this.map = new Map({\r\n target: container,\r\n layers: [\r\n new TileLayer({\r\n source: new XYZ({\r\n url: 'https://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}',\r\n maxZoom: 19\r\n }),\r\n }),\r\n vectorLayer\r\n ],\r\n view: new View({\r\n center: fromLonLat([this.locations[0].lng, this.locations[0].lat]),\r\n zoom: this.zoom,\r\n }),\r\n });\r\n }\r\n}","\r\n\r\n<div #mapElement class=\"map-container\" [style.height]=\"height\"></div>\r\n \r\n","import { AmnexH1 } from \"./amnex-h1/amnex-h1\";\r\nimport { AmnexH2 } from \"./amnex-h2/amnex-h2\";\r\nimport { AmnexH3 } from \"./amnex-h3/amnex-h3\";\r\nimport { AmnexH4 } from \"./amnex-h4/amnex-h4\";\r\nimport {AmnexH5} from \"./amnex-h5/amnex-h5\";\r\nimport { AmnexH6 } from \"./amnex-h6/amnex-h6\";\r\nimport { AmnexInput } from \"./amnex-input/amnex-input\";\r\nimport { AmnexLabel } from \"./amnex-label/amnex-label\";\r\nimport { AmnexP } from \"./amnex-p/amnex-p\";\r\nimport { AmnexButton } from \"./amnex-button/amnex-button\";\r\nimport { AmnexRadio } from \"./amnex-radio/amnex-radio\";\r\nimport { AmnexSelect } from \"./amnex-select/amnex-select\";\r\nimport { AmnexTextarea } from \"./amnex-textarea/amnex-textarea\";\r\nimport { AmnexFile } from \"./amnex-file/amnex-file\";\r\nimport { AmnexForm } from \"./amnex-form/amnex-form\";\r\nimport { NgModule } from \"@angular/core\";\r\nimport { CommonModule } from \"@angular/common\";\r\nimport { AmnexMap } from \"./amnex-map/amnex-map\";\r\n\r\n\r\n\r\n\r\n@NgModule({\r\n imports: [\r\n CommonModule,\r\n AmnexInput,\r\n AmnexButton,\r\n AmnexRadio,\r\n AmnexSelect,\r\n AmnexTextarea,\r\n AmnexFile,\r\n AmnexForm,\r\n AmnexH1,\r\n AmnexH6,\r\n AmnexP,\r\n AmnexLabel,\r\n AmnexMap\r\n ],\r\n exports: [\r\n AmnexInput,\r\n AmnexButton,\r\n AmnexRadio,\r\n AmnexSelect,\r\n AmnexTextarea,\r\n AmnexFile,\r\n AmnexForm,\r\n AmnexH1,\r\n AmnexH6,\r\n AmnexP,\r\n AmnexLabel,\r\n AmnexMap\r\n ]\r\n})\r\n\r\nexport class AMNEX_COMPONENTS {}\r\n","/*\r\n * Public API Surface of ui-atoms\r\n */\r\nexport * from './lib/amnex-button/amnex-button';\r\nexport * from './lib/amnex-file/amnex-file';\r\nexport * from './lib/amnex-form/amnex-form';\r\nexport * from './lib/amnex-input/amnex-input';\r\nexport * from './lib/amnex-label/amnex-label';\r\nexport * from './lib/amnex-h1/amnex-h1';\r\nexport * from './lib/amnex-h2/amnex-h2';\r\nexport * from './lib/amnex-h3/amnex-h3';\r\nexport * from './lib/amnex-h4/amnex-h4';\r\nexport * from './lib/amnex-h5/amnex-h5';\r\nexport * from './lib/amnex-h6/amnex-h6';\r\nexport * from './lib/amnex-p/amnex-p';\r\nexport * from './lib/amnex-radio/amnex-radio';\r\nexport * from './lib/amnex-select/amnex-select';\r\nexport * from './lib/amnex-textarea/amnex-textarea';\r\nexport * from './lib/amnex-map/amnex-map';\r\nexport * from './lib/amnex-components';\r\n\r\n\r\n\r\n\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
package/index.d.ts
CHANGED
|
@@ -127,17 +127,22 @@ declare class AmnexTextarea implements ControlValueAccessor {
|
|
|
127
127
|
static ɵcmp: i0.ɵɵComponentDeclaration<AmnexTextarea, "amnex-textarea", never, { "placeholder": { "alias": "placeholder"; "required": false; }; }, {}, never, never, true, never>;
|
|
128
128
|
}
|
|
129
129
|
|
|
130
|
-
|
|
131
|
-
mapElement: ElementRef;
|
|
130
|
+
interface MapLocation {
|
|
132
131
|
lat: number;
|
|
133
132
|
lng: number;
|
|
133
|
+
title?: string;
|
|
134
|
+
}
|
|
135
|
+
declare class AmnexMap implements AfterViewInit {
|
|
136
|
+
mapElement: ElementRef;
|
|
137
|
+
locations: MapLocation[];
|
|
134
138
|
zoom: number;
|
|
135
139
|
height: string;
|
|
140
|
+
tittle: string;
|
|
136
141
|
map: Map;
|
|
137
142
|
ngAfterViewInit(): void;
|
|
138
143
|
private initMap;
|
|
139
144
|
static ɵfac: i0.ɵɵFactoryDeclaration<AmnexMap, never>;
|
|
140
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AmnexMap, "amnex-map", never, { "
|
|
145
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AmnexMap, "amnex-map", never, { "locations": { "alias": "locations"; "required": true; }; "zoom": { "alias": "zoom"; "required": false; }; "height": { "alias": "height"; "required": false; }; "tittle": { "alias": "tittle"; "required": false; }; }, {}, never, never, true, never>;
|
|
141
146
|
}
|
|
142
147
|
|
|
143
148
|
declare class AMNEX_COMPONENTS {
|
|
@@ -147,3 +152,4 @@ declare class AMNEX_COMPONENTS {
|
|
|
147
152
|
}
|
|
148
153
|
|
|
149
154
|
export { AMNEX_COMPONENTS, AmnexButton, AmnexFile, AmnexForm, AmnexH1, AmnexH2, AmnexH3, AmnexH4, AmnexH5, AmnexH6, AmnexInput, AmnexLabel, AmnexMap, AmnexP, AmnexRadio, AmnexSelect, AmnexTextarea };
|
|
155
|
+
export type { MapLocation };
|