https://github.com/quiqqer/qui
QUIQQER-UI is a modular user interface component framework written in JavaScript
https://github.com/quiqqer/qui
javasc mootools ui ui-components
Last synced: 13 days ago
JSON representation
QUIQQER-UI is a modular user interface component framework written in JavaScript
- Host: GitHub
- URL: https://github.com/quiqqer/qui
- Owner: QUIQQER
- License: lgpl-3.0
- Created: 2018-02-14T15:40:27.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2025-02-07T12:08:37.000Z (3 months ago)
- Last Synced: 2025-03-31T08:12:47.690Z (about 2 months ago)
- Topics: javasc, mootools, ui, ui-components
- Language: JavaScript
- Size: 5.17 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# QUI
Copyright www.pcsg.de
www.pcsg.de
www.quiqqer.comLicence MIT
## About QUIQQER
QUIQQER-UI is a modular user interface component framework written in JavaScript from www.pcsg.de
If you search a documentation, please look at http://doc.quiqqer.com/qui/doc/.
QUIQQER-UI or QUI are mainly used at QUIQQER## Installation
### Installation via composer
Please add to your *composer.json*
```javascript
{
"require" : {
"quiqqer/qui" : "dev-dev"
},"repositories": [{
"type": "composer",
"url": "http://update.quiqqer.com/"
}]
}
``````bash
php composer.phar install
```If you dont use MooTools, please place MooTools and moofx before requirejs:
``` html
```
### Installation via bower
``` bash
bower install http://dev.quiqqer.com:3000/quiqqer/qui.git
`````` html
```
### Installation via nodejs
``` bash
npm install -S "git+http://dev.quiqqer.com:3000/quiqqer/qui.git"
`````` html
```
## Usage example
```javascript
require([
'qui/controls/buttons/Button'
], function(QUIButton)
{
new QUIButton({
text : 'my button',
events :
{
onClick : function() {
alert( 1 );
}
}
}).inject( document.body );});
```
You can find some examples at:
http://doc.quiqqer.com/qui/doc/## Complete example
```html
Insert title here
```
## Thanks
Parts of QUI are free open-source software and not from us.
We thank all for the nice work.- MooTools ( http://mootools.net/ )
- requirejs ( requirejs.org/ )
- AMD css! plugin curl.js ( https://github.com/cujojs/curl )
- QUIQQER / QUI Font: http://fontfabric.com/multicolore-free-fonts/An additional thanks to:
- Composer ( http://getcomposer.org )
- Bower ( http://bower.io )
- NodeJS ( http://nodejs.org/ )Last but not least, the QUIQQER UI Idea based on MochaUI.
We decided to reimplement MochaUI idea, with AMD definition and create more controls.Thanks for all the nice lines of code.
If we forget somebody, please not hesitate and write us an email.Henning from QUIQQER