Skip to content

Commit

Permalink
built dist
Browse files Browse the repository at this point in the history
  • Loading branch information
nozer committed Aug 16, 2018
1 parent cee8e00 commit 16b8048
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 13 deletions.
5 changes: 0 additions & 5 deletions dist/browser/QuillDeltaToHtmlConverter.bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -539,11 +539,6 @@ var QuillDeltaToHtmlConverter = (function () {
: op.isUncheckedList() ? this.options.bulletListTag + ''
: '';
};
QuillDeltaToHtmlConverter.prototype._getListAttr = function (op) {
return op.isCheckedList() ? { key: 'data-checked', value: 'true' }
: op.isUncheckedList() ? { key: 'data-checked', value: 'false' }
: undefined;
};
QuillDeltaToHtmlConverter.prototype.getGroupedOps = function () {
var deltaOps = InsertOpsConverter_1.InsertOpsConverter.convert(this.rawDeltaOps);
var pairedOps = Grouper_1.Grouper.pairOpsWithTheirBlock(deltaOps);
Expand Down
2 changes: 0 additions & 2 deletions dist/commonjs/QuillDeltaToHtmlConverter.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { DeltaInsertOp } from './DeltaInsertOp';
import { ListGroup, ListItem, TDataGroup } from './grouper/group-types';
import { ITagKeyValue } from './funcs-html';
import './extensions/Object';
import { GroupType } from './value-types';
interface IQuillDeltaToHtmlConverterOptions {
Expand All @@ -24,7 +23,6 @@ declare class QuillDeltaToHtmlConverter {
private callbacks;
constructor(deltaOps: any[], options?: IQuillDeltaToHtmlConverterOptions);
_getListTag(op: DeltaInsertOp): string;
_getListAttr(op: DeltaInsertOp): ITagKeyValue | ITagKeyValue[] | undefined;
getGroupedOps(): TDataGroup[];
convert(): string;
_renderWithCallbacks(groupType: GroupType, group: TDataGroup, myRenderFn: () => string): string;
Expand Down
5 changes: 0 additions & 5 deletions dist/commonjs/QuillDeltaToHtmlConverter.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,6 @@ var QuillDeltaToHtmlConverter = (function () {
: op.isUncheckedList() ? this.options.bulletListTag + ''
: '';
};
QuillDeltaToHtmlConverter.prototype._getListAttr = function (op) {
return op.isCheckedList() ? { key: 'data-checked', value: 'true' }
: op.isUncheckedList() ? { key: 'data-checked', value: 'false' }
: undefined;
};
QuillDeltaToHtmlConverter.prototype.getGroupedOps = function () {
var deltaOps = InsertOpsConverter_1.InsertOpsConverter.convert(this.rawDeltaOps);
var pairedOps = Grouper_1.Grouper.pairOpsWithTheirBlock(deltaOps);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "quill-delta-to-html",
"version": "0.9.5",
"version": "0.9.6",
"description": "Converts Quill's delta ops to HTML",
"main": "./dist/commonjs/main.js",
"types": "./dist/commonjs/main.d.ts",
Expand Down

0 comments on commit 16b8048

Please sign in to comment.