@apexcura/ui-components 0.0.11-Beta182 → 0.0.11-Beta183
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 -28
- package/dist/index.js +2 -3
- package/dist/index.mjs +2 -3
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -341,24 +341,12 @@ video {
|
|
|
341
341
|
.table {
|
|
342
342
|
display: table;
|
|
343
343
|
}
|
|
344
|
-
.h-\[40px\] {
|
|
345
|
-
height: 40px;
|
|
346
|
-
}
|
|
347
|
-
.w-\[126px\] {
|
|
348
|
-
width: 126px;
|
|
349
|
-
}
|
|
350
344
|
.rounded-\[8px\] {
|
|
351
345
|
border-radius: 8px;
|
|
352
346
|
}
|
|
353
|
-
.rounded-full {
|
|
354
|
-
border-radius: 9999px;
|
|
355
|
-
}
|
|
356
347
|
.border {
|
|
357
348
|
border-width: 1px;
|
|
358
349
|
}
|
|
359
|
-
.border-none {
|
|
360
|
-
border-style: none;
|
|
361
|
-
}
|
|
362
350
|
.border-\[\#919191\] {
|
|
363
351
|
--tw-border-opacity: 1;
|
|
364
352
|
border-color: rgb(145 145 145 / var(--tw-border-opacity));
|
|
@@ -375,10 +363,6 @@ video {
|
|
|
375
363
|
--tw-bg-opacity: 1;
|
|
376
364
|
background-color: rgb(242 242 242 / var(--tw-bg-opacity));
|
|
377
365
|
}
|
|
378
|
-
.bg-purple-800 {
|
|
379
|
-
--tw-bg-opacity: 1;
|
|
380
|
-
background-color: rgb(107 33 168 / var(--tw-bg-opacity));
|
|
381
|
-
}
|
|
382
366
|
.p-\[6px\] {
|
|
383
367
|
padding: 6px;
|
|
384
368
|
}
|
|
@@ -392,10 +376,6 @@ video {
|
|
|
392
376
|
--tw-text-opacity: 1;
|
|
393
377
|
color: rgb(0 0 0 / var(--tw-text-opacity));
|
|
394
378
|
}
|
|
395
|
-
.text-white {
|
|
396
|
-
--tw-text-opacity: 1;
|
|
397
|
-
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
398
|
-
}
|
|
399
379
|
.shadow-\[0px_0px_1px_1px_\#919191\] {
|
|
400
380
|
--tw-shadow: 0px 0px 1px 1px #919191;
|
|
401
381
|
--tw-shadow-colored: 0px 0px 1px 1px var(--tw-shadow-color);
|
|
@@ -412,14 +392,6 @@ video {
|
|
|
412
392
|
var(--tw-ring-shadow, 0 0 #0000),
|
|
413
393
|
var(--tw-shadow);
|
|
414
394
|
}
|
|
415
|
-
.shadow-lg {
|
|
416
|
-
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
417
|
-
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
418
|
-
box-shadow:
|
|
419
|
-
var(--tw-ring-offset-shadow, 0 0 #0000),
|
|
420
|
-
var(--tw-ring-shadow, 0 0 #0000),
|
|
421
|
-
var(--tw-shadow);
|
|
422
|
-
}
|
|
423
395
|
.filter {
|
|
424
396
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
425
397
|
}
|
package/dist/index.js
CHANGED
|
@@ -387,7 +387,6 @@ var MultipleSelectElement = (props) => {
|
|
|
387
387
|
|
|
388
388
|
// src/Components/Button.tsx
|
|
389
389
|
var import_react12 = __toESM(require("react"));
|
|
390
|
-
var defaultClassName = "w-[126px] h-[40px] bg-purple-800 text-white rounded-full shadow-lg submit border-none";
|
|
391
390
|
var ButtonElement = (props) => {
|
|
392
391
|
const handleClick = typeof props.action === "string" ? () => {
|
|
393
392
|
console.log("Performing action:", props.action);
|
|
@@ -396,7 +395,7 @@ var ButtonElement = (props) => {
|
|
|
396
395
|
"button",
|
|
397
396
|
{
|
|
398
397
|
onClick: handleClick,
|
|
399
|
-
className: `${
|
|
398
|
+
className: `${props.className ? props.className : ""}`
|
|
400
399
|
},
|
|
401
400
|
props.icon && /* @__PURE__ */ import_react12.default.createElement("span", { className: props.iconsClassName }, props.icon),
|
|
402
401
|
props.label
|
|
@@ -638,7 +637,7 @@ var TableElement = (props) => {
|
|
|
638
637
|
dataSource,
|
|
639
638
|
columns,
|
|
640
639
|
bordered: true,
|
|
641
|
-
|
|
640
|
+
scroll: { x: 1500, y: 300 },
|
|
642
641
|
size: props.size && props.size
|
|
643
642
|
}
|
|
644
643
|
);
|
package/dist/index.mjs
CHANGED
|
@@ -336,7 +336,6 @@ var MultipleSelectElement = (props) => {
|
|
|
336
336
|
|
|
337
337
|
// src/Components/Button.tsx
|
|
338
338
|
import React11 from "react";
|
|
339
|
-
var defaultClassName = "w-[126px] h-[40px] bg-purple-800 text-white rounded-full shadow-lg submit border-none";
|
|
340
339
|
var ButtonElement = (props) => {
|
|
341
340
|
const handleClick = typeof props.action === "string" ? () => {
|
|
342
341
|
console.log("Performing action:", props.action);
|
|
@@ -345,7 +344,7 @@ var ButtonElement = (props) => {
|
|
|
345
344
|
"button",
|
|
346
345
|
{
|
|
347
346
|
onClick: handleClick,
|
|
348
|
-
className: `${
|
|
347
|
+
className: `${props.className ? props.className : ""}`
|
|
349
348
|
},
|
|
350
349
|
props.icon && /* @__PURE__ */ React11.createElement("span", { className: props.iconsClassName }, props.icon),
|
|
351
350
|
props.label
|
|
@@ -587,7 +586,7 @@ var TableElement = (props) => {
|
|
|
587
586
|
dataSource,
|
|
588
587
|
columns,
|
|
589
588
|
bordered: true,
|
|
590
|
-
|
|
589
|
+
scroll: { x: 1500, y: 300 },
|
|
591
590
|
size: props.size && props.size
|
|
592
591
|
}
|
|
593
592
|
);
|