@tactics/lokaal-loket 0.0.440 → 0.0.441

Sign up to get free protection for your applications and to get access to all the features.
package/build/index.d.cts CHANGED
@@ -133,9 +133,10 @@ declare const UnFavoured: React__default.ForwardRefExoticComponent<IUnFavoured &
133
133
  interface IProgress {
134
134
  steps: number;
135
135
  activeStep: number;
136
+ label?: string;
136
137
  }
137
138
 
138
- declare const Progress: ({ steps, activeStep }: IProgress) => react_jsx_runtime.JSX.Element;
139
+ declare const Progress: ({ steps, activeStep, label }: IProgress) => react_jsx_runtime.JSX.Element;
139
140
 
140
141
  interface IBurger {
141
142
  icon: React__default.ReactElement<IIcon>;
@@ -632,7 +633,6 @@ interface IRadioBase {
632
633
  ariaLabel?: string;
633
634
  label: string;
634
635
  name: string;
635
- checked?: boolean;
636
636
  defaultChecked?: boolean;
637
637
  }
638
638
  interface IRadio extends IRadioBase {
@@ -644,7 +644,7 @@ interface IRadioGroup {
644
644
  }
645
645
 
646
646
  declare const Radio: {
647
- ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked }: IRadio): react_jsx_runtime.JSX.Element;
647
+ ({ context, onChange, value, ariaLabel, label, name, defaultChecked }: IRadio): react_jsx_runtime.JSX.Element;
648
648
  Group: ({ direction, children }: IRadioGroup) => react_jsx_runtime.JSX.Element;
649
649
  };
650
650
 
@@ -1038,12 +1038,11 @@ interface IPillCheckbox {
1038
1038
  ariaLabel?: string;
1039
1039
  label: string;
1040
1040
  name: string;
1041
- checked?: boolean;
1042
1041
  defaultChecked?: boolean;
1043
1042
  type?: PillCheckboxType;
1044
1043
  }
1045
1044
 
1046
- declare const PillCheckbox: ({ label, name, value, ariaLabel, checked, defaultChecked, onChange, type, }: IPillCheckbox) => react_jsx_runtime.JSX.Element;
1045
+ declare const PillCheckbox: ({ label, name, value, ariaLabel, defaultChecked, onChange, type }: IPillCheckbox) => react_jsx_runtime.JSX.Element;
1047
1046
 
1048
1047
  declare enum PillStatusType {
1049
1048
  PRIMARY = "PRIMARY",
@@ -1071,6 +1070,7 @@ declare enum TableCellType {
1071
1070
  }
1072
1071
 
1073
1072
  interface ITable {
1073
+ caption?: string;
1074
1074
  children: React.ReactNode;
1075
1075
  }
1076
1076
  interface ITableHead {
@@ -1088,7 +1088,7 @@ interface ITableCell {
1088
1088
  }
1089
1089
 
1090
1090
  declare const Table: {
1091
- ({ children }: ITable): react_jsx_runtime.JSX.Element;
1091
+ ({ children, caption }: ITable): react_jsx_runtime.JSX.Element;
1092
1092
  Body: ({ children }: ITableBody) => react_jsx_runtime.JSX.Element;
1093
1093
  Head: ({ children }: ITableHead) => react_jsx_runtime.JSX.Element;
1094
1094
  Row: ({ children }: ITableRow) => react_jsx_runtime.JSX.Element;
package/build/index.d.ts CHANGED
@@ -133,9 +133,10 @@ declare const UnFavoured: React__default.ForwardRefExoticComponent<IUnFavoured &
133
133
  interface IProgress {
134
134
  steps: number;
135
135
  activeStep: number;
136
+ label?: string;
136
137
  }
137
138
 
138
- declare const Progress: ({ steps, activeStep }: IProgress) => react_jsx_runtime.JSX.Element;
139
+ declare const Progress: ({ steps, activeStep, label }: IProgress) => react_jsx_runtime.JSX.Element;
139
140
 
140
141
  interface IBurger {
141
142
  icon: React__default.ReactElement<IIcon>;
@@ -632,7 +633,6 @@ interface IRadioBase {
632
633
  ariaLabel?: string;
633
634
  label: string;
634
635
  name: string;
635
- checked?: boolean;
636
636
  defaultChecked?: boolean;
637
637
  }
638
638
  interface IRadio extends IRadioBase {
@@ -644,7 +644,7 @@ interface IRadioGroup {
644
644
  }
645
645
 
646
646
  declare const Radio: {
647
- ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked }: IRadio): react_jsx_runtime.JSX.Element;
647
+ ({ context, onChange, value, ariaLabel, label, name, defaultChecked }: IRadio): react_jsx_runtime.JSX.Element;
648
648
  Group: ({ direction, children }: IRadioGroup) => react_jsx_runtime.JSX.Element;
649
649
  };
650
650
 
@@ -1038,12 +1038,11 @@ interface IPillCheckbox {
1038
1038
  ariaLabel?: string;
1039
1039
  label: string;
1040
1040
  name: string;
1041
- checked?: boolean;
1042
1041
  defaultChecked?: boolean;
1043
1042
  type?: PillCheckboxType;
1044
1043
  }
1045
1044
 
1046
- declare const PillCheckbox: ({ label, name, value, ariaLabel, checked, defaultChecked, onChange, type, }: IPillCheckbox) => react_jsx_runtime.JSX.Element;
1045
+ declare const PillCheckbox: ({ label, name, value, ariaLabel, defaultChecked, onChange, type }: IPillCheckbox) => react_jsx_runtime.JSX.Element;
1047
1046
 
1048
1047
  declare enum PillStatusType {
1049
1048
  PRIMARY = "PRIMARY",
@@ -1071,6 +1070,7 @@ declare enum TableCellType {
1071
1070
  }
1072
1071
 
1073
1072
  interface ITable {
1073
+ caption?: string;
1074
1074
  children: React.ReactNode;
1075
1075
  }
1076
1076
  interface ITableHead {
@@ -1088,7 +1088,7 @@ interface ITableCell {
1088
1088
  }
1089
1089
 
1090
1090
  declare const Table: {
1091
- ({ children }: ITable): react_jsx_runtime.JSX.Element;
1091
+ ({ children, caption }: ITable): react_jsx_runtime.JSX.Element;
1092
1092
  Body: ({ children }: ITableBody) => react_jsx_runtime.JSX.Element;
1093
1093
  Head: ({ children }: ITableHead) => react_jsx_runtime.JSX.Element;
1094
1094
  Row: ({ children }: ITableRow) => react_jsx_runtime.JSX.Element;