@tactics/lokaal-loket 0.0.442 → 0.0.443
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +169 -169
- package/build/index.d.cts +3 -3
- package/build/index.d.ts +3 -3
- package/build/index.js +167 -167
- package/package.json +1 -1
package/build/index.d.cts
CHANGED
@@ -633,7 +633,7 @@ interface IRadioBase {
|
|
633
633
|
ariaLabel?: string;
|
634
634
|
label: string;
|
635
635
|
name: string;
|
636
|
-
|
636
|
+
checked?: boolean;
|
637
637
|
}
|
638
638
|
interface IRadio extends IRadioBase {
|
639
639
|
context?: RadioContext;
|
@@ -644,7 +644,7 @@ interface IRadioGroup {
|
|
644
644
|
}
|
645
645
|
|
646
646
|
declare const Radio: {
|
647
|
-
({ context, onChange, value, ariaLabel, label, name,
|
647
|
+
({ context, onChange, value, ariaLabel, label, name, checked }: IRadio): react_jsx_runtime.JSX.Element;
|
648
648
|
Group: ({ direction, children }: IRadioGroup) => react_jsx_runtime.JSX.Element;
|
649
649
|
};
|
650
650
|
|
@@ -1851,7 +1851,7 @@ interface StaticMapHandle {
|
|
1851
1851
|
openOverlay: (point: IMapPoint | IPosition, content: React__default.ReactElement) => void;
|
1852
1852
|
closeOverlay: () => void;
|
1853
1853
|
zoomTo: (zoom: number, position?: IPosition) => void;
|
1854
|
-
|
1854
|
+
fitBounds: (bounds: IBound) => void;
|
1855
1855
|
openLoader: () => void;
|
1856
1856
|
closeLoader: () => void;
|
1857
1857
|
}
|
package/build/index.d.ts
CHANGED
@@ -633,7 +633,7 @@ interface IRadioBase {
|
|
633
633
|
ariaLabel?: string;
|
634
634
|
label: string;
|
635
635
|
name: string;
|
636
|
-
|
636
|
+
checked?: boolean;
|
637
637
|
}
|
638
638
|
interface IRadio extends IRadioBase {
|
639
639
|
context?: RadioContext;
|
@@ -644,7 +644,7 @@ interface IRadioGroup {
|
|
644
644
|
}
|
645
645
|
|
646
646
|
declare const Radio: {
|
647
|
-
({ context, onChange, value, ariaLabel, label, name,
|
647
|
+
({ context, onChange, value, ariaLabel, label, name, checked }: IRadio): react_jsx_runtime.JSX.Element;
|
648
648
|
Group: ({ direction, children }: IRadioGroup) => react_jsx_runtime.JSX.Element;
|
649
649
|
};
|
650
650
|
|
@@ -1851,7 +1851,7 @@ interface StaticMapHandle {
|
|
1851
1851
|
openOverlay: (point: IMapPoint | IPosition, content: React__default.ReactElement) => void;
|
1852
1852
|
closeOverlay: () => void;
|
1853
1853
|
zoomTo: (zoom: number, position?: IPosition) => void;
|
1854
|
-
|
1854
|
+
fitBounds: (bounds: IBound) => void;
|
1855
1855
|
openLoader: () => void;
|
1856
1856
|
closeLoader: () => void;
|
1857
1857
|
}
|