@mamrp/components 1.0.25 → 1.0.29
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/dist/index.d.mts +5 -2
- package/dist/index.d.ts +5 -2
- package/dist/index.js +157 -122
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +129 -94
- package/dist/index.mjs.map +1 -1
- package/package.json +72 -71
package/dist/index.d.mts
CHANGED
|
@@ -173,15 +173,18 @@ interface PaginationListProps {
|
|
|
173
173
|
}
|
|
174
174
|
declare function PaginationList({ currentPage, setCurrentPage, totalPages, }: PaginationListProps): React.JSX.Element;
|
|
175
175
|
|
|
176
|
-
declare function RadioButton({ name, label, options, control }: {
|
|
176
|
+
declare function RadioButton({ name, label, options, control, align, disabledBoarder, direction, }: {
|
|
177
177
|
name: string;
|
|
178
|
-
label: string;
|
|
178
|
+
label: string | React.ReactNode;
|
|
179
179
|
control: Control<any>;
|
|
180
180
|
options: {
|
|
181
181
|
value: any;
|
|
182
182
|
name: string;
|
|
183
183
|
id: any;
|
|
184
184
|
}[];
|
|
185
|
+
align?: "start" | "center" | "end";
|
|
186
|
+
disabledBoarder?: boolean;
|
|
187
|
+
direction?: "row" | "column";
|
|
185
188
|
}): React.JSX.Element;
|
|
186
189
|
|
|
187
190
|
declare const NestedSelect: React__default.FC;
|
package/dist/index.d.ts
CHANGED
|
@@ -173,15 +173,18 @@ interface PaginationListProps {
|
|
|
173
173
|
}
|
|
174
174
|
declare function PaginationList({ currentPage, setCurrentPage, totalPages, }: PaginationListProps): React.JSX.Element;
|
|
175
175
|
|
|
176
|
-
declare function RadioButton({ name, label, options, control }: {
|
|
176
|
+
declare function RadioButton({ name, label, options, control, align, disabledBoarder, direction, }: {
|
|
177
177
|
name: string;
|
|
178
|
-
label: string;
|
|
178
|
+
label: string | React.ReactNode;
|
|
179
179
|
control: Control<any>;
|
|
180
180
|
options: {
|
|
181
181
|
value: any;
|
|
182
182
|
name: string;
|
|
183
183
|
id: any;
|
|
184
184
|
}[];
|
|
185
|
+
align?: "start" | "center" | "end";
|
|
186
|
+
disabledBoarder?: boolean;
|
|
187
|
+
direction?: "row" | "column";
|
|
185
188
|
}): React.JSX.Element;
|
|
186
189
|
|
|
187
190
|
declare const NestedSelect: React__default.FC;
|