@blateral/b.kit 2.0.0-beta.8.6 → 2.0.0-beta.8.7
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/lib/components/base/icons/Icons.d.ts +1 -0
- package/lib/components/base/icons/Icons.d.ts.map +1 -1
- package/lib/components/blocks/Bdot.d.ts.map +1 -1
- package/lib/components/blocks/SocialList.d.ts +1 -0
- package/lib/components/blocks/SocialList.d.ts.map +1 -1
- package/lib/components/blocks/Tag.d.ts.map +1 -1
- package/lib/components/sections/footer/Footer.d.ts +60 -0
- package/lib/components/sections/footer/Footer.d.ts.map +1 -0
- package/lib/components/sections/footer/partials/FooterBottomBar.d.ts +13 -0
- package/lib/components/sections/footer/partials/FooterBottomBar.d.ts.map +1 -0
- package/lib/components/sections/footer/partials/FooterColumn.d.ts +14 -0
- package/lib/components/sections/footer/partials/FooterColumn.d.ts.map +1 -0
- package/lib/components/sections/footer/partials/index.d.ts +3 -0
- package/lib/components/sections/footer/partials/index.d.ts.map +1 -0
- package/lib/components/sections/footer/skeletons/FooterArticle.d.ts +12 -0
- package/lib/components/sections/footer/skeletons/FooterArticle.d.ts.map +1 -0
- package/lib/components/sections/footer/skeletons/FooterBottomGrid.d.ts +16 -0
- package/lib/components/sections/footer/skeletons/FooterBottomGrid.d.ts.map +1 -0
- package/lib/components/sections/footer/skeletons/index.d.ts +3 -0
- package/lib/components/sections/footer/skeletons/index.d.ts.map +1 -0
- package/lib/components/sections/navigation/partials/NavBarBottom.d.ts.map +1 -1
- package/lib/components/sections/navigation/partials/index.d.ts +6 -0
- package/lib/components/sections/navigation/partials/index.d.ts.map +1 -0
- package/lib/components/sections/navigation/skeletons/index.d.ts +6 -0
- package/lib/components/sections/navigation/skeletons/index.d.ts.map +1 -0
- package/lib/index.d.ts +7 -2
- package/lib/index.d.ts.map +1 -1
- package/lib/index.es.js +1 -1
- package/lib/index.es.js.map +1 -1
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
- package/lib/components/sections/Footer.d.ts +0 -53
- package/lib/components/sections/Footer.d.ts.map +0 -1
- package/lib/components/sections/FooterNew.d.ts +0 -38
- package/lib/components/sections/FooterNew.d.ts.map +0 -1
- package/lib/components/sections/navigation/skeletons/Skeletons.d.ts +0 -40
- package/lib/components/sections/navigation/skeletons/Skeletons.d.ts.map +0 -1
package/package.json
CHANGED
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { LinkProps } from "../typography/Link";
|
|
3
|
-
import { SocialItem } from "../blocks/SocialList";
|
|
4
|
-
export declare const FooterComponent: React.FC<{
|
|
5
|
-
isInverted?: boolean | undefined;
|
|
6
|
-
logo?: {
|
|
7
|
-
img?: string | undefined;
|
|
8
|
-
link?: string | undefined;
|
|
9
|
-
} | undefined;
|
|
10
|
-
columnTopSpace?: string | undefined;
|
|
11
|
-
contactData?: string | undefined;
|
|
12
|
-
siteLinks?: (LinkProps & {
|
|
13
|
-
label?: string | undefined;
|
|
14
|
-
isActive?: boolean | undefined;
|
|
15
|
-
})[] | undefined;
|
|
16
|
-
newsTitle?: string | undefined;
|
|
17
|
-
newsText?: string | undefined;
|
|
18
|
-
newsForm?: ((isInverted?: boolean | undefined) => React.ReactNode) | undefined;
|
|
19
|
-
socials?: SocialItem[] | undefined;
|
|
20
|
-
bottomLinks?: {
|
|
21
|
-
href: string;
|
|
22
|
-
label?: string | undefined;
|
|
23
|
-
isExternal?: boolean | undefined;
|
|
24
|
-
}[] | undefined;
|
|
25
|
-
brandIcon?: React.ReactNode;
|
|
26
|
-
}>;
|
|
27
|
-
declare const _default: React.FC<{
|
|
28
|
-
isInverted?: boolean | undefined;
|
|
29
|
-
logo?: {
|
|
30
|
-
img?: string | undefined;
|
|
31
|
-
link?: string | undefined;
|
|
32
|
-
} | undefined;
|
|
33
|
-
columnTopSpace?: string | undefined;
|
|
34
|
-
contactData?: string | undefined;
|
|
35
|
-
siteLinks?: (LinkProps & {
|
|
36
|
-
label?: string | undefined;
|
|
37
|
-
isActive?: boolean | undefined;
|
|
38
|
-
})[] | undefined;
|
|
39
|
-
newsTitle?: string | undefined;
|
|
40
|
-
newsText?: string | undefined;
|
|
41
|
-
newsForm?: ((isInverted?: boolean | undefined) => React.ReactNode) | undefined;
|
|
42
|
-
socials?: SocialItem[] | undefined;
|
|
43
|
-
bottomLinks?: {
|
|
44
|
-
href: string;
|
|
45
|
-
label?: string | undefined;
|
|
46
|
-
isExternal?: boolean | undefined;
|
|
47
|
-
}[] | undefined;
|
|
48
|
-
brandIcon?: React.ReactNode;
|
|
49
|
-
} & {
|
|
50
|
-
theme?: import("../../utils/LibThemeProvider").RecursivePartial<import("styled-components").DefaultTheme> | undefined;
|
|
51
|
-
}>;
|
|
52
|
-
export default _default;
|
|
53
|
-
//# sourceMappingURL=Footer.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Footer.d.ts","sourceRoot":"","sources":["../../../src/components/sections/Footer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAa,MAAM,OAAO,CAAC;AAclC,OAAa,EAAE,SAAS,EAAE,2BAAmC;AAE7D,OAAmB,EAAE,UAAU,EAAE,6BAAqC;AAyXtE,eAAO,MAAM,eAAe;;;;;;;;;;;;;;sDArJa,MAAM,SAAS;;;cAE9B,MAAM;;;;gBAChB,MAAM,SAAS;EAkJM,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;AACtC,wBAAoC"}
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import { Language } from "../blocks/LanguageSwitcher";
|
|
2
|
-
import { SocialItem } from "../blocks/SocialList";
|
|
3
|
-
import { LinkProps } from "../typography/Link";
|
|
4
|
-
import React from 'react';
|
|
5
|
-
export interface SiteLinkGroup {
|
|
6
|
-
title?: string;
|
|
7
|
-
links?: Array<{
|
|
8
|
-
label?: string;
|
|
9
|
-
link?: LinkProps;
|
|
10
|
-
}>;
|
|
11
|
-
}
|
|
12
|
-
declare const FooterNew: React.FC<{
|
|
13
|
-
/** ID value for targeting section with anchor hashes */
|
|
14
|
-
anchorId?: string;
|
|
15
|
-
/** Section background */
|
|
16
|
-
bgMode?: 'full' | 'inverted';
|
|
17
|
-
siteLinks?: SiteLinkGroup[];
|
|
18
|
-
callToAction?: {
|
|
19
|
-
title?: string;
|
|
20
|
-
text?: string;
|
|
21
|
-
action?: (isInverted?: boolean) => React.ReactNode;
|
|
22
|
-
};
|
|
23
|
-
socials?: {
|
|
24
|
-
title?: string;
|
|
25
|
-
social: SocialItem[];
|
|
26
|
-
};
|
|
27
|
-
footNote?: string;
|
|
28
|
-
bottomLinks?: {
|
|
29
|
-
href: string;
|
|
30
|
-
label?: string;
|
|
31
|
-
isExternal?: boolean;
|
|
32
|
-
}[];
|
|
33
|
-
language?: Language[];
|
|
34
|
-
languageIcon?: () => React.ReactNode;
|
|
35
|
-
brandIcon?: boolean;
|
|
36
|
-
}>;
|
|
37
|
-
export default FooterNew;
|
|
38
|
-
//# sourceMappingURL=FooterNew.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"FooterNew.d.ts","sourceRoot":"","sources":["../../../src/components/sections/FooterNew.tsx"],"names":[],"mappings":"AAIA,OAAyB,EAAE,QAAQ,EAAE,mCAA2C;AAChF,OAAmB,EAAE,UAAU,EAAE,6BAAqC;AAEtE,OAAa,EAAE,SAAS,EAAE,2BAAmC;AAC7D,OAAO,KAAK,MAAM,OAAO,CAAC;AAqG1B,MAAM,WAAW,aAAa;IAC1B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,KAAK,CAAC;QAAE,KAAK,CAAC,EAAE,MAAM,CAAC;QAAC,IAAI,CAAC,EAAE,SAAS,CAAA;KAAE,CAAC,CAAC;CACvD;AAED,QAAA,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC;IACtB,wDAAwD;IACxD,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB,yBAAyB;IACzB,MAAM,CAAC,EAAE,MAAM,GAAG,UAAU,CAAC;IAE7B,SAAS,CAAC,EAAE,aAAa,EAAE,CAAC;IAC5B,YAAY,CAAC,EAAE;QACX,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,MAAM,CAAC,EAAE,CAAC,UAAU,CAAC,EAAE,OAAO,KAAK,KAAK,CAAC,SAAS,CAAC;KACtD,CAAC;IAEF,OAAO,CAAC,EAAE;QACN,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,MAAM,EAAE,UAAU,EAAE,CAAC;KACxB,CAAC;IACF,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,KAAK,CAAC,EAAE,MAAM,CAAC;QAAC,UAAU,CAAC,EAAE,OAAO,CAAA;KAAE,EAAE,CAAC;IACvE,QAAQ,CAAC,EAAE,QAAQ,EAAE,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,KAAK,CAAC,SAAS,CAAC;IACrC,SAAS,CAAC,EAAE,OAAO,CAAC;CACvB,CA8JA,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
declare const _default: {
|
|
3
|
-
Col: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
4
|
-
isInverted?: boolean | undefined;
|
|
5
|
-
takeSpace?: boolean | undefined;
|
|
6
|
-
vAlign?: "top" | "center" | "bottom" | undefined;
|
|
7
|
-
}, never>;
|
|
8
|
-
Logo: import("react").FC<{
|
|
9
|
-
link?: Omit<import("../../../typography/Link").LinkProps, "coverSpace" | "ratios"> | undefined;
|
|
10
|
-
logo?: import("../../../blocks/Image").ImageProps | undefined;
|
|
11
|
-
className?: string | undefined;
|
|
12
|
-
}>;
|
|
13
|
-
Toggle: import("react").FC<{
|
|
14
|
-
isInverted?: boolean | undefined;
|
|
15
|
-
isExpanded?: boolean | undefined;
|
|
16
|
-
onClick?: ((ev?: import("react").SyntheticEvent<HTMLButtonElement, Event> | undefined) => void) | undefined;
|
|
17
|
-
className?: string | undefined;
|
|
18
|
-
children?: import("react").ReactNode;
|
|
19
|
-
}>;
|
|
20
|
-
NavList: import("react").FC<{
|
|
21
|
-
isInverted?: boolean | undefined;
|
|
22
|
-
navLinks?: import("../menu/Menu").NavItem[] | undefined;
|
|
23
|
-
className?: string | undefined;
|
|
24
|
-
}>;
|
|
25
|
-
Breadcrumbs: import("react").FC<{
|
|
26
|
-
isInverted?: boolean | undefined;
|
|
27
|
-
rootLink?: import("../../../typography/Link").LinkProps | undefined;
|
|
28
|
-
rootLabel?: string | undefined;
|
|
29
|
-
navItems?: import("../menu/Menu").NavItem[] | undefined;
|
|
30
|
-
seperator?: ((props: {
|
|
31
|
-
isInverted?: boolean | undefined;
|
|
32
|
-
}) => import("react").ReactNode) | undefined;
|
|
33
|
-
back?: ((props: {
|
|
34
|
-
isInverted?: boolean | undefined;
|
|
35
|
-
}) => import("react").ReactNode) | undefined;
|
|
36
|
-
className?: string | undefined;
|
|
37
|
-
}>;
|
|
38
|
-
};
|
|
39
|
-
export default _default;
|
|
40
|
-
//# sourceMappingURL=Skeletons.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Skeletons.d.ts","sourceRoot":"","sources":["../../../../../src/components/sections/navigation/skeletons/Skeletons.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAMA,wBAME"}
|