@tactics/lokaal-loket 0.0.512 → 0.0.513
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +657 -649
- package/build/index.d.cts +12 -7
- package/build/index.d.ts +12 -7
- package/build/index.js +657 -649
- package/package.json +1 -1
package/build/index.d.cts
CHANGED
@@ -623,14 +623,14 @@ interface IPickBase {
|
|
623
623
|
ariaLabel?: string;
|
624
624
|
label: string;
|
625
625
|
name: string;
|
626
|
-
|
626
|
+
checked?: boolean;
|
627
627
|
icon: React__default.ReactElement<IIcon | IFigure>;
|
628
628
|
}
|
629
629
|
interface IPick extends IPickBase {
|
630
630
|
context?: PickContext;
|
631
631
|
}
|
632
632
|
|
633
|
-
declare const Pick: ({ context, onChange, value, ariaLabel, label, name,
|
633
|
+
declare const Pick: ({ context, onChange, value, ariaLabel, label, name, checked, icon }: IPick) => react_jsx_runtime.JSX.Element;
|
634
634
|
|
635
635
|
interface IPill {
|
636
636
|
label: string;
|
@@ -705,7 +705,11 @@ interface ITerm {
|
|
705
705
|
|
706
706
|
declare const Term: ({ label, description, figure }: ITerm) => react_jsx_runtime.JSX.Element;
|
707
707
|
|
708
|
-
|
708
|
+
interface TerminalProps {
|
709
|
+
ariaLabel?: string;
|
710
|
+
}
|
711
|
+
|
712
|
+
declare const Terminal: ({ ariaLabel }: TerminalProps) => react_jsx_runtime.JSX.Element;
|
709
713
|
|
710
714
|
declare enum YesNoContext {
|
711
715
|
STANDARD = "STANDARD",
|
@@ -720,14 +724,14 @@ interface IYesNoBase {
|
|
720
724
|
yesLabel: string;
|
721
725
|
noLabel: string;
|
722
726
|
name: string;
|
723
|
-
|
727
|
+
checked?: boolean;
|
724
728
|
legend?: string;
|
725
729
|
}
|
726
730
|
interface IYesNo extends IYesNoBase {
|
727
731
|
context?: YesNoContext;
|
728
732
|
}
|
729
733
|
|
730
|
-
declare const YesNo: ({ context, onChange, ariaYesLabel, ariaNoLabel, yesLabel, noLabel, name,
|
734
|
+
declare const YesNo: ({ context, onChange, ariaYesLabel, ariaNoLabel, yesLabel, noLabel, name, checked, legend, }: IYesNo) => react_jsx_runtime.JSX.Element;
|
731
735
|
|
732
736
|
declare enum BigPickContext {
|
733
737
|
STANDARD = "STANDARD",
|
@@ -1044,11 +1048,11 @@ interface IPillCheckbox {
|
|
1044
1048
|
ariaLabel?: string;
|
1045
1049
|
label: string;
|
1046
1050
|
name: string;
|
1047
|
-
|
1051
|
+
checked?: boolean;
|
1048
1052
|
type?: PillCheckboxType;
|
1049
1053
|
}
|
1050
1054
|
|
1051
|
-
declare const PillCheckbox: ({ label, name, value, ariaLabel,
|
1055
|
+
declare const PillCheckbox: ({ label, name, value, ariaLabel, checked, onChange, type }: IPillCheckbox) => react_jsx_runtime.JSX.Element;
|
1052
1056
|
|
1053
1057
|
declare enum PillStatusType {
|
1054
1058
|
PRIMARY = "PRIMARY",
|
@@ -1808,6 +1812,7 @@ interface IMinimalHeader {
|
|
1808
1812
|
branding: React__default.ReactElement<ILogo>;
|
1809
1813
|
siteMenu?: React__default.ReactNode;
|
1810
1814
|
contextualArea?: React__default.ReactNode;
|
1815
|
+
optionalAction?: React__default.ReactNode;
|
1811
1816
|
}
|
1812
1817
|
|
1813
1818
|
declare const MinimalHeader: (props: IMinimalHeader) => react_jsx_runtime.JSX.Element;
|
package/build/index.d.ts
CHANGED
@@ -623,14 +623,14 @@ interface IPickBase {
|
|
623
623
|
ariaLabel?: string;
|
624
624
|
label: string;
|
625
625
|
name: string;
|
626
|
-
|
626
|
+
checked?: boolean;
|
627
627
|
icon: React__default.ReactElement<IIcon | IFigure>;
|
628
628
|
}
|
629
629
|
interface IPick extends IPickBase {
|
630
630
|
context?: PickContext;
|
631
631
|
}
|
632
632
|
|
633
|
-
declare const Pick: ({ context, onChange, value, ariaLabel, label, name,
|
633
|
+
declare const Pick: ({ context, onChange, value, ariaLabel, label, name, checked, icon }: IPick) => react_jsx_runtime.JSX.Element;
|
634
634
|
|
635
635
|
interface IPill {
|
636
636
|
label: string;
|
@@ -705,7 +705,11 @@ interface ITerm {
|
|
705
705
|
|
706
706
|
declare const Term: ({ label, description, figure }: ITerm) => react_jsx_runtime.JSX.Element;
|
707
707
|
|
708
|
-
|
708
|
+
interface TerminalProps {
|
709
|
+
ariaLabel?: string;
|
710
|
+
}
|
711
|
+
|
712
|
+
declare const Terminal: ({ ariaLabel }: TerminalProps) => react_jsx_runtime.JSX.Element;
|
709
713
|
|
710
714
|
declare enum YesNoContext {
|
711
715
|
STANDARD = "STANDARD",
|
@@ -720,14 +724,14 @@ interface IYesNoBase {
|
|
720
724
|
yesLabel: string;
|
721
725
|
noLabel: string;
|
722
726
|
name: string;
|
723
|
-
|
727
|
+
checked?: boolean;
|
724
728
|
legend?: string;
|
725
729
|
}
|
726
730
|
interface IYesNo extends IYesNoBase {
|
727
731
|
context?: YesNoContext;
|
728
732
|
}
|
729
733
|
|
730
|
-
declare const YesNo: ({ context, onChange, ariaYesLabel, ariaNoLabel, yesLabel, noLabel, name,
|
734
|
+
declare const YesNo: ({ context, onChange, ariaYesLabel, ariaNoLabel, yesLabel, noLabel, name, checked, legend, }: IYesNo) => react_jsx_runtime.JSX.Element;
|
731
735
|
|
732
736
|
declare enum BigPickContext {
|
733
737
|
STANDARD = "STANDARD",
|
@@ -1044,11 +1048,11 @@ interface IPillCheckbox {
|
|
1044
1048
|
ariaLabel?: string;
|
1045
1049
|
label: string;
|
1046
1050
|
name: string;
|
1047
|
-
|
1051
|
+
checked?: boolean;
|
1048
1052
|
type?: PillCheckboxType;
|
1049
1053
|
}
|
1050
1054
|
|
1051
|
-
declare const PillCheckbox: ({ label, name, value, ariaLabel,
|
1055
|
+
declare const PillCheckbox: ({ label, name, value, ariaLabel, checked, onChange, type }: IPillCheckbox) => react_jsx_runtime.JSX.Element;
|
1052
1056
|
|
1053
1057
|
declare enum PillStatusType {
|
1054
1058
|
PRIMARY = "PRIMARY",
|
@@ -1808,6 +1812,7 @@ interface IMinimalHeader {
|
|
1808
1812
|
branding: React__default.ReactElement<ILogo>;
|
1809
1813
|
siteMenu?: React__default.ReactNode;
|
1810
1814
|
contextualArea?: React__default.ReactNode;
|
1815
|
+
optionalAction?: React__default.ReactNode;
|
1811
1816
|
}
|
1812
1817
|
|
1813
1818
|
declare const MinimalHeader: (props: IMinimalHeader) => react_jsx_runtime.JSX.Element;
|