@elliemae/ds-chat-floating-button 3.14.0-next.16 → 3.14.0-next.17

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.
@@ -0,0 +1 @@
1
+ export declare const DSChatFloatingButtonName = "DSChatFloatingButton";
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ import type { FloatingButtonProps } from './react-desc-prop-types';
3
+ declare const FloatingButton: React.ComponentType<FloatingButtonProps>;
4
+ declare const FloatingButtonWithSchema: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").DocumentedReactComponent<FloatingButtonProps>;
5
+ export { FloatingButton, FloatingButtonWithSchema };
@@ -0,0 +1,2 @@
1
+ export * from './FloatingButton';
2
+ export { StyledFloatingContainer } from './styled';
@@ -0,0 +1,12 @@
1
+ import type React from 'react';
2
+ export interface FloatingButtonProps {
3
+ onClick: () => void;
4
+ onFocus: () => void;
5
+ innerRef: React.RefObject<HTMLButtonElement>;
6
+ }
7
+ export declare const defaultFloatingButton: Partial<FloatingButtonProps>;
8
+ export declare const propsFloatingButton: {
9
+ onClick: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
10
+ onFocus: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
11
+ innerRef: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
12
+ };
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ export declare const StyledFloatingButton: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & object, never>;
3
+ export declare const StyledFloatingContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/dist/types/react-desc-prop-types").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, import("@elliemae/ds-system").Theme, object, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-chat-floating-button",
3
- "version": "3.14.0-next.16",
3
+ "version": "3.14.0-next.17",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Chat Floating Button",
6
6
  "files": [
@@ -47,10 +47,10 @@
47
47
  "typeSafety": true
48
48
  },
49
49
  "dependencies": {
50
- "@elliemae/ds-grid": "3.14.0-next.16",
51
- "@elliemae/ds-icons": "3.14.0-next.16",
52
- "@elliemae/ds-system": "3.14.0-next.16",
53
- "@elliemae/ds-utilities": "3.14.0-next.16"
50
+ "@elliemae/ds-grid": "3.14.0-next.17",
51
+ "@elliemae/ds-icons": "3.14.0-next.17",
52
+ "@elliemae/ds-system": "3.14.0-next.17",
53
+ "@elliemae/ds-utilities": "3.14.0-next.17"
54
54
  },
55
55
  "devDependencies": {
56
56
  "styled-components": "~5.3.6"