@apexcura/ui-components 0.0.14-Beta268 → 0.0.14-Beta269
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 +0 -19
- package/dist/index.js +1 -2
- package/dist/index.mjs +1 -2
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -338,9 +338,6 @@ video {
|
|
|
338
338
|
.fixed {
|
|
339
339
|
position: fixed;
|
|
340
340
|
}
|
|
341
|
-
.m-10 {
|
|
342
|
-
margin: 2.5rem;
|
|
343
|
-
}
|
|
344
341
|
.m-\[10px\] {
|
|
345
342
|
margin: 10px;
|
|
346
343
|
}
|
|
@@ -353,18 +350,12 @@ video {
|
|
|
353
350
|
.grid {
|
|
354
351
|
display: grid;
|
|
355
352
|
}
|
|
356
|
-
.flex-col {
|
|
357
|
-
flex-direction: column;
|
|
358
|
-
}
|
|
359
353
|
.rounded-\[8px\] {
|
|
360
354
|
border-radius: 8px;
|
|
361
355
|
}
|
|
362
356
|
.border {
|
|
363
357
|
border-width: 1px;
|
|
364
358
|
}
|
|
365
|
-
.border-4 {
|
|
366
|
-
border-width: 4px;
|
|
367
|
-
}
|
|
368
359
|
.border-\[\#919191\] {
|
|
369
360
|
--tw-border-opacity: 1;
|
|
370
361
|
border-color: rgb(145 145 145 / var(--tw-border-opacity));
|
|
@@ -381,22 +372,12 @@ video {
|
|
|
381
372
|
--tw-bg-opacity: 1;
|
|
382
373
|
background-color: rgb(242 242 242 / var(--tw-bg-opacity));
|
|
383
374
|
}
|
|
384
|
-
.bg-green-500 {
|
|
385
|
-
--tw-bg-opacity: 1;
|
|
386
|
-
background-color: rgb(34 197 94 / var(--tw-bg-opacity));
|
|
387
|
-
}
|
|
388
|
-
.p-10 {
|
|
389
|
-
padding: 2.5rem;
|
|
390
|
-
}
|
|
391
375
|
.p-\[6px\] {
|
|
392
376
|
padding: 6px;
|
|
393
377
|
}
|
|
394
378
|
.text-center {
|
|
395
379
|
text-align: center;
|
|
396
380
|
}
|
|
397
|
-
.font-semibold {
|
|
398
|
-
font-weight: 600;
|
|
399
|
-
}
|
|
400
381
|
.italic {
|
|
401
382
|
font-style: italic;
|
|
402
383
|
}
|
package/dist/index.js
CHANGED
|
@@ -199,7 +199,6 @@ var SelectElement = (props) => {
|
|
|
199
199
|
if (props.onChange) {
|
|
200
200
|
if (typeof value === "string") {
|
|
201
201
|
const filterOption2 = props.options && props.options.find((eachOption) => eachOption.value === value);
|
|
202
|
-
console.log(filterOption2);
|
|
203
202
|
props.onChange(filterOption2);
|
|
204
203
|
} else {
|
|
205
204
|
const selectedOptions = value ? value.map((eachVal) => {
|
|
@@ -209,7 +208,7 @@ var SelectElement = (props) => {
|
|
|
209
208
|
}
|
|
210
209
|
}
|
|
211
210
|
};
|
|
212
|
-
return /* @__PURE__ */ import_react5.default.createElement("div", { className:
|
|
211
|
+
return /* @__PURE__ */ import_react5.default.createElement("div", { className: props.containerClassName }, props.label && /* @__PURE__ */ import_react5.default.createElement("label", { htmlFor: props.name, className: props.className }, props.label), /* @__PURE__ */ import_react5.default.createElement(
|
|
213
212
|
import_antd5.Select,
|
|
214
213
|
{
|
|
215
214
|
options: props.options,
|
package/dist/index.mjs
CHANGED
|
@@ -132,7 +132,6 @@ var SelectElement = (props) => {
|
|
|
132
132
|
if (props.onChange) {
|
|
133
133
|
if (typeof value === "string") {
|
|
134
134
|
const filterOption2 = props.options && props.options.find((eachOption) => eachOption.value === value);
|
|
135
|
-
console.log(filterOption2);
|
|
136
135
|
props.onChange(filterOption2);
|
|
137
136
|
} else {
|
|
138
137
|
const selectedOptions = value ? value.map((eachVal) => {
|
|
@@ -142,7 +141,7 @@ var SelectElement = (props) => {
|
|
|
142
141
|
}
|
|
143
142
|
}
|
|
144
143
|
};
|
|
145
|
-
return /* @__PURE__ */ React5.createElement("div", { className:
|
|
144
|
+
return /* @__PURE__ */ React5.createElement("div", { className: props.containerClassName }, props.label && /* @__PURE__ */ React5.createElement("label", { htmlFor: props.name, className: props.className }, props.label), /* @__PURE__ */ React5.createElement(
|
|
146
145
|
Select,
|
|
147
146
|
{
|
|
148
147
|
options: props.options,
|