@angular-wave/angular.ts 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (231) hide show
  1. package/.eslintignore +1 -0
  2. package/.eslintrc.cjs +29 -0
  3. package/.github/workflows/playwright.yml +27 -0
  4. package/CHANGELOG.md +17974 -0
  5. package/CODE_OF_CONDUCT.md +3 -0
  6. package/CONTRIBUTING.md +246 -0
  7. package/DEVELOPERS.md +488 -0
  8. package/LICENSE +22 -0
  9. package/Makefile +31 -0
  10. package/README.md +115 -0
  11. package/RELEASE.md +98 -0
  12. package/SECURITY.md +16 -0
  13. package/TRIAGING.md +135 -0
  14. package/css/angular.css +22 -0
  15. package/dist/angular-ts.cjs.js +36843 -0
  16. package/dist/angular-ts.esm.js +36841 -0
  17. package/dist/angular-ts.umd.js +36848 -0
  18. package/dist/build/angular-animate.js +4272 -0
  19. package/dist/build/angular-aria.js +426 -0
  20. package/dist/build/angular-message-format.js +1072 -0
  21. package/dist/build/angular-messages.js +829 -0
  22. package/dist/build/angular-mocks.js +3757 -0
  23. package/dist/build/angular-parse-ext.js +1275 -0
  24. package/dist/build/angular-resource.js +911 -0
  25. package/dist/build/angular-route.js +1266 -0
  26. package/dist/build/angular-sanitize.js +891 -0
  27. package/dist/build/angular-touch.js +368 -0
  28. package/dist/build/angular.js +36600 -0
  29. package/e2e/unit.spec.ts +15 -0
  30. package/images/android-chrome-192x192.png +0 -0
  31. package/images/android-chrome-512x512.png +0 -0
  32. package/images/apple-touch-icon.png +0 -0
  33. package/images/favicon-16x16.png +0 -0
  34. package/images/favicon-32x32.png +0 -0
  35. package/images/favicon.ico +0 -0
  36. package/images/site.webmanifest +1 -0
  37. package/index.html +104 -0
  38. package/package.json +47 -0
  39. package/playwright.config.ts +78 -0
  40. package/public/circle.html +1 -0
  41. package/public/my_child_directive.html +1 -0
  42. package/public/my_directive.html +1 -0
  43. package/public/my_other_directive.html +1 -0
  44. package/public/test.html +1 -0
  45. package/rollup.config.js +31 -0
  46. package/src/animations/animateCache.js +55 -0
  47. package/src/animations/animateChildrenDirective.js +105 -0
  48. package/src/animations/animateCss.js +1139 -0
  49. package/src/animations/animateCssDriver.js +291 -0
  50. package/src/animations/animateJs.js +367 -0
  51. package/src/animations/animateJsDriver.js +67 -0
  52. package/src/animations/animateQueue.js +851 -0
  53. package/src/animations/animation.js +506 -0
  54. package/src/animations/module.js +779 -0
  55. package/src/animations/ngAnimateSwap.js +119 -0
  56. package/src/animations/rafScheduler.js +50 -0
  57. package/src/animations/shared.js +378 -0
  58. package/src/constants.js +20 -0
  59. package/src/core/animate.js +845 -0
  60. package/src/core/animateCss.js +73 -0
  61. package/src/core/animateRunner.js +195 -0
  62. package/src/core/attributes.js +199 -0
  63. package/src/core/cache.js +45 -0
  64. package/src/core/compile.js +4727 -0
  65. package/src/core/controller.js +225 -0
  66. package/src/core/exceptionHandler.js +63 -0
  67. package/src/core/filter.js +146 -0
  68. package/src/core/interpolate.js +442 -0
  69. package/src/core/interval.js +188 -0
  70. package/src/core/intervalFactory.js +57 -0
  71. package/src/core/location.js +1086 -0
  72. package/src/core/parser/parse.js +2562 -0
  73. package/src/core/parser/parse.md +13 -0
  74. package/src/core/q.js +746 -0
  75. package/src/core/rootScope.js +1596 -0
  76. package/src/core/sanitizeUri.js +85 -0
  77. package/src/core/sce.js +1161 -0
  78. package/src/core/taskTrackerFactory.js +125 -0
  79. package/src/core/timeout.js +121 -0
  80. package/src/core/urlUtils.js +187 -0
  81. package/src/core/utils.js +1349 -0
  82. package/src/directive/a.js +37 -0
  83. package/src/directive/attrs.js +283 -0
  84. package/src/directive/bind.js +51 -0
  85. package/src/directive/bind.md +142 -0
  86. package/src/directive/change.js +12 -0
  87. package/src/directive/change.md +25 -0
  88. package/src/directive/cloak.js +12 -0
  89. package/src/directive/cloak.md +24 -0
  90. package/src/directive/events.js +75 -0
  91. package/src/directive/events.md +166 -0
  92. package/src/directive/form.js +725 -0
  93. package/src/directive/init.js +15 -0
  94. package/src/directive/init.md +41 -0
  95. package/src/directive/input.js +1783 -0
  96. package/src/directive/list.js +46 -0
  97. package/src/directive/list.md +22 -0
  98. package/src/directive/ngClass.js +249 -0
  99. package/src/directive/ngController.js +64 -0
  100. package/src/directive/ngCsp.js +82 -0
  101. package/src/directive/ngIf.js +134 -0
  102. package/src/directive/ngInclude.js +217 -0
  103. package/src/directive/ngModel.js +1356 -0
  104. package/src/directive/ngModelOptions.js +509 -0
  105. package/src/directive/ngOptions.js +670 -0
  106. package/src/directive/ngRef.js +90 -0
  107. package/src/directive/ngRepeat.js +650 -0
  108. package/src/directive/ngShowHide.js +255 -0
  109. package/src/directive/ngSwitch.js +178 -0
  110. package/src/directive/ngTransclude.js +98 -0
  111. package/src/directive/non-bindable.js +11 -0
  112. package/src/directive/non-bindable.md +17 -0
  113. package/src/directive/script.js +30 -0
  114. package/src/directive/select.js +624 -0
  115. package/src/directive/style.js +25 -0
  116. package/src/directive/style.md +23 -0
  117. package/src/directive/validators.js +329 -0
  118. package/src/exts/aria.js +544 -0
  119. package/src/exts/messages.js +852 -0
  120. package/src/filters/filter.js +207 -0
  121. package/src/filters/filter.md +69 -0
  122. package/src/filters/filters.js +239 -0
  123. package/src/filters/json.md +16 -0
  124. package/src/filters/limit-to.js +43 -0
  125. package/src/filters/limit-to.md +19 -0
  126. package/src/filters/order-by.js +183 -0
  127. package/src/filters/order-by.md +83 -0
  128. package/src/index.js +13 -0
  129. package/src/injector.js +1034 -0
  130. package/src/jqLite.js +1117 -0
  131. package/src/loader.js +1320 -0
  132. package/src/public.js +215 -0
  133. package/src/routeToRegExp.js +41 -0
  134. package/src/services/anchorScroll.js +135 -0
  135. package/src/services/browser.js +321 -0
  136. package/src/services/cacheFactory.js +398 -0
  137. package/src/services/cookieReader.js +72 -0
  138. package/src/services/document.js +64 -0
  139. package/src/services/http.js +1537 -0
  140. package/src/services/httpBackend.js +206 -0
  141. package/src/services/log.js +160 -0
  142. package/src/services/templateRequest.js +139 -0
  143. package/test/angular.spec.js +2153 -0
  144. package/test/aria/aria.spec.js +1245 -0
  145. package/test/binding.spec.js +504 -0
  146. package/test/build-test.html +14 -0
  147. package/test/injector.spec.js +2327 -0
  148. package/test/jasmine/jasmine-5.1.2/boot0.js +65 -0
  149. package/test/jasmine/jasmine-5.1.2/boot1.js +133 -0
  150. package/test/jasmine/jasmine-5.1.2/jasmine-html.js +963 -0
  151. package/test/jasmine/jasmine-5.1.2/jasmine.css +320 -0
  152. package/test/jasmine/jasmine-5.1.2/jasmine.js +10824 -0
  153. package/test/jasmine/jasmine-5.1.2/jasmine_favicon.png +0 -0
  154. package/test/jasmine/jasmine-browser.json +17 -0
  155. package/test/jasmine/jasmine.json +9 -0
  156. package/test/jqlite.spec.js +2133 -0
  157. package/test/loader.spec.js +219 -0
  158. package/test/messages/messages.spec.js +1146 -0
  159. package/test/min-err.spec.js +174 -0
  160. package/test/mock-test.html +13 -0
  161. package/test/module-test.html +15 -0
  162. package/test/ng/anomate.spec.js +606 -0
  163. package/test/ng/cache-factor.spec.js +334 -0
  164. package/test/ng/compile.spec.js +17956 -0
  165. package/test/ng/controller-provider.spec.js +227 -0
  166. package/test/ng/cookie-reader.spec.js +98 -0
  167. package/test/ng/directive/a.spec.js +192 -0
  168. package/test/ng/directive/bind.spec.js +334 -0
  169. package/test/ng/directive/boolean.spec.js +136 -0
  170. package/test/ng/directive/change.spec.js +71 -0
  171. package/test/ng/directive/class.spec.js +858 -0
  172. package/test/ng/directive/click.spec.js +38 -0
  173. package/test/ng/directive/cloak.spec.js +44 -0
  174. package/test/ng/directive/constoller.spec.js +194 -0
  175. package/test/ng/directive/element-style.spec.js +92 -0
  176. package/test/ng/directive/event.spec.js +282 -0
  177. package/test/ng/directive/form.spec.js +1518 -0
  178. package/test/ng/directive/href.spec.js +143 -0
  179. package/test/ng/directive/if.spec.js +402 -0
  180. package/test/ng/directive/include.spec.js +828 -0
  181. package/test/ng/directive/init.spec.js +68 -0
  182. package/test/ng/directive/input.spec.js +3810 -0
  183. package/test/ng/directive/list.spec.js +170 -0
  184. package/test/ng/directive/model-options.spec.js +1008 -0
  185. package/test/ng/directive/model.spec.js +1905 -0
  186. package/test/ng/directive/non-bindable.spec.js +55 -0
  187. package/test/ng/directive/options.spec.js +3583 -0
  188. package/test/ng/directive/ref.spec.js +575 -0
  189. package/test/ng/directive/repeat.spec.js +1675 -0
  190. package/test/ng/directive/script.spec.js +52 -0
  191. package/test/ng/directive/scrset.spec.js +67 -0
  192. package/test/ng/directive/select.spec.js +2541 -0
  193. package/test/ng/directive/show-hide.spec.js +253 -0
  194. package/test/ng/directive/src.spec.js +157 -0
  195. package/test/ng/directive/style.spec.js +178 -0
  196. package/test/ng/directive/switch.spec.js +647 -0
  197. package/test/ng/directive/validators.spec.js +717 -0
  198. package/test/ng/document.spec.js +52 -0
  199. package/test/ng/filter/filter.spec.js +714 -0
  200. package/test/ng/filter/filters.spec.js +35 -0
  201. package/test/ng/filter/limit-to.spec.js +251 -0
  202. package/test/ng/filter/order-by.spec.js +891 -0
  203. package/test/ng/filter.spec.js +149 -0
  204. package/test/ng/http-backend.spec.js +398 -0
  205. package/test/ng/http.spec.js +4071 -0
  206. package/test/ng/interpolate.spec.js +642 -0
  207. package/test/ng/interval.spec.js +343 -0
  208. package/test/ng/location.spec.js +3488 -0
  209. package/test/ng/on.spec.js +229 -0
  210. package/test/ng/parse.spec.js +4655 -0
  211. package/test/ng/prop.spec.js +805 -0
  212. package/test/ng/q.spec.js +2904 -0
  213. package/test/ng/root-element.spec.js +16 -0
  214. package/test/ng/sanitize-uri.spec.js +249 -0
  215. package/test/ng/sce.spec.js +660 -0
  216. package/test/ng/scope.spec.js +3442 -0
  217. package/test/ng/template-request.spec.js +236 -0
  218. package/test/ng/timeout.spec.js +351 -0
  219. package/test/ng/url-utils.spec.js +156 -0
  220. package/test/ng/utils.spec.js +144 -0
  221. package/test/original-test.html +21 -0
  222. package/test/public.spec.js +34 -0
  223. package/test/sanitize/bing-html.spec.js +36 -0
  224. package/test/server/express.js +158 -0
  225. package/test/test-utils.js +11 -0
  226. package/tsconfig.json +17 -0
  227. package/types/angular.d.ts +138 -0
  228. package/types/global.d.ts +9 -0
  229. package/types/index.d.ts +2357 -0
  230. package/types/jqlite.d.ts +558 -0
  231. package/vite.config.js +14 -0
