Package Exports
- @progress/kendo-data-query
- @progress/kendo-data-query/dist/npm/array.operators
- @progress/kendo-data-query/dist/npm/funcs
- @progress/kendo-data-query/dist/npm/transducers
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@progress/kendo-data-query) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Kendo UI for Angular 2: Data Query
A starter repository for the Kendo UI TypeScript library which provides the basic directory structure and dependencies.
Overview
The
src
directory contains the library source code. All files should have the.ts
extensions so that the build scripts can pick them.The
src/main.ts
file should import and re-export all public entities of the package.The
src/my-class.ts
file is the actual sample class implementation.The
examples
directory hosts the demos for the component. As a bare minimum, the component should have a Basic Usage example.The
test
directory contains the component tests. They are transpiled just like the source code itself and run with Jasmine in Karma (PhantomJS).The
docs
directory contains markdown files that document the specifics of the component.
Basic Usage and Installation
- Fork the repository to an appropriately named new one.
- Change the package name or description in
package.json
. Change the reference to the theme package. - Change the library name in
gulpfile.js
. - Change the
src/my-class.ts
file name to something more meaningful. - Delete the current contents and put something nice in
README.md
.
Gulp Tasks
Remember to run
npm install
andnpm run typings
before using the Gulp tasks.
build-npm-package
—Builds the scripts indist/npm
in the CommonJS format.start
—Starts the webpack-dev-server. It is suitable for example previews, development, and testing. Accessible on http://localhost:3000.docs
—Starts the documentation site for the current component. Accessible on http://localhost:8082.test
—Runs the tests with Jasmine in Karma/PhantomJS.watch-test
—Runs the tests in the watch mode.