├── types ├── dummy │ └── index.d.ts ├── global.d.ts ├── ember-resize-observer-modifier │ └── modifiers │ │ └── observe-resize.ts └── ember-modifier │ └── index.d.ts ├── tests ├── dummy │ ├── app │ │ ├── helpers │ │ │ ├── .gitkeep │ │ │ └── add.js │ │ ├── models │ │ │ └── .gitkeep │ │ ├── routes │ │ │ ├── .gitkeep │ │ │ └── album.js │ │ ├── components │ │ │ ├── .gitkeep │ │ │ ├── widgets │ │ │ │ ├── widget-1 │ │ │ │ │ ├── item │ │ │ │ │ │ ├── index.hbs │ │ │ │ │ │ └── index.css │ │ │ │ │ ├── index.hbs │ │ │ │ │ └── index.css │ │ │ │ ├── widget-2 │ │ │ │ │ ├── stacked-chart │ │ │ │ │ │ ├── index.hbs │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── index.css │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.hbs │ │ │ │ │ └── captions │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ └── index.hbs │ │ │ │ ├── widget-3 │ │ │ │ │ ├── tour-schedule │ │ │ │ │ │ ├── responsive-image │ │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ │ ├── index.hbs │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── index.hbs │ │ │ │ │ │ └── index.css │ │ │ │ │ ├── index.css │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.hbs │ │ │ │ ├── widget-4 │ │ │ │ │ ├── index.hbs │ │ │ │ │ ├── index.css │ │ │ │ │ └── memo │ │ │ │ │ │ ├── index.hbs │ │ │ │ │ │ ├── body │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ └── index.hbs │ │ │ │ │ │ ├── header │ │ │ │ │ │ ├── index.hbs │ │ │ │ │ │ └── index.css │ │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── index.hbs │ │ │ │ │ │ └── index.css │ │ │ │ │ │ └── index.css │ │ │ │ └── widget-5 │ │ │ │ │ ├── index.hbs │ │ │ │ │ └── index.css │ │ │ ├── tracks │ │ │ │ ├── index.css │ │ │ │ ├── table │ │ │ │ │ ├── index.css │ │ │ │ │ └── index.hbs │ │ │ │ ├── list │ │ │ │ │ ├── index.css │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.hbs │ │ │ │ └── index.hbs │ │ │ └── navigation-menu │ │ │ │ ├── index.js │ │ │ │ ├── index.css │ │ │ │ └── index.hbs │ │ ├── controllers │ │ │ ├── .gitkeep │ │ │ └── application.js │ │ ├── styles │ │ │ ├── index.css │ │ │ ├── application.css │ │ │ ├── album.css │ │ │ ├── app.css │ │ │ ├── not-found.css │ │ │ └── dashboard.css │ │ ├── router.js │ │ ├── app.js │ │ ├── templates │ │ │ ├── not-found.hbs │ │ │ ├── dashboard.hbs │ │ │ ├── index.hbs │ │ │ ├── application.hbs │ │ │ └── album.hbs │ │ ├── index.html │ │ ├── data │ │ │ ├── album.js │ │ │ └── concert.js │ │ └── utils │ │ │ └── widgets │ │ │ ├── widget-3.js │ │ │ └── widget-2.js │ ├── public │ │ ├── robots.txt │ │ ├── assets │ │ │ └── favicon.png │ │ ├── images │ │ │ └── widgets │ │ │ │ ├── widget-4 │ │ │ │ └── avatar.jpg │ │ │ │ └── widget-3 │ │ │ │ ├── venue-wide@1x.jpg │ │ │ │ ├── venue-wide@2x.jpg │ │ │ │ ├── venue-wide@4x.jpg │ │ │ │ ├── venue-square@1x.jpg │ │ │ │ ├── venue-square@2x.jpg │ │ │ │ ├── venue-square@4x.jpg │ │ │ │ ├── venue-extra-wide@1x.jpg │ │ │ │ ├── venue-extra-wide@2x.jpg │ │ │ │ └── venue-extra-wide@4x.jpg │ │ └── material-design-icons │ │ │ ├── stop-24px.svg │ │ │ ├── arrow_forward_ios-24px.svg │ │ │ ├── arrow_back_ios-24px.svg │ │ │ ├── explicit-24px.svg │ │ │ ├── textsms-outlined-24px.svg │ │ │ ├── loop-24px.svg │ │ │ ├── favorite-outlined-24px.svg │ │ │ └── share-outlined-24px.svg │ └── config │ │ ├── optional-features.json │ │ ├── targets.js │ │ ├── ember-cli-update.json │ │ └── environment.js ├── helpers │ └── pause.ts ├── test-helper.ts └── index.html ├── .watchmanconfig ├── .release-it.json ├── .template-lintrc.js ├── app ├── components │ └── element-query.js ├── modifiers │ └── element-query.js └── templates │ └── components │ └── element-query.hbs ├── index.js ├── typedoc-theme ├── assets │ ├── css │ │ ├── elements │ │ │ ├── _images.sass │ │ │ ├── _footer.sass │ │ │ ├── _sources.sass │ │ │ ├── _hierarchy.sass │ │ │ ├── _member.sass │ │ │ ├── _comment.sass │ │ │ ├── _filter.sass │ │ │ ├── _search.sass │ │ │ ├── _panel.sass │ │ │ ├── _index.sass │ │ │ ├── _signatures.sass │ │ │ ├── _toolbar.sass │ │ │ └── _navigation.sass │ │ ├── _constants.sass │ │ ├── main.sass │ │ ├── _theme.scss │ │ ├── setup │ │ │ ├── _mixins.sass │ │ │ ├── _typography.sass │ │ │ ├── _animations.sass │ │ │ ├── _grid.sass │ │ │ └── _icons.scss │ │ └── layouts │ │ │ ├── _minimal.sass │ │ │ └── _default.sass │ ├── images │ │ ├── icons.png │ │ ├── icons.psd │ │ ├── icons@2x.png │ │ ├── widgets.png │ │ ├── widgets.psd │ │ └── widgets@2x.png │ └── js │ │ └── src │ │ ├── typedoc │ │ ├── utils │ │ │ ├── debounce.ts │ │ │ ├── trottle.ts │ │ │ └── pointer.ts │ │ ├── Component.ts │ │ ├── EventTarget.ts │ │ ├── Application.ts │ │ ├── components │ │ │ ├── Toggle.ts │ │ │ ├── MenuHighlight.ts │ │ │ └── Signature.ts │ │ └── services │ │ │ └── Viewport.ts │ │ └── bootstrap.ts ├── templates │ ├── index.hbs │ └── reflection.hbs ├── partials │ ├── toc.hbs │ ├── breadcrumb.hbs │ ├── member.signatures.hbs │ ├── member.reference.hbs │ ├── toc.root.hbs │ ├── hierarchy.hbs │ ├── analytics.hbs │ ├── typeParameters.hbs │ ├── members.hbs │ ├── members.group.hbs │ ├── comment.hbs │ ├── member.hbs │ ├── footer.hbs │ ├── member.sources.hbs │ ├── navigation.hbs │ ├── member.declaration.hbs │ ├── member.getterSetter.hbs │ ├── member.signature.title.hbs │ ├── typeAndParent.hbs │ ├── member.signature.body.hbs │ ├── index.hbs │ └── header.hbs └── layouts │ └── default.hbs ├── config ├── environment.js └── ember-try.js ├── jsconfig.json ├── typedoc.json ├── .ember-cli ├── .prettierignore ├── .eslintignore ├── .prettierrc.js ├── .editorconfig ├── .gitignore ├── addon ├── -private │ └── component.ts └── index.ts ├── ember-cli-build.js ├── testem.js ├── CONTRIBUTING.md ├── .npmignore ├── .lintstagedrc.js ├── LICENSE.md ├── tsconfig.json ├── tsconfig-node.json ├── .github └── workflows │ ├── github-pages.yml │ └── ci.yml ├── RELEASE.md └── CHANGELOG.md /types/dummy/index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /.release-it.json: -------------------------------------------------------------------------------- 1 | { 2 | "github": { 3 | "release": true 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /tests/dummy/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /.template-lintrc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | extends: 'octane', 5 | }; 6 | -------------------------------------------------------------------------------- /app/components/element-query.js: -------------------------------------------------------------------------------- 1 | export { default } from 'ember-element-query/-private/component'; 2 | -------------------------------------------------------------------------------- /app/modifiers/element-query.js: -------------------------------------------------------------------------------- 1 | export { default } from 'ember-element-query/-private/modifier'; 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | name: require('./package').name, 5 | }; 6 | -------------------------------------------------------------------------------- /tests/dummy/app/components/widgets/widget-1/item/index.hbs: -------------------------------------------------------------------------------- 1 |
{{@label}}
3 |13 | What will you create with 14 |
15 | 16 |17 | ember-container-query 18 |
19 | 20 |21 | ? 22 |
23 |Feeling lost? Uncontained?
9 |Don't worry. We all have our off days.
10 | 11 |22 | Isaac Lee 23 |
24 | 25 |Generated using TypeDoc
20 || # | 5 |Title | 6 |Length | 7 |Explicit | 8 |
|---|---|---|---|
| 15 | {{add index 1}} 16 | | 17 |18 | {{track.name}} 19 | | 20 |21 | {{track.length}} 22 | | 23 |24 | {{if track.isExplicit "Yes"}} 25 | | 26 |
7 | Buffon’s needle is a classic Monte Carlo simulation that we can conduct in a classroom. 8 |
9 |10 | We give the students, say 10 needles each, and have them drop the needles on a paper that we provide also. 11 |
12 |13 | The paper is special, in that it has parallel lines that are separated by the length of a needle. 14 |
15 |16 | Each student records how many needles intersect one of the lines, then we tally their numbers to arrive at a very special number. (Guess who?) 17 |
18 |Thanks for trying out ember-container-query.
To see what you can do with container queries, visit one of the examples and resize the window!
9 | 10 |11 |
21 | This demo is borrowed from ember-container-query per @ijlee2's generous permission. 22 |
23 |The default TypeDoc main application class.
This class holds the two main components of TypeDoc, the Dispatcher and the Renderer.
43 | //Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat.
7 | //Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat.
57 | //Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat.
61 | //Lyrics
38 | 39 |Verse 1
41 |Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
42 |Feugiat in ante metus dictum at. Donec ac odio tempor orci dapibus. Turpis in eu mi bibendum.
43 |Aliquet nibh praesent tristique magna sit amet. Risus ultricies tristique nulla aliquet enim tortor.
44 |Chorus
48 |Aliquet eget sit amet tellus cras adipiscing. ♫
49 |Diam vel quam elementum pulvinar etiam non quam lacus suspendisse.
50 |Verse 2
54 |Arcu dui vivamus arcu felis bibendum ut tristique. Est pellentesque elit ullamcorper dignissim cras.
55 |In mollis nunc sed id semper risus in hendrerit. Sit amet aliquam id diam maecenas ultricies.
56 |Massa sed elementum tempus egestas sed. At ultrices mi tempus imperdiet nulla malesuada.
57 |Chorus
61 |Aliquet eget sit amet tellus cras adipiscing. ♫
62 |Mi ipsum faucibus vitae aliquet nec ullamcorper. Purus viverra accumsan in nisl.
63 |Bridge
67 |Maecenas sed enim ut sem viverra aliquet.
68 |Vitae suscipit tellus mauris a diam maecenas sed.
69 |At erat pellentesque adipiscing commodo elit at imperdiet.
70 |Chorus
74 |Aliquet eget sit amet tellus cras adipiscing. ♫
75 |Imperdiet proin fermentum leo vel orci porta non pulvinar neque. Vulputate odio ut enim blandit.
76 |Outro
80 |Aliquet lectus proin nibh nisl condimentum.
81 |Ut aliquam purus sit amet luctus venenatis lectus magna.
82 |Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat.
97 | //Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat.
100 | //
14 | {{#each tags}} 15 |- {{tagName}}
16 | - {{#markdown}}{{{text}}}{{/markdown}}
17 | {{/each}}
18 |
19 | {{/if}} 20 |