Skip to content

Commit 8d78c88

Browse files
committed
Initial
0 parents  commit 8d78c88

File tree

262 files changed

+78114
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

262 files changed

+78114
-0
lines changed

Diff for: .gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/.nyc_output
2+
/coverage
3+
/node_modules
4+
/npm-debug.log
5+
/tmp

Diff for: LICENSE

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2024 Vyacheslav Aristov
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6+
7+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8+
9+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Diff for: README.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# XUICK
2+
3+
Extensible User Interface Components Kit
4+
5+
[Showcase](https://aristov.github.io/xuick/public/showcase.html)
6+
7+
## License
8+
9+
[The MIT License (MIT)](https://raw.githubusercontent.com/aristov/xuick/main/LICENSE)

Diff for: docs/ShowcaseApp.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { App } from '../lib/App.js'
2+
import examples from '../examples.js'
3+
4+
export class ShowcaseApp extends App
5+
{
6+
static class = 'App'
7+
8+
render() {
9+
return Object.values(examples).map(item => item.default())
10+
}
11+
}

Diff for: docs/public/build/fonts/fontawesome.eot

243 KB
Binary file not shown.

Diff for: docs/public/build/fonts/fontawesome.svg

+1,362
Loading

Diff for: docs/public/build/fonts/fontawesome.ttf

243 KB
Binary file not shown.

Diff for: docs/public/build/fonts/fontawesome.woff

145 KB
Binary file not shown.

Diff for: docs/public/build/fonts/fontawesome.woff2

116 KB
Binary file not shown.

0 commit comments

Comments
 (0)