@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/cjs/index.js
CHANGED
|
@@ -3036,6 +3036,7 @@ var ColumnSettingsPanel = ({
|
|
|
3036
3036
|
import_vuu_ui_controls7.VuuInput,
|
|
3037
3037
|
{
|
|
3038
3038
|
className: "vuuInput",
|
|
3039
|
+
"data-embedded": true,
|
|
3039
3040
|
onChange,
|
|
3040
3041
|
onCommit: onInputCommit,
|
|
3041
3042
|
value: getColumnLabel2(column)
|
|
@@ -3048,6 +3049,7 @@ var ColumnSettingsPanel = ({
|
|
|
3048
3049
|
import_vuu_ui_controls7.VuuInput,
|
|
3049
3050
|
{
|
|
3050
3051
|
className: "vuuInput",
|
|
3052
|
+
"data-embedded": true,
|
|
3051
3053
|
onChange,
|
|
3052
3054
|
value: width,
|
|
3053
3055
|
onCommit: onInputCommit
|
|
@@ -3064,10 +3066,10 @@ var ColumnSettingsPanel = ({
|
|
|
3064
3066
|
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(import_core8.FormField, { "data-field": "column-pin", children: [
|
|
3065
3067
|
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_core8.FormFieldLabel, { children: "Pin Column" }),
|
|
3066
3068
|
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(import_core8.ToggleButtonGroup, { onChange: onChangeToggleButton, value: pin != null ? pin : "", children: [
|
|
3067
|
-
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_core8.ToggleButton, { value: "", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_vuu_ui_controls7.Icon, { name: "cross-circle", size: 16 }) }),
|
|
3068
3069
|
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_core8.ToggleButton, { value: "left", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_vuu_ui_controls7.Icon, { name: "pin-left", size: 16 }) }),
|
|
3069
3070
|
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_core8.ToggleButton, { value: "floating", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_vuu_ui_controls7.Icon, { name: "pin-float", size: 16 }) }),
|
|
3070
|
-
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_core8.ToggleButton, { value: "right", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_vuu_ui_controls7.Icon, { name: "pin-right", size: 16 }) })
|
|
3071
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_core8.ToggleButton, { value: "right", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_vuu_ui_controls7.Icon, { name: "pin-right", size: 16 }) }),
|
|
3072
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_core8.ToggleButton, { value: "", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_vuu_ui_controls7.Icon, { name: "cross-circle", size: 16 }) })
|
|
3071
3073
|
] })
|
|
3072
3074
|
] }),
|
|
3073
3075
|
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
@@ -3381,6 +3383,17 @@ var TableSettingsPanel = ({
|
|
|
3381
3383
|
});
|
|
3382
3384
|
return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: classBase15, children: [
|
|
3383
3385
|
allowColumnLabelCase || allowColumnDefaultWidth || allowGridRowStyling ? /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: `${classBase15}-header`, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { children: "Column Settings" }) }) : null,
|
|
3386
|
+
allowColumnDefaultWidth ? /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(import_core9.FormField, { children: [
|
|
3387
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(import_core9.FormFieldLabel, { children: "Column Width" }),
|
|
3388
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
3389
|
+
import_vuu_ui_controls9.VuuInput,
|
|
3390
|
+
{
|
|
3391
|
+
className: "vuuInput",
|
|
3392
|
+
"data-embedded": true,
|
|
3393
|
+
onCommit: onCommitColumnWidth
|
|
3394
|
+
}
|
|
3395
|
+
)
|
|
3396
|
+
] }) : null,
|
|
3384
3397
|
allowColumnLabelCase ? /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(import_core9.FormField, { children: [
|
|
3385
3398
|
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(import_core9.FormFieldLabel, { children: "Column Labels" }),
|
|
3386
3399
|
/* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
|
|
@@ -3429,10 +3442,6 @@ var TableSettingsPanel = ({
|
|
|
3429
3442
|
)
|
|
3430
3443
|
] })
|
|
3431
3444
|
] }) : null,
|
|
3432
|
-
allowColumnDefaultWidth ? /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(import_core9.FormField, { children: [
|
|
3433
|
-
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(import_core9.FormFieldLabel, { children: "Default Column Width" }),
|
|
3434
|
-
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(import_vuu_ui_controls9.VuuInput, { className: "vuuInput", onCommit: onCommitColumnWidth })
|
|
3435
|
-
] }) : null,
|
|
3436
3445
|
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
3437
3446
|
ColumnList,
|
|
3438
3447
|
{
|