Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
9739731
add landing page app
yanmariomenev Apr 23, 2025
e5d579c
chore: added ui fixes for the dashboard
yanmariomenev Apr 24, 2025
ce377b0
chore: fix grid rendering and update form
yanmariomenev Apr 24, 2025
6ef0393
chore: update chart and slider colors
yanmariomenev Apr 24, 2025
e49a77c
chore: update styles and some minor adjustments
yanmariomenev Apr 24, 2025
0415e63
chore: add scheduler
yanmariomenev Apr 24, 2025
02ebd54
chore: add streaming data grid demo
georgi-sla Apr 24, 2025
aff3b51
chore: add layout demos
georgi-sla Apr 24, 2025
ba09fb0
chore: add conversational-ui demo
georgi-sla Apr 24, 2025
82d7886
chore: add translation to scheduler
yanmariomenev Apr 24, 2025
3830a21
chore: add dropdowns demo
georgi-sla Apr 24, 2025
c0daaa7
chore: add dateinputs demo
georgi-sla Apr 24, 2025
b472c0e
chore: update scheduler example
yanmariomenev Apr 25, 2025
caf0de2
chore: add charts
yanmariomenev Apr 25, 2025
a00693f
chore: minor folder structure update
yanmariomenev Apr 25, 2025
cd80774
chore: add project to config and update themes
yanmariomenev Apr 25, 2025
82e2489
chore: update routing
yanmariomenev Apr 25, 2025
e367fd1
chore: minor cleanup and component update
yanmariomenev Apr 25, 2025
a5d75b8
chore: add editor
yanmariomenev Apr 25, 2025
6a6a0ad
chore: update chart component
yanmariomenev Apr 25, 2025
2be8258
chore: add dialogs and minor format update
yanmariomenev Apr 25, 2025
95cdbab
chore: cleanup
yanmariomenev Apr 25, 2025
9aba7f4
chore: add treeview demo
georgi-sla Apr 25, 2025
ca6ac73
chore: add loader for grid component
georgi-sla Apr 25, 2025
d3eef9c
chore: demo polish
yanmariomenev Apr 25, 2025
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
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,12 @@ jobs:
npm ci
npm run build

- name: Landing Page App
working-directory: ./examples-standalone/kendoangular-landing-page
run: |
npm ci
npm run build

standalone-examples-node14:
runs-on: ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion examples-standalone/bin/build-gh-pages
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

# Builds example projects and deploys them to GH Pages
STANDALONE_PROJECTS=(finance-portfolio grid-charts-integration coffee-warehouse grid-live-data spreadsheet-app personal-finance-app)
STANDALONE_PROJECTS=(finance-portfolio grid-charts-integration coffee-warehouse grid-live-data spreadsheet-app personal-finance-app kendoangular-landing-page)

set -e

Expand Down
59 changes: 59 additions & 0 deletions examples-standalone/kendoangular-landing-page/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# Kendo UI for Angular Landing Page Components

This project is a collection of Kendo UI for Angular components that are used in [Overview Landing Page](https://www.telerik.com/kendo-angular-ui).

## Development server

To start a local development server, run:

```bash
ng serve
```

Once the server is running, open your browser and navigate to `http://localhost:4200/`. The application will automatically reload whenever you modify any of the source files.

## Code scaffolding

Angular CLI includes powerful code scaffolding tools. To generate a new component, run:

```bash
ng generate component component-name
```

For a complete list of available schematics (such as `components`, `directives`, or `pipes`), run:

```bash
ng generate --help
```

## Building

To build the project run:

```bash
ng build
```

This will compile your project and store the build artifacts in the `dist/` directory. By default, the production build optimizes your application for performance and speed.

## Running unit tests

To execute unit tests with the [Karma](https://karma-runner.github.io) test runner, use the following command:

```bash
ng test
```

## Running end-to-end tests

For end-to-end (e2e) testing, run:

```bash
ng e2e
```

Angular CLI does not come with an end-to-end testing framework by default. You can choose one that suits your needs.

## Additional Resources

For more information on using the Angular CLI, including detailed command references, visit the [Angular CLI Overview and Command Reference](https://angular.dev/tools/cli) page.
107 changes: 107 additions & 0 deletions examples-standalone/kendoangular-landing-page/angular.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"kendoangular-landing-page": {
"projectType": "application",
"schematics": {},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/kendoangular-landing-page",
"index": "src/index.html",
"browser": "src/main.ts",
"polyfills": [
"zone.js",
"@angular/localize/init"
],
"tsConfig": "tsconfig.app.json",
"assets": [
{
"glob": "**/*",
"input": "public"
}
],
"styles": [
{
"input": "node_modules/@progress/kendo-theme-default/dist/default-ocean-blue-a11y.scss"
},
"src/styles.css"
],
"scripts": []
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "3MB",
"maximumError": "5MB"
},
{
"type": "anyComponentStyle",
"maximumWarning": "4kB",
"maximumError": "8kB"
}
],
"outputHashing": "all"
},
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"buildTarget": "kendoangular-landing-page:build:production"
},
"development": {
"buildTarget": "kendoangular-landing-page:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n"
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"polyfills": [
"zone.js",
"zone.js/testing",
"@angular/localize/init"
],
"tsConfig": "tsconfig.spec.json",
"assets": [
{
"glob": "**/*",
"input": "public"
}
],
"styles": [
{
"input": "node_modules/@progress/kendo-theme-default/dist/all.css"
},
"src/styles.css"
],
"scripts": []
}
}
}
}
},
"cli": {
"analytics": false
}
}
Loading