chore: Move packet diagram out of beta

This commit is contained in:
Sidharth Vinod
2025-04-20 14:09:27 +05:30
parent 1c1d7d0300
commit 19884294bc
11 changed files with 56 additions and 33 deletions

View File

@@ -3,7 +3,7 @@ import "../common/common";
entry Packet:
NEWLINE*
"packet-beta"
("packet"| "packet-beta")
(
TitleAndAccessibilities
| blocks+=PacketBlock
@@ -13,4 +13,4 @@ entry Packet:
PacketBlock:
start=INT('-' end=INT)? ':' label=STRING EOL
;
;

View File

@@ -2,6 +2,6 @@ import { AbstractMermaidTokenBuilder } from '../common/index.js';
export class PacketTokenBuilder extends AbstractMermaidTokenBuilder {
public constructor() {
super(['packet-beta']);
super(['packet']);
}
}