@tactics/lokaal-loket 0.0.94 → 0.0.96
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +511 -487
- package/build/index.d.cts +8 -3
- package/build/index.d.ts +8 -3
- package/build/index.js +373 -349
- package/package.json +1 -1
package/build/index.d.cts
CHANGED
@@ -765,11 +765,15 @@ declare enum MaskType {
|
|
765
765
|
TWO = "TWO"
|
766
766
|
}
|
767
767
|
|
768
|
-
interface IMaskedImage {
|
769
|
-
|
768
|
+
interface IMaskedImage extends IMaskedImageBase {
|
769
|
+
}
|
770
|
+
interface IMaskedImageBase {
|
771
|
+
height: number;
|
772
|
+
maskType: MaskType;
|
773
|
+
imagePath: string;
|
770
774
|
}
|
771
775
|
|
772
|
-
declare const MaskedImage: (
|
776
|
+
declare const MaskedImage: (props: IMaskedImage) => react_jsx_runtime.JSX.Element;
|
773
777
|
|
774
778
|
interface RouteI<T, R, D> {
|
775
779
|
name: string;
|
@@ -1191,6 +1195,7 @@ interface IHomeSectionGettingStarted {
|
|
1191
1195
|
title: string;
|
1192
1196
|
quickSearch: React$1.ReactElement;
|
1193
1197
|
onBoarding: React$1.ReactElement;
|
1198
|
+
imagePath: string;
|
1194
1199
|
}
|
1195
1200
|
|
1196
1201
|
declare const HomeSectionGettingStarted: (props: IHomeSectionGettingStarted) => react_jsx_runtime.JSX.Element;
|
package/build/index.d.ts
CHANGED
@@ -765,11 +765,15 @@ declare enum MaskType {
|
|
765
765
|
TWO = "TWO"
|
766
766
|
}
|
767
767
|
|
768
|
-
interface IMaskedImage {
|
769
|
-
|
768
|
+
interface IMaskedImage extends IMaskedImageBase {
|
769
|
+
}
|
770
|
+
interface IMaskedImageBase {
|
771
|
+
height: number;
|
772
|
+
maskType: MaskType;
|
773
|
+
imagePath: string;
|
770
774
|
}
|
771
775
|
|
772
|
-
declare const MaskedImage: (
|
776
|
+
declare const MaskedImage: (props: IMaskedImage) => react_jsx_runtime.JSX.Element;
|
773
777
|
|
774
778
|
interface RouteI<T, R, D> {
|
775
779
|
name: string;
|
@@ -1191,6 +1195,7 @@ interface IHomeSectionGettingStarted {
|
|
1191
1195
|
title: string;
|
1192
1196
|
quickSearch: React$1.ReactElement;
|
1193
1197
|
onBoarding: React$1.ReactElement;
|
1198
|
+
imagePath: string;
|
1194
1199
|
}
|
1195
1200
|
|
1196
1201
|
declare const HomeSectionGettingStarted: (props: IHomeSectionGettingStarted) => react_jsx_runtime.JSX.Element;
|