Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2,058 changes: 1,402 additions & 656 deletions build/Docframe.cs

Large diffs are not rendered by default.

1,746 changes: 576 additions & 1,170 deletions build/Docframe.d.ts

Large diffs are not rendered by default.

20,700 changes: 7,569 additions & 13,131 deletions build/Docframe.js

Large diffs are not rendered by default.

20 changes: 20 additions & 0 deletions build/docframe.proto
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,7 @@ string paragraphFormatUUID = 4;
string paragraphFormatInternalName = 5;
string urlCode = 6;
bool bindUrlCode = 7;
string uuid = 8;
}
enum ProtoNumberType {
ARABIC = 0;
Expand Down Expand Up @@ -499,6 +500,7 @@ string name = 2;
repeated ProtoListLevelSetting listLevelSettings = 3;
ProtoListLevelSetting defaultListLevelSetting = 4;
repeated string comChannelUUIDs = 5;
string uuid = 6;
}

message ProtoBoxedListSetting {
Expand Down Expand Up @@ -556,6 +558,7 @@ ProtoBoxedString preNamedString = 26;
ProtoBoxedString postNamedString = 27;
ProtoBoxedString semanticType = 28;
repeated string comChannelUUIDs = 29;
string uuid = 30;
}
message ProtoSection {
repeated ProtoDocumentElement _children = 1;
Expand All @@ -571,6 +574,7 @@ ProtoDocumentElement parent = 1;

ProtoMeasure space = 2;
repeated string comChannelUUIDs = 3;
string uuid = 4;
}
message ProtoSpan {
repeated ProtoDocumentElement _children = 1;
Expand Down Expand Up @@ -605,6 +609,7 @@ ProtoDocumentElement parent = 1;
ProtoTableSettings settings = 2;
string configName = 3;
repeated string comChannelUUIDs = 4;
string uuid = 5;
}

message ProtoTableSettings {
Expand Down Expand Up @@ -646,6 +651,7 @@ ProtoDocumentElement parent = 1;
ProtoTableContentGroupSettings settings = 2;
string configName = 3;
repeated string comChannelUUIDs = 4;
string uuid = 5;
}

message ProtoTableContentGroupSettings {
Expand Down Expand Up @@ -674,6 +680,7 @@ string configName = 3;
string rowHeader = 4;
string rowFooter = 5;
repeated string comChannelUUIDs = 6;
string uuid = 7;
}

message ProtoTableRowSettings {
Expand Down Expand Up @@ -712,6 +719,7 @@ ProtoTableCellSettings settings = 2;
string configName = 3;
ProtoBoxedTableCellType cellType = 4;
repeated string comChannelUUIDs = 5;
string uuid = 6;
}

message ProtoTableCellSettings {
Expand Down Expand Up @@ -1193,26 +1201,31 @@ string htmlCode = 6;
string textContent = 7;
string textCode = 8;
repeated string comChannelUUIDs = 9;
string uuid = 10;
}

message ProtoApplyProtoCDef {
string cDefUuid = 1;
repeated string comChannelUUIDs = 2;
string uuid = 3;
}

message ProtoApplyProtoPDef {
string pDefUuid = 1;
repeated string comChannelUUIDs = 2;
string uuid = 3;
}

message ProtoApplyPtConfig {
string ptConfigUuid = 1;
repeated string comChannelUUIDs = 2;
string uuid = 3;
}

message ProtoApplyUlConfig {
string ulConfigUuid = 1;
repeated string comChannelUUIDs = 2;
string uuid = 3;
}


Expand Down Expand Up @@ -1285,6 +1298,7 @@ repeated ProtoDocumentElement _children = 1;
ProtoDocumentElement parent = 2;

repeated string comChannelUUIDs = 3;
string uuid = 4;
}
message ProtoLoopEntry {
repeated ProtoDocumentElement _children = 1;
Expand Down Expand Up @@ -1316,13 +1330,15 @@ bool apply_immediate = 3;
ProtoSubTotalPosition position = 4;
ProtoMeasure height = 5;
repeated string comChannelUUIDs = 6;
string uuid = 7;
}

message ProtoWsArea {
repeated ProtoDocumentElement _children = 1;
ProtoDocumentElement parent = 2;

repeated string comChannelUUIDs = 3;
string uuid = 4;
}
message ProtoRule {
ProtoMeasure xOffset = 1;
Expand All @@ -1335,6 +1351,7 @@ ProtoRuleStyle style = 7;
ProtoRuleMode mode = 8;
ProtoRuleBoundaries boundaries = 9;
repeated string comChannelUUIDs = 10;
string uuid = 11;
}

enum ProtoRuleMode {
Expand All @@ -1349,12 +1366,14 @@ ProtoMeasure end = 2;
message ProtoColorDef {
ProtoColor color = 1;
repeated string comChannelUUIDs = 2;
string uuid = 3;
}
message ProtoLayout {
ProtoDocumentElement parent = 1;

string name = 2;
repeated string comChannelUUIDs = 3;
string uuid = 4;
}
message ProtoAdvancedIllustrationArea {
repeated ProtoDocumentElement _children = 1;
Expand All @@ -1377,6 +1396,7 @@ ProtoDocumentElement parent = 2;
ProtoMeasure minFontSize = 3;
ProtoMeasure maxFontSize = 4;
repeated string comChannelUUIDs = 5;
string uuid = 6;
}
enum ProtoDoctypeOutputMode {
DOCTYPE_OUTPUT_MODE_NOT_SET = 0;
Expand Down
Loading