@industry-theme/backlogmd-kanban-panel 1.0.27 → 1.0.28

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.
@@ -49463,8 +49463,7 @@ var createIndustryMarkdownComponents = ({
49463
49463
  style: {
49464
49464
  flex: 1,
49465
49465
  cursor: "pointer",
49466
- textDecoration: isChecked ? "line-through" : "none",
49467
- opacity: isChecked ? 0.6 : 1,
49466
+ color: isChecked ? theme2.colors.textMuted : "inherit",
49468
49467
  lineHeight: theme2.lineHeights.relaxed
49469
49468
  }
49470
49469
  }, labelContent.length > 0 ? labelContent : null)), nestedListElements.length > 0 ? nestedListElements : null);
@@ -50532,6 +50531,7 @@ var IndustryMarkdownSlide = React2__default.memo(function IndustryMarkdownSlide2
50532
50531
  handleRunBashCommand,
50533
50532
  handlePromptCopy,
50534
50533
  enableHtmlPopout = true,
50534
+ autoFocusOnVisible = true,
50535
50535
  searchQuery,
50536
50536
  slideHeaderMarginTopOverride,
50537
50537
  theme: themeOverride,
@@ -50738,11 +50738,11 @@ var IndustryMarkdownSlide = React2__default.memo(function IndustryMarkdownSlide2
50738
50738
  }
50739
50739
  }, [enableKeyboardScrolling, isVisible, slideIndex, scrollConfig]);
50740
50740
  useEffect(() => {
50741
- if (isVisible && slideRef.current) {
50741
+ if (autoFocusOnVisible && isVisible && slideRef.current) {
50742
50742
  console.log("🎯 Auto-focusing slide container");
50743
50743
  slideRef.current.focus();
50744
50744
  }
50745
- }, [isVisible]);
50745
+ }, [autoFocusOnVisible, isVisible]);
50746
50746
  const openPlaceholderModal = (placeholders, promptContent) => {
50747
50747
  if (!handlePromptCopy)
50748
50748
  return;
@@ -52716,6 +52716,7 @@ var DocumentView = ({
52716
52716
  slideIdPrefix = "document",
52717
52717
  enableHtmlPopout = true,
52718
52718
  enableKeyboardScrolling = true,
52719
+ autoFocusOnVisible = true,
52719
52720
  onLinkClick,
52720
52721
  handleRunBashCommand,
52721
52722
  handlePromptCopy,
@@ -52763,6 +52764,7 @@ var DocumentView = ({
52763
52764
  onCheckboxChange,
52764
52765
  enableHtmlPopout,
52765
52766
  enableKeyboardScrolling,
52767
+ autoFocusOnVisible,
52766
52768
  onLinkClick,
52767
52769
  handleRunBashCommand,
52768
52770
  fontSizeScale,
@@ -52799,6 +52801,7 @@ var DocumentView = ({
52799
52801
  onCheckboxChange,
52800
52802
  enableHtmlPopout,
52801
52803
  enableKeyboardScrolling,
52804
+ autoFocusOnVisible,
52802
52805
  onLinkClick,
52803
52806
  handleRunBashCommand,
52804
52807
  fontSizeScale,
@@ -52865,6 +52868,7 @@ var DocumentView = ({
52865
52868
  onCheckboxChange,
52866
52869
  enableHtmlPopout,
52867
52870
  enableKeyboardScrolling,
52871
+ autoFocusOnVisible,
52868
52872
  onLinkClick,
52869
52873
  handleRunBashCommand,
52870
52874
  fontSizeScale,