= {
+ args: {
+ label: 'Some label',
+ },
+}
diff --git a/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.ts b/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.ts
index dfb4456615..bacf97e057 100644
--- a/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.ts
+++ b/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.ts
@@ -5,12 +5,15 @@ import {
Input,
Output,
} from '@angular/core'
+import { FormsModule } from '@angular/forms'
@Component({
selector: 'gn-ui-check-toggle',
templateUrl: './check-toggle.component.html',
styleUrls: ['./check-toggle.component.css'],
changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: true,
+ imports: [FormsModule],
})
export class CheckToggleComponent {
@Input() title: string
diff --git a/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.html b/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.html
index f0d9855be6..834596982c 100644
--- a/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.html
+++ b/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.html
@@ -18,6 +18,7 @@
cdkOverlayOrigin
#overlayOrigin="cdkOverlayOrigin"
(keydown)="handleTriggerKeydown($event)"
+ [disabled]="disabled"
>
{{ getChoiceLabel() | translate }}
diff --git a/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.stories.ts b/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.stories.ts
index 1ce8402e66..65e2d43d8f 100644
--- a/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.stories.ts
+++ b/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.stories.ts
@@ -49,6 +49,7 @@ export const Primary: StoryObj = {
],
selected: 'choice1',
showTitle: true,
+ disabled: false,
},
argTypes: {
selectValue: {
diff --git a/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts b/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts
index 296995ffd2..1f4b3979f1 100644
--- a/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts
+++ b/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts
@@ -48,6 +48,7 @@ export class DropdownSelectorComponent implements OnInit {
@Input() maxRows: number
@Input() extraBtnClass = ''
@Input() minWidth = ''
+ @Input() disabled: boolean
@Output() selectValue = new EventEmitter()
@ViewChild('overlayOrigin') overlayOrigin: CdkOverlayOrigin
@ViewChild(CdkConnectedOverlay) overlay: CdkConnectedOverlay
diff --git a/libs/ui/inputs/src/lib/ui-inputs.module.ts b/libs/ui/inputs/src/lib/ui-inputs.module.ts
index f96f975288..db239ac117 100644
--- a/libs/ui/inputs/src/lib/ui-inputs.module.ts
+++ b/libs/ui/inputs/src/lib/ui-inputs.module.ts
@@ -44,7 +44,6 @@ import { ImageInputComponent } from './image-input/image-input.component'
StarToggleComponent,
DropdownMultiselectComponent,
ViewportIntersectorComponent,
- CheckToggleComponent,
CopyTextButtonComponent,
CheckboxComponent,
SearchInputComponent,
@@ -73,6 +72,7 @@ import { ImageInputComponent } from './image-input/image-input.component'
ImageInputComponent,
DropdownSelectorComponent,
DateRangePickerComponent,
+ CheckToggleComponent,
],
exports: [
DropdownSelectorComponent,
diff --git a/translations/de.json b/translations/de.json
index 7e9df0c40f..82e415af95 100644
--- a/translations/de.json
+++ b/translations/de.json
@@ -156,6 +156,8 @@
"editor.record.form.license.pddl": "",
"editor.record.form.license.unknown": "Unbekannt oder nicht vorhanden",
"editor.record.form.resourceUpdated": "",
+ "editor.record.form.updateFrequency": "",
+ "editor.record.form.updateFrequency.planned": "",
"editor.record.loadError.body": "",
"editor.record.loadError.closeMessage": "",
"editor.record.loadError.title": "",
diff --git a/translations/en.json b/translations/en.json
index a126cde62b..bd8ab68644 100644
--- a/translations/en.json
+++ b/translations/en.json
@@ -156,6 +156,8 @@
"editor.record.form.license.pddl": "Open Data Commons PDDL",
"editor.record.form.license.unknown": "Unknown or absent",
"editor.record.form.resourceUpdated": "Last update date",
+ "editor.record.form.updateFrequency": "Update frequency",
+ "editor.record.form.updateFrequency.planned": "The data should be updated regularly.",
"editor.record.loadError.body": "The record could not be loaded:",
"editor.record.loadError.closeMessage": "Understood",
"editor.record.loadError.title": "Error loading record",
diff --git a/translations/es.json b/translations/es.json
index 26c5e3ccb8..ac3dcc767b 100644
--- a/translations/es.json
+++ b/translations/es.json
@@ -156,6 +156,8 @@
"editor.record.form.license.pddl": "",
"editor.record.form.license.unknown": "",
"editor.record.form.resourceUpdated": "",
+ "editor.record.form.updateFrequency": "",
+ "editor.record.form.updateFrequency.planned": "",
"editor.record.loadError.body": "",
"editor.record.loadError.closeMessage": "",
"editor.record.loadError.title": "",
diff --git a/translations/fr.json b/translations/fr.json
index a78c3cfc22..20064052ce 100644
--- a/translations/fr.json
+++ b/translations/fr.json
@@ -156,6 +156,8 @@
"editor.record.form.license.pddl": "",
"editor.record.form.license.unknown": "Non-reconnue ou absente",
"editor.record.form.resourceUpdated": "Date de dernière révision",
+ "editor.record.form.updateFrequency": "Fréquence de mise à jour",
+ "editor.record.form.updateFrequency.planned": "Ces données doivent être mise à jour régulièrement.",
"editor.record.loadError.body": "",
"editor.record.loadError.closeMessage": "",
"editor.record.loadError.title": "",
diff --git a/translations/it.json b/translations/it.json
index c8aacdc045..fe28b7a321 100644
--- a/translations/it.json
+++ b/translations/it.json
@@ -156,6 +156,8 @@
"editor.record.form.license.pddl": "",
"editor.record.form.license.unknown": "Non riconosciuta o assente",
"editor.record.form.resourceUpdated": "",
+ "editor.record.form.updateFrequency": "",
+ "editor.record.form.updateFrequency.planned": "",
"editor.record.loadError.body": "",
"editor.record.loadError.closeMessage": "",
"editor.record.loadError.title": "",
diff --git a/translations/nl.json b/translations/nl.json
index 89616d1e96..7d331e8f6c 100644
--- a/translations/nl.json
+++ b/translations/nl.json
@@ -156,6 +156,8 @@
"editor.record.form.license.pddl": "",
"editor.record.form.license.unknown": "",
"editor.record.form.resourceUpdated": "",
+ "editor.record.form.updateFrequency": "",
+ "editor.record.form.updateFrequency.planned": "",
"editor.record.loadError.body": "",
"editor.record.loadError.closeMessage": "",
"editor.record.loadError.title": "",
diff --git a/translations/pt.json b/translations/pt.json
index 031e933c7a..6e7c864b38 100644
--- a/translations/pt.json
+++ b/translations/pt.json
@@ -156,6 +156,8 @@
"editor.record.form.license.pddl": "",
"editor.record.form.license.unknown": "",
"editor.record.form.resourceUpdated": "",
+ "editor.record.form.updateFrequency": "",
+ "editor.record.form.updateFrequency.planned": "",
"editor.record.loadError.body": "",
"editor.record.loadError.closeMessage": "",
"editor.record.loadError.title": "",
diff --git a/translations/sk.json b/translations/sk.json
index 006938fead..c1a0c4d691 100644
--- a/translations/sk.json
+++ b/translations/sk.json
@@ -156,6 +156,8 @@
"editor.record.form.license.pddl": "",
"editor.record.form.license.unknown": "Neznáme alebo chýbajúce",
"editor.record.form.resourceUpdated": "",
+ "editor.record.form.updateFrequency": "",
+ "editor.record.form.updateFrequency.planned": "",
"editor.record.loadError.body": "",
"editor.record.loadError.closeMessage": "",
"editor.record.loadError.title": "",