You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Optional. Assigns the policy to be used for the evaluation of the relationship. Deprecation Notice: In the future, this property is either to be removed or to it is to be an array of optional policy $refs.
* An array (or a space-separated string) of numbers ranging on [-1, 1], representing alternating x and y values (i.e. x1 y1 x2 y2, x3 y3 ...). This represents the points in the polygon for the node’s shape. The bounding box of the node is given by (-1, -1), (1, -1), (1, 1), (-1, 1). The node’s position is the origin (0, 0 )
220
220
*/
221
221
"shape-polygon-points"?: string;
222
+
/**
223
+
* The colour of the background of the component menu. Colours may be specified by name (e.g. red), hex (e.g. #ff0000 or #f00), RGB (e.g. rgb(255, 0, 0)), or HSL (e.g. hsl(0, 100%, 50%)).
224
+
*/
225
+
"menu-background-color"?: string;
226
+
/**
227
+
* The opacity of the background of the component menu.
228
+
*/
229
+
"menu-background-opacity"?: number;
230
+
/**
231
+
* The colour of the text or icons in the component menu. Colours may be specified by name (e.g. red), hex (e.g. #ff0000 or #f00), RGB (e.g. rgb(255, 0, 0)), or HSL (e.g. hsl(0, 100%, 50%)).
* An array (or a space-separated string) of numbers ranging on [-1, 1], representing alternating x and y values (i.e. x1 y1 x2 y2, x3 y3 ...). This represents the points in the polygon for the node’s shape. The bounding box of the node is given by (-1, -1), (1, -1), (1, 1), (-1, 1). The node’s position is the origin (0, 0 )
220
220
*/
221
221
"shape-polygon-points"?: string;
222
+
/**
223
+
* The colour of the background of the component menu. Colours may be specified by name (e.g. red), hex (e.g. #ff0000 or #f00), RGB (e.g. rgb(255, 0, 0)), or HSL (e.g. hsl(0, 100%, 50%)).
224
+
*/
225
+
"menu-background-color"?: string;
226
+
/**
227
+
* The opacity of the background of the component menu.
228
+
*/
229
+
"menu-background-opacity"?: number;
230
+
/**
231
+
* The colour of the text or icons in the component menu. Colours may be specified by name (e.g. red), hex (e.g. #ff0000 or #f00), RGB (e.g. rgb(255, 0, 0)), or HSL (e.g. hsl(0, 100%, 50%)).
* Metadata contains additional information associated with the component.
311
325
*/
@@ -619,6 +633,11 @@ export interface Styles {
619
633
* The text to display for an element’s label. Can give a path, e.g. data(id) will label with the elements id
620
634
*/
621
635
label?: string;
636
+
/**
637
+
* The animation to apply to the element. example ripple,bounce,etc
638
+
*/
639
+
animation?: string;
640
+
[k: string]: unknown;
622
641
}
623
642
/**
624
643
* Relationships define the nature of interaction between interconnected components in Meshery. The combination of relationship properties kind, type, and subtype characterize various genealogical relations among and between components. Relationships have selectors, selector sets, metadata, and optional parameters. Learn more at https://docs.meshery.io/concepts/logical/relationships.
* Optional. Assigns the policy to be used for the evaluation of the relationship. Deprecation Notice: In the future, this property is either to be removed or to it is to be an array of optional policy $refs.
0 commit comments