package/RELEASE.md ADDED
@@ -0,0 +1,98 @@
1
+ # AngularJS Release instructions
2
+
3
+
4
+ ## Compare the list of commits between stable and unstable
5
+
6
+ There is a script - compare-master-to-stable.js - that helps with this.
7
+ We just want to make sure that good commits (low risk fixes + docs fixes) got cherry-picked into stable branch and nothing interesting got merged only into stable branch.
8
+
9
+
10
+ ## Pick a release name (for this version)
11
+
12
+ A super-heroic power (adverb-verb phrase).
13
+
14
+
15
+ ## Generate release notes
16
+
17
+ Example Commit: https://github.com/angular/angular.js/commit/7ab5098c14ee4f195dbfe2681e402fe2dfeacd78
18
+
19
+ 1) Run
20
+
21
+ ```bash
22
+ node_modules/.bin/changez -o changes.md -v <new version> <base branch>
23
+ ```
24
+
25
+ 2) Review the generated file and manually fix typos, group and reorder stuff if needed.
26
+ 3) Move the content into CHANGELOG.md add release code-names to headers.
27
+ 4) Push the changes to your private github repo and review.
28
+ 5) cherry-pick the release notes commit to the appropriate branches.
29
+
30
+
31
+ ## Pick a commit to release (for this version)
32
+
33
+ Usually this will be the commit containing the release notes, but it may also be in the past.
34
+
35
+
36
+ ## Run "release" script
37
+
38
+ ```bash
39
+ scripts/release/release.sh --git-push-dryrun=false --commit-sha=8822a4f --version-number=1.7.6 --version-name=gravity-manipulation
40
+ ```
41
+
42
+ 1) The SHA is of the commit to release (could be in the past).
43
+
44
+ 2) The version number and code-name that should be released, not the next version number (e.g. to release 1.2.12 you enter 1.2.12 as release version and the code-name that was picked for 1.2.12, cauliflower-eradication).
45
+
46
+ 3) You will need to have write access to all the AngularJS github dist repositories and publish rights for the AngularJS packages on npm.
47
+
48
+
49
+ ## Update GitHub milestones
50
+
51
+ 1) Create the next milestone if it doesn't exist yet-giving ita due date.
52
+ 2) Move all open issues and PRs for the current milestone to the next milestone<br>
53
+ You can do this by filtering the current milestone, selecting via checklist, and moving to the next milestone within the GH issues page.
54
+
55
+ 3) Close the current milestone click the milestones tab and close from there.
56
+ 4) Create a new holding milestone for the release after next-but don't give it a due date otherwise that will mess up the dashboard.
57
+
58
+
59
+ ## Push build artifacts to CDN
60
+
61
+ Google CDNs are fed with data from google3 every day at 11:15am PT it takes only few minutes for the import to propagate).
62
+ If we want to make our files available, we need submit our CLs before this time on the day of the release.
63
+
64
+
65
+ ## Don't update the package.json (branchVersion) until the CDN has updated
66
+
67
+ This is the version used to compute what version to link to in the CDN. If you update this too early then the CDN lookup fails and you end up with 'null, for the version, which breaks the docs.
68
+
69
+
70
+ ## Verify angularjs.org download modal has latest version (updates via CI job)
71
+
72
+ The versions in the modal are updated (based on the versions available on CDN) as part of the CI deploy stage.
73
+ (You may need to explicitly trigger the CI job. e.g. re-running the last `deploy` job.)
74
+
75
+
76
+ ## Announce the release (via official Google accounts)
77
+
78
+ Double check that angularjs.org is up to date with the new release version before sharing.
79
+
80
+ 1) Collect a list of contributors
81
+
82
+ use: `git log --format='%aN' v1.2.12..v1.2.13 | sort -u`
83
+
84
+ 2) Write a blog post (for minor releases, not patch releases) and publish it with the "release" tag
85
+ 3) Post on twitter as yourself (tweet from your heart; there is no template for this), retweet as @AngularJS
86
+
87
+
88
+ ## Party!
89
+
90
+
91
+ ## Major Release Tasks
92
+
93
+ 1) Update angularjs.org to use the latest branch.
94
+ 2) Write up a migration document.
95
+ 3) Create a new git branch for the version that has been released (e.g. 1.8.x).
96
+ 4) Check that the build and release scripts still work.
97
+ 5) Update the dist-tag of the old branch, see https://github.com/angular/angular.js/pull/12722.
98
+ 6) Write a blog post.
package/SECURITY.md ADDED
@@ -0,0 +1,16 @@
1
+ # Security Policy
2
+
3
+ ## Supported Versions
4
+
5
+ **AngularJS support has officially ended as of January 2022.**
6
+ [See what ending support means](https://docs.angularjs.org/misc/version-support-status)
7
+ and [read the end of life announcement](https://goo.gle/angularjs-end-of-life).
8
+
9
+ Visit [angular.io](https://angular.io) for the actively supported Angular.
10
+
11
+ | Version | Supported | Status | Comments |
12
+ | ----------- | ------------------ | --------------------- | ------------------------------------ |
13
+ | 1.8.x | :x: | All support ended | |
14
+ | 1.3.x-1.7.x | :x: | All support ended | |
15
+ | 1.2.x | :x: | All support ended | Last version to provide IE 8 support |
16
+ | <1.2.0 | :x: | All support ended | |
package/TRIAGING.md ADDED
@@ -0,0 +1,135 @@
1
+ # Triage new issues/PRs on github
2
+
3
+ This document shows the steps the AngularJS team is using to triage issues.
4
+ The labels are used later on for [planning releases](#assigning-work).
5
+
6
+
7
+ ## Automatic processing
8
+
9
+ We have tools (e.g. [Mary Poppins]) that automatically add comments and labels to issues and PRs.
10
+ The following is done automatically so you don't have to worry about it:
11
+
12
+ * Label `cla: yes` or `cla: no` for pull requests
13
+ * Label `GH: *`
14
+ * `PR` - issue is a PR
15
+ * `issue` - otherwise
16
+
17
+
18
+ ## Triaging Process
19
+
20
+ This process based on the idea of minimizing user pain
21
+ [from this blog post](http://www.lostgarden.com/2008/05/improving-bug-triage-with-user-pain.html).
22
+
23
+ 1. Open the list of [non triaged issues](https://github.com/angular/angular.js/issues?q=is%3Aopen+sort%3Acreated-desc+no%3Amilestone)
24
+ * Sort by submit date, with the newest issues first
25
+ * You don't have to do issues in order; feel free to pick and choose issues as you please.
26
+ * You can triage older issues as well
27
+ * Triage to your heart's content
28
+ 1. Assign yourself: Pick an issue that is not assigned to anyone and assign it to you
29
+ 1. Understandable? - verify if the description of the request is clear.
30
+ * If not, [close it][] according to the instructions below and go to the last step.
31
+ 1. Duplicate?
32
+ * If you've seen this issue before [close it][], and go to the last step.
33
+ * Check if there are comments that link to a dupe. If so verify that this is indeed a dupe, [close it][], and go to the last step.
34
+ 1. Bugs:
35
+ * Label `Type: Bug`
36
+ * Reproducible? - Steps to reproduce the bug are clear. If they are not, ask for a clarification. If there's no reply after a week, [close it][].
37
+ * Reproducible on master? - <http://code.angularjs.org/snapshot/>
38
+ 1. Non bugs:
39
+ * Label `Type: Feature`, `Type: Chore`, or `Type: Perf`
40
+ * Belongs in core? – Often new features should be implemented as a third-party module rather than an addition to the core.
41
+ If this doesn't belong, [close it][], and go to the last step.
42
+ * Label `needs: breaking change` - if needed
43
+ * Label `needs: public api` - if the issue requires introduction of a new public API
44
+ 1. Label `browser: *` - if the issue **only** affects a certain browser
45
+ 1. Label `frequency: *` – How often does this issue come up? How many developers does this affect? Chose just one of the following:
46
+ * low - obscure issue affecting a handful of developers
47
+ * moderate - impacts a common usage pattern
48
+ * high - impacts most or all AngularJS apps
49
+ 1. Label `severity: *` - How bad is the issue? Chose just one of the following:
50
+ * security issue
51
+ * regression
52
+ * memory leak
53
+ * broken expected use - it's hard or impossible for a developer using AngularJS to accomplish something that AngularJS should be able to do
54
+ * confusing - unexpected or inconsistent behavior; hard-to-debug
55
+ * inconvenience - causes ugly/boilerplate code in apps
56
+ 1. Label `component: *`
57
+ * In rare cases, it's ok to have multiple components.
58
+ 1. Label `PRs plz!` - These issues are good targets for PRs from the open source community. In addition to applying this label, you must:
59
+ * Leave a comment explaining the problem and solution so someone can easily finish it.
60
+ * Assign the issue to yourself.
61
+ * Give feedback on PRs addressing this issue.
62
+ * You are responsible for mentoring contributors helping with this issue.
63
+ 1. Label `origin: google` for issues from Google
64
+ 1. Assign a milestone:
65
+ * Backlog - triaged fixes and features, should be the default choice
66
+ * Current 1.x.y milestone (e.g. 1.3.0-beta-2) - regressions and urgent bugs only
67
+
68
+
69
+ 1. Unassign yourself from the issue
70
+
71
+
72
+ ## Tips
73
+
74
+ * Label `resolution: *`
75
+ * these tags can be used for labeling a closed issue/PR with a reason why it was closed.
76
+ * Right now there are only a few rejection reasons, but we can add more as needed. Feel free to suggest one to a core team member. We don't use this label for issues that were fixed or PRs that were merged.
77
+
78
+
79
+ ## Closing an Issue or PR
80
+
81
+ We're grateful to anyone who takes the time to submit an issue, even if we ultimately decide not to act on it.
82
+ Be kind and respectful as you close issues. Be sure to follow the [code of conduct][].
83
+
84
+ 1. Always thank the person who submitted it.
85
+ 1. If it's a duplicate, link to the older or more descriptive issue that supersedes the one you are closing.
86
+ 1. Let them know if there's some way for them to follow-up.
87
+ * When the issue is unclear or reproducible, note that you'll reopen it if they can clarify or provide a better example. Mention [plunker] or [fiddle] for examples. Watch your notifications and follow-up if they do provide clarification. :)
88
+ * If appropriate, suggest implementing a feature as a third-party module.
89
+
90
+ If in doubt, ask a core team member what to do.
91
+ [Brian](https://github.com/btford) is probably the person to ask.
92
+ You can mention him in the relevant thread like this: `@btford`.
93
+
94
+ **Example:**
95
+
96
+ > Thanks for submitting this issue!
97
+ > Unfortunately, we don't think this functionality belongs in core.
98
+ > The good news is that you could easily implement this as a third-party module and publish it to the npm registry.
99
+
100
+
101
+ ## Assigning Work
102
+
103
+ These criteria are then used to calculate a "user pain" score.
104
+ Work is assigned weekly to core team members starting with the highest pain, descending down to the lowest.
105
+
106
+ ```
107
+ pain = severity × frequency
108
+ ```
109
+
110
+ **severity:**
111
+
112
+ - security issue (6)
113
+ - regression (5)
114
+ - memory leak (4)
115
+ - broken expected use (3)
116
+ - confusing (2)
117
+ - inconvenience (1)
118
+
119
+ **frequency:**
120
+
121
+ - low (1)
122
+ - moderate (2)
123
+ - high (3)
124
+
125
+ **Note:** Security issues, regressions, and memory leaks should almost always be set to `frequency: high`.
126
+
127
+
128
+ [![Analytics](https://ga-beacon.appspot.com/UA-8594346-11/angular.js/TRIAGING.md?pixel)](https://github.com/igrigorik/ga-beacon)
129
+
130
+
131
+ [close it]: #closing-an-issue-or-pr
132
+ [code of conduct]: https://github.com/angular/code-of-conduct/blob/master/CODE_OF_CONDUCT.md
133
+ [Mary Poppins]: https://github.com/btford/mary-poppins
134
+ [plunker]: http://plnkr.co/
135
+ [fiddle]: http://jsfiddle.net/
@@ -0,0 +1,22 @@
1
+ @charset "UTF-8";
2
+
3
+ [ng\:cloak],
4
+ [ng-cloak],
5
+ [data-ng-cloak],
6
+ [ng-cloak],
7
+ .ng-cloak,
8
+ .ng-hide:not(.ng-hide-animate) {
9
+ display: none !important;
10
+ }
11
+
12
+ ng\:form {
13
+ display: block;
14
+ }
15
+
16
+ .ng-animate-shim {
17
+ visibility:hidden;
18
+ }
19
+
20
+ .ng-anchor {
21
+ position:absolute;
22
+ }