jssm 5.126.0 → 5.128.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.
@@ -249,6 +249,7 @@ declare type JssmStateDeclaration = {
249
249
  backgroundColor?: JssmColor;
250
250
  borderColor?: JssmColor;
251
251
  image?: string;
252
+ url?: string;
252
253
  state: StateType;
253
254
  property?: {
254
255
  name: string;
@@ -297,12 +298,16 @@ declare type JssmStateStyleImage = {
297
298
  key: 'image';
298
299
  value: string;
299
300
  };
301
+ declare type JssmStateStyleUrl = {
302
+ key: 'url';
303
+ value: string;
304
+ };
300
305
  /**
301
306
  * Tagged union of all individual style key/value pairs that may appear in
302
307
  * a state's style configuration. The `key` discriminator selects which
303
308
  * member, and the `value` is typed accordingly.
304
309
  */
305
- declare type JssmStateStyleKey = JssmStateStyleShape | JssmStateStyleColor | JssmStateStyleTextColor | JssmStateStyleCorners | JssmStateStyleLineStyle | JssmStateStyleBackgroundColor | JssmStateStyleStateLabel | JssmStateStyleBorderColor | JssmStateStyleImage;
310
+ declare type JssmStateStyleKey = JssmStateStyleShape | JssmStateStyleColor | JssmStateStyleTextColor | JssmStateStyleCorners | JssmStateStyleLineStyle | JssmStateStyleBackgroundColor | JssmStateStyleStateLabel | JssmStateStyleBorderColor | JssmStateStyleImage | JssmStateStyleUrl;
306
311
  /**
307
312
  * An ordered list of {@link JssmStateStyleKey} entries. Used by the
308
313
  * `default_*_state_config` machine config options to provide a fallback