@fluentui/react-utilities 9.0.0-rc.8 → 9.0.0-rc.9
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/CHANGELOG.json +16 -1
- package/CHANGELOG.md +11 -2
- package/{lib → dist}/tsdoc-metadata.json +0 -0
- package/package.json +2 -3
- package/lib/compose/getSlots.d.ts +0 -30
- package/lib/compose/index.d.ts +0 -3
- package/lib/compose/resolveShorthand.d.ts +0 -16
- package/lib/compose/types.d.ts +0 -161
- package/lib/hooks/index.d.ts +0 -16
- package/lib/hooks/useBoolean.d.ts +0 -17
- package/lib/hooks/useConst.d.ts +0 -12
- package/lib/hooks/useControllableState.d.ts +0 -31
- package/lib/hooks/useEventCallback.d.ts +0 -13
- package/lib/hooks/useFirstMount.d.ts +0 -11
- package/lib/hooks/useForceUpdate.d.ts +0 -4
- package/lib/hooks/useId.d.ts +0 -15
- package/lib/hooks/useIsomorphicLayoutEffect.d.ts +0 -11
- package/lib/hooks/useMergedEventCallbacks.d.ts +0 -18
- package/lib/hooks/useMergedRefs.d.ts +0 -13
- package/lib/hooks/useMount.d.ts +0 -6
- package/lib/hooks/useOnClickOutside.d.ts +0 -29
- package/lib/hooks/useOnScrollOutside.d.ts +0 -5
- package/lib/hooks/usePrevious.d.ts +0 -1
- package/lib/hooks/useTimeout.d.ts +0 -8
- package/lib/hooks/useUnmount.d.ts +0 -6
- package/lib/index.d.ts +0 -8
- package/lib/ssr/SSRContext.d.ts +0 -33
- package/lib/ssr/canUseDOM.d.ts +0 -4
- package/lib/ssr/index.d.ts +0 -2
- package/lib/utils/applyTriggerPropsToChildren.d.ts +0 -5
- package/lib/utils/clamp.d.ts +0 -8
- package/lib/utils/getNativeElementProps.d.ts +0 -31
- package/lib/utils/getRTLSafeKey.d.ts +0 -4
- package/lib/utils/getReactCallbackName.d.ts +0 -25
- package/lib/utils/getTriggerChild.d.ts +0 -22
- package/lib/utils/index.d.ts +0 -9
- package/lib/utils/isFluentTrigger.d.ts +0 -22
- package/lib/utils/omit.d.ts +0 -14
- package/lib/utils/properties.d.ts +0 -160
- package/lib/utils/shouldPreventDefaultOnKeyDown.d.ts +0 -7
- package/lib-commonjs/compose/getSlots.d.ts +0 -30
- package/lib-commonjs/compose/index.d.ts +0 -3
- package/lib-commonjs/compose/resolveShorthand.d.ts +0 -16
- package/lib-commonjs/compose/types.d.ts +0 -161
- package/lib-commonjs/hooks/index.d.ts +0 -16
- package/lib-commonjs/hooks/useBoolean.d.ts +0 -17
- package/lib-commonjs/hooks/useConst.d.ts +0 -12
- package/lib-commonjs/hooks/useControllableState.d.ts +0 -31
- package/lib-commonjs/hooks/useEventCallback.d.ts +0 -13
- package/lib-commonjs/hooks/useFirstMount.d.ts +0 -11
- package/lib-commonjs/hooks/useForceUpdate.d.ts +0 -4
- package/lib-commonjs/hooks/useId.d.ts +0 -15
- package/lib-commonjs/hooks/useIsomorphicLayoutEffect.d.ts +0 -11
- package/lib-commonjs/hooks/useMergedEventCallbacks.d.ts +0 -18
- package/lib-commonjs/hooks/useMergedRefs.d.ts +0 -13
- package/lib-commonjs/hooks/useMount.d.ts +0 -6
- package/lib-commonjs/hooks/useOnClickOutside.d.ts +0 -29
- package/lib-commonjs/hooks/useOnScrollOutside.d.ts +0 -5
- package/lib-commonjs/hooks/usePrevious.d.ts +0 -1
- package/lib-commonjs/hooks/useTimeout.d.ts +0 -8
- package/lib-commonjs/hooks/useUnmount.d.ts +0 -6
- package/lib-commonjs/index.d.ts +0 -8
- package/lib-commonjs/ssr/SSRContext.d.ts +0 -33
- package/lib-commonjs/ssr/canUseDOM.d.ts +0 -4
- package/lib-commonjs/ssr/index.d.ts +0 -2
- package/lib-commonjs/utils/applyTriggerPropsToChildren.d.ts +0 -5
- package/lib-commonjs/utils/clamp.d.ts +0 -8
- package/lib-commonjs/utils/getNativeElementProps.d.ts +0 -31
- package/lib-commonjs/utils/getRTLSafeKey.d.ts +0 -4
- package/lib-commonjs/utils/getReactCallbackName.d.ts +0 -25
- package/lib-commonjs/utils/getTriggerChild.d.ts +0 -22
- package/lib-commonjs/utils/index.d.ts +0 -9
- package/lib-commonjs/utils/isFluentTrigger.d.ts +0 -22
- package/lib-commonjs/utils/omit.d.ts +0 -14
- package/lib-commonjs/utils/properties.d.ts +0 -160
- package/lib-commonjs/utils/shouldPreventDefaultOnKeyDown.d.ts +0 -7
@@ -1,29 +0,0 @@
|
|
1
|
-
import * as React from 'react';
|
2
|
-
export declare type UseOnClickOrScrollOutsideOptions = {
|
3
|
-
/**
|
4
|
-
* The element to listen for the click event
|
5
|
-
*/
|
6
|
-
element: Document | undefined;
|
7
|
-
/**
|
8
|
-
* Refs to elements that check if the click is outside
|
9
|
-
*/
|
10
|
-
refs: React.MutableRefObject<HTMLElement | undefined | null>[];
|
11
|
-
/**
|
12
|
-
* By default uses element.contains, but custom contain function can be provided
|
13
|
-
* @param parentRef - provided parent ref
|
14
|
-
* @param child - event target element
|
15
|
-
*/
|
16
|
-
contains?(parent: HTMLElement | null, child: HTMLElement): boolean;
|
17
|
-
/**
|
18
|
-
* Disables event listeners
|
19
|
-
*/
|
20
|
-
disabled?: boolean;
|
21
|
-
/**
|
22
|
-
* Called if the click is outside the element refs
|
23
|
-
*/
|
24
|
-
callback: (ev: MouseEvent | TouchEvent) => void;
|
25
|
-
};
|
26
|
-
/**
|
27
|
-
* Utility to perform checks where a click/touch event was made outside a component
|
28
|
-
*/
|
29
|
-
export declare const useOnClickOutside: (options: UseOnClickOrScrollOutsideOptions) => void;
|
@@ -1 +0,0 @@
|
|
1
|
-
export declare const usePrevious: <ValueType = unknown>(value: ValueType) => ValueType | null;
|
@@ -1,8 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* Helper to manage a browser timeout.
|
3
|
-
* Ensures that the timeout isn't set multiple times at once,
|
4
|
-
* and is cleaned up when the component is unloaded.
|
5
|
-
*
|
6
|
-
* @returns A pair of [setTimeout, clearTimeout] that are stable between renders.
|
7
|
-
*/
|
8
|
-
export declare function useTimeout(): readonly [(fn: () => void, delay: number) => void, () => void];
|
package/lib-commonjs/index.d.ts
DELETED
@@ -1,8 +0,0 @@
|
|
1
|
-
export { getSlots, resolveShorthand } from './compose/index';
|
2
|
-
export type { AsIntrinsicElement, ComponentProps, ComponentState, ExtractSlotProps, ForwardRefComponent, IsSingleton, PropsWithoutRef, ReplaceNullWithUndefined, ResolveShorthandFunction, ResolveShorthandOptions, Slot, Slots, SlotClassNames, SlotPropsRecord, SlotRenderFunction, SlotShorthandValue, UnionToIntersection, UnknownSlotProps, } from './compose/index';
|
3
|
-
export { resetIdsForTests, useBoolean, useConst, useControllableState, useEventCallback, useFirstMount, useForceUpdate, useId, useIsomorphicLayoutEffect, useMergedEventCallbacks, useMergedRefs, useMount, useOnClickOutside, useOnScrollOutside, usePrevious, useTimeout, useUnmount, } from './hooks/index';
|
4
|
-
export type { RefObjectFunction, UseBooleanCallbacks, UseControllableStateOptions, UseOnClickOrScrollOutsideOptions, } from './hooks/index';
|
5
|
-
export { canUseDOM, defaultSSRContextValue, useIsSSR, useSSRContext, SSRContext, SSRProvider } from './ssr/index';
|
6
|
-
export type { SSRContextValue } from './ssr/index';
|
7
|
-
export { anchorProperties, applyTriggerPropsToChildren, audioProperties, baseElementEvents, baseElementProperties, buttonProperties, clamp, colGroupProperties, colProperties, divProperties, fieldsetProperties, formProperties, getNativeElementProps, getNativeProps, getPartitionedNativeProps, getRTLSafeKey, getTriggerChild, htmlElementProperties, iframeProperties, imageProperties, imgProperties, inputProperties, isFluentTrigger, labelProperties, liProperties, olProperties, omit, optionProperties, selectProperties, shouldPreventDefaultOnKeyDown, tableProperties, tdProperties, textAreaProperties, thProperties, trProperties, videoProperties, } from './utils/index';
|
8
|
-
export type { FluentTriggerComponent } from './utils/index';
|
@@ -1,33 +0,0 @@
|
|
1
|
-
import * as React from 'react';
|
2
|
-
/**
|
3
|
-
* To support SSR, the auto incrementing id counter is stored in a context. This allows it to be reset on every request
|
4
|
-
* to ensure the client and server are consistent.
|
5
|
-
*
|
6
|
-
* @internal
|
7
|
-
*/
|
8
|
-
export declare type SSRContextValue = {
|
9
|
-
current: number;
|
10
|
-
};
|
11
|
-
/**
|
12
|
-
* Default context value to use in case there is no SSRProvider. This is fine for client-only apps.
|
13
|
-
*
|
14
|
-
* @internal
|
15
|
-
*/
|
16
|
-
export declare const defaultSSRContextValue: SSRContextValue;
|
17
|
-
export declare const SSRContext: React.Context<SSRContextValue>;
|
18
|
-
/**
|
19
|
-
* @internal
|
20
|
-
*/
|
21
|
-
export declare function useSSRContext(): SSRContextValue;
|
22
|
-
/**
|
23
|
-
* When using SSR with Fluent UI, applications must be wrapped in an SSRProvider. This ensures that auto generated ids
|
24
|
-
* are consistent between the client and server.
|
25
|
-
*
|
26
|
-
* @public
|
27
|
-
*/
|
28
|
-
export declare const SSRProvider: React.FC;
|
29
|
-
/**
|
30
|
-
* Returns whether the component is currently being server side rendered or hydrated on the client. Can be used to delay
|
31
|
-
* browser-specific rendering until after hydration. May cause re-renders on a client when is used within SSRProvider.
|
32
|
-
*/
|
33
|
-
export declare function useIsSSR(): boolean;
|
@@ -1,5 +0,0 @@
|
|
1
|
-
import * as React from 'react';
|
2
|
-
/**
|
3
|
-
* Apply the trigger props to the children, either by calling the render function, or cloning with the new props.
|
4
|
-
*/
|
5
|
-
export declare const applyTriggerPropsToChildren: <TTriggerProps>(children: React.ReactElement<any, string | React.JSXElementConstructor<any>> | ((props: TTriggerProps) => React.ReactElement | null) | null | undefined, triggerProps: TTriggerProps) => React.ReactElement | null;
|
@@ -1,8 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* Clamps `value` to a number between the min and max.
|
3
|
-
*
|
4
|
-
* @param value - the value to be clamped
|
5
|
-
* @param min - the lowest valid value
|
6
|
-
* @param max - the highest valid value
|
7
|
-
*/
|
8
|
-
export declare const clamp: (value: number, min: number, max: number) => number;
|
@@ -1,31 +0,0 @@
|
|
1
|
-
import * as React from 'react';
|
2
|
-
/**
|
3
|
-
* Given an element tagname and user props, filters the props to only allowed props for the given
|
4
|
-
* element type.
|
5
|
-
* @param tagName - Tag name (e.g. "div")
|
6
|
-
* @param props - Props object
|
7
|
-
* @param excludedPropNames - List of props to disallow
|
8
|
-
*/
|
9
|
-
export declare function getNativeElementProps<TAttributes extends React.HTMLAttributes<any>>(tagName: string, props: {}, excludedPropNames?: string[]): TAttributes;
|
10
|
-
/**
|
11
|
-
* Splits the native props into ones that go to the `root` slot, and ones that go to the primary slot.
|
12
|
-
*
|
13
|
-
* This function is only for use with components that have a primary slot other than `root`.
|
14
|
-
* Most components should use {@link getNativeElementProps} for their root slot if it is the primary slot.
|
15
|
-
*
|
16
|
-
* @returns An object containing the native props for the `root` and primary slots.
|
17
|
-
*/
|
18
|
-
export declare const getPartitionedNativeProps: <Props extends Pick<React.HTMLAttributes<HTMLElement>, "style" | "className">, ExcludedPropKeys extends Extract<keyof Props, string> = never>({ primarySlotTagName, props, excludedPropNames, }: {
|
19
|
-
/** The primary slot's element type (e.g. 'div') */
|
20
|
-
primarySlotTagName: keyof JSX.IntrinsicElements;
|
21
|
-
/** The component's props object */
|
22
|
-
props: Props;
|
23
|
-
/** List of native props to exclude from the returned value */
|
24
|
-
excludedPropNames?: ExcludedPropKeys[] | undefined;
|
25
|
-
}) => {
|
26
|
-
root: {
|
27
|
-
style: React.CSSProperties | undefined;
|
28
|
-
className: string | undefined;
|
29
|
-
};
|
30
|
-
primary: Omit<Props, ExcludedPropKeys>;
|
31
|
-
};
|
@@ -1,25 +0,0 @@
|
|
1
|
-
import * as React from 'react';
|
2
|
-
interface ReactSyntheticEvent extends React.SyntheticEvent<unknown> {
|
3
|
-
_reactName?: string;
|
4
|
-
dispatchConfig?: {
|
5
|
-
registrationName: string;
|
6
|
-
phasedRegistrationNames: {
|
7
|
-
bubbled: string;
|
8
|
-
captured: string;
|
9
|
-
};
|
10
|
-
};
|
11
|
-
}
|
12
|
-
declare type NonUndefined<A> = A extends undefined ? never : A;
|
13
|
-
declare type FunctionKeys<T extends object> = {
|
14
|
-
[K in keyof T]-?: NonUndefined<T[K]> extends Function ? K : never;
|
15
|
-
}[keyof T];
|
16
|
-
export declare type ReactCallbackName = FunctionKeys<React.DOMAttributes<unknown>>;
|
17
|
-
/**
|
18
|
-
* React.SyntheticEvent contains name of a callback that should be fired, this function returns it.
|
19
|
-
*
|
20
|
-
* Ideally, it should also distinguish regular and "capture" callbacks, but it's possible only with React 17 as
|
21
|
-
* ".eventPhase" there has proper value, see https://github.com/facebook/react/pull/19244. In React 16 all events
|
22
|
-
* are handled in bubble phase.
|
23
|
-
*/
|
24
|
-
export declare function getReactCallbackName(event: ReactSyntheticEvent): ReactCallbackName | undefined;
|
25
|
-
export {};
|
@@ -1,22 +0,0 @@
|
|
1
|
-
import * as React from 'react';
|
2
|
-
/**
|
3
|
-
* Gets the trigger element of a FluentTriggerComponent (such as Tooltip or MenuTrigger).
|
4
|
-
*
|
5
|
-
* In the case where the immediate child is itself a FluentTriggerComponent and/or React Fragment,
|
6
|
-
* it returns the first descendant that is _not_ a FluentTriggerComponent or Fragment.
|
7
|
-
* This allows multiple triggers to be stacked, and still apply their props to the actual trigger element.
|
8
|
-
*
|
9
|
-
* For example, the following returns `<div id="child" />`:
|
10
|
-
* ```jsx
|
11
|
-
* getTriggerChild(
|
12
|
-
* <Tooltip>
|
13
|
-
* <MenuTrigger>
|
14
|
-
* <div id="child" />
|
15
|
-
* </MenuTrigger>
|
16
|
-
* </Tooltip>
|
17
|
-
* );
|
18
|
-
* ```
|
19
|
-
*/
|
20
|
-
export declare const getTriggerChild: (children: React.ReactNode) => React.ReactElement & {
|
21
|
-
ref?: React.Ref<unknown>;
|
22
|
-
};
|
@@ -1,9 +0,0 @@
|
|
1
|
-
export * from './applyTriggerPropsToChildren';
|
2
|
-
export * from './clamp';
|
3
|
-
export * from './getNativeElementProps';
|
4
|
-
export * from './getRTLSafeKey';
|
5
|
-
export * from './getTriggerChild';
|
6
|
-
export * from './isFluentTrigger';
|
7
|
-
export * from './omit';
|
8
|
-
export * from './properties';
|
9
|
-
export * from './shouldPreventDefaultOnKeyDown';
|
@@ -1,22 +0,0 @@
|
|
1
|
-
import * as React from 'react';
|
2
|
-
/**
|
3
|
-
* Allows a component to be tagged as a FluentUI trigger component.
|
4
|
-
*
|
5
|
-
* Triggers are special-case components: they attach event listeners and other props on their child,
|
6
|
-
* and use them to trigger another component to show. Examples include `MenuTrigger` and `Tooltip`.
|
7
|
-
*
|
8
|
-
* A component can be tagged as a trigger as follows:
|
9
|
-
* ```ts
|
10
|
-
* const MyComponent: React.FC<MyComponentProps> & FluentTriggerComponent = ...;
|
11
|
-
*
|
12
|
-
* MyComponent.isFluentTriggerComponent = true; // MUST also set this to true
|
13
|
-
* ```
|
14
|
-
*/
|
15
|
-
export declare type FluentTriggerComponent = {
|
16
|
-
isFluentTriggerComponent?: boolean;
|
17
|
-
};
|
18
|
-
/**
|
19
|
-
* Checks if a given element is a FluentUI trigger (e.g. `MenuTrigger` or `Tooltip`).
|
20
|
-
* See the {@link FluentTriggerComponent} type for more info.
|
21
|
-
*/
|
22
|
-
export declare const isFluentTrigger: (element: React.ReactElement) => boolean | undefined;
|
@@ -1,14 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* Tiny helper to do the minimal amount of work in duplicating an object but omitting some
|
3
|
-
* props. This ends up faster than using object ...rest or reduce to filter.
|
4
|
-
*
|
5
|
-
* This behaves very much like filteredAssign, but does not merge many objects together,
|
6
|
-
* uses an exclusion object map, and avoids spreads all for optimal performance.
|
7
|
-
*
|
8
|
-
* See perf test for background:
|
9
|
-
* https://jsperf.com/omit-vs-rest-vs-reduce/1
|
10
|
-
*
|
11
|
-
* @param obj - The object to clone
|
12
|
-
* @param exclusions - The array of keys to exclude
|
13
|
-
*/
|
14
|
-
export declare function omit<TObj extends Record<string, any>, Exclusions extends (keyof TObj)[]>(obj: TObj, exclusions: Exclusions): Omit<TObj, Exclusions[number]>;
|
@@ -1,160 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* An array of events that are allowed on every html element type.
|
3
|
-
*
|
4
|
-
* @public
|
5
|
-
*/
|
6
|
-
export declare const baseElementEvents: Record<string, number>;
|
7
|
-
/**
|
8
|
-
* An array of element attributes which are allowed on every html element type.
|
9
|
-
*
|
10
|
-
* @public
|
11
|
-
*/
|
12
|
-
export declare const baseElementProperties: Record<string, number>;
|
13
|
-
/**
|
14
|
-
* An array of HTML element properties and events.
|
15
|
-
*
|
16
|
-
* @public
|
17
|
-
*/
|
18
|
-
export declare const htmlElementProperties: Record<string, number>;
|
19
|
-
/**
|
20
|
-
* An array of LABEL tag properties and events.
|
21
|
-
*
|
22
|
-
* @public
|
23
|
-
*/
|
24
|
-
export declare const labelProperties: Record<string, number>;
|
25
|
-
/**
|
26
|
-
* An array of AUDIO tag properties and events.
|
27
|
-
|
28
|
-
* @public
|
29
|
-
*/
|
30
|
-
export declare const audioProperties: Record<string, number>;
|
31
|
-
/**
|
32
|
-
* An array of VIDEO tag properties and events.
|
33
|
-
*
|
34
|
-
* @public
|
35
|
-
*/
|
36
|
-
export declare const videoProperties: Record<string, number>;
|
37
|
-
/**
|
38
|
-
* An array of OL tag properties and events.
|
39
|
-
*
|
40
|
-
* @public
|
41
|
-
*/
|
42
|
-
export declare const olProperties: Record<string, number>;
|
43
|
-
/**
|
44
|
-
* An array of LI tag properties and events.
|
45
|
-
*
|
46
|
-
* @public
|
47
|
-
*/
|
48
|
-
export declare const liProperties: Record<string, number>;
|
49
|
-
/**
|
50
|
-
* An array of A tag properties and events.
|
51
|
-
*
|
52
|
-
* @public
|
53
|
-
*/
|
54
|
-
export declare const anchorProperties: Record<string, number>;
|
55
|
-
/**
|
56
|
-
* An array of TIME tag properties and events.
|
57
|
-
*
|
58
|
-
* @public
|
59
|
-
*/
|
60
|
-
export declare const timeProperties: Record<string, number>;
|
61
|
-
/**
|
62
|
-
* An array of BUTTON tag properties and events.
|
63
|
-
*
|
64
|
-
* @public
|
65
|
-
*/
|
66
|
-
export declare const buttonProperties: Record<string, number>;
|
67
|
-
/**
|
68
|
-
* An array of INPUT tag properties and events.
|
69
|
-
*
|
70
|
-
* @public
|
71
|
-
*/
|
72
|
-
export declare const inputProperties: Record<string, number>;
|
73
|
-
/**
|
74
|
-
* An array of TEXTAREA tag properties and events.
|
75
|
-
*
|
76
|
-
* @public
|
77
|
-
*/
|
78
|
-
export declare const textAreaProperties: Record<string, number>;
|
79
|
-
/**
|
80
|
-
* An array of SELECT tag properties and events.
|
81
|
-
*
|
82
|
-
* @public
|
83
|
-
*/
|
84
|
-
export declare const selectProperties: Record<string, number>;
|
85
|
-
export declare const optionProperties: Record<string, number>;
|
86
|
-
/**
|
87
|
-
* An array of TABLE tag properties and events.
|
88
|
-
*
|
89
|
-
* @public
|
90
|
-
*/
|
91
|
-
export declare const tableProperties: Record<string, number>;
|
92
|
-
/**
|
93
|
-
* An array of TR tag properties and events.
|
94
|
-
*
|
95
|
-
* @public
|
96
|
-
*/
|
97
|
-
export declare const trProperties: Record<string, number>;
|
98
|
-
/**
|
99
|
-
* An array of TH tag properties and events.
|
100
|
-
*
|
101
|
-
* @public
|
102
|
-
*/
|
103
|
-
export declare const thProperties: Record<string, number>;
|
104
|
-
/**
|
105
|
-
* An array of TD tag properties and events.
|
106
|
-
*
|
107
|
-
* @public
|
108
|
-
*/
|
109
|
-
export declare const tdProperties: Record<string, number>;
|
110
|
-
export declare const colGroupProperties: Record<string, number>;
|
111
|
-
export declare const colProperties: Record<string, number>;
|
112
|
-
/**
|
113
|
-
* An array of FIELDSET tag properties and events.
|
114
|
-
*
|
115
|
-
* @public
|
116
|
-
*/
|
117
|
-
export declare const fieldsetProperties: Record<string, number>;
|
118
|
-
/**
|
119
|
-
* An array of FORM tag properties and events.
|
120
|
-
*
|
121
|
-
* @public
|
122
|
-
*/
|
123
|
-
export declare const formProperties: Record<string, number>;
|
124
|
-
/**
|
125
|
-
* An array of IFRAME tag properties and events.
|
126
|
-
*
|
127
|
-
* @public
|
128
|
-
*/
|
129
|
-
export declare const iframeProperties: Record<string, number>;
|
130
|
-
/**
|
131
|
-
* An array of IMAGE tag properties and events.
|
132
|
-
*
|
133
|
-
* @public
|
134
|
-
*/
|
135
|
-
export declare const imgProperties: Record<string, number>;
|
136
|
-
/**
|
137
|
-
* @deprecated Use imgProperties for img elements.
|
138
|
-
*/
|
139
|
-
export declare const imageProperties: Record<string, number>;
|
140
|
-
/**
|
141
|
-
* An array of DIV tag properties and events.
|
142
|
-
*
|
143
|
-
* @public
|
144
|
-
*/
|
145
|
-
export declare const divProperties: Record<string, number>;
|
146
|
-
/**
|
147
|
-
* Gets native supported props for an html element provided the allowance set. Use one of the property
|
148
|
-
* sets defined (divProperties, buttonPropertes, etc) to filter out supported properties from a given
|
149
|
-
* props set. Note that all data- and aria- prefixed attributes will be allowed.
|
150
|
-
* NOTE: getNativeProps should always be applied first when adding props to a react component. The
|
151
|
-
* non-native props should be applied second. This will prevent getNativeProps from overriding your custom props.
|
152
|
-
* For example, if props passed to getNativeProps has an onClick function and getNativeProps is added to
|
153
|
-
* the component after an onClick function is added, then the getNativeProps onClick will override it.
|
154
|
-
*
|
155
|
-
* @public
|
156
|
-
* @param props - The unfiltered input props
|
157
|
-
* @param allowedPropsNames - The array or record of allowed prop names.
|
158
|
-
* @returns The filtered props
|
159
|
-
*/
|
160
|
-
export declare function getNativeProps<T extends Record<string, any>>(props: Record<string, any>, allowedPropNames: string[] | Record<string, number>, excludedPropNames?: string[]): T;
|
@@ -1,7 +0,0 @@
|
|
1
|
-
import * as React from 'react';
|
2
|
-
/**
|
3
|
-
* Checks if the keyboard event should preventDefault() for Enter and Spacebar keys
|
4
|
-
*
|
5
|
-
* Useful for situations where a keydown needs to be transformed to a click event
|
6
|
-
*/
|
7
|
-
export declare function shouldPreventDefaultOnKeyDown(e: KeyboardEvent | React.KeyboardEvent): boolean;
|