@tactics/lokaal-loket 0.0.394 → 0.0.395
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.
- package/build/index.cjs +554 -553
- package/build/index.d.cts +2 -1
- package/build/index.d.ts +2 -1
- package/build/index.js +554 -553
- package/package.json +12 -12
package/build/index.d.cts
CHANGED
@@ -176,9 +176,10 @@ declare enum PinType {
|
|
176
176
|
interface IPinBase {
|
177
177
|
type: PinType;
|
178
178
|
lifted?: boolean;
|
179
|
+
focus?: boolean;
|
179
180
|
}
|
180
181
|
|
181
|
-
declare const Pin: ({ type, lifted }: IPinBase) => react_jsx_runtime.JSX.Element;
|
182
|
+
declare const Pin: ({ type, lifted, focus }: IPinBase) => react_jsx_runtime.JSX.Element;
|
182
183
|
|
183
184
|
declare enum BadgeType {
|
184
185
|
DAYCARE = "DAYCARE",
|
package/build/index.d.ts
CHANGED
@@ -176,9 +176,10 @@ declare enum PinType {
|
|
176
176
|
interface IPinBase {
|
177
177
|
type: PinType;
|
178
178
|
lifted?: boolean;
|
179
|
+
focus?: boolean;
|
179
180
|
}
|
180
181
|
|
181
|
-
declare const Pin: ({ type, lifted }: IPinBase) => react_jsx_runtime.JSX.Element;
|
182
|
+
declare const Pin: ({ type, lifted, focus }: IPinBase) => react_jsx_runtime.JSX.Element;
|
182
183
|
|
183
184
|
declare enum BadgeType {
|
184
185
|
DAYCARE = "DAYCARE",
|