├── .editorconfig ├── .eslintrc.json ├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── angular.json ├── package.json ├── projects └── angular2-draggable │ ├── LICENSE │ ├── ng-package.json │ ├── package.json │ ├── src │ ├── lib │ │ ├── angular-draggable.directive.ts │ │ ├── angular-draggable.module.ts │ │ ├── angular-resizable.directive.ts │ │ ├── models │ │ │ ├── position.ts │ │ │ ├── resize-event.ts │ │ │ ├── resize-handle-type.ts │ │ │ └── size.ts │ │ └── widgets │ │ │ ├── helper-block.ts │ │ │ └── resize-handle.ts │ ├── public-api.ts │ └── scss │ │ ├── _variables.scss │ │ └── resizable.scss │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── scripts └── build-scss.js ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.ts │ ├── app.module.ts │ ├── layout │ │ ├── app-menu │ │ │ ├── app-menu.component.html │ │ │ ├── app-menu.component.scss │ │ │ └── app-menu.component.ts │ │ └── layout.module.ts │ ├── menus.ts │ ├── pages │ │ ├── demo-draggable │ │ │ ├── demo-draggable-routing.module.ts │ │ │ ├── demo-draggable.module.ts │ │ │ ├── draggable-basic │ │ │ │ ├── draggable-basic.component.html │ │ │ │ ├── draggable-basic.component.scss │ │ │ │ └── draggable-basic.component.ts │ │ │ ├── draggable-boundary │ │ │ │ ├── draggable-boundary.component.html │ │ │ │ ├── draggable-boundary.component.scss │ │ │ │ └── draggable-boundary.component.ts │ │ │ ├── draggable-events │ │ │ │ ├── draggable-events.component.html │ │ │ │ ├── draggable-events.component.scss │ │ │ │ └── draggable-events.component.ts │ │ │ ├── draggable-grid │ │ │ │ ├── draggable-grid.component.html │ │ │ │ ├── draggable-grid.component.scss │ │ │ │ └── draggable-grid.component.ts │ │ │ ├── draggable-layout │ │ │ │ ├── draggable-layout.component.html │ │ │ │ ├── draggable-layout.component.scss │ │ │ │ └── draggable-layout.component.ts │ │ │ ├── draggable-methods │ │ │ │ ├── draggable-methods.component.html │ │ │ │ ├── draggable-methods.component.scss │ │ │ │ └── draggable-methods.component.ts │ │ │ ├── draggable-options │ │ │ │ ├── draggable-options.component.html │ │ │ │ ├── draggable-options.component.scss │ │ │ │ └── draggable-options.component.ts │ │ │ └── draggable-swap │ │ │ │ ├── draggable-swap.component.html │ │ │ │ ├── draggable-swap.component.scss │ │ │ │ └── draggable-swap.component.ts │ │ ├── demo-resizable │ │ │ ├── demo-resizable-routing.module.ts │ │ │ ├── demo-resizable.module.ts │ │ │ ├── resizable-basic │ │ │ │ ├── resizable-basic.component.html │ │ │ │ ├── resizable-basic.component.scss │ │ │ │ └── resizable-basic.component.ts │ │ │ ├── resizable-containment │ │ │ │ ├── resizable-containment.component.html │ │ │ │ ├── resizable-containment.component.scss │ │ │ │ └── resizable-containment.component.ts │ │ │ ├── resizable-events │ │ │ │ ├── resizable-events.component.html │ │ │ │ ├── resizable-events.component.scss │ │ │ │ └── resizable-events.component.ts │ │ │ ├── resizable-grid │ │ │ │ ├── resizable-grid.component.html │ │ │ │ ├── resizable-grid.component.scss │ │ │ │ └── resizable-grid.component.ts │ │ │ ├── resizable-iframe │ │ │ │ ├── resizable-iframe.component.html │ │ │ │ ├── resizable-iframe.component.scss │ │ │ │ └── resizable-iframe.component.ts │ │ │ ├── resizable-layout │ │ │ │ ├── resizable-layout.component.html │ │ │ │ ├── resizable-layout.component.scss │ │ │ │ └── resizable-layout.component.ts │ │ │ └── resizable-min-max │ │ │ │ ├── resizable-min-max.component.html │ │ │ │ ├── resizable-min-max.component.scss │ │ │ │ └── resizable-min-max.component.ts │ │ └── welcome │ │ │ ├── welcome-routing.module.ts │ │ │ ├── welcome.component.html │ │ │ ├── welcome.component.scss │ │ │ ├── welcome.component.ts │ │ │ └── welcome.module.ts │ └── shared │ │ ├── code-block │ │ ├── code-block.component.html │ │ ├── code-block.component.scss │ │ └── code-block.component.ts │ │ ├── icons-provider.module.ts │ │ ├── ng-zorro-custom.module.ts │ │ └── shared.module.ts ├── assets │ ├── .gitkeep │ ├── demo.pdf │ ├── fonts │ │ └── RobotoMono-Regular.ttf │ └── logo.svg ├── index.html ├── main.ts ├── prism-material-dark.css ├── styles.scss └── styles │ ├── _custom.scss │ └── _resizable.scss ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/angular.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/package.json -------------------------------------------------------------------------------- /projects/angular2-draggable/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/projects/angular2-draggable/LICENSE -------------------------------------------------------------------------------- /projects/angular2-draggable/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/projects/angular2-draggable/ng-package.json -------------------------------------------------------------------------------- /projects/angular2-draggable/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/projects/angular2-draggable/package.json -------------------------------------------------------------------------------- /projects/angular2-draggable/src/lib/angular-draggable.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/projects/angular2-draggable/src/lib/angular-draggable.directive.ts -------------------------------------------------------------------------------- /projects/angular2-draggable/src/lib/angular-draggable.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/projects/angular2-draggable/src/lib/angular-draggable.module.ts -------------------------------------------------------------------------------- /projects/angular2-draggable/src/lib/angular-resizable.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/projects/angular2-draggable/src/lib/angular-resizable.directive.ts -------------------------------------------------------------------------------- /projects/angular2-draggable/src/lib/models/position.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/projects/angular2-draggable/src/lib/models/position.ts -------------------------------------------------------------------------------- /projects/angular2-draggable/src/lib/models/resize-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/projects/angular2-draggable/src/lib/models/resize-event.ts -------------------------------------------------------------------------------- /projects/angular2-draggable/src/lib/models/resize-handle-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/projects/angular2-draggable/src/lib/models/resize-handle-type.ts -------------------------------------------------------------------------------- /projects/angular2-draggable/src/lib/models/size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/projects/angular2-draggable/src/lib/models/size.ts -------------------------------------------------------------------------------- /projects/angular2-draggable/src/lib/widgets/helper-block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/projects/angular2-draggable/src/lib/widgets/helper-block.ts -------------------------------------------------------------------------------- /projects/angular2-draggable/src/lib/widgets/resize-handle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/projects/angular2-draggable/src/lib/widgets/resize-handle.ts -------------------------------------------------------------------------------- /projects/angular2-draggable/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/projects/angular2-draggable/src/public-api.ts -------------------------------------------------------------------------------- /projects/angular2-draggable/src/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/projects/angular2-draggable/src/scss/_variables.scss -------------------------------------------------------------------------------- /projects/angular2-draggable/src/scss/resizable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/projects/angular2-draggable/src/scss/resizable.scss -------------------------------------------------------------------------------- /projects/angular2-draggable/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/projects/angular2-draggable/tsconfig.lib.json -------------------------------------------------------------------------------- /projects/angular2-draggable/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/projects/angular2-draggable/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /projects/angular2-draggable/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/projects/angular2-draggable/tsconfig.spec.json -------------------------------------------------------------------------------- /scripts/build-scss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/scripts/build-scss.js -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/app.component.scss -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/layout/app-menu/app-menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/layout/app-menu/app-menu.component.html -------------------------------------------------------------------------------- /src/app/layout/app-menu/app-menu.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/layout/app-menu/app-menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/layout/app-menu/app-menu.component.ts -------------------------------------------------------------------------------- /src/app/layout/layout.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/layout/layout.module.ts -------------------------------------------------------------------------------- /src/app/menus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/menus.ts -------------------------------------------------------------------------------- /src/app/pages/demo-draggable/demo-draggable-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-draggable/demo-draggable-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/demo-draggable/demo-draggable.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-draggable/demo-draggable.module.ts -------------------------------------------------------------------------------- /src/app/pages/demo-draggable/draggable-basic/draggable-basic.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-draggable/draggable-basic/draggable-basic.component.html -------------------------------------------------------------------------------- /src/app/pages/demo-draggable/draggable-basic/draggable-basic.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/demo-draggable/draggable-basic/draggable-basic.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-draggable/draggable-basic/draggable-basic.component.ts -------------------------------------------------------------------------------- /src/app/pages/demo-draggable/draggable-boundary/draggable-boundary.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-draggable/draggable-boundary/draggable-boundary.component.html -------------------------------------------------------------------------------- /src/app/pages/demo-draggable/draggable-boundary/draggable-boundary.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/demo-draggable/draggable-boundary/draggable-boundary.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-draggable/draggable-boundary/draggable-boundary.component.ts -------------------------------------------------------------------------------- /src/app/pages/demo-draggable/draggable-events/draggable-events.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-draggable/draggable-events/draggable-events.component.html -------------------------------------------------------------------------------- /src/app/pages/demo-draggable/draggable-events/draggable-events.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/demo-draggable/draggable-events/draggable-events.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-draggable/draggable-events/draggable-events.component.ts -------------------------------------------------------------------------------- /src/app/pages/demo-draggable/draggable-grid/draggable-grid.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-draggable/draggable-grid/draggable-grid.component.html -------------------------------------------------------------------------------- /src/app/pages/demo-draggable/draggable-grid/draggable-grid.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-draggable/draggable-grid/draggable-grid.component.scss -------------------------------------------------------------------------------- /src/app/pages/demo-draggable/draggable-grid/draggable-grid.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-draggable/draggable-grid/draggable-grid.component.ts -------------------------------------------------------------------------------- /src/app/pages/demo-draggable/draggable-layout/draggable-layout.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-draggable/draggable-layout/draggable-layout.component.html -------------------------------------------------------------------------------- /src/app/pages/demo-draggable/draggable-layout/draggable-layout.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/demo-draggable/draggable-layout/draggable-layout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-draggable/draggable-layout/draggable-layout.component.ts -------------------------------------------------------------------------------- /src/app/pages/demo-draggable/draggable-methods/draggable-methods.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-draggable/draggable-methods/draggable-methods.component.html -------------------------------------------------------------------------------- /src/app/pages/demo-draggable/draggable-methods/draggable-methods.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/demo-draggable/draggable-methods/draggable-methods.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-draggable/draggable-methods/draggable-methods.component.ts -------------------------------------------------------------------------------- /src/app/pages/demo-draggable/draggable-options/draggable-options.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-draggable/draggable-options/draggable-options.component.html -------------------------------------------------------------------------------- /src/app/pages/demo-draggable/draggable-options/draggable-options.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/demo-draggable/draggable-options/draggable-options.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-draggable/draggable-options/draggable-options.component.ts -------------------------------------------------------------------------------- /src/app/pages/demo-draggable/draggable-swap/draggable-swap.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-draggable/draggable-swap/draggable-swap.component.html -------------------------------------------------------------------------------- /src/app/pages/demo-draggable/draggable-swap/draggable-swap.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-draggable/draggable-swap/draggable-swap.component.scss -------------------------------------------------------------------------------- /src/app/pages/demo-draggable/draggable-swap/draggable-swap.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-draggable/draggable-swap/draggable-swap.component.ts -------------------------------------------------------------------------------- /src/app/pages/demo-resizable/demo-resizable-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-resizable/demo-resizable-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/demo-resizable/demo-resizable.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-resizable/demo-resizable.module.ts -------------------------------------------------------------------------------- /src/app/pages/demo-resizable/resizable-basic/resizable-basic.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-resizable/resizable-basic/resizable-basic.component.html -------------------------------------------------------------------------------- /src/app/pages/demo-resizable/resizable-basic/resizable-basic.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/demo-resizable/resizable-basic/resizable-basic.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-resizable/resizable-basic/resizable-basic.component.ts -------------------------------------------------------------------------------- /src/app/pages/demo-resizable/resizable-containment/resizable-containment.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-resizable/resizable-containment/resizable-containment.component.html -------------------------------------------------------------------------------- /src/app/pages/demo-resizable/resizable-containment/resizable-containment.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/demo-resizable/resizable-containment/resizable-containment.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-resizable/resizable-containment/resizable-containment.component.ts -------------------------------------------------------------------------------- /src/app/pages/demo-resizable/resizable-events/resizable-events.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-resizable/resizable-events/resizable-events.component.html -------------------------------------------------------------------------------- /src/app/pages/demo-resizable/resizable-events/resizable-events.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/demo-resizable/resizable-events/resizable-events.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-resizable/resizable-events/resizable-events.component.ts -------------------------------------------------------------------------------- /src/app/pages/demo-resizable/resizable-grid/resizable-grid.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-resizable/resizable-grid/resizable-grid.component.html -------------------------------------------------------------------------------- /src/app/pages/demo-resizable/resizable-grid/resizable-grid.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/demo-resizable/resizable-grid/resizable-grid.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-resizable/resizable-grid/resizable-grid.component.ts -------------------------------------------------------------------------------- /src/app/pages/demo-resizable/resizable-iframe/resizable-iframe.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-resizable/resizable-iframe/resizable-iframe.component.html -------------------------------------------------------------------------------- /src/app/pages/demo-resizable/resizable-iframe/resizable-iframe.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-resizable/resizable-iframe/resizable-iframe.component.scss -------------------------------------------------------------------------------- /src/app/pages/demo-resizable/resizable-iframe/resizable-iframe.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-resizable/resizable-iframe/resizable-iframe.component.ts -------------------------------------------------------------------------------- /src/app/pages/demo-resizable/resizable-layout/resizable-layout.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-resizable/resizable-layout/resizable-layout.component.html -------------------------------------------------------------------------------- /src/app/pages/demo-resizable/resizable-layout/resizable-layout.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/demo-resizable/resizable-layout/resizable-layout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-resizable/resizable-layout/resizable-layout.component.ts -------------------------------------------------------------------------------- /src/app/pages/demo-resizable/resizable-min-max/resizable-min-max.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-resizable/resizable-min-max/resizable-min-max.component.html -------------------------------------------------------------------------------- /src/app/pages/demo-resizable/resizable-min-max/resizable-min-max.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/demo-resizable/resizable-min-max/resizable-min-max.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/demo-resizable/resizable-min-max/resizable-min-max.component.ts -------------------------------------------------------------------------------- /src/app/pages/welcome/welcome-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/welcome/welcome-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/welcome/welcome.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/welcome/welcome.component.html -------------------------------------------------------------------------------- /src/app/pages/welcome/welcome.component.scss: -------------------------------------------------------------------------------- 1 | section.jumbotron { 2 | background-color: #fff !important; 3 | } -------------------------------------------------------------------------------- /src/app/pages/welcome/welcome.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/welcome/welcome.component.ts -------------------------------------------------------------------------------- /src/app/pages/welcome/welcome.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/pages/welcome/welcome.module.ts -------------------------------------------------------------------------------- /src/app/shared/code-block/code-block.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/shared/code-block/code-block.component.html -------------------------------------------------------------------------------- /src/app/shared/code-block/code-block.component.scss: -------------------------------------------------------------------------------- 1 | .code-block { 2 | margin-top: 16px; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/shared/code-block/code-block.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/shared/code-block/code-block.component.ts -------------------------------------------------------------------------------- /src/app/shared/icons-provider.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/shared/icons-provider.module.ts -------------------------------------------------------------------------------- /src/app/shared/ng-zorro-custom.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/shared/ng-zorro-custom.module.ts -------------------------------------------------------------------------------- /src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/demo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/assets/demo.pdf -------------------------------------------------------------------------------- /src/assets/fonts/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/assets/fonts/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/prism-material-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/prism-material-dark.css -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/styles/_custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/styles/_custom.scss -------------------------------------------------------------------------------- /src/styles/_resizable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/src/styles/_resizable.scss -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieziyu/angular2-draggable/HEAD/yarn.lock --------------------------------------------------------------------------------