Skip to content

Commit

Permalink
Multiple
Browse files Browse the repository at this point in the history
Fixed:
 - dependecies
 - issue resizing columns and moving at differnt rate due to the fixed layout sizing
  • Loading branch information
validide committed Aug 14, 2020
1 parent 5bc42be commit a88ba35
Show file tree
Hide file tree
Showing 37 changed files with 725 additions and 261 deletions.
51 changes: 36 additions & 15 deletions dist/js/bundle/resizable-table-columns.js

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

2 changes: 1 addition & 1 deletion dist/js/bundle/resizable-table-columns.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/bundle/resizable-table-columns.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/es6/resizable-constants.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ interface IEvents {
eventResize: string;
eventResizeStop: string;
}
export default class ResizableConstants {
export declare class ResizableConstants {
static dataPropertyname: string;
static classes: IClassesConstants;
static attibutes: IAttributesConstants;
Expand Down
2 changes: 1 addition & 1 deletion dist/js/es6/resizable-constants.js

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

2 changes: 1 addition & 1 deletion dist/js/es6/resizable-constants.js.map

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

2 changes: 2 additions & 0 deletions dist/js/es6/resizable-event-data.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,7 @@ export declare class ResizableEventData {
pointer: PointerData;
originalWidths: WidthsData;
newWidths: WidthsData;
columnRatio: number;
tableRatio: number;
constructor(column: HTMLTableCellElement, dragHandler: HTMLDivElement);
}
2 changes: 2 additions & 0 deletions dist/js/es6/resizable-event-data.js

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

2 changes: 1 addition & 1 deletion dist/js/es6/resizable-event-data.js.map

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

2 changes: 1 addition & 1 deletion dist/js/es6/resizable-options.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default class ResizableOptions {
export declare class ResizableOptions {
resizeFromBody: boolean;
minWidth: null | number;
maxWidth: null | number;
Expand Down
4 changes: 2 additions & 2 deletions dist/js/es6/resizable-options.js

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

2 changes: 1 addition & 1 deletion dist/js/es6/resizable-options.js.map

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

6 changes: 3 additions & 3 deletions dist/js/es6/resizable-table-columns.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import ResizableOptions from './resizable-options';
import { ResizableOptions } from './resizable-options';
import { ResizableEventData } from './resizable-event-data';
declare class ResizableTableColumns {
export declare class ResizableTableColumns {
static instancesCount: number;
static windowResizeHandlerRegistered: boolean;
table: HTMLTableElement;
Expand Down Expand Up @@ -51,7 +51,7 @@ declare class ResizableTableColumns {
static generateColumnId(el: HTMLElement): string;
static generateTableId(table: HTMLTableElement): string;
static getWidth(el: HTMLElement): number;
static getComputedWidth(el: HTMLElement): number;
static setWidth(element: HTMLElement, width: number): void;
static getInstanceId(): number;
}
export default ResizableTableColumns;
47 changes: 32 additions & 15 deletions dist/js/es6/resizable-table-columns.js

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

2 changes: 1 addition & 1 deletion dist/js/es6/resizable-table-columns.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/es6/utilities-dom.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default class UtilitiesDOM {
export declare class UtilitiesDOM {
static addClass(el: HTMLElement, className: string): void;
static removeClass(el: HTMLElement, className: string): void;
static hasClass(el: HTMLElement, className: string): boolean;
Expand Down
4 changes: 2 additions & 2 deletions dist/js/es6/utilities-dom.js

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

Loading

0 comments on commit a88ba35

Please sign in to comment.