Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implemented resize functionality fix #100, #342 #575

Merged
merged 26 commits into from
Apr 26, 2021
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
1b26950
adding resize functionality
Mar 26, 2021
ce95f02
add resize icon
Mar 30, 2021
fcaaf47
UI minor style improvements
Mar 30, 2021
9b3d9c2
Image resizing functionality implemented
Apr 8, 2021
e2273ef
Merge branch 'master' of https://github.com/nhn/tui.image-editor into…
Apr 9, 2021
32f9eb8
Merge branch 'nhn-master'
Apr 9, 2021
f3509e1
fix sometimes image cropped on resizing bug.
Apr 9, 2021
faf595a
fix image resizing undo and redo functions problems
Apr 9, 2021
6b5aadd
Beautified resize label in history list
Apr 9, 2021
bd853c2
Added image resizing icon on history
Apr 9, 2021
e6d7f48
changes documentation commentline resize component and command files.…
Apr 14, 2021
9c0c35d
Created resize API for graphics.
Apr 14, 2021
851a861
simplifying resize methods
Apr 14, 2021
e1976c0
simplifying resize methods
Apr 14, 2021
e99e747
deleted unnecessary comments
Apr 14, 2021
2c98e63
simplified selectionCleared method
Apr 14, 2021
b0111ec
fix test: 'switches drawing modes'
Apr 14, 2021
76b6722
fix dimension update after scaling bug
Apr 15, 2021
dbae066
lockState is turned on recalculated max width and heigth values
Apr 15, 2021
dc5a614
remove unnecessary lockState property and set method
Apr 15, 2021
e499d83
added resize component test case
Apr 15, 2021
5891daa
Resize command tests added.
Apr 15, 2021
ab7cd8c
import Promise from tui image editor utils for old browser support
Apr 22, 2021
2865f1a
Simplified ui limit set functions.
Apr 22, 2021
21c5045
Simple language change on resize tests: should setted original -> sho…
Apr 22, 2021
c00777d
Resize added to Features title on README.md
Apr 22, 2021
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
Prev Previous commit
Next Next commit
Merge branch 'master' of https://github.com/nhn/tui.image-editor into…
… nhn-master
  • Loading branch information
Saadettin Sivaz committed Apr 9, 2021
commit e2273efecee04797d5c1f3958ec224061a654145
12 changes: 12 additions & 0 deletions apps/image-editor/src/js/consts.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,21 @@ export const eventNames = {
HAND_STOPPED: 'handStopped',
KEY_DOWN: 'keydown',
KEY_UP: 'keyup',
INPUT_BOX_EDITING_STARTED: 'inputBoxEditingStarted',
INPUT_BOX_EDITING_STOPPED: 'inputBoxEditingStopped',
FOCUS: 'focus',
BLUR: 'blur',
IMAGE_RESIZED: 'imageResized',
};

/**
* Selector names
* @type {Object.<string, string>}
*/
export const selectorNames = {
COLOR_PICKER_INPUT_BOX: '.tui-colorpicker-palette-hex',
};

/**
* History names
* @type {Object.<string, string>}
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.