@gmb/bitmark-parser-generator 4.16.1 → 4.17.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/browser/bitmark-parser-generator.min.js +1 -1
- package/dist/browser/bundle-report.html +2 -2
- package/dist/browser/cjs/index.cjs +43 -1
- package/dist/browser/cjs/index.cjs.map +1 -1
- package/dist/browser/cjs/index.d.cts +27 -0
- package/dist/browser/esm/index.d.ts +27 -0
- package/dist/browser/esm/index.js +43 -1
- package/dist/browser/esm/index.js.map +1 -1
- package/dist/index.cjs +43 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +27 -0
- package/dist/index.d.ts +27 -0
- package/dist/index.js +43 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1328,6 +1328,7 @@ var propertyKeys = {
|
|
|
1328
1328
|
// Deprecated, replaced by person
|
|
1329
1329
|
property_path: "@path",
|
|
1330
1330
|
property_platformBackgroundColor: "@platformBackgroundColor",
|
|
1331
|
+
property_platformBorderColor: "@platformBorderColor",
|
|
1331
1332
|
property_platformBrandTarget: "@platformBrandTarget",
|
|
1332
1333
|
property_platformButtonBackgroundColor: "@platformButtonBackgroundColor",
|
|
1333
1334
|
property_platformButtonPrimaryColor: "@platformButtonPrimaryColor",
|
|
@@ -1338,6 +1339,8 @@ var propertyKeys = {
|
|
|
1338
1339
|
property_platformScrollbarColor: "@platformScrollbarColor",
|
|
1339
1340
|
property_platformSecondaryColor: "@platformSecondaryColor",
|
|
1340
1341
|
property_platformSelectionColor: "@platformSelectionColor",
|
|
1342
|
+
property_platformSelectionTextColor: "@platformSelectionTextColor",
|
|
1343
|
+
property_platformBaseLayerColor: "@platformBaseLayerColor",
|
|
1341
1344
|
property_platformSeparatorColor: "@platformSeparatorColor",
|
|
1342
1345
|
property_platformTextSelectionColor: "@platformTextSelectionColor",
|
|
1343
1346
|
property_person: "@person",
|
|
@@ -3587,6 +3590,21 @@ var GROUPS = {
|
|
|
3587
3590
|
key: ConfigKey.property_platformMessageBackgroundColor,
|
|
3588
3591
|
description: "The platform section chat message background color",
|
|
3589
3592
|
format: TagFormat.plainText
|
|
3593
|
+
},
|
|
3594
|
+
{
|
|
3595
|
+
key: ConfigKey.property_platformBorderColor,
|
|
3596
|
+
description: "The platform border color",
|
|
3597
|
+
format: TagFormat.plainText
|
|
3598
|
+
},
|
|
3599
|
+
{
|
|
3600
|
+
key: ConfigKey.property_platformSelectionTextColor,
|
|
3601
|
+
description: "The platform selection text color",
|
|
3602
|
+
format: TagFormat.plainText
|
|
3603
|
+
},
|
|
3604
|
+
{
|
|
3605
|
+
key: ConfigKey.property_platformBaseLayerColor,
|
|
3606
|
+
description: "The platform base layer color",
|
|
3607
|
+
format: TagFormat.plainText
|
|
3590
3608
|
}
|
|
3591
3609
|
]
|
|
3592
3610
|
},
|
|
@@ -10196,7 +10214,7 @@ var instance2 = new Config();
|
|
|
10196
10214
|
// src/generated/package_info.ts
|
|
10197
10215
|
var PACKAGE_INFO = {
|
|
10198
10216
|
"name": "@gmb/bitmark-parser-generator",
|
|
10199
|
-
"version": "4.
|
|
10217
|
+
"version": "4.17.0",
|
|
10200
10218
|
"author": "Get More Brain Ltd",
|
|
10201
10219
|
"license": "ISC",
|
|
10202
10220
|
"description": "A bitmark parser and generator using Peggy.js"
|
|
@@ -10952,6 +10970,12 @@ var NodeType = (0, import_superenum20.superenum)({
|
|
|
10952
10970
|
platformMessageBackgroundColorValue: "platformMessageBackgroundColorValue",
|
|
10953
10971
|
platformBackgroundImage: "platformBackgroundImage",
|
|
10954
10972
|
platformBackgroundImageValue: "platformBackgroundImageValue",
|
|
10973
|
+
platformBorderColor: "platformBorderColor",
|
|
10974
|
+
platformBorderColorValue: "platformBorderColorValue",
|
|
10975
|
+
platformSelectionTextColor: "platformSelectionTextColor",
|
|
10976
|
+
platformSelectionTextColorValue: "platformSelectionTextColorValue",
|
|
10977
|
+
platformBaseLayerColor: "platformBaseLayerColor",
|
|
10978
|
+
platformBaseLayerColorValue: "platformBaseLayerColorValue",
|
|
10955
10979
|
person: "person",
|
|
10956
10980
|
pointerLeft: "pointerLeft",
|
|
10957
10981
|
pointerLeftValue: "pointerLeftValue",
|
|
@@ -24489,6 +24513,24 @@ var Builder = class extends BaseBuilder {
|
|
|
24489
24513
|
options
|
|
24490
24514
|
),
|
|
24491
24515
|
platformBackgroundImage: this.toImageResource(context, data.platformBackgroundImage),
|
|
24516
|
+
platformBorderColor: this.toAstProperty(
|
|
24517
|
+
bitType,
|
|
24518
|
+
ConfigKey.property_platformBorderColor,
|
|
24519
|
+
data.platformBorderColor,
|
|
24520
|
+
options
|
|
24521
|
+
),
|
|
24522
|
+
platformSelectionTextColor: this.toAstProperty(
|
|
24523
|
+
bitType,
|
|
24524
|
+
ConfigKey.property_platformSelectionTextColor,
|
|
24525
|
+
data.platformSelectionTextColor,
|
|
24526
|
+
options
|
|
24527
|
+
),
|
|
24528
|
+
platformBaseLayerColor: this.toAstProperty(
|
|
24529
|
+
bitType,
|
|
24530
|
+
ConfigKey.property_platformBaseLayerColor,
|
|
24531
|
+
data.platformBaseLayerColor,
|
|
24532
|
+
options
|
|
24533
|
+
),
|
|
24492
24534
|
productId: this.toAstProperty(bitType, ConfigKey.property_productId, data.productId, options),
|
|
24493
24535
|
product: this.toAstProperty(bitType, ConfigKey.property_product, data.product, options),
|
|
24494
24536
|
// productList: this.toAstProperty(
|