@pure-ds/core 0.7.46 → 0.7.48

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.
Files changed (31) hide show
  1. package/custom-elements.json +193 -2
  2. package/dist/types/public/assets/pds/components/pds-toaster.d.ts.map +1 -1
  3. package/dist/types/src/js/pds-core/pds-config.d.ts +4 -5
  4. package/dist/types/src/js/pds-core/pds-config.d.ts.map +1 -1
  5. package/dist/types/src/js/pds-core/pds-enhancers.d.ts.map +1 -1
  6. package/dist/types/src/js/pds-core/pds-generator.d.ts +16 -2
  7. package/dist/types/src/js/pds-core/pds-generator.d.ts.map +1 -1
  8. package/dist/types/src/js/pds-core/pds-live.d.ts.map +1 -1
  9. package/package.json +1 -1
  10. package/packages/pds-cli/bin/pds-mcp-health.js +1 -1
  11. package/packages/pds-cli/bin/pds-mcp-server.js +1 -1
  12. package/packages/pds-cli/bin/pds-setup-mcp.js +1 -1
  13. package/packages/pds-cli/bin/templates/bootstrap/esbuild-dev.cjs +65 -6
  14. package/packages/pds-cli/bin/templates/bootstrap/esbuild-dev.mjs +65 -6
  15. package/packages/pds-cli/bin/templates/bootstrap/public/assets/js/dev-reload.js +68 -9
  16. package/public/assets/js/app.js +1 -1
  17. package/public/assets/js/pds-enhancers.js +1 -1
  18. package/public/assets/js/pds-manager.js +450 -275
  19. package/public/assets/pds/components/pds-live-edit.js +1 -1
  20. package/public/assets/pds/components/pds-toaster.js +30 -4
  21. package/public/assets/pds/core/pds-enhancers.js +1 -1
  22. package/public/assets/pds/core/pds-manager.js +450 -275
  23. package/public/assets/pds/pds-css-complete.json +544 -55
  24. package/public/assets/pds/pds.css-data.json +154 -0
  25. package/public/assets/pds/vscode-custom-data.json +30 -0
  26. package/readme.md +15 -1
  27. package/src/js/pds-core/pds-config.js +63 -10
  28. package/src/js/pds-core/pds-enhancers.js +6 -1
  29. package/src/js/pds-core/pds-generator.js +773 -212
  30. package/src/js/pds-core/pds-live.js +3 -4
  31. package/src/js/pds.js +4 -4
@@ -788,16 +788,16 @@
788
788
  "description": "dark color scale - shade accent",
789
789
  "syntax": "<color>",
790
790
  "value": {
791
- "50": "#3a0e1b",
792
- "100": "#5b162a",
793
- "200": "#7c1e3a",
794
- "300": "#9c2749",
795
- "400": "#ce2d5b",
796
- "500": "#d53b68",
797
- "600": "#dc5f84",
798
- "700": "#e4839f",
799
- "800": "#f4c1d0",
800
- "900": "#f6d6e0"
791
+ "50": "#fbeaef",
792
+ "100": "#f8d3de",
793
+ "200": "#f4b2c5",
794
+ "300": "#ee85a4",
795
+ "400": "#e85882",
796
+ "500": "#e54271",
797
+ "600": "#d61e53",
798
+ "700": "#aa1742",
799
+ "800": "#7d1130",
800
+ "900": "#500b1f"
801
801
  },
802
802
  "category": "Color Tokens"
803
803
  },
@@ -824,16 +824,16 @@
824
824
  "description": "dark color scale - shade success",
825
825
  "syntax": "<color>",
826
826
  "value": {
827
- "50": "#072207",
828
- "100": "#0b330b",
829
- "200": "#115411",
830
- "300": "#187618",
831
- "400": "#1da61d",
832
- "500": "#20b820",
833
- "600": "#2ad92a",
834
- "700": "#4fe14f",
835
- "800": "#94ee94",
836
- "900": "#c1f4c1"
827
+ "50": "#d3f8d3",
828
+ "100": "#a4f3a4",
829
+ "200": "#73f273",
830
+ "300": "#44ed44",
831
+ "400": "#16e816",
832
+ "500": "#14d114",
833
+ "600": "#10a210",
834
+ "700": "#0b740b",
835
+ "800": "#074607",
836
+ "900": "#042f04"
837
837
  },
838
838
  "category": "Color Tokens"
839
839
  },
