Giter Site home page Giter Site logo

creativetimofficial / ct-argon-design-system-pro-angular Goto Github PK

View Code? Open in Web Editor NEW
4.0 7.0 2.0 10 KB

Argon Design System PRO Angular: Premium Design System For Bootstrap 4 and Angular

Home Page: https://demos.creative-tim.com/argon-design-system-pro-angular/

angular template ui kit uikit argon design angular8

ct-argon-design-system-pro-angular's Introduction

version GitHub issues open GitHub issues closed Join the chat at https://gitter.im/NIT-dgp/General Chat

alt text

Start your development with a Premium Argon Design System for Bootstrap 4 and Angular. It combines colors that are easy on the eye, spacious cards, beautiful typography, and graphics.

Fully Coded Components

Argon Design System PRO Angular is built with over 1100 individual components, 43 sections and 17 example pages giving you the freedom of choosing and combining. All components can take variations in color, that you can easily modify using SASS files.
You will save a lot of time going from prototyping to full-functional code because all elements are implemented. This Design System is coming with prebuilt examples, so the development process is seamless, switching from our pages to the real website is very easy to be done. Every element has multiple states for colors, styles, hover, focus, that you can easily access and use. You can view all components here.

Core re-built from scratch

Start your development with a Premium Argon Design System for Bootstrap 4 and Angular. Argon is a completly new product built on our newest re-built from scratch framework structure that is meant to make our products more intuitive, more adaptive and, needless to say, so much easier to customize. Let Argon amaze you with its cool features and build tools and get your project to a whole new level. It combines colors that are easy on the eye, spacious cards, beautiful typography, and graphics.

Complex Documentation

Each element is well presented in a very complex documentation. You can read more about the idea behind this design system here. You can check the components here and the foundation here.

Example Pages

If you want to get inspiration or just show something directly to your clients, you can jump start your development with our pre-built example pages. You will be able to quickly set up the basic structure for your web project.

Bootstrap 4 Support

Argon Design System PRO Angular is built on top of the much awaited Bootstrap 4 and Angular. This makes starting a new project very simple. It also provides benefits if you are already working on a Bootstrap 4 project; you can just import the Argon Design System PRO Angular style over it. Most of the elements have been redesigned; but if you are using an element we have not touched, it will fall back to the Bootstrap default.

Special thanks

During the development of this dashboard, we have used many existing resources from awesome developers. We want to thank them for providing their tools open source:

Let us know your thoughts below. And good luck with development!

Table of Contents

Versions

HTML Angular
Argon Design System PRO HTML Argon Design System PRO Angular

Demo

Quick start

Documentation

The documentation for the Argon Design System PRO Angular is hosted at our website.

File Structure

Within the download you'll find the following directories and files:

