@plasmicapp/react-web 0.2.246 → 0.2.247

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/all.d.ts CHANGED
@@ -13244,8 +13244,8 @@ declare function useSelectOption<P extends BaseSelectOptionProps, C extends AnyP
13244
13244
  interface BaseSelectOptionGroupProps extends SectionLikeProps, StyleProps {
13245
13245
  }
13246
13246
  interface SelectOptionGroupConfig<C extends AnyPlasmicClass> {
13247
- noTitleVariant: PlasmicClassVariants<C>;
13248
- isFirstVariant: PlasmicClassVariants<C>;
13247
+ noTitleVariant: VariantDef<PlasmicClassVariants<C>>;
13248
+ isFirstVariant: VariantDef<PlasmicClassVariants<C>>;
13249
13249
  optionsSlot: keyof PlasmicClassArgs<C>;
13250
13250
  titleSlot: keyof PlasmicClassArgs<C>;
13251
13251
  root: keyof PlasmicClassOverrides<C>;
@@ -13589,7 +13589,6 @@ interface TriggeredOverlayConfig<C extends AnyPlasmicClass> {
13589
13589
  isPlacedRightVariant?: VariantDef<PlasmicClassVariants<C>>;
13590
13590
  contentSlot: keyof PlasmicClassArgs<C>;
13591
13591
  root: keyof PlasmicClassOverrides<C>;
13592
- contentContainer: keyof PlasmicClassOverrides<C>;
13593
13592
  }
13594
13593
  type TriggeredOverlayRef = React$1.Ref<HTMLElement>;
13595
13594
  declare function useTriggeredOverlay<P extends BaseTriggeredOverlayProps, C extends AnyPlasmicClass>(plasmicClass: C, props: P, config: TriggeredOverlayConfig<C>, outerRef?: TriggeredOverlayRef, isDismissable?: boolean): {