@tactics/lokaal-loket 0.0.340 → 0.0.341
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +430 -424
- package/build/index.d.cts +6 -2
- package/build/index.d.ts +6 -2
- package/build/index.js +430 -424
- package/package.json +1 -1
package/build/index.d.cts
CHANGED
@@ -421,7 +421,7 @@ declare enum Position {
|
|
421
421
|
}
|
422
422
|
|
423
423
|
interface ILink {
|
424
|
-
id
|
424
|
+
id?: string;
|
425
425
|
title: string;
|
426
426
|
href: string;
|
427
427
|
onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
|
@@ -849,6 +849,7 @@ interface AutocompleteI<T> {
|
|
849
849
|
name: string;
|
850
850
|
debounceTime: number;
|
851
851
|
readyForInput: boolean;
|
852
|
+
loadingPlaceholder?: string;
|
852
853
|
placeholder?: string;
|
853
854
|
ariaLabel?: string;
|
854
855
|
withIconBefore?: React__default.ReactElement<IIcon>;
|
@@ -868,6 +869,7 @@ interface AutocompleteI<T> {
|
|
868
869
|
interface AutocompleteInputI<T> {
|
869
870
|
name: string;
|
870
871
|
readyForInput: boolean;
|
872
|
+
loadingPlaceholder?: string;
|
871
873
|
debounceTime: number;
|
872
874
|
placeholder?: string;
|
873
875
|
ariaLabel?: string;
|
@@ -950,6 +952,7 @@ interface LocationI<T> {
|
|
950
952
|
onBlur?: (e: LocationBlurEvent) => void;
|
951
953
|
onFocus?: (e: LocationFocusEvent) => void;
|
952
954
|
readyForInput: boolean;
|
955
|
+
loadingPlaceholder?: string;
|
953
956
|
}
|
954
957
|
interface LocationBlurEvent extends AutocompleteBlurEvent {
|
955
958
|
}
|
@@ -969,6 +972,7 @@ declare const Location: <T>(props: LocationI<T> & {
|
|
969
972
|
interface NameI<T> {
|
970
973
|
name: string;
|
971
974
|
readyForInput: boolean;
|
975
|
+
loadingPlaceholder?: string;
|
972
976
|
placeholder?: string;
|
973
977
|
ariaLabel?: string;
|
974
978
|
withIconBefore?: React__default.ReactElement<IIcon>;
|
@@ -2000,7 +2004,7 @@ interface IDetailsSectionGeneral {
|
|
2000
2004
|
}
|
2001
2005
|
interface IContactData {
|
2002
2006
|
title: string;
|
2003
|
-
data: React__default.ReactElement<ILabeledIcon>[];
|
2007
|
+
data: React__default.ReactElement<ILabeledIcon | ILink>[];
|
2004
2008
|
}
|
2005
2009
|
|
2006
2010
|
declare const DetailsSectionGeneral: (props: IDetailsSectionGeneral) => react_jsx_runtime.JSX.Element;
|
package/build/index.d.ts
CHANGED
@@ -421,7 +421,7 @@ declare enum Position {
|
|
421
421
|
}
|
422
422
|
|
423
423
|
interface ILink {
|
424
|
-
id
|
424
|
+
id?: string;
|
425
425
|
title: string;
|
426
426
|
href: string;
|
427
427
|
onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
|
@@ -849,6 +849,7 @@ interface AutocompleteI<T> {
|
|
849
849
|
name: string;
|
850
850
|
debounceTime: number;
|
851
851
|
readyForInput: boolean;
|
852
|
+
loadingPlaceholder?: string;
|
852
853
|
placeholder?: string;
|
853
854
|
ariaLabel?: string;
|
854
855
|
withIconBefore?: React__default.ReactElement<IIcon>;
|
@@ -868,6 +869,7 @@ interface AutocompleteI<T> {
|
|
868
869
|
interface AutocompleteInputI<T> {
|
869
870
|
name: string;
|
870
871
|
readyForInput: boolean;
|
872
|
+
loadingPlaceholder?: string;
|
871
873
|
debounceTime: number;
|
872
874
|
placeholder?: string;
|
873
875
|
ariaLabel?: string;
|
@@ -950,6 +952,7 @@ interface LocationI<T> {
|
|
950
952
|
onBlur?: (e: LocationBlurEvent) => void;
|
951
953
|
onFocus?: (e: LocationFocusEvent) => void;
|
952
954
|
readyForInput: boolean;
|
955
|
+
loadingPlaceholder?: string;
|
953
956
|
}
|
954
957
|
interface LocationBlurEvent extends AutocompleteBlurEvent {
|
955
958
|
}
|
@@ -969,6 +972,7 @@ declare const Location: <T>(props: LocationI<T> & {
|
|
969
972
|
interface NameI<T> {
|
970
973
|
name: string;
|
971
974
|
readyForInput: boolean;
|
975
|
+
loadingPlaceholder?: string;
|
972
976
|
placeholder?: string;
|
973
977
|
ariaLabel?: string;
|
974
978
|
withIconBefore?: React__default.ReactElement<IIcon>;
|
@@ -2000,7 +2004,7 @@ interface IDetailsSectionGeneral {
|
|
2000
2004
|
}
|
2001
2005
|
interface IContactData {
|
2002
2006
|
title: string;
|
2003
|
-
data: React__default.ReactElement<ILabeledIcon>[];
|
2007
|
+
data: React__default.ReactElement<ILabeledIcon | ILink>[];
|
2004
2008
|
}
|
2005
2009
|
|
2006
2010
|
declare const DetailsSectionGeneral: (props: IDetailsSectionGeneral) => react_jsx_runtime.JSX.Element;
|