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 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
@@ -1092,6 +1092,7 @@ export {
1092
1092
  CmrDeletionDialog,
1093
1093
  CmrEditConfirmation,
1094
1094
  CmrInput,
1095
+ Label_default as CmrLabel,
1095
1096
  CmrNameDialog,
1096
1097
  Panel_default as CmrPanel,
1097
1098
  CmrRadioGroup_default as CmrRadioGroup,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloudmr-ux",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "author": "erosmontin@gmail.com",
5
5
  "license": "MIT",
6
6
  "repository": "erosmontin/cloudmr-ux",