@vuu-ui/vuu-data-react 0.8.13-debug → 0.8.14-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/esm/index.js +283 -283
- package/esm/index.js.map +2 -2
- package/package.json +9 -9
package/esm/index.js
CHANGED
|
@@ -964,11 +964,11 @@ var require_react_dom_development = __commonJS({
|
|
|
964
964
|
if (true) {
|
|
965
965
|
(function() {
|
|
966
966
|
"use strict";
|
|
967
|
-
var
|
|
967
|
+
var React36 = __require("react");
|
|
968
968
|
var _assign = require_object_assign();
|
|
969
969
|
var Scheduler = require_scheduler();
|
|
970
970
|
var tracing = require_tracing();
|
|
971
|
-
var ReactSharedInternals =
|
|
971
|
+
var ReactSharedInternals = React36.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
|
972
972
|
function warn(format) {
|
|
973
973
|
{
|
|
974
974
|
for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
|
@@ -1000,7 +1000,7 @@ var require_react_dom_development = __commonJS({
|
|
|
1000
1000
|
Function.prototype.apply.call(console[level], console, argsWithFormat);
|
|
1001
1001
|
}
|
|
1002
1002
|
}
|
|
1003
|
-
if (!
|
|
1003
|
+
if (!React36) {
|
|
1004
1004
|
{
|
|
1005
1005
|
throw Error("ReactDOM was loaded before React. Make sure you load the React package before loading ReactDOM.");
|
|
1006
1006
|
}
|
|
@@ -2420,7 +2420,7 @@ var require_react_dom_development = __commonJS({
|
|
|
2420
2420
|
var didWarnInvalidChild = false;
|
|
2421
2421
|
function flattenChildren(children) {
|
|
2422
2422
|
var content2 = "";
|
|
2423
|
-
|
|
2423
|
+
React36.Children.forEach(children, function(child) {
|
|
2424
2424
|
if (child == null) {
|
|
2425
2425
|
return;
|
|
2426
2426
|
}
|
|
@@ -2431,7 +2431,7 @@ var require_react_dom_development = __commonJS({
|
|
|
2431
2431
|
function validateProps(element, props) {
|
|
2432
2432
|
{
|
|
2433
2433
|
if (typeof props.children === "object" && props.children !== null) {
|
|
2434
|
-
|
|
2434
|
+
React36.Children.forEach(props.children, function(child) {
|
|
2435
2435
|
if (child == null) {
|
|
2436
2436
|
return;
|
|
2437
2437
|
}
|
|
@@ -9823,7 +9823,7 @@ var require_react_dom_development = __commonJS({
|
|
|
9823
9823
|
}
|
|
9824
9824
|
var fakeInternalInstance = {};
|
|
9825
9825
|
var isArray = Array.isArray;
|
|
9826
|
-
var emptyRefsObject = new
|
|
9826
|
+
var emptyRefsObject = new React36.Component().refs;
|
|
9827
9827
|
var didWarnAboutStateAssignmentForComponent;
|
|
9828
9828
|
var didWarnAboutUninitializedState;
|
|
9829
9829
|
var didWarnAboutGetSnapshotBeforeUpdateWithoutDidUpdate;
|
|
@@ -26160,13 +26160,13 @@ import { forwardRef as forwardRef22 } from "react";
|
|
|
26160
26160
|
|
|
26161
26161
|
// ../vuu-ui-controls/src/list/CheckboxIcon.tsx
|
|
26162
26162
|
var import_classnames21 = __toESM(require_classnames());
|
|
26163
|
-
import
|
|
26163
|
+
import React19 from "react";
|
|
26164
26164
|
var classBase13 = "vuuCheckboxIcon";
|
|
26165
26165
|
var CheckboxIcon2 = ({
|
|
26166
26166
|
checked = false,
|
|
26167
26167
|
disabled = false,
|
|
26168
26168
|
...htmlAttributes
|
|
26169
|
-
}) => /* @__PURE__ */
|
|
26169
|
+
}) => /* @__PURE__ */ React19.createElement(
|
|
26170
26170
|
"span",
|
|
26171
26171
|
{
|
|
26172
26172
|
...htmlAttributes,
|
|
@@ -26177,13 +26177,13 @@ var CheckboxIcon2 = ({
|
|
|
26177
26177
|
);
|
|
26178
26178
|
|
|
26179
26179
|
// ../vuu-ui-controls/src/list/ListItem.tsx
|
|
26180
|
-
import { jsx as
|
|
26180
|
+
import { jsx as jsx51, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
26181
26181
|
var classBase14 = "vuuListItem";
|
|
26182
26182
|
var ListItemProxy = forwardRef22(function ListItemNextProxy({
|
|
26183
26183
|
height,
|
|
26184
26184
|
...htmlAttributes
|
|
26185
26185
|
}, forwardedRef) {
|
|
26186
|
-
return /* @__PURE__ */
|
|
26186
|
+
return /* @__PURE__ */ jsx51(
|
|
26187
26187
|
"div",
|
|
26188
26188
|
{
|
|
26189
26189
|
...htmlAttributes,
|
|
@@ -26228,8 +26228,8 @@ var ListItem = forwardRef22(
|
|
|
26228
26228
|
ref: forwardedRef,
|
|
26229
26229
|
style,
|
|
26230
26230
|
children: [
|
|
26231
|
-
showCheckbox && /* @__PURE__ */
|
|
26232
|
-
children && typeof children !== "string" ? children : itemTextHighlightPattern == null ? /* @__PURE__ */
|
|
26231
|
+
showCheckbox && /* @__PURE__ */ jsx51(CheckboxIcon2, { "aria-hidden": true, checked: selected }),
|
|
26232
|
+
children && typeof children !== "string" ? children : itemTextHighlightPattern == null ? /* @__PURE__ */ jsx51("span", { className: `${classBase14}-textWrapper`, children: label || children }) : /* @__PURE__ */ jsx51(
|
|
26233
26233
|
Highlighter,
|
|
26234
26234
|
{
|
|
26235
26235
|
matchPattern: itemTextHighlightPattern,
|
|
@@ -26273,7 +26273,7 @@ import { boxContainsPoint as boxContainsPoint2, dispatchCustomEvent } from "@vuu
|
|
|
26273
26273
|
import { useCallback as useCallback35, useRef as useRef32 } from "react";
|
|
26274
26274
|
|
|
26275
26275
|
// ../vuu-ui-controls/src/drag-drop/DragDropProvider.tsx
|
|
26276
|
-
import { jsx as
|
|
26276
|
+
import { jsx as jsx52 } from "react/jsx-runtime";
|
|
26277
26277
|
var NO_DRAG_CONTEXT = {
|
|
26278
26278
|
isDragSource: void 0,
|
|
26279
26279
|
isDropTarget: void 0,
|
|
@@ -26350,7 +26350,7 @@ import {
|
|
|
26350
26350
|
useCallback as useCallback37,
|
|
26351
26351
|
useMemo as useMemo21
|
|
26352
26352
|
} from "react";
|
|
26353
|
-
import { jsx as
|
|
26353
|
+
import { jsx as jsx53 } from "react/jsx-runtime";
|
|
26354
26354
|
var makeClassNames = (classNames2) => classNames2.split(" ").map((className) => `vuuDraggable-${className}`);
|
|
26355
26355
|
var Draggable2 = forwardRef23(
|
|
26356
26356
|
function Draggable3({ wrapperClassName, element, onDropped, onTransitionEnd, style, scale = 1 }, forwardedRef) {
|
|
@@ -26378,13 +26378,13 @@ var Draggable2 = forwardRef23(
|
|
|
26378
26378
|
}),
|
|
26379
26379
|
[]
|
|
26380
26380
|
);
|
|
26381
|
-
return /* @__PURE__ */
|
|
26381
|
+
return /* @__PURE__ */ jsx53(Portal, { children: /* @__PURE__ */ jsx53(
|
|
26382
26382
|
PopupComponent,
|
|
26383
26383
|
{
|
|
26384
26384
|
anchorElement: { current: document.body },
|
|
26385
26385
|
placement: "absolute",
|
|
26386
26386
|
position,
|
|
26387
|
-
children: /* @__PURE__ */
|
|
26387
|
+
children: /* @__PURE__ */ jsx53(
|
|
26388
26388
|
"div",
|
|
26389
26389
|
{
|
|
26390
26390
|
className: (0, import_classnames23.default)("vuuDraggable", ...makeClassNames(wrapperClassName)),
|
|
@@ -26758,7 +26758,7 @@ var useDropIndicator = () => {
|
|
|
26758
26758
|
};
|
|
26759
26759
|
|
|
26760
26760
|
// ../vuu-ui-controls/src/drag-drop/useDragDropIndicator.tsx
|
|
26761
|
-
import { jsx as
|
|
26761
|
+
import { jsx as jsx54 } from "react/jsx-runtime";
|
|
26762
26762
|
var NOT_OVERFLOWED2 = ':not([data-overflowed="true"])';
|
|
26763
26763
|
var NOT_HIDDEN2 = ':not([aria-hidden="true"])';
|
|
26764
26764
|
var useDragDropIndicator = ({
|
|
@@ -26880,7 +26880,7 @@ var useDragDropIndicator = ({
|
|
|
26880
26880
|
height: 2
|
|
26881
26881
|
};
|
|
26882
26882
|
setDropIndicator(
|
|
26883
|
-
/* @__PURE__ */
|
|
26883
|
+
/* @__PURE__ */ jsx54(
|
|
26884
26884
|
Draggable2,
|
|
26885
26885
|
{
|
|
26886
26886
|
wrapperClassName: "dropIndicatorContainer",
|
|
@@ -27407,7 +27407,7 @@ var useDragDropNaturalMovement = ({
|
|
|
27407
27407
|
};
|
|
27408
27408
|
|
|
27409
27409
|
// ../vuu-ui-controls/src/drag-drop/useDragDropNext.tsx
|
|
27410
|
-
import { jsx as
|
|
27410
|
+
import { jsx as jsx55 } from "react/jsx-runtime";
|
|
27411
27411
|
var NULL_DRAG_DROP_RESULT = {
|
|
27412
27412
|
beginDrag: () => void 0,
|
|
27413
27413
|
drag: () => void 0,
|
|
@@ -27752,7 +27752,7 @@ var useDragDropNext = ({
|
|
|
27752
27752
|
} = dragElement;
|
|
27753
27753
|
setDraggableStatus({
|
|
27754
27754
|
isDragging: true,
|
|
27755
|
-
draggable: /* @__PURE__ */
|
|
27755
|
+
draggable: /* @__PURE__ */ jsx55(
|
|
27756
27756
|
Draggable2,
|
|
27757
27757
|
{
|
|
27758
27758
|
element: cloneElement7(dragElement),
|
|
@@ -28368,7 +28368,7 @@ var useScrollPosition = ({
|
|
|
28368
28368
|
};
|
|
28369
28369
|
|
|
28370
28370
|
// ../vuu-ui-controls/src/list/List.tsx
|
|
28371
|
-
import { Fragment as Fragment6, jsx as
|
|
28371
|
+
import { Fragment as Fragment6, jsx as jsx56, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
28372
28372
|
import { createElement as createElement3 } from "react";
|
|
28373
28373
|
var defaultEmptyMessage = "No data to display";
|
|
28374
28374
|
var classBase15 = "vuuList";
|
|
@@ -28565,7 +28565,7 @@ var List = forwardRef24(function List2({
|
|
|
28565
28565
|
showCheckbox: checkable
|
|
28566
28566
|
};
|
|
28567
28567
|
list.push(
|
|
28568
|
-
isChildItem ? cloneElement8(value, listItemProps) : /* @__PURE__ */
|
|
28568
|
+
isChildItem ? cloneElement8(value, listItemProps) : /* @__PURE__ */ jsx56(ListItem4, { ...listItemProps })
|
|
28569
28569
|
);
|
|
28570
28570
|
idx.value += 1;
|
|
28571
28571
|
}
|
|
@@ -28576,7 +28576,7 @@ var List = forwardRef24(function List2({
|
|
|
28576
28576
|
renderCollectionItems(items, idx, idx.value + count) || []
|
|
28577
28577
|
) : header;
|
|
28578
28578
|
list.push(
|
|
28579
|
-
/* @__PURE__ */
|
|
28579
|
+
/* @__PURE__ */ jsx56("div", { role: "group", children: childItems2 }, id2)
|
|
28580
28580
|
);
|
|
28581
28581
|
};
|
|
28582
28582
|
const renderCollectionItems = (items, idx = { value: 0 }, end = items.length) => {
|
|
@@ -28597,7 +28597,7 @@ var List = forwardRef24(function List2({
|
|
|
28597
28597
|
};
|
|
28598
28598
|
function renderEmpty() {
|
|
28599
28599
|
if (emptyMessage || showEmptyMessage) {
|
|
28600
|
-
return /* @__PURE__ */
|
|
28600
|
+
return /* @__PURE__ */ jsx56("span", { className: `${classBase15}-empty-message`, children: emptyMessage != null ? emptyMessage : defaultEmptyMessage });
|
|
28601
28601
|
} else {
|
|
28602
28602
|
return null;
|
|
28603
28603
|
}
|
|
@@ -28643,8 +28643,8 @@ var List = forwardRef24(function List2({
|
|
|
28643
28643
|
style: { ...styleProp, ...sizeStyles },
|
|
28644
28644
|
tabIndex: listDisabled || disableFocus ? void 0 : tabIndex,
|
|
28645
28645
|
children: [
|
|
28646
|
-
/* @__PURE__ */
|
|
28647
|
-
collectionHook.data.length === 0 && ListPlaceholder !== void 0 ? /* @__PURE__ */
|
|
28646
|
+
/* @__PURE__ */ jsx56(ListItemProxy, { ref: rowHeightProxyRef, height: itemHeightProp }),
|
|
28647
|
+
collectionHook.data.length === 0 && ListPlaceholder !== void 0 ? /* @__PURE__ */ jsx56(Fragment6, { children: /* @__PURE__ */ jsx56(ListPlaceholder, {}) }) : /* @__PURE__ */ jsx56("div", { className: `${classBase15}-viewport`, ref: scrollContainerRef, children: /* @__PURE__ */ jsxs15(
|
|
28648
28648
|
"div",
|
|
28649
28649
|
{
|
|
28650
28650
|
className: `${classBase15}-scrollingContentContainer`,
|
|
@@ -28752,7 +28752,7 @@ var useVirtualization = ({
|
|
|
28752
28752
|
};
|
|
28753
28753
|
|
|
28754
28754
|
// ../vuu-ui-controls/src/list/VirtualizedList.tsx
|
|
28755
|
-
import { jsx as
|
|
28755
|
+
import { jsx as jsx57, jsxs as jsxs16 } from "react/jsx-runtime";
|
|
28756
28756
|
var defaultEmptyMessage2 = "No data to display";
|
|
28757
28757
|
var withBaseName11 = makePrefixer("saltList");
|
|
28758
28758
|
var ListItem3 = memo(ListItem);
|
|
@@ -28877,7 +28877,7 @@ var VirtualizedList = forwardRef25(function List3({
|
|
|
28877
28877
|
const [key, offset, pos, item] = row;
|
|
28878
28878
|
const index = pos - 1;
|
|
28879
28879
|
list.push(
|
|
28880
|
-
/* @__PURE__ */
|
|
28880
|
+
/* @__PURE__ */ jsx57(
|
|
28881
28881
|
ListItem3,
|
|
28882
28882
|
{
|
|
28883
28883
|
"aria-setsize": collectionHook.data.length,
|
|
@@ -28910,7 +28910,7 @@ var VirtualizedList = forwardRef25(function List3({
|
|
|
28910
28910
|
}
|
|
28911
28911
|
function renderEmpty() {
|
|
28912
28912
|
if (emptyMessage || showEmptyMessage) {
|
|
28913
|
-
return /* @__PURE__ */
|
|
28913
|
+
return /* @__PURE__ */ jsx57("span", { className: withBaseName11("empty-message"), children: emptyMessage != null ? emptyMessage : defaultEmptyMessage2 });
|
|
28914
28914
|
} else {
|
|
28915
28915
|
return null;
|
|
28916
28916
|
}
|
|
@@ -28931,7 +28931,7 @@ var VirtualizedList = forwardRef25(function List3({
|
|
|
28931
28931
|
maxWidth: maxWidth != null ? maxWidth : width,
|
|
28932
28932
|
maxHeight: maxHeight != null ? maxHeight : listHeight
|
|
28933
28933
|
};
|
|
28934
|
-
return /* @__PURE__ */
|
|
28934
|
+
return /* @__PURE__ */ jsx57(
|
|
28935
28935
|
"div",
|
|
28936
28936
|
{
|
|
28937
28937
|
...htmlAttributes,
|
|
@@ -28950,7 +28950,7 @@ var VirtualizedList = forwardRef25(function List3({
|
|
|
28950
28950
|
className: withBaseName11("scrollingContentContainer"),
|
|
28951
28951
|
style: { height: contentHeight },
|
|
28952
28952
|
children: [
|
|
28953
|
-
/* @__PURE__ */
|
|
28953
|
+
/* @__PURE__ */ jsx57(ListItemProxy, { ref: rowHeightProxyRef }),
|
|
28954
28954
|
renderContent()
|
|
28955
28955
|
]
|
|
28956
28956
|
}
|
|
@@ -28961,7 +28961,7 @@ var VirtualizedList = forwardRef25(function List3({
|
|
|
28961
28961
|
|
|
28962
28962
|
// ../vuu-ui-controls/src/list/RadioIcon.tsx
|
|
28963
28963
|
var import_classnames25 = __toESM(require_classnames());
|
|
28964
|
-
import { jsx as
|
|
28964
|
+
import { jsx as jsx58 } from "react/jsx-runtime";
|
|
28965
28965
|
|
|
28966
28966
|
// ../vuu-ui-controls/src/dropdown/useDropdown.ts
|
|
28967
28967
|
import { useCallback as useCallback50, useMemo as useMemo29 } from "react";
|
|
@@ -29062,7 +29062,7 @@ var useDropdown = ({
|
|
|
29062
29062
|
};
|
|
29063
29063
|
|
|
29064
29064
|
// ../vuu-ui-controls/src/dropdown/Dropdown.tsx
|
|
29065
|
-
import { jsx as
|
|
29065
|
+
import { jsx as jsx59, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
29066
29066
|
var Dropdown2 = forwardRef26(function Dropdown3({
|
|
29067
29067
|
"aria-label": ariaLabel,
|
|
29068
29068
|
children,
|
|
@@ -29144,7 +29144,7 @@ var Dropdown2 = forwardRef26(function Dropdown3({
|
|
|
29144
29144
|
})
|
|
29145
29145
|
);
|
|
29146
29146
|
} else {
|
|
29147
|
-
return /* @__PURE__ */
|
|
29147
|
+
return /* @__PURE__ */ jsx59(
|
|
29148
29148
|
DropdownButton,
|
|
29149
29149
|
{
|
|
29150
29150
|
label: triggerLabel,
|
|
@@ -29154,7 +29154,7 @@ var Dropdown2 = forwardRef26(function Dropdown3({
|
|
|
29154
29154
|
);
|
|
29155
29155
|
}
|
|
29156
29156
|
};
|
|
29157
|
-
return /* @__PURE__ */
|
|
29157
|
+
return /* @__PURE__ */ jsx59(CollectionProvider, { collectionHook, children: /* @__PURE__ */ jsxs17(
|
|
29158
29158
|
DropdownBase,
|
|
29159
29159
|
{
|
|
29160
29160
|
...props,
|
|
@@ -29166,7 +29166,7 @@ var Dropdown2 = forwardRef26(function Dropdown3({
|
|
|
29166
29166
|
width,
|
|
29167
29167
|
children: [
|
|
29168
29168
|
getTriggerComponent(),
|
|
29169
|
-
/* @__PURE__ */
|
|
29169
|
+
/* @__PURE__ */ jsx59(
|
|
29170
29170
|
List,
|
|
29171
29171
|
{
|
|
29172
29172
|
ListItem: ListItem4,
|
|
@@ -29509,15 +29509,15 @@ var useCombobox = ({
|
|
|
29509
29509
|
|
|
29510
29510
|
// ../vuu-ui-controls/src/list/ChevronIcon.tsx
|
|
29511
29511
|
var import_classnames26 = __toESM(require_classnames());
|
|
29512
|
-
import { jsx as
|
|
29512
|
+
import { jsx as jsx60 } from "react/jsx-runtime";
|
|
29513
29513
|
var classBase16 = "vuuChevronIcon";
|
|
29514
29514
|
var ChevronIcon = (props) => {
|
|
29515
29515
|
const { direction, ...htmlAttributes } = props;
|
|
29516
|
-
return /* @__PURE__ */
|
|
29516
|
+
return /* @__PURE__ */ jsx60("span", { ...htmlAttributes, className: (0, import_classnames26.default)(classBase16, direction) });
|
|
29517
29517
|
};
|
|
29518
29518
|
|
|
29519
29519
|
// ../vuu-ui-controls/src/combo-box/ComboBox.tsx
|
|
29520
|
-
import { jsx as
|
|
29520
|
+
import { jsx as jsx61, jsxs as jsxs18 } from "react/jsx-runtime";
|
|
29521
29521
|
var ComboBox = forwardRef27(function Combobox({
|
|
29522
29522
|
InputProps: InputProps4,
|
|
29523
29523
|
ListProps: ListProps5,
|
|
@@ -29614,14 +29614,14 @@ var ComboBox = forwardRef27(function Combobox({
|
|
|
29614
29614
|
onOpenChange(true);
|
|
29615
29615
|
}
|
|
29616
29616
|
}, [isOpen, onOpenChange]);
|
|
29617
|
-
const endAdornment = endAdornmentProp === null ? null : /* @__PURE__ */
|
|
29617
|
+
const endAdornment = endAdornmentProp === null ? null : /* @__PURE__ */ jsx61(
|
|
29618
29618
|
ChevronIcon,
|
|
29619
29619
|
{
|
|
29620
29620
|
direction: isOpen ? "up" : "down",
|
|
29621
29621
|
onClick: handleDropdownIconClick
|
|
29622
29622
|
}
|
|
29623
29623
|
);
|
|
29624
|
-
return /* @__PURE__ */
|
|
29624
|
+
return /* @__PURE__ */ jsx61(CollectionProvider, { collectionHook, children: /* @__PURE__ */ jsxs18(
|
|
29625
29625
|
DropdownBase,
|
|
29626
29626
|
{
|
|
29627
29627
|
...props,
|
|
@@ -29633,7 +29633,7 @@ var ComboBox = forwardRef27(function Combobox({
|
|
|
29633
29633
|
ref: forwardedRef,
|
|
29634
29634
|
width,
|
|
29635
29635
|
children: [
|
|
29636
|
-
/* @__PURE__ */
|
|
29636
|
+
/* @__PURE__ */ jsx61(
|
|
29637
29637
|
Input,
|
|
29638
29638
|
{
|
|
29639
29639
|
...inputProps,
|
|
@@ -29642,7 +29642,7 @@ var ComboBox = forwardRef27(function Combobox({
|
|
|
29642
29642
|
endAdornment
|
|
29643
29643
|
}
|
|
29644
29644
|
),
|
|
29645
|
-
/* @__PURE__ */
|
|
29645
|
+
/* @__PURE__ */ jsx61(
|
|
29646
29646
|
List,
|
|
29647
29647
|
{
|
|
29648
29648
|
...ListProps5,
|
|
@@ -29668,7 +29668,7 @@ var ComboBox = forwardRef27(function Combobox({
|
|
|
29668
29668
|
// ../vuu-ui-controls/src/cycle-state-button/CycleStateButton.tsx
|
|
29669
29669
|
var import_classnames27 = __toESM(require_classnames());
|
|
29670
29670
|
import { forwardRef as forwardRef28, useCallback as useCallback54 } from "react";
|
|
29671
|
-
import { jsx as
|
|
29671
|
+
import { jsx as jsx62 } from "react/jsx-runtime";
|
|
29672
29672
|
var classBase17 = "vuuCycleStateButton";
|
|
29673
29673
|
var getNextValue = (value, valueList) => {
|
|
29674
29674
|
const index = valueList.indexOf(value.toUpperCase());
|
|
@@ -29696,7 +29696,7 @@ var CycleStateButton = forwardRef28(function CycleStateButton2({
|
|
|
29696
29696
|
},
|
|
29697
29697
|
[onCommit, value, values]
|
|
29698
29698
|
);
|
|
29699
|
-
return /* @__PURE__ */
|
|
29699
|
+
return /* @__PURE__ */ jsx62(
|
|
29700
29700
|
Button,
|
|
29701
29701
|
{
|
|
29702
29702
|
...buttonProps,
|
|
@@ -29858,7 +29858,7 @@ import {
|
|
|
29858
29858
|
forwardRef as forwardRef29,
|
|
29859
29859
|
useRef as useRef49
|
|
29860
29860
|
} from "react";
|
|
29861
|
-
import { jsx as
|
|
29861
|
+
import { jsx as jsx63 } from "react/jsx-runtime";
|
|
29862
29862
|
var classBase18 = "vuuEditableLabel";
|
|
29863
29863
|
var EditableLabel = forwardRef29(function EditableLabel2({
|
|
29864
29864
|
className: classNameProp,
|
|
@@ -29945,7 +29945,7 @@ var EditableLabel = forwardRef29(function EditableLabel2({
|
|
|
29945
29945
|
const className = (0, import_classnames28.default)(classBase18, classNameProp, {
|
|
29946
29946
|
[`${classBase18}-editing`]: editing
|
|
29947
29947
|
});
|
|
29948
|
-
return /* @__PURE__ */
|
|
29948
|
+
return /* @__PURE__ */ jsx63(
|
|
29949
29949
|
"div",
|
|
29950
29950
|
{
|
|
29951
29951
|
...restProps,
|
|
@@ -29953,7 +29953,7 @@ var EditableLabel = forwardRef29(function EditableLabel2({
|
|
|
29953
29953
|
onDoubleClick: handleDoubleClick,
|
|
29954
29954
|
"data-text": value,
|
|
29955
29955
|
ref: forwardedRef,
|
|
29956
|
-
children: editing ? /* @__PURE__ */
|
|
29956
|
+
children: editing ? /* @__PURE__ */ jsx63(
|
|
29957
29957
|
Input,
|
|
29958
29958
|
{
|
|
29959
29959
|
inputProps: { className: `${classBase18}-input`, spellCheck: false },
|
|
@@ -29966,7 +29966,7 @@ var EditableLabel = forwardRef29(function EditableLabel2({
|
|
|
29966
29966
|
textAlign: "left",
|
|
29967
29967
|
variant: "secondary"
|
|
29968
29968
|
}
|
|
29969
|
-
) : /* @__PURE__ */
|
|
29969
|
+
) : /* @__PURE__ */ jsx63("span", { className: `${classBase18}-label`, children: value })
|
|
29970
29970
|
}
|
|
29971
29971
|
);
|
|
29972
29972
|
});
|
|
@@ -29974,7 +29974,7 @@ var EditableLabel = forwardRef29(function EditableLabel2({
|
|
|
29974
29974
|
// ../vuu-ui-controls/src/expando-input/ExpandoInput.tsx
|
|
29975
29975
|
var import_classnames29 = __toESM(require_classnames());
|
|
29976
29976
|
import { forwardRef as forwardRef30 } from "react";
|
|
29977
|
-
import { jsx as
|
|
29977
|
+
import { jsx as jsx64 } from "react/jsx-runtime";
|
|
29978
29978
|
var classBase19 = "vuuExpandoInput";
|
|
29979
29979
|
var noop2 = () => void 0;
|
|
29980
29980
|
var ExpandoInput = forwardRef30(function ExpandoInput2({
|
|
@@ -29985,14 +29985,14 @@ var ExpandoInput = forwardRef30(function ExpandoInput2({
|
|
|
29985
29985
|
onCommit = noop2,
|
|
29986
29986
|
...props
|
|
29987
29987
|
}, forwardedRef) {
|
|
29988
|
-
return /* @__PURE__ */
|
|
29988
|
+
return /* @__PURE__ */ jsx64(
|
|
29989
29989
|
"div",
|
|
29990
29990
|
{
|
|
29991
29991
|
className: (0, import_classnames29.default)(classBase19, classNameProp, {
|
|
29992
29992
|
[`${classBase19}-error`]: errorMessage
|
|
29993
29993
|
}),
|
|
29994
29994
|
"data-text": value,
|
|
29995
|
-
children: /* @__PURE__ */
|
|
29995
|
+
children: /* @__PURE__ */ jsx64(
|
|
29996
29996
|
VuuInput,
|
|
29997
29997
|
{
|
|
29998
29998
|
...props,
|
|
@@ -30011,10 +30011,10 @@ var ExpandoInput = forwardRef30(function ExpandoInput2({
|
|
|
30011
30011
|
});
|
|
30012
30012
|
|
|
30013
30013
|
// ../vuu-ui-controls/src/inputs/Checkbox.tsx
|
|
30014
|
-
import { jsx as
|
|
30014
|
+
import { jsx as jsx65, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
30015
30015
|
|
|
30016
30016
|
// ../vuu-ui-controls/src/inputs/RadioButton.tsx
|
|
30017
|
-
import { jsx as
|
|
30017
|
+
import { jsx as jsx66, jsxs as jsxs20 } from "react/jsx-runtime";
|
|
30018
30018
|
|
|
30019
30019
|
// ../vuu-table/src/header-cell/GroupHeaderCellNext.tsx
|
|
30020
30020
|
var import_classnames32 = __toESM(require_classnames());
|
|
@@ -30022,7 +30022,7 @@ import { useCallback as useCallback60, useRef as useRef52, useState as useState3
|
|
|
30022
30022
|
|
|
30023
30023
|
// ../vuu-table/src/column-resizing/ColumnResizer.tsx
|
|
30024
30024
|
import { useCallback as useCallback57, useRef as useRef50 } from "react";
|
|
30025
|
-
import { jsx as
|
|
30025
|
+
import { jsx as jsx67 } from "react/jsx-runtime";
|
|
30026
30026
|
var NOOP = () => void 0;
|
|
30027
30027
|
var baseClass = "vuuColumnResizerNext";
|
|
30028
30028
|
var ColumnResizer = ({
|
|
@@ -30071,7 +30071,7 @@ var ColumnResizer = ({
|
|
|
30071
30071
|
},
|
|
30072
30072
|
[onDragStart, onMouseMove, onMouseUp]
|
|
30073
30073
|
);
|
|
30074
|
-
return /* @__PURE__ */
|
|
30074
|
+
return /* @__PURE__ */ jsx67("div", { className: baseClass, onMouseDown: handleMouseDown });
|
|
30075
30075
|
};
|
|
30076
30076
|
|
|
30077
30077
|
// ../vuu-table/src/column-resizing/useTableColumnResize.tsx
|
|
@@ -30150,7 +30150,7 @@ var useCell = (column, classBase50, isHeader3) => (
|
|
|
30150
30150
|
// ../vuu-table/src/column-header-pill/ColumnHeaderPill.tsx
|
|
30151
30151
|
var import_classnames31 = __toESM(require_classnames());
|
|
30152
30152
|
import { useCallback as useCallback59 } from "react";
|
|
30153
|
-
import { jsx as
|
|
30153
|
+
import { jsx as jsx68, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
30154
30154
|
var classBase20 = "vuuColumnHeaderPill";
|
|
30155
30155
|
var ColumnHeaderPill = ({
|
|
30156
30156
|
children,
|
|
@@ -30175,7 +30175,7 @@ var ColumnHeaderPill = ({
|
|
|
30175
30175
|
);
|
|
30176
30176
|
return /* @__PURE__ */ jsxs21("div", { ...htmlAttributes, className: (0, import_classnames31.default)(classBase20, className), children: [
|
|
30177
30177
|
children,
|
|
30178
|
-
removable ? /* @__PURE__ */
|
|
30178
|
+
removable ? /* @__PURE__ */ jsx68(
|
|
30179
30179
|
"span",
|
|
30180
30180
|
{
|
|
30181
30181
|
className: `${classBase20}-removeButton`,
|
|
@@ -30188,7 +30188,7 @@ var ColumnHeaderPill = ({
|
|
|
30188
30188
|
};
|
|
30189
30189
|
|
|
30190
30190
|
// ../vuu-table/src/column-header-pill/GroupColumnPill.tsx
|
|
30191
|
-
import { jsx as
|
|
30191
|
+
import { jsx as jsx69, jsxs as jsxs22 } from "react/jsx-runtime";
|
|
30192
30192
|
var GroupColumnPill = ({
|
|
30193
30193
|
column,
|
|
30194
30194
|
...columnHeaderProps
|
|
@@ -30196,27 +30196,27 @@ var GroupColumnPill = ({
|
|
|
30196
30196
|
const { name: name3, sorted } = column;
|
|
30197
30197
|
const icon = typeof sorted === "number" ? sorted < 0 ? "arrow-down" : "arrow-up" : sorted === "A" ? "arrow-up" : sorted === "D" ? "arrow-down" : void 0;
|
|
30198
30198
|
return /* @__PURE__ */ jsxs22(ColumnHeaderPill, { ...columnHeaderProps, column, children: [
|
|
30199
|
-
/* @__PURE__ */
|
|
30200
|
-
icon !== void 0 ? /* @__PURE__ */
|
|
30201
|
-
typeof sorted === "number" ? /* @__PURE__ */
|
|
30199
|
+
/* @__PURE__ */ jsx69("span", { className: "vuuGroupColumnPill-label", children: name3 }),
|
|
30200
|
+
icon !== void 0 ? /* @__PURE__ */ jsx69("span", { "data-icon": icon }) : null,
|
|
30201
|
+
typeof sorted === "number" ? /* @__PURE__ */ jsx69("span", { className: "vuuSortPosition", children: Math.abs(sorted) }) : null
|
|
30202
30202
|
] });
|
|
30203
30203
|
};
|
|
30204
30204
|
|
|
30205
30205
|
// ../vuu-table/src/column-header-pill/SortIndicator.tsx
|
|
30206
|
-
import { jsx as
|
|
30206
|
+
import { jsx as jsx70, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
30207
30207
|
var SortIndicator = ({ column }) => {
|
|
30208
30208
|
if (!column.sorted) {
|
|
30209
30209
|
return null;
|
|
30210
30210
|
}
|
|
30211
30211
|
const icon = typeof column.sorted === "number" ? column.sorted < 0 ? "arrow-down" : "arrow-up" : column.sorted === "A" ? "arrow-up" : "arrow-down";
|
|
30212
30212
|
return /* @__PURE__ */ jsxs23(ColumnHeaderPill, { column, children: [
|
|
30213
|
-
/* @__PURE__ */
|
|
30214
|
-
typeof column.sorted === "number" ? /* @__PURE__ */
|
|
30213
|
+
/* @__PURE__ */ jsx70("span", { "data-icon": icon }),
|
|
30214
|
+
typeof column.sorted === "number" ? /* @__PURE__ */ jsx70("span", { className: "vuuSortPosition", children: Math.abs(column.sorted) }) : null
|
|
30215
30215
|
] });
|
|
30216
30216
|
};
|
|
30217
30217
|
|
|
30218
30218
|
// ../vuu-table/src/header-cell/GroupHeaderCellNext.tsx
|
|
30219
|
-
import { jsx as
|
|
30219
|
+
import { jsx as jsx71, jsxs as jsxs24 } from "react/jsx-runtime";
|
|
30220
30220
|
import { createElement as createElement4 } from "react";
|
|
30221
30221
|
var classBase21 = "vuuTableGroupHeaderCell";
|
|
30222
30222
|
var switchIfChanged = (columns, newColumns) => {
|
|
@@ -30278,7 +30278,7 @@ var GroupHeaderCellNext = ({
|
|
|
30278
30278
|
role: "columnheader",
|
|
30279
30279
|
style,
|
|
30280
30280
|
children: [
|
|
30281
|
-
/* @__PURE__ */
|
|
30281
|
+
/* @__PURE__ */ jsx71(
|
|
30282
30282
|
OverflowContainer,
|
|
30283
30283
|
{
|
|
30284
30284
|
allowDragDrop: true,
|
|
@@ -30298,7 +30298,7 @@ var GroupHeaderCellNext = ({
|
|
|
30298
30298
|
})
|
|
30299
30299
|
}
|
|
30300
30300
|
),
|
|
30301
|
-
/* @__PURE__ */
|
|
30301
|
+
/* @__PURE__ */ jsx71(
|
|
30302
30302
|
ColumnHeaderPill,
|
|
30303
30303
|
{
|
|
30304
30304
|
column: groupColumn,
|
|
@@ -30306,7 +30306,7 @@ var GroupHeaderCellNext = ({
|
|
|
30306
30306
|
onRemove: onRemoveColumn
|
|
30307
30307
|
}
|
|
30308
30308
|
),
|
|
30309
|
-
groupColumn.resizeable !== false ? /* @__PURE__ */
|
|
30309
|
+
groupColumn.resizeable !== false ? /* @__PURE__ */ jsx71(ColumnResizer, { ...resizeProps }) : null
|
|
30310
30310
|
]
|
|
30311
30311
|
}
|
|
30312
30312
|
);
|
|
@@ -30322,7 +30322,7 @@ import {
|
|
|
30322
30322
|
useRef as useRef53,
|
|
30323
30323
|
useState as useState35
|
|
30324
30324
|
} from "react";
|
|
30325
|
-
import { jsx as
|
|
30325
|
+
import { jsx as jsx72 } from "react/jsx-runtime";
|
|
30326
30326
|
var getPosition4 = (element) => {
|
|
30327
30327
|
if (element) {
|
|
30328
30328
|
const { bottom, left } = element.getBoundingClientRect();
|
|
@@ -30353,7 +30353,7 @@ var ColumnMenu = ({
|
|
|
30353
30353
|
},
|
|
30354
30354
|
[column, handleMenuClose, showContextMenu2]
|
|
30355
30355
|
);
|
|
30356
|
-
return /* @__PURE__ */
|
|
30356
|
+
return /* @__PURE__ */ jsx72(
|
|
30357
30357
|
"span",
|
|
30358
30358
|
{
|
|
30359
30359
|
...props,
|
|
@@ -30369,7 +30369,7 @@ var ColumnMenu = ({
|
|
|
30369
30369
|
|
|
30370
30370
|
// ../vuu-table/src/header-cell/HeaderCell.tsx
|
|
30371
30371
|
var import_classnames34 = __toESM(require_classnames());
|
|
30372
|
-
import { jsx as
|
|
30372
|
+
import { jsx as jsx73, jsxs as jsxs25 } from "react/jsx-runtime";
|
|
30373
30373
|
var classBase22 = "vuuTableHeaderCell";
|
|
30374
30374
|
var HeaderCell = ({
|
|
30375
30375
|
className: classNameProp,
|
|
@@ -30393,10 +30393,10 @@ var HeaderCell = ({
|
|
|
30393
30393
|
[isResizing, onClick]
|
|
30394
30394
|
);
|
|
30395
30395
|
const { className, style } = useCell(column, classBase22, true);
|
|
30396
|
-
const columnMenu = /* @__PURE__ */
|
|
30397
|
-
const columnLabel = HeaderCellLabelRenderer ? /* @__PURE__ */
|
|
30398
|
-
const columnContent = HeaderCellContentRenderer ? [/* @__PURE__ */
|
|
30399
|
-
const sortIndicator = /* @__PURE__ */
|
|
30396
|
+
const columnMenu = /* @__PURE__ */ jsx73(ColumnMenu, { column });
|
|
30397
|
+
const columnLabel = HeaderCellLabelRenderer ? /* @__PURE__ */ jsx73(HeaderCellLabelRenderer, { className: `${classBase22}-label`, column }) : /* @__PURE__ */ jsx73("div", { className: `${classBase22}-label`, children: (_a4 = column.label) != null ? _a4 : column.name });
|
|
30398
|
+
const columnContent = HeaderCellContentRenderer ? [/* @__PURE__ */ jsx73(HeaderCellContentRenderer, { column }, "content")] : [];
|
|
30399
|
+
const sortIndicator = /* @__PURE__ */ jsx73(SortIndicator, { column });
|
|
30400
30400
|
const headerItems = column.align === "right" ? [sortIndicator, columnLabel].concat(columnContent).concat(columnMenu) : [columnMenu, columnLabel, sortIndicator].concat(columnContent);
|
|
30401
30401
|
return /* @__PURE__ */ jsxs25(
|
|
30402
30402
|
"div",
|
|
@@ -30411,7 +30411,7 @@ var HeaderCell = ({
|
|
|
30411
30411
|
style,
|
|
30412
30412
|
children: [
|
|
30413
30413
|
...headerItems,
|
|
30414
|
-
column.resizeable !== false ? /* @__PURE__ */
|
|
30414
|
+
column.resizeable !== false ? /* @__PURE__ */ jsx73(ColumnResizer, { ...resizeProps }) : null
|
|
30415
30415
|
]
|
|
30416
30416
|
}
|
|
30417
30417
|
);
|
|
@@ -30441,7 +30441,7 @@ import { memo as memo2, useCallback as useCallback65 } from "react";
|
|
|
30441
30441
|
// ../vuu-table/src/table-cell/TableCell.tsx
|
|
30442
30442
|
import { isNumericColumn } from "@vuu-ui/vuu-utils";
|
|
30443
30443
|
import { useCallback as useCallback63 } from "react";
|
|
30444
|
-
import { jsx as
|
|
30444
|
+
import { jsx as jsx74 } from "react/jsx-runtime";
|
|
30445
30445
|
var classBase23 = "vuuTableCell";
|
|
30446
30446
|
var TableCell = ({
|
|
30447
30447
|
column,
|
|
@@ -30475,14 +30475,14 @@ var TableCell = ({
|
|
|
30475
30475
|
},
|
|
30476
30476
|
[column, onClick]
|
|
30477
30477
|
);
|
|
30478
|
-
return /* @__PURE__ */
|
|
30478
|
+
return /* @__PURE__ */ jsx74(
|
|
30479
30479
|
"div",
|
|
30480
30480
|
{
|
|
30481
30481
|
className,
|
|
30482
30482
|
onClick: onClick ? handleClick : void 0,
|
|
30483
30483
|
role: "cell",
|
|
30484
30484
|
style,
|
|
30485
|
-
children: CellRenderer ? /* @__PURE__ */
|
|
30485
|
+
children: CellRenderer ? /* @__PURE__ */ jsx74(
|
|
30486
30486
|
CellRenderer,
|
|
30487
30487
|
{
|
|
30488
30488
|
column,
|
|
@@ -30499,7 +30499,7 @@ var TableCell = ({
|
|
|
30499
30499
|
import { getGroupValueAndOffset, metadataKeys as metadataKeys2 } from "@vuu-ui/vuu-utils";
|
|
30500
30500
|
import { useCallback as useCallback64 } from "react";
|
|
30501
30501
|
var import_classnames35 = __toESM(require_classnames());
|
|
30502
|
-
import { jsx as
|
|
30502
|
+
import { jsx as jsx75, jsxs as jsxs26 } from "react/jsx-runtime";
|
|
30503
30503
|
var { IS_LEAF } = metadataKeys2;
|
|
30504
30504
|
var classBase24 = "vuuTableGroupCell";
|
|
30505
30505
|
var TableGroupCell = ({ column, onClick, row }) => {
|
|
@@ -30513,7 +30513,7 @@ var TableGroupCell = ({ column, onClick, row }) => {
|
|
|
30513
30513
|
[column, onClick]
|
|
30514
30514
|
);
|
|
30515
30515
|
const isLeaf3 = row[IS_LEAF];
|
|
30516
|
-
const spacers = Array(offset).fill(0).map((n, i) => /* @__PURE__ */
|
|
30516
|
+
const spacers = Array(offset).fill(0).map((n, i) => /* @__PURE__ */ jsx75("span", { className: `${classBase24}-spacer` }, i));
|
|
30517
30517
|
return /* @__PURE__ */ jsxs26(
|
|
30518
30518
|
"div",
|
|
30519
30519
|
{
|
|
@@ -30523,15 +30523,15 @@ var TableGroupCell = ({ column, onClick, row }) => {
|
|
|
30523
30523
|
onClick: isLeaf3 ? void 0 : handleClick,
|
|
30524
30524
|
children: [
|
|
30525
30525
|
spacers,
|
|
30526
|
-
isLeaf3 ? null : /* @__PURE__ */
|
|
30527
|
-
/* @__PURE__ */
|
|
30526
|
+
isLeaf3 ? null : /* @__PURE__ */ jsx75("span", { className: `${classBase24}-toggle`, "data-icon": "triangle-right" }),
|
|
30527
|
+
/* @__PURE__ */ jsx75("span", { children: value })
|
|
30528
30528
|
]
|
|
30529
30529
|
}
|
|
30530
30530
|
);
|
|
30531
30531
|
};
|
|
30532
30532
|
|
|
30533
30533
|
// ../vuu-table/src/Row.tsx
|
|
30534
|
-
import { jsx as
|
|
30534
|
+
import { jsx as jsx76 } from "react/jsx-runtime";
|
|
30535
30535
|
import { createElement as createElement5 } from "react";
|
|
30536
30536
|
var { IDX, IS_EXPANDED, SELECTED: SELECTED2 } = metadataKeys3;
|
|
30537
30537
|
var classBase25 = "vuuTableRow";
|
|
@@ -30592,12 +30592,12 @@ var Row2 = memo2(
|
|
|
30592
30592
|
onClick: handleRowClick,
|
|
30593
30593
|
style
|
|
30594
30594
|
},
|
|
30595
|
-
/* @__PURE__ */
|
|
30595
|
+
/* @__PURE__ */ jsx76("span", { className: `${classBase25}-selectionDecorator vuuStickyLeft` }),
|
|
30596
30596
|
columns.filter(isNotHidden).map((column) => {
|
|
30597
30597
|
const isGroup = isGroupColumn(column);
|
|
30598
30598
|
const isJsonCell = isJsonColumn(column);
|
|
30599
30599
|
const Cell = isGroup ? TableGroupCell : TableCell;
|
|
30600
|
-
return /* @__PURE__ */
|
|
30600
|
+
return /* @__PURE__ */ jsx76(
|
|
30601
30601
|
Cell,
|
|
30602
30602
|
{
|
|
30603
30603
|
column,
|
|
@@ -30609,7 +30609,7 @@ var Row2 = memo2(
|
|
|
30609
30609
|
column.key
|
|
30610
30610
|
);
|
|
30611
30611
|
}),
|
|
30612
|
-
/* @__PURE__ */
|
|
30612
|
+
/* @__PURE__ */ jsx76("span", { className: `${classBase25}-selectionDecorator vuuStickyRight` })
|
|
30613
30613
|
);
|
|
30614
30614
|
}
|
|
30615
30615
|
);
|
|
@@ -30665,7 +30665,7 @@ import {
|
|
|
30665
30665
|
isValidNumber as isValidNumber3,
|
|
30666
30666
|
registerComponent as registerComponent4
|
|
30667
30667
|
} from "@vuu-ui/vuu-utils";
|
|
30668
|
-
import { jsx as
|
|
30668
|
+
import { jsx as jsx77, jsxs as jsxs27 } from "react/jsx-runtime";
|
|
30669
30669
|
var classBase26 = "vuuProgressCell";
|
|
30670
30670
|
var ProgressCell = ({ column, columnMap, row }) => {
|
|
30671
30671
|
const { type } = column;
|
|
@@ -30700,8 +30700,8 @@ var ProgressCell = ({ column, columnMap, row }) => {
|
|
|
30700
30700
|
const className = (0, import_classnames37.default)(classBase26, {});
|
|
30701
30701
|
return /* @__PURE__ */ jsxs27("div", { className, tabIndex: -1, children: [
|
|
30702
30702
|
showProgress ? /* @__PURE__ */ jsxs27("span", { className: `${classBase26}-track`, children: [
|
|
30703
|
-
/* @__PURE__ */
|
|
30704
|
-
/* @__PURE__ */
|
|
30703
|
+
/* @__PURE__ */ jsx77("span", { className: `${classBase26}-bg` }),
|
|
30704
|
+
/* @__PURE__ */ jsx77(
|
|
30705
30705
|
"span",
|
|
30706
30706
|
{
|
|
30707
30707
|
className: `${classBase26}-bar`,
|
|
@@ -30709,7 +30709,7 @@ var ProgressCell = ({ column, columnMap, row }) => {
|
|
|
30709
30709
|
}
|
|
30710
30710
|
)
|
|
30711
30711
|
] }) : null,
|
|
30712
|
-
/* @__PURE__ */
|
|
30712
|
+
/* @__PURE__ */ jsx77("span", { className: `${classBase26}-text`, children: `${percentage} %` })
|
|
30713
30713
|
] });
|
|
30714
30714
|
};
|
|
30715
30715
|
registerComponent4("vuu.progress", ProgressCell, "cell-renderer", {
|
|
@@ -30752,7 +30752,7 @@ function useDirection(key, value, column) {
|
|
|
30752
30752
|
}
|
|
30753
30753
|
|
|
30754
30754
|
// ../vuu-table-extras/src/cell-renderers-next/background-cell/BackgroundCell.tsx
|
|
30755
|
-
import { jsx as
|
|
30755
|
+
import { jsx as jsx78, jsxs as jsxs28 } from "react/jsx-runtime";
|
|
30756
30756
|
var CHAR_ARROW_UP = String.fromCharCode(11014);
|
|
30757
30757
|
var CHAR_ARROW_DOWN = String.fromCharCode(11015);
|
|
30758
30758
|
var { KEY } = metadataKeys4;
|
|
@@ -30784,7 +30784,7 @@ var BackgroundCell = ({ column, columnMap, row }) => {
|
|
|
30784
30784
|
[`${classBase27}-arrowBackground`]: flashStyle === FlashStyle.ArrowBackground
|
|
30785
30785
|
});
|
|
30786
30786
|
return /* @__PURE__ */ jsxs28("div", { className, tabIndex: -1, children: [
|
|
30787
|
-
/* @__PURE__ */
|
|
30787
|
+
/* @__PURE__ */ jsx78("div", { className: `${classBase27}-flasher`, children: arrow }),
|
|
30788
30788
|
valueFormatter(row[dataIdx])
|
|
30789
30789
|
] });
|
|
30790
30790
|
};
|
|
@@ -30805,7 +30805,7 @@ import {
|
|
|
30805
30805
|
registerConfigurationEditor
|
|
30806
30806
|
} from "@vuu-ui/vuu-utils";
|
|
30807
30807
|
import { useCallback as useCallback66, useState as useState36 } from "react";
|
|
30808
|
-
import { jsx as
|
|
30808
|
+
import { jsx as jsx79, jsxs as jsxs29 } from "react/jsx-runtime";
|
|
30809
30809
|
var classBase28 = "vuuBackgroundCellConfiguration";
|
|
30810
30810
|
var flashOptions = [
|
|
30811
30811
|
{ label: "Background Only", value: "bg-only" },
|
|
@@ -30837,8 +30837,8 @@ var BackgroundCellConfigurationEditor = ({
|
|
|
30837
30837
|
[column.type, onChangeRendering]
|
|
30838
30838
|
);
|
|
30839
30839
|
return /* @__PURE__ */ jsxs29(FormField, { children: [
|
|
30840
|
-
/* @__PURE__ */
|
|
30841
|
-
/* @__PURE__ */
|
|
30840
|
+
/* @__PURE__ */ jsx79(FormFieldLabel, { children: "Flash Style" }),
|
|
30841
|
+
/* @__PURE__ */ jsx79(
|
|
30842
30842
|
Dropdown2,
|
|
30843
30843
|
{
|
|
30844
30844
|
className: `${classBase28}-flashStyle`,
|
|
@@ -30861,7 +30861,7 @@ import {
|
|
|
30861
30861
|
useCallback as useCallback67
|
|
30862
30862
|
} from "react";
|
|
30863
30863
|
import { getColumnLabel } from "@vuu-ui/vuu-utils";
|
|
30864
|
-
import { jsx as
|
|
30864
|
+
import { jsx as jsx80, jsxs as jsxs30 } from "react/jsx-runtime";
|
|
30865
30865
|
|
|
30866
30866
|
// ../vuu-table-extras/src/column-settings/ColumnSettingsPanel.tsx
|
|
30867
30867
|
import {
|
|
@@ -50786,7 +50786,7 @@ var useColumnExpressionEditor = ({
|
|
|
50786
50786
|
};
|
|
50787
50787
|
|
|
50788
50788
|
// ../vuu-table-extras/src/column-expression-input/ColumnExpressionInput.tsx
|
|
50789
|
-
import { jsx as
|
|
50789
|
+
import { jsx as jsx81 } from "react/jsx-runtime";
|
|
50790
50790
|
var classBase29 = "vuuColumnExpressionInput";
|
|
50791
50791
|
var ColumnExpressionInput = memo3(
|
|
50792
50792
|
({
|
|
@@ -50801,7 +50801,7 @@ var ColumnExpressionInput = memo3(
|
|
|
50801
50801
|
source,
|
|
50802
50802
|
suggestionProvider
|
|
50803
50803
|
});
|
|
50804
|
-
return /* @__PURE__ */
|
|
50804
|
+
return /* @__PURE__ */ jsx81("div", { className: `${classBase29}`, onBlur, ref: editorRef });
|
|
50805
50805
|
},
|
|
50806
50806
|
(prevProps, newProps) => {
|
|
50807
50807
|
return prevProps.source === newProps.source;
|
|
@@ -51173,7 +51173,7 @@ import {
|
|
|
51173
51173
|
import { useCallback as useCallback71, useRef as useRef58, useState as useState37 } from "react";
|
|
51174
51174
|
|
|
51175
51175
|
// ../vuu-table-extras/src/column-expression-panel/ColumnExpressionPanel.tsx
|
|
51176
|
-
import { jsx as
|
|
51176
|
+
import { jsx as jsx82, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
51177
51177
|
|
|
51178
51178
|
// ../vuu-table-extras/src/column-formatting-settings/ColumnFormattingPanel.tsx
|
|
51179
51179
|
import {
|
|
@@ -51191,10 +51191,10 @@ import {
|
|
|
51191
51191
|
useCallback as useCallback73,
|
|
51192
51192
|
useState as useState38
|
|
51193
51193
|
} from "react";
|
|
51194
|
-
import { jsx as
|
|
51194
|
+
import { jsx as jsx83, jsxs as jsxs32 } from "react/jsx-runtime";
|
|
51195
51195
|
|
|
51196
51196
|
// ../vuu-table-extras/src/column-formatting-settings/ColumnFormattingPanel.tsx
|
|
51197
|
-
import { jsx as
|
|
51197
|
+
import { jsx as jsx84, jsxs as jsxs33 } from "react/jsx-runtime";
|
|
51198
51198
|
|
|
51199
51199
|
// ../vuu-table-extras/src/column-settings/ColumnNameLabel.tsx
|
|
51200
51200
|
var import_classnames41 = __toESM(require_classnames(), 1);
|
|
@@ -51202,7 +51202,7 @@ import {
|
|
|
51202
51202
|
getCalculatedColumnDetails as getCalculatedColumnDetails2,
|
|
51203
51203
|
isCalculatedColumn
|
|
51204
51204
|
} from "@vuu-ui/vuu-utils";
|
|
51205
|
-
import { jsx as
|
|
51205
|
+
import { jsx as jsx85, jsxs as jsxs34 } from "react/jsx-runtime";
|
|
51206
51206
|
|
|
51207
51207
|
// ../vuu-table-extras/src/column-settings/useColumnSettings.ts
|
|
51208
51208
|
import {
|
|
@@ -51246,12 +51246,12 @@ var stringCellRenderers = [
|
|
|
51246
51246
|
];
|
|
51247
51247
|
|
|
51248
51248
|
// ../vuu-table-extras/src/column-settings/ColumnSettingsPanel.tsx
|
|
51249
|
-
import { jsx as
|
|
51249
|
+
import { jsx as jsx86, jsxs as jsxs35 } from "react/jsx-runtime";
|
|
51250
51250
|
|
|
51251
51251
|
// ../vuu-table-extras/src/datasource-stats/DatasourceStats.tsx
|
|
51252
51252
|
var import_classnames43 = __toESM(require_classnames(), 1);
|
|
51253
51253
|
import { useEffect as useEffect17, useState as useState40 } from "react";
|
|
51254
|
-
import { jsx as
|
|
51254
|
+
import { jsx as jsx87, jsxs as jsxs36 } from "react/jsx-runtime";
|
|
51255
51255
|
var numberFormatter = new Intl.NumberFormat();
|
|
51256
51256
|
|
|
51257
51257
|
// ../vuu-table-extras/src/table-settings/useTableSettings.ts
|
|
@@ -51268,7 +51268,7 @@ import {
|
|
|
51268
51268
|
} from "react";
|
|
51269
51269
|
|
|
51270
51270
|
// ../vuu-table-extras/src/table-settings/TableSettingsPanel.tsx
|
|
51271
|
-
import { jsx as
|
|
51271
|
+
import { jsx as jsx88, jsxs as jsxs37 } from "react/jsx-runtime";
|
|
51272
51272
|
|
|
51273
51273
|
// ../vuu-table-extras/src/useTableAndColumnSettings.ts
|
|
51274
51274
|
import { getCalculatedColumnType as getCalculatedColumnType2 } from "@vuu-ui/vuu-utils";
|
|
@@ -53725,7 +53725,7 @@ var useTableHeader = ({
|
|
|
53725
53725
|
};
|
|
53726
53726
|
|
|
53727
53727
|
// ../vuu-table/src/table-header/TableHeader.tsx
|
|
53728
|
-
import { jsx as
|
|
53728
|
+
import { jsx as jsx89, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
53729
53729
|
var TableHeader = ({
|
|
53730
53730
|
classBase: classBase50 = "vuuTable",
|
|
53731
53731
|
columns,
|
|
@@ -53751,10 +53751,10 @@ var TableHeader = ({
|
|
|
53751
53751
|
tableConfig
|
|
53752
53752
|
});
|
|
53753
53753
|
return /* @__PURE__ */ jsxs38("div", { className: `${classBase50}-col-headings`, ref: containerRef, children: [
|
|
53754
|
-
headings.map((colHeaders, i) => /* @__PURE__ */
|
|
53754
|
+
headings.map((colHeaders, i) => /* @__PURE__ */ jsx89("div", { className: "vuuTable-heading", children: colHeaders.map(({ label, width }, j) => /* @__PURE__ */ jsx89("div", { className: "vuuTable-headingCell", style: { width }, children: label }, j)) }, i)),
|
|
53755
53755
|
/* @__PURE__ */ jsxs38("div", { className: `${classBase50}-col-headers`, role: "row", children: [
|
|
53756
53756
|
columns.filter(isNotHidden2).map(
|
|
53757
|
-
(col, i) => isGroupColumn4(col) ? /* @__PURE__ */
|
|
53757
|
+
(col, i) => isGroupColumn4(col) ? /* @__PURE__ */ jsx89(
|
|
53758
53758
|
GroupHeaderCellNext,
|
|
53759
53759
|
{
|
|
53760
53760
|
column: col,
|
|
@@ -53764,7 +53764,7 @@ var TableHeader = ({
|
|
|
53764
53764
|
onResize: onResizeColumn
|
|
53765
53765
|
},
|
|
53766
53766
|
col.name
|
|
53767
|
-
) : /* @__PURE__ */
|
|
53767
|
+
) : /* @__PURE__ */ jsx89(
|
|
53768
53768
|
HeaderCell,
|
|
53769
53769
|
{
|
|
53770
53770
|
className: (0, import_classnames44.default)({
|
|
@@ -53786,7 +53786,7 @@ var TableHeader = ({
|
|
|
53786
53786
|
};
|
|
53787
53787
|
|
|
53788
53788
|
// ../vuu-table/src/Table.tsx
|
|
53789
|
-
import { jsx as
|
|
53789
|
+
import { jsx as jsx90, jsxs as jsxs39 } from "react/jsx-runtime";
|
|
53790
53790
|
var classBase30 = "vuuTable";
|
|
53791
53791
|
var { IDX: IDX3, RENDER_IDX } = metadataKeys9;
|
|
53792
53792
|
var TableCore = ({
|
|
@@ -53889,16 +53889,16 @@ var TableCore = ({
|
|
|
53889
53889
|
menuActionHandler: handleContextMenuAction,
|
|
53890
53890
|
menuBuilder,
|
|
53891
53891
|
children: [
|
|
53892
|
-
/* @__PURE__ */
|
|
53892
|
+
/* @__PURE__ */ jsx90(
|
|
53893
53893
|
"div",
|
|
53894
53894
|
{
|
|
53895
53895
|
className: `${classBase30}-scrollbarContainer`,
|
|
53896
53896
|
ref: scrollProps.scrollbarContainerRef,
|
|
53897
53897
|
style: cssVariables,
|
|
53898
|
-
children: /* @__PURE__ */
|
|
53898
|
+
children: /* @__PURE__ */ jsx90("div", { className: `${classBase30}-scrollbarContent` })
|
|
53899
53899
|
}
|
|
53900
53900
|
),
|
|
53901
|
-
/* @__PURE__ */
|
|
53901
|
+
/* @__PURE__ */ jsx90(
|
|
53902
53902
|
"div",
|
|
53903
53903
|
{
|
|
53904
53904
|
className,
|
|
@@ -53911,7 +53911,7 @@ var TableCore = ({
|
|
|
53911
53911
|
className: `${classBase30}-table`,
|
|
53912
53912
|
tabIndex: disableFocus ? void 0 : -1,
|
|
53913
53913
|
children: [
|
|
53914
|
-
showColumnHeaders ? /* @__PURE__ */
|
|
53914
|
+
showColumnHeaders ? /* @__PURE__ */ jsx90(
|
|
53915
53915
|
TableHeader,
|
|
53916
53916
|
{
|
|
53917
53917
|
columns,
|
|
@@ -53925,7 +53925,7 @@ var TableCore = ({
|
|
|
53925
53925
|
tableId: id
|
|
53926
53926
|
}
|
|
53927
53927
|
) : null,
|
|
53928
|
-
/* @__PURE__ */
|
|
53928
|
+
/* @__PURE__ */ jsx90("div", { className: `${classBase30}-body`, children: data.map((data2) => /* @__PURE__ */ jsx90(
|
|
53929
53929
|
Row3,
|
|
53930
53930
|
{
|
|
53931
53931
|
columnMap,
|
|
@@ -53980,7 +53980,7 @@ var Table = forwardRef31(function TableNext({
|
|
|
53980
53980
|
}, forwardedRef) {
|
|
53981
53981
|
const containerRef = useRef70(null);
|
|
53982
53982
|
const [size, setSize] = useState45();
|
|
53983
|
-
return /* @__PURE__ */
|
|
53983
|
+
return /* @__PURE__ */ jsx90(
|
|
53984
53984
|
MeasuredContainer,
|
|
53985
53985
|
{
|
|
53986
53986
|
...htmlAttributes,
|
|
@@ -53988,7 +53988,7 @@ var Table = forwardRef31(function TableNext({
|
|
|
53988
53988
|
id,
|
|
53989
53989
|
onResize: setSize,
|
|
53990
53990
|
ref: useForkRef(containerRef, forwardedRef),
|
|
53991
|
-
children: size ? /* @__PURE__ */
|
|
53991
|
+
children: size ? /* @__PURE__ */ jsx90(
|
|
53992
53992
|
TableCore,
|
|
53993
53993
|
{
|
|
53994
53994
|
Row: Row3,
|
|
@@ -54030,7 +54030,7 @@ var dataAndColumnUnchanged = (p, p1) => p.column === p1.column && p.row[p.column
|
|
|
54030
54030
|
|
|
54031
54031
|
// ../vuu-table/src/cell-renderers/checkbox-cell/CheckboxCell.tsx
|
|
54032
54032
|
import { dispatchCustomEvent as dispatchCustomEvent4, registerComponent as registerComponent6 } from "@vuu-ui/vuu-utils";
|
|
54033
|
-
import { jsx as
|
|
54033
|
+
import { jsx as jsx91 } from "react/jsx-runtime";
|
|
54034
54034
|
var CheckboxCell = memo4(
|
|
54035
54035
|
({ column, columnMap, onCommit = WarnCommit, row }) => {
|
|
54036
54036
|
const dataIdx = columnMap[column.name];
|
|
@@ -54045,7 +54045,7 @@ var CheckboxCell = memo4(
|
|
|
54045
54045
|
},
|
|
54046
54046
|
[onCommit]
|
|
54047
54047
|
);
|
|
54048
|
-
return !!column.editable ? /* @__PURE__ */
|
|
54048
|
+
return !!column.editable ? /* @__PURE__ */ jsx91(Checkbox, { checked: isChecked, onClick: handleCommit(!isChecked) }) : /* @__PURE__ */ jsx91(CheckboxIcon2, { checked: isChecked, disabled: true });
|
|
54049
54049
|
},
|
|
54050
54050
|
dataAndColumnUnchanged
|
|
54051
54051
|
);
|
|
@@ -54057,7 +54057,7 @@ registerComponent6("checkbox-cell", CheckboxCell, "cell-renderer", {
|
|
|
54057
54057
|
// ../vuu-table/src/cell-renderers/dropdown-cell/DropdownCell.tsx
|
|
54058
54058
|
import { dispatchCustomEvent as dispatchCustomEvent5, registerComponent as registerComponent7 } from "@vuu-ui/vuu-utils";
|
|
54059
54059
|
import { memo as memo5, useCallback as useCallback89, useState as useState46 } from "react";
|
|
54060
|
-
import { jsx as
|
|
54060
|
+
import { jsx as jsx92 } from "react/jsx-runtime";
|
|
54061
54061
|
var classBase31 = "vuuTableDropdownCell";
|
|
54062
54062
|
var openKeys = ["Enter", " "];
|
|
54063
54063
|
var DropdownCell = memo5(
|
|
@@ -54083,7 +54083,7 @@ var DropdownCell = memo5(
|
|
|
54083
54083
|
},
|
|
54084
54084
|
[onCommit]
|
|
54085
54085
|
);
|
|
54086
|
-
return /* @__PURE__ */
|
|
54086
|
+
return /* @__PURE__ */ jsx92(
|
|
54087
54087
|
Dropdown2,
|
|
54088
54088
|
{
|
|
54089
54089
|
className: classBase31,
|
|
@@ -54102,7 +54102,7 @@ registerComponent7("dropdown-cell", DropdownCell, "cell-renderer", {});
|
|
|
54102
54102
|
// ../vuu-table/src/cell-renderers/input-cell/InputCell.tsx
|
|
54103
54103
|
import { registerComponent as registerComponent8 } from "@vuu-ui/vuu-utils";
|
|
54104
54104
|
var import_classnames46 = __toESM(require_classnames());
|
|
54105
|
-
import { jsx as
|
|
54105
|
+
import { jsx as jsx93 } from "react/jsx-runtime";
|
|
54106
54106
|
var classBase32 = "vuuTableInputCell";
|
|
54107
54107
|
var WarnCommit2 = () => {
|
|
54108
54108
|
console.warn(
|
|
@@ -54127,9 +54127,9 @@ var InputCell = ({
|
|
|
54127
54127
|
onCommit,
|
|
54128
54128
|
clientSideEditValidationCheck
|
|
54129
54129
|
});
|
|
54130
|
-
const endAdornment = warningMessage && align === "left" ? /* @__PURE__ */
|
|
54131
|
-
const startAdornment = warningMessage && align === "right" ? /* @__PURE__ */
|
|
54132
|
-
return /* @__PURE__ */
|
|
54130
|
+
const endAdornment = warningMessage && align === "left" ? /* @__PURE__ */ jsx93("span", { className: `${classBase32}-icon`, "data-icon": "error" }) : void 0;
|
|
54131
|
+
const startAdornment = warningMessage && align === "right" ? /* @__PURE__ */ jsx93("span", { className: `${classBase32}-icon`, "data-icon": "error" }) : void 0;
|
|
54132
|
+
return /* @__PURE__ */ jsx93(
|
|
54133
54133
|
Input,
|
|
54134
54134
|
{
|
|
54135
54135
|
...editProps,
|
|
@@ -54146,7 +54146,7 @@ registerComponent8("input-cell", InputCell, "cell-renderer", {});
|
|
|
54146
54146
|
// ../vuu-table/src/cell-renderers/lookup-cell/LookupCell.tsx
|
|
54147
54147
|
import { registerComponent as registerComponent9 } from "@vuu-ui/vuu-utils";
|
|
54148
54148
|
import { memo as memo6 } from "react";
|
|
54149
|
-
import { jsx as
|
|
54149
|
+
import { jsx as jsx94 } from "react/jsx-runtime";
|
|
54150
54150
|
var LookupCell = memo6(
|
|
54151
54151
|
function LookupCell2({
|
|
54152
54152
|
column,
|
|
@@ -54155,7 +54155,7 @@ var LookupCell = memo6(
|
|
|
54155
54155
|
}) {
|
|
54156
54156
|
const dataIdx = columnMap[column.name];
|
|
54157
54157
|
const { initialValue: value } = useLookupValues(column, row[dataIdx]);
|
|
54158
|
-
return /* @__PURE__ */
|
|
54158
|
+
return /* @__PURE__ */ jsx94("span", { children: value == null ? void 0 : value.label });
|
|
54159
54159
|
},
|
|
54160
54160
|
dataAndColumnUnchanged
|
|
54161
54161
|
);
|
|
@@ -54170,7 +54170,7 @@ import {
|
|
|
54170
54170
|
registerComponent as registerComponent10
|
|
54171
54171
|
} from "@vuu-ui/vuu-utils";
|
|
54172
54172
|
import { memo as memo7, useCallback as useCallback90 } from "react";
|
|
54173
|
-
import { jsx as
|
|
54173
|
+
import { jsx as jsx95 } from "react/jsx-runtime";
|
|
54174
54174
|
var classBase33 = "vuuTableToggleCell";
|
|
54175
54175
|
var getValueList = ({ name: name3, type }) => {
|
|
54176
54176
|
if (isTypeDescriptor5(type) && isValueListRenderer(type.renderer)) {
|
|
@@ -54202,7 +54202,7 @@ var ToggleCell = memo7(
|
|
|
54202
54202
|
},
|
|
54203
54203
|
[onCommit]
|
|
54204
54204
|
);
|
|
54205
|
-
return /* @__PURE__ */
|
|
54205
|
+
return /* @__PURE__ */ jsx95(
|
|
54206
54206
|
CycleStateButton,
|
|
54207
54207
|
{
|
|
54208
54208
|
className: (0, import_classnames47.default)(classBase33, `${classBase33}-${column.name}`),
|
|
@@ -54262,7 +54262,7 @@ import { forwardRef as forwardRef32, useMemo as useMemo40 } from "react";
|
|
|
54262
54262
|
|
|
54263
54263
|
// ../vuu-ui-controls/src/instrument-picker/SearchCell.tsx
|
|
54264
54264
|
import { registerComponent as registerComponent11 } from "@vuu-ui/vuu-utils";
|
|
54265
|
-
import { jsx as
|
|
54265
|
+
import { jsx as jsx96, jsxs as jsxs40 } from "react/jsx-runtime";
|
|
54266
54266
|
var classBase34 = "vuuSearchCell";
|
|
54267
54267
|
var SearchCell = ({
|
|
54268
54268
|
column,
|
|
@@ -54272,7 +54272,7 @@ var SearchCell = ({
|
|
|
54272
54272
|
const key = columnMap[column.name];
|
|
54273
54273
|
const value = row[key];
|
|
54274
54274
|
return /* @__PURE__ */ jsxs40("div", { className: classBase34, tabIndex: -1, children: [
|
|
54275
|
-
/* @__PURE__ */
|
|
54275
|
+
/* @__PURE__ */ jsx96("span", { "data-icon": "draggable" }),
|
|
54276
54276
|
value
|
|
54277
54277
|
] });
|
|
54278
54278
|
};
|
|
@@ -54364,7 +54364,7 @@ var useInstrumentPicker = ({
|
|
|
54364
54364
|
};
|
|
54365
54365
|
|
|
54366
54366
|
// ../vuu-ui-controls/src/instrument-picker/InstrumentPicker.tsx
|
|
54367
|
-
import { jsx as
|
|
54367
|
+
import { jsx as jsx97, jsxs as jsxs41 } from "react/jsx-runtime";
|
|
54368
54368
|
var classBase35 = "vuuInstrumentPicker";
|
|
54369
54369
|
var InstrumentPicker = forwardRef32(function InstrumentPicker2({
|
|
54370
54370
|
TableProps: { dataSource, ...TableProps3 },
|
|
@@ -54398,7 +54398,7 @@ var InstrumentPicker = forwardRef32(function InstrumentPicker2({
|
|
|
54398
54398
|
onSelect,
|
|
54399
54399
|
searchColumns
|
|
54400
54400
|
});
|
|
54401
|
-
const endAdornment = useMemo40(() => /* @__PURE__ */
|
|
54401
|
+
const endAdornment = useMemo40(() => /* @__PURE__ */ jsx97("span", { "data-icon": "chevron-down" }), []);
|
|
54402
54402
|
const tableProps = {
|
|
54403
54403
|
...TableProps3,
|
|
54404
54404
|
config: {
|
|
@@ -54419,7 +54419,7 @@ var InstrumentPicker = forwardRef32(function InstrumentPicker2({
|
|
|
54419
54419
|
ref: forwardedRef,
|
|
54420
54420
|
width,
|
|
54421
54421
|
children: [
|
|
54422
|
-
/* @__PURE__ */
|
|
54422
|
+
/* @__PURE__ */ jsx97(
|
|
54423
54423
|
Input,
|
|
54424
54424
|
{
|
|
54425
54425
|
...inputProps,
|
|
@@ -54428,7 +54428,7 @@ var InstrumentPicker = forwardRef32(function InstrumentPicker2({
|
|
|
54428
54428
|
value
|
|
54429
54429
|
}
|
|
54430
54430
|
),
|
|
54431
|
-
/* @__PURE__ */
|
|
54431
|
+
/* @__PURE__ */ jsx97(
|
|
54432
54432
|
Table,
|
|
54433
54433
|
{
|
|
54434
54434
|
rowHeight: 25,
|
|
@@ -54455,7 +54455,7 @@ import { useCallback as useCallback94 } from "react";
|
|
|
54455
54455
|
|
|
54456
54456
|
// ../vuu-ui-controls/src/instrument-search/SearchCell.tsx
|
|
54457
54457
|
import { registerComponent as registerComponent12 } from "@vuu-ui/vuu-utils";
|
|
54458
|
-
import { jsx as
|
|
54458
|
+
import { jsx as jsx98, jsxs as jsxs42 } from "react/jsx-runtime";
|
|
54459
54459
|
var classBase36 = "vuuSearchCell";
|
|
54460
54460
|
var SearchCell2 = ({
|
|
54461
54461
|
column,
|
|
@@ -54465,7 +54465,7 @@ var SearchCell2 = ({
|
|
|
54465
54465
|
const key = columnMap[column.name];
|
|
54466
54466
|
const value = row[key];
|
|
54467
54467
|
return /* @__PURE__ */ jsxs42("div", { className: classBase36, tabIndex: -1, children: [
|
|
54468
|
-
/* @__PURE__ */
|
|
54468
|
+
/* @__PURE__ */ jsx98("span", { "data-icon": "draggable" }),
|
|
54469
54469
|
value
|
|
54470
54470
|
] });
|
|
54471
54471
|
};
|
|
@@ -54538,7 +54538,7 @@ var useInstrumentSearch = ({
|
|
|
54538
54538
|
};
|
|
54539
54539
|
|
|
54540
54540
|
// ../vuu-ui-controls/src/instrument-search/InstrumentSearch.tsx
|
|
54541
|
-
import { jsx as
|
|
54541
|
+
import { jsx as jsx99, jsxs as jsxs43 } from "react/jsx-runtime";
|
|
54542
54542
|
var classBase37 = "vuuInstrumentSearch";
|
|
54543
54543
|
var defaultTableConfig = {
|
|
54544
54544
|
columns: [
|
|
@@ -54556,7 +54556,7 @@ var defaultTableConfig = {
|
|
|
54556
54556
|
],
|
|
54557
54557
|
rowSeparators: true
|
|
54558
54558
|
};
|
|
54559
|
-
var searchIcon = /* @__PURE__ */
|
|
54559
|
+
var searchIcon = /* @__PURE__ */ jsx99("span", { "data-icon": "search" });
|
|
54560
54560
|
var InstrumentSearch = ({
|
|
54561
54561
|
TableProps: TableProps3,
|
|
54562
54562
|
autoFocus = false,
|
|
@@ -54581,7 +54581,7 @@ var InstrumentSearch = ({
|
|
|
54581
54581
|
}, 100);
|
|
54582
54582
|
}, []);
|
|
54583
54583
|
return /* @__PURE__ */ jsxs43("div", { ...htmlAttributes, className: (0, import_classnames48.default)(classBase37, className), children: [
|
|
54584
|
-
/* @__PURE__ */
|
|
54584
|
+
/* @__PURE__ */ jsx99("div", { className: `${classBase37}-inputField`, children: /* @__PURE__ */ jsx99(
|
|
54585
54585
|
Input,
|
|
54586
54586
|
{
|
|
54587
54587
|
inputProps: { onKeyDown },
|
|
@@ -54592,7 +54592,7 @@ var InstrumentSearch = ({
|
|
|
54592
54592
|
onChange
|
|
54593
54593
|
}
|
|
54594
54594
|
) }),
|
|
54595
|
-
dataSource ? /* @__PURE__ */
|
|
54595
|
+
dataSource ? /* @__PURE__ */ jsx99(
|
|
54596
54596
|
Table,
|
|
54597
54597
|
{
|
|
54598
54598
|
disableFocus: true,
|
|
@@ -54623,7 +54623,7 @@ import {
|
|
|
54623
54623
|
numericFormatter
|
|
54624
54624
|
} from "@vuu-ui/vuu-utils";
|
|
54625
54625
|
import { memo as memo8, useMemo as useMemo42, useRef as useRef72 } from "react";
|
|
54626
|
-
import { jsx as
|
|
54626
|
+
import { jsx as jsx100, jsxs as jsxs44 } from "react/jsx-runtime";
|
|
54627
54627
|
var classBase38 = "vuuPriceTicker";
|
|
54628
54628
|
var getValueFormatter2 = (decimals) => numericFormatter({
|
|
54629
54629
|
type: {
|
|
@@ -54650,7 +54650,7 @@ var PriceTicker = memo8(
|
|
|
54650
54650
|
ref.current = [price, direction];
|
|
54651
54651
|
return /* @__PURE__ */ jsxs44("div", { ...htmlAttributes, className: (0, import_classnames49.default)(classBase38, className, direction), children: [
|
|
54652
54652
|
formatNumber(price),
|
|
54653
|
-
showArrow ? /* @__PURE__ */
|
|
54653
|
+
showArrow ? /* @__PURE__ */ jsx100("span", { "data-icon": "price-arrow" }) : null
|
|
54654
54654
|
] });
|
|
54655
54655
|
}
|
|
54656
54656
|
);
|
|
@@ -54658,7 +54658,7 @@ PriceTicker.displayName = "PriceTicker";
|
|
|
54658
54658
|
|
|
54659
54659
|
// ../vuu-ui-controls/src/tabstrip/Tabstrip.tsx
|
|
54660
54660
|
var import_classnames50 = __toESM(require_classnames());
|
|
54661
|
-
import
|
|
54661
|
+
import React22, { useMemo as useMemo44, useRef as useRef76 } from "react";
|
|
54662
54662
|
|
|
54663
54663
|
// ../vuu-ui-controls/src/tabstrip/useTabstrip.ts
|
|
54664
54664
|
import { dispatchMouseEvent as dispatchMouseEvent5 } from "@vuu-ui/vuu-utils";
|
|
@@ -55341,7 +55341,7 @@ var useTabstrip = ({
|
|
|
55341
55341
|
};
|
|
55342
55342
|
|
|
55343
55343
|
// ../vuu-ui-controls/src/tabstrip/Tabstrip.tsx
|
|
55344
|
-
import { Fragment as Fragment7, jsx as
|
|
55344
|
+
import { Fragment as Fragment7, jsx as jsx101, jsxs as jsxs45 } from "react/jsx-runtime";
|
|
55345
55345
|
import { createElement as createElement6 } from "react";
|
|
55346
55346
|
var classBase39 = "vuuTabstrip";
|
|
55347
55347
|
var Tabstrip = ({
|
|
@@ -55406,7 +55406,7 @@ var Tabstrip = ({
|
|
|
55406
55406
|
showMenuButton = showTabMenuButton
|
|
55407
55407
|
} = child.props;
|
|
55408
55408
|
const selected = index === activeTabIndex;
|
|
55409
|
-
return
|
|
55409
|
+
return React22.cloneElement(child, {
|
|
55410
55410
|
...tabProps,
|
|
55411
55411
|
...tabstripHook.navigationProps,
|
|
55412
55412
|
className: (0, import_classnames50.default)(className2, tabClassName),
|
|
@@ -55457,7 +55457,7 @@ var Tabstrip = ({
|
|
|
55457
55457
|
]
|
|
55458
55458
|
);
|
|
55459
55459
|
return /* @__PURE__ */ jsxs45(Fragment7, { children: [
|
|
55460
|
-
/* @__PURE__ */
|
|
55460
|
+
/* @__PURE__ */ jsx101(
|
|
55461
55461
|
OverflowContainer,
|
|
55462
55462
|
{
|
|
55463
55463
|
...htmlAttributes,
|
|
@@ -55487,7 +55487,7 @@ import {
|
|
|
55487
55487
|
// ../vuu-ui-controls/src/tabstrip/TabMenu.tsx
|
|
55488
55488
|
var import_classnames51 = __toESM(require_classnames());
|
|
55489
55489
|
import { useMemo as useMemo45 } from "react";
|
|
55490
|
-
import { jsx as
|
|
55490
|
+
import { jsx as jsx102 } from "react/jsx-runtime";
|
|
55491
55491
|
var classBase40 = "vuuTabMenu";
|
|
55492
55492
|
var TabMenu = ({
|
|
55493
55493
|
allowClose,
|
|
@@ -55519,7 +55519,7 @@ var TabMenu = ({
|
|
|
55519
55519
|
],
|
|
55520
55520
|
[allowClose, allowRename, controlledComponentId, index]
|
|
55521
55521
|
);
|
|
55522
|
-
return /* @__PURE__ */
|
|
55522
|
+
return /* @__PURE__ */ jsx102(
|
|
55523
55523
|
PopupMenu,
|
|
55524
55524
|
{
|
|
55525
55525
|
className: classBase40,
|
|
@@ -55534,7 +55534,7 @@ var TabMenu = ({
|
|
|
55534
55534
|
};
|
|
55535
55535
|
|
|
55536
55536
|
// ../vuu-ui-controls/src/tabstrip/Tab.tsx
|
|
55537
|
-
import { jsx as
|
|
55537
|
+
import { jsx as jsx103, jsxs as jsxs46 } from "react/jsx-runtime";
|
|
55538
55538
|
var classBase41 = "vuuTab";
|
|
55539
55539
|
var noop4 = () => void 0;
|
|
55540
55540
|
var Tab = forwardRef33(function Tab2({
|
|
@@ -55594,7 +55594,7 @@ var Tab = forwardRef33(function Tab2({
|
|
|
55594
55594
|
};
|
|
55595
55595
|
const getLabel2 = () => {
|
|
55596
55596
|
if (editable2) {
|
|
55597
|
-
return /* @__PURE__ */
|
|
55597
|
+
return /* @__PURE__ */ jsx103(
|
|
55598
55598
|
EditableLabel,
|
|
55599
55599
|
{
|
|
55600
55600
|
editing,
|
|
@@ -55640,7 +55640,7 @@ var Tab = forwardRef33(function Tab2({
|
|
|
55640
55640
|
role: "tab",
|
|
55641
55641
|
tabIndex,
|
|
55642
55642
|
children: [
|
|
55643
|
-
/* @__PURE__ */
|
|
55643
|
+
/* @__PURE__ */ jsx103("div", { className: `${classBase41}-main`, children: /* @__PURE__ */ jsx103(
|
|
55644
55644
|
"span",
|
|
55645
55645
|
{
|
|
55646
55646
|
className: `${classBase41}-text`,
|
|
@@ -55648,7 +55648,7 @@ var Tab = forwardRef33(function Tab2({
|
|
|
55648
55648
|
children: children != null ? children : getLabel2()
|
|
55649
55649
|
}
|
|
55650
55650
|
) }),
|
|
55651
|
-
showMenuButton ? /* @__PURE__ */
|
|
55651
|
+
showMenuButton ? /* @__PURE__ */ jsx103(
|
|
55652
55652
|
TabMenu,
|
|
55653
55653
|
{
|
|
55654
55654
|
allowClose: closeable,
|
|
@@ -56530,12 +56530,12 @@ var useTree = ({
|
|
|
56530
56530
|
};
|
|
56531
56531
|
|
|
56532
56532
|
// ../vuu-ui-controls/src/tree/Tree.tsx
|
|
56533
|
-
import { jsx as
|
|
56533
|
+
import { jsx as jsx104, jsxs as jsxs47 } from "react/jsx-runtime";
|
|
56534
56534
|
import { createElement as createElement7 } from "react";
|
|
56535
56535
|
var classBase42 = "vuuTree";
|
|
56536
56536
|
var isExpanded = (node) => node.expanded === true;
|
|
56537
56537
|
var TreeNode2 = ({ children, idx, ...props }) => {
|
|
56538
|
-
return /* @__PURE__ */
|
|
56538
|
+
return /* @__PURE__ */ jsx104("li", { ...props, children });
|
|
56539
56539
|
};
|
|
56540
56540
|
var Tree2 = forwardRef34(function Tree3({
|
|
56541
56541
|
allowDragDrop,
|
|
@@ -56602,8 +56602,8 @@ var Tree2 = forwardRef34(function Tree3({
|
|
|
56602
56602
|
...propsCommonToAllListItems,
|
|
56603
56603
|
...getListItemProps(item, idx, highlightedIdx, selected, focusVisible),
|
|
56604
56604
|
children: [
|
|
56605
|
-
item.icon ? /* @__PURE__ */
|
|
56606
|
-
/* @__PURE__ */
|
|
56605
|
+
item.icon ? /* @__PURE__ */ jsx104("span", { className: `${classBase42}Node-icon`, "data-icon": item.icon }) : null,
|
|
56606
|
+
/* @__PURE__ */ jsx104("span", { children: item.label })
|
|
56607
56607
|
]
|
|
56608
56608
|
}
|
|
56609
56609
|
)
|
|
@@ -56632,19 +56632,19 @@ var Tree2 = forwardRef34(function Tree3({
|
|
|
56632
56632
|
key: `header-${i}`
|
|
56633
56633
|
},
|
|
56634
56634
|
allowGroupSelect ? /* @__PURE__ */ jsxs47("div", { className: `${classBase42}Node-label`, children: [
|
|
56635
|
-
/* @__PURE__ */
|
|
56635
|
+
/* @__PURE__ */ jsx104("span", { className: `${classBase42}Node-toggle` }),
|
|
56636
56636
|
title
|
|
56637
56637
|
] }) : /* @__PURE__ */ jsxs47("div", { className: `${classBase42}Node-label`, children: [
|
|
56638
|
-
child.icon ? /* @__PURE__ */
|
|
56638
|
+
child.icon ? /* @__PURE__ */ jsx104(
|
|
56639
56639
|
"span",
|
|
56640
56640
|
{
|
|
56641
56641
|
className: `${classBase42}Node-icon`,
|
|
56642
56642
|
"data-icon": child.icon
|
|
56643
56643
|
}
|
|
56644
56644
|
) : null,
|
|
56645
|
-
/* @__PURE__ */
|
|
56645
|
+
/* @__PURE__ */ jsx104("span", { children: title })
|
|
56646
56646
|
] }),
|
|
56647
|
-
/* @__PURE__ */
|
|
56647
|
+
/* @__PURE__ */ jsx104("ul", { role: "group", children: isExpanded(child) ? renderSourceContent(child.childNodes, idx) : "" })
|
|
56648
56648
|
)
|
|
56649
56649
|
);
|
|
56650
56650
|
}
|
|
@@ -56661,7 +56661,7 @@ var Tree2 = forwardRef34(function Tree3({
|
|
|
56661
56661
|
return listItems;
|
|
56662
56662
|
}
|
|
56663
56663
|
}
|
|
56664
|
-
return /* @__PURE__ */
|
|
56664
|
+
return /* @__PURE__ */ jsx104(
|
|
56665
56665
|
"ul",
|
|
56666
56666
|
{
|
|
56667
56667
|
...htmlAttributes,
|
|
@@ -56695,7 +56695,7 @@ import {
|
|
|
56695
56695
|
forwardRef as forwardRef35,
|
|
56696
56696
|
useCallback as useCallback107
|
|
56697
56697
|
} from "react";
|
|
56698
|
-
import { Fragment as Fragment8, jsx as
|
|
56698
|
+
import { Fragment as Fragment8, jsx as jsx105, jsxs as jsxs48 } from "react/jsx-runtime";
|
|
56699
56699
|
var classBase43 = "vuuInput";
|
|
56700
56700
|
var constantInputProps = {
|
|
56701
56701
|
autoComplete: "off"
|
|
@@ -56750,7 +56750,7 @@ var VuuInput = forwardRef35(function VuuInput2({
|
|
|
56750
56750
|
},
|
|
56751
56751
|
[commitValue]
|
|
56752
56752
|
);
|
|
56753
|
-
const endAdornment = errorMessage ? /* @__PURE__ */
|
|
56753
|
+
const endAdornment = errorMessage ? /* @__PURE__ */ jsx105(
|
|
56754
56754
|
"span",
|
|
56755
56755
|
{
|
|
56756
56756
|
...anchorProps,
|
|
@@ -56759,7 +56759,7 @@ var VuuInput = forwardRef35(function VuuInput2({
|
|
|
56759
56759
|
}
|
|
56760
56760
|
) : void 0;
|
|
56761
56761
|
return /* @__PURE__ */ jsxs48(Fragment8, { children: [
|
|
56762
|
-
/* @__PURE__ */
|
|
56762
|
+
/* @__PURE__ */ jsx105(
|
|
56763
56763
|
Input,
|
|
56764
56764
|
{
|
|
56765
56765
|
...props,
|
|
@@ -56777,7 +56777,7 @@ var VuuInput = forwardRef35(function VuuInput2({
|
|
|
56777
56777
|
onKeyDown: handleKeyDown
|
|
56778
56778
|
}
|
|
56779
56779
|
),
|
|
56780
|
-
tooltipProps ? /* @__PURE__ */
|
|
56780
|
+
tooltipProps ? /* @__PURE__ */ jsx105(Tooltip, { ...tooltipProps, status: "error" }) : null
|
|
56781
56781
|
] });
|
|
56782
56782
|
});
|
|
56783
56783
|
|
|
@@ -56894,7 +56894,7 @@ var useViewActionDispatcher = (id, root, viewPath, dropTargets) => {
|
|
|
56894
56894
|
|
|
56895
56895
|
// ../vuu-layout/src/layout-view/View.tsx
|
|
56896
56896
|
var import_classnames55 = __toESM(require_classnames());
|
|
56897
|
-
import
|
|
56897
|
+
import React24, {
|
|
56898
56898
|
forwardRef as forwardRef36,
|
|
56899
56899
|
useCallback as useCallback111,
|
|
56900
56900
|
useMemo as useMemo49,
|
|
@@ -57027,9 +57027,9 @@ var useViewResize = ({
|
|
|
57027
57027
|
};
|
|
57028
57028
|
|
|
57029
57029
|
// ../vuu-layout/src/layout-view/ViewContext.ts
|
|
57030
|
-
import
|
|
57030
|
+
import React23, { useContext as useContext11 } from "react";
|
|
57031
57031
|
var NO_CONTEXT = { dispatch: null };
|
|
57032
|
-
var ViewContext =
|
|
57032
|
+
var ViewContext = React23.createContext(NO_CONTEXT);
|
|
57033
57033
|
var useViewDispatch = () => {
|
|
57034
57034
|
var _a4;
|
|
57035
57035
|
const context = useContext11(ViewContext);
|
|
@@ -57038,7 +57038,7 @@ var useViewDispatch = () => {
|
|
|
57038
57038
|
var useViewContext = () => useContext11(ViewContext);
|
|
57039
57039
|
|
|
57040
57040
|
// ../vuu-layout/src/layout-view/View.tsx
|
|
57041
|
-
import { jsx as
|
|
57041
|
+
import { jsx as jsx106, jsxs as jsxs49 } from "react/jsx-runtime";
|
|
57042
57042
|
var classBase44 = "vuuView";
|
|
57043
57043
|
var getProps2 = (state, props) => {
|
|
57044
57044
|
if (state && props) {
|
|
@@ -57100,8 +57100,8 @@ var View = forwardRef36(function View2(props, forwardedRef) {
|
|
|
57100
57100
|
_setComponentProps(props2);
|
|
57101
57101
|
}, []);
|
|
57102
57102
|
const getContent = () => {
|
|
57103
|
-
if (
|
|
57104
|
-
return
|
|
57103
|
+
if (React24.isValidElement(children) && (restoredState || componentProps)) {
|
|
57104
|
+
return React24.cloneElement(
|
|
57105
57105
|
children,
|
|
57106
57106
|
getProps2(restoredState, componentProps)
|
|
57107
57107
|
);
|
|
@@ -57137,7 +57137,7 @@ var View = forwardRef36(function View2(props, forwardedRef) {
|
|
|
57137
57137
|
]
|
|
57138
57138
|
);
|
|
57139
57139
|
const headerProps = typeof header === "object" ? header : {};
|
|
57140
|
-
return /* @__PURE__ */
|
|
57140
|
+
return /* @__PURE__ */ jsx106(
|
|
57141
57141
|
"div",
|
|
57142
57142
|
{
|
|
57143
57143
|
...restProps,
|
|
@@ -57152,7 +57152,7 @@ var View = forwardRef36(function View2(props, forwardedRef) {
|
|
|
57152
57152
|
style,
|
|
57153
57153
|
tabIndex: -1,
|
|
57154
57154
|
children: /* @__PURE__ */ jsxs49(ViewContext.Provider, { value: viewContextValue, children: [
|
|
57155
|
-
header ? /* @__PURE__ */
|
|
57155
|
+
header ? /* @__PURE__ */ jsx106(
|
|
57156
57156
|
Header2,
|
|
57157
57157
|
{
|
|
57158
57158
|
...headerProps,
|
|
@@ -57166,18 +57166,18 @@ var View = forwardRef36(function View2(props, forwardedRef) {
|
|
|
57166
57166
|
title
|
|
57167
57167
|
}
|
|
57168
57168
|
) : null,
|
|
57169
|
-
/* @__PURE__ */
|
|
57169
|
+
/* @__PURE__ */ jsx106("div", { className: `${classBase44}-main`, ref: mainRef, children: getContent() })
|
|
57170
57170
|
] })
|
|
57171
57171
|
}
|
|
57172
57172
|
);
|
|
57173
57173
|
});
|
|
57174
57174
|
View.displayName = "View";
|
|
57175
|
-
var MemoView =
|
|
57175
|
+
var MemoView = React24.memo(View);
|
|
57176
57176
|
MemoView.displayName = "View";
|
|
57177
57177
|
registerComponent("View", MemoView, "view");
|
|
57178
57178
|
|
|
57179
57179
|
// ../vuu-layout/src/layout-header/Header.tsx
|
|
57180
|
-
import { jsx as
|
|
57180
|
+
import { jsx as jsx107 } from "react/jsx-runtime";
|
|
57181
57181
|
var classBase45 = "vuuHeader";
|
|
57182
57182
|
var Header = ({
|
|
57183
57183
|
className: classNameProp,
|
|
@@ -57246,7 +57246,7 @@ var Header = ({
|
|
|
57246
57246
|
}
|
|
57247
57247
|
});
|
|
57248
57248
|
title && toolbarItems.push(
|
|
57249
|
-
/* @__PURE__ */
|
|
57249
|
+
/* @__PURE__ */ jsx107(
|
|
57250
57250
|
EditableLabel,
|
|
57251
57251
|
{
|
|
57252
57252
|
className: `${classBase45}-title`,
|
|
@@ -57264,7 +57264,7 @@ var Header = ({
|
|
|
57264
57264
|
)
|
|
57265
57265
|
);
|
|
57266
57266
|
closeable && actionButtons.push(
|
|
57267
|
-
/* @__PURE__ */
|
|
57267
|
+
/* @__PURE__ */ jsx107(
|
|
57268
57268
|
Button,
|
|
57269
57269
|
{
|
|
57270
57270
|
"data-icon": "close",
|
|
@@ -57276,12 +57276,12 @@ var Header = ({
|
|
|
57276
57276
|
)
|
|
57277
57277
|
);
|
|
57278
57278
|
postTitleContributedItems.length > 0 && toolbarItems.push(
|
|
57279
|
-
/* @__PURE__ */
|
|
57279
|
+
/* @__PURE__ */ jsx107("div", { className: "vuuTooltrayProxy", "data-align": "end", children: postTitleContributedItems }, "contributions")
|
|
57280
57280
|
);
|
|
57281
57281
|
actionButtons.length > 0 && toolbarItems.push(
|
|
57282
|
-
/* @__PURE__ */
|
|
57282
|
+
/* @__PURE__ */ jsx107("div", { className: "vuuTooltrayProxy", "data-align": "end", children: actionButtons }, "actions")
|
|
57283
57283
|
);
|
|
57284
|
-
return /* @__PURE__ */
|
|
57284
|
+
return /* @__PURE__ */ jsx107(
|
|
57285
57285
|
"div",
|
|
57286
57286
|
{
|
|
57287
57287
|
className: (0, import_classnames56.default)("vuuToolbarProxy", className),
|
|
@@ -57329,7 +57329,7 @@ import { useRef as useRef93 } from "react";
|
|
|
57329
57329
|
|
|
57330
57330
|
// ../vuu-filters/src/filter-builder-menu/FilterBuilderMenu.tsx
|
|
57331
57331
|
import { useCallback as useCallback112, useRef as useRef88 } from "react";
|
|
57332
|
-
import { Fragment as Fragment9, jsx as
|
|
57332
|
+
import { Fragment as Fragment9, jsx as jsx108, jsxs as jsxs50 } from "react/jsx-runtime";
|
|
57333
57333
|
|
|
57334
57334
|
// ../vuu-filters/src/filter-clause/ExpandoCombobox.tsx
|
|
57335
57335
|
import { itemToString as defaultToString } from "@vuu-ui/vuu-utils";
|
|
@@ -57341,7 +57341,7 @@ import {
|
|
|
57341
57341
|
useRef as useRef89,
|
|
57342
57342
|
useState as useState54
|
|
57343
57343
|
} from "react";
|
|
57344
|
-
import { jsx as
|
|
57344
|
+
import { jsx as jsx109 } from "react/jsx-runtime";
|
|
57345
57345
|
var classBase46 = "vuuExpandoCombobox";
|
|
57346
57346
|
var NO_INPUT_PROPS = {};
|
|
57347
57347
|
var ExpandoCombobox = forwardRef37(function ExpandoCombobox2({
|
|
@@ -57429,14 +57429,14 @@ var ExpandoCombobox = forwardRef37(function ExpandoCombobox2({
|
|
|
57429
57429
|
const popupProps = {
|
|
57430
57430
|
minWidth: "fit-content"
|
|
57431
57431
|
};
|
|
57432
|
-
return ((_a4 = props.source) == null ? void 0 : _a4.length) === 0 ? null : /* @__PURE__ */
|
|
57432
|
+
return ((_a4 = props.source) == null ? void 0 : _a4.length) === 0 ? null : /* @__PURE__ */ jsx109(
|
|
57433
57433
|
"div",
|
|
57434
57434
|
{
|
|
57435
57435
|
className: (0, import_classnames57.default)(classBase46, classNameProp),
|
|
57436
57436
|
"data-text": text,
|
|
57437
57437
|
ref: forwardedRef,
|
|
57438
57438
|
style,
|
|
57439
|
-
children: /* @__PURE__ */
|
|
57439
|
+
children: /* @__PURE__ */ jsx109(
|
|
57440
57440
|
ComboBox,
|
|
57441
57441
|
{
|
|
57442
57442
|
...props,
|
|
@@ -57466,7 +57466,7 @@ import {
|
|
|
57466
57466
|
useCallback as useCallback114
|
|
57467
57467
|
} from "react";
|
|
57468
57468
|
import { isValidNumber as isValidNumber9 } from "@vuu-ui/vuu-utils";
|
|
57469
|
-
import { jsx as
|
|
57469
|
+
import { jsx as jsx110 } from "react/jsx-runtime";
|
|
57470
57470
|
var NumericInput = forwardRef38(function NumericInput2({
|
|
57471
57471
|
InputProps: InputProps4,
|
|
57472
57472
|
className,
|
|
@@ -57499,7 +57499,7 @@ var NumericInput = forwardRef38(function NumericInput2({
|
|
|
57499
57499
|
},
|
|
57500
57500
|
[onInputComplete]
|
|
57501
57501
|
);
|
|
57502
|
-
return /* @__PURE__ */
|
|
57502
|
+
return /* @__PURE__ */ jsx110(
|
|
57503
57503
|
ExpandoInput,
|
|
57504
57504
|
{
|
|
57505
57505
|
...InputProps4,
|
|
@@ -57523,7 +57523,7 @@ import {
|
|
|
57523
57523
|
useMemo as useMemo51,
|
|
57524
57524
|
useState as useState56
|
|
57525
57525
|
} from "react";
|
|
57526
|
-
import { jsx as
|
|
57526
|
+
import { jsx as jsx111 } from "react/jsx-runtime";
|
|
57527
57527
|
var TextInput = forwardRef39(function TextInput2({
|
|
57528
57528
|
InputProps: InputPropsProp = {},
|
|
57529
57529
|
className,
|
|
@@ -57593,7 +57593,7 @@ var TextInput = forwardRef39(function TextInput2({
|
|
|
57593
57593
|
const getValueInputField = useCallback115(() => {
|
|
57594
57594
|
switch (operator2) {
|
|
57595
57595
|
case "in":
|
|
57596
|
-
return /* @__PURE__ */
|
|
57596
|
+
return /* @__PURE__ */ jsx111(
|
|
57597
57597
|
ExpandoCombobox,
|
|
57598
57598
|
{
|
|
57599
57599
|
InputProps: InputProps4,
|
|
@@ -57608,7 +57608,7 @@ var TextInput = forwardRef39(function TextInput2({
|
|
|
57608
57608
|
}
|
|
57609
57609
|
);
|
|
57610
57610
|
case "starts":
|
|
57611
|
-
return /* @__PURE__ */
|
|
57611
|
+
return /* @__PURE__ */ jsx111(
|
|
57612
57612
|
ExpandoCombobox,
|
|
57613
57613
|
{
|
|
57614
57614
|
InputProps: InputProps4,
|
|
@@ -57627,7 +57627,7 @@ var TextInput = forwardRef39(function TextInput2({
|
|
|
57627
57627
|
}
|
|
57628
57628
|
);
|
|
57629
57629
|
case "ends":
|
|
57630
|
-
return /* @__PURE__ */
|
|
57630
|
+
return /* @__PURE__ */ jsx111(
|
|
57631
57631
|
ExpandoInput,
|
|
57632
57632
|
{
|
|
57633
57633
|
...InputProps4,
|
|
@@ -57638,7 +57638,7 @@ var TextInput = forwardRef39(function TextInput2({
|
|
|
57638
57638
|
}
|
|
57639
57639
|
);
|
|
57640
57640
|
default:
|
|
57641
|
-
return /* @__PURE__ */
|
|
57641
|
+
return /* @__PURE__ */ jsx111(
|
|
57642
57642
|
ExpandoCombobox,
|
|
57643
57643
|
{
|
|
57644
57644
|
InputProps: InputProps4,
|
|
@@ -57684,7 +57684,7 @@ import {
|
|
|
57684
57684
|
} from "react";
|
|
57685
57685
|
|
|
57686
57686
|
// ../vuu-filters/src/filter-clause/FilterClauseEditor.tsx
|
|
57687
|
-
import { jsx as
|
|
57687
|
+
import { jsx as jsx112, jsxs as jsxs51 } from "react/jsx-runtime";
|
|
57688
57688
|
|
|
57689
57689
|
// ../vuu-filters/src/filter-pill/FilterPill.tsx
|
|
57690
57690
|
var import_classnames60 = __toESM(require_classnames(), 1);
|
|
@@ -57694,7 +57694,7 @@ import { useCallback as useCallback118, useRef as useRef91 } from "react";
|
|
|
57694
57694
|
// ../vuu-filters/src/filter-pill-menu/FilterPillMenu.tsx
|
|
57695
57695
|
var import_classnames59 = __toESM(require_classnames(), 1);
|
|
57696
57696
|
import { useMemo as useMemo53 } from "react";
|
|
57697
|
-
import { jsx as
|
|
57697
|
+
import { jsx as jsx113 } from "react/jsx-runtime";
|
|
57698
57698
|
|
|
57699
57699
|
// ../vuu-filters/src/filter-utils.ts
|
|
57700
57700
|
import {
|
|
@@ -57710,7 +57710,7 @@ import {
|
|
|
57710
57710
|
} from "@vuu-ui/vuu-utils";
|
|
57711
57711
|
|
|
57712
57712
|
// ../vuu-filters/src/filter-pill/FilterPill.tsx
|
|
57713
|
-
import { jsx as
|
|
57713
|
+
import { jsx as jsx114, jsxs as jsxs52 } from "react/jsx-runtime";
|
|
57714
57714
|
|
|
57715
57715
|
// ../vuu-filters/src/filter-bar/useFilterBar.ts
|
|
57716
57716
|
import { dispatchMouseEvent as dispatchMouseEvent6, filterAsQuery as filterAsQuery2 } from "@vuu-ui/vuu-utils";
|
|
@@ -57726,7 +57726,7 @@ import {
|
|
|
57726
57726
|
import { useCallback as useCallback119 } from "react";
|
|
57727
57727
|
|
|
57728
57728
|
// ../vuu-filters/src/filter-bar/FilterBar.tsx
|
|
57729
|
-
import { jsx as
|
|
57729
|
+
import { jsx as jsx115, jsxs as jsxs53 } from "react/jsx-runtime";
|
|
57730
57730
|
import { createElement as createElement8 } from "react";
|
|
57731
57731
|
|
|
57732
57732
|
// ../vuu-filters/src/filter-input/useCodeMirrorEditor.ts
|
|
@@ -57835,7 +57835,7 @@ var vuuTheme2 = EditorView.theme(
|
|
|
57835
57835
|
import { useCallback as useCallback121 } from "react";
|
|
57836
57836
|
|
|
57837
57837
|
// ../vuu-filters/src/filter-input/FilterInput.tsx
|
|
57838
|
-
import { jsx as
|
|
57838
|
+
import { jsx as jsx116, jsxs as jsxs54 } from "react/jsx-runtime";
|
|
57839
57839
|
|
|
57840
57840
|
// ../vuu-filters/src/filter-input/useFilterSuggestionProvider.ts
|
|
57841
57841
|
import { useCallback as useCallback122, useRef as useRef95 } from "react";
|
|
@@ -58007,7 +58007,7 @@ _urlKey = new WeakMap();
|
|
|
58007
58007
|
|
|
58008
58008
|
// ../vuu-layout/src/layout-persistence/useLayoutContextMenuItems.tsx
|
|
58009
58009
|
import { useCallback as useCallback123, useMemo as useMemo56 } from "react";
|
|
58010
|
-
import { jsx as
|
|
58010
|
+
import { jsx as jsx117 } from "react/jsx-runtime";
|
|
58011
58011
|
|
|
58012
58012
|
// ../vuu-layout/src/measured-container/MeasuredContainer.tsx
|
|
58013
58013
|
import { forwardRef as forwardRef40 } from "react";
|
|
@@ -58270,7 +58270,7 @@ var useMeasuredContainer = ({
|
|
|
58270
58270
|
|
|
58271
58271
|
// ../vuu-layout/src/measured-container/MeasuredContainer.tsx
|
|
58272
58272
|
var import_classnames63 = __toESM(require_classnames());
|
|
58273
|
-
import { jsx as
|
|
58273
|
+
import { jsx as jsx118 } from "react/jsx-runtime";
|
|
58274
58274
|
var baseClass2 = "vuuMeasuredContainer";
|
|
58275
58275
|
var MeasuredContainer = forwardRef40(function MeasuredContainer2({
|
|
58276
58276
|
children,
|
|
@@ -58301,7 +58301,7 @@ var MeasuredContainer = forwardRef40(function MeasuredContainer2({
|
|
|
58301
58301
|
};
|
|
58302
58302
|
};
|
|
58303
58303
|
const forkedRef = useForkRef(containerRef, forwardedRef);
|
|
58304
|
-
return unmeasured ? /* @__PURE__ */
|
|
58304
|
+
return unmeasured ? /* @__PURE__ */ jsx118(
|
|
58305
58305
|
"div",
|
|
58306
58306
|
{
|
|
58307
58307
|
...htmlAttributes,
|
|
@@ -58309,7 +58309,7 @@ var MeasuredContainer = forwardRef40(function MeasuredContainer2({
|
|
|
58309
58309
|
style: getStyle2(),
|
|
58310
58310
|
ref: containerRef
|
|
58311
58311
|
}
|
|
58312
|
-
) : /* @__PURE__ */
|
|
58312
|
+
) : /* @__PURE__ */ jsx118(
|
|
58313
58313
|
"div",
|
|
58314
58314
|
{
|
|
58315
58315
|
...htmlAttributes,
|
|
@@ -58323,7 +58323,7 @@ var MeasuredContainer = forwardRef40(function MeasuredContainer2({
|
|
|
58323
58323
|
|
|
58324
58324
|
// ../vuu-layout/src/overflow-container/OverflowContainer.tsx
|
|
58325
58325
|
var import_classnames64 = __toESM(require_classnames());
|
|
58326
|
-
import
|
|
58326
|
+
import React25, {
|
|
58327
58327
|
forwardRef as forwardRef41
|
|
58328
58328
|
} from "react";
|
|
58329
58329
|
|
|
@@ -58715,9 +58715,9 @@ var useOverflowContainer = ({
|
|
|
58715
58715
|
};
|
|
58716
58716
|
|
|
58717
58717
|
// ../vuu-layout/src/overflow-container/OverflowContainer.tsx
|
|
58718
|
-
import { jsx as
|
|
58718
|
+
import { jsx as jsx119, jsxs as jsxs55 } from "react/jsx-runtime";
|
|
58719
58719
|
var classBase47 = "vuuOverflowContainer";
|
|
58720
|
-
var WrapContainer =
|
|
58720
|
+
var WrapContainer = React25.memo(
|
|
58721
58721
|
({
|
|
58722
58722
|
PopupMenuProps: PopupMenuProps2,
|
|
58723
58723
|
allowDragDrop,
|
|
@@ -58761,7 +58761,7 @@ var WrapContainer = React24.memo(
|
|
|
58761
58761
|
id: itemId = `${id}-${i}`,
|
|
58762
58762
|
label = `Item ${i + 1}`
|
|
58763
58763
|
} = childEl.props;
|
|
58764
|
-
return /* @__PURE__ */
|
|
58764
|
+
return /* @__PURE__ */ jsx119(
|
|
58765
58765
|
"div",
|
|
58766
58766
|
{
|
|
58767
58767
|
className: (0, import_classnames64.default)(`${classBase47}-item`, {
|
|
@@ -58778,12 +58778,12 @@ var WrapContainer = React24.memo(
|
|
|
58778
58778
|
i
|
|
58779
58779
|
);
|
|
58780
58780
|
});
|
|
58781
|
-
const overflowIndicator = /* @__PURE__ */
|
|
58781
|
+
const overflowIndicator = /* @__PURE__ */ jsx119(
|
|
58782
58782
|
"div",
|
|
58783
58783
|
{
|
|
58784
58784
|
className: `${classBase47}-OverflowIndicator`,
|
|
58785
58785
|
"data-index": "overflow",
|
|
58786
|
-
children: /* @__PURE__ */
|
|
58786
|
+
children: /* @__PURE__ */ jsx119(
|
|
58787
58787
|
PopupMenu,
|
|
58788
58788
|
{
|
|
58789
58789
|
...PopupMenuProps2,
|
|
@@ -58819,14 +58819,14 @@ var OverflowContainer = forwardRef41(function OverflowContainer2({
|
|
|
58819
58819
|
...htmlAttributes
|
|
58820
58820
|
}, forwardedRef) {
|
|
58821
58821
|
const id = useId2(idProp);
|
|
58822
|
-
return /* @__PURE__ */
|
|
58822
|
+
return /* @__PURE__ */ jsx119(
|
|
58823
58823
|
"div",
|
|
58824
58824
|
{
|
|
58825
58825
|
...htmlAttributes,
|
|
58826
58826
|
className: (0, import_classnames64.default)((0, import_classnames64.default)(className, classBase47)),
|
|
58827
58827
|
id,
|
|
58828
58828
|
ref: forwardedRef,
|
|
58829
|
-
children: /* @__PURE__ */
|
|
58829
|
+
children: /* @__PURE__ */ jsx119(
|
|
58830
58830
|
WrapContainer,
|
|
58831
58831
|
{
|
|
58832
58832
|
PopupMenuProps: PopupMenuProps2,
|
|
@@ -58852,7 +58852,7 @@ import {
|
|
|
58852
58852
|
cloneElement as cloneElement11,
|
|
58853
58853
|
memo as memo9
|
|
58854
58854
|
} from "react";
|
|
58855
|
-
import { jsx as
|
|
58855
|
+
import { jsx as jsx120 } from "react/jsx-runtime";
|
|
58856
58856
|
var clonePaletteItem = (paletteItem) => {
|
|
58857
58857
|
const dolly = paletteItem.cloneNode(true);
|
|
58858
58858
|
dolly.id = "";
|
|
@@ -58869,7 +58869,7 @@ var PaletteItem = memo9(
|
|
|
58869
58869
|
closeable,
|
|
58870
58870
|
...props
|
|
58871
58871
|
}) => {
|
|
58872
|
-
return /* @__PURE__ */
|
|
58872
|
+
return /* @__PURE__ */ jsx120(
|
|
58873
58873
|
ListItem,
|
|
58874
58874
|
{
|
|
58875
58875
|
className: (0, import_classnames65.default)("vuuPaletteItem", className),
|
|
@@ -58904,7 +58904,7 @@ var Palette = ({
|
|
|
58904
58904
|
const { height, left, top: top2, width } = listItemElement.getBoundingClientRect();
|
|
58905
58905
|
const id = uuid5();
|
|
58906
58906
|
const identifiers = { id, key: id };
|
|
58907
|
-
const component = template ? payload : /* @__PURE__ */
|
|
58907
|
+
const component = template ? payload : /* @__PURE__ */ jsx120(
|
|
58908
58908
|
MemoView,
|
|
58909
58909
|
{
|
|
58910
58910
|
...ViewProps4,
|
|
@@ -58938,7 +58938,7 @@ var Palette = ({
|
|
|
58938
58938
|
type: "drag-start"
|
|
58939
58939
|
});
|
|
58940
58940
|
}
|
|
58941
|
-
return /* @__PURE__ */
|
|
58941
|
+
return /* @__PURE__ */ jsx120(
|
|
58942
58942
|
List,
|
|
58943
58943
|
{
|
|
58944
58944
|
...ListProps5,
|
|
@@ -58959,18 +58959,18 @@ registerComponent("Palette", Palette, "view");
|
|
|
58959
58959
|
|
|
58960
58960
|
// ../vuu-layout/src/stack/Stack.tsx
|
|
58961
58961
|
var import_classnames66 = __toESM(require_classnames());
|
|
58962
|
-
import
|
|
58962
|
+
import React26, {
|
|
58963
58963
|
forwardRef as forwardRef42,
|
|
58964
58964
|
useCallback as useCallback127,
|
|
58965
58965
|
useRef as useRef99
|
|
58966
58966
|
} from "react";
|
|
58967
|
-
import { jsx as
|
|
58967
|
+
import { jsx as jsx121, jsxs as jsxs56 } from "react/jsx-runtime";
|
|
58968
58968
|
var classBase48 = "Tabs";
|
|
58969
58969
|
var getDefaultTabIcon = () => void 0;
|
|
58970
58970
|
var getChildElements = (children) => {
|
|
58971
58971
|
const elements = [];
|
|
58972
|
-
|
|
58973
|
-
if (
|
|
58972
|
+
React26.Children.forEach(children, (child) => {
|
|
58973
|
+
if (React26.isValidElement(child)) {
|
|
58974
58974
|
elements.push(child);
|
|
58975
58975
|
} else {
|
|
58976
58976
|
console.warn(`Stack has unexpected child element type`);
|
|
@@ -59017,7 +59017,7 @@ var Stack2 = forwardRef42(function Stack3({
|
|
|
59017
59017
|
);
|
|
59018
59018
|
const activeChild = () => {
|
|
59019
59019
|
var _a5;
|
|
59020
|
-
if (
|
|
59020
|
+
if (React26.isValidElement(children)) {
|
|
59021
59021
|
return children;
|
|
59022
59022
|
}
|
|
59023
59023
|
if (Array.isArray(children)) {
|
|
@@ -59033,7 +59033,7 @@ var Stack2 = forwardRef42(function Stack3({
|
|
|
59033
59033
|
} = child2.props;
|
|
59034
59034
|
const label = getTabLabel(child2, idx, tabLabels.current);
|
|
59035
59035
|
tabLabels.current.push(label);
|
|
59036
|
-
return /* @__PURE__ */
|
|
59036
|
+
return /* @__PURE__ */ jsx121(
|
|
59037
59037
|
Tab,
|
|
59038
59038
|
{
|
|
59039
59039
|
ariaControls: childId,
|
|
@@ -59061,7 +59061,7 @@ var Stack2 = forwardRef42(function Stack3({
|
|
|
59061
59061
|
id,
|
|
59062
59062
|
ref,
|
|
59063
59063
|
children: [
|
|
59064
|
-
showTabs ? /* @__PURE__ */
|
|
59064
|
+
showTabs ? /* @__PURE__ */ jsx121(
|
|
59065
59065
|
Tabstrip,
|
|
59066
59066
|
{
|
|
59067
59067
|
...TabstripProps2,
|
|
@@ -59079,7 +59079,7 @@ var Stack2 = forwardRef42(function Stack3({
|
|
|
59079
59079
|
children: renderTabs()
|
|
59080
59080
|
}
|
|
59081
59081
|
) : null,
|
|
59082
|
-
/* @__PURE__ */
|
|
59082
|
+
/* @__PURE__ */ jsx121(
|
|
59083
59083
|
"div",
|
|
59084
59084
|
{
|
|
59085
59085
|
"aria-labelledby": `${id}-${active}`,
|
|
@@ -59095,9 +59095,9 @@ var Stack2 = forwardRef42(function Stack3({
|
|
|
59095
59095
|
Stack2.displayName = "Stack";
|
|
59096
59096
|
|
|
59097
59097
|
// ../vuu-layout/src/stack/StackLayout.tsx
|
|
59098
|
-
import
|
|
59099
|
-
import { jsx as
|
|
59100
|
-
var defaultCreateNewChild = () => /* @__PURE__ */
|
|
59098
|
+
import React27, { useCallback as useCallback128, useRef as useRef100 } from "react";
|
|
59099
|
+
import { jsx as jsx122 } from "react/jsx-runtime";
|
|
59100
|
+
var defaultCreateNewChild = () => /* @__PURE__ */ jsx122(
|
|
59101
59101
|
Placeholder,
|
|
59102
59102
|
{
|
|
59103
59103
|
resizeable: true,
|
|
@@ -59140,7 +59140,7 @@ var StackLayout = (props) => {
|
|
|
59140
59140
|
);
|
|
59141
59141
|
const handleTabAdd = useCallback128(() => {
|
|
59142
59142
|
if (path) {
|
|
59143
|
-
const tabIndex =
|
|
59143
|
+
const tabIndex = React27.Children.count(children);
|
|
59144
59144
|
const component = createNewChild(tabIndex);
|
|
59145
59145
|
dispatch({
|
|
59146
59146
|
type: "add",
|
|
@@ -59184,7 +59184,7 @@ var StackLayout = (props) => {
|
|
|
59184
59184
|
return loadState(id2, "view-title") || title || // This will normally never be called as title is always assigned in layout model
|
|
59185
59185
|
getDefaultTabLabel(component, idx, existingLabels);
|
|
59186
59186
|
};
|
|
59187
|
-
return /* @__PURE__ */
|
|
59187
|
+
return /* @__PURE__ */ jsx122(
|
|
59188
59188
|
Stack2,
|
|
59189
59189
|
{
|
|
59190
59190
|
...restProps,
|
|
@@ -59205,7 +59205,7 @@ registerComponent("Stack", StackLayout, "container");
|
|
|
59205
59205
|
|
|
59206
59206
|
// ../vuu-layout/src/toolbar/Toolbar.tsx
|
|
59207
59207
|
var import_classnames67 = __toESM(require_classnames());
|
|
59208
|
-
import
|
|
59208
|
+
import React28, { useMemo as useMemo59, useRef as useRef103 } from "react";
|
|
59209
59209
|
|
|
59210
59210
|
// ../vuu-layout/src/toolbar/useToolbar.ts
|
|
59211
59211
|
import { isValidNumber as isValidNumber12 } from "@vuu-ui/vuu-utils";
|
|
@@ -59259,22 +59259,22 @@ import { isSelectableElement as isSelectableElement2, getClosestIndexItem } from
|
|
|
59259
59259
|
import { useCallback as useCallback130 } from "react";
|
|
59260
59260
|
|
|
59261
59261
|
// ../vuu-layout/src/toolbar/Toolbar.tsx
|
|
59262
|
-
import { jsx as
|
|
59262
|
+
import { jsx as jsx123 } from "react/jsx-runtime";
|
|
59263
59263
|
|
|
59264
59264
|
// ../vuu-layout/src/tools/config-wrapper/ConfigWrapper.tsx
|
|
59265
|
-
import
|
|
59266
|
-
import { jsx as
|
|
59265
|
+
import React29, { useState as useState62 } from "react";
|
|
59266
|
+
import { jsx as jsx124, jsxs as jsxs57 } from "react/jsx-runtime";
|
|
59267
59267
|
|
|
59268
59268
|
// ../vuu-layout/src/tools/devtools-box/layout-configurator.jsx
|
|
59269
|
-
import { jsx as
|
|
59269
|
+
import { jsx as jsx125, jsxs as jsxs58 } from "react/jsx-runtime";
|
|
59270
59270
|
var CSS_DIGIT = "(\\d+)(?:px)?";
|
|
59271
59271
|
var CSS_MEASURE = `^(?:${CSS_DIGIT}(?:\\s${CSS_DIGIT}(?:\\s${CSS_DIGIT}(?:\\s${CSS_DIGIT})?)?)?)$`;
|
|
59272
59272
|
var CSS_REX = new RegExp(CSS_MEASURE);
|
|
59273
59273
|
|
|
59274
59274
|
// ../vuu-layout/src/tools/devtools-tree/layout-tree-viewer.jsx
|
|
59275
59275
|
var import_classnames68 = __toESM(require_classnames());
|
|
59276
|
-
import
|
|
59277
|
-
import { jsx as
|
|
59276
|
+
import React30 from "react";
|
|
59277
|
+
import { jsx as jsx126 } from "react/jsx-runtime";
|
|
59278
59278
|
|
|
59279
59279
|
// ../vuu-shell/src/login/LoginPanel.tsx
|
|
59280
59280
|
import {
|
|
@@ -59286,35 +59286,35 @@ import {
|
|
|
59286
59286
|
|
|
59287
59287
|
// ../vuu-shell/src/login/VuuLogo.tsx
|
|
59288
59288
|
import { useMemo as useMemo60 } from "react";
|
|
59289
|
-
import { jsx as
|
|
59289
|
+
import { jsx as jsx127, jsxs as jsxs59 } from "react/jsx-runtime";
|
|
59290
59290
|
|
|
59291
59291
|
// ../vuu-shell/src/login/LoginPanel.tsx
|
|
59292
59292
|
var import_classnames69 = __toESM(require_classnames());
|
|
59293
|
-
import { jsx as
|
|
59293
|
+
import { jsx as jsx128, jsxs as jsxs60 } from "react/jsx-runtime";
|
|
59294
59294
|
|
|
59295
59295
|
// ../vuu-shell/src/login/login-utils.ts
|
|
59296
59296
|
import { getCookieValue } from "@vuu-ui/vuu-utils";
|
|
59297
59297
|
|
|
59298
59298
|
// ../vuu-shell/src/app-header/AppHeader.tsx
|
|
59299
|
-
import { jsx as
|
|
59299
|
+
import { jsx as jsx129, jsxs as jsxs61 } from "react/jsx-runtime";
|
|
59300
59300
|
|
|
59301
59301
|
// ../vuu-shell/src/connection-status/ConnectionStatusIcon.tsx
|
|
59302
59302
|
var import_classnames71 = __toESM(require_classnames());
|
|
59303
|
-
import
|
|
59304
|
-
import { Fragment as Fragment10, jsx as
|
|
59303
|
+
import React31, { useEffect as useEffect30, useState as useState64 } from "react";
|
|
59304
|
+
import { Fragment as Fragment10, jsx as jsx130, jsxs as jsxs62 } from "react/jsx-runtime";
|
|
59305
59305
|
|
|
59306
59306
|
// ../vuu-shell/src/density-switch/DensitySwitch.tsx
|
|
59307
59307
|
var import_classnames72 = __toESM(require_classnames());
|
|
59308
59308
|
import { useCallback as useCallback134 } from "react";
|
|
59309
|
-
import { jsx as
|
|
59309
|
+
import { jsx as jsx131 } from "react/jsx-runtime";
|
|
59310
59310
|
|
|
59311
59311
|
// ../vuu-shell/src/feature/Feature.tsx
|
|
59312
|
-
import
|
|
59312
|
+
import React33, { Suspense, useEffect as useEffect31 } from "react";
|
|
59313
59313
|
|
|
59314
59314
|
// ../vuu-shell/src/feature/FeatureErrorBoundary.tsx
|
|
59315
|
-
import
|
|
59316
|
-
import { Fragment as Fragment11, jsx as
|
|
59317
|
-
var FeatureErrorBoundary = class extends
|
|
59315
|
+
import React32 from "react";
|
|
59316
|
+
import { Fragment as Fragment11, jsx as jsx132, jsxs as jsxs63 } from "react/jsx-runtime";
|
|
59317
|
+
var FeatureErrorBoundary = class extends React32.Component {
|
|
59318
59318
|
constructor(props) {
|
|
59319
59319
|
super(props);
|
|
59320
59320
|
this.state = { errorMessage: null };
|
|
@@ -59329,8 +59329,8 @@ var FeatureErrorBoundary = class extends React31.Component {
|
|
|
59329
59329
|
render() {
|
|
59330
59330
|
if (this.state.errorMessage) {
|
|
59331
59331
|
return /* @__PURE__ */ jsxs63(Fragment11, { children: [
|
|
59332
|
-
/* @__PURE__ */
|
|
59333
|
-
/* @__PURE__ */
|
|
59332
|
+
/* @__PURE__ */ jsx132("h1", { children: "An error occured while creating component." }),
|
|
59333
|
+
/* @__PURE__ */ jsx132("p", { children: this.state.errorMessage })
|
|
59334
59334
|
] });
|
|
59335
59335
|
}
|
|
59336
59336
|
return this.props.children;
|
|
@@ -59338,8 +59338,8 @@ var FeatureErrorBoundary = class extends React31.Component {
|
|
|
59338
59338
|
};
|
|
59339
59339
|
|
|
59340
59340
|
// ../vuu-shell/src/feature/Loader.tsx
|
|
59341
|
-
import { jsx as
|
|
59342
|
-
var Loader = () => /* @__PURE__ */
|
|
59341
|
+
import { jsx as jsx133 } from "react/jsx-runtime";
|
|
59342
|
+
var Loader = () => /* @__PURE__ */ jsx133("div", { className: "hwLoader" });
|
|
59343
59343
|
|
|
59344
59344
|
// ../vuu-shell/src/feature/css-module-loader.ts
|
|
59345
59345
|
var importCSS = async (path) => {
|
|
@@ -59348,7 +59348,7 @@ var importCSS = async (path) => {
|
|
|
59348
59348
|
};
|
|
59349
59349
|
|
|
59350
59350
|
// ../vuu-shell/src/feature/Feature.tsx
|
|
59351
|
-
import { jsx as
|
|
59351
|
+
import { jsx as jsx134 } from "react/jsx-runtime";
|
|
59352
59352
|
var componentsMap = /* @__PURE__ */ new Map();
|
|
59353
59353
|
var useCachedFeature = (url) => {
|
|
59354
59354
|
useEffect31(
|
|
@@ -59360,7 +59360,7 @@ var useCachedFeature = (url) => {
|
|
|
59360
59360
|
if (!componentsMap.has(url)) {
|
|
59361
59361
|
componentsMap.set(
|
|
59362
59362
|
url,
|
|
59363
|
-
|
|
59363
|
+
React33.lazy(() => import(
|
|
59364
59364
|
/* @vite-ignore */
|
|
59365
59365
|
url
|
|
59366
59366
|
))
|
|
@@ -59388,29 +59388,29 @@ function RawFeature({
|
|
|
59388
59388
|
});
|
|
59389
59389
|
}
|
|
59390
59390
|
const LazyFeature = useCachedFeature(url);
|
|
59391
|
-
return /* @__PURE__ */
|
|
59391
|
+
return /* @__PURE__ */ jsx134(FeatureErrorBoundary, { url, children: /* @__PURE__ */ jsx134(Suspense, { fallback: /* @__PURE__ */ jsx134(Loader, {}), children: /* @__PURE__ */ jsx134(LazyFeature, { ...props, ...params }) }) });
|
|
59392
59392
|
}
|
|
59393
|
-
var Feature =
|
|
59393
|
+
var Feature = React33.memo(RawFeature);
|
|
59394
59394
|
Feature.displayName = "Feature";
|
|
59395
59395
|
registerComponent("Feature", Feature, "view");
|
|
59396
59396
|
|
|
59397
59397
|
// ../vuu-shell/src/layout-management/SaveLayoutPanel.tsx
|
|
59398
59398
|
import { useEffect as useEffect32, useState as useState65 } from "react";
|
|
59399
59399
|
import { takeScreenshot } from "@vuu-ui/vuu-utils";
|
|
59400
|
-
import { jsx as
|
|
59400
|
+
import { jsx as jsx135, jsxs as jsxs64 } from "react/jsx-runtime";
|
|
59401
59401
|
var classBase49 = "saveLayoutPanel";
|
|
59402
59402
|
var formField = `${classBase49}-formField`;
|
|
59403
59403
|
|
|
59404
59404
|
// ../vuu-shell/src/layout-management/useLayoutManager.tsx
|
|
59405
|
-
import
|
|
59405
|
+
import React34, {
|
|
59406
59406
|
useCallback as useCallback135,
|
|
59407
59407
|
useContext as useContext12,
|
|
59408
59408
|
useEffect as useEffect33,
|
|
59409
59409
|
useRef as useRef105,
|
|
59410
59410
|
useState as useState66
|
|
59411
59411
|
} from "react";
|
|
59412
|
-
import { jsx as
|
|
59413
|
-
var LayoutManagementContext =
|
|
59412
|
+
import { jsx as jsx136 } from "react/jsx-runtime";
|
|
59413
|
+
var LayoutManagementContext = React34.createContext({
|
|
59414
59414
|
layoutMetadata: [],
|
|
59415
59415
|
saveLayout: () => void 0,
|
|
59416
59416
|
// The default Application JSON will be served if no LayoutManagementProvider
|
|
@@ -59421,11 +59421,11 @@ var LayoutManagementContext = React33.createContext({
|
|
|
59421
59421
|
});
|
|
59422
59422
|
|
|
59423
59423
|
// ../vuu-shell/src/layout-management/LayoutList.tsx
|
|
59424
|
-
import { Fragment as Fragment12, jsx as
|
|
59424
|
+
import { Fragment as Fragment12, jsx as jsx137, jsxs as jsxs65 } from "react/jsx-runtime";
|
|
59425
59425
|
|
|
59426
59426
|
// ../vuu-icons/src/VuuLogo.tsx
|
|
59427
59427
|
import { memo as memo10 } from "react";
|
|
59428
|
-
import { jsx as
|
|
59428
|
+
import { jsx as jsx138, jsxs as jsxs66 } from "react/jsx-runtime";
|
|
59429
59429
|
var VuuLogo2 = memo10(() => {
|
|
59430
59430
|
return /* @__PURE__ */ jsxs66(
|
|
59431
59431
|
"svg",
|
|
@@ -59437,21 +59437,21 @@ var VuuLogo2 = memo10(() => {
|
|
|
59437
59437
|
xmlns: "http://www.w3.org/2000/svg",
|
|
59438
59438
|
children: [
|
|
59439
59439
|
/* @__PURE__ */ jsxs66("g", { clipPath: "url(#clip0_217_6990)", children: [
|
|
59440
|
-
/* @__PURE__ */
|
|
59440
|
+
/* @__PURE__ */ jsx138(
|
|
59441
59441
|
"path",
|
|
59442
59442
|
{
|
|
59443
59443
|
d: "M39.8642 15.5509L35.9196 7.58974L34.3369 6.85464L24.6235 22.0825L39.1628 30.618L42.3152 25.6347L39.8642 15.5509Z",
|
|
59444
59444
|
fill: "url(#paint0_linear_217_6990)"
|
|
59445
59445
|
}
|
|
59446
59446
|
),
|
|
59447
|
-
/* @__PURE__ */
|
|
59447
|
+
/* @__PURE__ */ jsx138(
|
|
59448
59448
|
"path",
|
|
59449
59449
|
{
|
|
59450
59450
|
d: "M42.6246 24.8716C41.9199 25.9157 40.9625 26.824 39.767 27.4905C38.424 28.2396 36.9563 28.597 35.5081 28.597C32.7541 28.597 30.0715 27.3094 28.4466 24.9855L15.772 3.90967L15.7655 3.9206C13.3615 0.137431 8.25372 -1.13143 4.24754 1.10507C0.178173 3.37435 -1.20852 8.39359 1.14854 12.3125L18.3445 40.9095C19.1108 42.1846 20.1816 43.1834 21.4144 43.8764C21.4241 43.8826 21.4338 43.8889 21.4435 43.8951C21.4484 43.8982 21.4549 43.9013 21.4597 43.9045C22.0332 44.2228 22.6423 44.471 23.2725 44.6536C23.3194 44.6677 23.368 44.6817 23.415 44.6942C23.6418 44.7551 23.8702 44.8097 24.1019 44.8534C24.1456 44.8612 24.1894 44.8659 24.2331 44.8737C24.4194 44.9049 24.6073 44.9314 24.7952 44.9501C24.8698 44.9579 24.9443 44.9658 25.0188 44.9704C25.2342 44.9876 25.4497 44.9985 25.6668 45.0001C25.6781 45.0001 25.6895 45.0001 25.6992 45.0001C25.7024 45.0001 25.704 45.0001 25.7073 45.0001C25.7105 45.0001 25.7121 45.0001 25.7154 45.0001C25.9503 45.0001 26.1868 44.9876 26.4217 44.9689C26.4751 44.9642 26.5286 44.9595 26.5837 44.9533C26.8137 44.9299 27.0438 44.9002 27.2738 44.8596C27.277 44.8596 27.2803 44.8596 27.2835 44.8596C27.5362 44.8144 27.7889 44.7551 28.0384 44.6864C28.0546 44.6817 28.0692 44.677 28.0854 44.6723C28.4483 44.5709 28.8063 44.4445 29.1594 44.2931C29.1659 44.29 29.174 44.2868 29.1805 44.2837C29.4494 44.1682 29.7151 44.0418 29.9759 43.8967C30.24 43.75 30.491 43.5908 30.7308 43.4206C30.9398 43.2739 31.1407 43.1179 31.3367 42.9524C31.5748 42.7495 31.8 42.5373 32.009 42.3141C32.1661 42.1471 32.3168 41.9723 32.4609 41.7913C32.5079 41.732 32.5517 41.6711 32.5954 41.6118C32.6942 41.4807 32.7882 41.3465 32.8789 41.2091C32.9259 41.1373 32.9728 41.0671 33.0182 40.9953C33.036 40.9672 33.0555 40.9407 33.0717 40.9126L42.7153 24.8763H42.6214L42.6246 24.8716Z",
|
|
59451
59451
|
fill: "url(#paint1_linear_217_6990)"
|
|
59452
59452
|
}
|
|
59453
59453
|
),
|
|
59454
|
-
/* @__PURE__ */
|
|
59454
|
+
/* @__PURE__ */ jsx138(
|
|
59455
59455
|
"path",
|
|
59456
59456
|
{
|
|
59457
59457
|
d: "M42.8402 16.4218L42.1112 15.2232L38.9636 9.58433L37.504 7.19644C37.2286 6.56123 36.579 6.11331 35.8176 6.11331C34.8083 6.11331 33.9919 6.90147 33.9919 7.87223C33.9919 8.20154 34.0907 8.50432 34.2543 8.76808L34.2349 8.78056L39.9048 18.0808C40.5884 19.2186 40.7715 20.5437 40.4199 21.8141C40.0684 23.0845 39.226 24.1458 38.045 24.806C37.2675 25.2398 36.3846 25.4693 35.4936 25.4693C33.6727 25.4693 31.9766 24.5281 31.0662 23.0143L22.9161 9.63271H22.9323L19.4899 3.90958L19.4834 3.92051C19.4235 3.8253 19.3538 3.73947 19.2907 3.64738L19.1935 3.48663C19.1935 3.48663 19.1854 3.49131 19.1821 3.49443C17.5654 1.27666 14.9799 0.0390178 12.3118 0.00936427V0H7.91199V0.02185C10.9851 -0.184164 14.0582 1.23296 15.7656 3.92051L15.7721 3.90958L28.4451 24.987C30.0699 27.3093 32.7542 28.5985 35.5066 28.5985C36.9548 28.5985 38.4225 28.2426 39.7655 27.4919C40.961 26.8255 41.9168 25.9156 42.6231 24.8731H42.717L42.6846 24.9261C43.1366 24.2347 43.4833 23.4731 43.7068 22.6615C44.2916 20.5452 43.9871 18.3352 42.8369 16.4234L42.8402 16.4218Z",
|
|
@@ -59459,21 +59459,21 @@ var VuuLogo2 = memo10(() => {
|
|
|
59459
59459
|
}
|
|
59460
59460
|
),
|
|
59461
59461
|
/* @__PURE__ */ jsxs66("g", { opacity: "0.86", children: [
|
|
59462
|
-
/* @__PURE__ */
|
|
59462
|
+
/* @__PURE__ */ jsx138(
|
|
59463
59463
|
"path",
|
|
59464
59464
|
{
|
|
59465
59465
|
d: "M34.2332 8.78212L39.9031 18.0824C40.5868 19.2202 40.7698 20.5452 40.4183 21.8156C40.2044 22.5897 39.8059 23.2858 39.2616 23.8617C39.9744 23.2343 40.4879 22.4243 40.7423 21.5035C41.0938 20.2331 40.9107 18.908 40.2271 17.7703L34.5572 8.46998L34.5767 8.4575C34.413 8.19374 34.3142 7.89096 34.3142 7.56165C34.3142 7.15586 34.4584 6.78285 34.6982 6.48476C34.2672 6.80626 33.9902 7.30881 33.9902 7.87379C33.9902 8.2031 34.0891 8.50588 34.2527 8.76964L34.2332 8.78212Z",
|
|
59466
59466
|
fill: "white"
|
|
59467
59467
|
}
|
|
59468
59468
|
),
|
|
59469
|
-
/* @__PURE__ */
|
|
59469
|
+
/* @__PURE__ */ jsx138(
|
|
59470
59470
|
"path",
|
|
59471
59471
|
{
|
|
59472
59472
|
d: "M42.6917 24.9169L42.6863 24.9256C42.6863 24.9256 42.6899 24.9187 42.6935 24.9152C42.6935 24.9152 42.6935 24.9152 42.6935 24.9169H42.6917Z",
|
|
59473
59473
|
fill: "white"
|
|
59474
59474
|
}
|
|
59475
59475
|
),
|
|
59476
|
-
/* @__PURE__ */
|
|
59476
|
+
/* @__PURE__ */ jsx138(
|
|
59477
59477
|
"path",
|
|
59478
59478
|
{
|
|
59479
59479
|
d: "M40.0911 27.1798C38.7481 27.9289 37.2804 28.2863 35.8322 28.2863C33.0782 28.2863 30.3955 26.9988 28.7707 24.6749L16.0961 3.59744L16.0896 3.60837C14.9281 1.78077 13.1364 0.543128 11.1422 0H7.91199V0.02185C10.9851 -0.184164 14.0582 1.23296 15.7656 3.92051L15.7721 3.90958L28.4451 24.987C30.0699 27.3093 32.7542 28.5985 35.5066 28.5985C36.9548 28.5985 38.4225 28.2426 39.7655 27.4919C40.4815 27.0924 41.1084 26.6055 41.6511 26.0561C41.1862 26.479 40.6662 26.8583 40.0894 27.1798H40.0911Z",
|
|
@@ -59493,8 +59493,8 @@ var VuuLogo2 = memo10(() => {
|
|
|
59493
59493
|
y2: "18.7363",
|
|
59494
59494
|
gradientUnits: "userSpaceOnUse",
|
|
59495
59495
|
children: [
|
|
59496
|
-
/* @__PURE__ */
|
|
59497
|
-
/* @__PURE__ */
|
|
59496
|
+
/* @__PURE__ */ jsx138("stop", { stopColor: "#4906A5" }),
|
|
59497
|
+
/* @__PURE__ */ jsx138("stop", { offset: "1", stopColor: "#D3423A" })
|
|
59498
59498
|
]
|
|
59499
59499
|
}
|
|
59500
59500
|
),
|
|
@@ -59508,12 +59508,12 @@ var VuuLogo2 = memo10(() => {
|
|
|
59508
59508
|
y2: "22.5009",
|
|
59509
59509
|
gradientUnits: "userSpaceOnUse",
|
|
59510
59510
|
children: [
|
|
59511
|
-
/* @__PURE__ */
|
|
59512
|
-
/* @__PURE__ */
|
|
59511
|
+
/* @__PURE__ */ jsx138("stop", { stopColor: "#7C06A5" }),
|
|
59512
|
+
/* @__PURE__ */ jsx138("stop", { offset: "1", stopColor: "#D3423A" })
|
|
59513
59513
|
]
|
|
59514
59514
|
}
|
|
59515
59515
|
),
|
|
59516
|
-
/* @__PURE__ */
|
|
59516
|
+
/* @__PURE__ */ jsx138("clipPath", { id: "clip0_217_6990", children: /* @__PURE__ */ jsx138("rect", { width: "44", height: "45", fill: "white" }) })
|
|
59517
59517
|
] })
|
|
59518
59518
|
]
|
|
59519
59519
|
}
|
|
@@ -59526,7 +59526,7 @@ var import_classnames74 = __toESM(require_classnames());
|
|
|
59526
59526
|
import { useCallback as useCallback136, useState as useState67 } from "react";
|
|
59527
59527
|
|
|
59528
59528
|
// ../vuu-shell/src/feature-list/FeatureList.tsx
|
|
59529
|
-
import { jsx as
|
|
59529
|
+
import { jsx as jsx139, jsxs as jsxs67 } from "react/jsx-runtime";
|
|
59530
59530
|
|
|
59531
59531
|
// ../vuu-shell/src/theme-provider/ThemeProvider.tsx
|
|
59532
59532
|
var import_classnames73 = __toESM(require_classnames());
|
|
@@ -59536,7 +59536,7 @@ import {
|
|
|
59536
59536
|
cloneElement as cloneElement12,
|
|
59537
59537
|
useContext as useContext13
|
|
59538
59538
|
} from "react";
|
|
59539
|
-
import { jsx as
|
|
59539
|
+
import { jsx as jsx140 } from "react/jsx-runtime";
|
|
59540
59540
|
var DEFAULT_DENSITY2 = "medium";
|
|
59541
59541
|
var DEFAULT_THEME = "salt-theme";
|
|
59542
59542
|
var DEFAULT_THEME_MODE = "light";
|
|
@@ -59607,12 +59607,12 @@ var ThemeProvider = ({
|
|
|
59607
59607
|
const themeMode = (_b = themeModeProp != null ? themeModeProp : inheritedThemeMode) != null ? _b : DEFAULT_THEME_MODE;
|
|
59608
59608
|
const theme2 = (_c = themeProp != null ? themeProp : inheritedTheme) != null ? _c : DEFAULT_THEME;
|
|
59609
59609
|
const themedChildren = applyThemeClasses ? createThemedChildren(children, theme2, themeMode, density) : children;
|
|
59610
|
-
return /* @__PURE__ */
|
|
59610
|
+
return /* @__PURE__ */ jsx140(ThemeContext2.Provider, { value: { themeMode, density, theme: theme2 }, children: themedChildren });
|
|
59611
59611
|
};
|
|
59612
59612
|
ThemeProvider.displayName = "ThemeProvider";
|
|
59613
59613
|
|
|
59614
59614
|
// ../vuu-shell/src/left-nav/LeftNav.tsx
|
|
59615
|
-
import { jsx as
|
|
59615
|
+
import { jsx as jsx141, jsxs as jsxs68 } from "react/jsx-runtime";
|
|
59616
59616
|
|
|
59617
59617
|
// ../vuu-shell/src/session-editing-form/SessionEditingForm.tsx
|
|
59618
59618
|
var import_classnames75 = __toESM(require_classnames());
|
|
@@ -59633,7 +59633,7 @@ import {
|
|
|
59633
59633
|
isValidNumber as isValidNumber13,
|
|
59634
59634
|
shallowEquals
|
|
59635
59635
|
} from "@vuu-ui/vuu-utils";
|
|
59636
|
-
import { jsx as
|
|
59636
|
+
import { jsx as jsx142, jsxs as jsxs69 } from "react/jsx-runtime";
|
|
59637
59637
|
|
|
59638
59638
|
// ../vuu-shell/src/shell.tsx
|
|
59639
59639
|
import { connectToServer } from "@vuu-ui/vuu-data";
|
|
@@ -59648,27 +59648,27 @@ import {
|
|
|
59648
59648
|
// ../vuu-shell/src/shell-layouts/context-panel/ContextPanel.tsx
|
|
59649
59649
|
var import_classnames76 = __toESM(require_classnames());
|
|
59650
59650
|
import { useCallback as useCallback138, useMemo as useMemo62 } from "react";
|
|
59651
|
-
import { jsx as
|
|
59651
|
+
import { jsx as jsx143, jsxs as jsxs70 } from "react/jsx-runtime";
|
|
59652
59652
|
|
|
59653
59653
|
// ../vuu-shell/src/shell-layouts/side-panel/SidePanel.tsx
|
|
59654
59654
|
var import_classnames77 = __toESM(require_classnames());
|
|
59655
59655
|
import { useMemo as useMemo63 } from "react";
|
|
59656
|
-
import { jsx as
|
|
59656
|
+
import { jsx as jsx144 } from "react/jsx-runtime";
|
|
59657
59657
|
|
|
59658
59658
|
// ../vuu-shell/src/shell-layouts/useFullHeightLeftPanel.tsx
|
|
59659
|
-
import { jsx as
|
|
59659
|
+
import { jsx as jsx145, jsxs as jsxs71 } from "react/jsx-runtime";
|
|
59660
59660
|
|
|
59661
59661
|
// ../vuu-shell/src/shell-layouts/useInlayLeftPanel.tsx
|
|
59662
59662
|
import { useCallback as useCallback139, useRef as useRef107, useState as useState69 } from "react";
|
|
59663
|
-
import { jsx as
|
|
59663
|
+
import { jsx as jsx146, jsxs as jsxs72 } from "react/jsx-runtime";
|
|
59664
59664
|
|
|
59665
59665
|
// ../vuu-shell/src/shell.tsx
|
|
59666
|
-
import { jsx as
|
|
59666
|
+
import { jsx as jsx147, jsxs as jsxs73 } from "react/jsx-runtime";
|
|
59667
59667
|
var { error } = logger2("Shell");
|
|
59668
59668
|
|
|
59669
59669
|
// ../vuu-shell/src/ShellContextProvider.tsx
|
|
59670
59670
|
import { createContext as createContext11, useContext as useContext14 } from "react";
|
|
59671
|
-
import { jsx as
|
|
59671
|
+
import { jsx as jsx148 } from "react/jsx-runtime";
|
|
59672
59672
|
var defaultConfig = {};
|
|
59673
59673
|
var ShellContext = createContext11(defaultConfig);
|
|
59674
59674
|
var useShellContext = () => {
|
|
@@ -59678,7 +59678,7 @@ var useShellContext = () => {
|
|
|
59678
59678
|
// ../vuu-shell/src/theme-switch/ThemeSwitch.tsx
|
|
59679
59679
|
var import_classnames79 = __toESM(require_classnames());
|
|
59680
59680
|
import { useCallback as useCallback141 } from "react";
|
|
59681
|
-
import { jsx as
|
|
59681
|
+
import { jsx as jsx149, jsxs as jsxs74 } from "react/jsx-runtime";
|
|
59682
59682
|
|
|
59683
59683
|
// src/hooks/useLookupValues.ts
|
|
59684
59684
|
import {
|