@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/PublishBlock.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { AlertProps, ButtonProps } from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { AlertProps, ButtonProps } from '@bigbinary/neetoui';
|
|
3
|
+
|
|
3
4
|
interface PublishPaneProps {
|
|
4
5
|
isSubmitting: boolean;
|
|
5
6
|
onPublish: (params: {
|
|
@@ -140,7 +141,8 @@ interface PublishBlockProps {
|
|
|
140
141
|
* };
|
|
141
142
|
* @endexample
|
|
142
143
|
*/
|
|
143
|
-
const PublishBlock: React.FC<PublishBlockProps> & {
|
|
144
|
+
declare const PublishBlock: React.FC<PublishBlockProps> & {
|
|
144
145
|
Alert: React.FC<AlertProps>;
|
|
145
146
|
};
|
|
146
|
-
|
|
147
|
+
|
|
148
|
+
export { PublishBlock as default };
|
package/types/Rename.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { ButtonProps,
|
|
2
|
-
import React from
|
|
1
|
+
import { ButtonProps, TypographyProps, InputProps } from '@bigbinary/neetoui';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
|
|
3
4
|
/**
|
|
4
5
|
*
|
|
5
6
|
* The Rename component is used to rename a resource on the page, It can be used as
|
|
@@ -40,7 +41,7 @@ import React from "react";
|
|
|
40
41
|
* };
|
|
41
42
|
* @endexample
|
|
42
43
|
*/
|
|
43
|
-
const Rename: React.FC<{
|
|
44
|
+
declare const Rename: React.FC<{
|
|
44
45
|
className?: string;
|
|
45
46
|
isOpen?: boolean;
|
|
46
47
|
allowEmptySubmission: boolean;
|
|
@@ -68,4 +69,5 @@ const Rename: React.FC<{
|
|
|
68
69
|
dropdownButtonProps: ButtonProps;
|
|
69
70
|
dropdownProps: DropdownProps;
|
|
70
71
|
}>;
|
|
71
|
-
|
|
72
|
+
|
|
73
|
+
export { Rename as default };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
2
3
|
type SelectedDeviceState = "desktop" | "tablet" | "mobile";
|
|
3
4
|
/**
|
|
4
5
|
*
|
|
@@ -22,9 +23,10 @@ type SelectedDeviceState = "desktop" | "tablet" | "mobile";
|
|
|
22
23
|
* };
|
|
23
24
|
* @endexample
|
|
24
25
|
*/
|
|
25
|
-
const ResponsiveDevicePicker: React.FC<{
|
|
26
|
+
declare const ResponsiveDevicePicker: React.FC<{
|
|
26
27
|
className?: string;
|
|
27
28
|
selectedDevice?: SelectedDeviceState;
|
|
28
29
|
onDeviceChange?: (device: SelectedDeviceState) => void;
|
|
29
30
|
}>;
|
|
30
|
-
|
|
31
|
+
|
|
32
|
+
export { ResponsiveDevicePicker as default };
|
package/types/Schedule.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
2
3
|
/**
|
|
3
4
|
*
|
|
4
5
|
* It is a component which allows setting working hours for the week.
|
|
@@ -124,7 +125,7 @@ import React from "react";
|
|
|
124
125
|
* };
|
|
125
126
|
* @endexample
|
|
126
127
|
*/
|
|
127
|
-
const Schedule: React.FC<{
|
|
128
|
+
declare const Schedule: React.FC<{
|
|
128
129
|
isEditing?: boolean;
|
|
129
130
|
setIsEditing?: React.Dispatch<React.SetStateAction<boolean>>;
|
|
130
131
|
handleSubmit?: Function;
|
|
@@ -141,4 +142,5 @@ const Schedule: React.FC<{
|
|
|
141
142
|
showTimeZone?: boolean;
|
|
142
143
|
slotInterval?: number;
|
|
143
144
|
}>;
|
|
144
|
-
|
|
145
|
+
|
|
146
|
+
export { Schedule as default };
|
package/types/Scrollable.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { SIZES } from
|
|
2
|
-
import React from
|
|
1
|
+
import { SIZES } from 'components/Scrollable/constants';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
|
|
3
4
|
/**
|
|
4
5
|
*
|
|
5
6
|
* The Scrollable component can be used along with the Header and SubHeader to show
|
|
@@ -21,8 +22,9 @@ import React from "react";
|
|
|
21
22
|
* );
|
|
22
23
|
* @endexample
|
|
23
24
|
*/
|
|
24
|
-
const Scrollable: React.FC<{
|
|
25
|
+
declare const Scrollable: React.FC<{
|
|
25
26
|
className?: string;
|
|
26
27
|
size?: keyof typeof SIZES;
|
|
27
28
|
} & React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
|
|
28
|
-
|
|
29
|
+
|
|
30
|
+
export { Scrollable as default };
|
package/types/Search.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { InputProps } from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { InputProps } from 'neetoui';
|
|
3
|
+
|
|
3
4
|
/**
|
|
4
5
|
*
|
|
5
6
|
* A common search component with search value debounced
|
|
@@ -11,10 +12,11 @@ import { InputProps } from "neetoui";
|
|
|
11
12
|
* const Page = () => <Search debounceTime={500} onChange={e => noop} />;
|
|
12
13
|
* @endexample
|
|
13
14
|
*/
|
|
14
|
-
const Search: React.FC<{
|
|
15
|
+
declare const Search: React.FC<{
|
|
15
16
|
debounceTime?: number;
|
|
16
17
|
onSearch?: (value: string) => void;
|
|
17
18
|
enableUrlSync?: boolean;
|
|
18
19
|
searchParamName?: string;
|
|
19
20
|
} & InputProps>;
|
|
20
|
-
|
|
21
|
+
|
|
22
|
+
export { Search as default };
|
package/types/SendToFields.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { InputProps } from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { InputProps } from 'neetoui';
|
|
3
|
+
|
|
3
4
|
/**
|
|
4
5
|
*
|
|
5
6
|
* This email input component comes with the capability to include recipients in
|
|
@@ -52,7 +53,7 @@ import { InputProps } from "neetoui";
|
|
|
52
53
|
* );
|
|
53
54
|
* @endexample
|
|
54
55
|
*/
|
|
55
|
-
const SendToFields: React.FC<{
|
|
56
|
+
declare const SendToFields: React.FC<{
|
|
56
57
|
inputProps?: InputProps;
|
|
57
58
|
ccInputProps?: InputProps;
|
|
58
59
|
bccInputPropse?: InputProps;
|
|
@@ -62,4 +63,5 @@ const SendToFields: React.FC<{
|
|
|
62
63
|
showBccField?: boolean;
|
|
63
64
|
showSendToField?: boolean;
|
|
64
65
|
}>;
|
|
65
|
-
|
|
66
|
+
|
|
67
|
+
export { SendToFields as default };
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { HelpPopoverProps } from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { HelpPopoverProps } from './HelpPopover.js';
|
|
3
|
+
import '@bigbinary/neetoui';
|
|
4
|
+
|
|
3
5
|
interface Details {
|
|
4
6
|
name?: string;
|
|
5
7
|
value: string;
|
|
@@ -16,7 +18,7 @@ interface Details {
|
|
|
16
18
|
custom?: boolean;
|
|
17
19
|
showCopyButton?: boolean;
|
|
18
20
|
}
|
|
19
|
-
|
|
21
|
+
|
|
20
22
|
/**
|
|
21
23
|
*
|
|
22
24
|
* SessionEnvironment is a component that displays the session details like name,
|
|
@@ -153,7 +155,7 @@ interface Details {
|
|
|
153
155
|
* };
|
|
154
156
|
* @endexample
|
|
155
157
|
*/
|
|
156
|
-
const SessionEnvironment: React.FC<{
|
|
158
|
+
declare const SessionEnvironment: React.FC<{
|
|
157
159
|
allowMultiline?: boolean;
|
|
158
160
|
details: Details[];
|
|
159
161
|
handleCancel?: (string) => void;
|
|
@@ -164,4 +166,5 @@ const SessionEnvironment: React.FC<{
|
|
|
164
166
|
moreDetails?: Details[];
|
|
165
167
|
title?: string;
|
|
166
168
|
}>;
|
|
167
|
-
|
|
169
|
+
|
|
170
|
+
export { SessionEnvironment as default };
|
package/types/Settings.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import React, { ReactNode } from
|
|
2
|
-
|
|
1
|
+
import React, { ReactNode } from 'react';
|
|
2
|
+
|
|
3
3
|
type SettingItem = {
|
|
4
4
|
label: string;
|
|
5
5
|
description: string;
|
|
@@ -90,10 +90,11 @@ type SettingCategory = {
|
|
|
90
90
|
* };
|
|
91
91
|
* @endexample
|
|
92
92
|
*/
|
|
93
|
-
const Settings: React.FC<{
|
|
93
|
+
declare const Settings: React.FC<{
|
|
94
94
|
title?: string;
|
|
95
95
|
isTitleHidden?: boolean;
|
|
96
96
|
isSearchHidden?: boolean;
|
|
97
97
|
categories: SettingCategory[];
|
|
98
98
|
}>;
|
|
99
|
-
|
|
99
|
+
|
|
100
|
+
export { Settings as default };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
2
3
|
/**
|
|
3
4
|
*
|
|
4
5
|
* The ShareRecordingPane component provides a pane interface for sharing
|
|
@@ -47,4 +48,5 @@ declare const ShareRecordingPane: React.FC<{
|
|
|
47
48
|
onClose: Function;
|
|
48
49
|
isLoading?: boolean;
|
|
49
50
|
}>;
|
|
50
|
-
|
|
51
|
+
|
|
52
|
+
export { ShareRecordingPane as default };
|
package/types/ShareViaEmail.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 share entities via email.
|
|
@@ -63,7 +64,7 @@ import React from "react";
|
|
|
63
64
|
* export default ShareViaEmail;
|
|
64
65
|
* @endexample
|
|
65
66
|
*/
|
|
66
|
-
const ShareViaEmail: React.FC<{
|
|
67
|
+
declare const ShareViaEmail: React.FC<{
|
|
67
68
|
backToUrl?: string;
|
|
68
69
|
children?: React.ReactNode;
|
|
69
70
|
description?: string;
|
|
@@ -94,4 +95,5 @@ const ShareViaEmail: React.FC<{
|
|
|
94
95
|
showVideoEmbedInEditor?: boolean;
|
|
95
96
|
title?: string;
|
|
96
97
|
}>;
|
|
97
|
-
|
|
98
|
+
|
|
99
|
+
export { ShareViaEmail as default };
|
package/types/ShareViaLink.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
3
|
type SubtitleProps = {
|
|
4
4
|
subtitle: string;
|
|
5
5
|
dataCy?: string;
|
|
@@ -146,7 +146,7 @@ type MoreOptions = {
|
|
|
146
146
|
* );
|
|
147
147
|
* @endexample
|
|
148
148
|
*/
|
|
149
|
-
const ShareViaLink: React.FC<{
|
|
149
|
+
declare const ShareViaLink: React.FC<{
|
|
150
150
|
isLoading?: boolean;
|
|
151
151
|
editUrlProps?: {
|
|
152
152
|
prefix?: string;
|
|
@@ -172,4 +172,5 @@ const ShareViaLink: React.FC<{
|
|
|
172
172
|
disableShareSocialMedia?: boolean;
|
|
173
173
|
disableQRDownload?: boolean;
|
|
174
174
|
}>;
|
|
175
|
-
|
|
175
|
+
|
|
176
|
+
export { ShareViaLink as default };
|
package/types/Sidebar.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { filters } from
|
|
2
|
-
import React from
|
|
3
|
-
import { NavLinkProps } from
|
|
1
|
+
import { filters } from '@bigbinary/neeto-filters-frontend';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { NavLinkProps } from 'react-router-dom';
|
|
4
|
+
|
|
4
5
|
type NavLinkItemType = {
|
|
5
6
|
to?: string;
|
|
6
7
|
label?: React.ReactNode;
|
|
@@ -40,10 +41,11 @@ type NavLinkItemType = {
|
|
|
40
41
|
* };
|
|
41
42
|
* @endexample
|
|
42
43
|
*/
|
|
43
|
-
const Sidebar: React.FC<{
|
|
44
|
+
declare const Sidebar: React.FC<{
|
|
44
45
|
navLinks?: NavLinkItemType[];
|
|
45
46
|
customLogo?: any;
|
|
46
47
|
isCountsLoading?: boolean;
|
|
47
48
|
homePath?: string;
|
|
48
49
|
}>;
|
|
49
|
-
|
|
50
|
+
|
|
51
|
+
export { Sidebar as default };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
2
3
|
/**
|
|
3
4
|
*
|
|
4
5
|
* The StatusDropdown component is used in neeto products for showing a dropdown
|
|
@@ -60,7 +61,7 @@ import React from "react";
|
|
|
60
61
|
* };
|
|
61
62
|
* @endexample
|
|
62
63
|
*/
|
|
63
|
-
const StatusDropdown: React.FC<{
|
|
64
|
+
declare const StatusDropdown: React.FC<{
|
|
64
65
|
disabled?: boolean;
|
|
65
66
|
hiddenStatuses?: Array<string>;
|
|
66
67
|
isLoading?: boolean;
|
|
@@ -69,4 +70,5 @@ const StatusDropdown: React.FC<{
|
|
|
69
70
|
selectedValue: string;
|
|
70
71
|
shouldShowAllOptions?: boolean;
|
|
71
72
|
}>;
|
|
72
|
-
|
|
73
|
+
|
|
74
|
+
export { StatusDropdown as default };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
2
3
|
/**
|
|
3
4
|
*
|
|
4
5
|
* A container that displays the sticky ribbons configured for the current neeto
|
|
@@ -22,5 +23,6 @@ import React from "react";
|
|
|
22
23
|
* );
|
|
23
24
|
* @endexample
|
|
24
25
|
*/
|
|
25
|
-
const StickyRibbonsContainer: React.FC<{}>;
|
|
26
|
-
|
|
26
|
+
declare const StickyRibbonsContainer: React.FC<{}>;
|
|
27
|
+
|
|
28
|
+
export { StickyRibbonsContainer as default };
|
package/types/SubHeader.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import {
|
|
3
|
-
import { Filters } from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { DropdownProps, CheckboxProps, InputProps } from 'neetoui';
|
|
3
|
+
import { Filters } from 'neetofilters';
|
|
4
|
+
|
|
4
5
|
type ColumnData = {
|
|
5
6
|
dataIndex: string;
|
|
6
7
|
title: string;
|
|
@@ -94,10 +95,11 @@ interface RightBlockComposition {
|
|
|
94
95
|
* );
|
|
95
96
|
* @endexample
|
|
96
97
|
*/
|
|
97
|
-
const SubHeader: React.FC<{
|
|
98
|
+
declare const SubHeader: React.FC<{
|
|
98
99
|
className?: string;
|
|
99
100
|
"data-cy"?: string;
|
|
100
101
|
leftActionBlock?: React.ReactNode;
|
|
101
102
|
rightActionBlock?: React.ReactNode;
|
|
102
103
|
}> & RightBlockComposition;
|
|
103
|
-
|
|
104
|
+
|
|
105
|
+
export { SubHeader as default };
|
package/types/SuffixedInput.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
2
3
|
/**
|
|
3
4
|
*
|
|
4
5
|
* This component can be used to display an input where the value is customizable
|
|
@@ -28,7 +29,7 @@ import React from "react";
|
|
|
28
29
|
* };
|
|
29
30
|
* @endexample
|
|
30
31
|
*/
|
|
31
|
-
const SuffixedInput: React.FC<{
|
|
32
|
+
declare const SuffixedInput: React.FC<{
|
|
32
33
|
placeholder?: string;
|
|
33
34
|
helpUrl?: string;
|
|
34
35
|
helpIconTooltipContent?: string;
|
|
@@ -40,4 +41,5 @@ const SuffixedInput: React.FC<{
|
|
|
40
41
|
name?: string;
|
|
41
42
|
inputProps?: object;
|
|
42
43
|
}>;
|
|
43
|
-
|
|
44
|
+
|
|
45
|
+
export { SuffixedInput as default };
|
package/types/TableWrapper.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
2
3
|
/**
|
|
3
4
|
*
|
|
4
5
|
* TableWrapper is used to wrap the table component. It is used to avoid the
|
|
@@ -30,9 +31,10 @@ import React from "react";
|
|
|
30
31
|
* );
|
|
31
32
|
* @endexample
|
|
32
33
|
*/
|
|
33
|
-
const TableWrapper: React.FC<{
|
|
34
|
+
declare const TableWrapper: React.FC<{
|
|
34
35
|
hasPagination?: boolean;
|
|
35
36
|
className?: string;
|
|
36
37
|
children: React.ReactNode;
|
|
37
38
|
}>;
|
|
38
|
-
|
|
39
|
+
|
|
40
|
+
export { TableWrapper as default };
|
package/types/Taxonomy.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { PopoverProps } from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { PopoverProps } from '@bigbinary/neetoui';
|
|
3
|
+
|
|
3
4
|
/**
|
|
4
5
|
*
|
|
5
6
|
* The Taxonomy component is used to manage taxonomies in a project.
|
|
@@ -39,7 +40,7 @@ import { PopoverProps } from "@bigbinary/neetoui";
|
|
|
39
40
|
* );
|
|
40
41
|
* @endexample
|
|
41
42
|
*/
|
|
42
|
-
const Taxonomy: React.FC<{
|
|
43
|
+
declare const Taxonomy: React.FC<{
|
|
43
44
|
breadcrumbs: {
|
|
44
45
|
text: string;
|
|
45
46
|
link: string;
|
|
@@ -54,4 +55,5 @@ const Taxonomy: React.FC<{
|
|
|
54
55
|
};
|
|
55
56
|
titleHelpPopoverProps?: PopoverProps;
|
|
56
57
|
}>;
|
|
57
|
-
|
|
58
|
+
|
|
59
|
+
export { Taxonomy as default };
|
package/types/TimeFormat.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 TimeFormat: {
|
|
5
|
+
declare const TimeFormat: {
|
|
10
6
|
[key in Capitalize<keyof typeof timeFormat>]: React.FC<{
|
|
11
7
|
date: DateTimeType;
|
|
12
8
|
typographyProps?: Partial<TypographyProps>;
|
|
@@ -14,4 +10,4 @@ const TimeFormat: {
|
|
|
14
10
|
}>;
|
|
15
11
|
};
|
|
16
12
|
|
|
17
|
-
export default
|
|
13
|
+
export { TimeFormat as default };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
2
3
|
/**
|
|
3
4
|
*
|
|
4
5
|
* A modal to show when the user's timezone is different from the timezone of the
|
|
@@ -32,8 +33,9 @@ import React from "react";
|
|
|
32
33
|
* );
|
|
33
34
|
* @endexample
|
|
34
35
|
*/
|
|
35
|
-
const TimezoneMismatchModal: React.FC<{
|
|
36
|
+
declare const TimezoneMismatchModal: React.FC<{
|
|
36
37
|
isOpen?: boolean;
|
|
37
38
|
onClose?: Function;
|
|
38
39
|
}>;
|
|
39
|
-
|
|
40
|
+
|
|
41
|
+
export { TimezoneMismatchModal as default };
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { InputProps, SwitchProps as
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { InputProps, ButtonProps, SwitchProps as SwitchProps$1 } from 'neetoui';
|
|
3
|
+
|
|
3
4
|
type TooltipProps = {
|
|
4
5
|
enabledSwitchText?: string;
|
|
5
6
|
disabledSwitchText?: string;
|
|
6
7
|
};
|
|
7
|
-
interface SwitchProps extends
|
|
8
|
+
interface SwitchProps extends SwitchProps$1 {
|
|
8
9
|
tooltipProps?: TooltipProps;
|
|
9
10
|
}
|
|
10
11
|
/**
|
|
@@ -18,7 +19,7 @@ interface SwitchProps extends NeetoUISwitchProps {
|
|
|
18
19
|
* 
|
|
19
20
|
*
|
|
20
21
|
*/
|
|
21
|
-
const ToggleFeatureCard: React.FC<{
|
|
22
|
+
declare const ToggleFeatureCard: React.FC<{
|
|
22
23
|
title: string;
|
|
23
24
|
description?: string;
|
|
24
25
|
switchName: string;
|
|
@@ -32,4 +33,5 @@ const ToggleFeatureCard: React.FC<{
|
|
|
32
33
|
editButtonProps?: ButtonProps;
|
|
33
34
|
className?: string;
|
|
34
35
|
}>;
|
|
35
|
-
|
|
36
|
+
|
|
37
|
+
export { ToggleFeatureCard as default };
|