@bigbinary/neeto-molecules 3.9.9 → 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.
Files changed (79) hide show
  1. package/dist/DocumentEditor.js +5 -2
  2. package/dist/DocumentEditor.js.map +1 -1
  3. package/dist/cjs/DocumentEditor.js +5 -2
  4. package/dist/cjs/DocumentEditor.js.map +1 -1
  5. package/package.json +3 -1
  6. package/types/AuditLogs.d.ts +5 -3
  7. package/types/Breadcrumbs.d.ts +5 -3
  8. package/types/BrowserSupport.d.ts +5 -3
  9. package/types/Builder.d.ts +5 -7
  10. package/types/CalendarView.d.ts +8 -6
  11. package/types/Codeblock.d.ts +7 -5
  12. package/types/Columns.d.ts +8 -6
  13. package/types/ConfigurePageSidebar.d.ts +5 -3
  14. package/types/ConfirmationModal.d.ts +5 -3
  15. package/types/Container.d.ts +5 -3
  16. package/types/CopyToClipboardButton.d.ts +6 -4
  17. package/types/Currency.d.ts +7 -5
  18. package/types/CustomDomain.d.ts +6 -4
  19. package/types/CustomDomainDashboard.d.ts +6 -4
  20. package/types/DateFormat.d.ts +5 -9
  21. package/types/DateRangeFilter.d.ts +7 -5
  22. package/types/DeleteArchiveModal.d.ts +5 -3
  23. package/types/DeviceIncompatibilityMessage.d.ts +5 -3
  24. package/types/DocumentEditor.d.ts +6 -4
  25. package/types/DownloadMobileAppCallout.d.ts +5 -3
  26. package/types/DynamicVariables.d.ts +6 -4
  27. package/types/EmailForm.d.ts +7 -5
  28. package/types/EmailFormProvider.d.ts +3 -2
  29. package/types/EmailPreview.d.ts +5 -3
  30. package/types/EmojiPicker.d.ts +6 -4
  31. package/types/EmojiReactions.d.ts +5 -3
  32. package/types/ErrorPage.d.ts +6 -4
  33. package/types/FileUpload.d.ts +8 -6
  34. package/types/FloatingActionMenu.d.ts +6 -4
  35. package/types/GoogleFontPicker.d.ts +27 -20
  36. package/types/Header.d.ts +9 -6
  37. package/types/HelpPopover.d.ts +7 -5
  38. package/types/IconPicker.d.ts +5 -3
  39. package/types/ImageWithFallback.d.ts +5 -3
  40. package/types/InlineInput.d.ts +9 -7
  41. package/types/Insights.d.ts +5 -4
  42. package/types/IntegrationCard.d.ts +7 -5
  43. package/types/IpRestriction.d.ts +5 -3
  44. package/types/KeyboardShortcuts.d.ts +6 -4
  45. package/types/LoginPage.d.ts +5 -3
  46. package/types/MadeWith.d.ts +5 -3
  47. package/types/MenuBar.d.ts +7 -5
  48. package/types/Metadata.d.ts +5 -3
  49. package/types/MobilePreviewHeader.d.ts +5 -3
  50. package/types/MoreDropdown.d.ts +6 -4
  51. package/types/NavigationHeader.d.ts +7 -6
  52. package/types/NeetoWidget.d.ts +5 -3
  53. package/types/Onboarding.d.ts +5 -3
  54. package/types/OptionFields.d.ts +4 -2
  55. package/types/PageLoader.d.ts +5 -3
  56. package/types/PhoneNumber.d.ts +15 -13
  57. package/types/ProductEmbed.d.ts +5 -3
  58. package/types/PublishBlock.d.ts +6 -4
  59. package/types/Rename.d.ts +6 -4
  60. package/types/ResponsiveDevicePicker.d.ts +5 -3
  61. package/types/Schedule.d.ts +5 -3
  62. package/types/Scrollable.d.ts +6 -4
  63. package/types/Search.d.ts +6 -4
  64. package/types/SendToFields.d.ts +6 -4
  65. package/types/SessionEnvironment.d.ts +8 -5
  66. package/types/Settings.d.ts +5 -4
  67. package/types/ShareRecordingPane.d.ts +4 -2
  68. package/types/ShareViaEmail.d.ts +5 -3
  69. package/types/ShareViaLink.d.ts +5 -4
  70. package/types/Sidebar.d.ts +7 -5
  71. package/types/StatusDropdown.d.ts +5 -3
  72. package/types/StickyRibbonsContainer.d.ts +5 -3
  73. package/types/SubHeader.d.ts +7 -5
  74. package/types/SuffixedInput.d.ts +5 -3
  75. package/types/TableWrapper.d.ts +5 -3
  76. package/types/Taxonomy.d.ts +6 -4
  77. package/types/TimeFormat.d.ts +5 -9
  78. package/types/TimezoneMismatchModal.d.ts +5 -3
  79. package/types/ToggleFeatureCard.d.ts +7 -5
@@ -1,6 +1,7 @@
1
- import React from "react";
2
- import { CheckboxProps, DropdownProps, InputProps } from "neetoui";
3
- import { Filters } from "neetofilters";
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
- export default SubHeader;
104
+
105
+ export { SubHeader as default };
@@ -1,4 +1,5 @@
1
- import React from "react";
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
- export default SuffixedInput;
44
+
45
+ export { SuffixedInput as default };
@@ -1,4 +1,5 @@
1
- import React from "react";
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
- export default TableWrapper;
39
+
40
+ export { TableWrapper as default };
@@ -1,5 +1,6 @@
1
- import React from "react";
2
- import { PopoverProps } from "@bigbinary/neetoui";
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
- export default Taxonomy;
58
+
59
+ export { Taxonomy as default };
@@ -1,12 +1,8 @@
1
- import React from "react";
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
- import { TooltipProps, TypographyProps } from "@bigbinary/neetoui";
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 TimeFormat;
13
+ export { TimeFormat as default };
@@ -1,4 +1,5 @@
1
- import React from "react";
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
- export default TimezoneMismatchModal;
40
+
41
+ export { TimezoneMismatchModal as default };
@@ -1,10 +1,11 @@
1
- import React from "react";
2
- import { InputProps, SwitchProps as NeetoUISwitchProps, ButtonProps } from "neetoui";
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 NeetoUISwitchProps {
8
+ interface SwitchProps extends SwitchProps$1 {
8
9
  tooltipProps?: TooltipProps;
9
10
  }
10
11
  /**
@@ -18,7 +19,7 @@ interface SwitchProps extends NeetoUISwitchProps {
18
19
  * ![image](https://github.com/bigbinary/neeto-molecules/assets/66865722/ed5c589f-7086-46b9-b8b2-2746afa7e750|height=200|width=300)
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
- export default ToggleFeatureCard;
36
+
37
+ export { ToggleFeatureCard as default };