@plasmicapp/react-web 0.2.246 → 0.2.248
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 +6 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/plume/select/select-option-group.d.ts +3 -3
- package/dist/plume/triggered-overlay/triggered-overlay.d.ts +0 -1
- package/dist/react-web.esm.js.map +1 -1
- package/package.json +4 -4
- package/skinny/dist/plume/select/index.js.map +1 -1
- package/skinny/dist/plume/select/select-option-group.d.ts +3 -3
- package/skinny/dist/plume/triggered-overlay/index.js.map +1 -1
- package/skinny/dist/plume/triggered-overlay/triggered-overlay.d.ts +0 -1
package/dist/all.d.ts
CHANGED
|
@@ -11517,6 +11517,10 @@ interface ColorType<P> extends PropTypeBaseDefault<P, string> {
|
|
|
11517
11517
|
* unless you are using a React portal.
|
|
11518
11518
|
*/
|
|
11519
11519
|
keepCssVar?: boolean;
|
|
11520
|
+
/**
|
|
11521
|
+
* Prevent tokens from being selected.
|
|
11522
|
+
*/
|
|
11523
|
+
disableTokens?: boolean;
|
|
11520
11524
|
}
|
|
11521
11525
|
interface DateStringType<P> extends PropTypeBaseDefault<P, string> {
|
|
11522
11526
|
type: "dateString";
|
|
@@ -13244,8 +13248,8 @@ declare function useSelectOption<P extends BaseSelectOptionProps, C extends AnyP
|
|
|
13244
13248
|
interface BaseSelectOptionGroupProps extends SectionLikeProps, StyleProps {
|
|
13245
13249
|
}
|
|
13246
13250
|
interface SelectOptionGroupConfig<C extends AnyPlasmicClass> {
|
|
13247
|
-
noTitleVariant: PlasmicClassVariants<C
|
|
13248
|
-
isFirstVariant: PlasmicClassVariants<C
|
|
13251
|
+
noTitleVariant: VariantDef<PlasmicClassVariants<C>>;
|
|
13252
|
+
isFirstVariant: VariantDef<PlasmicClassVariants<C>>;
|
|
13249
13253
|
optionsSlot: keyof PlasmicClassArgs<C>;
|
|
13250
13254
|
titleSlot: keyof PlasmicClassArgs<C>;
|
|
13251
13255
|
root: keyof PlasmicClassOverrides<C>;
|
|
@@ -13589,7 +13593,6 @@ interface TriggeredOverlayConfig<C extends AnyPlasmicClass> {
|
|
|
13589
13593
|
isPlacedRightVariant?: VariantDef<PlasmicClassVariants<C>>;
|
|
13590
13594
|
contentSlot: keyof PlasmicClassArgs<C>;
|
|
13591
13595
|
root: keyof PlasmicClassOverrides<C>;
|
|
13592
|
-
contentContainer: keyof PlasmicClassOverrides<C>;
|
|
13593
13596
|
}
|
|
13594
13597
|
type TriggeredOverlayRef = React$1.Ref<HTMLElement>;
|
|
13595
13598
|
declare function useTriggeredOverlay<P extends BaseTriggeredOverlayProps, C extends AnyPlasmicClass>(plasmicClass: C, props: P, config: TriggeredOverlayConfig<C>, outerRef?: TriggeredOverlayRef, isDismissable?: boolean): {
|