Argon Design System PRO Angular
├── CHANGELOG.md
├── ISSUES_TEMPLATE.md
├── README.md
├── angular.json
├── docs
├── e2e
├── package.json
├── src
│   ├── app
│   │   ├── app-routing.module.ts
│   │   ├── app.component.html
│   │   ├── app.component.scss
│   │   ├── app.component.spec.ts
│   │   ├── app.component.ts
│   │   ├── app.module.ts
│   │   ├── components
│   │   │   ├── footer
│   │   │   │   ├── footer.component.html
│   │   │   │   ├── footer.component.scss
│   │   │   │   ├── footer.component.spec.ts
│   │   │   │   └── footer.component.ts
│   │   │   ├── navbar
│   │   │   │   ├── navbar.component.html
│   │   │   │   ├── navbar.component.scss
│   │   │   │   ├── navbar.component.spec.ts
│   │   │   │   └── navbar.component.ts
│   │   │   └── picture-upload
│   │   │       ├── picture-upload.component.css
│   │   │       ├── picture-upload.component.html
│   │   │       ├── picture-upload.component.spec.ts
│   │   │       └── picture-upload.component.ts
│   │   ├── examples
│   │   │   ├── 500error
│   │   │   │   ├── 500error.component.html
│   │   │   │   └── 500error.component.ts
│   │   │   ├── aboutus
│   │   │   │   ├── aboutus.component.html
│   │   │   │   └── aboutus.component.ts
│   │   │   ├── accountsettings
│   │   │   │   ├── accountsettings.component.html
│   │   │   │   └── accountsettings.component.ts
│   │   │   ├── blogpost
│   │   │   │   ├── blogpost.component.html
│   │   │   │   └── blogpost.component.ts
│   │   │   ├── blogposts
│   │   │   │   ├── blogposts.component.html
│   │   │   │   └── blogposts.component.ts
│   │   │   ├── chatpage
│   │   │   │   ├── chatpage.component.html
│   │   │   │   └── chatpage.component.ts
│   │   │   ├── checkoutpage
│   │   │   │   ├── checkoutpage.component.html
│   │   │   │   └── checkoutpage.component.ts
│   │   │   ├── contactus
│   │   │   │   ├── contactus.component.html
│   │   │   │   └── contactus.component.ts
│   │   │   ├── ecommerce
│   │   │   │   ├── ecommerce.component.html
│   │   │   │   └── ecommerce.component.ts
│   │   │   ├── error
│   │   │   │   ├── error.component.html
│   │   │   │   └── error.component.ts
│   │   │   ├── invoicepage
│   │   │   │   ├── invoicepage.component.html
│   │   │   │   └── invoicepage.component.ts
│   │   │   ├── landingpage
│   │   │   │   ├── landingpage.component.html
│   │   │   │   └── landingpage.component.ts
│   │   │   ├── loginpage
│   │   │   │   ├── loginpage.component.html
│   │   │   │   └── loginpage.component.ts
│   │   │   ├── pricingpage
│   │   │   │   ├── pricingpage.component.html
│   │   │   │   └── pricingpage.component.ts
│   │   │   ├── productpage
│   │   │   │   ├── productpage.component.html
│   │   │   │   └── productpage.component.ts
│   │   │   ├── profilepage
│   │   │   │   ├── profilepage.component.html
│   │   │   │   └── profilepage.component.ts
│   │   │   ├── registerpage
│   │   │   │   ├── registerpage.component.html
│   │   │   │   └── registerpage.component.ts
│   │   │   └── resetpage
│   │   │       ├── resetpage.component.html
│   │   │       └── resetpage.component.ts
│   │   ├── index
│   │   │   ├── index.component.html
│   │   │   └── index.component.ts
│   │   ├── presentation
│   │   │   ├── presentation.component.html
│   │   │   ├── presentation.component.ts
│   │   │   └── presentation.module.ts
│   │   └── sections
│   │       ├── sections.component.html
│   │       └── sections.component.ts
│   ├── assets
│   │   ├── css
│   │   ├── demo
│   │   ├── fonts
│   │   ├── img
│   │   └── scss
│   │       ├── angular
│   │       ├── argon-design-system.scss
│   │       ├── bootstrap
│   │       ├── custom
│   │       └── theme
│   ├── browserslist
│   ├── environments
│   ├── favicon.ico
│   ├── index.html
│   ├── karma.conf.js
│   ├── main.ts
│   ├── polyfills.ts
│   ├── styles.scss
│   ├── test.ts
│   ├── tsconfig.app.json
│   ├── tsconfig.spec.json
│   └── tslint.json
├── tsconfig.json
└── tslint.json

Browser Support

At present, we officially aim to support the last two versions of the following browsers:

Resources

Reporting Issues

We use GitHub Issues as the official bug tracker for the Argon Design System. Here are some advices for our users that want to report an issue:

  1. Make sure that you are using the latest version of the Argon Design System. Check the CHANGELOG from your dashboard on our website.
  2. Providing us reproducible steps for the issue will shorten the time it takes for it to be fixed.
  3. Some issues may be browser specific, so specifying in what browser you encountered the issue might help.

Technical Support or Questions

If you have questions or need help integrating the product please contact us instead of opening an issue.

Licensing

Useful Links

Social Media

Twitter: https://twitter.com/CreativeTim

Facebook: https://www.facebook.com/CreativeTim

Dribbble: https://dribbble.com/creativetim

Google+: https://plus.google.com/+CreativetimPage

Instagram: https://www.instagram.com/CreativeTimOfficial

ct-argon-design-system-pro-angular's People

Contributors

chelaruc avatar dragosct avatar marqbeniamin avatar rarestoma avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

ct-argon-design-system-pro-angular's Issues

[Bug] Impossible to start the project

Version

1.0.0

Reproduction link

