@livetiles/reach-plugin-types 0.5.0-preview.571 → 0.5.0-preview.573
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/lib/index.d.ts +4 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -4471,6 +4471,7 @@ declare module "libs/reach/ui/common/src/common/FormattedMessageWithStyle" {
|
|
|
4471
4471
|
id: string;
|
|
4472
4472
|
tagName?: string;
|
|
4473
4473
|
values?: Record<string, any>;
|
|
4474
|
+
dir?: string;
|
|
4474
4475
|
}>;
|
|
4475
4476
|
}
|
|
4476
4477
|
declare module "libs/reach/ui/common/src/common/GroupedByDateTitles" {
|
|
@@ -6964,6 +6965,7 @@ declare module "libs/reach/feature/content/src/common/detail/events/controls/Eve
|
|
|
6964
6965
|
id: string;
|
|
6965
6966
|
tagName?: string;
|
|
6966
6967
|
values?: Record<string, any>;
|
|
6968
|
+
dir?: string;
|
|
6967
6969
|
}>, import("styled-components").DefaultTheme, {}, never>;
|
|
6968
6970
|
}
|
|
6969
6971
|
declare module "libs/reach/feature/content/src/common/detail/events/controls/EventRegistrationRegisterStatusInfo" {
|
|
@@ -7017,12 +7019,13 @@ declare module "libs/reach/feature/content/src/common/detail/events/controls/Eve
|
|
|
7017
7019
|
}
|
|
7018
7020
|
declare module "libs/reach/feature/content/src/common/detail/events/controls/EventCardUserRegistration" {
|
|
7019
7021
|
import { FC } from 'react';
|
|
7020
|
-
import { EventItem } from "libs/reach/util/common/src/index";
|
|
7022
|
+
import { EventItem, LanguageDirection } from "libs/reach/util/common/src/index";
|
|
7021
7023
|
export const EventCardUserRegistration: FC<{
|
|
7022
7024
|
item: EventItem;
|
|
7023
7025
|
disabled?: boolean;
|
|
7024
7026
|
showNoRegistrationRequired?: boolean;
|
|
7025
7027
|
className?: string;
|
|
7028
|
+
languageDirection?: LanguageDirection;
|
|
7026
7029
|
}>;
|
|
7027
7030
|
}
|
|
7028
7031
|
declare module "libs/reach/feature/content/src/feedback/LongPressLikeButton" {
|