@jsenv/navi 0.12.25 → 0.12.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.
@@ -11092,7 +11092,8 @@ const initPseudoStyles = (
11092
11092
  for (const pseudoClass of pseudoClasses) {
11093
11093
  const pseudoClassDefinition = PSEUDO_CLASSES[pseudoClass];
11094
11094
  if (!pseudoClassDefinition) {
11095
- throw new Error(`Unknown pseudo class: ${pseudoClass}`);
11095
+ console.warn(`Unknown pseudo class: ${pseudoClass}`);
11096
+ continue;
11096
11097
  }
11097
11098
  const { setup } = pseudoClassDefinition;
11098
11099
  if (setup) {
@@ -22249,7 +22250,7 @@ const DialogLayout = ({
22249
22250
  }) => {
22250
22251
  return jsx(Box, {
22251
22252
  baseClassName: "navi_dialog_layout",
22252
- CSSVars: DialogLayoutStyleCSSVars,
22253
+ styleCSSVars: DialogLayoutStyleCSSVars,
22253
22254
  visualSelector: ".navi_dialog_content",
22254
22255
  ...props,
22255
22256
  children: jsx(Box, {