@platforma-sdk/ui-vue 1.11.6 → 1.11.7
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/CHANGELOG.md +6 -0
- package/dist/lib.js +20 -11
- package/dist/lib.umd.cjs +3 -3
- package/dist/src/aggrid.d.ts.map +1 -1
- package/dist/src/components/PlAgTextAndButtonCell/PlAgTextAndButtonCell.vue.d.ts +46 -4
- package/dist/src/components/PlAgTextAndButtonCell/PlAgTextAndButtonCell.vue.d.ts.map +1 -1
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/aggrid.ts +4 -0
- package/src/components/PlAgTextAndButtonCell/PlAgTextAndButtonCell.vue +46 -13
- package/src/components/PlAppErrorNotificationAlert/PlAppErrorNotificationAlert.vue +1 -1
package/CHANGELOG.md
CHANGED
package/dist/lib.js
CHANGED
|
@@ -7736,6 +7736,10 @@ const Jk = Ox("headerBottomBorder").withCSS(Kk), Xk = Mx.withParams({
|
|
|
7736
7736
|
borderColor: "#E1E3EB",
|
|
7737
7737
|
cellHorizontalPaddingScale: 1,
|
|
7738
7738
|
checkboxBorderRadius: "3px",
|
|
7739
|
+
checkboxCheckedBackgroundColor: "#110529",
|
|
7740
|
+
checkboxCheckedBorderColor: "#110529",
|
|
7741
|
+
checkboxIndeterminateBackgroundColor: "#110529",
|
|
7742
|
+
checkboxIndeterminateBorderColor: "#110529",
|
|
7739
7743
|
checkboxUncheckedBorderColor: "#CFD1DB",
|
|
7740
7744
|
columnBorder: !0,
|
|
7741
7745
|
columnHoverColor: "#9BABCC16",
|
|
@@ -17270,7 +17274,7 @@ const cM = /* @__PURE__ */ Cl(aM, [["render", uM]]), dM = { class: "pl-app-notif
|
|
|
17270
17274
|
Se(N(Pg), {
|
|
17271
17275
|
modelValue: n.value,
|
|
17272
17276
|
"onUpdate:modelValue": c[0] || (c[0] = (d) => n.value = d),
|
|
17273
|
-
width: "
|
|
17277
|
+
width: "720px",
|
|
17274
17278
|
style: { "max-height": "100vh" }
|
|
17275
17279
|
}, {
|
|
17276
17280
|
title: Te(() => c[2] || (c[2] = [
|
|
@@ -22171,17 +22175,22 @@ const MM = { class: "ap-ag-data-table-container" }, GM = {
|
|
|
22171
22175
|
},
|
|
22172
22176
|
setup(t) {
|
|
22173
22177
|
const e = t;
|
|
22178
|
+
console.log(e);
|
|
22174
22179
|
function n() {
|
|
22175
|
-
|
|
22176
|
-
|
|
22177
|
-
|
|
22178
|
-
|
|
22179
|
-
|
|
22180
|
-
|
|
22181
|
-
|
|
22180
|
+
if (e.params.invokeRowsOnDoubleClick) {
|
|
22181
|
+
const i = e.params.api, s = {
|
|
22182
|
+
rowPinned: e.params.node.rowPinned,
|
|
22183
|
+
api: i,
|
|
22184
|
+
rowIndex: e.params.node.rowIndex,
|
|
22185
|
+
context: i,
|
|
22186
|
+
type: "rowDoubleClicked",
|
|
22187
|
+
node: e.params.node,
|
|
22188
|
+
data: e.params.data,
|
|
22189
|
+
event: null
|
|
22190
|
+
};
|
|
22182
22191
|
i.dispatchEvent(s);
|
|
22183
22192
|
} else
|
|
22184
|
-
|
|
22193
|
+
e.params.onClick && e.params.onClick(e.params);
|
|
22185
22194
|
}
|
|
22186
22195
|
return (i, s) => (C(), S("div", WM, [
|
|
22187
22196
|
O("div", HM, se(i.params.value), 1),
|
|
@@ -22190,9 +22199,9 @@ const MM = { class: "ap-ag-data-table-container" }, GM = {
|
|
|
22190
22199
|
onClick: Ke(n, ["stop"])
|
|
22191
22200
|
}, [
|
|
22192
22201
|
Se(N(Ir), {
|
|
22193
|
-
name: i.params.
|
|
22202
|
+
name: i.params.icon ?? "maximize"
|
|
22194
22203
|
}, null, 8, ["name"]),
|
|
22195
|
-
I(" " + se(i.params.
|
|
22204
|
+
I(" " + se(i.params.btnLabel ?? "Open"), 1)
|
|
22196
22205
|
])
|
|
22197
22206
|
]));
|
|
22198
22207
|
}
|