@conduction/components 1.0.29 → 2.0.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.
Files changed (81) hide show
  1. package/README.md +10 -0
  2. package/lib/components/card/detailsCard/DetailsCard.d.ts +14 -0
  3. package/lib/components/card/detailsCard/DetailsCard.js +10 -0
  4. package/lib/components/card/detailsCard/DetailsCard.module.css +51 -0
  5. package/lib/components/card/downloadCard/DownloadCard.d.ts +10 -0
  6. package/lib/components/card/downloadCard/DownloadCard.js +8 -0
  7. package/lib/components/card/downloadCard/DownloadCard.module.css +27 -0
  8. package/lib/components/card/horizontalImageCard/HorizontalImageCard.d.ts +13 -0
  9. package/lib/components/card/horizontalImageCard/HorizontalImageCard.js +9 -0
  10. package/lib/components/card/horizontalImageCard/HorizontalImageCard.module.css +34 -0
  11. package/lib/components/card/imageAndDetailsCard/ImageAndDetailsCard.d.ts +14 -0
  12. package/lib/components/card/imageAndDetailsCard/ImageAndDetailsCard.js +9 -0
  13. package/lib/components/card/imageAndDetailsCard/ImageAndDetailsCard.module.css +63 -0
  14. package/lib/components/card/index.d.ts +7 -0
  15. package/lib/components/card/index.js +7 -0
  16. package/lib/components/card/infoCard/InfoCard.d.ts +7 -0
  17. package/lib/components/card/infoCard/InfoCard.js +5 -0
  18. package/lib/components/card/infoCard/InfoCard.module.css +26 -0
  19. package/lib/components/card/richContentCard/RichContentCard.d.ts +19 -0
  20. package/lib/components/card/richContentCard/RichContentCard.js +15 -0
  21. package/lib/components/card/richContentCard/RichContentCard.module.css +93 -0
  22. package/lib/components/container/Container.d.ts +6 -0
  23. package/lib/components/container/Container.js +4 -0
  24. package/lib/components/container/Container.module.css +9 -0
  25. package/lib/components/denhaag-wrappers/breadcrumbs/Breadcrumbs.css +222 -0
  26. package/lib/components/denhaag-wrappers/breadcrumbs/Breadcrumbs.d.ts +17 -0
  27. package/lib/components/denhaag-wrappers/breadcrumbs/Breadcrumbs.js +20 -0
  28. package/lib/components/denhaag-wrappers/pagination/Pagination.css +120 -0
  29. package/lib/components/denhaag-wrappers/pagination/Pagination.d.ts +9 -0
  30. package/lib/components/denhaag-wrappers/pagination/Pagination.js +15 -0
  31. package/lib/components/editableTableRow/EditableTableRow.d.ts +14 -0
  32. package/lib/components/editableTableRow/EditableTableRow.js +31 -0
  33. package/lib/components/editableTableRow/EditableTableRow.module.css +25 -0
  34. package/lib/components/formFields/checkbox.d.ts +7 -0
  35. package/lib/components/formFields/checkbox.js +3 -0
  36. package/lib/components/formFields/index.d.ts +6 -0
  37. package/lib/components/formFields/index.js +6 -0
  38. package/lib/components/formFields/input.d.ts +19 -0
  39. package/lib/components/formFields/input.js +13 -0
  40. package/lib/components/formFields/radio.d.ts +9 -0
  41. package/lib/components/formFields/radio.js +3 -0
  42. package/lib/components/formFields/select/select.d.ts +16 -0
  43. package/lib/components/formFields/select/select.js +14 -0
  44. package/lib/components/formFields/select/select.module.css +35 -0
  45. package/lib/components/formFields/textarea.d.ts +8 -0
  46. package/lib/components/formFields/textarea.js +3 -0
  47. package/lib/components/formFields/types.d.ts +6 -0
  48. package/lib/components/formFields/types.js +1 -0
  49. package/lib/components/imageDivider/ImageDivider.d.ts +7 -0
  50. package/lib/components/imageDivider/ImageDivider.js +6 -0
  51. package/lib/components/imageDivider/imageDivider.module.css +5 -0
  52. package/lib/components/logo/Logo.d.ts +8 -0
  53. package/lib/components/logo/Logo.js +10 -0
  54. package/lib/components/logo/Logo.module.css +15 -0
  55. package/lib/components/metaIcon/MetaIcon.d.ts +7 -0
  56. package/lib/components/metaIcon/MetaIcon.js +3 -0
  57. package/lib/components/metaIcon/MetaIcon.module.css +29 -0
  58. package/lib/components/notificationPopUp/NotificationPopUp.d.ts +22 -0
  59. package/lib/components/notificationPopUp/NotificationPopUp.js +31 -0
  60. package/lib/components/notificationPopUp/NotificationPopUp.module.css +61 -0
  61. package/lib/components/privateRoute/PrivateRoute.d.ts +6 -0
  62. package/lib/components/privateRoute/PrivateRoute.js +15 -0
  63. package/lib/components/quoteWrapper/QuoteWrapper.d.ts +7 -0
  64. package/lib/components/quoteWrapper/QuoteWrapper.js +5 -0
  65. package/lib/components/quoteWrapper/QuoteWrapper.module.css +12 -0
  66. package/lib/components/statusSteps/StatusSteps.d.ts +13 -0
  67. package/lib/components/statusSteps/StatusSteps.js +5 -0
  68. package/lib/components/tag/Tag.d.ts +6 -0
  69. package/lib/components/tag/Tag.js +3 -0
  70. package/lib/components/tag/Tag.module.css +20 -0
  71. package/lib/components/topNav/index.d.ts +3 -0
  72. package/lib/components/topNav/index.js +3 -0
  73. package/lib/components/topNav/primaryTopNav/PrimaryTopNav.d.ts +17 -0
  74. package/lib/components/topNav/primaryTopNav/PrimaryTopNav.js +7 -0
  75. package/lib/components/topNav/primaryTopNav/PrimaryTopNav.module.css +60 -0
  76. package/lib/components/topNav/secondaryTopNav/SecondaryTopNav.d.ts +11 -0
  77. package/lib/components/topNav/secondaryTopNav/SecondaryTopNav.js +7 -0
  78. package/lib/components/topNav/secondaryTopNav/SecondaryTopNav.module.css +43 -0
  79. package/lib/index.d.ts +24 -0
  80. package/lib/index.js +17 -0
  81. package/package.json +2 -7
