cloudmr-ux 1.1.3 → 1.1.4
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.ts +7 -1
- package/dist/index.js +2 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -218,6 +218,12 @@ interface CmrCheckboxProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
218
218
|
}
|
|
219
219
|
declare const CmrCheckbox: (props: CmrCheckboxProps) => react_jsx_runtime.JSX.Element;
|
|
220
220
|
|
|
221
|
+
interface CmrLabelProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
222
|
+
required?: boolean;
|
|
223
|
+
children?: any;
|
|
224
|
+
}
|
|
225
|
+
declare const CmrLabel: (props: CmrLabelProps) => react_jsx_runtime.JSX.Element;
|
|
226
|
+
|
|
221
227
|
interface CmrTableProps extends Omit<DataGridProps, 'rows'> {
|
|
222
228
|
dataSource: any[];
|
|
223
229
|
idAlias?: string;
|
|
@@ -228,4 +234,4 @@ interface CmrTableProps extends Omit<DataGridProps, 'rows'> {
|
|
|
228
234
|
|
|
229
235
|
declare const CmrTable: FC<CmrTableProps>;
|
|
230
236
|
|
|
231
|
-
export { CmrUpload as CMRUpload, CmrButton, CmrCheckbox, CmrCollapse, CmrConfirmation, CmrDeletionDialog, CmrEditConfirmation, CmrInput, CmrNameDialog, CmrPanel, CmrRadioGroup, CmrSelect, CmrTable, CmrTableProps, CmrTabs, LambdaFile };
|
|
237
|
+
export { CmrUpload as CMRUpload, CmrButton, CmrCheckbox, CmrCollapse, CmrConfirmation, CmrDeletionDialog, CmrEditConfirmation, CmrInput, CmrLabel, CmrNameDialog, CmrPanel, CmrRadioGroup, CmrSelect, CmrTable, CmrTableProps, CmrTabs, LambdaFile };
|
package/dist/index.js
CHANGED
|
@@ -38,6 +38,7 @@ __export(src_exports, {
|
|
|
38
38
|
CmrDeletionDialog: () => CmrDeletionDialog,
|
|
39
39
|
CmrEditConfirmation: () => CmrEditConfirmation,
|
|
40
40
|
CmrInput: () => CmrInput,
|
|
41
|
+
CmrLabel: () => Label_default,
|
|
41
42
|
CmrNameDialog: () => CmrNameDialog,
|
|
42
43
|
CmrPanel: () => Panel_default,
|
|
43
44
|
CmrRadioGroup: () => CmrRadioGroup_default,
|
|
@@ -1136,6 +1137,7 @@ var CmrTable2 = CmrTable_default;
|
|
|
1136
1137
|
CmrDeletionDialog,
|
|
1137
1138
|
CmrEditConfirmation,
|
|
1138
1139
|
CmrInput,
|
|
1140
|
+
CmrLabel,
|
|
1139
1141
|
CmrNameDialog,
|
|
1140
1142
|
CmrPanel,
|
|
1141
1143
|
CmrRadioGroup,
|
package/dist/index.mjs
CHANGED