@bigbinary/neeto-molecules 3.9.10 → 3.9.11
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/package.json +3 -1
- package/types/AuditLogs.d.ts +5 -3
- package/types/Breadcrumbs.d.ts +5 -3
- package/types/BrowserSupport.d.ts +5 -3
- package/types/Builder.d.ts +5 -7
- package/types/CalendarView.d.ts +8 -6
- package/types/Codeblock.d.ts +7 -5
- package/types/Columns.d.ts +8 -6
- package/types/ConfigurePageSidebar.d.ts +5 -3
- package/types/ConfirmationModal.d.ts +5 -3
- package/types/Container.d.ts +5 -3
- package/types/CopyToClipboardButton.d.ts +6 -4
- package/types/Currency.d.ts +7 -5
- package/types/CustomDomain.d.ts +6 -4
- package/types/CustomDomainDashboard.d.ts +6 -4
- package/types/DateFormat.d.ts +5 -9
- package/types/DateRangeFilter.d.ts +7 -5
- package/types/DeleteArchiveModal.d.ts +5 -3
- package/types/DeviceIncompatibilityMessage.d.ts +5 -3
- package/types/DocumentEditor.d.ts +6 -4
- package/types/DownloadMobileAppCallout.d.ts +5 -3
- package/types/DynamicVariables.d.ts +6 -4
- package/types/EmailForm.d.ts +7 -5
- package/types/EmailFormProvider.d.ts +3 -2
- package/types/EmailPreview.d.ts +5 -3
- package/types/EmojiPicker.d.ts +6 -4
- package/types/EmojiReactions.d.ts +5 -3
- package/types/ErrorPage.d.ts +6 -4
- package/types/FileUpload.d.ts +8 -6
- package/types/FloatingActionMenu.d.ts +6 -4
- package/types/GoogleFontPicker.d.ts +27 -20
- package/types/Header.d.ts +9 -6
- package/types/HelpPopover.d.ts +7 -5
- package/types/IconPicker.d.ts +5 -3
- package/types/ImageWithFallback.d.ts +5 -3
- package/types/InlineInput.d.ts +9 -7
- package/types/Insights.d.ts +5 -4
- package/types/IntegrationCard.d.ts +7 -5
- package/types/IpRestriction.d.ts +5 -3
- package/types/KeyboardShortcuts.d.ts +6 -4
- package/types/LoginPage.d.ts +5 -3
- package/types/MadeWith.d.ts +5 -3
- package/types/MenuBar.d.ts +7 -5
- package/types/Metadata.d.ts +5 -3
- package/types/MobilePreviewHeader.d.ts +5 -3
- package/types/MoreDropdown.d.ts +6 -4
- package/types/NavigationHeader.d.ts +7 -6
- package/types/NeetoWidget.d.ts +5 -3
- package/types/Onboarding.d.ts +5 -3
- package/types/OptionFields.d.ts +4 -2
- package/types/PageLoader.d.ts +5 -3
- package/types/PhoneNumber.d.ts +15 -13
- package/types/ProductEmbed.d.ts +5 -3
- package/types/PublishBlock.d.ts +6 -4
- package/types/Rename.d.ts +6 -4
- package/types/ResponsiveDevicePicker.d.ts +5 -3
- package/types/Schedule.d.ts +5 -3
- package/types/Scrollable.d.ts +6 -4
- package/types/Search.d.ts +6 -4
- package/types/SendToFields.d.ts +6 -4
- package/types/SessionEnvironment.d.ts +8 -5
- package/types/Settings.d.ts +5 -4
- package/types/ShareRecordingPane.d.ts +4 -2
- package/types/ShareViaEmail.d.ts +5 -3
- package/types/ShareViaLink.d.ts +5 -4
- package/types/Sidebar.d.ts +7 -5
- package/types/StatusDropdown.d.ts +5 -3
- package/types/StickyRibbonsContainer.d.ts +5 -3
- package/types/SubHeader.d.ts +7 -5
- package/types/SuffixedInput.d.ts +5 -3
- package/types/TableWrapper.d.ts +5 -3
- package/types/Taxonomy.d.ts +6 -4
- package/types/TimeFormat.d.ts +5 -9
- package/types/TimezoneMismatchModal.d.ts +5 -3
- package/types/ToggleFeatureCard.d.ts +7 -5
package/types/FileUpload.d.ts
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
2
3
|
interface FileObject {
|
|
3
4
|
url: string;
|
|
4
5
|
size?: number;
|
|
5
6
|
name: string;
|
|
6
7
|
}
|
|
7
|
-
|
|
8
|
+
interface FileUploadProps {
|
|
8
9
|
className?: string;
|
|
9
10
|
allowedFileTypes?: string;
|
|
10
11
|
multipleFilesAllowed?: boolean;
|
|
@@ -18,10 +19,9 @@ export interface FileUploadProps {
|
|
|
18
19
|
setError?: (error: string) => void;
|
|
19
20
|
setTouched?: (touched: boolean) => void;
|
|
20
21
|
}
|
|
21
|
-
|
|
22
|
+
interface FormikFileUploadProps extends FileUploadProps {
|
|
22
23
|
name: string;
|
|
23
24
|
}
|
|
24
|
-
export
|
|
25
25
|
/**
|
|
26
26
|
*
|
|
27
27
|
* The FileUpload component provides an interface for uploading files with
|
|
@@ -83,5 +83,7 @@ export
|
|
|
83
83
|
* );
|
|
84
84
|
* @endexample
|
|
85
85
|
*/
|
|
86
|
-
const FileUpload: React.FC<FileUploadProps>;
|
|
87
|
-
|
|
86
|
+
declare const FileUpload: React.FC<FileUploadProps>;
|
|
87
|
+
declare const FormikFileUpload: React.FC<FormikFileUploadProps>;
|
|
88
|
+
|
|
89
|
+
export { FileUpload, type FileUploadProps, FormikFileUpload, type FormikFileUploadProps };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { AvatarProps } from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { AvatarProps } from '@bigbinary/neetoui';
|
|
3
|
+
|
|
3
4
|
type LinkType = {
|
|
4
5
|
onClick?: React.MouseEventHandler<HTMLButtonElement>;
|
|
5
6
|
label?: React.ReactNode;
|
|
@@ -53,5 +54,6 @@ type FloatingActionMenuProps = {
|
|
|
53
54
|
* };
|
|
54
55
|
* @endexample
|
|
55
56
|
*/
|
|
56
|
-
const FloatingActionMenu: React.FC<FloatingActionMenuProps>;
|
|
57
|
-
|
|
57
|
+
declare const FloatingActionMenu: React.FC<FloatingActionMenuProps>;
|
|
58
|
+
|
|
59
|
+
export { FloatingActionMenu as default };
|
|
@@ -1,30 +1,36 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { SelectProps } from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { SelectProps } from '@bigbinary/neetoui';
|
|
3
|
+
|
|
3
4
|
declare type Category = "sans-serif" | "serif" | "display" | "handwriting" | "monospace";
|
|
4
5
|
declare type Script = "arabic" | "bengali" | "chinese-simplified" | "chinese-traditional" | "cyrillic" | "cyrillic-ext" | "devanagari" | "greek" | "greek-ext" | "gujarati" | "gurmukhi" | "hebrew" | "japanese" | "kannada" | "khmer" | "korean" | "latin" | "latin-ext" | "malayalam" | "myanmar" | "oriya" | "sinhala" | "tamil" | "telugu" | "thai" | "vietnamese";
|
|
5
|
-
declare type Variant = "100" | "100italic" | "200" | "200italic" | "300" | "300italic" | "regular" | "italic" | "500" | "500italic" | "600" | "600italic" | "700" | "700italic" | "800" | "800italic" | "900" | "900italic";
|
|
6
6
|
declare type SortOption = "alphabet" | "popularity";
|
|
7
|
+
declare type Variant = "100" | "100italic" | "200" | "200italic" | "300" | "300italic" | "regular" | "italic" | "500" | "500italic" | "600" | "600italic" | "700" | "700italic" | "800" | "800italic" | "900" | "900italic";
|
|
7
8
|
interface Font {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
9
|
+
family: string;
|
|
10
|
+
id: string;
|
|
11
|
+
category: Category;
|
|
12
|
+
scripts: Script[];
|
|
13
|
+
variants: Variant[];
|
|
14
|
+
kind?: string;
|
|
15
|
+
version?: string;
|
|
16
|
+
lastModified?: string;
|
|
17
|
+
files?: Record<Variant, string>;
|
|
13
18
|
}
|
|
14
|
-
interface
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
19
|
+
interface Options {
|
|
20
|
+
pickerId: string;
|
|
21
|
+
families: string[];
|
|
22
|
+
categories: Category[];
|
|
23
|
+
scripts: Script[];
|
|
24
|
+
variants: Variant[];
|
|
25
|
+
filter: (font: Font) => boolean;
|
|
26
|
+
limit: number;
|
|
27
|
+
sort: SortOption;
|
|
23
28
|
}
|
|
29
|
+
|
|
24
30
|
interface GoogleFontPickerProps extends SelectProps {
|
|
25
31
|
activeFontFamily?: string;
|
|
26
32
|
onChange?: (fontFamily: string) => void;
|
|
27
|
-
fontManagerOptions?:
|
|
33
|
+
fontManagerOptions?: Options;
|
|
28
34
|
}
|
|
29
35
|
/**
|
|
30
36
|
*
|
|
@@ -57,5 +63,6 @@ interface GoogleFontPickerProps extends SelectProps {
|
|
|
57
63
|
* };
|
|
58
64
|
* @endexample
|
|
59
65
|
*/
|
|
60
|
-
const GoogleFontPicker: React.FC<GoogleFontPickerProps>;
|
|
61
|
-
|
|
66
|
+
declare const GoogleFontPicker: React.FC<GoogleFontPickerProps>;
|
|
67
|
+
|
|
68
|
+
export { GoogleFontPicker as default };
|
package/types/Header.d.ts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { SIZES } from
|
|
3
|
-
import {
|
|
4
|
-
import MoreDropdown from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { SIZES } from 'components/Header/constants';
|
|
3
|
+
import { PopoverProps } from 'neetoui';
|
|
4
|
+
import MoreDropdown from './MoreDropdown.js';
|
|
5
|
+
import '@bigbinary/neetoui';
|
|
6
|
+
|
|
5
7
|
/**
|
|
6
8
|
*
|
|
7
9
|
* The Header component can be used to display the page title and an action block
|
|
@@ -17,7 +19,7 @@ import MoreDropdown from "./MoreDropdown";
|
|
|
17
19
|
* );
|
|
18
20
|
* @endexample
|
|
19
21
|
*/
|
|
20
|
-
const Header: React.FC<{
|
|
22
|
+
declare const Header: React.FC<{
|
|
21
23
|
title?: React.ReactNode;
|
|
22
24
|
titleHelpPopoverProps?: PopoverProps;
|
|
23
25
|
className?: string;
|
|
@@ -30,4 +32,5 @@ const Header: React.FC<{
|
|
|
30
32
|
size?: keyof typeof SIZES;
|
|
31
33
|
renderDropdown?: (Dropdown: MoreDropdown) => JSX.Element;
|
|
32
34
|
}>;
|
|
33
|
-
|
|
35
|
+
|
|
36
|
+
export { Header as default };
|
package/types/HelpPopover.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { ButtonProps, PopoverProps } from
|
|
3
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ButtonProps, PopoverProps } from '@bigbinary/neetoui';
|
|
3
|
+
|
|
4
|
+
interface HelpPopoverProps {
|
|
4
5
|
title?: string;
|
|
5
6
|
description?: React.ReactNode;
|
|
6
7
|
helpLinkProps?: ButtonProps;
|
|
@@ -39,5 +40,6 @@ export interface HelpPopoverProps {
|
|
|
39
40
|
* };
|
|
40
41
|
* @endexample
|
|
41
42
|
*/
|
|
42
|
-
const HelpPopover: React.FC<HelpPopoverProps>;
|
|
43
|
-
|
|
43
|
+
declare const HelpPopover: React.FC<HelpPopoverProps>;
|
|
44
|
+
|
|
45
|
+
export { type HelpPopoverProps, HelpPopover as default };
|
package/types/IconPicker.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
2
3
|
/**
|
|
3
4
|
*
|
|
4
5
|
* A dropdown component that allows you to select an icon from a list of
|
|
@@ -33,11 +34,12 @@ import React from "react";
|
|
|
33
34
|
* };
|
|
34
35
|
* @endexample
|
|
35
36
|
*/
|
|
36
|
-
const IconPicker: React.FC<{
|
|
37
|
+
declare const IconPicker: React.FC<{
|
|
37
38
|
filled?: boolean;
|
|
38
39
|
value?: string;
|
|
39
40
|
label?: string;
|
|
40
41
|
onClick?: Function;
|
|
41
42
|
className?: string;
|
|
42
43
|
}>;
|
|
43
|
-
|
|
44
|
+
|
|
45
|
+
export { IconPicker as default };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
2
3
|
/**
|
|
3
4
|
*
|
|
4
5
|
* A component to display a fallback component in case no image is available.
|
|
@@ -15,8 +16,9 @@ import React from "react";
|
|
|
15
16
|
* );
|
|
16
17
|
* @endexample
|
|
17
18
|
*/
|
|
18
|
-
const ImageWithFallback: React.FC<{
|
|
19
|
+
declare const ImageWithFallback: React.FC<{
|
|
19
20
|
src: string;
|
|
20
21
|
fallback?: React.ReactNode;
|
|
21
22
|
}>;
|
|
22
|
-
|
|
23
|
+
|
|
24
|
+
export { ImageWithFallback as default };
|
package/types/InlineInput.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { InputProps, ButtonProps } from
|
|
3
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { InputProps, ButtonProps } from '@bigbinary/neetoui';
|
|
3
|
+
|
|
4
|
+
interface InlineInputProps extends InputProps {
|
|
4
5
|
className?: string;
|
|
5
6
|
value?: string;
|
|
6
7
|
nullable?: boolean;
|
|
@@ -12,12 +13,11 @@ export interface InlineInput extends InputProps {
|
|
|
12
13
|
handleSubmit: (value: string) => void;
|
|
13
14
|
handleCancel: (value: string) => void;
|
|
14
15
|
}
|
|
15
|
-
|
|
16
|
+
interface FormikInlineInputProps extends InlineInputProps {
|
|
16
17
|
name: string;
|
|
17
18
|
handleSubmit?: (value: string) => void;
|
|
18
19
|
handleCancel?: (value: string) => void;
|
|
19
20
|
}
|
|
20
|
-
export
|
|
21
21
|
/**
|
|
22
22
|
*
|
|
23
23
|
* An input field with built-in functionality for handling saving and cancelling
|
|
@@ -81,5 +81,7 @@ export
|
|
|
81
81
|
* );
|
|
82
82
|
* @endexample
|
|
83
83
|
*/
|
|
84
|
-
const InlineInput: React.ForwardRefExoticComponent<InlineInputProps>;
|
|
85
|
-
|
|
84
|
+
declare const InlineInput: React.ForwardRefExoticComponent<InlineInputProps>;
|
|
85
|
+
declare const FormikInlineInput: React.ForwardRefExoticComponent<FormikInlineInputProps>;
|
|
86
|
+
|
|
87
|
+
export { FormikInlineInput, type FormikInlineInputProps, InlineInput, type InlineInputProps };
|
package/types/Insights.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
3
|
interface Time {
|
|
4
4
|
h: number;
|
|
5
5
|
m: number;
|
|
@@ -97,7 +97,7 @@ interface HelpTexts {
|
|
|
97
97
|
* your API.
|
|
98
98
|
*
|
|
99
99
|
*/
|
|
100
|
-
const Insights: React.FC<{
|
|
100
|
+
declare const Insights: React.FC<{
|
|
101
101
|
insightsData: InsightsData;
|
|
102
102
|
isLoading: boolean;
|
|
103
103
|
timePeriod: TimePeriod;
|
|
@@ -105,4 +105,5 @@ const Insights: React.FC<{
|
|
|
105
105
|
helpTexts?: HelpTexts;
|
|
106
106
|
showWarningMessage: boolean;
|
|
107
107
|
}>;
|
|
108
|
-
|
|
108
|
+
|
|
109
|
+
export { Insights as default };
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { IconProps } from
|
|
2
|
-
import React
|
|
3
|
-
|
|
1
|
+
import { IconProps } from 'neetoicons';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
|
|
4
|
+
interface IntegrationCardProps {
|
|
4
5
|
icon: React.FC<IconProps>;
|
|
5
6
|
subIcons?: React.FC<IconProps>[];
|
|
6
7
|
label: string;
|
|
@@ -54,5 +55,6 @@ export interface IntegrationCardProps {
|
|
|
54
55
|
* );
|
|
55
56
|
* @endexample
|
|
56
57
|
*/
|
|
57
|
-
const IntegrationCard: React.FC<IntegrationCardProps>;
|
|
58
|
-
|
|
58
|
+
declare const IntegrationCard: React.FC<IntegrationCardProps>;
|
|
59
|
+
|
|
60
|
+
export { type IntegrationCardProps, IntegrationCard as default };
|
package/types/IpRestriction.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
2
3
|
/**
|
|
3
4
|
*
|
|
4
5
|
* A common component to restrict IPs in neeto applications.
|
|
@@ -19,5 +20,6 @@ import React from "react";
|
|
|
19
20
|
* );
|
|
20
21
|
* @endexample
|
|
21
22
|
*/
|
|
22
|
-
const IpRestriction: React.FC<{}>;
|
|
23
|
-
|
|
23
|
+
declare const IpRestriction: React.FC<{}>;
|
|
24
|
+
|
|
25
|
+
export { IpRestriction as default };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { TFunction } from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { TFunction } from 'i18next';
|
|
3
|
+
|
|
3
4
|
interface Shortcut {
|
|
4
5
|
sequence: string;
|
|
5
6
|
description: TFunction;
|
|
@@ -137,11 +138,12 @@ interface ShortcutsObject {
|
|
|
137
138
|
* );
|
|
138
139
|
* @endexample
|
|
139
140
|
*/
|
|
140
|
-
const KeyboardShortcuts: {
|
|
141
|
+
declare const KeyboardShortcuts: {
|
|
141
142
|
Pane: React.FC<{
|
|
142
143
|
productShortcuts?: ShortcutsObject;
|
|
143
144
|
}>;
|
|
144
145
|
usePaneState(): [boolean, React.Dispatch<React.SetStateAction<boolean>>];
|
|
145
146
|
GLOBAL_SHORTCUTS: ShortcutsObject;
|
|
146
147
|
};
|
|
147
|
-
|
|
148
|
+
|
|
149
|
+
export { KeyboardShortcuts as default };
|
package/types/LoginPage.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
2
3
|
/**
|
|
3
4
|
*
|
|
4
5
|
* A common login page for all neeto-applications with dedicated button for oliver
|
|
@@ -32,7 +33,7 @@ import React from "react";
|
|
|
32
33
|
* }
|
|
33
34
|
* @endexample
|
|
34
35
|
*/
|
|
35
|
-
const LoginPage: React.FC<{
|
|
36
|
+
declare const LoginPage: React.FC<{
|
|
36
37
|
handleSubmit: (data: {
|
|
37
38
|
user: {
|
|
38
39
|
email: string;
|
|
@@ -40,4 +41,5 @@ const LoginPage: React.FC<{
|
|
|
40
41
|
};
|
|
41
42
|
}) => any;
|
|
42
43
|
}>;
|
|
43
|
-
|
|
44
|
+
|
|
45
|
+
export { LoginPage as default };
|
package/types/MadeWith.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
2
3
|
/**
|
|
3
4
|
*
|
|
4
5
|
* A component used for rendering made with block.
|
|
@@ -10,7 +11,8 @@ import React from "react";
|
|
|
10
11
|
* <MadeWith />;
|
|
11
12
|
* @endexample
|
|
12
13
|
*/
|
|
13
|
-
const MadeWith: React.FC<{
|
|
14
|
+
declare const MadeWith: React.FC<{
|
|
14
15
|
productName?: string;
|
|
15
16
|
}>;
|
|
16
|
-
|
|
17
|
+
|
|
18
|
+
export { MadeWith as default };
|
package/types/MenuBar.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { ButtonProps, InputProps } from
|
|
3
|
-
import { LinkProps } from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ButtonProps, InputProps } from '@bigbinary/neetoui';
|
|
3
|
+
import { LinkProps } from 'react-router-dom';
|
|
4
|
+
|
|
4
5
|
type BlockProps = {
|
|
5
6
|
label: string;
|
|
6
7
|
url?: string;
|
|
@@ -110,7 +111,7 @@ type AddNewProps = {
|
|
|
110
111
|
* };
|
|
111
112
|
* @endexample
|
|
112
113
|
*/
|
|
113
|
-
const MenuBar: React.FC<{
|
|
114
|
+
declare const MenuBar: React.FC<{
|
|
114
115
|
title?: string;
|
|
115
116
|
showMenu?: boolean;
|
|
116
117
|
className?: string;
|
|
@@ -122,4 +123,5 @@ const MenuBar: React.FC<{
|
|
|
122
123
|
Search: React.FC<SearchProps>;
|
|
123
124
|
AddNew: React.FC<AddNewProps>;
|
|
124
125
|
};
|
|
125
|
-
|
|
126
|
+
|
|
127
|
+
export { MenuBar as default };
|
package/types/Metadata.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
2
3
|
type BlockProps = {
|
|
3
4
|
title?: React.ReactNode;
|
|
4
5
|
actionBlock?: React.ReactNode;
|
|
@@ -99,9 +100,10 @@ interface BlockComposition {
|
|
|
99
100
|
* );
|
|
100
101
|
* @endexample
|
|
101
102
|
*/
|
|
102
|
-
const Metadata: React.FC<{
|
|
103
|
+
declare const Metadata: React.FC<{
|
|
103
104
|
className?: string;
|
|
104
105
|
headerBlock?: React.ReactNode;
|
|
105
106
|
size?: "small" | "medium";
|
|
106
107
|
}> & BlockComposition;
|
|
107
|
-
|
|
108
|
+
|
|
109
|
+
export { Metadata as default };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
2
3
|
/**
|
|
3
4
|
*
|
|
4
5
|
* Can be used to show preview message for smaller viewports.
|
|
@@ -10,8 +11,9 @@ import React from "react";
|
|
|
10
11
|
* const App = () => <MobilePreviewHeader />;
|
|
11
12
|
* @endexample
|
|
12
13
|
*/
|
|
13
|
-
const MobilePreviewHeader: React.FC<{
|
|
14
|
+
declare const MobilePreviewHeader: React.FC<{
|
|
14
15
|
message?: React.ReactNode;
|
|
15
16
|
className?: string;
|
|
16
17
|
}>;
|
|
17
|
-
|
|
18
|
+
|
|
19
|
+
export { MobilePreviewHeader as default };
|
package/types/MoreDropdown.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import React from
|
|
1
|
+
import { DropdownProps, ButtonProps } from '@bigbinary/neetoui';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
|
|
3
4
|
type MenuItems = {
|
|
4
5
|
label: string;
|
|
5
6
|
onClick: () => void;
|
|
@@ -38,7 +39,7 @@ type DropdownButtonProps = {
|
|
|
38
39
|
* );
|
|
39
40
|
* @endexample
|
|
40
41
|
*/
|
|
41
|
-
const MoreDropdown: React.FC<{
|
|
42
|
+
declare const MoreDropdown: React.FC<{
|
|
42
43
|
dropdownButtonProps?: DropdownButtonProps;
|
|
43
44
|
isVertical?: boolean;
|
|
44
45
|
isDisabled?: boolean;
|
|
@@ -47,4 +48,5 @@ const MoreDropdown: React.FC<{
|
|
|
47
48
|
menuBottomChildren: React.ReactNode;
|
|
48
49
|
menuItems: MenuItems[];
|
|
49
50
|
}>;
|
|
50
|
-
|
|
51
|
+
|
|
52
|
+
export { MoreDropdown as default };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import {
|
|
3
|
-
import
|
|
4
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ButtonProps } from '@bigbinary/neetoui';
|
|
3
|
+
import Rename from './Rename.js';
|
|
4
|
+
|
|
5
5
|
interface NavLinkProps {
|
|
6
6
|
activeClassName?: string | undefined;
|
|
7
7
|
activeStyle?: React.CSSProperties | undefined;
|
|
@@ -166,7 +166,7 @@ type LeftBlockPropTypes = {
|
|
|
166
166
|
* );
|
|
167
167
|
* @endexample
|
|
168
168
|
*/
|
|
169
|
-
const NavigationHeader: React.FC<{
|
|
169
|
+
declare const NavigationHeader: React.FC<{
|
|
170
170
|
leftActionBlock?: React.ReactNode;
|
|
171
171
|
navigationLinks?: React.ReactNode;
|
|
172
172
|
rightActionBlock?: React.ReactNode;
|
|
@@ -175,4 +175,5 @@ const NavigationHeader: React.FC<{
|
|
|
175
175
|
NavigationLinks: React.FC<NavigationLinkPropsType>;
|
|
176
176
|
LeftActionBlock: React.FC<LeftBlockPropTypes>;
|
|
177
177
|
};
|
|
178
|
-
|
|
178
|
+
|
|
179
|
+
export { NavigationHeader as default };
|
package/types/NeetoWidget.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
2
3
|
type EmbedCode = React.FC<{
|
|
3
4
|
maxWidth?: string;
|
|
4
5
|
primaryApp?: string;
|
|
@@ -30,7 +31,7 @@ type EmbedCode = React.FC<{
|
|
|
30
31
|
* <NeetoWidget.EmbedCode primaryApp={NeetoWidget.WIDGET_TYPES.chat} />
|
|
31
32
|
* @endexample
|
|
32
33
|
*/
|
|
33
|
-
const NeetoWidget: {
|
|
34
|
+
declare const NeetoWidget: {
|
|
34
35
|
EmbedCode: EmbedCode;
|
|
35
36
|
WIDGET_TYPES: {
|
|
36
37
|
engage: "engage";
|
|
@@ -38,4 +39,5 @@ const NeetoWidget: {
|
|
|
38
39
|
replay: "replay";
|
|
39
40
|
};
|
|
40
41
|
};
|
|
41
|
-
|
|
42
|
+
|
|
43
|
+
export { NeetoWidget as default };
|
package/types/Onboarding.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
2
3
|
interface OnboardingComponent {
|
|
3
4
|
key: string;
|
|
4
5
|
element: React.ReactNode;
|
|
@@ -56,7 +57,7 @@ interface OnboardingComponent {
|
|
|
56
57
|
* };
|
|
57
58
|
* @endexample
|
|
58
59
|
*/
|
|
59
|
-
const Onboarding: React.FC<{
|
|
60
|
+
declare const Onboarding: React.FC<{
|
|
60
61
|
currentStep: string;
|
|
61
62
|
completeButtonProps: Object;
|
|
62
63
|
setCurrentStep: React.Dispatch<React.SetStateAction<string>>;
|
|
@@ -65,4 +66,5 @@ const Onboarding: React.FC<{
|
|
|
65
66
|
isAnimated?: boolean;
|
|
66
67
|
disableStepClick?: boolean;
|
|
67
68
|
}>;
|
|
68
|
-
|
|
69
|
+
|
|
70
|
+
export { Onboarding as default };
|
package/types/OptionFields.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
2
3
|
type Option = {
|
|
3
4
|
label: string;
|
|
4
5
|
id: string;
|
|
@@ -59,4 +60,5 @@ type OptionFieldsProps = {
|
|
|
59
60
|
*
|
|
60
61
|
*/
|
|
61
62
|
declare const OptionFields: React.FC<OptionFieldsProps>;
|
|
62
|
-
|
|
63
|
+
|
|
64
|
+
export { OptionFields as default };
|
package/types/PageLoader.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
2
3
|
/**
|
|
3
4
|
*
|
|
4
5
|
* Used in neeto products as the page loader to indicate that the page is being
|
|
@@ -32,7 +33,8 @@ import React from "react";
|
|
|
32
33
|
* };
|
|
33
34
|
* @endexample
|
|
34
35
|
*/
|
|
35
|
-
const PageLoader: React.FC<{
|
|
36
|
+
declare const PageLoader: React.FC<{
|
|
36
37
|
text?: string;
|
|
37
38
|
}>;
|
|
38
|
-
|
|
39
|
+
|
|
40
|
+
export { PageLoader as default };
|
package/types/PhoneNumber.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { InputProps, SelectProps, TypographyProps } from
|
|
3
|
-
import { CountryCode } from
|
|
4
|
-
import { StringSchema } from
|
|
5
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { InputProps, SelectProps, TypographyProps } from '@bigbinary/neetoui';
|
|
3
|
+
import { CountryCode } from 'libphonenumber-js';
|
|
4
|
+
import { StringSchema } from 'yup';
|
|
5
|
+
|
|
6
|
+
interface PhoneNumberInputProps extends InputProps {
|
|
6
7
|
value?: string;
|
|
7
8
|
onChange?: (value: string) => any;
|
|
8
9
|
className?: string;
|
|
@@ -10,19 +11,18 @@ export interface PhoneNumberInputProps extends InputProps {
|
|
|
10
11
|
error?: string;
|
|
11
12
|
initialCountryCode?: string;
|
|
12
13
|
}
|
|
13
|
-
|
|
14
|
+
interface FormikPhoneNumberInputProps extends PhoneNumberInputProps {
|
|
14
15
|
name: string;
|
|
15
16
|
}
|
|
16
|
-
|
|
17
|
+
interface PhoneNumberProps extends TypographyProps {
|
|
17
18
|
className?: string;
|
|
18
19
|
defaultCountry?: string;
|
|
19
20
|
children?: React.ReactNode;
|
|
20
21
|
showEmoji?: boolean;
|
|
21
22
|
value?: string;
|
|
22
23
|
}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
export
|
|
24
|
+
declare const PhoneNumberInput: React.ForwardRefExoticComponent<PhoneNumberInputProps>;
|
|
25
|
+
declare const FormikPhoneNumberInput: React.ForwardRefExoticComponent<FormikPhoneNumberInputProps>;
|
|
26
26
|
/**
|
|
27
27
|
*
|
|
28
28
|
* An input component to input and validate phone numbers with a country code
|
|
@@ -102,9 +102,11 @@ export
|
|
|
102
102
|
* whether the phone number is valid or not.
|
|
103
103
|
*
|
|
104
104
|
*/
|
|
105
|
-
const PhoneNumber: React.FC<PhoneNumberProps>;
|
|
106
|
-
|
|
105
|
+
declare const PhoneNumber: React.FC<PhoneNumberProps>;
|
|
106
|
+
declare const isPhoneNumberValid: (phoneNumber: string, defaultCountry?: CountryCode | {
|
|
107
107
|
defaultCountry?: CountryCode;
|
|
108
108
|
defaultCallingCode?: string;
|
|
109
109
|
}) => boolean;
|
|
110
|
-
|
|
110
|
+
declare const validation: (message?: string) => StringSchema<any, any, any>;
|
|
111
|
+
|
|
112
|
+
export { FormikPhoneNumberInput, type FormikPhoneNumberInputProps, PhoneNumber, PhoneNumberInput, type PhoneNumberInputProps, type PhoneNumberProps, isPhoneNumberValid, validation };
|
package/types/ProductEmbed.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
2
3
|
interface InlineProps {
|
|
3
4
|
label: string;
|
|
4
5
|
description: string;
|
|
@@ -69,7 +70,7 @@ interface ElementPopupProps {
|
|
|
69
70
|
* export default EmbedPage;
|
|
70
71
|
* @endexample
|
|
71
72
|
*/
|
|
72
|
-
const ProductEmbed: React.FC<{
|
|
73
|
+
declare const ProductEmbed: React.FC<{
|
|
73
74
|
className?: string;
|
|
74
75
|
goBackLink?: string;
|
|
75
76
|
customEmbedScriptPath?: string;
|
|
@@ -85,4 +86,5 @@ const ProductEmbed: React.FC<{
|
|
|
85
86
|
otherCustomizations?: Function;
|
|
86
87
|
inlineWrapperStyle?: string;
|
|
87
88
|
}>;
|
|
88
|
-
|
|
89
|
+
|
|
90
|
+
export { ProductEmbed as default };
|