├── LICENSE ├── README.md ├── dev-notes.txt ├── examples ├── colortheme.html ├── components │ └── colortheme.zjsc └── css │ ├── colors-1.css │ ├── colors-2.css │ ├── colors-3.css │ ├── default.css │ └── list.txt ├── zjs-component.js └── zjs-component.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelanthran/ZjsComponent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelanthran/ZjsComponent/HEAD/README.md -------------------------------------------------------------------------------- /dev-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelanthran/ZjsComponent/HEAD/dev-notes.txt -------------------------------------------------------------------------------- /examples/colortheme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelanthran/ZjsComponent/HEAD/examples/colortheme.html -------------------------------------------------------------------------------- /examples/components/colortheme.zjsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelanthran/ZjsComponent/HEAD/examples/components/colortheme.zjsc -------------------------------------------------------------------------------- /examples/css/colors-1.css: -------------------------------------------------------------------------------- 1 | /* vim: set ts=3 sw=3 tw=120 */ 2 | 3 | body { 4 | background-color: #ffe0e0; 5 | } 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/css/colors-2.css: -------------------------------------------------------------------------------- 1 | /* vim: set ts=3 sw=3 tw=120 */ 2 | 3 | body { 4 | background-color: #e0ffe0; 5 | } 6 | -------------------------------------------------------------------------------- /examples/css/colors-3.css: -------------------------------------------------------------------------------- 1 | /* vim: set ts=3 sw=3 tw=120 */ 2 | 3 | body { 4 | background-color: #e0e0ff; 5 | } 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/css/default.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/css/list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelanthran/ZjsComponent/HEAD/examples/css/list.txt -------------------------------------------------------------------------------- /zjs-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelanthran/ZjsComponent/HEAD/zjs-component.js -------------------------------------------------------------------------------- /zjs-component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelanthran/ZjsComponent/HEAD/zjs-component.md --------------------------------------------------------------------------------