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
1,075 changes: 561 additions & 514 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 @@ -6954,6 +6954,9 @@ export interface IProtoTableSettings {

/** ProtoTableSettings ws */
ws?: (IProtoTableWS|null);

/** ProtoTableSettings noDocumentStructure */
noDocumentStructure?: (IProtoBoxedBool|null);
}

/** Represents a ProtoTableSettings. */
Expand All @@ -6980,6 +6983,9 @@ export class ProtoTableSettings implements IProtoTableSettings {
/** ProtoTableSettings ws. */
public ws?: (IProtoTableWS|null);

/** ProtoTableSettings noDocumentStructure. */
public noDocumentStructure?: (IProtoBoxedBool|null);

/**
* Creates a new ProtoTableSettings instance using the specified properties.
* @param [properties] Properties to set
Expand Down
28 changes: 28 additions & 0 deletions build/Docframe.js
Original file line number Diff line number Diff line change
Expand Up @@ -18868,6 +18868,7 @@ $root.ProtoTableSettings = (function() {
* @property {IProtoMeasure|null} [width] ProtoTableSettings width
* @property {IProtoBoxedUint32|null} [repeatHeader] ProtoTableSettings repeatHeader
* @property {IProtoTableWS|null} [ws] ProtoTableSettings ws
* @property {IProtoBoxedBool|null} [noDocumentStructure] ProtoTableSettings noDocumentStructure
*/

/**
Expand Down Expand Up @@ -18925,6 +18926,14 @@ $root.ProtoTableSettings = (function() {
*/
ProtoTableSettings.prototype.ws = null;

/**
* ProtoTableSettings noDocumentStructure.
* @member {IProtoBoxedBool|null|undefined} noDocumentStructure
* @memberof ProtoTableSettings
* @instance
*/
ProtoTableSettings.prototype.noDocumentStructure = null;

/**
* Creates a new ProtoTableSettings instance using the specified properties.
* @function create
Expand Down Expand Up @@ -18959,6 +18968,8 @@ $root.ProtoTableSettings = (function() {
$root.ProtoBoxedUint32.encode(message.repeatHeader, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim();
if (message.ws != null && Object.hasOwnProperty.call(message, "ws"))
$root.ProtoTableWS.encode(message.ws, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim();
if (message.noDocumentStructure != null && Object.hasOwnProperty.call(message, "noDocumentStructure"))
$root.ProtoBoxedBool.encode(message.noDocumentStructure, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim();
return writer;
};

Expand Down Expand Up @@ -19013,6 +19024,10 @@ $root.ProtoTableSettings = (function() {
message.ws = $root.ProtoTableWS.decode(reader, reader.uint32());
break;
}
case 6: {
message.noDocumentStructure = $root.ProtoBoxedBool.decode(reader, reader.uint32());
break;
}
default:
reader.skipType(tag & 7);
break;
Expand Down Expand Up @@ -19073,6 +19088,11 @@ $root.ProtoTableSettings = (function() {
if (error)
return "ws." + error;
}
if (message.noDocumentStructure != null && message.hasOwnProperty("noDocumentStructure")) {
var error = $root.ProtoBoxedBool.verify(message.noDocumentStructure);
if (error)
return "noDocumentStructure." + error;
}
return null;
};

Expand Down Expand Up @@ -19113,6 +19133,11 @@ $root.ProtoTableSettings = (function() {
throw TypeError(".ProtoTableSettings.ws: object expected");
message.ws = $root.ProtoTableWS.fromObject(object.ws);
}
if (object.noDocumentStructure != null) {
if (typeof object.noDocumentStructure !== "object")
throw TypeError(".ProtoTableSettings.noDocumentStructure: object expected");
message.noDocumentStructure = $root.ProtoBoxedBool.fromObject(object.noDocumentStructure);
}
return message;
};

Expand All @@ -19135,6 +19160,7 @@ $root.ProtoTableSettings = (function() {
object.width = null;
object.repeatHeader = null;
object.ws = null;
object.noDocumentStructure = null;
}
if (message.xOffset != null && message.hasOwnProperty("xOffset"))
object.xOffset = $root.ProtoMeasure.toObject(message.xOffset, options);
Expand All @@ -19146,6 +19172,8 @@ $root.ProtoTableSettings = (function() {
object.repeatHeader = $root.ProtoBoxedUint32.toObject(message.repeatHeader, options);
if (message.ws != null && message.hasOwnProperty("ws"))
object.ws = $root.ProtoTableWS.toObject(message.ws, options);
if (message.noDocumentStructure != null && message.hasOwnProperty("noDocumentStructure"))
object.noDocumentStructure = $root.ProtoBoxedBool.toObject(message.noDocumentStructure, options);
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 @@ -600,6 +600,7 @@ ProtoBoxedBool leftMeasure = 2;
ProtoMeasure width = 3;
ProtoBoxedUint32 repeatHeader = 4;
ProtoTableWS ws = 5;
ProtoBoxedBool noDocumentStructure = 6;
}


Expand Down
Loading