diff --git a/css/dropdown.scss b/css/dropdown.scss index cdc4366..812cf11 100644 --- a/css/dropdown.scss +++ b/css/dropdown.scss @@ -179,7 +179,6 @@ $listMaxHeight: 210px; left: -1px; &.slide-up { - top: auto; /*border-top-width: 1px; border-bottom-width: 0;*/ transform-origin: bottom; diff --git a/css/grid.scss b/css/grid.scss index 93e9bf2..d4e29c1 100644 --- a/css/grid.scss +++ b/css/grid.scss @@ -18,6 +18,7 @@ & { --hover-bg-color: lightyellow; --link-fore-color: #1890ff; + --link-disabled-color: #d9d9d9; --header-border-color: #adaba9; --header-bg-color: #fafafa; --header-fore-color: #000; @@ -280,6 +281,11 @@ >.dropdown-panel { top: calc(var(--line-height) + 2px); + + &.slide-up { + top: unset; + bottom: calc(var(--line-height) + 2px); + } } } @@ -291,16 +297,25 @@ align-items: center; position: relative; - svg { + >svg { width: 16px; height: 16px; fill: var(--link-fore-color); transition: opacity .12s ease; } - &:hover svg { + &:hover>svg { opacity: .4; } + + &.disabled { + cursor: unset; + + >svg { + fill: var(--header-border-color); + opacity: unset; + } + } } } } diff --git a/css/tooltip.scss b/css/tooltip.scss index 9c6db94..6b793bb 100644 --- a/css/tooltip.scss +++ b/css/tooltip.scss @@ -9,12 +9,12 @@ } .tooltip-wrapper { - position: absolute; + position: fixed; word-wrap: break-word; height: auto; text-align: left; z-index: 250; - min-width: 75px; + min-width: 45px; max-width: 480px; min-height: 32px; border-radius: 2px; diff --git a/lib/ui/grid.d.ts b/lib/ui/grid.d.ts new file mode 100644 index 0000000..3dddd85 --- /dev/null +++ b/lib/ui/grid.d.ts @@ -0,0 +1,65 @@ +interface GridColumn { + static create(): HTMLElement; + static setValue(element: HTMLElement, val: any): void; + static setStyle(element: HTMLElement, style: { [key: string]: string }): void; +} + +interface GridColumn { + key?: string; +} + +interface GridColumnDirection { + [-1]: Number, + 0: Number, + 1: Number +} + +interface GridColumnColumnEventMap { + "reorder": string, + "resize": string, + "sort": string +} + +interface Grid { + columns: Array; + langs?: { all: string, ok: string, reset: string }; + virtualCount?: Number; + rowHeight?: Number; + filterRowHeight?: Number; + height?: Number; + readonly?: boolean; + multiSelect?: boolean; + fullrowClick?: boolean; + allowHtml?: boolean; + holderDisabled?: boolean; + window?: Window + sortIndex?: Number; + sortDirection?: keyof GridColumnDirection; + + willSelect?: (index: Number, colIndex: Number) => boolean; + selectedRowChanged?: (index?: Number) => void; + cellDblClicked?: (index: Number, colIndex: Number) => void; + cellClicked?: (index: Number, colIndex: Number) => boolean; + rowDblClicked?: (index: Number) => void; + columnChanged?: (type: K, index: Number, value: Number | keyof GridColumnDirection) => void; + + source(): Array; + source(list: Array): void; + + +} + +declare var Grid: { + ColumnTypes: { + Common: 0, + Input: 1, + Dropdown: 2, + Checkbox: 3, + Icon: 4, + isCheckbox(type: Number): boolean; + }; + GridColumn: GridColumn; + new(container: HTMLElement): Grid; +} + +export default Grid; \ No newline at end of file diff --git a/lib/ui/grid.html b/lib/ui/grid.html index 9ac0111..671b877 100644 --- a/lib/ui/grid.html +++ b/lib/ui/grid.html @@ -34,6 +34,7 @@ } }; + // grid.readonly = true; grid.allowHtml = true; grid.height = 0; grid.columns = [ @@ -59,7 +60,16 @@ }, { key: 'c3', caption: 'column 3', width: 90 }, { key: 'c4', caption: 'Note', type: Grid.ColumnTypes.Input }, - { key: 'c5', type: Grid.ColumnTypes.Icon, text: 'times', tooltip: 'Delete' } + { + key: 'c5', + type: Grid.ColumnTypes.Icon, + enabled: 'enabled', + text: 'times', + tooltip: 'Delete', + events: { + onclick() { console.log('deleted', this) } + } + } ]; grid.columnChanged = (type, index, value) => console.log(`column (${index}), ${type}, ${value}`); grid.cellClicked = (rId, cId) => console.log(`row (${rId}), column (${cId}) clicked.`); @@ -80,7 +90,7 @@