@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260218092649 → 0.8.1-dev.20260228093240
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.js +5 -5
- package/dist/index.mjs +5 -5
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1139,7 +1139,7 @@ var ToastService_default = ToastService;
|
|
|
1139
1139
|
var buttonClasses = /* @__PURE__ */ new Map([
|
|
1140
1140
|
[
|
|
1141
1141
|
"Primary" /* Primary */,
|
|
1142
|
-
"relative inline-flex items-center justify-center bg-primary rounded px-4 py-3 lg:py-2 font-medium shadow-sm hover:shadow-lg hover:bg-primary-strong focus:outline-none active:scale-95 disabled:opacity-50 disabled:cursor-not-allowed transition duration-150 ease-in-out text-
|
|
1142
|
+
"relative inline-flex items-center justify-center bg-primary rounded px-4 py-3 lg:py-2 font-medium shadow-sm hover:shadow-lg hover:bg-primary-strong focus:outline-none active:scale-95 disabled:opacity-50 disabled:cursor-not-allowed transition duration-150 ease-in-out text-white"
|
|
1143
1143
|
],
|
|
1144
1144
|
[
|
|
1145
1145
|
"Secondary" /* Secondary */,
|
|
@@ -2365,9 +2365,9 @@ var DataList = (props) => {
|
|
|
2365
2365
|
return /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
2366
2366
|
"th",
|
|
2367
2367
|
{
|
|
2368
|
-
className: "px-6 py-3 text-left font-medium cursor-pointer
|
|
2368
|
+
className: "px-6 py-3 text-left font-medium cursor-pointer bg-neutral-soft " + column.width + (column.controlType == ViewControlTypes_default.moneyView ? " text-right" : ""),
|
|
2369
2369
|
children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(Hyperlink, { href: url, className: "!text-neutral-contrast ", children: /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)("span", { className: "flex items-center space-x-1", children: [
|
|
2370
|
-
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("span", { children: column.label }),
|
|
2370
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("span", { className: "text-black", children: column.label }),
|
|
2371
2371
|
column.enableSorting && /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(Icon_default, { className: "w-4 h-4", name: icon })
|
|
2372
2372
|
] }) })
|
|
2373
2373
|
},
|
|
@@ -2463,7 +2463,7 @@ var DataList = (props) => {
|
|
|
2463
2463
|
{
|
|
2464
2464
|
className: `flex justify-between items-center bg-white pl-6 pr-2 h-14 mb-3 shadow-sm rounded-md border-b border-neutral-200`,
|
|
2465
2465
|
children: [
|
|
2466
|
-
props.title ? /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("div", { className: "inline-flex items-center gap-2", children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("h2", { className: "text-lg font-semibold text-
|
|
2466
|
+
props.title ? /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("div", { className: "inline-flex items-center gap-2", children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("h2", { className: "text-lg font-semibold text-black", children: props.title }) }) : /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("div", {}),
|
|
2467
2467
|
/* @__PURE__ */ (0, import_jsx_runtime40.jsxs)("div", { className: "flex items-center gap-3", children: [
|
|
2468
2468
|
props.filters && props.filters.map((filter) => /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
2469
2469
|
InputControl_default,
|
|
@@ -2510,7 +2510,7 @@ var DataList = (props) => {
|
|
|
2510
2510
|
return /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
2511
2511
|
"th",
|
|
2512
2512
|
{
|
|
2513
|
-
className: "px-6 py-3 text-left font-medium cursor-pointer " + column.width + (column.controlType == ViewControlTypes_default.moneyView ? " text-right" : ""),
|
|
2513
|
+
className: "px-6 py-3 text-left font-medium cursor-pointer bg-neutral-soft " + column.width + (column.controlType == ViewControlTypes_default.moneyView ? " text-right" : ""),
|
|
2514
2514
|
children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(Hyperlink, { href: url, className: "text-body-950", children: /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)("span", { className: "flex items-center space-x-1", children: [
|
|
2515
2515
|
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("span", { children: column.label }),
|
|
2516
2516
|
column.enableSorting && /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(Icon_default, { className: "w-4 h-4", name: icon })
|
package/dist/index.mjs
CHANGED
|
@@ -1099,7 +1099,7 @@ var ToastService_default = ToastService;
|
|
|
1099
1099
|
var buttonClasses = /* @__PURE__ */ new Map([
|
|
1100
1100
|
[
|
|
1101
1101
|
"Primary" /* Primary */,
|
|
1102
|
-
"relative inline-flex items-center justify-center bg-primary rounded px-4 py-3 lg:py-2 font-medium shadow-sm hover:shadow-lg hover:bg-primary-strong focus:outline-none active:scale-95 disabled:opacity-50 disabled:cursor-not-allowed transition duration-150 ease-in-out text-
|
|
1102
|
+
"relative inline-flex items-center justify-center bg-primary rounded px-4 py-3 lg:py-2 font-medium shadow-sm hover:shadow-lg hover:bg-primary-strong focus:outline-none active:scale-95 disabled:opacity-50 disabled:cursor-not-allowed transition duration-150 ease-in-out text-white"
|
|
1103
1103
|
],
|
|
1104
1104
|
[
|
|
1105
1105
|
"Secondary" /* Secondary */,
|
|
@@ -2333,9 +2333,9 @@ var DataList = (props) => {
|
|
|
2333
2333
|
return /* @__PURE__ */ jsx40(
|
|
2334
2334
|
"th",
|
|
2335
2335
|
{
|
|
2336
|
-
className: "px-6 py-3 text-left font-medium cursor-pointer
|
|
2336
|
+
className: "px-6 py-3 text-left font-medium cursor-pointer bg-neutral-soft " + column.width + (column.controlType == ViewControlTypes_default.moneyView ? " text-right" : ""),
|
|
2337
2337
|
children: /* @__PURE__ */ jsx40(Hyperlink, { href: url, className: "!text-neutral-contrast ", children: /* @__PURE__ */ jsxs22("span", { className: "flex items-center space-x-1", children: [
|
|
2338
|
-
/* @__PURE__ */ jsx40("span", { children: column.label }),
|
|
2338
|
+
/* @__PURE__ */ jsx40("span", { className: "text-black", children: column.label }),
|
|
2339
2339
|
column.enableSorting && /* @__PURE__ */ jsx40(Icon_default, { className: "w-4 h-4", name: icon })
|
|
2340
2340
|
] }) })
|
|
2341
2341
|
},
|
|
@@ -2431,7 +2431,7 @@ var DataList = (props) => {
|
|
|
2431
2431
|
{
|
|
2432
2432
|
className: `flex justify-between items-center bg-white pl-6 pr-2 h-14 mb-3 shadow-sm rounded-md border-b border-neutral-200`,
|
|
2433
2433
|
children: [
|
|
2434
|
-
props.title ? /* @__PURE__ */ jsx40("div", { className: "inline-flex items-center gap-2", children: /* @__PURE__ */ jsx40("h2", { className: "text-lg font-semibold text-
|
|
2434
|
+
props.title ? /* @__PURE__ */ jsx40("div", { className: "inline-flex items-center gap-2", children: /* @__PURE__ */ jsx40("h2", { className: "text-lg font-semibold text-black", children: props.title }) }) : /* @__PURE__ */ jsx40("div", {}),
|
|
2435
2435
|
/* @__PURE__ */ jsxs22("div", { className: "flex items-center gap-3", children: [
|
|
2436
2436
|
props.filters && props.filters.map((filter) => /* @__PURE__ */ jsx40(
|
|
2437
2437
|
InputControl_default,
|
|
@@ -2478,7 +2478,7 @@ var DataList = (props) => {
|
|
|
2478
2478
|
return /* @__PURE__ */ jsx40(
|
|
2479
2479
|
"th",
|
|
2480
2480
|
{
|
|
2481
|
-
className: "px-6 py-3 text-left font-medium cursor-pointer " + column.width + (column.controlType == ViewControlTypes_default.moneyView ? " text-right" : ""),
|
|
2481
|
+
className: "px-6 py-3 text-left font-medium cursor-pointer bg-neutral-soft " + column.width + (column.controlType == ViewControlTypes_default.moneyView ? " text-right" : ""),
|
|
2482
2482
|
children: /* @__PURE__ */ jsx40(Hyperlink, { href: url, className: "text-body-950", children: /* @__PURE__ */ jsxs22("span", { className: "flex items-center space-x-1", children: [
|
|
2483
2483
|
/* @__PURE__ */ jsx40("span", { children: column.label }),
|
|
2484
2484
|
column.enableSorting && /* @__PURE__ */ jsx40(Icon_default, { className: "w-4 h-4", name: icon })
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acoustte-digital-services/digitalstore-controls-dev",
|
|
3
|
-
"version": "0.8.1-dev.
|
|
3
|
+
"version": "0.8.1-dev.20260228093240",
|
|
4
4
|
"description": "Reusable React components",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"react-dom": "^18 || ^19"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@types/node": "^25.2
|
|
19
|
+
"@types/node": "^25.3.2",
|
|
20
20
|
"@types/react": "^19",
|
|
21
21
|
"@types/react-dom": "^19",
|
|
22
22
|
"tsup": "^8.5.1",
|