@livetiles/reach-plugin-types 0.5.0-preview.270 → 0.5.0-preview.272
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 +11 -3
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -9666,6 +9666,7 @@ declare module "libs/reach/feature/content/src/common/detail/controls/DetailView
|
|
|
9666
9666
|
export const DetailViewCsvExportButton: FC<{
|
|
9667
9667
|
path: string;
|
|
9668
9668
|
stringResource: string;
|
|
9669
|
+
isReadOnly?: boolean;
|
|
9669
9670
|
className?: string;
|
|
9670
9671
|
}>;
|
|
9671
9672
|
}
|
|
@@ -9725,6 +9726,7 @@ declare module "libs/reach/feature/content/src/common/detail/controls/DetailView
|
|
|
9725
9726
|
declare module "libs/reach/feature/content/src/common/detail/events/controls/EventDetailViewResponseExportButton" {
|
|
9726
9727
|
import { FC } from 'react';
|
|
9727
9728
|
export const EventDetailViewResponseExportButton: FC<{
|
|
9729
|
+
isReadOnly?: boolean;
|
|
9728
9730
|
className?: string;
|
|
9729
9731
|
}>;
|
|
9730
9732
|
}
|
|
@@ -9737,8 +9739,9 @@ declare module "libs/reach/feature/content/src/common/detail/events/controls/Eve
|
|
|
9737
9739
|
declare module "libs/reach/feature/content/src/common/detail/events/controls/EventDetailViewUserRegistration" {
|
|
9738
9740
|
import { FC } from 'react';
|
|
9739
9741
|
export const EventDetailViewUserRegistration: FC<{
|
|
9740
|
-
className?: string;
|
|
9741
9742
|
hideInfoMessage?: boolean;
|
|
9743
|
+
isReadOnly?: boolean;
|
|
9744
|
+
className?: string;
|
|
9742
9745
|
}>;
|
|
9743
9746
|
}
|
|
9744
9747
|
declare module "libs/reach/feature/content/src/common/detail/events/controls/EventRegistrationRegisterSomeoneElseDialog" {
|
|
@@ -9779,7 +9782,9 @@ declare module "libs/reach/feature/content/src/common/detail/events/controls/Eve
|
|
|
9779
9782
|
}
|
|
9780
9783
|
declare module "libs/reach/feature/content/src/common/detail/events/controls/EventRegistrationParticipantsLink" {
|
|
9781
9784
|
import { FC } from 'react';
|
|
9782
|
-
export const EventRegistrationParticipantsLink: FC
|
|
9785
|
+
export const EventRegistrationParticipantsLink: FC<{
|
|
9786
|
+
isReadOnly?: boolean;
|
|
9787
|
+
}>;
|
|
9783
9788
|
}
|
|
9784
9789
|
declare module "libs/reach/feature/content/src/common/detail/events/controls/EventDetailViewRegistrationPoll" {
|
|
9785
9790
|
import { FC } from 'react';
|
|
@@ -10039,12 +10044,15 @@ declare module "libs/reach/feature/content/src/feedback/EventDownloadCalendarFil
|
|
|
10039
10044
|
import { EventItem } from "libs/reach/util/common/src/index";
|
|
10040
10045
|
export const EventDownloadCalendarFileButton: FC<{
|
|
10041
10046
|
item: EventItem;
|
|
10047
|
+
isReadOnly: boolean;
|
|
10042
10048
|
className?: string;
|
|
10043
10049
|
}>;
|
|
10044
10050
|
}
|
|
10045
10051
|
declare module "libs/reach/feature/content/src/feedback/buttons/EventFeedbackButtonDownloadCalendarFile" {
|
|
10046
10052
|
import { FC } from 'react';
|
|
10047
|
-
export const EventFeedbackButtonDownloadCalendarFile: FC
|
|
10053
|
+
export const EventFeedbackButtonDownloadCalendarFile: FC<{
|
|
10054
|
+
isReadOnly: boolean;
|
|
10055
|
+
}>;
|
|
10048
10056
|
}
|
|
10049
10057
|
declare module "libs/reach/feature/content/src/feedback/ShareButton" {
|
|
10050
10058
|
import { FC } from 'react';
|