jssm 5.83.0 → 5.83.1

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.
package/jssm_types.d.ts CHANGED
@@ -26,7 +26,7 @@ declare type JssmCorner = 'regular' | 'rounded' | 'lined';
26
26
  declare type JssmLineStyle = 'solid' | 'dashed' | 'dotted';
27
27
  declare const FslDirections: readonly ["up", "right", "down", "left"];
28
28
  declare type FslDirection = typeof FslDirections[number];
29
- declare const FslThemes: readonly ["default", "ocean", "modern", "plain"];
29
+ declare const FslThemes: readonly ["default", "ocean", "modern", "plain", "bold"];
30
30
  declare type FslTheme = typeof FslThemes[number];
31
31
  declare type JssmSerialization<DataType> = {
32
32
  jssm_version: string;
@@ -154,6 +154,7 @@ declare type JssmStateStyleBorderColor = {
154
154
  declare type JssmStateStyleKey = JssmStateStyleShape | JssmStateStyleColor | JssmStateStyleTextColor | JssmStateStyleCorners | JssmStateStyleLineStyle | JssmStateStyleBackgroundColor | JssmStateStyleStateLabel | JssmStateStyleBorderColor;
155
155
  declare type JssmStateStyleKeyList = JssmStateStyleKey[];
156
156
  declare type JssmBaseTheme = {
157
+ name: string;
157
158
  state: JssmStateConfig;
158
159
  hooked: JssmStateConfig;
159
160
  start: JssmStateConfig;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jssm",
3
- "version": "5.83.0",
3
+ "version": "5.83.1",
4
4
  "engines": {
5
5
  "node": ">=10.0.0"
6
6
  },
@@ -126,6 +126,7 @@
126
126
  "jest": "^27.3.1",
127
127
  "jest-json-reporter2": "^1.1.0",
128
128
  "pegjs": "^0.10.0",
129
+ "reduce-to-639-1": "^1.1.0",
129
130
  "rollup": "^2.72.1",
130
131
  "semver": "^5.7.1",
131
132
  "terser": "^5.14.2",
@@ -139,7 +140,6 @@
139
140
  },
140
141
  "dependencies": {
141
142
  "better_git_changelog": "^1.6.1",
142
- "circular_buffer_js": "^1.10.0",
143
- "reduce-to-639-1": "^1.0.4"
143
+ "circular_buffer_js": "^1.10.0"
144
144
  }
145
145
  }