@tactics/lokaal-loket 0.0.159 → 0.0.161
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +522 -520
- package/build/index.d.cts +6 -3
- package/build/index.d.ts +6 -3
- package/build/index.js +406 -404
- package/package.json +1 -1
package/build/index.d.cts
CHANGED
@@ -488,7 +488,8 @@ declare const Pill: ({ withIconBefore, label }: IPill) => react_jsx_runtime.JSX.
|
|
488
488
|
declare enum PinType {
|
489
489
|
DAYCARE = "DAYCARE",
|
490
490
|
CHILDMINDER = "CHILDMINDER",
|
491
|
-
COOPERATIVE = "COOPERATIVE"
|
491
|
+
COOPERATIVE = "COOPERATIVE",
|
492
|
+
OUT_OF_RANGE = "OUT_OF_RANGE"
|
492
493
|
}
|
493
494
|
|
494
495
|
interface IPinBase {
|
@@ -1037,9 +1038,11 @@ declare const Onboarding: ({ heading, content, cta, figure }: IOnboarding) => re
|
|
1037
1038
|
|
1038
1039
|
interface IQuickSearch {
|
1039
1040
|
heading: string;
|
1041
|
+
content: React$1.ReactNode;
|
1042
|
+
action: React$1.ReactNode;
|
1040
1043
|
}
|
1041
1044
|
|
1042
|
-
declare const QuickSearch: ({ heading }: IQuickSearch) => react_jsx_runtime.JSX.Element;
|
1045
|
+
declare const QuickSearch: ({ heading, content, action }: IQuickSearch) => react_jsx_runtime.JSX.Element;
|
1043
1046
|
|
1044
1047
|
interface IInfoCard {
|
1045
1048
|
figureType: FigureType;
|
@@ -1119,7 +1122,7 @@ interface IFooter {
|
|
1119
1122
|
declare const Footer: ({ top, left, right, bottom }: IFooter) => react_jsx_runtime.JSX.Element;
|
1120
1123
|
|
1121
1124
|
type TerminalType = "ORIGIN" | "DESTINATION";
|
1122
|
-
type PointType = "DAYCARE" | "CHILDMINDER" | "COOPERATIVE";
|
1125
|
+
type PointType = "DAYCARE" | "CHILDMINDER" | "COOPERATIVE" | "OUT_OF_RANGE";
|
1123
1126
|
interface ITerminal {
|
1124
1127
|
key: string;
|
1125
1128
|
name: string;
|
package/build/index.d.ts
CHANGED
@@ -488,7 +488,8 @@ declare const Pill: ({ withIconBefore, label }: IPill) => react_jsx_runtime.JSX.
|
|
488
488
|
declare enum PinType {
|
489
489
|
DAYCARE = "DAYCARE",
|
490
490
|
CHILDMINDER = "CHILDMINDER",
|
491
|
-
COOPERATIVE = "COOPERATIVE"
|
491
|
+
COOPERATIVE = "COOPERATIVE",
|
492
|
+
OUT_OF_RANGE = "OUT_OF_RANGE"
|
492
493
|
}
|
493
494
|
|
494
495
|
interface IPinBase {
|
@@ -1037,9 +1038,11 @@ declare const Onboarding: ({ heading, content, cta, figure }: IOnboarding) => re
|
|
1037
1038
|
|
1038
1039
|
interface IQuickSearch {
|
1039
1040
|
heading: string;
|
1041
|
+
content: React$1.ReactNode;
|
1042
|
+
action: React$1.ReactNode;
|
1040
1043
|
}
|
1041
1044
|
|
1042
|
-
declare const QuickSearch: ({ heading }: IQuickSearch) => react_jsx_runtime.JSX.Element;
|
1045
|
+
declare const QuickSearch: ({ heading, content, action }: IQuickSearch) => react_jsx_runtime.JSX.Element;
|
1043
1046
|
|
1044
1047
|
interface IInfoCard {
|
1045
1048
|
figureType: FigureType;
|
@@ -1119,7 +1122,7 @@ interface IFooter {
|
|
1119
1122
|
declare const Footer: ({ top, left, right, bottom }: IFooter) => react_jsx_runtime.JSX.Element;
|
1120
1123
|
|
1121
1124
|
type TerminalType = "ORIGIN" | "DESTINATION";
|
1122
|
-
type PointType = "DAYCARE" | "CHILDMINDER" | "COOPERATIVE";
|
1125
|
+
type PointType = "DAYCARE" | "CHILDMINDER" | "COOPERATIVE" | "OUT_OF_RANGE";
|
1123
1126
|
interface ITerminal {
|
1124
1127
|
key: string;
|
1125
1128
|
name: string;
|