react-luminus-components 1.4.37 → 1.4.38
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/components/Contacts/ContactButtonQrModal/ContactButtonQrModal.d.ts +2 -1
- package/dist/components/Form/ContactInput/comps/ContactInputContainer/ContactInputContainer.d.ts +8 -0
- package/dist/components/Form/ContactInput/comps/index.d.ts +1 -0
- package/dist/main.cjs.js +37 -37
- package/dist/main.es.js +2643 -2646
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
type ContactButtonQrModalProps = {
|
|
2
2
|
value: string | null;
|
|
3
3
|
contactType: 'email' | 'phone';
|
|
4
|
+
className?: string;
|
|
4
5
|
};
|
|
5
|
-
declare const ContactButtonQrModal: ({ value, contactType }: ContactButtonQrModalProps) => import("react").JSX.Element;
|
|
6
|
+
declare const ContactButtonQrModal: ({ value, contactType, className }: ContactButtonQrModalProps) => import("react").JSX.Element;
|
|
6
7
|
export default ContactButtonQrModal;
|
package/dist/components/Form/ContactInput/comps/ContactInputContainer/ContactInputContainer.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { FormContactInputProp } from '../../../../../models/index';
|
|
2
|
+
import { ReactNode } from 'react';
|
|
3
|
+
|
|
4
|
+
type ContactInputContainerProps = {
|
|
5
|
+
children: ReactNode;
|
|
6
|
+
} & Pick<FormContactInputProp, 'className' | 'contactType' | 'value' | 'withoutLabel' | 'label'>;
|
|
7
|
+
declare const ContactInputContainer: ({ children, className, withoutLabel, label, contactType, value, }: ContactInputContainerProps) => import("react").JSX.Element;
|
|
8
|
+
export default ContactInputContainer;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as ContactInputContainer } from './ContactInputContainer/ContactInputContainer';
|