geonetwork-ui 2.3.0-dev.89188551 → 2.3.0-dev.a26c0b88

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 (38) hide show
  1. package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +1 -1
  2. package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +73 -20
  3. package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +1 -1
  4. package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +1 -1
  5. package/esm2022/libs/feature/map/src/lib/map-context/map-context.model.mjs +1 -1
  6. package/esm2022/libs/feature/map/src/lib/map-context/map-context.service.mjs +29 -8
  7. package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +1 -1
  8. package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +3 -2
  9. package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +59 -26
  10. package/esm2022/libs/ui/inputs/src/lib/text-input/text-input.component.mjs +5 -3
  11. package/esm2022/libs/ui/layout/src/lib/carousel/carousel.component.mjs +3 -3
  12. package/fesm2022/geonetwork-ui.mjs +178 -71
  13. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  14. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts +10 -5
  15. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts.map +1 -1
  16. package/libs/feature/map/src/lib/map-context/map-context.model.d.ts +1 -0
  17. package/libs/feature/map/src/lib/map-context/map-context.model.d.ts.map +1 -1
  18. package/libs/feature/map/src/lib/map-context/map-context.service.d.ts.map +1 -1
  19. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts +3 -3
  20. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +1 -1
  21. package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts.map +1 -1
  22. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +9 -2
  23. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts.map +1 -1
  24. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts +2 -1
  25. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts.map +1 -1
  26. package/package.json +1 -1
  27. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.css +7 -0
  28. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.html +32 -18
  29. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts +72 -17
  30. package/src/libs/feature/map/src/lib/map-context/map-context.model.ts +1 -0
  31. package/src/libs/feature/map/src/lib/map-context/map-context.service.ts +26 -8
  32. package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +2 -2
  33. package/src/libs/ui/elements/src/lib/api-card/api-card.component.ts +2 -1
  34. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +25 -9
  35. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +67 -26
  36. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +1 -0
  37. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +1 -0
  38. package/src/libs/ui/layout/src/lib/carousel/carousel.component.css +1 -0
@@ -29,6 +29,7 @@ export class TextInputComponent implements AfterViewInit {
29
29
  @Input() extraClass = ''
30
30
  @Input() hint: string
31
31
  @Input() required = false
32
+ @Input() disabled: boolean
32
33
  rawChange = new Subject<string>()
33
34
  @Output() valueChange = this.rawChange.pipe(distinctUntilChanged())
34
35
  @ViewChild('input') input
@@ -4,6 +4,7 @@
4
4
 
5
5
  :host {
6
6
  position: relative;
7
+ display: block;
7
8
  }
8
9
 
9
10
  .carousel-step-dot {