@muraldevkit/ui-toolkit 1.29.2 → 1.30.0

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.
@@ -9,11 +9,7 @@ interface MrlCheckboxProps {
9
9
  className?: string;
10
10
  /** The current state of the checkbox input based on user interactions or permissions */
11
11
  state?: CheckboxStates;
12
- /**
13
- * Sets what selection state the checkbox is in.
14
- *
15
- * @todo implement 'indeterminate'
16
- */
12
+ /** Sets what selection state the checkbox is in. */
17
13
  selected?: CheckboxSelected;
18
14
  /** The text to display as the checkbox's label */
19
15
  label: string;
@@ -7,11 +7,7 @@ interface MrlCheckboxStandaloneProps {
7
7
  attrs?: AttrsObject;
8
8
  /** The current state of the checkbox input based on user interactions or permissions */
9
9
  state?: CheckboxStates;
10
- /**
11
- * Sets what selection state the checkbox is in.
12
- *
13
- * @todo implement 'indeterminate'
14
- */
10
+ /** Sets what selection state the checkbox is in. */
15
11
  selected?: CheckboxSelected;
16
12
  }
17
13
  /**