@20minutes/hela 2.19.1 → 2.20.0
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/atoms/IconButton/IconButton.d.ts +1 -1
- package/dist/components/molecules/Chatbot/Chatbot.d.ts +8 -0
- package/dist/components/molecules/Chatbot/index.d.ts +1 -0
- package/dist/components/molecules/index.d.ts +1 -0
- package/dist/index.es.js +509 -478
- package/dist/index.umd.cjs +1 -1
- package/dist/scss/abstracts/variables/_token-variables.scss +1 -1
- package/dist/scss/abstracts/variables/_z-index.scss +1 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/components/molecules/SocialBar/Chatbot.d.ts +0 -6
|
@@ -12,5 +12,5 @@ export interface IconButtonOptions {
|
|
|
12
12
|
isLoading?: boolean;
|
|
13
13
|
isFloating?: boolean;
|
|
14
14
|
}
|
|
15
|
-
export type IconButtonProps<T extends As = 'button'> = IconButtonOptions & SpacingSystemProps & Omit<AsProps<T>, 'color'>;
|
|
15
|
+
export type IconButtonProps<T extends As = 'button'> = IconButtonOptions & SpacingSystemProps & Omit<AsProps<T>, 'color'> & Record<`data-${string}`, string>;
|
|
16
16
|
export declare const IconButton: import('../../../types').ComponentWithAs<"button", IconButtonProps<"button">>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { BoxProps } from '../..';
|
|
3
|
+
import { LayoutType } from '../../../types';
|
|
4
|
+
export interface ChatbotProps extends BoxProps {
|
|
5
|
+
layout: LayoutType;
|
|
6
|
+
children?: React.ReactNode;
|
|
7
|
+
}
|
|
8
|
+
export declare const Chatbot: React.FC<ChatbotProps>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Chatbot';
|