@jsenv/navi 0.14.25 → 0.14.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/jsenv_navi.js +52 -1
- package/dist/jsenv_navi.js.map +8 -2
- package/package.json +1 -1
package/dist/jsenv_navi.js
CHANGED
|
@@ -24484,6 +24484,48 @@ const DialogLayout = ({
|
|
|
24484
24484
|
});
|
|
24485
24485
|
};
|
|
24486
24486
|
|
|
24487
|
+
installImportMetaCss(import.meta);import.meta.css = /* css */`
|
|
24488
|
+
@layer navi {
|
|
24489
|
+
.navi_separator {
|
|
24490
|
+
--size: 1px;
|
|
24491
|
+
--color: inherit;
|
|
24492
|
+
--spacing: 8px;
|
|
24493
|
+
--spacing-start: 8px;
|
|
24494
|
+
--spacing-end: 8px;
|
|
24495
|
+
}
|
|
24496
|
+
}
|
|
24497
|
+
|
|
24498
|
+
.navi_separator {
|
|
24499
|
+
height: var(--size);
|
|
24500
|
+
margin-top: var(--spacing-start, var(--spacing, 8px));
|
|
24501
|
+
margin-bottom: var(--spacing-end, var(--spacing, 8px));
|
|
24502
|
+
background: var(--color);
|
|
24503
|
+
|
|
24504
|
+
&[data-vertical] {
|
|
24505
|
+
width: var(--separator-size);
|
|
24506
|
+
height: 100%;
|
|
24507
|
+
margin-top: 0;
|
|
24508
|
+
margin-right: var(--spacing-end, var(--spacing, 8px));
|
|
24509
|
+
margin-bottom: 0;
|
|
24510
|
+
margin-left: var(--spacing-start, var(--spacing, 8px));
|
|
24511
|
+
}
|
|
24512
|
+
}
|
|
24513
|
+
`;
|
|
24514
|
+
const SeparatorStyleCSSVars = {
|
|
24515
|
+
color: "--separator-color"
|
|
24516
|
+
};
|
|
24517
|
+
const Separator = ({
|
|
24518
|
+
vertical,
|
|
24519
|
+
...props
|
|
24520
|
+
}) => {
|
|
24521
|
+
return jsx(Box, {
|
|
24522
|
+
...props,
|
|
24523
|
+
"data-vertical": vertical ? "" : undefined,
|
|
24524
|
+
baseClassName: "navi_separator",
|
|
24525
|
+
styleCSSVars: SeparatorStyleCSSVars
|
|
24526
|
+
});
|
|
24527
|
+
};
|
|
24528
|
+
|
|
24487
24529
|
installImportMetaCss(import.meta);import.meta.css = /* css */`
|
|
24488
24530
|
@layer navi {
|
|
24489
24531
|
.navi_viewport_layout {
|
|
@@ -24575,6 +24617,15 @@ const CheckSvg = () => jsx("svg", {
|
|
|
24575
24617
|
})
|
|
24576
24618
|
});
|
|
24577
24619
|
|
|
24620
|
+
const ConstructionSvg = () => {
|
|
24621
|
+
return jsx("svg", {
|
|
24622
|
+
viewBox: "0 0 15 15",
|
|
24623
|
+
children: jsx("path", {
|
|
24624
|
+
d: "M13.5,12h-1.8L8.2,1.5C8,0.8,7,0.8,6.8,1.5L3.3,12H1.5C1.2,12,1,12.2,1,12.5v1C1,13.8,1.2,14,1.5,14h12 c0.3,0,0.5-0.2,0.5-0.5v-1C14,12.2,13.8,12,13.5,12z M7,4H8l0.7,2H6.4L7,4z M5.7,8h3.6l0.7,2H5L5.7,8z"
|
|
24625
|
+
})
|
|
24626
|
+
});
|
|
24627
|
+
};
|
|
24628
|
+
|
|
24578
24629
|
const ExclamationSvg = () => {
|
|
24579
24630
|
return jsx("svg", {
|
|
24580
24631
|
viewBox: "0 0 125 300",
|
|
@@ -24670,5 +24721,5 @@ const UserSvg = () => jsx("svg", {
|
|
|
24670
24721
|
})
|
|
24671
24722
|
});
|
|
24672
24723
|
|
|
24673
|
-
export { ActionRenderer, ActiveKeyboardShortcuts, BadgeCount, Box, Button, Caption, CheckSvg, Checkbox, CheckboxList, Code, Col, Colgroup, Details, DialogLayout, Editable, ErrorBoundaryContext, ExclamationSvg, EyeClosedSvg, EyeSvg, Form, HeartSvg, HomeSvg, Icon, Image, Input, Label, Link, LinkAnchorSvg, LinkBlankTargetSvg, MessageBox, Paragraph, Radio, RadioList, Route, RouteLink, Routes, RowNumberCol, RowNumberTableCell, SINGLE_SPACE_CONSTRAINT, SVGMaskOverlay, SearchSvg, Select, SelectionContext, SettingsSvg, StarSvg, SummaryMarker, Svg, Tab, TabList, Table, TableCell, Tbody, Text, Thead, Title, Tr, UITransition, UserSvg, ViewportLayout, actionIntegratedVia, addCustomMessage, compareTwoJsValues, createAction, createAvailableConstraint, createRequestCanceller, createSelectionKeyboardShortcuts, enableDebugActions, enableDebugOnDocumentLoading, forwardActionRequested, installCustomConstraintValidation, isCellSelected, isColumnSelected, isRowSelected, localStorageSignal, navBack, navForward, navTo, openCallout, rawUrlPart, reload, removeCustomMessage, requestAction, rerunActions, resource, setBaseUrl, setupRoutes, stateSignal, stopLoad, stringifyTableSelectionValue, updateActions, useActionData, useActionStatus, useActiveRouteInfo, useCalloutClose, useCellsAndColumns, useConstraintValidityState, useDependenciesDiff, useDocumentResource, useDocumentState, useDocumentUrl, useEditionController, useFocusGroup, useKeyboardShortcuts, useNavState$1 as useNavState, useRouteStatus, useRunOnMount, useSelectableElement, useSelectionController, useSignalSync, useStateArray, useTitleLevel, useUrlSearchParam, valueInLocalStorage };
|
|
24724
|
+
export { ActionRenderer, ActiveKeyboardShortcuts, BadgeCount, Box, Button, Caption, CheckSvg, Checkbox, CheckboxList, Code, Col, Colgroup, ConstructionSvg, Details, DialogLayout, Editable, ErrorBoundaryContext, ExclamationSvg, EyeClosedSvg, EyeSvg, Form, HeartSvg, HomeSvg, Icon, Image, Input, Label, Link, LinkAnchorSvg, LinkBlankTargetSvg, MessageBox, Paragraph, Radio, RadioList, Route, RouteLink, Routes, RowNumberCol, RowNumberTableCell, SINGLE_SPACE_CONSTRAINT, SVGMaskOverlay, SearchSvg, Select, SelectionContext, Separator, SettingsSvg, StarSvg, SummaryMarker, Svg, Tab, TabList, Table, TableCell, Tbody, Text, Thead, Title, Tr, UITransition, UserSvg, ViewportLayout, actionIntegratedVia, addCustomMessage, compareTwoJsValues, createAction, createAvailableConstraint, createRequestCanceller, createSelectionKeyboardShortcuts, enableDebugActions, enableDebugOnDocumentLoading, forwardActionRequested, installCustomConstraintValidation, isCellSelected, isColumnSelected, isRowSelected, localStorageSignal, navBack, navForward, navTo, openCallout, rawUrlPart, reload, removeCustomMessage, requestAction, rerunActions, resource, setBaseUrl, setupRoutes, stateSignal, stopLoad, stringifyTableSelectionValue, updateActions, useActionData, useActionStatus, useActiveRouteInfo, useCalloutClose, useCellsAndColumns, useConstraintValidityState, useDependenciesDiff, useDocumentResource, useDocumentState, useDocumentUrl, useEditionController, useFocusGroup, useKeyboardShortcuts, useNavState$1 as useNavState, useRouteStatus, useRunOnMount, useSelectableElement, useSelectionController, useSignalSync, useStateArray, useTitleLevel, useUrlSearchParam, valueInLocalStorage };
|
|
24674
24725
|
//# sourceMappingURL=jsenv_navi.js.map
|