@claspo/common 7.1.2 → 7.1.4
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ClBaseComponentI, ClComponentType } from '../document/Document.interface';
|
|
1
|
+
import { ClBaseComponentI, ClComponentType, ClDocumentActionType } from '../document/Document.interface';
|
|
2
2
|
import { DisplayConditionCallbackI } from './DisplayCondition.interface';
|
|
3
3
|
import { PropPathConditionCallbackI } from './PropPathCondition.interface';
|
|
4
4
|
export interface PropertyPaneManifestI {
|
|
@@ -333,6 +333,12 @@ export interface OptionsPropertyPaneManifestParamsI {
|
|
|
333
333
|
optionsPropPath: string[];
|
|
334
334
|
optionsAlphabeticSortPropPath: string[];
|
|
335
335
|
integrationNamePropPath: string[];
|
|
336
|
+
actionParams?: OptionsPropertyPaneActionParamsI;
|
|
337
|
+
}
|
|
338
|
+
export interface OptionsPropertyPaneActionParamsI {
|
|
339
|
+
getRelativeSelector: (optionId: string) => string;
|
|
340
|
+
getOptionIdFromRelativeSelector: (selector: string) => string;
|
|
341
|
+
availableActions?: ClDocumentActionType[];
|
|
336
342
|
}
|
|
337
343
|
export interface DatepickerPropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
338
344
|
params: DatepickerPropertyPaneManifestParamsI;
|