@tactics/lokaal-loket 0.0.291 → 0.0.293
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +4831 -4676
- package/build/index.d.cts +39 -0
- package/build/index.d.ts +39 -0
- package/build/index.js +4516 -4367
- package/package.json +27 -25
package/build/index.d.cts
CHANGED
@@ -1580,6 +1580,19 @@ interface IFormElement {
|
|
1580
1580
|
|
1581
1581
|
declare const FormElement: ({label, input, description}: IFormElement) => react_jsx_runtime.JSX.Element;
|
1582
1582
|
|
1583
|
+
interface IFormMessage {
|
1584
|
+
messages: string[];
|
1585
|
+
type: string;
|
1586
|
+
icon: React$1.ReactElement<IIcon>;
|
1587
|
+
}
|
1588
|
+
|
1589
|
+
declare enum FormMessageType {
|
1590
|
+
ERROR = "ERROR",
|
1591
|
+
SUCCESS = "SUCCESS",
|
1592
|
+
}
|
1593
|
+
|
1594
|
+
declare const FormMessage: ({icon, messages, type}: IFormMessage) => react_jsx_runtime.JSX.Element;
|
1595
|
+
|
1583
1596
|
interface IProgressSteps {
|
1584
1597
|
amount: number;
|
1585
1598
|
active: number;
|
@@ -1589,6 +1602,25 @@ interface IProgressSteps {
|
|
1589
1602
|
|
1590
1603
|
declare const ProgressSteps: ({amount, active, title, description}: IProgressSteps) => react_jsx_runtime.JSX.Element;
|
1591
1604
|
|
1605
|
+
interface IScheduleSelect {
|
1606
|
+
header: React.ReactElement<IScheduleSelectHeader>;
|
1607
|
+
children: React.ReactElement<IScheduleSelectRow>[];
|
1608
|
+
}
|
1609
|
+
interface IScheduleSelectHeader {
|
1610
|
+
labels: string[];
|
1611
|
+
}
|
1612
|
+
interface IScheduleSelectRow {
|
1613
|
+
label: string;
|
1614
|
+
actions: React.ReactElement<IPillCheckbox>[];
|
1615
|
+
isActive?: boolean;
|
1616
|
+
}
|
1617
|
+
|
1618
|
+
declare const ScheduleSelect: {
|
1619
|
+
({header, children}: IScheduleSelect): react_jsx_runtime.JSX.Element;
|
1620
|
+
Header: ({labels}: IScheduleSelectHeader) => react_jsx_runtime.JSX.Element;
|
1621
|
+
Row: ({label, actions, isActive}: IScheduleSelectRow) => react_jsx_runtime.JSX.Element;
|
1622
|
+
};
|
1623
|
+
|
1592
1624
|
interface IHeaderMobile {
|
1593
1625
|
profileNavigation: React$1.ReactNode;
|
1594
1626
|
compactNavigation: React$1.ReactNode;
|
@@ -2759,6 +2791,8 @@ export {
|
|
2759
2791
|
Footer,
|
2760
2792
|
FooterNavigation,
|
2761
2793
|
FormElement,
|
2794
|
+
FormMessage,
|
2795
|
+
FormMessageType,
|
2762
2796
|
Gallery,
|
2763
2797
|
GoogleDirectionsRendererContext,
|
2764
2798
|
GoogleDirectionsRendererProvider,
|
@@ -2850,6 +2884,7 @@ export {
|
|
2850
2884
|
type IFooter,
|
2851
2885
|
type IFooterNavigation,
|
2852
2886
|
type IFormElement,
|
2887
|
+
type IFormMessage,
|
2853
2888
|
type IGallery,
|
2854
2889
|
type IHeaderBottom,
|
2855
2890
|
type IHeaderTop,
|
@@ -2915,6 +2950,9 @@ export {
|
|
2915
2950
|
type IRouteStep,
|
2916
2951
|
type IRoutes,
|
2917
2952
|
type ISafeHtml,
|
2953
|
+
type IScheduleSelect,
|
2954
|
+
type IScheduleSelectHeader,
|
2955
|
+
type IScheduleSelectRow,
|
2918
2956
|
type IScrollableContentProps,
|
2919
2957
|
type ISearchFilters,
|
2920
2958
|
type ISearchFiltersItem,
|
@@ -3064,6 +3102,7 @@ export {
|
|
3064
3102
|
SafeHtml,
|
3065
3103
|
ScaledFigure,
|
3066
3104
|
ScaledIcon,
|
3105
|
+
ScheduleSelect,
|
3067
3106
|
SearchContext,
|
3068
3107
|
SearchFilters,
|
3069
3108
|
SearchFiltersItem,
|
package/build/index.d.ts
CHANGED
@@ -1580,6 +1580,19 @@ interface IFormElement {
|
|
1580
1580
|
|
1581
1581
|
declare const FormElement: ({label, input, description}: IFormElement) => react_jsx_runtime.JSX.Element;
|
1582
1582
|
|
1583
|
+
interface IFormMessage {
|
1584
|
+
messages: string[];
|
1585
|
+
type: string;
|
1586
|
+
icon: React$1.ReactElement<IIcon>;
|
1587
|
+
}
|
1588
|
+
|
1589
|
+
declare enum FormMessageType {
|
1590
|
+
ERROR = "ERROR",
|
1591
|
+
SUCCESS = "SUCCESS",
|
1592
|
+
}
|
1593
|
+
|
1594
|
+
declare const FormMessage: ({icon, messages, type}: IFormMessage) => react_jsx_runtime.JSX.Element;
|
1595
|
+
|
1583
1596
|
interface IProgressSteps {
|
1584
1597
|
amount: number;
|
1585
1598
|
active: number;
|
@@ -1589,6 +1602,25 @@ interface IProgressSteps {
|
|
1589
1602
|
|
1590
1603
|
declare const ProgressSteps: ({amount, active, title, description}: IProgressSteps) => react_jsx_runtime.JSX.Element;
|
1591
1604
|
|
1605
|
+
interface IScheduleSelect {
|
1606
|
+
header: React.ReactElement<IScheduleSelectHeader>;
|
1607
|
+
children: React.ReactElement<IScheduleSelectRow>[];
|
1608
|
+
}
|
1609
|
+
interface IScheduleSelectHeader {
|
1610
|
+
labels: string[];
|
1611
|
+
}
|
1612
|
+
interface IScheduleSelectRow {
|
1613
|
+
label: string;
|
1614
|
+
actions: React.ReactElement<IPillCheckbox>[];
|
1615
|
+
isActive?: boolean;
|
1616
|
+
}
|
1617
|
+
|
1618
|
+
declare const ScheduleSelect: {
|
1619
|
+
({header, children}: IScheduleSelect): react_jsx_runtime.JSX.Element;
|
1620
|
+
Header: ({labels}: IScheduleSelectHeader) => react_jsx_runtime.JSX.Element;
|
1621
|
+
Row: ({label, actions, isActive}: IScheduleSelectRow) => react_jsx_runtime.JSX.Element;
|
1622
|
+
};
|
1623
|
+
|
1592
1624
|
interface IHeaderMobile {
|
1593
1625
|
profileNavigation: React$1.ReactNode;
|
1594
1626
|
compactNavigation: React$1.ReactNode;
|
@@ -2759,6 +2791,8 @@ export {
|
|
2759
2791
|
Footer,
|
2760
2792
|
FooterNavigation,
|
2761
2793
|
FormElement,
|
2794
|
+
FormMessage,
|
2795
|
+
FormMessageType,
|
2762
2796
|
Gallery,
|
2763
2797
|
GoogleDirectionsRendererContext,
|
2764
2798
|
GoogleDirectionsRendererProvider,
|
@@ -2850,6 +2884,7 @@ export {
|
|
2850
2884
|
type IFooter,
|
2851
2885
|
type IFooterNavigation,
|
2852
2886
|
type IFormElement,
|
2887
|
+
type IFormMessage,
|
2853
2888
|
type IGallery,
|
2854
2889
|
type IHeaderBottom,
|
2855
2890
|
type IHeaderTop,
|
@@ -2915,6 +2950,9 @@ export {
|
|
2915
2950
|
type IRouteStep,
|
2916
2951
|
type IRoutes,
|
2917
2952
|
type ISafeHtml,
|
2953
|
+
type IScheduleSelect,
|
2954
|
+
type IScheduleSelectHeader,
|
2955
|
+
type IScheduleSelectRow,
|
2918
2956
|
type IScrollableContentProps,
|
2919
2957
|
type ISearchFilters,
|
2920
2958
|
type ISearchFiltersItem,
|
@@ -3064,6 +3102,7 @@ export {
|
|
3064
3102
|
SafeHtml,
|
3065
3103
|
ScaledFigure,
|
3066
3104
|
ScaledIcon,
|
3105
|
+
ScheduleSelect,
|
3067
3106
|
SearchContext,
|
3068
3107
|
SearchFilters,
|
3069
3108
|
SearchFiltersItem,
|