@uniformdev/design-system 19.184.3-alpha.32 → 19.186.1
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/dist/esm/index.js +430 -209
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +528 -324
- package/package.json +14 -14
package/dist/index.d.mts
CHANGED
|
@@ -23145,9 +23145,11 @@ type ParameterLabelProps = HTMLAttributes<HTMLLabelElement> & {
|
|
|
23145
23145
|
children: React.ReactNode;
|
|
23146
23146
|
/** sets the label to use a span tag with aria-labelledby */
|
|
23147
23147
|
asSpan?: boolean;
|
|
23148
|
+
/** sets the data-testId attribute */
|
|
23149
|
+
testId?: string;
|
|
23148
23150
|
};
|
|
23149
23151
|
/** @example <ParameterLabel id="my-label">my label</ParameterLabel> */
|
|
23150
|
-
declare const ParameterLabel: ({ id, asSpan, children, ...props }: ParameterLabelProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23152
|
+
declare const ParameterLabel: ({ id, asSpan, children, testId, ...props }: ParameterLabelProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23151
23153
|
|
|
23152
23154
|
type ParameterLinkProps = CommonParameterInputProps & React.InputHTMLAttributes<HTMLInputElement> & {
|
|
23153
23155
|
/** (optional) sets the button text when value is empty
|
package/dist/index.d.ts
CHANGED
|
@@ -23145,9 +23145,11 @@ type ParameterLabelProps = HTMLAttributes<HTMLLabelElement> & {
|
|
|
23145
23145
|
children: React.ReactNode;
|
|
23146
23146
|
/** sets the label to use a span tag with aria-labelledby */
|
|
23147
23147
|
asSpan?: boolean;
|
|
23148
|
+
/** sets the data-testId attribute */
|
|
23149
|
+
testId?: string;
|
|
23148
23150
|
};
|
|
23149
23151
|
/** @example <ParameterLabel id="my-label">my label</ParameterLabel> */
|
|
23150
|
-
declare const ParameterLabel: ({ id, asSpan, children, ...props }: ParameterLabelProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23152
|
+
declare const ParameterLabel: ({ id, asSpan, children, testId, ...props }: ParameterLabelProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23151
23153
|
|
|
23152
23154
|
type ParameterLinkProps = CommonParameterInputProps & React.InputHTMLAttributes<HTMLInputElement> & {
|
|
23153
23155
|
/** (optional) sets the button text when value is empty
|