@jsenv/navi 0.11.13 → 0.11.15

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.
@@ -9842,7 +9842,11 @@ const withPropsStyle = (
9842
9842
  expandX = expand,
9843
9843
  expandY = expand,
9844
9844
  width,
9845
+ minWidth,
9846
+ maxWidth,
9845
9847
  height,
9848
+ minHeight,
9849
+ maxHeight,
9846
9850
 
9847
9851
  // typo props
9848
9852
  textSize,
@@ -10037,6 +10041,12 @@ const withPropsStyle = (
10037
10041
  } else if (width !== undefined) {
10038
10042
  sizeStyles.width = normalizeStyle(width, "width", "css");
10039
10043
  }
10044
+ if (minWidth !== undefined) {
10045
+ sizeStyles.minWidth = normalizeStyle(minWidth, "minWidth", "css");
10046
+ }
10047
+ if (maxWidth !== undefined) {
10048
+ sizeStyles.maxWidth = normalizeStyle(maxWidth, "maxWidth", "css");
10049
+ }
10040
10050
  if (expandY) {
10041
10051
  if (flexDirection === "row") {
10042
10052
  sizeStyles.height = "100%"; // Take full height in row
@@ -10048,6 +10058,12 @@ const withPropsStyle = (
10048
10058
  } else if (height !== undefined) {
10049
10059
  sizeStyles.height = normalizeStyle(height, "height", "css");
10050
10060
  }
10061
+ if (minHeight !== undefined) {
10062
+ sizeStyles.minHeight = normalizeStyle(minHeight, "minHeight", "css");
10063
+ }
10064
+ if (maxHeight !== undefined) {
10065
+ sizeStyles.maxHeight = normalizeStyle(maxHeight, "maxHeight", "css");
10066
+ }
10051
10067
  }
10052
10068
  typo_styles: {
10053
10069
  if (!typo && !hasRemainingConfig) {
@@ -19294,6 +19310,16 @@ const Paragraph = ({
19294
19310
  });
19295
19311
  };
19296
19312
 
19313
+ const Svg = props => {
19314
+ const [remainingProps, innerStyle] = withPropsStyle(props, {
19315
+ spacing: true
19316
+ });
19317
+ return jsx("svg", {
19318
+ style: innerStyle,
19319
+ ...remainingProps
19320
+ });
19321
+ };
19322
+
19297
19323
  installImportMetaCss(import.meta);import.meta.css = /* css */`
19298
19324
  .text_and_count {
19299
19325
  display: flex;
@@ -19540,5 +19566,5 @@ const useDependenciesDiff = (inputs) => {
19540
19566
  return diffRef.current;
19541
19567
  };
19542
19568
 
19543
- export { ActionRenderer, ActiveKeyboardShortcuts, Button, Checkbox, CheckboxList, Col, Colgroup, Details, Editable, ErrorBoundaryContext, FlexColumn, FlexItem, FlexRow, FontSizedSvg, Form, Icon, IconAndText, Image, Input, Label, Link, LinkWithIcon, Overflow, Paragraph, Radio, RadioList, Route, RouteLink, Routes, RowNumberCol, RowNumberTableCell, SINGLE_SPACE_CONSTRAINT, SVGMaskOverlay, Select, SelectionContext, Spacing, SummaryMarker, Tab, TabList, Table, TableCell, Tbody, Text, TextAndCount, Thead, Title, Tr, UITransition, actionIntegratedVia, addCustomMessage, createAction, createSelectionKeyboardShortcuts, createUniqueValueConstraint, enableDebugActions, enableDebugOnDocumentLoading, forwardActionRequested, goBack, goForward, goTo, installCustomConstraintValidation, isCellSelected, isColumnSelected, isRowSelected, openCallout, rawUrlPart, reload, removeCustomMessage, rerunActions, resource, setBaseUrl, setupRoutes, stopLoad, stringifyTableSelectionValue, updateActions, useActionData, useActionStatus, useCellsAndColumns, useDependenciesDiff, useDocumentState, useDocumentUrl, useEditionController, useFocusGroup, useKeyboardShortcuts, useNavState, useRouteStatus, useRunOnMount, useSelectableElement, useSelectionController, useSignalSync, useStateArray, valueInLocalStorage };
19569
+ export { ActionRenderer, ActiveKeyboardShortcuts, Button, Checkbox, CheckboxList, Col, Colgroup, Details, Editable, ErrorBoundaryContext, FlexColumn, FlexItem, FlexRow, FontSizedSvg, Form, Icon, IconAndText, Image, Input, Label, Link, LinkWithIcon, Overflow, Paragraph, Radio, RadioList, Route, RouteLink, Routes, RowNumberCol, RowNumberTableCell, SINGLE_SPACE_CONSTRAINT, SVGMaskOverlay, Select, SelectionContext, Spacing, SummaryMarker, Svg, Tab, TabList, Table, TableCell, Tbody, Text, TextAndCount, Thead, Title, Tr, UITransition, actionIntegratedVia, addCustomMessage, createAction, createSelectionKeyboardShortcuts, createUniqueValueConstraint, enableDebugActions, enableDebugOnDocumentLoading, forwardActionRequested, goBack, goForward, goTo, installCustomConstraintValidation, isCellSelected, isColumnSelected, isRowSelected, openCallout, rawUrlPart, reload, removeCustomMessage, rerunActions, resource, setBaseUrl, setupRoutes, stopLoad, stringifyTableSelectionValue, updateActions, useActionData, useActionStatus, useCellsAndColumns, useDependenciesDiff, useDocumentState, useDocumentUrl, useEditionController, useFocusGroup, useKeyboardShortcuts, useNavState, useRouteStatus, useRunOnMount, useSelectableElement, useSelectionController, useSignalSync, useStateArray, valueInLocalStorage };
19544
19570
  //# sourceMappingURL=jsenv_navi.js.map