@datarobot/design-system 29.5.0 → 29.6.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.
- package/cjs/key-value-pairs/key-value-inputs.d.ts +2 -1
- package/cjs/key-value-pairs/key-value-inputs.js +5 -3
- package/cjs/key-value-pairs/key-value-pairs.d.ts +3 -1
- package/cjs/key-value-pairs/key-value-pairs.js +2 -0
- package/esm/key-value-pairs/key-value-inputs.d.ts +2 -1
- package/esm/key-value-pairs/key-value-inputs.js +5 -3
- package/esm/key-value-pairs/key-value-pairs.d.ts +3 -1
- package/esm/key-value-pairs/key-value-pairs.js +2 -0
- package/js/bundle/bundle.js +7 -3
- package/js/bundle/bundle.min.js +1 -1
- package/js/bundle/index.d.ts +3 -1
- package/package.json +1 -1
package/js/bundle/index.d.ts
CHANGED
|
@@ -3706,7 +3706,9 @@ type KeyValuePairsProps = {
|
|
|
3706
3706
|
/** Object that represents the key value pairs in this component */
|
|
3707
3707
|
value: ValueObject;
|
|
3708
3708
|
className?: string;
|
|
3709
|
+
/** whether whole form is disabled */
|
|
3709
3710
|
isDisabled?: boolean;
|
|
3711
|
+
disabledPairs?: ValueObject;
|
|
3710
3712
|
label?: string;
|
|
3711
3713
|
/** Label for the key column */
|
|
3712
3714
|
keyLabel?: string;
|
|
@@ -3752,7 +3754,7 @@ type KeyValuePairsProps = {
|
|
|
3752
3754
|
@midnight-gray-supported
|
|
3753
3755
|
@alpine-light-supported
|
|
3754
3756
|
*/
|
|
3755
|
-
export const KeyValuePairs: ({ value, className, label, keyLabel, valueLabel, helperText, placeholder: placeholderParams, isDisabled, onChange, hasWarning, emptyCheck, warningMessage: warningMessageParams, buttonText: buttonTextParams, maxItemsTooltipText: maxItemsTooltipTextParams, emptyItemErrorText: emptyItemErrorTextParams, deleteKeyValueText: deleteKeyValueTextParams, buildDuplicateItemErrorText: buildDuplicateItemErrorTextParams, testId, infoIconProps, onError, maxSize, addButtonAccentType, keyInputAriaLabel: keyInputAriaLabelParams, valueInputAriaLabel: valueInputAriaLabelParams, id, }: KeyValuePairsProps) => import("react/jsx-runtime").JSX.Element;
|
|
3757
|
+
export const KeyValuePairs: ({ value, className, label, keyLabel, valueLabel, helperText, placeholder: placeholderParams, isDisabled, disabledPairs, onChange, hasWarning, emptyCheck, warningMessage: warningMessageParams, buttonText: buttonTextParams, maxItemsTooltipText: maxItemsTooltipTextParams, emptyItemErrorText: emptyItemErrorTextParams, deleteKeyValueText: deleteKeyValueTextParams, buildDuplicateItemErrorText: buildDuplicateItemErrorTextParams, testId, infoIconProps, onError, maxSize, addButtonAccentType, keyInputAriaLabel: keyInputAriaLabelParams, valueInputAriaLabel: valueInputAriaLabelParams, id, }: KeyValuePairsProps) => import("react/jsx-runtime").JSX.Element;
|
|
3756
3758
|
export {};
|
|
3757
3759
|
|
|
3758
3760
|
import './label-accent.less';
|