cloudmr-ux 1.8.1 → 1.8.3

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.css CHANGED
@@ -146,6 +146,42 @@
146
146
 
147
147
  /* src/CmrComponents/input-number/InputNumber.css */
148
148
 
149
+ /* src/CmrComponents/select-upload/SelectUpload.css */
150
+ .cmr-select__control {
151
+ border-color: #ccc;
152
+ font-family:
153
+ Inter,
154
+ Roboto,
155
+ Helvetica,
156
+ Arial,
157
+ sans-serif;
158
+ font-weight: 400;
159
+ }
160
+ .cmr-select__option {
161
+ font-family:
162
+ Inter,
163
+ Roboto,
164
+ Helvetica,
165
+ Arial,
166
+ sans-serif;
167
+ font-weight: 400;
168
+ }
169
+ .cmr-select__single-value {
170
+ font-weight: 400;
171
+ font-family:
172
+ Inter,
173
+ Roboto,
174
+ Helvetica,
175
+ Arial,
176
+ sans-serif;
177
+ }
178
+ .cmr-select__menu {
179
+ z-index: 9999 !important;
180
+ }
181
+ .cmr-select__menu-portal {
182
+ z-index: 2000 !important;
183
+ }
184
+
149
185
  /* src/CmrComponents/tooltip/Tooltip.css */
150
186
 
151
187
  /* src/CmrTable/CmrTable.css */
package/dist/index.js CHANGED
@@ -1140,6 +1140,7 @@ var CMRSelectUpload = (props) => {
1140
1140
  /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_Box3.default, { sx: { p: 1 }, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1141
1141
  import_react_select.default,
1142
1142
  {
1143
+ classNamePrefix: "cmr-select",
1143
1144
  isDisabled: uploading,
1144
1145
  options: props.fileSelection.map((file) => ({
1145
1146
  value: file.id,
package/dist/index.mjs CHANGED
@@ -1092,6 +1092,7 @@ var CMRSelectUpload = (props) => {
1092
1092
  /* @__PURE__ */ jsx18(Box4, { sx: { p: 1 }, children: /* @__PURE__ */ jsx18(
1093
1093
  Select2,
1094
1094
  {
1095
+ classNamePrefix: "cmr-select",
1095
1096
  isDisabled: uploading,
1096
1097
  options: props.fileSelection.map((file) => ({
1097
1098
  value: file.id,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloudmr-ux",
3
- "version": "1.8.1",
3
+ "version": "1.8.3",
4
4
  "author": "erosmontin@gmail.com",
5
5
  "license": "MIT",
6
6
  "repository": "erosmontin/cloudmr-ux",