@@ -842,16 +842,16 @@
842
842
  "description": "dark color scale - shade info",
843
843
  "syntax": "<color>",
844
844
  "value": {
845
- "50": "#071c22",
846
- "100": "#0b2a33",
847
- "200": "#0e3844",
848
- "300": "#114654",
849
- "400": "#145e72",
850
- "500": "#176d84",
851
- "600": "#1e8baa",
852
- "700": "#24a9ce",
853
- "800": "#5ac7e5",
854
- "900": "#87d4e9"
845
+ "50": "#95dbee",
846
+ "100": "#65ceeb",
847
+ "200": "#32c3eb",
848
+ "300": "#15acd6",
849
+ "400": "#1087a7",
850
+ "500": "#0e7490",
851
+ "600": "#0b5e74",
852
+ "700": "#094b5d",
853
+ "800": "#073846",
854
+ "900": "#05252e"
855
855
  },
856
856
  "category": "Color Tokens"
857
857
  },
@@ -860,16 +860,16 @@
860
860
  "description": "dark color scale - shade warning",
861
861
  "syntax": "<color>",
862
862
  "value": {
863
- "50": "#251c04",
864
- "100": "#372b06",
865
- "200": "#493908",
866
- "300": "#5c480a",
867
- "400": "#8d6c0b",
868
- "500": "#a07c0d",
869
- "600": "#c89a10",
870
- "700": "#ecb718",
871
- "800": "#f6d05d",
872
- "900": "#f6dc8e"
863
+ "50": "#fae39f",
864
+ "100": "#fbd76a",
865
+ "200": "#ffcc33",
866
+ "300": "#ffbf00",
867
+ "400": "#cc9900",
868
+ "500": "#B38600",
869
+ "600": "#806000",
870
+ "700": "#664c00",
871
+ "800": "#4d3900",
872
+ "900": "#332600"
873
873
  },
874
874
  "category": "Color Tokens"
875
875
  },
@@ -878,16 +878,16 @@
878
878
  "description": "dark color scale - shade danger",
879
879
  "syntax": "<color>",
880
880
  "value": {
881
- "50": "#220707",
882
- "100": "#440e0e",
883
- "200": "#651515",
884
- "300": "#871c1c",
885
- "400": "#b82121",
886
- "500": "#ca2424",
887
- "600": "#dd3e3e",
888
- "700": "#e26262",
889
- "800": "#f2aaaa",
890
- "900": "#f6d5d5"
881
+ "50": "#fbe9e9",
882
+ "100": "#f6bbbb",
883
+ "200": "#f38b8b",
884
+ "300": "#ef5d5d",
885
+ "400": "#ea2e2e",
886
+ "500": "#e81717",
887
+ "600": "#ba1212",
888
+ "700": "#8b0e0e",
889
+ "800": "#5d0909",
890
+ "900": "#2e0505"
891
891
  },
892
892
  "category": "Color Tokens"
893
893
  },
@@ -971,7 +971,15 @@
971
971
  "syntax": "<color>",
972
972
  "value": {
973
973
  "fill": "#0b5e74",
974
- "text": "#0b5e74"
974
+ "fillHover": "#0a5568",
975
+ "fillActive": "#094b5d",
976
+ "text": "#0b5e74",
977
+ "textHover": "#0b5e74",
978
+ "textVisited": "#377989",
979
+ "focusRing": "#0b5e74",
980
+ "selectionBg": "#0b5e74",
981
+ "selectionText": "#ffffff",
982
+ "contrast": "#ffffff"
975
983
  },
976
984
  "category": "Color Tokens"
977
985
  },
@@ -981,7 +989,483 @@
981
989
  "syntax": "<color>",
