@scbt-ecom/ui 0.14.1 → 0.15.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/dist/client.js +7041 -7026
- package/dist/client.js.map +1 -1
- package/dist/hybrid.js +427 -381
- package/dist/hybrid.js.map +1 -1
- package/dist/{index-BJGvyDqg.js → index-CexXWplL.js} +22 -2
- package/dist/index-CexXWplL.js.map +1 -0
- package/dist/shared/hooks/index.d.ts +1 -0
- package/dist/shared/hooks/useFieldsProgress.d.ts +14 -0
- package/dist/shared/ui/CustomLink.d.ts +7 -2
- package/dist/shared/ui/icon/sprite.gen.d.ts +1 -0
- package/dist/sprites/logos.svg +1 -0
- package/dist/style.css +1 -1
- package/dist/widgets/authProvider/AuthProvider.d.ts +3 -0
- package/dist/widgets/authProvider/index.d.ts +2 -0
- package/dist/widgets/authProvider/model/helpers.d.ts +5 -0
- package/dist/widgets/authProvider/model/types.d.ts +75 -0
- package/dist/widgets/authProvider/ui/Esia.d.ts +2 -0
- package/dist/widgets/authProvider/ui/MobileId.d.ts +2 -0
- package/dist/widgets/authProvider/ui/index.d.ts +2 -0
- package/dist/widgets/authProvider/ui/ui/AuthWrapper.d.ts +11 -0
- package/dist/widgets/authProvider/ui/ui/EsiaLogo.d.ts +2 -0
- package/dist/widgets/authProvider/ui/ui/Links.d.ts +11 -0
- package/dist/widgets/authProvider/ui/ui/index.d.ts +3 -0
- package/dist/widgets/baseForm/BaseForm.d.ts +3 -0
- package/dist/widgets/baseForm/index.d.ts +1 -0
- package/dist/widgets/footer/Footer.d.ts +14 -12
- package/dist/widgets/footer/ui/Copyright.d.ts +4 -3
- package/dist/widgets/footer/ui/FooterLogo.d.ts +8 -0
- package/dist/widgets/footer/ui/Ligal.d.ts +4 -4
- package/dist/widgets/footer/ui/NavLinks.d.ts +7 -6
- package/dist/widgets/footer/ui/PhonesBlock.d.ts +5 -5
- package/dist/widgets/footer/ui/SiteMap.d.ts +8 -0
- package/dist/widgets/footer/ui/SocialLinks.d.ts +4 -4
- package/dist/widgets/footer/ui/index.d.ts +7 -5
- package/dist/widgets/index.d.ts +9 -7
- package/package.json +1 -1
- package/dist/index-BJGvyDqg.js.map +0 -1
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export type TFooterLogoClasses = {
|
|
2
|
+
footerLogo?: string;
|
|
3
|
+
footerLogoIcon?: string;
|
|
4
|
+
};
|
|
5
|
+
export interface IFooterLogoProps {
|
|
6
|
+
classes?: TFooterLogoClasses;
|
|
7
|
+
}
|
|
8
|
+
export declare const FooterLogo: ({ classes }: IFooterLogoProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
export type TLigalClasses = {
|
|
3
|
-
ligalRoot
|
|
4
|
-
|
|
5
|
-
ligalButton
|
|
3
|
+
ligalRoot?: string;
|
|
4
|
+
ligalText?: string;
|
|
5
|
+
ligalButton?: string;
|
|
6
6
|
};
|
|
7
7
|
interface ILigalProps {
|
|
8
8
|
ligal: string | React.ReactElement;
|
|
9
|
-
classes?:
|
|
9
|
+
classes?: TLigalClasses;
|
|
10
10
|
}
|
|
11
11
|
export declare const Ligal: ({ ligal, classes }: ILigalProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
12
|
export {};
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { IFooterNavLinks } from '../model/types';
|
|
2
2
|
export type TNavigationLinksClasses = {
|
|
3
|
-
navRoot
|
|
4
|
-
navGroup
|
|
5
|
-
navLabel
|
|
6
|
-
|
|
7
|
-
navLink
|
|
3
|
+
navRoot?: string;
|
|
4
|
+
navGroup?: string;
|
|
5
|
+
navLabel?: string;
|
|
6
|
+
navLinks?: string;
|
|
7
|
+
navLink?: string;
|
|
8
|
+
navLinkIcon?: string;
|
|
8
9
|
};
|
|
9
10
|
interface INavLinksProps {
|
|
10
11
|
navigationLinks: IFooterNavLinks[];
|
|
11
|
-
classes?:
|
|
12
|
+
classes?: TNavigationLinksClasses;
|
|
12
13
|
}
|
|
13
14
|
export declare const NavLinks: ({ navigationLinks, classes }: INavLinksProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
15
|
export {};
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { IFooterPhones } from '../model/types';
|
|
2
2
|
export type TPhoneBlockClasses = {
|
|
3
|
-
phonesRoot
|
|
4
|
-
phoneWrapper
|
|
5
|
-
phoneText
|
|
6
|
-
phoneLink
|
|
3
|
+
phonesRoot?: string;
|
|
4
|
+
phoneWrapper?: string;
|
|
5
|
+
phoneText?: string;
|
|
6
|
+
phoneLink?: string;
|
|
7
7
|
};
|
|
8
8
|
interface IPhonesBlockProps {
|
|
9
9
|
phones: IFooterPhones[];
|
|
10
|
-
classes?:
|
|
10
|
+
classes?: TPhoneBlockClasses;
|
|
11
11
|
}
|
|
12
12
|
export declare const PhonesBlock: ({ phones, classes }: IPhonesBlockProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
13
|
export {};
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { IFooterSocialLinks } from '../model/types';
|
|
2
2
|
export type TSocialLinksClasses = {
|
|
3
|
-
socialRoot
|
|
4
|
-
socialLink
|
|
5
|
-
socialIcon
|
|
3
|
+
socialRoot?: string;
|
|
4
|
+
socialLink?: string;
|
|
5
|
+
socialIcon?: string;
|
|
6
6
|
};
|
|
7
7
|
interface ISocialLinksProps {
|
|
8
8
|
socialsLinks: IFooterSocialLinks[];
|
|
9
|
-
classes?:
|
|
9
|
+
classes?: TSocialLinksClasses;
|
|
10
10
|
}
|
|
11
11
|
export declare const SocialLinks: ({ socialsLinks, classes }: ISocialLinksProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
12
|
export {};
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
1
|
+
export * from './SocialLinks';
|
|
2
|
+
export * from './PhonesBlock';
|
|
3
|
+
export * from './NavLinks';
|
|
4
|
+
export * from './Ligal';
|
|
5
|
+
export * from './Copyright';
|
|
6
|
+
export * from './FooterLogo';
|
|
7
|
+
export * from './SiteMap';
|
package/dist/widgets/index.d.ts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
export
|
|
1
|
+
export * from './benefit';
|
|
2
|
+
export * from './pageHeader';
|
|
3
|
+
export * from './banner';
|
|
4
|
+
export * from './advantages';
|
|
5
|
+
export * from './footer';
|
|
6
|
+
export * from './stepper';
|
|
7
|
+
export * from './longBanner';
|
|
8
|
+
export * from './baseForm';
|
|
9
|
+
export * from './authProvider';
|