Skip to content

Commit

Permalink
fix(core): add required marker to checkbox formly element (#577)
Browse files Browse the repository at this point in the history
Co-authored-by: Tim Sielemann <[email protected]>
  • Loading branch information
TimSielemann and Tim Sielemann authored Sep 30, 2024
1 parent 74b40c0 commit bdc2fd8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import { FieldType, FieldTypeConfig } from '@ngx-formly/core';
[hint]="props.hint"
[labelLeft]="props.labelLeft"
[nativeAttributes]="props.nativeAttributes"
[requiredMarker]="props.requiredMarker"
>
</cat-checkbox>
`
Expand Down
3 changes: 2 additions & 1 deletion core/src/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ import { CatDatepickerMode } from "./components/cat-datepicker/cat-datepicker.mo
import { BaseOptions } from "flatpickr/dist/types/options";
import { InputType } from "./components/cat-input/input-type";
import { CleaveOptions } from "cleave.js/options";
import { CatSelectConnector, CatSelectMultipleTaggingValue, CatSelectTaggingValue } from "./components/cat-select/cat-select";
import { CatSelectConnector, CatSelectMultipleTaggingValue, CatSelectTaggingValue, Item } from "./components/cat-select/cat-select";
import { Observable } from "rxjs";
import { TooltipPlacement } from "./components/cat-tooltip/cat-tooltip";
export { Breakpoint } from "./utils/breakpoints";
export { ErrorMap } from "./components/cat-form-hint/cat-form-hint";
Expand Down

0 comments on commit bdc2fd8

Please sign in to comment.