982
990
  "value": {
983
991
  "fill": "#036171",
984
- "text": "#06b6d4"
992
+ "fillHover": "#0592ab",
993
+ "fillActive": "#04788c",
994
+ "text": "#06b6d4",
995
+ "textHover": "#06b6d4",
996
+ "textVisited": "#0996af",
997
+ "focusRing": "#058ba2",
998
+ "selectionBg": "#06b6d4",
999
+ "selectionText": "#000000",
1000
+ "contrast": "#ffffff"
1001
+ },
1002
+ "category": "Color Tokens"
1003
+ },
1004
+ {
1005
+ "name": "--color-accentInteractive-light",
1006
+ "description": "accentInteractive color scale - shade light",
1007
+ "syntax": "<color>",
1008
+ "value": {
1009
+ "fill": "#d61e53",
1010
+ "fillHover": "#c11b4b",
1011
+ "fillActive": "#ab1842",
1012
+ "text": "#aa1742",
1013
+ "textHover": "#aa1742",
1014
+ "textVisited": "#b64061",
1015
+ "focusRing": "#d61e53",
1016
+ "selectionBg": "#aa1742",
1017
+ "selectionText": "#ffffff",
1018
+ "contrast": "#ffffff"
1019
+ },
1020
+ "category": "Color Tokens"
1021
+ },
1022
+ {
1023
+ "name": "--color-accentInteractive-dark",
1024
+ "description": "accentInteractive color scale - shade dark",
1025
+ "syntax": "<color>",
1026
+ "value": {
1027
+ "fill": "#d61e53",
1028
+ "fillHover": "#e3396a",
1029
+ "fillActive": "#e1265c",
1030
+ "text": "#e54271",
1031
+ "textHover": "#ee85a4",
1032
+ "textVisited": "#bc3960",
1033
+ "focusRing": "#d61e53",
1034
+ "selectionBg": "#e54271",
1035
+ "selectionText": "#000000",
1036
+ "contrast": "#ffffff"
1037
+ },
1038
+ "category": "Color Tokens"
1039
+ },
1040
+ {
1041
+ "name": "--color-surfaceAccent-light",
1042
+ "description": "surfaceAccent color scale - shade light",
1043
+ "syntax": "<color>",
1044
+ "value": {
1045
+ "base": {
1046
+ "text": "#aa1742",
1047
+ "textHover": "#aa1742"
1048
+ },
1049
+ "subtle": {
1050
+ "text": "#aa1742",
1051
+ "textHover": "#aa1742"
1052
+ },
1053
+ "elevated": {
1054
+ "text": "#aa1742",
1055
+ "textHover": "#aa1742"
1056
+ },
1057
+ "sunken": {
1058
+ "text": "#aa1742",
1059
+ "textHover": "#aa1742"
1060
+ },
1061
+ "overlay": {
1062
+ "text": "#aa1742",
1063
+ "textHover": "#aa1742"
1064
+ },
1065
+ "inverse": {
1066
+ "text": "#e54271",
1067
+ "textHover": "#e85882"
1068
+ }
1069
+ },
1070
+ "category": "Color Tokens"
1071
+ },
1072
+ {
1073
+ "name": "--color-surfaceAccent-dark",
1074
+ "description": "surfaceAccent color scale - shade dark",
1075
+ "syntax": "<color>",
1076
+ "value": {
1077
+ "base": {
1078
+ "text": "#e54271",
1079
+ "textHover": "#e85882"
1080
+ },
1081
+ "subtle": {
1082
+ "text": "#e54271",
1083
+ "textHover": "#e85882"
1084
+ },
1085
+ "elevated": {
1086
+ "text": "#e54271",
1087
+ "textHover": "#e85882"
1088
+ },
1089
+ "sunken": {
1090
+ "text": "#e54271",
1091
+ "textHover": "#e85882"
1092
+ },
1093
+ "overlay": {
1094
+ "text": "#e85882",
1095
+ "textHover": "#ee85a4"
1096
+ },
1097
+ "inverse": {
1098
+ "text": "#d61e53",
1099
+ "textHover": "#aa1742"
1100
+ }
1101
+ },
1102
+ "category": "Color Tokens"
1103
+ },
1104
+ {
1105
+ "name": "--color-dangerInteractive-light",
1106
+ "description": "dangerInteractive color scale - shade light",
1107
+ "syntax": "<color>",
1108
+ "value": {
1109
+ "fill": "#ba1212",
1110
+ "fillHover": "#a71010",
1111
+ "fillActive": "#950e0e",
1112
+ "text": "#ba1212",
1113
+ "textHover": "#8b0e0e",
1114
+ "textVisited": "#c33c3b",
1115
+ "focusRing": "#ba1212",
1116
+ "selectionBg": "#ba1212",
1117
+ "selectionText": "#ffffff",
1118
+ "contrast": "#ffffff"
1119
+ },
1120
+ "category": "Color Tokens"
1121
+ },
1122
+ {
1123
+ "name": "--color-dangerInteractive-dark",
1124
+ "description": "dangerInteractive color scale - shade dark",
1125
+ "syntax": "<color>",
1126
+ "value": {
1127
+ "fill": "#ba1212",
1128
+ "fillHover": "#e41616",
1129
+ "fillActive": "#ce1414",
1130
+ "text": "#ef5d5d",
1131
+ "textHover": "#f38b8b",
1132
+ "textVisited": "#c44f50",
1133
+ "focusRing": "#e81717",
1134
+ "selectionBg": "#ef5d5d",
1135
+ "selectionText": "#000000",
1136
+ "contrast": "#ffffff"
1137
+ },
1138
+ "category": "Color Tokens"
1139
+ },
1140
+ {
1141
+ "name": "--color-successInteractive-light",
1142
+ "description": "successInteractive color scale - shade light",
1143
+ "syntax": "<color>",
1144
+ "value": {
1145
+ "fill": "#0b740b",
1146
+ "fillHover": "#0a680a",
1147
+ "fillActive": "#095d09",
1148
+ "text": "#0b740b",
1149
+ "textHover": "#074607",
1150
+ "textVisited": "#378b35",
1151
+ "focusRing": "#0b740b",
1152
+ "selectionBg": "#0b740b",
1153
+ "selectionText": "#ffffff",
1154
+ "contrast": "#ffffff"
1155
+ },
1156
+ "category": "Color Tokens"
1157
+ },
1158
+ {
1159
+ "name": "--color-successInteractive-dark",
1160
+ "description": "successInteractive color scale - shade dark",
1161
+ "syntax": "<color>",
1162
+ "value": {
1163
+ "fill": "#0b740b",
1164
+ "fillHover": "#10a810",
1165
+ "fillActive": "#0d8c0d",
1166
+ "text": "#10a210",
1167
+ "textHover": "#14d114",
1168
+ "textVisited": "#118612",
1169
+ "focusRing": "#10a210",
1170
+ "selectionBg": "#10a210",
1171
+ "selectionText": "#000000",
1172
+ "contrast": "#ffffff"
1173
+ },
1174
+ "category": "Color Tokens"
1175
+ },
1176
+ {
1177
+ "name": "--color-warningInteractive-light",
1178
+ "description": "warningInteractive color scale - shade light",
1179
+ "syntax": "<color>",
1180
+ "value": {
1181
+ "fill": "#806000",
1182
+ "fillHover": "#735600",
1183
+ "fillActive": "#664d00",
1184
+ "text": "#806000",
1185
+ "textHover": "#664c00",
1186
+ "textVisited": "#957b2c",
1187
+ "focusRing": "#806000",
1188
+ "selectionBg": "#806000",
1189
+ "selectionText": "#ffffff",
1190
+ "contrast": "#ffffff"
1191
+ },
1192
+ "category": "Color Tokens"
1193
+ },
1194
+ {
1195
+ "name": "--color-warningInteractive-dark",
1196
+ "description": "warningInteractive color scale - shade dark",
1197
+ "syntax": "<color>",
1198
+ "value": {
1199
+ "fill": "#806000",
1200
+ "fillHover": "#b98b00",
1201
+ "fillActive": "#9b7400",
1202
+ "text": "#B38600",
1203
+ "textHover": "#cc9900",
1204
+ "textVisited": "#947005",
1205
+ "focusRing": "#806000",
1206
+ "selectionBg": "#B38600",
1207
+ "selectionText": "#000000",
1208
+ "contrast": "#ffffff"
1209
+ },
1210
+ "category": "Color Tokens"
1211
+ },
1212
+ {
1213
+ "name": "--color-infoInteractive-light",
1214
+ "description": "infoInteractive color scale - shade light",
1215
+ "syntax": "<color>",
1216
+ "value": {
1217
+ "fill": "#0b5e74",
1218
+ "fillHover": "#0a5568",
1219
+ "fillActive": "#094b5d",
1220
+ "text": "#0b5e74",
1221
+ "textHover": "#0b5e74",
1222
+ "textVisited": "#377989",
1223
+ "focusRing": "#0b5e74",
1224
+ "selectionBg": "#0b5e74",
1225
+ "selectionText": "#ffffff",
1226
+ "contrast": "#ffffff"
1227
+ },
1228
+ "category": "Color Tokens"
1229
+ },
1230
+ {
1231
+ "name": "--color-infoInteractive-dark",
1232
+ "description": "infoInteractive color scale - shade dark",
1233
+ "syntax": "<color>",
1234
+ "value": {
1235
+ "fill": "#0b5e74",
1236
+ "fillHover": "#1089a8",
1237
+ "fillActive": "#0d728c",
1238
+ "text": "#15acd6",
1239
+ "textHover": "#15acd6",
1240
+ "textVisited": "#158eb0",
1241
+ "focusRing": "#0e7490",
1242
+ "selectionBg": "#15acd6",
1243
+ "selectionText": "#000000",
1244
+ "contrast": "#ffffff"
1245
+ },
1246
+ "category": "Color Tokens"
1247
+ },
1248
+ {
1249
+ "name": "--color-surfaceStatus-light",
1250
+ "description": "surfaceStatus color scale - shade light",
1251
+ "syntax": "<color>",
1252
+ "value": {
1253
+ "success": {
1254
+ "base": {
1255
+ "text": "#0b740b",
1256
+ "textHover": "#074607"
1257
+ },
1258
+ "subtle": {
1259
+ "text": "#0b740b",
1260
+ "textHover": "#074607"
1261
+ },
1262
+ "elevated": {
1263
+ "text": "#074607",
1264
+ "textHover": "#074607"
1265
+ },
1266
+ "sunken": {
1267
+ "text": "#074607",
1268
+ "textHover": "#074607"
1269
+ },
1270
+ "overlay": {
1271
+ "text": "#0b740b",
1272
+ "textHover": "#074607"
1273
+ },
1274
+ "inverse": {
1275
+ "text": "#10a210",
1276
+ "textHover": "#10a210"
1277
+ }
1278
+ },
1279
+ "warning": {
1280
+ "base": {
1281
+ "text": "#806000",
1282
+ "textHover": "#664c00"
1283
+ },
1284
+ "subtle": {
1285
+ "text": "#664c00",
1286
+ "textHover": "#664c00"
1287
+ },
1288
+ "elevated": {
1289
+ "text": "#664c00",
1290
+ "textHover": "#664c00"
1291
+ },
1292
+ "sunken": {
1293
+ "text": "#664c00",
1294
+ "textHover": "#664c00"
1295
+ },
1296
+ "overlay": {
1297
+ "text": "#806000",
1298
+ "textHover": "#664c00"
1299
+ },
1300
+ "inverse": {
1301
+ "text": "#B38600",
1302
+ "textHover": "#B38600"
1303
+ }
1304
+ },
1305
+ "info": {
1306
+ "base": {
1307
+ "text": "#0b5e74",
1308
+ "textHover": "#0b5e74"
1309
+ },
1310
+ "subtle": {
1311
+ "text": "#0b5e74",
1312
+ "textHover": "#0b5e74"
1313
+ },
1314
+ "elevated": {
1315
+ "text": "#0b5e74",
1316
+ "textHover": "#0b5e74"
1317
+ },
1318
+ "sunken": {
1319
+ "text": "#0b5e74",
1320
+ "textHover": "#0b5e74"
1321
+ },
1322
+ "overlay": {
1323
+ "text": "#0b5e74",
1324
+ "textHover": "#0b5e74"
1325
+ },
1326
+ "inverse": {
1327
+ "text": "#15acd6",
1328
+ "textHover": "#15acd6"
1329
+ }
1330
+ },
1331
+ "danger": {
1332
+ "base": {
1333
+ "text": "#ba1212",
1334
+ "textHover": "#ba1212"
1335
+ },
1336
+ "subtle": {
1337
+ "text": "#ba1212",
1338
+ "textHover": "#ba1212"
1339
+ },
1340
+ "elevated": {
1341
+ "text": "#ba1212",
1342
+ "textHover": "#8b0e0e"
1343
+ },
1344
+ "sunken": {
1345
+ "text": "#ba1212",
1346
+ "textHover": "#8b0e0e"
1347
+ },
1348
+ "overlay": {
1349
+ "text": "#ba1212",
1350
+ "textHover": "#ba1212"
1351
+ },
1352
+ "inverse": {
1353
+ "text": "#ef5d5d",
1354
+ "textHover": "#ef5d5d"
1355
+ }
1356
+ }
1357
+ },
1358
+ "category": "Color Tokens"
1359
+ },
1360
+ {
1361
+ "name": "--color-surfaceStatus-dark",
1362
+ "description": "surfaceStatus color scale - shade dark",
1363
+ "syntax": "<color>",
1364
+ "value": {
1365
+ "success": {
1366
+ "base": {
1367
+ "text": "#10a210",
1368
+ "textHover": "#10a210"
1369
+ },
1370
+ "subtle": {
1371
+ "text": "#10a210",
1372
+ "textHover": "#10a210"
1373
+ },
1374
+ "elevated": {
1375
+ "text": "#10a210",
1376
+ "textHover": "#10a210"
1377
+ },
1378
+ "sunken": {
1379
+ "text": "#10a210",
1380
+ "textHover": "#10a210"
1381
+ },
1382
+ "overlay": {
1383
+ "text": "#10a210",
1384
+ "textHover": "#10a210"
1385
+ },
1386
+ "inverse": {
1387
+ "text": "#0b740b",
1388
+ "textHover": "#0b740b"
1389
+ }
1390
+ },
1391
+ "warning": {
1392
+ "base": {
1393
+ "text": "#B38600",
1394
+ "textHover": "#B38600"
1395
+ },
1396
+ "subtle": {
1397
+ "text": "#B38600",
1398
+ "textHover": "#B38600"
1399
+ },
1400
+ "elevated": {
1401
+ "text": "#B38600",
1402
+ "textHover": "#B38600"
1403
+ },
1404
+ "sunken": {
1405
+ "text": "#B38600",
1406
+ "textHover": "#B38600"
1407
+ },
1408
+ "overlay": {
1409
+ "text": "#B38600",
1410
+ "textHover": "#B38600"
1411
+ },
1412
+ "inverse": {
1413
+ "text": "#806000",
1414
+ "textHover": "#806000"
1415
+ }
1416
+ },
1417
+ "info": {
1418
+ "base": {
1419
+ "text": "#15acd6",
1420
+ "textHover": "#15acd6"
1421
+ },
1422
+ "subtle": {
1423
+ "text": "#1087a7",
1424
+ "textHover": "#15acd6"
1425
+ },
1426
+ "elevated": {
1427
+ "text": "#1087a7",
1428
+ "textHover": "#15acd6"
1429
+ },
1430
+ "sunken": {
1431
+ "text": "#15acd6",
1432
+ "textHover": "#15acd6"
1433
+ },
1434
+ "overlay": {
1435
+ "text": "#15acd6",
1436
+ "textHover": "#15acd6"
1437
+ },
1438
+ "inverse": {
1439
+ "text": "#0b5e74",
1440
+ "textHover": "#0b5e74"
1441
+ }
1442
+ },
1443
+ "danger": {
1444
+ "base": {
1445
+ "text": "#ef5d5d",
1446
+ "textHover": "#ef5d5d"
1447
+ },
1448
+ "subtle": {
1449
+ "text": "#ef5d5d",
1450
+ "textHover": "#ef5d5d"
1451
+ },
1452
+ "elevated": {
1453
+ "text": "#ea2e2e",
1454
+ "textHover": "#ef5d5d"
1455
+ },
1456
+ "sunken": {
1457
+ "text": "#ef5d5d",
1458
+ "textHover": "#ef5d5d"
1459
+ },
1460
+ "overlay": {
1461
+ "text": "#ef5d5d",
1462
+ "textHover": "#ef5d5d"
1463
+ },
1464
+ "inverse": {
1465
+ "text": "#ba1212",
1466
+ "textHover": "#ba1212"
1467
+ }
1468
+ }
985
1469
  },
986
1470
  "category": "Color Tokens"
987
1471
  },
@@ -2274,6 +2758,11 @@
2274
2758
  "description": "Enhancement: nav[data-dropdown]",
2275
2759
  "category": "Data Enhancements"
2276
2760
  },
2761
+ {
2762
+ "name": "data-dropdown-close",
2763
+ "description": "Enhancement: [data-dropdown-close]",
2764
+ "category": "Data Enhancements"
2765
+ },
2277
2766
  {
2278
2767
  "name": "data-toggle",
2279
2768
  "description": "Enhancement: label[data-toggle]",
@@ -2297,9 +2786,9 @@
2297
2786
  ],
2298
2787
  "metadata": {
2299
2788
  "generator": "PDS CSS Data Generator",
2300
- "generatedAt": "2026-03-04T14:29:06.155Z",
2301
- "totalProperties": 169,
2789
+ "generatedAt": "2026-03-14T12:22:35.002Z",
2790
+ "totalProperties": 183,
2302
2791
  "totalClasses": 170,
2303
- "totalAttributes": 5
2792
+ "totalAttributes": 6
2304
2793
  }
2305
2794
  }