@tactics/lokaal-loket 0.0.425 → 0.0.427

Sign up to get free protection for your applications and to get access to all the features.
package/build/index.d.cts CHANGED
@@ -259,7 +259,8 @@ declare enum FigureType {
259
259
  PIN_DOCUMENT = "PIN_DOCUMENT",
260
260
  TOYS = "TOYS",
261
261
  NUTRITION_INFO = "NUTRITION_INFO",
262
- DIRECTIONS = "DIRECTIONS"
262
+ DIRECTIONS = "DIRECTIONS",
263
+ PHONE = "PHONE"
263
264
  }
264
265
 
265
266
  interface IFigure {
@@ -507,9 +508,10 @@ interface IInformation {
507
508
  frame?: React__default.ReactElement<IFrame>;
508
509
  variant?: InformationVariant;
509
510
  background?: InformationBackground;
511
+ withDecoration?: boolean;
510
512
  }
511
513
 
512
- declare const Information: ({ text, frame, variant, background }: IInformation) => react_jsx_runtime.JSX.Element;
514
+ declare const Information: ({ text, frame, variant, background, withDecoration }: IInformation) => react_jsx_runtime.JSX.Element;
513
515
 
514
516
  declare enum InputContext {
515
517
  DISABLED = "DISABLED",
@@ -1331,7 +1333,7 @@ interface ICategoryLink {
1331
1333
  declare const CategoryLink: ({ figure, title, description, label, action }: ICategoryLink) => react_jsx_runtime.JSX.Element;
1332
1334
 
1333
1335
  interface IQuote {
1334
- quote: React__default.ReactElement<ISafeHtml>;
1336
+ quote: string;
1335
1337
  }
1336
1338
 
1337
1339
  declare const Quote: ({ quote }: IQuote) => react_jsx_runtime.JSX.Element;
@@ -1874,6 +1876,7 @@ interface StaticMapHandle {
1874
1876
  openOverlay: (point: IMapPoint | IPosition, content: React__default.ReactElement) => void;
1875
1877
  closeOverlay: () => void;
1876
1878
  zoomTo: (zoom: number, position?: IPosition) => void;
1879
+ panToBounds: (bounds: IBound) => void;
1877
1880
  openLoader: () => void;
1878
1881
  closeLoader: () => void;
1879
1882
  }
@@ -2317,7 +2320,7 @@ interface IDetailsSectionHours {
2317
2320
  declare const DetailsSectionHours: (props: IDetailsSectionHours) => react_jsx_runtime.JSX.Element;
2318
2321
 
2319
2322
  interface IDetailsSectionQuote {
2320
- quote: React__default.ReactElement<ISafeHtml>;
2323
+ quote: string;
2321
2324
  }
2322
2325
 
2323
2326
  declare const DetailsSectionQuote: (props: IDetailsSectionQuote) => react_jsx_runtime.JSX.Element;
@@ -2638,9 +2641,10 @@ interface ICollapsable {
2638
2641
  content: React__default.ReactNode;
2639
2642
  additional: React__default.ReactNode;
2640
2643
  maxHeight?: string;
2644
+ keepAdditionalInDOM: boolean;
2641
2645
  }
2642
2646
 
2643
- declare const Collapsable: ({ content, additional, maxHeight }: ICollapsable) => react_jsx_runtime.JSX.Element;
2647
+ declare const Collapsable: ({ content, additional, maxHeight, keepAdditionalInDOM }: ICollapsable) => react_jsx_runtime.JSX.Element;
2644
2648
 
2645
2649
  declare enum DrawerSize {
2646
2650
  SMALL = "SMALL",
package/build/index.d.ts CHANGED
@@ -259,7 +259,8 @@ declare enum FigureType {
259
259
  PIN_DOCUMENT = "PIN_DOCUMENT",
260
260
  TOYS = "TOYS",
261
261
  NUTRITION_INFO = "NUTRITION_INFO",
262
- DIRECTIONS = "DIRECTIONS"
262
+ DIRECTIONS = "DIRECTIONS",
263
+ PHONE = "PHONE"
263
264
  }
264
265
 
265
266
  interface IFigure {
@@ -507,9 +508,10 @@ interface IInformation {
507
508
  frame?: React__default.ReactElement<IFrame>;
508
509
  variant?: InformationVariant;
509
510
  background?: InformationBackground;
511
+ withDecoration?: boolean;
510
512
  }
511
513
 
512
- declare const Information: ({ text, frame, variant, background }: IInformation) => react_jsx_runtime.JSX.Element;
514
+ declare const Information: ({ text, frame, variant, background, withDecoration }: IInformation) => react_jsx_runtime.JSX.Element;
513
515
 
514
516
  declare enum InputContext {
515
517
  DISABLED = "DISABLED",
@@ -1331,7 +1333,7 @@ interface ICategoryLink {
1331
1333
  declare const CategoryLink: ({ figure, title, description, label, action }: ICategoryLink) => react_jsx_runtime.JSX.Element;
1332
1334
 
1333
1335
  interface IQuote {
1334
- quote: React__default.ReactElement<ISafeHtml>;
1336
+ quote: string;
1335
1337
  }
1336
1338
 
1337
1339
  declare const Quote: ({ quote }: IQuote) => react_jsx_runtime.JSX.Element;
@@ -1874,6 +1876,7 @@ interface StaticMapHandle {
1874
1876
  openOverlay: (point: IMapPoint | IPosition, content: React__default.ReactElement) => void;
1875
1877
  closeOverlay: () => void;
1876
1878
  zoomTo: (zoom: number, position?: IPosition) => void;
1879
+ panToBounds: (bounds: IBound) => void;
1877
1880
  openLoader: () => void;
1878
1881
  closeLoader: () => void;
1879
1882
  }
@@ -2317,7 +2320,7 @@ interface IDetailsSectionHours {
2317
2320
  declare const DetailsSectionHours: (props: IDetailsSectionHours) => react_jsx_runtime.JSX.Element;
2318
2321
 
2319
2322
  interface IDetailsSectionQuote {
2320
- quote: React__default.ReactElement<ISafeHtml>;
2323
+ quote: string;
2321
2324
  }
2322
2325
 
2323
2326
  declare const DetailsSectionQuote: (props: IDetailsSectionQuote) => react_jsx_runtime.JSX.Element;
@@ -2638,9 +2641,10 @@ interface ICollapsable {
2638
2641
  content: React__default.ReactNode;
2639
2642
  additional: React__default.ReactNode;
2640
2643
  maxHeight?: string;
2644
+ keepAdditionalInDOM: boolean;
2641
2645
  }
2642
2646
 
2643
- declare const Collapsable: ({ content, additional, maxHeight }: ICollapsable) => react_jsx_runtime.JSX.Element;
2647
+ declare const Collapsable: ({ content, additional, maxHeight, keepAdditionalInDOM }: ICollapsable) => react_jsx_runtime.JSX.Element;
2644
2648
 
2645
2649
  declare enum DrawerSize {
2646
2650
  SMALL = "SMALL",