@senior-agronegocio/angular-components 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/COMMON_LLM_INSTRUCTIONS.md +334 -0
- package/LLM_LIBRARY_GUIDES.md +8 -0
- package/components/index.d.ts +1 -0
- package/components/modal-invoice-pj/for-contracts/modal-contracts-options.interface.d.ts +4 -0
- package/components/modal-invoice-pj/for-contracts/modal-invoice-pj-for-contracts.component.d.ts +32 -0
- package/components/modal-invoice-pj/for-contracts/modal-invoice-pj-for-contracts.module.d.ts +26 -0
- package/components/modal-invoice-pj/index.d.ts +3 -0
- package/components/modal-invoice-pj/modal-invoice-pj-base.class.d.ts +2 -2
- package/components/modal-invoice-pj/modal-shared-imports.d.ts +2 -2
- package/components/modal-invoice-pj/services/agro-invoice/agro-invoice.module.d.ts +1 -2
- package/components/producer-list-modal/index.d.ts +3 -0
- package/components/producer-list-modal/producer-list-modal-data.interface.d.ts +9 -0
- package/components/producer-list-modal/producer-list-modal.component.d.ts +14 -0
- package/components/producer-list-modal/producer-list-modal.module.d.ts +9 -0
- package/esm2022/components/cancel-event-dialog/cancel-event-dialog.component.mjs +3 -3
- package/esm2022/components/event-control-board/event-control-board.component.mjs +1 -1
- package/esm2022/components/event-steps/event-steps.component.mjs +3 -3
- package/esm2022/components/financial-title-table/financial-title-table.component.mjs +1 -1
- package/esm2022/components/index.mjs +2 -1
- package/esm2022/components/modal-invoice-pj/for-contracts/modal-contracts-options.interface.mjs +2 -0
- package/esm2022/components/modal-invoice-pj/for-contracts/modal-invoice-pj-for-contracts.component.mjs +67 -0
- package/esm2022/components/modal-invoice-pj/for-contracts/modal-invoice-pj-for-contracts.module.mjs +38 -0
- package/esm2022/components/modal-invoice-pj/for-fixation/modal-invoice-pj-for-fixation.component.mjs +3 -3
- package/esm2022/components/modal-invoice-pj/for-origination/modal-invoice-pj-for-origination.component.mjs +3 -3
- package/esm2022/components/modal-invoice-pj/for-transfer/modal-invoice-pj-for-transfer.component.mjs +3 -3
- package/esm2022/components/modal-invoice-pj/index.mjs +3 -1
- package/esm2022/components/modal-invoice-pj/modal-invoice-pj-base.class.mjs +1 -1
- package/esm2022/components/modal-invoice-pj/modal-shared-imports.mjs +2 -2
- package/esm2022/components/modal-invoice-pj/services/agro-invoice/agro-invoice.module.mjs +3 -19
- package/esm2022/components/producer-list-modal/index.mjs +3 -0
- package/esm2022/components/producer-list-modal/producer-list-modal-data.interface.mjs +2 -0
- package/esm2022/components/producer-list-modal/producer-list-modal.component.mjs +48 -0
- package/esm2022/components/producer-list-modal/producer-list-modal.module.mjs +19 -0
- package/fesm2022/senior-agronegocio-angular-components.mjs +138 -31
- package/fesm2022/senior-agronegocio-angular-components.mjs.map +1 -1
- package/package.json +21 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@senior-agronegocio/angular-components",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/cdk": "^18.2.14",
|
|
6
6
|
"@angular/common": "^18.2.0",
|
|
@@ -31,22 +31,36 @@
|
|
|
31
31
|
"esm": "./esm2022/senior-agronegocio-angular-components.mjs"
|
|
32
32
|
},
|
|
33
33
|
"./common": {
|
|
34
|
-
"
|
|
34
|
+
"types": "./common/index.d.ts",
|
|
35
|
+
"default": "./esm2022/common/index.mjs"
|
|
35
36
|
},
|
|
36
37
|
"./components": {
|
|
37
|
-
"
|
|
38
|
+
"types": "./components/index.d.ts",
|
|
39
|
+
"default": "./esm2022/components/index.mjs"
|
|
40
|
+
},
|
|
41
|
+
"./components/modal-invoice-pj": {
|
|
42
|
+
"types": "./components/modal-invoice-pj/index.d.ts",
|
|
43
|
+
"default": "./esm2022/components/modal-invoice-pj/index.mjs"
|
|
44
|
+
},
|
|
45
|
+
"./components/modal-invoice-pj/for-contracts/modal-invoice-pj-for-contracts.module": {
|
|
46
|
+
"types": "./components/modal-invoice-pj/for-contracts/modal-invoice-pj-for-contracts.module.d.ts",
|
|
47
|
+
"default": "./esm2022/components/modal-invoice-pj/for-contracts/modal-invoice-pj-for-contracts.module.mjs"
|
|
38
48
|
},
|
|
39
49
|
"./enums": {
|
|
40
|
-
"
|
|
50
|
+
"types": "./enums/index.d.ts",
|
|
51
|
+
"default": "./esm2022/enums/index.mjs"
|
|
41
52
|
},
|
|
42
53
|
"./form-validator": {
|
|
43
|
-
"
|
|
54
|
+
"types": "./form-validator/index.d.ts",
|
|
55
|
+
"default": "./esm2022/form-validator/index.mjs"
|
|
44
56
|
},
|
|
45
57
|
"./pipe": {
|
|
46
|
-
"
|
|
58
|
+
"types": "./pipe/index.d.ts",
|
|
59
|
+
"default": "./esm2022/pipe/index.mjs"
|
|
47
60
|
},
|
|
48
61
|
"./services": {
|
|
49
|
-
"
|
|
62
|
+
"types": "./services/index.d.ts",
|
|
63
|
+
"default": "./esm2022/services/index.mjs"
|
|
50
64
|
},
|
|
51
65
|
"./package.json": {
|
|
52
66
|
"default": "./package.json"
|