@tactics/lokaal-loket 1.2.1 → 1.2.3
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 +910 -910
- package/build/index.d.cts +13 -0
- package/build/index.d.ts +13 -0
- package/build/index.js +910 -910
- package/package.json +5 -3
package/build/index.d.cts
CHANGED
|
@@ -115,6 +115,7 @@ declare enum IconType {
|
|
|
115
115
|
CANCEL = "CANCEL",
|
|
116
116
|
ARROW_LEFT = "ARROW_LEFT",
|
|
117
117
|
ARROW_RIGHT = "ARROW_RIGHT",
|
|
118
|
+
ARROW_TOP_RIGHT = "ARROW_TOP_RIGHT",
|
|
118
119
|
CHEVRON_DOWN = "CHEVRON_DOWN",
|
|
119
120
|
CHEVRON_UP = "CHEVRON_UP",
|
|
120
121
|
CHEVRON_RIGHT = "CHEVRON_RIGHT",
|
|
@@ -2845,9 +2846,15 @@ interface IDetailsSectionMap {
|
|
|
2845
2846
|
|
|
2846
2847
|
declare const DetailsSectionMap: (props: IDetailsSectionMap) => react_jsx_runtime.JSX.Element;
|
|
2847
2848
|
|
|
2849
|
+
interface IExceptionPeriod$1 {
|
|
2850
|
+
title: React__default.ReactElement<IHeading>;
|
|
2851
|
+
hours: React__default.ReactElement<IHoursTable>;
|
|
2852
|
+
}
|
|
2848
2853
|
interface IDetailsSectionHours {
|
|
2849
2854
|
title: React__default.ReactElement<IHeading>;
|
|
2850
2855
|
hours: React__default.ReactElement<IHoursTable>;
|
|
2856
|
+
defaultHoursTitle?: React__default.ReactElement<IHeading>;
|
|
2857
|
+
exceptionPeriods?: IExceptionPeriod$1[];
|
|
2851
2858
|
info?: React__default.ReactElement<IPlainText>;
|
|
2852
2859
|
}
|
|
2853
2860
|
|
|
@@ -3186,9 +3193,15 @@ interface ICompactDetailsSectionHeader {
|
|
|
3186
3193
|
|
|
3187
3194
|
declare const CompactDetailsSectionHeader: (props: ICompactDetailsSectionHeader) => react_jsx_runtime.JSX.Element;
|
|
3188
3195
|
|
|
3196
|
+
interface IExceptionPeriod {
|
|
3197
|
+
title: React__default.ReactElement<IHeading>;
|
|
3198
|
+
hours: React__default.ReactElement<IHoursTable>;
|
|
3199
|
+
}
|
|
3189
3200
|
interface ICompactDetailsSectionHours {
|
|
3190
3201
|
title: React__default.ReactElement<IHeading>;
|
|
3191
3202
|
hours: React__default.ReactElement<IHoursTable>;
|
|
3203
|
+
defaultHoursTitle?: React__default.ReactElement<IHeading>;
|
|
3204
|
+
exceptionPeriods?: IExceptionPeriod[];
|
|
3192
3205
|
info?: React__default.ReactElement<IPlainText>;
|
|
3193
3206
|
}
|
|
3194
3207
|
|
package/build/index.d.ts
CHANGED
|
@@ -115,6 +115,7 @@ declare enum IconType {
|
|
|
115
115
|
CANCEL = "CANCEL",
|
|
116
116
|
ARROW_LEFT = "ARROW_LEFT",
|
|
117
117
|
ARROW_RIGHT = "ARROW_RIGHT",
|
|
118
|
+
ARROW_TOP_RIGHT = "ARROW_TOP_RIGHT",
|
|
118
119
|
CHEVRON_DOWN = "CHEVRON_DOWN",
|
|
119
120
|
CHEVRON_UP = "CHEVRON_UP",
|
|
120
121
|
CHEVRON_RIGHT = "CHEVRON_RIGHT",
|
|
@@ -2845,9 +2846,15 @@ interface IDetailsSectionMap {
|
|
|
2845
2846
|
|
|
2846
2847
|
declare const DetailsSectionMap: (props: IDetailsSectionMap) => react_jsx_runtime.JSX.Element;
|
|
2847
2848
|
|
|
2849
|
+
interface IExceptionPeriod$1 {
|
|
2850
|
+
title: React__default.ReactElement<IHeading>;
|
|
2851
|
+
hours: React__default.ReactElement<IHoursTable>;
|
|
2852
|
+
}
|
|
2848
2853
|
interface IDetailsSectionHours {
|
|
2849
2854
|
title: React__default.ReactElement<IHeading>;
|
|
2850
2855
|
hours: React__default.ReactElement<IHoursTable>;
|
|
2856
|
+
defaultHoursTitle?: React__default.ReactElement<IHeading>;
|
|
2857
|
+
exceptionPeriods?: IExceptionPeriod$1[];
|
|
2851
2858
|
info?: React__default.ReactElement<IPlainText>;
|
|
2852
2859
|
}
|
|
2853
2860
|
|
|
@@ -3186,9 +3193,15 @@ interface ICompactDetailsSectionHeader {
|
|
|
3186
3193
|
|
|
3187
3194
|
declare const CompactDetailsSectionHeader: (props: ICompactDetailsSectionHeader) => react_jsx_runtime.JSX.Element;
|
|
3188
3195
|
|
|
3196
|
+
interface IExceptionPeriod {
|
|
3197
|
+
title: React__default.ReactElement<IHeading>;
|
|
3198
|
+
hours: React__default.ReactElement<IHoursTable>;
|
|
3199
|
+
}
|
|
3189
3200
|
interface ICompactDetailsSectionHours {
|
|
3190
3201
|
title: React__default.ReactElement<IHeading>;
|
|
3191
3202
|
hours: React__default.ReactElement<IHoursTable>;
|
|
3203
|
+
defaultHoursTitle?: React__default.ReactElement<IHeading>;
|
|
3204
|
+
exceptionPeriods?: IExceptionPeriod[];
|
|
3192
3205
|
info?: React__default.ReactElement<IPlainText>;
|
|
3193
3206
|
}
|
|
3194
3207
|
|