@claspo/common 7.1.3 → 7.1.4-scf.0
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;
|
|
@@ -147,6 +147,12 @@ export type ThemeColorSchemaI = Record<string, string>;
|
|
|
147
147
|
export interface ThemeI {
|
|
148
148
|
schema: ThemeColorSchemaI;
|
|
149
149
|
}
|
|
150
|
+
export interface ClDocumentCustomFontResourceI {
|
|
151
|
+
id: number;
|
|
152
|
+
name: string;
|
|
153
|
+
fontFamily: string;
|
|
154
|
+
url: string;
|
|
155
|
+
}
|
|
150
156
|
export interface ClDocumentSharedI {
|
|
151
157
|
headerFontFamily: string;
|
|
152
158
|
textFontFamily: string;
|
|
@@ -154,6 +160,7 @@ export interface ClDocumentSharedI {
|
|
|
154
160
|
[key: string]: ClDocumentSharedTextClassI;
|
|
155
161
|
};
|
|
156
162
|
googleFonts: string[];
|
|
163
|
+
customFontResources?: ClDocumentCustomFontResourceI[];
|
|
157
164
|
floatingBox?: ClFloatingBoxParamsI;
|
|
158
165
|
floatingBar?: ClFloatingBarParamsI;
|
|
159
166
|
launcher?: ClLauncherParamsI;
|