https://codepen.io/

Operating System

MacOS Catalina

Device

Macbook pro 2019 13`

Browser & Version

Chrome latest

Steps to reproduce

npm install
audited 16697 packages in 5.503s

21 packages are looking for funding
run npm fund for details

found 3 moderate severity vulnerabilities
run npm audit fix to fix them, or npm audit for details

ng serve
Your global Angular CLI version (8.3.20) is greater than your local
version (8.3.9). The local Angular CLI version is used.

To disable this warning use "ng config -g cli.warnings.versionMismatch false".
10% building 4/4 modules 0 activeℹ 「wds」: Project is running at http://localhost:4200/webpack-dev-server/
ℹ 「wds」: webpack output is served from /
ℹ 「wds」: 404s will fallback to //index.html

chunk {main} main.js, main.js.map (main) 2.01 kB [initial] [rendered]
chunk {polyfills} polyfills.js, polyfills.js.map (polyfills) 149 kB [initial] [rendered]
chunk {polyfills-es5} polyfills-es5.js, polyfills-es5.js.map (polyfills-es5) 531 kB [initial] [rendered]
chunk {runtime} runtime.js, runtime.js.map (runtime) 6.15 kB [entry] [rendered]
chunk {styles} styles.js, styles.js.map (styles) 2.37 MB [initial] [rendered]
chunk {vendor} vendor.js, vendor.js.map (vendor) 340 kB [initial] [rendered]
Date: 2020-01-03T16:32:42.194Z - Hash: 9ab1be39519bb19013eb - Time: 7877ms

ERROR in app/app.module.ts:1:32 - error TS2307: Cannot find module 'ngx-chips'.

1 import { TagInputModule } from "ngx-chips";
~~~~~~~~~~~

** Angular Live Development Server is listening on localhost:4200, open your browser on http://localhost:4200/ **
ℹ 「wdm」: Failed to compile.

What is expected?

Project starting...

What is actually happening?

Error Failed to compile.


Solution

Additional comments

[Bug] .headroom on nav not working

Version

1.1.1

Reproduction link

https://jsfiddle.net/

Operating System

Catalina 10.15.6

Device

Mac

Browser & Version

latest

Steps to reproduce

followed the instruction on the documentation but the vendor folder was not included in the project's assets

What is expected?

headroom on the navbar

What is actually happening?

class is being added but the nav is not sticky


Solution

using fix-top from bootstrap but it does not add headroom

Additional comments

i added all the styling and dependencies into my own project

[Bug] Don't have the typescript snippet enabled component library which has all pro components mentioned in design kit

Version

1.3.0

Reproduction link

https://codepen.io/

Operating System

Windows11

Device

Desktop

Browser & Version

Chrome 103

Steps to reproduce

Run the zip downloaded as angular app using ng serve

What is expected?

There should have a pro components page documentation with typescript snippet

What is actually happening?

component page navigates to free demo which is there in creative tim


Solution

Additional comments

Help docs for how to use templates, directives, etc

Version

1.1.1

Reproduction link

https://demos.creative-tim.com/argon-design-system-pro-angular/#/documentation/navigation

Operating System

Windows 10

Device

Desktop

Browser & Version

1

Steps to reproduce

Where is the documentation from a typescript perspective on how to use everything presented in this template.

What is expected?

Documentation on how to use programmatically from typescript the features available.

What is actually happening?

Only HTML documentation available.


Solution

Additional comments

[Bug] Transition between mobile and desktop widths (responsive) stops desktop menu from working

Version

1.1.1

Reproduction link

https://demos.creative-tim.com/argon-design-system-pro-angular/#/presentation

Operating System

Windows 10

Device

Desktop

Browser & Version

Edge Version 85.0.564.51 (Official build) (64-bit) - Based on Chronium

Steps to reproduce

  1. Launch website maximised in desktop view
  2. Hover over the menu options and see them expand
  3. Shrink browser width to trigger responsive behaviour (mobile menu)
  4. Click on hamburger and open mobile menu
  5. Close mobile menu
  6. Maximise browser window
  7. Hover over the menu options to see them expand (They will not expand)

What is expected?

On step 7 the drop-down menus are expected to expand but do not.

What is actually happening?

The menus do not expand but show an arrow underneath the menu option.


Solution

Additional comments

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.