@cbm-common/cbm-types 0.0.239 → 0.0.240

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.
Files changed (30) hide show
  1. package/lib/components/attachments/components/icons/ellipsis-icon/ellipsis-icon.component.d.ts +2 -0
  2. package/lib/components/item-stock-modal/item-stock-modal.component.d.ts +22 -0
  3. package/lib/components/modals-search/modal-search-outsourcing/modal-search-outsourcing.component.d.ts +69 -0
  4. package/lib/components/modals-search/modal-search-service/modal-search-service.component.d.ts +75 -0
  5. package/lib/components/order-vehicle-add-charge/order-vehicle-add-charge.d.ts +351 -0
  6. package/lib/components/order-vehicle-add-charge/sale-account-modal/sale-account-modal.d.ts +53 -0
  7. package/lib/components/outsourcing-services-movements-modal/outsourcing-services-movements-modal.component.d.ts +26 -0
  8. package/lib/components/pms-add-charge/folios-modal/folios-modal.d.ts +4 -4
  9. package/lib/components/pms-add-charge/pms-add-charge.d.ts +10 -10
  10. package/lib/components/price-history-modal/price-history-modal.component.d.ts +29 -0
  11. package/lib/components/sort-detail-modal/sort-detail-modal.component.d.ts +69 -0
  12. package/lib/components/ui/details-resume/details-resume.component.d.ts +29 -0
  13. package/lib/components/ui/warning-add-items-without-order-message/warning-add-items-without-order-message.component.d.ts +8 -0
  14. package/lib/domain/models/employee.model.d.ts +176 -0
  15. package/lib/domain/models/general.domain.model.d.ts +6 -0
  16. package/lib/domain/models/invoice.domain.model.d.ts +1 -1
  17. package/lib/domain/models/outsourcing-services-movements.domain.model.d.ts +160 -0
  18. package/lib/domain/models/sale-price.domain.model.d.ts +4 -1
  19. package/lib/domain/repositories/outsourcing-services-movements.domain.repository.d.ts +7 -0
  20. package/lib/domain/repositories/sales-account.domain.repository.d.ts +1 -1
  21. package/lib/domain/services/general.domain.service.d.ts +3 -0
  22. package/lib/domain/services/sale-account.domain.service.d.ts +24 -0
  23. package/lib/domain/services/service/form-group-tracker.service.d.ts +13 -0
  24. package/lib/infrastructure/repositories/outsourcing-services-movements.infrastructure.repository.d.ts +5 -0
  25. package/lib/infrastructure/services/outsourcing-services-movements.infrastructure.service.d.ts +10 -0
  26. package/lib/utils/debounce.d.ts +1 -0
  27. package/lib/utils/form-error-location.d.ts +2 -0
  28. package/lib/utils/resize.d.ts +14 -0
  29. package/package.json +1 -1
  30. package/public-api.d.ts +3 -0
@@ -0,0 +1,14 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import { NgSelectComponent } from '@ng-select/ng-select';
3
+ type ObserverStore = {
4
+ resizeObserver?: ResizeObserver;
5
+ mutationObserver?: MutationObserver;
6
+ };
7
+ export declare function setupTableResizeAndMutation(containerRef: ElementRef<HTMLElement> | undefined, tableRef: ElementRef<HTMLElement> | undefined, ngSelects: readonly NgSelectComponent[], scopeSelector: string, observerStore: ObserverStore): void;
8
+ /**
9
+ * Variante de setupTableResizeAndMutation que NO requiere referencias a NgSelectComponent.
10
+ * Observa el elemento table directamente con subtree:true, detectando cambios en
11
+ * componentes hijos (como ItemDetailRowComponent) donde viewChildren no penetra.
12
+ */
13
+ export declare function setupTableResizeAndMutationByElement(containerRef: ElementRef<HTMLElement> | undefined, tableRef: ElementRef<HTMLElement> | undefined, observerStore: ObserverStore): void;
14
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cbm-common/cbm-types",
3
- "version": "0.0.239",
3
+ "version": "0.0.240",
4
4
  "main": "index.js",
5
5
  "types": "public-api.d.ts",
6
6
  "exports": {
package/public-api.d.ts CHANGED
@@ -524,6 +524,9 @@ export * from './lib/components/item-details/item-details';
524
524
  //#region service detail
525
525
  export * from './lib/components/service-details/service-details';
526
526
 
527
+ //#region order vehicle add charge
528
+ export * from './lib/components/order-vehicle-add-charge/order-vehicle-add-charge';
529
+
527
530
  //#region blanket agreement service repository
528
531
  export * from './lib/domain/repositories/blanket-agreement-service.domain.repository';
529
532
  export * from './lib/domain/models/blanket-agreement-service.domain.model';