plataforma-fundacao-componentes 2.23.31 → 2.23.32
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/components/controlLabel/ControlLabel.d.ts +3 -8
- package/dist/components/controlLabel/ControlLabel.stories.d.ts +1 -0
- package/dist/hooks/useScreenSize/useScreenSize.stories.d.ts +1 -1
- package/dist/index.js +70 -80
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +71 -81
- package/dist/index.modern.js.map +1 -1
- package/dist/utils/HTMLutils.d.ts +1 -0
- package/package.json +1 -1
|
@@ -21,3 +21,4 @@ export declare const dispatchToAllYouTubeVideos: (command: 'pauseVideo' | 'stopV
|
|
|
21
21
|
export declare const dispatchToYoutubeVideo: (command: 'pauseVideo' | 'stopVideo' | 'playVideo', id?: string | undefined) => void;
|
|
22
22
|
export declare const getParentScrollableElements: (anchor?: HTMLElement | null | undefined) => HTMLElement[];
|
|
23
23
|
export declare const getParents: (anchor?: HTMLElement | null | undefined) => HTMLElement[];
|
|
24
|
+
export declare const objectKeysFiltered: <Type>(obj: object, keysToExclude: string[]) => Type;
|