@bigbinary/neeto-molecules 3.9.10 → 3.9.12
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/Schedule.js +199 -182
- package/dist/Schedule.js.map +1 -1
- package/dist/cjs/Schedule.js +196 -179
- package/dist/cjs/Schedule.js.map +1 -1
- 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/Columns.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { CheckboxProps,
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { CheckboxProps, InputProps, DropdownProps } from '@bigbinary/neetoui';
|
|
3
|
+
|
|
3
4
|
type Column = {
|
|
4
5
|
title: string;
|
|
5
6
|
dataIndex: string;
|
|
@@ -128,7 +129,7 @@ type useColumnsType = {
|
|
|
128
129
|
* };
|
|
129
130
|
* @endexample
|
|
130
131
|
*/
|
|
131
|
-
const Columns: React.FC<{
|
|
132
|
+
declare const Columns: React.FC<{
|
|
132
133
|
actionBlock?: React.ReactNode;
|
|
133
134
|
checkboxProps?: CheckboxProps;
|
|
134
135
|
columnData: Column[];
|
|
@@ -138,14 +139,14 @@ const Columns: React.FC<{
|
|
|
138
139
|
onChange: (columns: Column[], hiddenColumns: string[]) => any[];
|
|
139
140
|
searchProps?: InputProps;
|
|
140
141
|
} & DropdownProps>;
|
|
141
|
-
|
|
142
|
+
declare function useHiddenColumns(localStorageKey: string, initialValue?: string[]): {
|
|
142
143
|
hiddenColumns: string[];
|
|
143
144
|
hideColumn: (dataIndex: string) => void;
|
|
144
145
|
showColumn: (dataIndex: string) => void;
|
|
145
146
|
getVisibleColumnData: (columnData: any[]) => any[];
|
|
146
147
|
onColumnDataChange: (columnData: any[]) => void;
|
|
147
148
|
};
|
|
148
|
-
|
|
149
|
+
declare function useColumns({
|
|
149
150
|
localStorageKey,
|
|
150
151
|
initialHiddenColumns,
|
|
151
152
|
initialOrder
|
|
@@ -163,4 +164,5 @@ export function useColumns({
|
|
|
163
164
|
}: getColumnDataType) => any[];
|
|
164
165
|
setColumnOrder: (columns: string[]) => void;
|
|
165
166
|
};
|
|
166
|
-
|
|
167
|
+
|
|
168
|
+
export { Columns as default, useColumns, useHiddenColumns };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
2
3
|
type NavLinkItemType = {
|
|
3
4
|
to: string;
|
|
4
5
|
label?: React.ReactNode;
|
|
@@ -35,9 +36,10 @@ type NavLinkItemType = {
|
|
|
35
36
|
* };
|
|
36
37
|
* @endexample
|
|
37
38
|
*/
|
|
38
|
-
const ConfigurePageSidebar: React.FC<{
|
|
39
|
+
declare const ConfigurePageSidebar: React.FC<{
|
|
39
40
|
label: React.ReactNode;
|
|
40
41
|
navLinks: NavLinkItemType[];
|
|
41
42
|
configurePageRoute: string;
|
|
42
43
|
}>;
|
|
43
|
-
|
|
44
|
+
|
|
45
|
+
export { ConfigurePageSidebar as default };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
2
3
|
/**
|
|
3
4
|
*
|
|
4
5
|
* When users have to delete an entity that is integral to the app, it is
|
|
@@ -49,7 +50,7 @@ import React from "react";
|
|
|
49
50
|
* };
|
|
50
51
|
* @endexample
|
|
51
52
|
*/
|
|
52
|
-
const ConfirmationModal: React.FC<{
|
|
53
|
+
declare const ConfirmationModal: React.FC<{
|
|
53
54
|
buttonLabel: string;
|
|
54
55
|
confirmationText: string;
|
|
55
56
|
description?: React.ReactNode | React.ReactNode[] | string;
|
|
@@ -60,4 +61,5 @@ const ConfirmationModal: React.FC<{
|
|
|
60
61
|
onSubmit: Function;
|
|
61
62
|
deleteConfirmationMessage?: string;
|
|
62
63
|
}>;
|
|
63
|
-
|
|
64
|
+
|
|
65
|
+
export { ConfirmationModal as default };
|
package/types/Container.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
2
3
|
/**
|
|
3
4
|
*
|
|
4
5
|
* A container component to be used as a wrapper for the page content.
|
|
@@ -29,8 +30,9 @@ import React from "react";
|
|
|
29
30
|
* );
|
|
30
31
|
* @endexample
|
|
31
32
|
*/
|
|
32
|
-
const Container: React.FC<{
|
|
33
|
+
declare const Container: React.FC<{
|
|
33
34
|
isHeaderFixed?: boolean;
|
|
34
35
|
className?: string;
|
|
35
36
|
}>;
|
|
36
|
-
|
|
37
|
+
|
|
38
|
+
export { Container as default };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
interface CopyToClipboardButtonProps {
|
|
3
4
|
className?: string;
|
|
4
5
|
icon?: string | any;
|
|
5
6
|
label?: string;
|
|
@@ -22,5 +23,6 @@ export interface CopyToClipboardButtonProps {
|
|
|
22
23
|
* );
|
|
23
24
|
* @endexample
|
|
24
25
|
*/
|
|
25
|
-
const CopyToClipboardButton: React.FC<CopyToClipboardButtonProps>;
|
|
26
|
-
|
|
26
|
+
declare const CopyToClipboardButton: React.FC<CopyToClipboardButtonProps>;
|
|
27
|
+
|
|
28
|
+
export { type CopyToClipboardButtonProps, CopyToClipboardButton as default };
|
package/types/Currency.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { SelectProps } from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { SelectProps } from '@bigbinary/neetoui';
|
|
3
|
+
|
|
3
4
|
type CurrencyProps = {
|
|
4
5
|
allowedCurrencies?: string[];
|
|
5
6
|
} & SelectProps;
|
|
@@ -43,6 +44,7 @@ type CurrencyProps = {
|
|
|
43
44
|
* };
|
|
44
45
|
* @endexample
|
|
45
46
|
*/
|
|
46
|
-
const Currency: React.FC<CurrencyProps>;
|
|
47
|
-
const FormikCurrency: React.FC<CurrencyProps>;
|
|
48
|
-
|
|
47
|
+
declare const Currency: React.FC<CurrencyProps>;
|
|
48
|
+
declare const FormikCurrency: React.FC<CurrencyProps>;
|
|
49
|
+
|
|
50
|
+
export { Currency, FormikCurrency };
|
package/types/CustomDomain.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { onCreateCustomDomainCallback } from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { onCreateCustomDomainCallback } from './CustomDomainDashboard.js';
|
|
3
|
+
|
|
3
4
|
/**
|
|
4
5
|
*
|
|
5
6
|
* A common component for managing custom domain. This component can be used when
|
|
@@ -13,9 +14,10 @@ import { onCreateCustomDomainCallback } from "./CustomDomainDashboard";
|
|
|
13
14
|
* <CustomDomain url="api/v1/admin/custom_domain" iconOnly />;
|
|
14
15
|
* @endexample
|
|
15
16
|
*/
|
|
16
|
-
const CustomDomain: React.FC<{
|
|
17
|
+
declare const CustomDomain: React.FC<{
|
|
17
18
|
url: string;
|
|
18
19
|
iconOnly: boolean;
|
|
19
20
|
onCreate?: onCreateCustomDomainCallback;
|
|
20
21
|
}>;
|
|
21
|
-
|
|
22
|
+
|
|
23
|
+
export { CustomDomain as default };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
2
3
|
type customDomainFields = {
|
|
3
4
|
addedCnameAt: string;
|
|
4
5
|
cnameValidationParams: {
|
|
@@ -11,7 +12,7 @@ type customDomainFields = {
|
|
|
11
12
|
notice: string;
|
|
12
13
|
status: string;
|
|
13
14
|
};
|
|
14
|
-
|
|
15
|
+
type onCreateCustomDomainCallback = (values: customDomainFields) => void;
|
|
15
16
|
/**
|
|
16
17
|
*
|
|
17
18
|
* A full page common component for managing custom domains. This component can be
|
|
@@ -37,11 +38,12 @@ export type onCreateCustomDomainCallback = (values: customDomainFields) => void;
|
|
|
37
38
|
* 
|
|
38
39
|
*
|
|
39
40
|
*/
|
|
40
|
-
const CustomDomainDashboard: React.FC<{
|
|
41
|
+
declare const CustomDomainDashboard: React.FC<{
|
|
41
42
|
headerProps: {
|
|
42
43
|
[key: string]: any;
|
|
43
44
|
};
|
|
44
45
|
url: string;
|
|
45
46
|
onCreate: onCreateCustomDomainCallback;
|
|
46
47
|
}>;
|
|
47
|
-
|
|
48
|
+
|
|
49
|
+
export { CustomDomainDashboard as default, type onCreateCustomDomainCallback };
|
package/types/DateFormat.d.ts
CHANGED
|
@@ -1,12 +1,8 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { TypographyProps, TooltipProps } from '@bigbinary/neetoui';
|
|
3
|
+
import { timeFormat, DateTimeType } from '@bigbinary/neeto-commons-frontend/utils';
|
|
2
4
|
|
|
3
|
-
|
|
4
|
-
import {
|
|
5
|
-
timeFormat,
|
|
6
|
-
DateTimeType,
|
|
7
|
-
} from "@bigbinary/neeto-commons-frontend/utils";
|
|
8
|
-
|
|
9
|
-
const DateFormat: {
|
|
5
|
+
declare const DateFormat: {
|
|
10
6
|
[key in Capitalize<keyof typeof timeFormat>]: React.FC<{
|
|
11
7
|
date: DateTimeType;
|
|
12
8
|
timerInterval?: number;
|
|
@@ -16,4 +12,4 @@ const DateFormat: {
|
|
|
16
12
|
}>;
|
|
17
13
|
};
|
|
18
14
|
|
|
19
|
-
export default
|
|
15
|
+
export { DateFormat as default };
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { Dayjs } from
|
|
3
|
-
import { DatePickerProps } from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Dayjs } from 'dayjs';
|
|
3
|
+
import { DatePickerProps } from '@bigbinary/neetoui';
|
|
4
|
+
|
|
4
5
|
interface TimePeriodType {
|
|
5
6
|
startDate: Dayjs;
|
|
6
7
|
endDate: Dayjs;
|
|
@@ -45,10 +46,11 @@ interface TimePeriodType {
|
|
|
45
46
|
* your API.
|
|
46
47
|
*
|
|
47
48
|
*/
|
|
48
|
-
const DateRangeFilter: React.FC<{
|
|
49
|
+
declare const DateRangeFilter: React.FC<{
|
|
49
50
|
timePeriod: TimePeriodType;
|
|
50
51
|
setTimePeriod: React.Dispatch<React.SetStateAction<TimePeriodType>>;
|
|
51
52
|
timePeriodOptions?: TimePeriodType[];
|
|
52
53
|
datePickerProps?: DatePickerProps;
|
|
53
54
|
}>;
|
|
54
|
-
|
|
55
|
+
|
|
56
|
+
export { DateRangeFilter as default };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
2
3
|
/**
|
|
3
4
|
*
|
|
4
5
|
* The DeleteArchiveModal component is designed to facilitate the deletion of an
|
|
@@ -48,7 +49,7 @@ import React from "react";
|
|
|
48
49
|
* };
|
|
49
50
|
* @endexample
|
|
50
51
|
*/
|
|
51
|
-
const DeleteArchiveModal: React.FC<{
|
|
52
|
+
declare const DeleteArchiveModal: React.FC<{
|
|
52
53
|
checkboxLabel: string;
|
|
53
54
|
className: string;
|
|
54
55
|
description: string;
|
|
@@ -60,4 +61,5 @@ const DeleteArchiveModal: React.FC<{
|
|
|
60
61
|
onDelete: Function;
|
|
61
62
|
title: string;
|
|
62
63
|
}>;
|
|
63
|
-
|
|
64
|
+
|
|
65
|
+
export { DeleteArchiveModal as default };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
2
3
|
/**
|
|
3
4
|
*
|
|
4
5
|
* Used to indicate screen incompatibility on smaller devices.
|
|
@@ -10,8 +11,9 @@ import React from "react";
|
|
|
10
11
|
* const App = () => <DeviceIncompatibilityMessage />;
|
|
11
12
|
* @endexample
|
|
12
13
|
*/
|
|
13
|
-
const DeviceIncompatibilityMessage: React.FC<{
|
|
14
|
+
declare const DeviceIncompatibilityMessage: React.FC<{
|
|
14
15
|
description?: React.ReactNode;
|
|
15
16
|
className?: string;
|
|
16
17
|
}>;
|
|
17
|
-
|
|
18
|
+
|
|
19
|
+
export { DeviceIncompatibilityMessage as default };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { TextareaProps } from
|
|
1
|
+
import { attachment, FormikEditorProps } from '@bigbinary/neeto-editor';
|
|
2
|
+
import { TextareaProps } from '@bigbinary/neetoui';
|
|
3
|
+
|
|
3
4
|
/**
|
|
4
5
|
*
|
|
5
6
|
* NeetoEditor with a better writing experience.
|
|
@@ -42,7 +43,7 @@ import { TextareaProps } from "@bigbinary/neetoui";
|
|
|
42
43
|
* );
|
|
43
44
|
* @endexample
|
|
44
45
|
*/
|
|
45
|
-
const DocumentEditor: React.FC<{
|
|
46
|
+
declare const DocumentEditor: React.FC<{
|
|
46
47
|
attachments: attachment[];
|
|
47
48
|
onContentChange?: (content: string) => void;
|
|
48
49
|
onAttachmentChange?: (attachments: attachment[]) => void;
|
|
@@ -55,4 +56,5 @@ const DocumentEditor: React.FC<{
|
|
|
55
56
|
titleProps?: TextareaProps;
|
|
56
57
|
menuClassName?: string;
|
|
57
58
|
}>;
|
|
58
|
-
|
|
59
|
+
|
|
60
|
+
export { DocumentEditor 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 render warning callout when the application is accessed from a
|
|
@@ -27,7 +28,8 @@ import React from "react";
|
|
|
27
28
|
* for any path that starts with "/public".
|
|
28
29
|
*
|
|
29
30
|
*/
|
|
30
|
-
const DownloadMobileAppCallout: React.FC<{
|
|
31
|
+
declare const DownloadMobileAppCallout: React.FC<{
|
|
31
32
|
excludePathRegex?: RegExp;
|
|
32
33
|
}>;
|
|
33
|
-
|
|
34
|
+
|
|
35
|
+
export { DownloadMobileAppCallout as default };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { DropdownProps } from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { DropdownProps } from '@bigbinary/neetoui';
|
|
3
|
+
|
|
3
4
|
interface Variable {
|
|
4
5
|
label?: string;
|
|
5
6
|
key?: string;
|
|
@@ -37,10 +38,11 @@ interface Variable {
|
|
|
37
38
|
* };
|
|
38
39
|
* @endexample
|
|
39
40
|
*/
|
|
40
|
-
const DynamicVariables: React.FC<{
|
|
41
|
+
declare const DynamicVariables: React.FC<{
|
|
41
42
|
onVariableClick?: (variable: Variable & {
|
|
42
43
|
categoryLabel?: string;
|
|
43
44
|
}) => void;
|
|
44
45
|
variables: Variable[];
|
|
45
46
|
} & DropdownProps>;
|
|
46
|
-
|
|
47
|
+
|
|
48
|
+
export { DynamicVariables as default };
|
package/types/EmailForm.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { HelpPopoverProps } from './HelpPopover.js';
|
|
3
|
+
import '@bigbinary/neetoui';
|
|
4
|
+
|
|
4
5
|
type ContentVariables = {
|
|
5
6
|
label: string;
|
|
6
7
|
key: string;
|
|
@@ -67,7 +68,7 @@ type SendToFieldProps = {
|
|
|
67
68
|
* export default EmailComposer;
|
|
68
69
|
* @endexample
|
|
69
70
|
*/
|
|
70
|
-
const EmailForm: React.FC<{
|
|
71
|
+
declare const EmailForm: React.FC<{
|
|
71
72
|
messageVariables?: ContentVariables[];
|
|
72
73
|
subjectVariables?: ContentVariables[];
|
|
73
74
|
handleCancel: () => void;
|
|
@@ -80,4 +81,5 @@ const EmailForm: React.FC<{
|
|
|
80
81
|
replyToFieldProps?: ReplyToFieldProps;
|
|
81
82
|
sendToFieldProps?: SendToFieldProps;
|
|
82
83
|
}>;
|
|
83
|
-
|
|
84
|
+
|
|
85
|
+
export { EmailForm as default };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import React from "react";
|
|
2
1
|
import * as yup from 'yup';
|
|
2
|
+
|
|
3
3
|
type ValidationMap = {
|
|
4
4
|
[key: string]: yup.AnySchema;
|
|
5
5
|
};
|
|
@@ -44,4 +44,5 @@ declare const EmailFormProvider: <T extends {}>(props: {
|
|
|
44
44
|
showCcField?: boolean;
|
|
45
45
|
showBccField?: boolean;
|
|
46
46
|
}) => JSX.Element;
|
|
47
|
-
|
|
47
|
+
|
|
48
|
+
export { EmailFormProvider as default };
|
package/types/EmailPreview.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 preview emails.
|
|
@@ -27,7 +28,7 @@ import React from "react";
|
|
|
27
28
|
* export default EmailShare;
|
|
28
29
|
* @endexample
|
|
29
30
|
*/
|
|
30
|
-
const EmailPreview: React.FC<{
|
|
31
|
+
declare const EmailPreview: React.FC<{
|
|
31
32
|
to?: string[];
|
|
32
33
|
subject?: string;
|
|
33
34
|
body?: string;
|
|
@@ -37,4 +38,5 @@ const EmailPreview: React.FC<{
|
|
|
37
38
|
className?: string;
|
|
38
39
|
customContent?: React.ReactNode;
|
|
39
40
|
}>;
|
|
40
|
-
|
|
41
|
+
|
|
42
|
+
export { EmailPreview as default };
|
package/types/EmojiPicker.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { DropdownProps } from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { DropdownProps } from 'neetoui';
|
|
3
|
+
|
|
3
4
|
type Emoji = {
|
|
4
5
|
native: string;
|
|
5
6
|
unified: string;
|
|
@@ -25,9 +26,10 @@ type Emoji = {
|
|
|
25
26
|
* };
|
|
26
27
|
* @endexample
|
|
27
28
|
*/
|
|
28
|
-
const EmojiPicker: React.FC<{
|
|
29
|
+
declare const EmojiPicker: React.FC<{
|
|
29
30
|
onSelect?: (emoji: Emoji) => void;
|
|
30
31
|
open?: boolean;
|
|
31
32
|
dropdownProps?: DropdownProps;
|
|
32
33
|
}>;
|
|
33
|
-
|
|
34
|
+
|
|
35
|
+
export { EmojiPicker as default };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
2
3
|
type Emoji = {
|
|
3
4
|
native: string;
|
|
4
5
|
unified: string;
|
|
@@ -50,11 +51,12 @@ type Reaction = {
|
|
|
50
51
|
* };
|
|
51
52
|
* @endexample
|
|
52
53
|
*/
|
|
53
|
-
const EmojiReactions: React.FC<{
|
|
54
|
+
declare const EmojiReactions: React.FC<{
|
|
54
55
|
reactions: Reaction[];
|
|
55
56
|
onReactionClick?: (emoji: Emoji) => void;
|
|
56
57
|
emojiSize?: string;
|
|
57
58
|
emojiBoxStyle?: string;
|
|
58
59
|
isUpdating?: boolean;
|
|
59
60
|
}>;
|
|
60
|
-
|
|
61
|
+
|
|
62
|
+
export { EmojiReactions as default };
|
package/types/ErrorPage.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { ButtonProps } from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ButtonProps } from '@bigbinary/neetoui';
|
|
3
|
+
|
|
3
4
|
/**
|
|
4
5
|
*
|
|
5
6
|
* A fallback page for handling 404, 403 and 500 errors.
|
|
@@ -9,11 +10,12 @@ import { ButtonProps } from "@bigbinary/neetoui";
|
|
|
9
10
|
* further communication.
|
|
10
11
|
*
|
|
11
12
|
*/
|
|
12
|
-
const ErrorPage: React.FC<{
|
|
13
|
+
declare const ErrorPage: React.FC<{
|
|
13
14
|
homeUrl?: string;
|
|
14
15
|
status?: number;
|
|
15
16
|
backToHomeButtonProps?: Partial<ButtonProps>;
|
|
16
17
|
children?: React.ReactNode | React.ReactNode[];
|
|
17
18
|
showNeetoChatWidget?: boolean;
|
|
18
19
|
}>;
|
|
19
|
-
|
|
20
|
+
|
|
21
|
+
export { ErrorPage as default };
|
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 };
|