@ivandt/importer-angular 2.0.2 → 2.0.4
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.
|
@@ -10,10 +10,10 @@ class IvtImporterComponent {
|
|
|
10
10
|
this.importerElement.nativeElement.schema = this.schema;
|
|
11
11
|
}
|
|
12
12
|
}
|
|
13
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
14
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.
|
|
13
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.6", ngImport: i0, type: IvtImporterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
14
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.6", type: IvtImporterComponent, isStandalone: true, selector: "ivandt-importer", inputs: { schema: "schema" }, viewQueries: [{ propertyName: "importerElement", first: true, predicate: ["importerElement"], descendants: true, static: true }], ngImport: i0, template: `<ivt-importer #importerElement></ivt-importer>`, isInline: true });
|
|
15
15
|
}
|
|
16
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
16
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.6", ngImport: i0, type: IvtImporterComponent, decorators: [{
|
|
17
17
|
type: Component,
|
|
18
18
|
args: [{
|
|
19
19
|
selector: 'ivandt-importer',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ivandt-importer-angular.mjs","sources":["../../projects/ivandt/importer-angular/src/lib/importer-angular.ts","../../projects/ivandt/importer-angular/src/public-api.ts","../../projects/ivandt/importer-angular/src/ivandt-importer-angular.ts"],"sourcesContent":["import { Component, CUSTOM_ELEMENTS_SCHEMA, ElementRef, Input, OnInit, ViewChild } from '@angular/core';\nimport type { DefaultTableRowType, IvtSchema } from '@ivandt/importer';\nimport '@ivandt/importer/importer';\n\n@Component({\n selector: 'ivandt-importer',\n standalone: true,\n template: `<ivt-importer #importerElement></ivt-importer>`,\n schemas: [CUSTOM_ELEMENTS_SCHEMA]\n})\nexport class IvtImporterComponent<TableRow = DefaultTableRowType> implements OnInit {\n @Input() schema!: IvtSchema<TableRow>;\n @ViewChild('importerElement', { static: true }) importerElement!: ElementRef;\n\n ngOnInit() {\n if (this.importerElement && this.schema) {\n (this.importerElement.nativeElement as any).schema = this.schema;\n }\n }\n}\n","/*\n * Public API Surface of importer-angular\n */\n\nexport { IvtImporterComponent } from './lib/importer-angular';\nexport type { IvtSchema } from '@ivandt/importer';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;MAUa,oBAAoB,CAAA;AACtB,IAAA,MAAM;AACiC,IAAA,eAAe;IAE/D,QAAQ,GAAA;QACN,IAAI,IAAI,CAAC,eAAe,IAAI,IAAI,CAAC,MAAM,EAAE;YACtC,IAAI,CAAC,eAAe,CAAC,aAAqB,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM;QAClE;IACF;uGARW,oBAAoB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAApB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,oBAAoB,2OAHrB,CAAA,8CAAA,CAAgD,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA;;2FAG/C,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBANhC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,iBAAiB;AAC3B,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,CAAA,8CAAA,CAAgD;oBAC1D,OAAO,EAAE,CAAC,sBAAsB;AACjC,iBAAA
|
|
1
|
+
{"version":3,"file":"ivandt-importer-angular.mjs","sources":["../../projects/ivandt/importer-angular/src/lib/importer-angular.ts","../../projects/ivandt/importer-angular/src/public-api.ts","../../projects/ivandt/importer-angular/src/ivandt-importer-angular.ts"],"sourcesContent":["import { Component, CUSTOM_ELEMENTS_SCHEMA, ElementRef, Input, OnInit, ViewChild } from '@angular/core';\nimport type { DefaultTableRowType, IvtSchema } from '@ivandt/importer';\nimport '@ivandt/importer/importer';\n\n@Component({\n selector: 'ivandt-importer',\n standalone: true,\n template: `<ivt-importer #importerElement></ivt-importer>`,\n schemas: [CUSTOM_ELEMENTS_SCHEMA]\n})\nexport class IvtImporterComponent<TableRow = DefaultTableRowType> implements OnInit {\n @Input() schema!: IvtSchema<TableRow>;\n @ViewChild('importerElement', { static: true }) importerElement!: ElementRef;\n\n ngOnInit() {\n if (this.importerElement && this.schema) {\n (this.importerElement.nativeElement as any).schema = this.schema;\n }\n }\n}\n","/*\n * Public API Surface of importer-angular\n */\n\nexport { IvtImporterComponent } from './lib/importer-angular';\nexport type { IvtSchema } from '@ivandt/importer';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;MAUa,oBAAoB,CAAA;AACtB,IAAA,MAAM;AACiC,IAAA,eAAe;IAE/D,QAAQ,GAAA;QACN,IAAI,IAAI,CAAC,eAAe,IAAI,IAAI,CAAC,MAAM,EAAE;YACtC,IAAI,CAAC,eAAe,CAAC,aAAqB,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM;QAClE;IACF;uGARW,oBAAoB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAApB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,oBAAoB,2OAHrB,CAAA,8CAAA,CAAgD,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA;;2FAG/C,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBANhC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,iBAAiB;AAC3B,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,CAAA,8CAAA,CAAgD;oBAC1D,OAAO,EAAE,CAAC,sBAAsB;AACjC,iBAAA;;sBAEE;;sBACA,SAAS;AAAC,gBAAA,IAAA,EAAA,CAAA,iBAAiB,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE;;;ACZhD;;AAEG;;ACFH;;AAEG;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ivandt/importer-angular",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
4
|
"description": "Angular wrapper for @ivandt/importer web component",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/fesm2022/ivandt-importer-angular.mjs",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"@angular/common": "^20.3.0",
|
|
38
38
|
"@angular/core": "^20.3.0",
|
|
39
|
-
"@ivandt/importer": "^1.11.
|
|
39
|
+
"@ivandt/importer": "^1.11.4"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"tslib": "^2.3.0"
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"ng-packagr": "^20.3.0",
|
|
62
62
|
"rxjs": "~7.8.0",
|
|
63
63
|
"typescript": "~5.9.2",
|
|
64
|
-
"@ivandt/importer": "1.11.
|
|
64
|
+
"@ivandt/importer": "1.11.4"
|
|
65
65
|
},
|
|
66
66
|
"keywords": [
|
|
67
67
|
"angular",
|