Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@

## 6.2.2
* Added missing `disabled` property to `FontPicker`

## 6.2.1
* Improved type definitions and JSDoc documentation for `ItemFlagsSelection` and `AutoFlagsSelection` components
* Added clarification that both flag selection components require bitwise values (powers of 2) for proper flag functionality
Expand Down
69 changes: 37 additions & 32 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "powerbi-visuals-utils-formattingmodel",
"version": "6.2.1",
"version": "6.2.2",
"description": "",
"main": "lib/index.js",
"module": "lib/index.js",
Expand Down
2 changes: 2 additions & 0 deletions src/FormattingSettingsComponents.ts
Original file line number Diff line number Diff line change
Expand Up @@ -488,6 +488,7 @@ export abstract class CompositeSlice extends NamedEntity implements IFormattingS
/** slice disabled reason */
disabledReason?: string;
disabledReasonKey?: string;
disabled?: boolean;

visible?: boolean;

Expand All @@ -507,6 +508,7 @@ export abstract class CompositeSlice extends NamedEntity implements IFormattingS

return <visuals.CompositeVisualFormattingSlice>{
...componentDisplayName,
disabled: this.disabled,
control: {
type: controlType,
properties: this.getFormattingComponent(objectName)
Expand Down
Loading