@jsenv/navi 0.14.25 → 0.14.27
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 +56 -1
- package/dist/jsenv_navi.js.map +8 -2
- package/package.json +1 -1
package/dist/jsenv_navi.js
CHANGED
|
@@ -24484,6 +24484,52 @@ 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: #e4e4e7;
|
|
24492
|
+
--spacing: 0.5em;
|
|
24493
|
+
--spacing-start: 0.5em;
|
|
24494
|
+
--spacing-end: 0.5em;
|
|
24495
|
+
}
|
|
24496
|
+
}
|
|
24497
|
+
|
|
24498
|
+
.navi_separator {
|
|
24499
|
+
height: var(--size);
|
|
24500
|
+
margin-top: var(--spacing-start, var(--spacing));
|
|
24501
|
+
margin-bottom: var(--spacing-end, var(--spacing));
|
|
24502
|
+
background: var(--color);
|
|
24503
|
+
|
|
24504
|
+
&[data-vertical] {
|
|
24505
|
+
display: inline-block;
|
|
24506
|
+
|
|
24507
|
+
width: var(--separator-size);
|
|
24508
|
+
height: 1lh;
|
|
24509
|
+
margin-top: 0;
|
|
24510
|
+
margin-right: var(--spacing-end, var(--spacing));
|
|
24511
|
+
margin-bottom: 0;
|
|
24512
|
+
margin-left: var(--spacing-start, var(--spacing));
|
|
24513
|
+
vertical-align: bottom;
|
|
24514
|
+
}
|
|
24515
|
+
}
|
|
24516
|
+
`;
|
|
24517
|
+
const SeparatorStyleCSSVars = {
|
|
24518
|
+
color: "--separator-color"
|
|
24519
|
+
};
|
|
24520
|
+
const Separator = ({
|
|
24521
|
+
vertical,
|
|
24522
|
+
...props
|
|
24523
|
+
}) => {
|
|
24524
|
+
return jsx(Box, {
|
|
24525
|
+
as: vertical ? "span" : "hr",
|
|
24526
|
+
...props,
|
|
24527
|
+
"data-vertical": vertical ? "" : undefined,
|
|
24528
|
+
baseClassName: "navi_separator",
|
|
24529
|
+
styleCSSVars: SeparatorStyleCSSVars
|
|
24530
|
+
});
|
|
24531
|
+
};
|
|
24532
|
+
|
|
24487
24533
|
installImportMetaCss(import.meta);import.meta.css = /* css */`
|
|
24488
24534
|
@layer navi {
|
|
24489
24535
|
.navi_viewport_layout {
|
|
@@ -24575,6 +24621,15 @@ const CheckSvg = () => jsx("svg", {
|
|
|
24575
24621
|
})
|
|
24576
24622
|
});
|
|
24577
24623
|
|
|
24624
|
+
const ConstructionSvg = () => {
|
|
24625
|
+
return jsx("svg", {
|
|
24626
|
+
viewBox: "0 0 15 15",
|
|
24627
|
+
children: jsx("path", {
|
|
24628
|
+
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"
|
|
24629
|
+
})
|
|
24630
|
+
});
|
|
24631
|
+
};
|
|
24632
|
+
|
|
24578
24633
|
const ExclamationSvg = () => {
|
|
24579
24634
|
return jsx("svg", {
|
|
24580
24635
|
viewBox: "0 0 125 300",
|
|
@@ -24670,5 +24725,5 @@ const UserSvg = () => jsx("svg", {
|
|
|
24670
24725
|
})
|
|
24671
24726
|
});
|
|
24672
24727
|
|
|
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 };
|
|
24728
|
+
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
24729
|
//# sourceMappingURL=jsenv_navi.js.map
|