@omnia/velcron 8.0.553-dev → 8.0.555-dev
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,3 +1,4 @@
|
|
|
1
|
+
import { ThemeContextType } from "./theme";
|
|
1
2
|
export declare enum IconTypes {
|
|
2
3
|
FontAwesome = "IFontAwesomeIcon",
|
|
3
4
|
Fabric = "IFabricIcon",
|
|
@@ -9,6 +10,7 @@ export declare enum IconTypes {
|
|
|
9
10
|
export interface IIcon {
|
|
10
11
|
iconType: IconTypes;
|
|
11
12
|
role?: string;
|
|
13
|
+
themeType?: ThemeContextType;
|
|
12
14
|
}
|
|
13
15
|
export interface IFontAwesomeIcon extends IIcon {
|
|
14
16
|
faClass: string;
|
|
@@ -40,6 +40,7 @@ export interface BuiltInComponentRenderers {
|
|
|
40
40
|
"link": unknown;
|
|
41
41
|
"motion": unknown;
|
|
42
42
|
"scroll": unknown;
|
|
43
|
+
"markdown": unknown;
|
|
43
44
|
}
|
|
44
45
|
export interface ColorSchemaReference {
|
|
45
46
|
name: string;
|
|
@@ -327,6 +328,12 @@ export interface VelcronFlowDefinition extends VelcronDefinition, VelcronColorSt
|
|
|
327
328
|
placeholder?: VelcronBindableProp<string>;
|
|
328
329
|
events?: VelcronOnUpdatedEvent;
|
|
329
330
|
}
|
|
331
|
+
export interface VelcronMarkdownDefinition extends VelcronDefinition, VelcronColorStyling {
|
|
332
|
+
type: "markdown";
|
|
333
|
+
value?: VelcronBindableProp<string>;
|
|
334
|
+
placeholder?: VelcronBindableProp<string>;
|
|
335
|
+
events?: VelcronOnUpdatedEvent;
|
|
336
|
+
}
|
|
330
337
|
export interface VelcronMotionDefinition extends VelcronDefinition {
|
|
331
338
|
initial?: false | VariantDefinition;
|
|
332
339
|
animate?: VariantDefinition;
|
package/package.json
CHANGED