@gmb/bitmark-parser-generator 3.8.0 → 3.11.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/cjs/BitmarkParserGenerator.js +1 -0
- package/dist/cjs/BitmarkParserGenerator.js.map +1 -1
- package/dist/cjs/ast/BaseBuilder.js +7 -6
- package/dist/cjs/ast/BaseBuilder.js.map +1 -1
- package/dist/cjs/ast/Builder.js +165 -160
- package/dist/cjs/ast/Builder.js.map +1 -1
- package/dist/cjs/ast/ResourceBuilder.js +68 -67
- package/dist/cjs/ast/ResourceBuilder.js.map +1 -1
- package/dist/cjs/breakscaping/Breakscape.js +1 -1
- package/dist/cjs/config/raw/bits.js +23 -0
- package/dist/cjs/config/raw/bits.js.map +1 -1
- package/dist/cjs/config/raw/cardSets.js +4 -0
- package/dist/cjs/config/raw/cardSets.js.map +1 -1
- package/dist/cjs/config/raw/groups.js +35 -0
- package/dist/cjs/config/raw/groups.js.map +1 -1
- package/dist/cjs/config/raw/properties.js +48 -0
- package/dist/cjs/config/raw/properties.js.map +1 -1
- package/dist/cjs/generated/build-info.js +1 -1
- package/dist/cjs/generated/build-info.js.map +1 -1
- package/dist/cjs/generated/parser/text/text-peggy-parser.js +960 -595
- package/dist/cjs/generated/parser/text/text-peggy-parser.js.map +1 -1
- package/dist/cjs/generator/bitmark/BitmarkGenerator.js +8 -0
- package/dist/cjs/generator/bitmark/BitmarkGenerator.js.map +1 -1
- package/dist/cjs/generator/json/JsonGenerator.js +16 -9
- package/dist/cjs/generator/json/JsonGenerator.js.map +1 -1
- package/dist/cjs/generator/text/TextGenerator.js +84 -38
- package/dist/cjs/generator/text/TextGenerator.js.map +1 -1
- package/dist/cjs/model/ast/NodeType.js +18 -0
- package/dist/cjs/model/ast/NodeType.js.map +1 -1
- package/dist/cjs/model/config/enum/PropertyConfigKey.js +10 -0
- package/dist/cjs/model/config/enum/PropertyConfigKey.js.map +1 -1
- package/dist/cjs/model/enum/BitType.js +10 -0
- package/dist/cjs/model/enum/BitType.js.map +1 -1
- package/dist/cjs/model/enum/TextMarkType.js +2 -0
- package/dist/cjs/model/enum/TextMarkType.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/BitmarkPegParserProcessor.js +28 -20
- package/dist/cjs/parser/bitmark/peg/BitmarkPegParserProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/BitmarkPegParserTypes.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/BitmarkPegParserValidator.js +11 -10
- package/dist/cjs/parser/bitmark/peg/BitmarkPegParserValidator.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/BodyContentProcessor.js +1 -0
- package/dist/cjs/parser/bitmark/peg/contentProcessors/BodyContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.js +5 -6
- package/dist/cjs/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/CardContentProcessor.js +5 -4
- package/dist/cjs/parser/bitmark/peg/contentProcessors/CardContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.js +3 -2
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.js +5 -4
- package/dist/cjs/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.js +20 -12
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/FooterContentProcessor.js +4 -2
- package/dist/cjs/parser/bitmark/peg/contentProcessors/FooterContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.js +5 -5
- package/dist/cjs/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.js +7 -7
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/InternalCommentTagContentProcessor.js +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/InternalCommentTagContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ItemLeadChainContentProcessor.js +5 -5
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ItemLeadChainContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.js +6 -2
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.js +6 -6
- package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.js +2 -2
- package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkTagContentProcessor.js +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkTagContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/PersonChainContentProcessor.js +2 -2
- package/dist/cjs/parser/bitmark/peg/contentProcessors/PersonChainContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js +19 -13
- package/dist/cjs/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.js +4 -3
- package/dist/cjs/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.js +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js +11 -10
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ServingsChainContentProcessor.js +2 -2
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ServingsChainContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/TechnicalTermChainContentProcessor.js +2 -2
- package/dist/cjs/parser/bitmark/peg/contentProcessors/TechnicalTermChainContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.js +6 -2
- package/dist/cjs/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.js +19 -16
- package/dist/cjs/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.js +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.js.map +1 -1
- package/dist/cjs/parser/text/TextParser.js +7 -6
- package/dist/cjs/parser/text/TextParser.js.map +1 -1
- package/dist/cjs/utils/BitUtils.js +2 -2
- package/dist/cjs/utils/BitUtils.js.map +1 -1
- package/dist/esm/BitmarkParserGenerator.js +1 -0
- package/dist/esm/BitmarkParserGenerator.js.map +1 -1
- package/dist/esm/ast/BaseBuilder.js +7 -6
- package/dist/esm/ast/BaseBuilder.js.map +1 -1
- package/dist/esm/ast/Builder.js +165 -160
- package/dist/esm/ast/Builder.js.map +1 -1
- package/dist/esm/ast/ResourceBuilder.js +68 -67
- package/dist/esm/ast/ResourceBuilder.js.map +1 -1
- package/dist/esm/breakscaping/Breakscape.js +1 -1
- package/dist/esm/config/raw/bits.js +23 -0
- package/dist/esm/config/raw/bits.js.map +1 -1
- package/dist/esm/config/raw/cardSets.js +4 -0
- package/dist/esm/config/raw/cardSets.js.map +1 -1
- package/dist/esm/config/raw/groups.js +35 -0
- package/dist/esm/config/raw/groups.js.map +1 -1
- package/dist/esm/config/raw/properties.js +48 -0
- package/dist/esm/config/raw/properties.js.map +1 -1
- package/dist/esm/generated/build-info.js +1 -1
- package/dist/esm/generated/build-info.js.map +1 -1
- package/dist/esm/generated/parser/text/text-peggy-parser.js +960 -595
- package/dist/esm/generated/parser/text/text-peggy-parser.js.map +1 -1
- package/dist/esm/generator/bitmark/BitmarkGenerator.js +8 -0
- package/dist/esm/generator/bitmark/BitmarkGenerator.js.map +1 -1
- package/dist/esm/generator/json/JsonGenerator.js +16 -9
- package/dist/esm/generator/json/JsonGenerator.js.map +1 -1
- package/dist/esm/generator/text/TextGenerator.js +84 -38
- package/dist/esm/generator/text/TextGenerator.js.map +1 -1
- package/dist/esm/model/ast/NodeType.js +18 -0
- package/dist/esm/model/ast/NodeType.js.map +1 -1
- package/dist/esm/model/config/enum/PropertyConfigKey.js +10 -0
- package/dist/esm/model/config/enum/PropertyConfigKey.js.map +1 -1
- package/dist/esm/model/enum/BitType.js +10 -0
- package/dist/esm/model/enum/BitType.js.map +1 -1
- package/dist/esm/model/enum/TextMarkType.js +2 -0
- package/dist/esm/model/enum/TextMarkType.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/BitmarkPegParserProcessor.js +28 -20
- package/dist/esm/parser/bitmark/peg/BitmarkPegParserProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/BitmarkPegParserTypes.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/BitmarkPegParserValidator.js +11 -10
- package/dist/esm/parser/bitmark/peg/BitmarkPegParserValidator.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/BodyContentProcessor.js +1 -0
- package/dist/esm/parser/bitmark/peg/contentProcessors/BodyContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.js +5 -6
- package/dist/esm/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/CardContentProcessor.js +5 -4
- package/dist/esm/parser/bitmark/peg/contentProcessors/CardContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.js +3 -2
- package/dist/esm/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.js +5 -4
- package/dist/esm/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.js +20 -12
- package/dist/esm/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/FooterContentProcessor.js +4 -2
- package/dist/esm/parser/bitmark/peg/contentProcessors/FooterContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.js +5 -5
- package/dist/esm/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.js +7 -7
- package/dist/esm/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/InternalCommentTagContentProcessor.js +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/InternalCommentTagContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/ItemLeadChainContentProcessor.js +5 -5
- package/dist/esm/parser/bitmark/peg/contentProcessors/ItemLeadChainContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.js +6 -2
- package/dist/esm/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.js +6 -6
- package/dist/esm/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.js +2 -2
- package/dist/esm/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/MarkTagContentProcessor.js +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/MarkTagContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/PersonChainContentProcessor.js +2 -2
- package/dist/esm/parser/bitmark/peg/contentProcessors/PersonChainContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js +19 -13
- package/dist/esm/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.js +4 -3
- package/dist/esm/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.js +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js +11 -10
- package/dist/esm/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/ServingsChainContentProcessor.js +2 -2
- package/dist/esm/parser/bitmark/peg/contentProcessors/ServingsChainContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/TechnicalTermChainContentProcessor.js +2 -2
- package/dist/esm/parser/bitmark/peg/contentProcessors/TechnicalTermChainContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.js +6 -2
- package/dist/esm/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.js +19 -16
- package/dist/esm/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.js +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.js.map +1 -1
- package/dist/esm/parser/text/TextParser.js +7 -6
- package/dist/esm/parser/text/TextParser.js.map +1 -1
- package/dist/esm/utils/BitUtils.js +2 -2
- package/dist/esm/utils/BitUtils.js.map +1 -1
- package/dist/types/BitmarkParserGenerator.d.ts.map +1 -1
- package/dist/types/ast/BaseBuilder.d.ts +8 -1
- package/dist/types/ast/BaseBuilder.d.ts.map +1 -1
- package/dist/types/ast/Builder.d.ts +60 -50
- package/dist/types/ast/Builder.d.ts.map +1 -1
- package/dist/types/ast/ResourceBuilder.d.ts +21 -22
- package/dist/types/ast/ResourceBuilder.d.ts.map +1 -1
- package/dist/types/config/raw/bits.d.ts.map +1 -1
- package/dist/types/config/raw/cardSets.d.ts.map +1 -1
- package/dist/types/config/raw/groups.d.ts.map +1 -1
- package/dist/types/config/raw/properties.d.ts.map +1 -1
- package/dist/types/generated/parser/text/text-peggy-parser.d.ts.map +1 -1
- package/dist/types/generator/bitmark/BitmarkGenerator.d.ts +1 -0
- package/dist/types/generator/bitmark/BitmarkGenerator.d.ts.map +1 -1
- package/dist/types/generator/json/JsonGenerator.d.ts +3 -1
- package/dist/types/generator/json/JsonGenerator.d.ts.map +1 -1
- package/dist/types/generator/text/TextGenerator.d.ts +4 -1
- package/dist/types/generator/text/TextGenerator.d.ts.map +1 -1
- package/dist/types/model/ast/NodeType.d.ts +36 -0
- package/dist/types/model/ast/NodeType.d.ts.map +1 -1
- package/dist/types/model/ast/Nodes.d.ts +10 -0
- package/dist/types/model/ast/Nodes.d.ts.map +1 -1
- package/dist/types/model/ast/TextNodes.d.ts +26 -9
- package/dist/types/model/ast/TextNodes.d.ts.map +1 -1
- package/dist/types/model/config/enum/ConfigKey.d.ts +20 -0
- package/dist/types/model/config/enum/ConfigKey.d.ts.map +1 -1
- package/dist/types/model/config/enum/PropertyConfigKey.d.ts +30 -0
- package/dist/types/model/config/enum/PropertyConfigKey.d.ts.map +1 -1
- package/dist/types/model/enum/BitType.d.ts +20 -0
- package/dist/types/model/enum/BitType.d.ts.map +1 -1
- package/dist/types/model/enum/PropertyTag.d.ts +20 -0
- package/dist/types/model/enum/PropertyTag.d.ts.map +1 -1
- package/dist/types/model/enum/TextMarkType.d.ts +4 -0
- package/dist/types/model/enum/TextMarkType.d.ts.map +1 -1
- package/dist/types/model/json/BitJson.d.ts +10 -0
- package/dist/types/model/json/BitJson.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/BitmarkPegParserProcessor.d.ts +0 -2
- package/dist/types/parser/bitmark/peg/BitmarkPegParserProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/BitmarkPegParserTypes.d.ts +6 -1
- package/dist/types/parser/bitmark/peg/BitmarkPegParserTypes.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/BitmarkPegParserValidator.d.ts +3 -4
- package/dist/types/parser/bitmark/peg/BitmarkPegParserValidator.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/BodyContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.d.ts +1 -3
- package/dist/types/parser/bitmark/peg/contentProcessors/BookChainContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/CardContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.d.ts +1 -3
- package/dist/types/parser/bitmark/peg/contentProcessors/ClozeTagContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.d.ts +1 -3
- package/dist/types/parser/bitmark/peg/contentProcessors/DefaultTagContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.d.ts +1 -3
- package/dist/types/parser/bitmark/peg/contentProcessors/ExampleTagContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/FooterContentProcessor.d.ts +1 -3
- package/dist/types/parser/bitmark/peg/contentProcessors/FooterContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.d.ts +1 -3
- package/dist/types/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.d.ts +1 -3
- package/dist/types/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/InternalCommentTagContentProcessor.d.ts +1 -2
- package/dist/types/parser/bitmark/peg/contentProcessors/InternalCommentTagContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/ItemLeadChainContentProcessor.d.ts +1 -3
- package/dist/types/parser/bitmark/peg/contentProcessors/ItemLeadChainContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.d.ts +1 -3
- package/dist/types/parser/bitmark/peg/contentProcessors/ItemLeadTagContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.d.ts +1 -3
- package/dist/types/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.d.ts +1 -3
- package/dist/types/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/MarkTagContentProcessor.d.ts +1 -2
- package/dist/types/parser/bitmark/peg/contentProcessors/MarkTagContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/PersonChainContentProcessor.d.ts +1 -3
- package/dist/types/parser/bitmark/peg/contentProcessors/PersonChainContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.d.ts +1 -3
- package/dist/types/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.d.ts +1 -3
- package/dist/types/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.d.ts +1 -3
- package/dist/types/parser/bitmark/peg/contentProcessors/ReferenceTagContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.d.ts +3 -5
- package/dist/types/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/ServingsChainContentProcessor.d.ts +1 -3
- package/dist/types/parser/bitmark/peg/contentProcessors/ServingsChainContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/TechnicalTermChainContentProcessor.d.ts +1 -3
- package/dist/types/parser/bitmark/peg/contentProcessors/TechnicalTermChainContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.d.ts +1 -2
- package/dist/types/parser/bitmark/peg/contentProcessors/TitleTagContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.d.ts +1 -3
- package/dist/types/parser/bitmark/peg/contentProcessors/TrueFalseChainContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.d.ts +1 -3
- package/dist/types/parser/bitmark/peg/contentProcessors/TrueFalseTagContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/text/TextParser.d.ts +3 -2
- package/dist/types/parser/text/TextParser.d.ts.map +1 -1
- package/dist/types/utils/BitUtils.d.ts +2 -1
- package/dist/types/utils/BitUtils.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -22,6 +22,7 @@ export interface Bit {
|
|
|
22
22
|
id?: Property;
|
|
23
23
|
internalComment?: Property;
|
|
24
24
|
customerId?: Property;
|
|
25
|
+
customerExternalId?: Property;
|
|
25
26
|
externalId?: Property;
|
|
26
27
|
spaceId?: Property;
|
|
27
28
|
padletId?: Property;
|
|
@@ -32,9 +33,16 @@ export interface Bit {
|
|
|
32
33
|
machineTranslated?: Property;
|
|
33
34
|
searchIndex?: Property;
|
|
34
35
|
analyticsTag?: Property;
|
|
36
|
+
categoryTag?: Property;
|
|
37
|
+
topicTag?: Property;
|
|
38
|
+
altLangTag?: Property;
|
|
35
39
|
feedbackEngine?: Property;
|
|
36
40
|
feedbackType?: Property;
|
|
37
41
|
disableFeedback?: Property;
|
|
42
|
+
diffOp?: Property;
|
|
43
|
+
diffRef?: Property;
|
|
44
|
+
diffContext?: Property;
|
|
45
|
+
diffTime?: Property;
|
|
38
46
|
releaseVersion?: Property;
|
|
39
47
|
releaseKind?: Property;
|
|
40
48
|
releaseDate?: Property;
|
|
@@ -60,6 +68,7 @@ export interface Bit {
|
|
|
60
68
|
flashcardSet?: Property;
|
|
61
69
|
subtype?: Property;
|
|
62
70
|
bookAlias?: Property;
|
|
71
|
+
bookDiff?: Property;
|
|
63
72
|
coverImage?: Property;
|
|
64
73
|
coverColor?: Property;
|
|
65
74
|
publications?: Property;
|
|
@@ -78,6 +87,7 @@ export interface Bit {
|
|
|
78
87
|
refAuthor?: Property;
|
|
79
88
|
refBookTitle?: Property;
|
|
80
89
|
refPublisher?: Property;
|
|
90
|
+
refPublicationYear?: Property;
|
|
81
91
|
citationStyle?: Property;
|
|
82
92
|
blockId?: Property;
|
|
83
93
|
pageNo?: Property;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Nodes.d.ts","sourceRoot":"","sources":["../../../../src/model/ast/Nodes.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"Nodes.d.ts","sourceRoot":"","sources":["../../../../src/model/ast/Nodes.ts"],"names":[],"mappings":"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"}
|
|
@@ -30,10 +30,18 @@ export interface XRefMark {
|
|
|
30
30
|
type: 'xref';
|
|
31
31
|
attrs?: XRefMarkAttibutes;
|
|
32
32
|
}
|
|
33
|
+
export interface ExtRefMark {
|
|
34
|
+
type: 'extref';
|
|
35
|
+
attrs?: ExtRefMarkAttibutes;
|
|
36
|
+
}
|
|
33
37
|
export interface FootnoteMark {
|
|
34
38
|
type: 'footnote';
|
|
35
39
|
attrs?: FootnoteAttibutes;
|
|
36
40
|
}
|
|
41
|
+
export interface SymbolMark {
|
|
42
|
+
type: 'symbol';
|
|
43
|
+
attrs?: SymbolMarkAttibutes;
|
|
44
|
+
}
|
|
37
45
|
export interface HeadingTextNode extends TextNode {
|
|
38
46
|
type: 'heading';
|
|
39
47
|
attrs?: HeadingTextNodeAttributes;
|
|
@@ -71,15 +79,7 @@ export interface HeadingTextNodeAttributes extends TextNodeAttibutes {
|
|
|
71
79
|
export interface TaskItemTextNodeAttributes extends TextNodeAttibutes {
|
|
72
80
|
checked: boolean;
|
|
73
81
|
}
|
|
74
|
-
export interface ImageTextNodeAttributes extends TextNodeAttibutes {
|
|
75
|
-
src: string;
|
|
76
|
-
alt: string | null;
|
|
77
|
-
title: string | null;
|
|
78
|
-
textAlign: string;
|
|
79
|
-
width: string | number | null;
|
|
80
|
-
height: string | number | null;
|
|
81
|
-
class: string;
|
|
82
|
-
comment: string;
|
|
82
|
+
export interface ImageTextNodeAttributes extends TextNodeAttibutes, MediaAttributes {
|
|
83
83
|
}
|
|
84
84
|
export interface CodeBlockTextNodeAttributes extends TextNodeAttibutes {
|
|
85
85
|
language: string;
|
|
@@ -103,7 +103,24 @@ export interface XRefMarkAttibutes extends TextMarkAttibutes {
|
|
|
103
103
|
xref: string;
|
|
104
104
|
reference: string;
|
|
105
105
|
}
|
|
106
|
+
export interface ExtRefMarkAttibutes extends TextMarkAttibutes, MediaAttributes {
|
|
107
|
+
extref: string;
|
|
108
|
+
references: string[];
|
|
109
|
+
provider: string;
|
|
110
|
+
}
|
|
106
111
|
export interface FootnoteAttibutes extends TextMarkAttibutes {
|
|
107
112
|
content: TextNode[];
|
|
108
113
|
}
|
|
114
|
+
export interface SymbolMarkAttibutes extends TextMarkAttibutes, MediaAttributes {
|
|
115
|
+
}
|
|
116
|
+
export interface MediaAttributes {
|
|
117
|
+
src: string;
|
|
118
|
+
alt: string | null;
|
|
119
|
+
title: string | null;
|
|
120
|
+
textAlign: string;
|
|
121
|
+
width: string | number | null;
|
|
122
|
+
height: string | number | null;
|
|
123
|
+
class: string;
|
|
124
|
+
comment: string;
|
|
125
|
+
}
|
|
109
126
|
//# sourceMappingURL=TextNodes.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TextNodes.d.ts","sourceRoot":"","sources":["../../../../src/model/ast/TextNodes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AACxD,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAExD,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG,OAAO,CAAC;AAExC,MAAM,MAAM,OAAO,GAAG,QAAQ,EAAE,CAAC;AAEjC,MAAM,WAAW,QAAQ;IACvB,IAAI,EAAE,gBAAgB,CAAC;IACvB,KAAK,CAAC,EAAE,QAAQ,EAAE,CAAC;IACnB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,QAAQ,EAAE,CAAC;IACrB,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAC1B,KAAK,CAAC,EAAE,iBAAiB,CAAC;CAC3B;AAED,MAAM,WAAW,QAAQ;IACvB,IAAI,EAAE,gBAAgB,CAAC;IACvB,KAAK,CAAC,EAAE,iBAAiB,CAAC;CAC3B;AAED,MAAM,WAAW,QAAQ;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,iBAAiB,CAAC;CAC3B;AAED,MAAM,WAAW,WAAW;IAC1B,IAAI,EAAE,SAAS,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,OAAO;IACtB,IAAI,EAAE,KAAK,CAAC;IACZ,KAAK,CAAC,EAAE,gBAAgB,CAAC;CAC1B;AAED,MAAM,WAAW,QAAQ;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,iBAAiB,CAAC;CAC3B;AAED,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,UAAU,CAAC;IACjB,KAAK,CAAC,EAAE,iBAAiB,CAAC;CAC3B;AAED,MAAM,WAAW,eAAgB,SAAQ,QAAQ;IAC/C,IAAI,EAAE,SAAS,CAAC;IAChB,KAAK,CAAC,EAAE,yBAAyB,CAAC;CACnC;AAED,MAAM,WAAW,eAAgB,SAAQ,QAAQ;IAC/C,IAAI,EAAE,SAAS,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,gBAAiB,SAAQ,QAAQ;IAChD,IAAI,EAAE,UAAU,CAAC;IACjB,KAAK,CAAC,EAAE,0BAA0B,CAAC;CACpC;AAED,MAAM,WAAW,aAAc,SAAQ,QAAQ;IAC7C,IAAI,EAAE,OAAO,CAAC;IACd,KAAK,CAAC,EAAE,uBAAuB,CAAC;CACjC;AAED,MAAM,WAAW,iBAAkB,SAAQ,QAAQ;IACjD,IAAI,EAAE,WAAW,CAAC;IAClB,KAAK,CAAC,EAAE,2BAA2B,CAAC;CACrC;AAED,MAAM,WAAW,aAAc,SAAQ,QAAQ;IAC7C,IAAI,EAAE,OAAO,CAAC;IACd,KAAK,CAAC,EAAE,sBAAsB,CAAC;CAChC;AAED,MAAM,WAAW,YAAa,SAAQ,QAAQ;IAC5C,IAAI,EACA,cAAc,GACd,YAAY,GACZ,aAAa,GACb,kBAAkB,GAClB,uBAAuB,GACvB,cAAc,GACd,mBAAmB,CAAC;IACxB,KAAK,CAAC,EAAE,sBAAsB,CAAC;CAChC;AAED,MAAM,WAAW,iBAAiB;IAChC,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,yBAA0B,SAAQ,iBAAiB;IAClE,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,0BAA2B,SAAQ,iBAAiB;IACnE,OAAO,EAAE,OAAO,CAAC;CAClB;AAED,MAAM,WAAW,uBAAwB,SAAQ,iBAAiB
|
|
1
|
+
{"version":3,"file":"TextNodes.d.ts","sourceRoot":"","sources":["../../../../src/model/ast/TextNodes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AACxD,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAExD,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG,OAAO,CAAC;AAExC,MAAM,MAAM,OAAO,GAAG,QAAQ,EAAE,CAAC;AAEjC,MAAM,WAAW,QAAQ;IACvB,IAAI,EAAE,gBAAgB,CAAC;IACvB,KAAK,CAAC,EAAE,QAAQ,EAAE,CAAC;IACnB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,QAAQ,EAAE,CAAC;IACrB,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAC1B,KAAK,CAAC,EAAE,iBAAiB,CAAC;CAC3B;AAED,MAAM,WAAW,QAAQ;IACvB,IAAI,EAAE,gBAAgB,CAAC;IACvB,KAAK,CAAC,EAAE,iBAAiB,CAAC;CAC3B;AAED,MAAM,WAAW,QAAQ;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,iBAAiB,CAAC;CAC3B;AAED,MAAM,WAAW,WAAW;IAC1B,IAAI,EAAE,SAAS,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,OAAO;IACtB,IAAI,EAAE,KAAK,CAAC;IACZ,KAAK,CAAC,EAAE,gBAAgB,CAAC;CAC1B;AAED,MAAM,WAAW,QAAQ;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,iBAAiB,CAAC;CAC3B;AAED,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,QAAQ,CAAC;IACf,KAAK,CAAC,EAAE,mBAAmB,CAAC;CAC7B;AAED,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,UAAU,CAAC;IACjB,KAAK,CAAC,EAAE,iBAAiB,CAAC;CAC3B;AAED,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,QAAQ,CAAC;IACf,KAAK,CAAC,EAAE,mBAAmB,CAAC;CAC7B;AAED,MAAM,WAAW,eAAgB,SAAQ,QAAQ;IAC/C,IAAI,EAAE,SAAS,CAAC;IAChB,KAAK,CAAC,EAAE,yBAAyB,CAAC;CACnC;AAED,MAAM,WAAW,eAAgB,SAAQ,QAAQ;IAC/C,IAAI,EAAE,SAAS,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,gBAAiB,SAAQ,QAAQ;IAChD,IAAI,EAAE,UAAU,CAAC;IACjB,KAAK,CAAC,EAAE,0BAA0B,CAAC;CACpC;AAED,MAAM,WAAW,aAAc,SAAQ,QAAQ;IAC7C,IAAI,EAAE,OAAO,CAAC;IACd,KAAK,CAAC,EAAE,uBAAuB,CAAC;CACjC;AAED,MAAM,WAAW,iBAAkB,SAAQ,QAAQ;IACjD,IAAI,EAAE,WAAW,CAAC;IAClB,KAAK,CAAC,EAAE,2BAA2B,CAAC;CACrC;AAED,MAAM,WAAW,aAAc,SAAQ,QAAQ;IAC7C,IAAI,EAAE,OAAO,CAAC;IACd,KAAK,CAAC,EAAE,sBAAsB,CAAC;CAChC;AAED,MAAM,WAAW,YAAa,SAAQ,QAAQ;IAC5C,IAAI,EACA,cAAc,GACd,YAAY,GACZ,aAAa,GACb,kBAAkB,GAClB,uBAAuB,GACvB,cAAc,GACd,mBAAmB,CAAC;IACxB,KAAK,CAAC,EAAE,sBAAsB,CAAC;CAChC;AAED,MAAM,WAAW,iBAAiB;IAChC,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,yBAA0B,SAAQ,iBAAiB;IAClE,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,0BAA2B,SAAQ,iBAAiB;IACnE,OAAO,EAAE,OAAO,CAAC;CAClB;AAED,MAAM,WAAW,uBAAwB,SAAQ,iBAAiB,EAAE,eAAe;CAElF;AAED,MAAM,WAAW,2BAA4B,SAAQ,iBAAiB;IACpE,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,sBAAuB,SAAQ,iBAAiB;IAC/D,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,sBAAuB,SAAQ,iBAAiB;IAC/D,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,iBAAiB;CAEjC;AAED,MAAM,WAAW,iBAAkB,SAAQ,iBAAiB;IAC1D,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,gBAAiB,SAAQ,iBAAiB;IACzD,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,iBAAkB,SAAQ,iBAAiB;IAC1D,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,mBAAoB,SAAQ,iBAAiB,EAAE,eAAe;IAC7E,MAAM,EAAE,MAAM,CAAC;IACf,UAAU,EAAE,MAAM,EAAE,CAAC;IACrB,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,iBAAkB,SAAQ,iBAAiB;IAC1D,OAAO,EAAE,QAAQ,EAAE,CAAC;CACrB;AAED,MAAM,WAAW,mBAAoB,SAAQ,iBAAiB,EAAE,eAAe;CAE9E;AAED,MAAM,WAAW,eAAe;IAC9B,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,GAAG,IAAI,CAAC;IACnB,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC;IAC9B,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC;IAC/B,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;CACjB"}
|
|
@@ -77,6 +77,7 @@ declare const ConfigKey: Readonly<{
|
|
|
77
77
|
allowedBit: "allowedBit";
|
|
78
78
|
allowSubtitles: "allowSubtitles";
|
|
79
79
|
alt: "alt";
|
|
80
|
+
altLangTag: "altLangTag";
|
|
80
81
|
author: "author";
|
|
81
82
|
autoplay: "autoplay";
|
|
82
83
|
availableClassifications: "availableClassifications";
|
|
@@ -84,11 +85,13 @@ declare const ConfigKey: Readonly<{
|
|
|
84
85
|
blockId: "blockId";
|
|
85
86
|
book: "book";
|
|
86
87
|
bookAlias: "bookAlias";
|
|
88
|
+
bookDiff: "bookDiff";
|
|
87
89
|
bot: "bot";
|
|
88
90
|
bubbleTag: "bubbleTag";
|
|
89
91
|
buttonCaption: "buttonCaption";
|
|
90
92
|
callToActionUrl: "callToActionUrl";
|
|
91
93
|
caption: "caption";
|
|
94
|
+
categoryTag: "categoryTag";
|
|
92
95
|
chatWithBook: "chatWithBook";
|
|
93
96
|
chatWithBookBrainKey: "chatWithBookBrainKey";
|
|
94
97
|
citationStyle: "citationStyle";
|
|
@@ -102,6 +105,7 @@ declare const ConfigKey: Readonly<{
|
|
|
102
105
|
copyright: "copyright";
|
|
103
106
|
coverColor: "coverColor";
|
|
104
107
|
coverImage: "coverImage";
|
|
108
|
+
customerExternalId: "customerExternalId";
|
|
105
109
|
customerId: "customerId";
|
|
106
110
|
date: "date";
|
|
107
111
|
dateEnd: "dateEnd";
|
|
@@ -109,6 +113,10 @@ declare const ConfigKey: Readonly<{
|
|
|
109
113
|
deeplink: "deeplink";
|
|
110
114
|
disableCalculation: "disableCalculation";
|
|
111
115
|
disableFeedback: "disableFeedback";
|
|
116
|
+
diffOp: "diffOp";
|
|
117
|
+
diffRef: "diffRef";
|
|
118
|
+
diffContext: "diffContext";
|
|
119
|
+
diffTime: "diffTime";
|
|
112
120
|
duration: "duration";
|
|
113
121
|
emphasis: "emphasis";
|
|
114
122
|
example: "example";
|
|
@@ -199,6 +207,7 @@ declare const ConfigKey: Readonly<{
|
|
|
199
207
|
refAuthor: "refAuthor";
|
|
200
208
|
refBookTitle: "refBookTitle";
|
|
201
209
|
refPublisher: "refPublisher";
|
|
210
|
+
refPublicationYear: "refPublicationYear";
|
|
202
211
|
releaseDate: "releaseDate";
|
|
203
212
|
releaseKind: "releaseKind";
|
|
204
213
|
releaseVersion: "releaseVersion";
|
|
@@ -241,6 +250,7 @@ declare const ConfigKey: Readonly<{
|
|
|
241
250
|
theme: "theme";
|
|
242
251
|
thumbImage: "thumbImage";
|
|
243
252
|
toc: "toc";
|
|
253
|
+
topicTag: "topicTag";
|
|
244
254
|
trim: "trim";
|
|
245
255
|
unit: "unit";
|
|
246
256
|
unitAbbr: "unitAbbr";
|
|
@@ -340,6 +350,7 @@ declare const ConfigKey: Readonly<{
|
|
|
340
350
|
allowedBit: "allowedBit";
|
|
341
351
|
allowSubtitles: "allowSubtitles";
|
|
342
352
|
alt: "alt";
|
|
353
|
+
altLangTag: "altLangTag";
|
|
343
354
|
author: "author";
|
|
344
355
|
autoplay: "autoplay";
|
|
345
356
|
availableClassifications: "availableClassifications";
|
|
@@ -347,11 +358,13 @@ declare const ConfigKey: Readonly<{
|
|
|
347
358
|
blockId: "blockId";
|
|
348
359
|
book: "book";
|
|
349
360
|
bookAlias: "bookAlias";
|
|
361
|
+
bookDiff: "bookDiff";
|
|
350
362
|
bot: "bot";
|
|
351
363
|
bubbleTag: "bubbleTag";
|
|
352
364
|
buttonCaption: "buttonCaption";
|
|
353
365
|
callToActionUrl: "callToActionUrl";
|
|
354
366
|
caption: "caption";
|
|
367
|
+
categoryTag: "categoryTag";
|
|
355
368
|
chatWithBook: "chatWithBook";
|
|
356
369
|
chatWithBookBrainKey: "chatWithBookBrainKey";
|
|
357
370
|
citationStyle: "citationStyle";
|
|
@@ -365,6 +378,7 @@ declare const ConfigKey: Readonly<{
|
|
|
365
378
|
copyright: "copyright";
|
|
366
379
|
coverColor: "coverColor";
|
|
367
380
|
coverImage: "coverImage";
|
|
381
|
+
customerExternalId: "customerExternalId";
|
|
368
382
|
customerId: "customerId";
|
|
369
383
|
date: "date";
|
|
370
384
|
dateEnd: "dateEnd";
|
|
@@ -372,6 +386,10 @@ declare const ConfigKey: Readonly<{
|
|
|
372
386
|
deeplink: "deeplink";
|
|
373
387
|
disableCalculation: "disableCalculation";
|
|
374
388
|
disableFeedback: "disableFeedback";
|
|
389
|
+
diffOp: "diffOp";
|
|
390
|
+
diffRef: "diffRef";
|
|
391
|
+
diffContext: "diffContext";
|
|
392
|
+
diffTime: "diffTime";
|
|
375
393
|
duration: "duration";
|
|
376
394
|
emphasis: "emphasis";
|
|
377
395
|
example: "example";
|
|
@@ -462,6 +480,7 @@ declare const ConfigKey: Readonly<{
|
|
|
462
480
|
refAuthor: "refAuthor";
|
|
463
481
|
refBookTitle: "refBookTitle";
|
|
464
482
|
refPublisher: "refPublisher";
|
|
483
|
+
refPublicationYear: "refPublicationYear";
|
|
465
484
|
releaseDate: "releaseDate";
|
|
466
485
|
releaseKind: "releaseKind";
|
|
467
486
|
releaseVersion: "releaseVersion";
|
|
@@ -504,6 +523,7 @@ declare const ConfigKey: Readonly<{
|
|
|
504
523
|
theme: "theme";
|
|
505
524
|
thumbImage: "thumbImage";
|
|
506
525
|
toc: "toc";
|
|
526
|
+
topicTag: "topicTag";
|
|
507
527
|
trim: "trim";
|
|
508
528
|
unit: "unit";
|
|
509
529
|
unitAbbr: "unitAbbr";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConfigKey.d.ts","sourceRoot":"","sources":["../../../../../src/model/config/enum/ConfigKey.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAa,MAAM,oBAAoB,CAAC;AAOzD;;GAEG;AACH,QAAA,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"ConfigKey.d.ts","sourceRoot":"","sources":["../../../../../src/model/config/enum/ConfigKey.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAa,MAAM,oBAAoB,CAAC;AAOzD;;GAEG;AACH,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAcb,CAAC;AAkBH,MAAM,MAAM,aAAa,GAAG,QAAQ,CAAC,OAAO,SAAS,CAAC,CAAC;AAEvD,OAAO,EAAE,SAAS,EAAE,CAAC"}
|
|
@@ -12,6 +12,7 @@ declare const propertyConfigKeys: {
|
|
|
12
12
|
readonly allowedBit: "allowedBit";
|
|
13
13
|
readonly allowSubtitles: "allowSubtitles";
|
|
14
14
|
readonly alt: "alt";
|
|
15
|
+
readonly altLangTag: "altLangTag";
|
|
15
16
|
readonly author: "author";
|
|
16
17
|
readonly autoplay: "autoplay";
|
|
17
18
|
readonly availableClassifications: "availableClassifications";
|
|
@@ -19,11 +20,13 @@ declare const propertyConfigKeys: {
|
|
|
19
20
|
readonly blockId: "blockId";
|
|
20
21
|
readonly book: "book";
|
|
21
22
|
readonly bookAlias: "bookAlias";
|
|
23
|
+
readonly bookDiff: "bookDiff";
|
|
22
24
|
readonly bot: "bot";
|
|
23
25
|
readonly bubbleTag: "bubbleTag";
|
|
24
26
|
readonly buttonCaption: "buttonCaption";
|
|
25
27
|
readonly callToActionUrl: "callToActionUrl";
|
|
26
28
|
readonly caption: "caption";
|
|
29
|
+
readonly categoryTag: "categoryTag";
|
|
27
30
|
readonly chatWithBook: "chatWithBook";
|
|
28
31
|
readonly chatWithBookBrainKey: "chatWithBookBrainKey";
|
|
29
32
|
readonly citationStyle: "citationStyle";
|
|
@@ -37,6 +40,7 @@ declare const propertyConfigKeys: {
|
|
|
37
40
|
readonly copyright: "copyright";
|
|
38
41
|
readonly coverColor: "coverColor";
|
|
39
42
|
readonly coverImage: "coverImage";
|
|
43
|
+
readonly customerExternalId: "customerExternalId";
|
|
40
44
|
readonly customerId: "customerId";
|
|
41
45
|
readonly date: "date";
|
|
42
46
|
readonly dateEnd: "dateEnd";
|
|
@@ -44,6 +48,10 @@ declare const propertyConfigKeys: {
|
|
|
44
48
|
readonly deeplink: "deeplink";
|
|
45
49
|
readonly disableCalculation: "disableCalculation";
|
|
46
50
|
readonly disableFeedback: "disableFeedback";
|
|
51
|
+
readonly diffOp: "diffOp";
|
|
52
|
+
readonly diffRef: "diffRef";
|
|
53
|
+
readonly diffContext: "diffContext";
|
|
54
|
+
readonly diffTime: "diffTime";
|
|
47
55
|
readonly duration: "duration";
|
|
48
56
|
readonly emphasis: "emphasis";
|
|
49
57
|
readonly example: "example";
|
|
@@ -134,6 +142,7 @@ declare const propertyConfigKeys: {
|
|
|
134
142
|
readonly refAuthor: "refAuthor";
|
|
135
143
|
readonly refBookTitle: "refBookTitle";
|
|
136
144
|
readonly refPublisher: "refPublisher";
|
|
145
|
+
readonly refPublicationYear: "refPublicationYear";
|
|
137
146
|
readonly releaseDate: "releaseDate";
|
|
138
147
|
readonly releaseKind: "releaseKind";
|
|
139
148
|
readonly releaseVersion: "releaseVersion";
|
|
@@ -176,6 +185,7 @@ declare const propertyConfigKeys: {
|
|
|
176
185
|
readonly theme: "theme";
|
|
177
186
|
readonly thumbImage: "thumbImage";
|
|
178
187
|
readonly toc: "toc";
|
|
188
|
+
readonly topicTag: "topicTag";
|
|
179
189
|
readonly trim: "trim";
|
|
180
190
|
readonly unit: "unit";
|
|
181
191
|
readonly unitAbbr: "unitAbbr";
|
|
@@ -197,6 +207,7 @@ declare const PropertyConfigKey: Readonly<{
|
|
|
197
207
|
readonly allowedBit: "allowedBit";
|
|
198
208
|
readonly allowSubtitles: "allowSubtitles";
|
|
199
209
|
readonly alt: "alt";
|
|
210
|
+
readonly altLangTag: "altLangTag";
|
|
200
211
|
readonly author: "author";
|
|
201
212
|
readonly autoplay: "autoplay";
|
|
202
213
|
readonly availableClassifications: "availableClassifications";
|
|
@@ -204,11 +215,13 @@ declare const PropertyConfigKey: Readonly<{
|
|
|
204
215
|
readonly blockId: "blockId";
|
|
205
216
|
readonly book: "book";
|
|
206
217
|
readonly bookAlias: "bookAlias";
|
|
218
|
+
readonly bookDiff: "bookDiff";
|
|
207
219
|
readonly bot: "bot";
|
|
208
220
|
readonly bubbleTag: "bubbleTag";
|
|
209
221
|
readonly buttonCaption: "buttonCaption";
|
|
210
222
|
readonly callToActionUrl: "callToActionUrl";
|
|
211
223
|
readonly caption: "caption";
|
|
224
|
+
readonly categoryTag: "categoryTag";
|
|
212
225
|
readonly chatWithBook: "chatWithBook";
|
|
213
226
|
readonly chatWithBookBrainKey: "chatWithBookBrainKey";
|
|
214
227
|
readonly citationStyle: "citationStyle";
|
|
@@ -222,6 +235,7 @@ declare const PropertyConfigKey: Readonly<{
|
|
|
222
235
|
readonly copyright: "copyright";
|
|
223
236
|
readonly coverColor: "coverColor";
|
|
224
237
|
readonly coverImage: "coverImage";
|
|
238
|
+
readonly customerExternalId: "customerExternalId";
|
|
225
239
|
readonly customerId: "customerId";
|
|
226
240
|
readonly date: "date";
|
|
227
241
|
readonly dateEnd: "dateEnd";
|
|
@@ -229,6 +243,10 @@ declare const PropertyConfigKey: Readonly<{
|
|
|
229
243
|
readonly deeplink: "deeplink";
|
|
230
244
|
readonly disableCalculation: "disableCalculation";
|
|
231
245
|
readonly disableFeedback: "disableFeedback";
|
|
246
|
+
readonly diffOp: "diffOp";
|
|
247
|
+
readonly diffRef: "diffRef";
|
|
248
|
+
readonly diffContext: "diffContext";
|
|
249
|
+
readonly diffTime: "diffTime";
|
|
232
250
|
readonly duration: "duration";
|
|
233
251
|
readonly emphasis: "emphasis";
|
|
234
252
|
readonly example: "example";
|
|
@@ -319,6 +337,7 @@ declare const PropertyConfigKey: Readonly<{
|
|
|
319
337
|
readonly refAuthor: "refAuthor";
|
|
320
338
|
readonly refBookTitle: "refBookTitle";
|
|
321
339
|
readonly refPublisher: "refPublisher";
|
|
340
|
+
readonly refPublicationYear: "refPublicationYear";
|
|
322
341
|
readonly releaseDate: "releaseDate";
|
|
323
342
|
readonly releaseKind: "releaseKind";
|
|
324
343
|
readonly releaseVersion: "releaseVersion";
|
|
@@ -361,6 +380,7 @@ declare const PropertyConfigKey: Readonly<{
|
|
|
361
380
|
readonly theme: "theme";
|
|
362
381
|
readonly thumbImage: "thumbImage";
|
|
363
382
|
readonly toc: "toc";
|
|
383
|
+
readonly topicTag: "topicTag";
|
|
364
384
|
readonly trim: "trim";
|
|
365
385
|
readonly unit: "unit";
|
|
366
386
|
readonly unitAbbr: "unitAbbr";
|
|
@@ -381,6 +401,7 @@ declare const PropertyConfigKey: Readonly<{
|
|
|
381
401
|
readonly allowedBit: "allowedBit";
|
|
382
402
|
readonly allowSubtitles: "allowSubtitles";
|
|
383
403
|
readonly alt: "alt";
|
|
404
|
+
readonly altLangTag: "altLangTag";
|
|
384
405
|
readonly author: "author";
|
|
385
406
|
readonly autoplay: "autoplay";
|
|
386
407
|
readonly availableClassifications: "availableClassifications";
|
|
@@ -388,11 +409,13 @@ declare const PropertyConfigKey: Readonly<{
|
|
|
388
409
|
readonly blockId: "blockId";
|
|
389
410
|
readonly book: "book";
|
|
390
411
|
readonly bookAlias: "bookAlias";
|
|
412
|
+
readonly bookDiff: "bookDiff";
|
|
391
413
|
readonly bot: "bot";
|
|
392
414
|
readonly bubbleTag: "bubbleTag";
|
|
393
415
|
readonly buttonCaption: "buttonCaption";
|
|
394
416
|
readonly callToActionUrl: "callToActionUrl";
|
|
395
417
|
readonly caption: "caption";
|
|
418
|
+
readonly categoryTag: "categoryTag";
|
|
396
419
|
readonly chatWithBook: "chatWithBook";
|
|
397
420
|
readonly chatWithBookBrainKey: "chatWithBookBrainKey";
|
|
398
421
|
readonly citationStyle: "citationStyle";
|
|
@@ -406,6 +429,7 @@ declare const PropertyConfigKey: Readonly<{
|
|
|
406
429
|
readonly copyright: "copyright";
|
|
407
430
|
readonly coverColor: "coverColor";
|
|
408
431
|
readonly coverImage: "coverImage";
|
|
432
|
+
readonly customerExternalId: "customerExternalId";
|
|
409
433
|
readonly customerId: "customerId";
|
|
410
434
|
readonly date: "date";
|
|
411
435
|
readonly dateEnd: "dateEnd";
|
|
@@ -413,6 +437,10 @@ declare const PropertyConfigKey: Readonly<{
|
|
|
413
437
|
readonly deeplink: "deeplink";
|
|
414
438
|
readonly disableCalculation: "disableCalculation";
|
|
415
439
|
readonly disableFeedback: "disableFeedback";
|
|
440
|
+
readonly diffOp: "diffOp";
|
|
441
|
+
readonly diffRef: "diffRef";
|
|
442
|
+
readonly diffContext: "diffContext";
|
|
443
|
+
readonly diffTime: "diffTime";
|
|
416
444
|
readonly duration: "duration";
|
|
417
445
|
readonly emphasis: "emphasis";
|
|
418
446
|
readonly example: "example";
|
|
@@ -503,6 +531,7 @@ declare const PropertyConfigKey: Readonly<{
|
|
|
503
531
|
readonly refAuthor: "refAuthor";
|
|
504
532
|
readonly refBookTitle: "refBookTitle";
|
|
505
533
|
readonly refPublisher: "refPublisher";
|
|
534
|
+
readonly refPublicationYear: "refPublicationYear";
|
|
506
535
|
readonly releaseDate: "releaseDate";
|
|
507
536
|
readonly releaseKind: "releaseKind";
|
|
508
537
|
readonly releaseVersion: "releaseVersion";
|
|
@@ -545,6 +574,7 @@ declare const PropertyConfigKey: Readonly<{
|
|
|
545
574
|
readonly theme: "theme";
|
|
546
575
|
readonly thumbImage: "thumbImage";
|
|
547
576
|
readonly toc: "toc";
|
|
577
|
+
readonly topicTag: "topicTag";
|
|
548
578
|
readonly trim: "trim";
|
|
549
579
|
readonly unit: "unit";
|
|
550
580
|
readonly unitAbbr: "unitAbbr";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PropertyConfigKey.d.ts","sourceRoot":"","sources":["../../../../../src/model/config/enum/PropertyConfigKey.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAa,MAAM,oBAAoB,CAAC;AAEzD;;GAEG;AACH,QAAA,MAAM,kBAAkB
|
|
1
|
+
{"version":3,"file":"PropertyConfigKey.d.ts","sourceRoot":"","sources":["../../../../../src/model/config/enum/PropertyConfigKey.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAa,MAAM,oBAAoB,CAAC;AAEzD;;GAEG;AACH,QAAA,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkMd,CAAC;AAEX,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAgC,CAAC;AAExD,MAAM,MAAM,qBAAqB,GAAG,QAAQ,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAEvE,OAAO,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,CAAC"}
|
|
@@ -51,6 +51,7 @@ declare const BitType: Readonly<{
|
|
|
51
51
|
bookCopyright: "book-copyright";
|
|
52
52
|
bookCopyrightPermissions: "book-copyright-permissions";
|
|
53
53
|
bookDedication: "book-dedication";
|
|
54
|
+
bookDiff: "book-diff";
|
|
54
55
|
bookEndnotes: "book-endnotes";
|
|
55
56
|
bookEpigraph: "book-epigraph";
|
|
56
57
|
bookEpilogue: "book-epilogue";
|
|
@@ -181,6 +182,7 @@ declare const BitType: Readonly<{
|
|
|
181
182
|
dangerCollapsible: "danger-collapsible";
|
|
182
183
|
definitionList: "definition-list";
|
|
183
184
|
definitionTerm: "definition-term";
|
|
185
|
+
deleted: "deleted";
|
|
184
186
|
details: "details";
|
|
185
187
|
details1: "details-1";
|
|
186
188
|
detailsImage: "details-image";
|
|
@@ -413,6 +415,9 @@ declare const BitType: Readonly<{
|
|
|
413
415
|
smartStandardExampleNonNormativeCollapsible: "smart-standard-example-non-normative-collapsible";
|
|
414
416
|
smartStandardExampleNormative: "smart-standard-example-normative";
|
|
415
417
|
smartStandardExampleNormativeCollapsible: "smart-standard-example-normative-collapsible";
|
|
418
|
+
smartStandardFormula: "smart-standard-formula";
|
|
419
|
+
smartStandardFormulaNonNormative: "smart-standard-formula-non-normative";
|
|
420
|
+
smartStandardFormulaNormative: "smart-standard-formula-normative";
|
|
416
421
|
smartStandardImageFigureNonNormative: "smart-standard-image-figure-non-normative";
|
|
417
422
|
smartStandardImageFigureNonNormativeCollapsible: "smart-standard-image-figure-non-normative-collapsible";
|
|
418
423
|
smartStandardImageFigureNormative: "smart-standard-image-figure-normative";
|
|
@@ -425,6 +430,9 @@ declare const BitType: Readonly<{
|
|
|
425
430
|
smartStandardNoteNonNormativeCollapsible: "smart-standard-note-non-normative-collapsible";
|
|
426
431
|
smartStandardNoteNormative: "smart-standard-note-normative";
|
|
427
432
|
smartStandardNoteNormativeCollapsible: "smart-standard-note-normative-collapsible";
|
|
433
|
+
smartStandardRemarkFormula: "smart-standard-remark-formula";
|
|
434
|
+
smartStandardRemarkFormulaNonNormative: "smart-standard-remark-formula-non-normative";
|
|
435
|
+
smartStandardRemarkFormulaNormative: "smart-standard-remark-formula-normative";
|
|
428
436
|
smartStandardRemarkNonNormative: "smart-standard-remark-non-normative";
|
|
429
437
|
smartStandardRemarkNonNormativeCollapsible: "smart-standard-remark-non-normative-collapsible";
|
|
430
438
|
smartStandardRemarkNormative: "smart-standard-remark-normative";
|
|
@@ -498,6 +506,8 @@ declare const BitType: Readonly<{
|
|
|
498
506
|
vendorAmcharts5Chart: "vendor-amcharts-5-chart";
|
|
499
507
|
vendorFormbricksEmbed: "vendor-formbricks-embed";
|
|
500
508
|
vendorFormbricksLink: "vendor-formbricks-link";
|
|
509
|
+
vendorFormbricksEmbedAnonymous: "vendor-formbricks-embed-anonymous";
|
|
510
|
+
vendorFormbricksLinkAnonymous: "vendor-formbricks-link-anonymous";
|
|
501
511
|
vendorHighchartsChart: "vendor-highcharts-chart";
|
|
502
512
|
vendorIframelyCard: "vendor-iframely-card";
|
|
503
513
|
vendorIframelyEmbed: "vendor-iframely-embed";
|
|
@@ -577,6 +587,7 @@ declare const BitType: Readonly<{
|
|
|
577
587
|
bookCopyright: "book-copyright";
|
|
578
588
|
bookCopyrightPermissions: "book-copyright-permissions";
|
|
579
589
|
bookDedication: "book-dedication";
|
|
590
|
+
bookDiff: "book-diff";
|
|
580
591
|
bookEndnotes: "book-endnotes";
|
|
581
592
|
bookEpigraph: "book-epigraph";
|
|
582
593
|
bookEpilogue: "book-epilogue";
|
|
@@ -707,6 +718,7 @@ declare const BitType: Readonly<{
|
|
|
707
718
|
dangerCollapsible: "danger-collapsible";
|
|
708
719
|
definitionList: "definition-list";
|
|
709
720
|
definitionTerm: "definition-term";
|
|
721
|
+
deleted: "deleted";
|
|
710
722
|
details: "details";
|
|
711
723
|
details1: "details-1";
|
|
712
724
|
detailsImage: "details-image";
|
|
@@ -939,6 +951,9 @@ declare const BitType: Readonly<{
|
|
|
939
951
|
smartStandardExampleNonNormativeCollapsible: "smart-standard-example-non-normative-collapsible";
|
|
940
952
|
smartStandardExampleNormative: "smart-standard-example-normative";
|
|
941
953
|
smartStandardExampleNormativeCollapsible: "smart-standard-example-normative-collapsible";
|
|
954
|
+
smartStandardFormula: "smart-standard-formula";
|
|
955
|
+
smartStandardFormulaNonNormative: "smart-standard-formula-non-normative";
|
|
956
|
+
smartStandardFormulaNormative: "smart-standard-formula-normative";
|
|
942
957
|
smartStandardImageFigureNonNormative: "smart-standard-image-figure-non-normative";
|
|
943
958
|
smartStandardImageFigureNonNormativeCollapsible: "smart-standard-image-figure-non-normative-collapsible";
|
|
944
959
|
smartStandardImageFigureNormative: "smart-standard-image-figure-normative";
|
|
@@ -951,6 +966,9 @@ declare const BitType: Readonly<{
|
|
|
951
966
|
smartStandardNoteNonNormativeCollapsible: "smart-standard-note-non-normative-collapsible";
|
|
952
967
|
smartStandardNoteNormative: "smart-standard-note-normative";
|
|
953
968
|
smartStandardNoteNormativeCollapsible: "smart-standard-note-normative-collapsible";
|
|
969
|
+
smartStandardRemarkFormula: "smart-standard-remark-formula";
|
|
970
|
+
smartStandardRemarkFormulaNonNormative: "smart-standard-remark-formula-non-normative";
|
|
971
|
+
smartStandardRemarkFormulaNormative: "smart-standard-remark-formula-normative";
|
|
954
972
|
smartStandardRemarkNonNormative: "smart-standard-remark-non-normative";
|
|
955
973
|
smartStandardRemarkNonNormativeCollapsible: "smart-standard-remark-non-normative-collapsible";
|
|
956
974
|
smartStandardRemarkNormative: "smart-standard-remark-normative";
|
|
@@ -1024,6 +1042,8 @@ declare const BitType: Readonly<{
|
|
|
1024
1042
|
vendorAmcharts5Chart: "vendor-amcharts-5-chart";
|
|
1025
1043
|
vendorFormbricksEmbed: "vendor-formbricks-embed";
|
|
1026
1044
|
vendorFormbricksLink: "vendor-formbricks-link";
|
|
1045
|
+
vendorFormbricksEmbedAnonymous: "vendor-formbricks-embed-anonymous";
|
|
1046
|
+
vendorFormbricksLinkAnonymous: "vendor-formbricks-link-anonymous";
|
|
1027
1047
|
vendorHighchartsChart: "vendor-highcharts-chart";
|
|
1028
1048
|
vendorIframelyCard: "vendor-iframely-card";
|
|
1029
1049
|
vendorIframelyEmbed: "vendor-iframely-embed";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BitType.d.ts","sourceRoot":"","sources":["../../../../src/model/enum/BitType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAa,MAAM,oBAAoB,CAAC;AAEzD,QAAA,MAAM,OAAO
|
|
1
|
+
{"version":3,"file":"BitType.d.ts","sourceRoot":"","sources":["../../../../src/model/enum/BitType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAa,MAAM,oBAAoB,CAAC;AAEzD,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwhBX,CAAC;AAEH,MAAM,MAAM,WAAW,GAAG,QAAQ,CAAC,OAAO,OAAO,CAAC,CAAC;AAEnD,OAAO,EAAE,OAAO,EAAE,CAAC"}
|
|
@@ -13,6 +13,7 @@ declare const PropertyTag: Readonly<{
|
|
|
13
13
|
allowedBit: "allowedBit";
|
|
14
14
|
allowSubtitles: "allowSubtitles";
|
|
15
15
|
alt: "alt";
|
|
16
|
+
altLangTag: "altLangTag";
|
|
16
17
|
author: "author";
|
|
17
18
|
autoplay: "autoplay";
|
|
18
19
|
availableClassifications: "availableClassifications";
|
|
@@ -20,11 +21,13 @@ declare const PropertyTag: Readonly<{
|
|
|
20
21
|
blockId: "blockId";
|
|
21
22
|
book: "book";
|
|
22
23
|
bookAlias: "bookAlias";
|
|
24
|
+
bookDiff: "bookDiff";
|
|
23
25
|
bot: "bot";
|
|
24
26
|
bubbleTag: "bubbleTag";
|
|
25
27
|
buttonCaption: "buttonCaption";
|
|
26
28
|
callToActionUrl: "callToActionUrl";
|
|
27
29
|
caption: "caption";
|
|
30
|
+
categoryTag: "categoryTag";
|
|
28
31
|
chatWithBook: "chatWithBook";
|
|
29
32
|
chatWithBookBrainKey: "chatWithBookBrainKey";
|
|
30
33
|
citationStyle: "citationStyle";
|
|
@@ -38,6 +41,7 @@ declare const PropertyTag: Readonly<{
|
|
|
38
41
|
copyright: "copyright";
|
|
39
42
|
coverColor: "coverColor";
|
|
40
43
|
coverImage: "coverImage";
|
|
44
|
+
customerExternalId: "customerExternalId";
|
|
41
45
|
customerId: "customerId";
|
|
42
46
|
date: "date";
|
|
43
47
|
dateEnd: "dateEnd";
|
|
@@ -45,6 +49,10 @@ declare const PropertyTag: Readonly<{
|
|
|
45
49
|
deeplink: "deeplink";
|
|
46
50
|
disableCalculation: "disableCalculation";
|
|
47
51
|
disableFeedback: "disableFeedback";
|
|
52
|
+
diffOp: "diffOp";
|
|
53
|
+
diffRef: "diffRef";
|
|
54
|
+
diffContext: "diffContext";
|
|
55
|
+
diffTime: "diffTime";
|
|
48
56
|
duration: "duration";
|
|
49
57
|
emphasis: "emphasis";
|
|
50
58
|
example: "example";
|
|
@@ -135,6 +143,7 @@ declare const PropertyTag: Readonly<{
|
|
|
135
143
|
refAuthor: "refAuthor";
|
|
136
144
|
refBookTitle: "refBookTitle";
|
|
137
145
|
refPublisher: "refPublisher";
|
|
146
|
+
refPublicationYear: "refPublicationYear";
|
|
138
147
|
releaseDate: "releaseDate";
|
|
139
148
|
releaseKind: "releaseKind";
|
|
140
149
|
releaseVersion: "releaseVersion";
|
|
@@ -177,6 +186,7 @@ declare const PropertyTag: Readonly<{
|
|
|
177
186
|
theme: "theme";
|
|
178
187
|
thumbImage: "thumbImage";
|
|
179
188
|
toc: "toc";
|
|
189
|
+
topicTag: "topicTag";
|
|
180
190
|
trim: "trim";
|
|
181
191
|
unit: "unit";
|
|
182
192
|
unitAbbr: "unitAbbr";
|
|
@@ -201,6 +211,7 @@ declare const PropertyTag: Readonly<{
|
|
|
201
211
|
allowedBit: "allowedBit";
|
|
202
212
|
allowSubtitles: "allowSubtitles";
|
|
203
213
|
alt: "alt";
|
|
214
|
+
altLangTag: "altLangTag";
|
|
204
215
|
author: "author";
|
|
205
216
|
autoplay: "autoplay";
|
|
206
217
|
availableClassifications: "availableClassifications";
|
|
@@ -208,11 +219,13 @@ declare const PropertyTag: Readonly<{
|
|
|
208
219
|
blockId: "blockId";
|
|
209
220
|
book: "book";
|
|
210
221
|
bookAlias: "bookAlias";
|
|
222
|
+
bookDiff: "bookDiff";
|
|
211
223
|
bot: "bot";
|
|
212
224
|
bubbleTag: "bubbleTag";
|
|
213
225
|
buttonCaption: "buttonCaption";
|
|
214
226
|
callToActionUrl: "callToActionUrl";
|
|
215
227
|
caption: "caption";
|
|
228
|
+
categoryTag: "categoryTag";
|
|
216
229
|
chatWithBook: "chatWithBook";
|
|
217
230
|
chatWithBookBrainKey: "chatWithBookBrainKey";
|
|
218
231
|
citationStyle: "citationStyle";
|
|
@@ -226,6 +239,7 @@ declare const PropertyTag: Readonly<{
|
|
|
226
239
|
copyright: "copyright";
|
|
227
240
|
coverColor: "coverColor";
|
|
228
241
|
coverImage: "coverImage";
|
|
242
|
+
customerExternalId: "customerExternalId";
|
|
229
243
|
customerId: "customerId";
|
|
230
244
|
date: "date";
|
|
231
245
|
dateEnd: "dateEnd";
|
|
@@ -233,6 +247,10 @@ declare const PropertyTag: Readonly<{
|
|
|
233
247
|
deeplink: "deeplink";
|
|
234
248
|
disableCalculation: "disableCalculation";
|
|
235
249
|
disableFeedback: "disableFeedback";
|
|
250
|
+
diffOp: "diffOp";
|
|
251
|
+
diffRef: "diffRef";
|
|
252
|
+
diffContext: "diffContext";
|
|
253
|
+
diffTime: "diffTime";
|
|
236
254
|
duration: "duration";
|
|
237
255
|
emphasis: "emphasis";
|
|
238
256
|
example: "example";
|
|
@@ -323,6 +341,7 @@ declare const PropertyTag: Readonly<{
|
|
|
323
341
|
refAuthor: "refAuthor";
|
|
324
342
|
refBookTitle: "refBookTitle";
|
|
325
343
|
refPublisher: "refPublisher";
|
|
344
|
+
refPublicationYear: "refPublicationYear";
|
|
326
345
|
releaseDate: "releaseDate";
|
|
327
346
|
releaseKind: "releaseKind";
|
|
328
347
|
releaseVersion: "releaseVersion";
|
|
@@ -365,6 +384,7 @@ declare const PropertyTag: Readonly<{
|
|
|
365
384
|
theme: "theme";
|
|
366
385
|
thumbImage: "thumbImage";
|
|
367
386
|
toc: "toc";
|
|
387
|
+
topicTag: "topicTag";
|
|
368
388
|
trim: "trim";
|
|
369
389
|
unit: "unit";
|
|
370
390
|
unitAbbr: "unitAbbr";
|