@gmb/bitmark-parser-generator 4.18.0 → 4.19.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.
package/dist/index.cjs CHANGED
@@ -3613,17 +3613,17 @@ var GROUPS = {
3613
3613
  {
3614
3614
  key: ConfigKey.property_platformMargin,
3615
3615
  description: "The platform margin",
3616
- format: TagFormat.plainText
3616
+ format: TagFormat.number
3617
3617
  },
3618
3618
  {
3619
3619
  key: ConfigKey.property_platformBorderRadius,
3620
3620
  description: "The platform border radius",
3621
- format: TagFormat.plainText
3621
+ format: TagFormat.number
3622
3622
  },
3623
3623
  {
3624
3624
  key: ConfigKey.property_platformSelectionBorderRadius,
3625
3625
  description: "The platform selection border radius",
3626
- format: TagFormat.plainText
3626
+ format: TagFormat.number
3627
3627
  },
3628
3628
  {
3629
3629
  key: ConfigKey.property_platformNeedsShadow,
@@ -8738,6 +8738,10 @@ var BITS = {
8738
8738
  }
8739
8739
  ],
8740
8740
  maxCount: 1
8741
+ },
8742
+ {
8743
+ key: ConfigKey.group_platformStylesCommon,
8744
+ description: "Common platform styles"
8741
8745
  }
8742
8746
  ]
8743
8747
  },
@@ -9198,6 +9202,7 @@ var BITS = {
9198
9202
  key: ConfigKey.property_tableHeaderWhitespaceNoWrap,
9199
9203
  description: "No wrap for table header whitespace, used to prevent header text wrapping",
9200
9204
  format: TagFormat.boolean
9205
+ // defaultValue: 'false',
9201
9206
  },
9202
9207
  {
9203
9208
  key: ConfigKey.property_tableSearch,
@@ -9230,7 +9235,7 @@ var BITS = {
9230
9235
  key: ConfigKey.property_tableWhitespaceNoWrap,
9231
9236
  description: "No wrap for table whitespace, used to prevent text wrapping in table cells",
9232
9237
  format: TagFormat.boolean
9233
- // defaultValue: 'true',
9238
+ // defaultValue: 'false',
9234
9239
  },
9235
9240
  {
9236
9241
  key: ConfigKey.property_tableAutoWidth,
@@ -10238,7 +10243,7 @@ var instance2 = new Config();
10238
10243
  // src/generated/package_info.ts
10239
10244
  var PACKAGE_INFO = {
10240
10245
  "name": "@gmb/bitmark-parser-generator",
10241
- "version": "4.18.0",
10246
+ "version": "4.19.0",
10242
10247
  "author": "Get More Brain Ltd",
10243
10248
  "license": "ISC",
10244
10249
  "description": "A bitmark parser and generator using Peggy.js"
@@ -30088,7 +30093,9 @@ var JsonGenerator = class extends AstWalkerGenerator {
30088
30093
  }
30089
30094
  if (instance2.isOfBitType(bitType, BitType.table)) {
30090
30095
  if (bitJson.tableFixedHeader == null) bitJson.tableFixedHeader = false;
30091
- if (bitJson.tableHeaderWhitespaceNoWrap == null) bitJson.tableHeaderWhitespaceNoWrap = true;
30096
+ if (bitJson.tableHeaderWhitespaceNoWrap == null) {
30097
+ bitJson.tableHeaderWhitespaceNoWrap = false;
30098
+ }
30092
30099
  if (bitJson.tableSearch == null) bitJson.tableSearch = false;
30093
30100
  if (bitJson.tableSort == null) bitJson.tableSort = false;
30094
30101
  if (bitJson.tablePagination == null) bitJson.tablePagination = false;