@@ -0,0 +1,7 @@
1
+ import * as React from "react";
2
+ interface ImageDividerProps {
3
+ image: string;
4
+ layoutClassName: string;
5
+ }
6
+ export declare const ImageDivider: React.FC<ImageDividerProps>;
7
+ export {};
@@ -0,0 +1,6 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import clsx from "clsx";
3
+ import * as styles from "./imageDivider.module.css";
4
+ export const ImageDivider = ({ image, layoutClassName }) => {
5
+ return _jsx("img", { src: image, className: clsx(styles.divider, layoutClassName) });
6
+ };
@@ -0,0 +1,5 @@
1
+ .divider {
2
+ display: block;
3
+ object-fit: cover;
4
+ width: 100%;
5
+ }
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ interface LogoProps {
3
+ layoutClassName: string;
4
+ href?: string;
5
+ }
6
+ export declare const AuthenticatedLogo: React.FC<LogoProps>;
7
+ export declare const UnauthenticatedLogo: React.FC<LogoProps>;
8
+ export {};
@@ -0,0 +1,10 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import clsx from "clsx";
3
+ import { Link } from "gatsby";
4
+ import * as styles from "./Logo.module.css";
5
+ export const AuthenticatedLogo = ({ layoutClassName, href }) => {
6
+ return (_jsx(Link, { className: styles.logoContainer, to: href ?? "#", children: _jsx("div", { className: clsx(styles.authenticatedLogo, styles.logo, layoutClassName) }) }));
7
+ };
8
+ export const UnauthenticatedLogo = ({ layoutClassName, href }) => {
9
+ return (_jsx(Link, { className: styles.logoContainer, to: href ?? "#", children: _jsx("div", { className: clsx(styles.unauthenticatedLogo, styles.logo, layoutClassName) }) }));
10
+ };
@@ -0,0 +1,15 @@
1
+ .logoContainer {
2
+ height: 100%;
3
+ }
4
+
5
+ .logo {
6
+ background-size: 100% 100%;
7
+ }
8
+
9
+ .authenticatedLogo {
10
+ background-image: var(--conduction-authenticated-logo-background);
11
+ }
12
+
13
+ .unauthenticatedLogo {
14
+ background-image: var(--conduction-unauthenticated-logo-background);
15
+ }
@@ -0,0 +1,7 @@
1
+ import * as React from "react";
2
+ export interface MetaIconProps {
3
+ icon: JSX.Element;
4
+ label: string;
5
+ value: string;
6
+ }
7
+ export declare const MetaIcon: React.FC<MetaIconProps>;
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import * as styles from "./MetaIcon.module.css";
3
+ export const MetaIcon = ({ icon, label, value }) => (_jsxs("div", { className: styles.container, children: [_jsx("span", { className: styles.icon, children: icon }), _jsx("span", { children: label }), _jsx("span", { className: styles.value, children: value })] }));
@@ -0,0 +1,29 @@
1
+ :root {
2
+ --conduction-meta-icon-icon-size: var(--skeleton-size-lg);
3
+ --conduction-meta-icon-icon-color: var(--skeleton-color-secondary-4);
4
+ }
5
+
6
+ .container {
7
+ display: flex;
8
+ align-items: center;
9
+ flex-direction: column;
10
+ }
11
+
12
+ .container > *:not(:last-child) {
13
+ margin-block-end: var(--skeleton-size-xs);
14
+ }
15
+
16
+ .icon {
17
+ color: var(--conduction-meta-icon-icon-color);
18
+ height: var(--conduction-meta-icon-icon-size);
19
+ width: var(--conduction-meta-icon-icon-size);
20
+ }
21
+
22
+ .icon > svg {
23
+ height: 100%;
24
+ width: 100%;
25
+ }
26
+
27
+ .value {
28
+ font-weight: var(--skeleton-font-weight-bold);
29
+ }
@@ -0,0 +1,22 @@
1
+ import * as React from "react";
2
+ export interface NotificationPopUpProps {
3
+ title: string;
4
+ description: string | JSX.Element;
5
+ isVisible: boolean;
6
+ hide: () => void;
7
+ primaryButton: {
8
+ label: string;
9
+ handleClick: () => any;
10
+ };
11
+ secondaryButton?: {
12
+ label: string;
13
+ handleClick: () => any;
14
+ };
15
+ layoutClassName?: string;
16
+ }
17
+ export declare const NotificationPopUp: React.FC<NotificationPopUpProps>;
18
+ export declare const NotificationPopUpController: () => {
19
+ isVisible: boolean;
20
+ show: () => void;
21
+ hide: () => void;
22
+ };
@@ -0,0 +1,31 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import * as React from "react";
3
+ import * as styles from "./NotificationPopUp.module.css";
4
+ import ReactDOM from "react-dom";
5
+ import { Button, Heading3, Link, Paragraph, StylesProvider } from "@gemeente-denhaag/components-react";
6
+ import clsx from "clsx";
7
+ import { CloseIcon, ArrowRightIcon } from "@gemeente-denhaag/icons";
8
+ export const NotificationPopUp = ({ title, description, isVisible, hide, primaryButton, secondaryButton, layoutClassName, }) => {
9
+ const [animationVisible, setAnimationVisible] = React.useState(true);
10
+ const animationDuration = parseInt(styles.animationDuration, 10);
11
+ const handleClick = (clickFunction) => {
12
+ setAnimationVisible(!setAnimationVisible);
13
+ clickFunction && clickFunction();
14
+ setTimeout(() => {
15
+ hide();
16
+ setAnimationVisible(true);
17
+ }, animationDuration);
18
+ };
19
+ const modal = (_jsx(StylesProvider, { children: _jsxs("div", { style: { animationDuration: `${animationDuration}ms` }, className: clsx(styles.modal, animationVisible && styles.visible, layoutClassName), children: [_jsx(Heading3, { children: title }), _jsx(Paragraph, { children: description }), _jsxs("div", { className: styles.buttons, children: [secondaryButton && (_jsx("div", { onClick: () => handleClick(secondaryButton.handleClick), children: _jsx(Link, { icon: _jsx(CloseIcon, {}), iconAlign: "start", children: secondaryButton.label }) })), _jsx(Button, { icon: _jsx(ArrowRightIcon, {}), onClick: () => handleClick(primaryButton.handleClick), children: primaryButton.label })] })] }) }));
20
+ return isVisible ? ReactDOM.createPortal(modal, document.body) : null;
21
+ };
22
+ export const NotificationPopUpController = () => {
23
+ const [isVisible, setIsVisible] = React.useState(false);
24
+ const show = () => setIsVisible(true);
25
+ const hide = () => setIsVisible(false);
26
+ return {
27
+ isVisible,
28
+ show,
29
+ hide,
30
+ };
31
+ };
@@ -0,0 +1,61 @@
1
+ :root {
2
+ --conduction-notification-pop-up-box-shadow: 0px 0px 6px 6px rgb(0 0 0 / 15%);
3
+ --conduction-notification-pop-up-border: 1px solid var(--skeleton-color-grey-2);
4
+ }
5
+
6
+ :export {
7
+ animationDuration: 200ms;
8
+ }
9
+
10
+ .modal {
11
+ animation-fill-mode: both;
12
+ background: var(--skeleton-color-grey-1);
13
+ padding-inline-start: var(--skeleton-size-lg);
14
+ padding-inline-end: var(--skeleton-size-lg);
15
+ padding-block-start: var(--skeleton-size-lg);
16
+ padding-block-end: var(--skeleton-size-lg);
17
+ border-radius: var(--skeleton-border-radius-md);
18
+ box-shadow: var(--conduction-notification-pop-up-box-shadow);
19
+ }
20
+
21
+ .modal > *:not(:last-child) {
22
+ margin-block-end: var(--skeleton-size-md);
23
+ }
24
+
25
+ .buttons {
26
+ display: flex;
27
+ justify-content: flex-end;
28
+ align-items: center;
29
+ }
30
+
31
+ .buttons > *:not(:last-child) {
32
+ margin-inline-end: var(--skeleton-size-md);
33
+ }
34
+
35
+ .visible {
36
+ animation-name: fadeInBottom;
37
+ }
38
+
39
+ @keyframes fadeInBottom {
40
+ from {
41
+ opacity: 0;
42
+ transform: translateY(100%);
43
+ }
44
+ to {
45
+ opacity: 1;
46
+ }
47
+ }
48
+
49
+ .modal:not(.visible) {
50
+ animation-name: fadeOutBottom;
51
+ }
52
+
53
+ @keyframes fadeOutBottom {
54
+ from {
55
+ opacity: 1;
56
+ }
57
+ to {
58
+ opacity: 0;
59
+ transform: translateY(100%);
60
+ }
61
+ }
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ interface PrivateRouteProps {
3
+ authenticated: boolean;
4
+ }
5
+ export declare const PrivateRoute: React.FC<PrivateRouteProps>;
6
+ export {};
@@ -0,0 +1,15 @@
1
+ import { Fragment as _Fragment, jsx as _jsx } from "react/jsx-runtime";
2
+ import React from "react";
3
+ import { navigate } from "gatsby";
4
+ export const PrivateRoute = ({ children, authenticated }) => {
5
+ const [_authenticated, setAuthenticated] = React.useState(false);
6
+ React.useEffect(() => {
7
+ if (!authenticated && window.location.pathname !== "/login") {
8
+ navigate("/login");
9
+ }
10
+ authenticated && setAuthenticated(true);
11
+ }, [authenticated]);
12
+ if (!_authenticated)
13
+ return _jsx(_Fragment, {});
14
+ return _jsx(_Fragment, { children: children });
15
+ };
@@ -0,0 +1,7 @@
1
+ import * as React from "react";
2
+ interface QuoteWrapperProps {
3
+ borderColor?: string;
4
+ borderWidth?: string;
5
+ }
6
+ export declare const QuoteWrapper: React.FC<QuoteWrapperProps>;
7
+ export {};
@@ -0,0 +1,5 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import * as styles from "./QuoteWrapper.module.css";
3
+ export const QuoteWrapper = ({ children, borderColor, borderWidth }) => {
4
+ return (_jsx("div", { style: { borderLeftColor: borderColor, borderLeftWidth: borderWidth }, className: styles.container, children: children }));
5
+ };
@@ -0,0 +1,12 @@
1
+ :root {
2
+ --conduction-quote-wrapper-border-width: var(--skeleton-size-sm);
3
+ --conduction-quote-wrapper-border-color: var(--skeleton-color-grey-1);
4
+ --conduction-quote-wrapper-padding-inline: var(--skeleton-size-lg);
5
+ }
6
+
7
+ .container {
8
+ border-left-width: var(--conduction-quote-wrapper-border-width);
9
+ border-left-style: solid;
10
+ border-left-color: var(--conduction-quote-wrapper-border-color);
11
+ padding-inline-start: var(--conduction-quote-wrapper-padding-inline);
12
+ }
@@ -0,0 +1,13 @@
1
+ import * as React from "react";
2
+ interface IStatusStep {
3
+ title: string;
4
+ checked?: boolean;
5
+ current?: boolean;
6
+ expanded?: boolean;
7
+ subSteps?: string[];
8
+ }
9
+ interface StatusStepsProps {
10
+ steps: IStatusStep[];
11
+ }
12
+ export declare const StatusSteps: React.FC<StatusStepsProps>;
13
+ export {};
@@ -0,0 +1,5 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { Step, StepExpandedIcon, StepHeader, StepHeading, StepList, StepMarker, StepSection, SubStep, SubStepHeading, SubStepList, SubStepMarker, } from "@gemeente-denhaag/process-steps";
3
+ export const StatusSteps = ({ steps }) => {
4
+ return (_jsx(StepList, { children: steps.map(({ title, checked, current, expanded, subSteps }, idx) => (_jsxs(Step, { ...{ checked, current, expanded }, children: [_jsx(StepSection, { children: _jsxs(StepHeader, { children: [_jsx(StepMarker, { children: idx + 1 }), _jsx(StepHeading, { children: title }), subSteps && _jsx(StepExpandedIcon, {})] }) }), subSteps && (_jsx(SubStepList, { children: subSteps.map((subStep) => (_jsxs(SubStep, { children: [_jsx(SubStepMarker, {}), _jsx(SubStepHeading, { children: subStep })] }, idx))) }))] }, idx))) }));
5
+ };
@@ -0,0 +1,6 @@
1
+ import * as React from "react";
2
+ interface TagProps {
3
+ tag: string;
4
+ }
5
+ export declare const Tag: React.FC<TagProps>;
6
+ export {};
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import * as styles from "./Tag.module.css";
3
+ export const Tag = ({ tag }) => _jsx("span", { className: styles.tag, children: tag });
@@ -0,0 +1,20 @@
1
+ :root {
2
+ --conduction-tag-font-size: var(--skeleton-font-size-sm);
3
+ --conduction-tag-color: var(--skeleton-black);
4
+ --conduction-tag-backgrond-color: var(--skeleton-color-grey-1);
5
+ --conduction-tag-border-radius: var(--skeleton-border-radius-md);
6
+ --conduction-tag-padding: var(--skeleton-size-xs);
7
+ }
8
+
9
+ .tag {
10
+ display: inline-block;
11
+ width: fit-content;
12
+ font-size: var(--conduction-tag-font-size);
13
+ color: var(--conduction-tag-color);
14
+ background-color: var(--conduction-tag-backgrond-color);
15
+ border-radius: var(--conduction-tag-border-radius);
16
+ padding-inline-start: var(--conduction-tag-padding);
17
+ padding-inline-end: var(--conduction-tag-padding);
18
+ padding-block-start: var(--conduction-tag-padding);
19
+ padding-block-end: var(--conduction-tag-padding);
20
+ }
@@ -0,0 +1,3 @@
1
+ import { PrimaryTopNav } from "./primaryTopNav/PrimaryTopNav";
2
+ import { SecondaryTopNav } from "./secondaryTopNav/SecondaryTopNav";
3
+ export { PrimaryTopNav, SecondaryTopNav };
@@ -0,0 +1,3 @@
1
+ import { PrimaryTopNav } from "./primaryTopNav/PrimaryTopNav";
2
+ import { SecondaryTopNav } from "./secondaryTopNav/SecondaryTopNav";
3
+ export { PrimaryTopNav, SecondaryTopNav };
@@ -0,0 +1,17 @@
1
+ import * as React from "react";
2
+ interface ITopNavItem {
3
+ label: string;
4
+ icon?: JSX.Element;
5
+ handleClick?: () => any;
6
+ subItems?: {
7
+ label: string;
8
+ icon?: JSX.Element;
9
+ handleClick?: () => any;
10
+ }[];
11
+ }
12
+ export interface TopNavProps {
13
+ items: ITopNavItem[];
14
+ layoutClassName?: string;
15
+ }
16
+ export declare const PrimaryTopNav: React.FC<TopNavProps>;
17
+ export {};
@@ -0,0 +1,7 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { Link } from "@gemeente-denhaag/components-react";
3
+ import * as styles from "./PrimaryTopNav.module.css";
4
+ import clsx from "clsx";
5
+ export const PrimaryTopNav = ({ items, layoutClassName }) => {
6
+ return (_jsx("div", { className: clsx(styles.primary, layoutClassName && layoutClassName), children: _jsx("nav", { className: styles.primary, children: _jsx("ul", { className: styles.ul, children: items.map(({ label, icon, handleClick, subItems }, idx) => (_jsxs("li", { className: styles.li, children: [_jsx("div", { onClick: handleClick, children: _jsx(Link, { className: styles.link, icon: icon, iconAlign: "start", children: label }) }), subItems && (_jsx("ul", { className: styles.dropdown, children: subItems.map(({ label, icon, handleClick }, idx) => (_jsx("li", { className: styles.li, onClick: handleClick, children: _jsx(Link, { className: styles.link, icon: icon, iconAlign: "start", children: label }) }, idx))) }))] }, idx))) }) }) }));
7
+ };
@@ -0,0 +1,60 @@
1
+ :root {
2
+ --conduction-primary-top-nav-item-padding: var(--skeleton-size-md);
3
+ --conduction-primary-top-nav-color: var(--skeleton-color-white);
4
+ --conduction-primary-top-nav-background-color: var(--skeleton-color-secondary-3);
5
+ --conduction-primary-top-nav-background-color-hover: var(--skeleton-color-secondary-5);
6
+ --conduction-primary-top-nav-dropdown-border-radius: var(--skeleton-border-radius-md);
7
+ }
8
+
9
+ .primary:hover {
10
+ cursor: pointer;
11
+ }
12
+
13
+ .ul {
14
+ margin: unset;
15
+ display: flex;
16
+ padding-inline-start: unset;
17
+ align-items: center;
18
+ }
19
+
20
+ .li {
21
+ list-style-type: none;
22
+ display: block;
23
+ position: relative;
24
+ }
25
+
26
+ .primary {
27
+ font-weight: 500;
28
+ width: fit-content;
29
+ background-color: var(--conduction-primary-top-nav-background-color);
30
+ }
31
+
32
+ .primary .link {
33
+ display: block;
34
+ color: var(--conduction-primary-top-nav-color);
35
+ padding-inline-start: var(--conduction-primary-top-nav-item-padding);
36
+ padding-inline-end: var(--conduction-primary-top-nav-item-padding);
37
+ padding-block-start: var(--conduction-primary-top-nav-item-padding);
38
+ padding-block-end: var(--conduction-primary-top-nav-item-padding);
39
+ }
40
+
41
+ .primary .li:hover {
42
+ background-color: var(--conduction-primary-top-nav-background-color-hover);
43
+ }
44
+
45
+ .primary .li:hover .dropdown {
46
+ display: block;
47
+ z-index: 1;
48
+ }
49
+
50
+ .dropdown {
51
+ left: 0;
52
+ padding: 0;
53
+ width: 100%;
54
+ display: none;
55
+ position: absolute;
56
+ list-style-type: none;
57
+ background-color: var(--conduction-primary-top-nav-background-color);
58
+ border-bottom-right-radius: var(--conduction-primary-top-nav-dropdown-border-radius);
59
+ border-bottom-left-radius: var(--conduction-primary-top-nav-dropdown-border-radius);
60
+ }
@@ -0,0 +1,11 @@
1
+ import * as React from "react";
2
+ interface TopNavProps {
3
+ items: {
4
+ label: string;
5
+ icon?: JSX.Element;
6
+ handleClick: () => any;
7
+ }[];
8
+ layoutClassName?: string;
9
+ }
10
+ export declare const SecondaryTopNav: React.FC<TopNavProps>;
11
+ export {};
@@ -0,0 +1,7 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import * as styles from "./SecondaryTopnav.module.css";
3
+ import { Link } from "@gemeente-denhaag/components-react";
4
+ import clsx from "clsx";
5
+ export const SecondaryTopNav = ({ items, layoutClassName }) => {
6
+ return (_jsx("div", { className: clsx(styles.secondary, layoutClassName && layoutClassName), children: _jsx("nav", { children: _jsx("ul", { className: styles.ul, children: items.map(({ label, icon, handleClick }, idx) => (_jsx("li", { className: styles.li, onClick: handleClick, children: _jsx(Link, { className: styles.link, icon: icon, iconAlign: "start", children: label }) }, idx))) }) }) }));
7
+ };
@@ -0,0 +1,43 @@
1
+ :root {
2
+ --conduction-secondary-top-nav-item-padding: var(--skeleton-size-md);
3
+ --conduction-secondary-top-nav-font-size: var(--skeleton-font-size-md);
4
+ --conduction-secondary-top-nav-color: var(--skeleton-color-white);
5
+ --conduction-secondary-top-nav-background-color: var(--skeleton-color-secondary-5);
6
+ --conduction-secondary-top-nav-background-color-hover: var(--skeleton-color-secondary-3);
7
+ --conduction-secondary-top-nav-font-weight: var(--skeleton-font-weight-light);
8
+ }
9
+
10
+ .secondary:hover {
11
+ cursor: pointer;
12
+ }
13
+
14
+ .ul {
15
+ margin: unset;
16
+ display: flex;
17
+ padding-inline-start: unset;
18
+ align-items: center;
19
+ }
20
+
21
+ .li {
22
+ list-style-type: none;
23
+ display: block;
24
+ padding-inline-start: var(--conduction-secondary-top-nav-item-padding);
25
+ padding-inline-end: var(--conduction-secondary-top-nav-item-padding);
26
+ padding-block-start: var(--conduction-secondary-top-nav-item-padding);
27
+ padding-block-end: var(--conduction-secondary-top-nav-item-padding);
28
+ }
29
+
30
+ .secondary {
31
+ font-weight: var(--conduction-secondary-top-nav-font-weight);
32
+ width: fit-content;
33
+ font-size: var(--conduction-secondary-top-nav-font-size);
34
+ background-color: var(--conduction-secondary-top-nav-background-color);
35
+ }
36
+
37
+ .secondary .link {
38
+ color: var(--conduction-secondary-top-nav-color);
39
+ }
40
+
41
+ .secondary .li:hover {
42
+ background-color: var(--conduction-secondary-top-nav-background-color-hover);
43
+ }
package/lib/index.d.ts ADDED
@@ -0,0 +1,24 @@
1
+ /// <reference types="react" />
2
+ import { DownloadCard, HorizontalImageCard, ImageAndDetailsCard, RichContentCard, DetailsCard, InfoCard } from "./components/card";
3
+ import { Container } from "./components/container/Container";
4
+ import { Breadcrumbs } from "./components/denhaag-wrappers/breadcrumbs/Breadcrumbs";
5
+ import { EditableTableRow } from "./components/editableTableRow/EditableTableRow";
6
+ import { InputText, InputPassword, InputEmail, InputDate, InputNumber, Textarea, InputCheckbox, InputRadio, InputFile, SelectMultiple, SelectSingle } from "./components/formFields";
7
+ import { ImageDivider } from "./components/imageDivider/ImageDivider";
8
+ import { AuthenticatedLogo, UnauthenticatedLogo } from "./components/logo/Logo";
9
+ import { MetaIcon } from "./components/metaIcon/MetaIcon";
10
+ import { PrivateRoute } from "./components/privateRoute/PrivateRoute";
11
+ import { StatusSteps } from "./components/statusSteps/StatusSteps";
12
+ import { PrimaryTopNav, SecondaryTopNav } from "./components/topNav";
13
+ import { Tag } from "./components/tag/Tag";
14
+ declare const NotificationPopUp: {
15
+ controller: () => {
16
+ isVisible: boolean;
17
+ show: () => void;
18
+ hide: () => void;
19
+ };
20
+ NotificationPopUp: import("react").FC<import("./components/notificationPopUp/NotificationPopUp").NotificationPopUpProps>;
21
+ };
22
+ import { QuoteWrapper } from "./components/quoteWrapper/QuoteWrapper";
23
+ import { Pagination } from "./components/denhaag-wrappers/pagination/Pagination";
24
+ export { InputRadio, DownloadCard, HorizontalImageCard, ImageAndDetailsCard, RichContentCard, DetailsCard, InfoCard, Container, Breadcrumbs, EditableTableRow, InputText, InputPassword, InputEmail, InputDate, InputNumber, InputFile, Textarea, InputCheckbox, SelectMultiple, SelectSingle, ImageDivider, AuthenticatedLogo, UnauthenticatedLogo, MetaIcon, PrivateRoute, StatusSteps, PrimaryTopNav, SecondaryTopNav, Tag, NotificationPopUp, QuoteWrapper, Pagination, };
package/lib/index.js ADDED
@@ -0,0 +1,17 @@
1
+ import { DownloadCard, HorizontalImageCard, ImageAndDetailsCard, RichContentCard, DetailsCard, InfoCard, } from "./components/card";
2
+ import { Container } from "./components/container/Container";
3
+ import { Breadcrumbs } from "./components/denhaag-wrappers/breadcrumbs/Breadcrumbs";
4
+ import { EditableTableRow } from "./components/editableTableRow/EditableTableRow";
5
+ import { InputText, InputPassword, InputEmail, InputDate, InputNumber, Textarea, InputCheckbox, InputRadio, InputFile, SelectMultiple, SelectSingle, } from "./components/formFields";
6
+ import { ImageDivider } from "./components/imageDivider/ImageDivider";
7
+ import { AuthenticatedLogo, UnauthenticatedLogo } from "./components/logo/Logo";
8
+ import { MetaIcon } from "./components/metaIcon/MetaIcon";
9
+ import { PrivateRoute } from "./components/privateRoute/PrivateRoute";
10
+ import { StatusSteps } from "./components/statusSteps/StatusSteps";
11
+ import { PrimaryTopNav, SecondaryTopNav } from "./components/topNav";
12
+ import { Tag } from "./components/tag/Tag";
13
+ import { NotificationPopUpController, NotificationPopUp as _NotificationPopUp, } from "./components/notificationPopUp/NotificationPopUp";
14
+ const NotificationPopUp = { controller: NotificationPopUpController, NotificationPopUp: _NotificationPopUp };
15
+ import { QuoteWrapper } from "./components/quoteWrapper/QuoteWrapper";
16
+ import { Pagination } from "./components/denhaag-wrappers/pagination/Pagination";
17
+ export { InputRadio, DownloadCard, HorizontalImageCard, ImageAndDetailsCard, RichContentCard, DetailsCard, InfoCard, Container, Breadcrumbs, EditableTableRow, InputText, InputPassword, InputEmail, InputDate, InputNumber, InputFile, Textarea, InputCheckbox, SelectMultiple, SelectSingle, ImageDivider, AuthenticatedLogo, UnauthenticatedLogo, MetaIcon, PrivateRoute, StatusSteps, PrimaryTopNav, SecondaryTopNav, Tag, NotificationPopUp, QuoteWrapper, Pagination, };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conduction/components",
3
- "version": "1.0.29",
3
+ "version": "2.0.0",
4
4
  "description": "React (Gatsby) components used within the Conduction Skeleton Application (and its implementations)",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -11,12 +11,7 @@
11
11
  "type": "git",
12
12
  "url": "git+https://github.com/ConductionNL/conduction-components.git"
13
13
  },
14
- "keywords": [
15
- "React",
16
- "Gatsby",
17
- "Conduction",
18
- "Components"
19
- ],
14
+ "keywords": ["React", "Gatsby", "Conduction", "Components"],
20
15
  "author": "Conduction B.V.",
21
16
  "license": "ISC",
22
17
  "bugs": {