├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── apps ├── .gitkeep └── demo │ ├── e2e │ ├── app.e2e-spec.ts │ ├── app.po.ts │ └── tsconfig.e2e.json │ └── src │ ├── app │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ └── app.module.ts │ ├── assets │ ├── .gitkeep │ └── nx-logo.png │ ├── environments │ ├── environment.prod.ts │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── pages │ ├── cards.ts │ ├── copy.ts │ ├── drag-class.ts │ ├── drag-delay.ts │ ├── drag-handle.ts │ ├── form.ts │ ├── groups.ts │ ├── index.ts │ ├── lock-axis.ts │ ├── nested.ts │ ├── simple-horizontal.ts │ ├── simple-scroller.ts │ ├── simple.ts │ ├── transition-duration.ts │ └── utils.ts │ ├── polyfills.ts │ ├── styles.css │ ├── tsconfig.app.json │ └── tsconfig.packaged.json ├── dist └── ngxsmoothdnd │ ├── assets │ └── nx-logo.png │ ├── favicon.ico │ ├── index.html │ ├── main.js │ ├── main.js.map │ ├── polyfills.js │ ├── polyfills.js.map │ ├── runtime.js │ ├── runtime.js.map │ ├── styles.js │ ├── styles.js.map │ ├── vendor.js │ └── vendor.js.map ├── e2e ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.e2e.json ├── libs ├── .gitkeep └── ngx-smooth-dnd │ ├── README.md │ ├── index.ts │ ├── package.json │ ├── public_api.ts │ └── src │ ├── container │ ├── container.component.html │ └── container.component.ts │ ├── draggable │ ├── draggable.component.html │ └── draggable.component.ts │ └── ngx-smooth-dnd.module.ts ├── ngx-smooth-dnd ├── README.md ├── bundles │ ├── ngx-smooth-dnd.umd.js │ ├── ngx-smooth-dnd.umd.js.map │ ├── ngx-smooth-dnd.umd.min.js │ └── ngx-smooth-dnd.umd.min.js.map ├── esm2015 │ ├── ngx-smooth-dnd.js │ ├── public_api.js │ └── src │ │ ├── container │ │ └── container.component.js │ │ ├── draggable │ │ └── draggable.component.js │ │ └── ngx-smooth-dnd.module.js ├── esm5 │ ├── ngx-smooth-dnd.js │ ├── public_api.js │ └── src │ │ ├── container │ │ └── container.component.js │ │ ├── draggable │ │ └── draggable.component.js │ │ └── ngx-smooth-dnd.module.js ├── fesm2015 │ ├── ngx-smooth-dnd.js │ └── ngx-smooth-dnd.js.map ├── fesm5 │ ├── ngx-smooth-dnd.js │ └── ngx-smooth-dnd.js.map ├── ngx-smooth-dnd.d.ts ├── ngx-smooth-dnd.metadata.json ├── package.json ├── public_api.d.ts └── src │ ├── container │ └── container.component.d.ts │ ├── draggable │ └── draggable.component.d.ts │ └── ngx-smooth-dnd.module.d.ts ├── package.json ├── src ├── app │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ └── app.module.ts ├── assets │ ├── .gitkeep │ └── nx-logo.png ├── browserslist ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── karma.conf.js ├── main.ts ├── pages │ ├── cards.ts │ ├── copy.ts │ ├── drag-class.ts │ ├── drag-delay.ts │ ├── drag-handle.ts │ ├── form.ts │ ├── groups.ts │ ├── index.ts │ ├── lock-axis.ts │ ├── nested.ts │ ├── simple-horizontal.ts │ ├── simple-scroller.ts │ ├── simple.ts │ ├── transition-duration.ts │ └── utils.ts ├── polyfills.ts ├── styles.css ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── tslint.json ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/angular.json -------------------------------------------------------------------------------- /apps/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /apps/demo/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /apps/demo/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/e2e/app.po.ts -------------------------------------------------------------------------------- /apps/demo/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /apps/demo/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/demo/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/src/app/app.component.html -------------------------------------------------------------------------------- /apps/demo/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /apps/demo/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/demo/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/src/app/app.module.ts -------------------------------------------------------------------------------- /apps/demo/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/demo/src/assets/nx-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/src/assets/nx-logo.png -------------------------------------------------------------------------------- /apps/demo/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /apps/demo/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/src/environments/environment.ts -------------------------------------------------------------------------------- /apps/demo/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/src/favicon.ico -------------------------------------------------------------------------------- /apps/demo/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/src/index.html -------------------------------------------------------------------------------- /apps/demo/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/src/main.ts -------------------------------------------------------------------------------- /apps/demo/src/pages/cards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/src/pages/cards.ts -------------------------------------------------------------------------------- /apps/demo/src/pages/copy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/src/pages/copy.ts -------------------------------------------------------------------------------- /apps/demo/src/pages/drag-class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/src/pages/drag-class.ts -------------------------------------------------------------------------------- /apps/demo/src/pages/drag-delay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/src/pages/drag-delay.ts -------------------------------------------------------------------------------- /apps/demo/src/pages/drag-handle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/src/pages/drag-handle.ts -------------------------------------------------------------------------------- /apps/demo/src/pages/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/src/pages/form.ts -------------------------------------------------------------------------------- /apps/demo/src/pages/groups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/src/pages/groups.ts -------------------------------------------------------------------------------- /apps/demo/src/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/src/pages/index.ts -------------------------------------------------------------------------------- /apps/demo/src/pages/lock-axis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/src/pages/lock-axis.ts -------------------------------------------------------------------------------- /apps/demo/src/pages/nested.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/src/pages/nested.ts -------------------------------------------------------------------------------- /apps/demo/src/pages/simple-horizontal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/src/pages/simple-horizontal.ts -------------------------------------------------------------------------------- /apps/demo/src/pages/simple-scroller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/src/pages/simple-scroller.ts -------------------------------------------------------------------------------- /apps/demo/src/pages/simple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/src/pages/simple.ts -------------------------------------------------------------------------------- /apps/demo/src/pages/transition-duration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/src/pages/transition-duration.ts -------------------------------------------------------------------------------- /apps/demo/src/pages/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/src/pages/utils.ts -------------------------------------------------------------------------------- /apps/demo/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/src/polyfills.ts -------------------------------------------------------------------------------- /apps/demo/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/src/styles.css -------------------------------------------------------------------------------- /apps/demo/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/src/tsconfig.app.json -------------------------------------------------------------------------------- /apps/demo/src/tsconfig.packaged.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/apps/demo/src/tsconfig.packaged.json -------------------------------------------------------------------------------- /dist/ngxsmoothdnd/assets/nx-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/dist/ngxsmoothdnd/assets/nx-logo.png -------------------------------------------------------------------------------- /dist/ngxsmoothdnd/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/dist/ngxsmoothdnd/favicon.ico -------------------------------------------------------------------------------- /dist/ngxsmoothdnd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/dist/ngxsmoothdnd/index.html -------------------------------------------------------------------------------- /dist/ngxsmoothdnd/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/dist/ngxsmoothdnd/main.js -------------------------------------------------------------------------------- /dist/ngxsmoothdnd/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/dist/ngxsmoothdnd/main.js.map -------------------------------------------------------------------------------- /dist/ngxsmoothdnd/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/dist/ngxsmoothdnd/polyfills.js -------------------------------------------------------------------------------- /dist/ngxsmoothdnd/polyfills.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/dist/ngxsmoothdnd/polyfills.js.map -------------------------------------------------------------------------------- /dist/ngxsmoothdnd/runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/dist/ngxsmoothdnd/runtime.js -------------------------------------------------------------------------------- /dist/ngxsmoothdnd/runtime.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/dist/ngxsmoothdnd/runtime.js.map -------------------------------------------------------------------------------- /dist/ngxsmoothdnd/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/dist/ngxsmoothdnd/styles.js -------------------------------------------------------------------------------- /dist/ngxsmoothdnd/styles.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/dist/ngxsmoothdnd/styles.js.map -------------------------------------------------------------------------------- /dist/ngxsmoothdnd/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/dist/ngxsmoothdnd/vendor.js -------------------------------------------------------------------------------- /dist/ngxsmoothdnd/vendor.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/dist/ngxsmoothdnd/vendor.js.map -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /libs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/ngx-smooth-dnd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/libs/ngx-smooth-dnd/README.md -------------------------------------------------------------------------------- /libs/ngx-smooth-dnd/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /libs/ngx-smooth-dnd/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/libs/ngx-smooth-dnd/package.json -------------------------------------------------------------------------------- /libs/ngx-smooth-dnd/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/libs/ngx-smooth-dnd/public_api.ts -------------------------------------------------------------------------------- /libs/ngx-smooth-dnd/src/container/container.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/libs/ngx-smooth-dnd/src/container/container.component.html -------------------------------------------------------------------------------- /libs/ngx-smooth-dnd/src/container/container.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/libs/ngx-smooth-dnd/src/container/container.component.ts -------------------------------------------------------------------------------- /libs/ngx-smooth-dnd/src/draggable/draggable.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/libs/ngx-smooth-dnd/src/draggable/draggable.component.html -------------------------------------------------------------------------------- /libs/ngx-smooth-dnd/src/draggable/draggable.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/libs/ngx-smooth-dnd/src/draggable/draggable.component.ts -------------------------------------------------------------------------------- /libs/ngx-smooth-dnd/src/ngx-smooth-dnd.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/libs/ngx-smooth-dnd/src/ngx-smooth-dnd.module.ts -------------------------------------------------------------------------------- /ngx-smooth-dnd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/ngx-smooth-dnd/README.md -------------------------------------------------------------------------------- /ngx-smooth-dnd/bundles/ngx-smooth-dnd.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/ngx-smooth-dnd/bundles/ngx-smooth-dnd.umd.js -------------------------------------------------------------------------------- /ngx-smooth-dnd/bundles/ngx-smooth-dnd.umd.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/ngx-smooth-dnd/bundles/ngx-smooth-dnd.umd.js.map -------------------------------------------------------------------------------- /ngx-smooth-dnd/bundles/ngx-smooth-dnd.umd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/ngx-smooth-dnd/bundles/ngx-smooth-dnd.umd.min.js -------------------------------------------------------------------------------- /ngx-smooth-dnd/bundles/ngx-smooth-dnd.umd.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/ngx-smooth-dnd/bundles/ngx-smooth-dnd.umd.min.js.map -------------------------------------------------------------------------------- /ngx-smooth-dnd/esm2015/ngx-smooth-dnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/ngx-smooth-dnd/esm2015/ngx-smooth-dnd.js -------------------------------------------------------------------------------- /ngx-smooth-dnd/esm2015/public_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/ngx-smooth-dnd/esm2015/public_api.js -------------------------------------------------------------------------------- /ngx-smooth-dnd/esm2015/src/container/container.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/ngx-smooth-dnd/esm2015/src/container/container.component.js -------------------------------------------------------------------------------- /ngx-smooth-dnd/esm2015/src/draggable/draggable.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/ngx-smooth-dnd/esm2015/src/draggable/draggable.component.js -------------------------------------------------------------------------------- /ngx-smooth-dnd/esm2015/src/ngx-smooth-dnd.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/ngx-smooth-dnd/esm2015/src/ngx-smooth-dnd.module.js -------------------------------------------------------------------------------- /ngx-smooth-dnd/esm5/ngx-smooth-dnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/ngx-smooth-dnd/esm5/ngx-smooth-dnd.js -------------------------------------------------------------------------------- /ngx-smooth-dnd/esm5/public_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/ngx-smooth-dnd/esm5/public_api.js -------------------------------------------------------------------------------- /ngx-smooth-dnd/esm5/src/container/container.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/ngx-smooth-dnd/esm5/src/container/container.component.js -------------------------------------------------------------------------------- /ngx-smooth-dnd/esm5/src/draggable/draggable.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/ngx-smooth-dnd/esm5/src/draggable/draggable.component.js -------------------------------------------------------------------------------- /ngx-smooth-dnd/esm5/src/ngx-smooth-dnd.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/ngx-smooth-dnd/esm5/src/ngx-smooth-dnd.module.js -------------------------------------------------------------------------------- /ngx-smooth-dnd/fesm2015/ngx-smooth-dnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/ngx-smooth-dnd/fesm2015/ngx-smooth-dnd.js -------------------------------------------------------------------------------- /ngx-smooth-dnd/fesm2015/ngx-smooth-dnd.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/ngx-smooth-dnd/fesm2015/ngx-smooth-dnd.js.map -------------------------------------------------------------------------------- /ngx-smooth-dnd/fesm5/ngx-smooth-dnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/ngx-smooth-dnd/fesm5/ngx-smooth-dnd.js -------------------------------------------------------------------------------- /ngx-smooth-dnd/fesm5/ngx-smooth-dnd.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/ngx-smooth-dnd/fesm5/ngx-smooth-dnd.js.map -------------------------------------------------------------------------------- /ngx-smooth-dnd/ngx-smooth-dnd.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/ngx-smooth-dnd/ngx-smooth-dnd.d.ts -------------------------------------------------------------------------------- /ngx-smooth-dnd/ngx-smooth-dnd.metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/ngx-smooth-dnd/ngx-smooth-dnd.metadata.json -------------------------------------------------------------------------------- /ngx-smooth-dnd/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/ngx-smooth-dnd/package.json -------------------------------------------------------------------------------- /ngx-smooth-dnd/public_api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/ngx-smooth-dnd/public_api.d.ts -------------------------------------------------------------------------------- /ngx-smooth-dnd/src/container/container.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/ngx-smooth-dnd/src/container/container.component.d.ts -------------------------------------------------------------------------------- /ngx-smooth-dnd/src/draggable/draggable.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/ngx-smooth-dnd/src/draggable/draggable.component.d.ts -------------------------------------------------------------------------------- /ngx-smooth-dnd/src/ngx-smooth-dnd.module.d.ts: -------------------------------------------------------------------------------- 1 | export declare class NgxSmoothDnDModule { 2 | } 3 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/nx-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/assets/nx-logo.png -------------------------------------------------------------------------------- /src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/browserslist -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/index.html -------------------------------------------------------------------------------- /src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/karma.conf.js -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/pages/cards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/pages/cards.ts -------------------------------------------------------------------------------- /src/pages/copy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/pages/copy.ts -------------------------------------------------------------------------------- /src/pages/drag-class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/pages/drag-class.ts -------------------------------------------------------------------------------- /src/pages/drag-delay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/pages/drag-delay.ts -------------------------------------------------------------------------------- /src/pages/drag-handle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/pages/drag-handle.ts -------------------------------------------------------------------------------- /src/pages/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/pages/form.ts -------------------------------------------------------------------------------- /src/pages/groups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/pages/groups.ts -------------------------------------------------------------------------------- /src/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/pages/index.ts -------------------------------------------------------------------------------- /src/pages/lock-axis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/pages/lock-axis.ts -------------------------------------------------------------------------------- /src/pages/nested.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/pages/nested.ts -------------------------------------------------------------------------------- /src/pages/simple-horizontal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/pages/simple-horizontal.ts -------------------------------------------------------------------------------- /src/pages/simple-scroller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/pages/simple-scroller.ts -------------------------------------------------------------------------------- /src/pages/simple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/pages/simple.ts -------------------------------------------------------------------------------- /src/pages/transition-duration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/pages/transition-duration.ts -------------------------------------------------------------------------------- /src/pages/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/pages/utils.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/src/tslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kutlugsahin/ngx-smooth-dnd/HEAD/tslint.json --------------------------------------------------------------------------------