@vuu-ui/vuu-table-extras 0.8.26-debug → 0.8.27-debug
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/cjs/index.js +15 -6
- package/cjs/index.js.map +2 -2
- package/esm/index.js +15 -6
- package/esm/index.js.map +3 -3
- package/index.css +1 -1
- package/index.css.map +2 -2
- package/package.json +12 -12
package/esm/index.js
CHANGED
|
@@ -3109,6 +3109,7 @@ var ColumnSettingsPanel = ({
|
|
|
3109
3109
|
VuuInput,
|
|
3110
3110
|
{
|
|
3111
3111
|
className: "vuuInput",
|
|
3112
|
+
"data-embedded": true,
|
|
3112
3113
|
onChange,
|
|
3113
3114
|
onCommit: onInputCommit,
|
|
3114
3115
|
value: getColumnLabel2(column)
|
|
@@ -3121,6 +3122,7 @@ var ColumnSettingsPanel = ({
|
|
|
3121
3122
|
VuuInput,
|
|
3122
3123
|
{
|
|
3123
3124
|
className: "vuuInput",
|
|
3125
|
+
"data-embedded": true,
|
|
3124
3126
|
onChange,
|
|
3125
3127
|
value: width,
|
|
3126
3128
|
onCommit: onInputCommit
|
|
@@ -3137,10 +3139,10 @@ var ColumnSettingsPanel = ({
|
|
|
3137
3139
|
/* @__PURE__ */ jsxs12(FormField7, { "data-field": "column-pin", children: [
|
|
3138
3140
|
/* @__PURE__ */ jsx15(FormFieldLabel7, { children: "Pin Column" }),
|
|
3139
3141
|
/* @__PURE__ */ jsxs12(ToggleButtonGroup3, { onChange: onChangeToggleButton, value: pin != null ? pin : "", children: [
|
|
3140
|
-
/* @__PURE__ */ jsx15(ToggleButton3, { value: "", children: /* @__PURE__ */ jsx15(Icon2, { name: "cross-circle", size: 16 }) }),
|
|
3141
3142
|
/* @__PURE__ */ jsx15(ToggleButton3, { value: "left", children: /* @__PURE__ */ jsx15(Icon2, { name: "pin-left", size: 16 }) }),
|
|
3142
3143
|
/* @__PURE__ */ jsx15(ToggleButton3, { value: "floating", children: /* @__PURE__ */ jsx15(Icon2, { name: "pin-float", size: 16 }) }),
|
|
3143
|
-
/* @__PURE__ */ jsx15(ToggleButton3, { value: "right", children: /* @__PURE__ */ jsx15(Icon2, { name: "pin-right", size: 16 }) })
|
|
3144
|
+
/* @__PURE__ */ jsx15(ToggleButton3, { value: "right", children: /* @__PURE__ */ jsx15(Icon2, { name: "pin-right", size: 16 }) }),
|
|
3145
|
+
/* @__PURE__ */ jsx15(ToggleButton3, { value: "", children: /* @__PURE__ */ jsx15(Icon2, { name: "cross-circle", size: 16 }) })
|
|
3144
3146
|
] })
|
|
3145
3147
|
] }),
|
|
3146
3148
|
/* @__PURE__ */ jsx15(
|
|
@@ -3471,6 +3473,17 @@ var TableSettingsPanel = ({
|
|
|
3471
3473
|
});
|
|
3472
3474
|
return /* @__PURE__ */ jsxs14("div", { className: classBase15, children: [
|
|
3473
3475
|
allowColumnLabelCase || allowColumnDefaultWidth || allowGridRowStyling ? /* @__PURE__ */ jsx17("div", { className: `${classBase15}-header`, children: /* @__PURE__ */ jsx17("span", { children: "Column Settings" }) }) : null,
|
|
3476
|
+
allowColumnDefaultWidth ? /* @__PURE__ */ jsxs14(FormField8, { children: [
|
|
3477
|
+
/* @__PURE__ */ jsx17(FormFieldLabel8, { children: "Column Width" }),
|
|
3478
|
+
/* @__PURE__ */ jsx17(
|
|
3479
|
+
VuuInput2,
|
|
3480
|
+
{
|
|
3481
|
+
className: "vuuInput",
|
|
3482
|
+
"data-embedded": true,
|
|
3483
|
+
onCommit: onCommitColumnWidth
|
|
3484
|
+
}
|
|
3485
|
+
)
|
|
3486
|
+
] }) : null,
|
|
3474
3487
|
allowColumnLabelCase ? /* @__PURE__ */ jsxs14(FormField8, { children: [
|
|
3475
3488
|
/* @__PURE__ */ jsx17(FormFieldLabel8, { children: "Column Labels" }),
|
|
3476
3489
|
/* @__PURE__ */ jsxs14(
|
|
@@ -3519,10 +3532,6 @@ var TableSettingsPanel = ({
|
|
|
3519
3532
|
)
|
|
3520
3533
|
] })
|
|
3521
3534
|
] }) : null,
|
|
3522
|
-
allowColumnDefaultWidth ? /* @__PURE__ */ jsxs14(FormField8, { children: [
|
|
3523
|
-
/* @__PURE__ */ jsx17(FormFieldLabel8, { children: "Default Column Width" }),
|
|
3524
|
-
/* @__PURE__ */ jsx17(VuuInput2, { className: "vuuInput", onCommit: onCommitColumnWidth })
|
|
3525
|
-
] }) : null,
|
|
3526
3535
|
/* @__PURE__ */ jsx17(
|
|
3527
3536
|
ColumnList,
|
|
3528
3537
|
{
|