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
427 changes: 232 additions & 195 deletions build/Docframe.cs

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions build/Docframe.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13784,6 +13784,9 @@ export interface IProtoAdvancedIllustrationArea {

/** ProtoAdvancedIllustrationArea comChannelUUIDs */
comChannelUUIDs?: (string[]|null);

/** ProtoAdvancedIllustrationArea noArtifact */
noArtifact?: (boolean|null);
}

/** Represents a ProtoAdvancedIllustrationArea. */
Expand Down Expand Up @@ -13828,6 +13831,9 @@ export class ProtoAdvancedIllustrationArea implements IProtoAdvancedIllustration
/** ProtoAdvancedIllustrationArea comChannelUUIDs. */
public comChannelUUIDs: string[];

/** ProtoAdvancedIllustrationArea noArtifact. */
public noArtifact: boolean;

/**
* Creates a new ProtoAdvancedIllustrationArea instance using the specified properties.
* @param [properties] Properties to set
Expand Down
23 changes: 23 additions & 0 deletions build/Docframe.js
Original file line number Diff line number Diff line change
Expand Up @@ -41162,6 +41162,7 @@ $root.ProtoAdvancedIllustrationArea = (function() {
* @property {ProtoAdvancedIllustrationAreaTextFlowType|null} [textFlow] ProtoAdvancedIllustrationArea textFlow
* @property {number|null} [rotation] ProtoAdvancedIllustrationArea rotation
* @property {Array.<string>|null} [comChannelUUIDs] ProtoAdvancedIllustrationArea comChannelUUIDs
* @property {boolean|null} [noArtifact] ProtoAdvancedIllustrationArea noArtifact
*/

/**
Expand Down Expand Up @@ -41269,6 +41270,14 @@ $root.ProtoAdvancedIllustrationArea = (function() {
*/
ProtoAdvancedIllustrationArea.prototype.comChannelUUIDs = $util.emptyArray;

/**
* ProtoAdvancedIllustrationArea noArtifact.
* @member {boolean} noArtifact
* @memberof ProtoAdvancedIllustrationArea
* @instance
*/
ProtoAdvancedIllustrationArea.prototype.noArtifact = false;

/**
* Creates a new ProtoAdvancedIllustrationArea instance using the specified properties.
* @function create
Expand Down Expand Up @@ -41317,6 +41326,8 @@ $root.ProtoAdvancedIllustrationArea = (function() {
if (message.comChannelUUIDs != null && message.comChannelUUIDs.length)
for (var i = 0; i < message.comChannelUUIDs.length; ++i)
writer.uint32(/* id 11, wireType 2 =*/90).string(message.comChannelUUIDs[i]);
if (message.noArtifact != null && Object.hasOwnProperty.call(message, "noArtifact"))
writer.uint32(/* id 12, wireType 0 =*/96).bool(message.noArtifact);
return writer;
};

Expand Down Expand Up @@ -41399,6 +41410,10 @@ $root.ProtoAdvancedIllustrationArea = (function() {
message.comChannelUUIDs.push(reader.string());
break;
}
case 12: {
message.noArtifact = reader.bool();
break;
}
default:
reader.skipType(tag & 7);
break;
Expand Down Expand Up @@ -41495,6 +41510,9 @@ $root.ProtoAdvancedIllustrationArea = (function() {
if (!$util.isString(message.comChannelUUIDs[i]))
return "comChannelUUIDs: string[] expected";
}
if (message.noArtifact != null && message.hasOwnProperty("noArtifact"))
if (typeof message.noArtifact !== "boolean")
return "noArtifact: boolean expected";
return null;
};

Expand Down Expand Up @@ -41586,6 +41604,8 @@ $root.ProtoAdvancedIllustrationArea = (function() {
for (var i = 0; i < object.comChannelUUIDs.length; ++i)
message.comChannelUUIDs[i] = String(object.comChannelUUIDs[i]);
}
if (object.noArtifact != null)
message.noArtifact = Boolean(object.noArtifact);
return message;
};

Expand Down Expand Up @@ -41616,6 +41636,7 @@ $root.ProtoAdvancedIllustrationArea = (function() {
object.y = null;
object.textFlow = options.enums === String ? "DO_NOT_USE_AT_ALL" : 0;
object.rotation = 0;
object.noArtifact = false;
}
if (message._children && message._children.length) {
object._children = [];
Expand Down Expand Up @@ -41645,6 +41666,8 @@ $root.ProtoAdvancedIllustrationArea = (function() {
for (var j = 0; j < message.comChannelUUIDs.length; ++j)
object.comChannelUUIDs[j] = message.comChannelUUIDs[j];
}
if (message.noArtifact != null && message.hasOwnProperty("noArtifact"))
object.noArtifact = message.noArtifact;
return object;
};

Expand Down
1 change: 1 addition & 0 deletions build/docframe.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1356,6 +1356,7 @@ ProtoMeasure y = 8;
ProtoAdvancedIllustrationAreaTextFlowType textFlow = 9;
float rotation = 10;
repeated string comChannelUUIDs = 11;
bool noArtifact = 12;
}
message ProtoAdjustHorizontally {
repeated ProtoDocumentElement _children = 1;
Expand Down
17 changes: 14 additions & 3 deletions docframepb/docframe.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ message ProtoAdvancedIllustrationArea {
ProtoAdvancedIllustrationAreaTextFlowType textFlow = 9;
float rotation = 10;
repeated string comChannelUUIDs = 11;
bool noArtifact = 12;
}