├── .gitignore ├── .npmrc ├── .vscode └── settings.json ├── README.md ├── au.build.js ├── dist ├── examples │ ├── basic.attribute-class.html │ ├── basic.attribute-style.html │ ├── basic.attribute.html │ ├── blur.binding.html │ ├── blur.event.html │ ├── collection.array.html │ ├── collection.contextual-properties.html │ ├── collection.map.html │ ├── collection.nested.html │ ├── collection.number.html │ ├── collection.object.html │ ├── collection.set.html │ ├── conditional.if-else.html │ ├── conditional.promise.html │ ├── conditional.show-hide.html │ ├── conditional.switch.html │ ├── datepicker.flatpickr.html │ ├── datepicker.native-value-converter.html │ ├── datepicker.native.html │ ├── datepicker.pikaday.html │ ├── event.general.html │ ├── event.self.html │ ├── focus.binding.html │ ├── focus.event.html │ ├── focus.input.html │ ├── form.checkbox-array-numbers.html │ ├── form.checkbox-array-objects-matcher.html │ ├── form.checkbox-array-objects.html │ ├── form.checkbox-booleans.html │ ├── form.radio-booleans.html │ ├── form.radio-numbers.html │ ├── form.radio-objects-matcher.html │ ├── form.radio-objects.html │ ├── form.radio-strings.html │ ├── form.select-boolean.html │ ├── form.select-multiple-numbers.html │ ├── form.select-multiple-objects.html │ ├── form.select-multiple-strings.html │ ├── form.select-number.html │ ├── form.select-object-matcher.html │ ├── form.select-object.html │ ├── form.select-string.html │ ├── form.submission-handling.html │ ├── form.submitting.html │ ├── let.basic.html │ ├── let.binding-context.html │ ├── portal.basic.html │ ├── portal.dynamic-reference.html │ ├── portal.dynamic-target-id.html │ ├── ref.custom-attribute.html │ ├── ref.custom-element.html │ ├── ref.element.html │ ├── scroll.binding.html │ ├── scroll.event.html │ ├── with.dynamic-scope.html │ └── with.static-scope.html ├── images │ ├── au.svg │ ├── aufavicon.png │ ├── aulogo.svg │ ├── cats │ │ ├── cat-1.jpeg │ │ └── cat-sleep.jpeg │ └── dogs │ │ ├── dog-drinking.jpeg │ │ ├── dog-eating.jpeg │ │ ├── dog-marking.jpeg │ │ └── dog-sleeping.jpeg ├── index.html ├── index.js ├── index.js.map ├── styles.css └── vendors │ ├── au.dev.js │ └── au.js ├── package.json ├── rollup.config.mjs ├── src ├── app.example.ts ├── app.ts ├── components │ ├── advanced-example-viewer.ts │ ├── component-editor.ts │ ├── example-viewer.ts │ ├── path.ts │ ├── project-example-viewer.ts │ ├── text-editor.ts │ └── utils.ts ├── html.ts ├── index.ts └── interfaces.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.tabSize": 2 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/README.md -------------------------------------------------------------------------------- /au.build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/au.build.js -------------------------------------------------------------------------------- /dist/examples/basic.attribute-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/basic.attribute-class.html -------------------------------------------------------------------------------- /dist/examples/basic.attribute-style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/basic.attribute-style.html -------------------------------------------------------------------------------- /dist/examples/basic.attribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/basic.attribute.html -------------------------------------------------------------------------------- /dist/examples/blur.binding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/blur.binding.html -------------------------------------------------------------------------------- /dist/examples/blur.event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/blur.event.html -------------------------------------------------------------------------------- /dist/examples/collection.array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/collection.array.html -------------------------------------------------------------------------------- /dist/examples/collection.contextual-properties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/collection.contextual-properties.html -------------------------------------------------------------------------------- /dist/examples/collection.map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/collection.map.html -------------------------------------------------------------------------------- /dist/examples/collection.nested.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/collection.nested.html -------------------------------------------------------------------------------- /dist/examples/collection.number.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/collection.number.html -------------------------------------------------------------------------------- /dist/examples/collection.object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/collection.object.html -------------------------------------------------------------------------------- /dist/examples/collection.set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/collection.set.html -------------------------------------------------------------------------------- /dist/examples/conditional.if-else.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/conditional.if-else.html -------------------------------------------------------------------------------- /dist/examples/conditional.promise.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/conditional.promise.html -------------------------------------------------------------------------------- /dist/examples/conditional.show-hide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/conditional.show-hide.html -------------------------------------------------------------------------------- /dist/examples/conditional.switch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/conditional.switch.html -------------------------------------------------------------------------------- /dist/examples/datepicker.flatpickr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/datepicker.flatpickr.html -------------------------------------------------------------------------------- /dist/examples/datepicker.native-value-converter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/datepicker.native-value-converter.html -------------------------------------------------------------------------------- /dist/examples/datepicker.native.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/datepicker.native.html -------------------------------------------------------------------------------- /dist/examples/datepicker.pikaday.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/datepicker.pikaday.html -------------------------------------------------------------------------------- /dist/examples/event.general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/event.general.html -------------------------------------------------------------------------------- /dist/examples/event.self.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/event.self.html -------------------------------------------------------------------------------- /dist/examples/focus.binding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/focus.binding.html -------------------------------------------------------------------------------- /dist/examples/focus.event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/focus.event.html -------------------------------------------------------------------------------- /dist/examples/focus.input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/focus.input.html -------------------------------------------------------------------------------- /dist/examples/form.checkbox-array-numbers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/form.checkbox-array-numbers.html -------------------------------------------------------------------------------- /dist/examples/form.checkbox-array-objects-matcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/form.checkbox-array-objects-matcher.html -------------------------------------------------------------------------------- /dist/examples/form.checkbox-array-objects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/form.checkbox-array-objects.html -------------------------------------------------------------------------------- /dist/examples/form.checkbox-booleans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/form.checkbox-booleans.html -------------------------------------------------------------------------------- /dist/examples/form.radio-booleans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/form.radio-booleans.html -------------------------------------------------------------------------------- /dist/examples/form.radio-numbers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/form.radio-numbers.html -------------------------------------------------------------------------------- /dist/examples/form.radio-objects-matcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/form.radio-objects-matcher.html -------------------------------------------------------------------------------- /dist/examples/form.radio-objects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/form.radio-objects.html -------------------------------------------------------------------------------- /dist/examples/form.radio-strings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/form.radio-strings.html -------------------------------------------------------------------------------- /dist/examples/form.select-boolean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/form.select-boolean.html -------------------------------------------------------------------------------- /dist/examples/form.select-multiple-numbers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/form.select-multiple-numbers.html -------------------------------------------------------------------------------- /dist/examples/form.select-multiple-objects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/form.select-multiple-objects.html -------------------------------------------------------------------------------- /dist/examples/form.select-multiple-strings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/form.select-multiple-strings.html -------------------------------------------------------------------------------- /dist/examples/form.select-number.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/form.select-number.html -------------------------------------------------------------------------------- /dist/examples/form.select-object-matcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/form.select-object-matcher.html -------------------------------------------------------------------------------- /dist/examples/form.select-object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/form.select-object.html -------------------------------------------------------------------------------- /dist/examples/form.select-string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/form.select-string.html -------------------------------------------------------------------------------- /dist/examples/form.submission-handling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/form.submission-handling.html -------------------------------------------------------------------------------- /dist/examples/form.submitting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/form.submitting.html -------------------------------------------------------------------------------- /dist/examples/let.basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/let.basic.html -------------------------------------------------------------------------------- /dist/examples/let.binding-context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/let.binding-context.html -------------------------------------------------------------------------------- /dist/examples/portal.basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/portal.basic.html -------------------------------------------------------------------------------- /dist/examples/portal.dynamic-reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/portal.dynamic-reference.html -------------------------------------------------------------------------------- /dist/examples/portal.dynamic-target-id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/portal.dynamic-target-id.html -------------------------------------------------------------------------------- /dist/examples/ref.custom-attribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/ref.custom-attribute.html -------------------------------------------------------------------------------- /dist/examples/ref.custom-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/ref.custom-element.html -------------------------------------------------------------------------------- /dist/examples/ref.element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/ref.element.html -------------------------------------------------------------------------------- /dist/examples/scroll.binding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/scroll.binding.html -------------------------------------------------------------------------------- /dist/examples/scroll.event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/scroll.event.html -------------------------------------------------------------------------------- /dist/examples/with.dynamic-scope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/with.dynamic-scope.html -------------------------------------------------------------------------------- /dist/examples/with.static-scope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/examples/with.static-scope.html -------------------------------------------------------------------------------- /dist/images/au.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/images/au.svg -------------------------------------------------------------------------------- /dist/images/aufavicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/images/aufavicon.png -------------------------------------------------------------------------------- /dist/images/aulogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/images/aulogo.svg -------------------------------------------------------------------------------- /dist/images/cats/cat-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/images/cats/cat-1.jpeg -------------------------------------------------------------------------------- /dist/images/cats/cat-sleep.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/images/cats/cat-sleep.jpeg -------------------------------------------------------------------------------- /dist/images/dogs/dog-drinking.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/images/dogs/dog-drinking.jpeg -------------------------------------------------------------------------------- /dist/images/dogs/dog-eating.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/images/dogs/dog-eating.jpeg -------------------------------------------------------------------------------- /dist/images/dogs/dog-marking.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/images/dogs/dog-marking.jpeg -------------------------------------------------------------------------------- /dist/images/dogs/dog-sleeping.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/images/dogs/dog-sleeping.jpeg -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/styles.css -------------------------------------------------------------------------------- /dist/vendors/au.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/vendors/au.dev.js -------------------------------------------------------------------------------- /dist/vendors/au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/dist/vendors/au.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /src/app.example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/src/app.example.ts -------------------------------------------------------------------------------- /src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/src/app.ts -------------------------------------------------------------------------------- /src/components/advanced-example-viewer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/src/components/advanced-example-viewer.ts -------------------------------------------------------------------------------- /src/components/component-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/src/components/component-editor.ts -------------------------------------------------------------------------------- /src/components/example-viewer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/src/components/example-viewer.ts -------------------------------------------------------------------------------- /src/components/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/src/components/path.ts -------------------------------------------------------------------------------- /src/components/project-example-viewer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/src/components/project-example-viewer.ts -------------------------------------------------------------------------------- /src/components/text-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/src/components/text-editor.ts -------------------------------------------------------------------------------- /src/components/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/src/components/utils.ts -------------------------------------------------------------------------------- /src/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/src/html.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/src/interfaces.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigopon/aurelia-by-examples/HEAD/tsconfig.json --------------------------------------------------------------------------------