@mikezimm/fps-library-v2 1.1.177 → 1.1.178

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/CHANGELOG.md CHANGED
@@ -30,11 +30,14 @@ npm run clean
30
30
  npm run build ; npm publish --access=public; npm version patch
31
31
  npm version major/minor/patch
32
32
  npm publish --access=public
33
- npm install @mikezimm/fps-library-v2@1.1.177
33
+ npm install @mikezimm/fps-library-v2@1.1.178
34
34
 
35
35
  # Changelog
36
36
  NOTE: TURN BACK ON STRICT NULL CHECKS - turned off for PropPaneCols
37
37
 
38
+ ## 1.1.178 - 2024-May 12: SitePresetsInfo
39
+ - update LockProps table width in SitePresetsInfo
40
+
38
41
  ## 1.1.177 - 2024-May 12: certs
39
42
  - add simulateStatus with a tw1st - see docs
40
43
 
@@ -74,7 +74,7 @@ export function SitePresetsInfo(sitePresets, lockProps) {
74
74
  React.createElement("table", { className: 'configured-props' }, presetsRows));
75
75
  const lockPropsTable = !lockProps ? undefined : React.createElement("div", null,
76
76
  React.createElement("div", { className: 'fps-pph-topic' }, "Current Lock Properties:"),
77
- React.createElement("table", { style: { margin: '10px 0px 0px 15px', width: '200px' } },
77
+ React.createElement("table", { style: { margin: '10px 0px 0px 15px', width: '600px' } },
78
78
  React.createElement("tr", null,
79
79
  React.createElement("th", null, "Property"),
80
80
  React.createElement("th", null, "Value")),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikezimm/fps-library-v2",
3
- "version": "1.1.177",
3
+ "version": "1.1.178",
4
4
  "description": "Library of reusable typescript/javascript functions, interfaces and constants",
5
5
  "license": "MIT",
6
6
  "main": "./lib/index.js",