@pushwoosh/dumb-components 1.1.114 → 1.1.116
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/EmailTemplatePreview/index.d.ts +1 -0
- package/EmailTemplatePreview/index.js +2 -1
- package/Select/index.d.ts +4 -4
- package/Select/index.js +2 -2
- package/index.d.ts +2 -2
- package/index.js +1 -1
- package/package.json +1 -1
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
export { EmailTemplatePreview } from './EmailTemplatePreview';
|
|
2
|
-
export { NoEmailTemplatePreview } from './components/NoEmailTemplatePreview';
|
|
2
|
+
export { NoEmailTemplatePreview } from './components/NoEmailTemplatePreview';
|
|
3
|
+
export { replaceLocalization, replacePlaceholders } from './helpers';
|
package/Select/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { Select, SelectAsync, CreatableSelect } from './Select';
|
|
2
|
-
export { CLASS_NAME_PREFIX } from './constants';
|
|
3
|
-
export type { SelectBase, MultiSelectOptions } from './types';
|
|
4
1
|
export { components as SelectComponents } from 'react-select';
|
|
5
|
-
export type { SingleValue } from 'react-select';
|
|
2
|
+
export type { SingleValue, MultiValue } from 'react-select';
|
|
3
|
+
export { CLASS_NAME_PREFIX } from './constants';
|
|
4
|
+
export { Select, SelectAsync, CreatableSelect } from './Select';
|
|
5
|
+
export type { SelectBase, SelectOption, MultiSelectOptions } from './types';
|
package/Select/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { components as SelectComponents } from 'react-select';
|
|
2
2
|
export { CLASS_NAME_PREFIX } from './constants';
|
|
3
|
-
export {
|
|
3
|
+
export { Select, SelectAsync, CreatableSelect } from './Select';
|
package/index.d.ts
CHANGED
|
@@ -20,14 +20,14 @@ export { RadioCard } from './RadioCard';
|
|
|
20
20
|
export { ReCaptcha, useRecaptcha, asyncScriptLoad } from './ReCaptcha';
|
|
21
21
|
export { Spinner } from './Spinner';
|
|
22
22
|
export { SortButton, type SortButtonParams } from './SortButton';
|
|
23
|
-
export { Select, SelectAsync, CreatableSelect, SelectComponents, CLASS_NAME_PREFIX, type SelectBase, type MultiSelectOptions, type SingleValue, } from './Select';
|
|
23
|
+
export { Select, SelectAsync, CreatableSelect, SelectComponents, CLASS_NAME_PREFIX, type SelectBase, type SelectOption, type MultiSelectOptions, type SingleValue, type MultiValue, } from './Select';
|
|
24
24
|
export { Switch } from './Switch';
|
|
25
25
|
export { TextSkeleton, RectangularSkeleton, CircularSkeleton } from './Skeleton';
|
|
26
26
|
export { Tooltip, type TooltipPosition, TooltipTrigger } from './Tooltip';
|
|
27
27
|
export { Tab, TabBar, TabPanel, Tabs, type TabCode } from './Tabs';
|
|
28
28
|
export { Link, type LinkPropsWithoutAs, type LinkPropsWithAsTag, type LinkPropsWithAsComponent, } from './Link';
|
|
29
29
|
export { StatisticCard } from './StatisticCard';
|
|
30
|
-
export { EmailTemplatePreview, NoEmailTemplatePreview } from './EmailTemplatePreview';
|
|
30
|
+
export { EmailTemplatePreview, NoEmailTemplatePreview, replaceLocalization, replacePlaceholders } from './EmailTemplatePreview';
|
|
31
31
|
export { PushPreview } from './PushPreview';
|
|
32
32
|
export { Toast, ToastProvider, useToast } from './Toast';
|
|
33
33
|
export { AutosizeInput, PageHeader, PageHeaderEditable } from './PageHeader';
|
package/index.js
CHANGED
|
@@ -27,7 +27,7 @@ export { Tooltip, TooltipTrigger } from './Tooltip';
|
|
|
27
27
|
export { Tab, TabBar, TabPanel, Tabs } from './Tabs';
|
|
28
28
|
export { Link } from './Link';
|
|
29
29
|
export { StatisticCard } from './StatisticCard';
|
|
30
|
-
export { EmailTemplatePreview, NoEmailTemplatePreview } from './EmailTemplatePreview';
|
|
30
|
+
export { EmailTemplatePreview, NoEmailTemplatePreview, replaceLocalization, replacePlaceholders } from './EmailTemplatePreview';
|
|
31
31
|
export { PushPreview } from './PushPreview';
|
|
32
32
|
export { Toast, ToastProvider, useToast } from './Toast';
|
|
33
33
|
export { AutosizeInput, PageHeader, PageHeaderEditable } from './PageHeader';
|