@npm_leadtech/legal-lib-components 2.48.0 → 2.49.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/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/components/atoms/Button/ButtonProps.types.d.ts +1 -1
- package/dist/cjs/src/components/atoms/Checkbox/CheckboxProps.types.d.ts +1 -0
- package/dist/cjs/src/components/atoms/SearchSelect/SearchSelectProps.types.d.ts +1 -0
- package/dist/cjs/src/components/atoms/TextArea/TextAreaProps.types.d.ts +1 -0
- package/dist/esm/index.js +4 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/components/atoms/Button/ButtonProps.types.d.ts +1 -1
- package/dist/esm/src/components/atoms/Checkbox/CheckboxProps.types.d.ts +1 -0
- package/dist/esm/src/components/atoms/SearchSelect/SearchSelectProps.types.d.ts +1 -0
- package/dist/esm/src/components/atoms/TextArea/TextAreaProps.types.d.ts +1 -0
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -48,7 +48,7 @@ declare const BreadcrumItem: FC<BreadcrumItemProps>;
|
|
|
48
48
|
|
|
49
49
|
interface ButtonProps {
|
|
50
50
|
label: string;
|
|
51
|
-
dataQa
|
|
51
|
+
dataQa: string;
|
|
52
52
|
labelMobile?: string;
|
|
53
53
|
link?: string;
|
|
54
54
|
LinkComponent?: any;
|
|
@@ -106,6 +106,7 @@ interface CardPaneInfoProps {
|
|
|
106
106
|
declare const CardPane: FC<CardPaneProps>;
|
|
107
107
|
|
|
108
108
|
interface CheckboxProps {
|
|
109
|
+
dataQa: string;
|
|
109
110
|
id?: string;
|
|
110
111
|
name?: string;
|
|
111
112
|
className?: string;
|
|
@@ -417,6 +418,7 @@ interface SearchSelectProps {
|
|
|
417
418
|
width?: boolean;
|
|
418
419
|
defaultValue: DefaultValue;
|
|
419
420
|
menuPlacement: MenuPlacement;
|
|
421
|
+
dataQA: string;
|
|
420
422
|
}
|
|
421
423
|
|
|
422
424
|
declare enum MenuPlacement {
|
|
@@ -460,6 +462,7 @@ interface TaglineProps {
|
|
|
460
462
|
declare const Tagline: FC<TaglineProps>;
|
|
461
463
|
|
|
462
464
|
interface TextAreaProps {
|
|
465
|
+
dataQa: string;
|
|
463
466
|
value?: string;
|
|
464
467
|
label?: string;
|
|
465
468
|
name?: string;
|