@loveluthien/carta-frontend 6.0.0-dev

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 (148) hide show
  1. package/.github/ISSUE_TEMPLATE/bug_report.md +34 -0
  2. package/.github/pull_request_template.md +23 -0
  3. package/.github/workflows/continuous_integration.yml +139 -0
  4. package/.github/workflows/deploy.yml +30 -0
  5. package/.husky/pre-commit +16 -0
  6. package/.husky/pre-push +42 -0
  7. package/.prettierignore +1 -0
  8. package/.prettierrc.json +18 -0
  9. package/CHANGELOG.md +363 -0
  10. package/COPYING.md +636 -0
  11. package/README.md +112 -0
  12. package/babel.config.json +10 -0
  13. package/build/ast_wrapper.wasm +0 -0
  14. package/build/carta_computation.wasm +0 -0
  15. package/build/carta_icon_128px.png +0 -0
  16. package/build/carta_logo.png +0 -0
  17. package/build/gsl_wrapper.wasm +0 -0
  18. package/build/index.html +147 -0
  19. package/build/manifest.json +15 -0
  20. package/build/robots.txt +3 -0
  21. package/build/static/css/546.aa44a897.css +1 -0
  22. package/build/static/css/async/359.4d8f6ff7.css +1 -0
  23. package/build/static/css/async/403.ea9edfac.css +1 -0
  24. package/build/static/css/async/462.8bde08e0.css +1 -0
  25. package/build/static/css/index.c1f77b92.css +1 -0
  26. package/build/static/font/blueprint-icons-16.5fb1af27.woff2 +0 -0
  27. package/build/static/font/blueprint-icons-16.79f603d1.woff +0 -0
  28. package/build/static/font/blueprint-icons-16.83d51978.eot +0 -0
  29. package/build/static/font/blueprint-icons-16.af0c342f.ttf +0 -0
  30. package/build/static/font/blueprint-icons-20.83fddc09.ttf +0 -0
  31. package/build/static/font/blueprint-icons-20.9a51bc58.woff +0 -0
  32. package/build/static/font/blueprint-icons-20.d61315fe.eot +0 -0
  33. package/build/static/font/blueprint-icons-20.ebf16e9a.woff2 +0 -0
  34. package/build/static/image/allmaps.03f2ba92.png +0 -0
  35. package/build/static/image/gamma.6fca425b.png +0 -0
  36. package/build/static/image/linear.c7941b64.png +0 -0
  37. package/build/static/image/log.7fce6aee.png +0 -0
  38. package/build/static/image/power.5dac9727.png +0 -0
  39. package/build/static/image/sqrt.0ec2b3f1.png +0 -0
  40. package/build/static/image/squared.798b23aa.png +0 -0
  41. package/build/static/js/546.b5841ade.js +489 -0
  42. package/build/static/js/546.b5841ade.js.LICENSE.txt +925 -0
  43. package/build/static/js/async/359.97257512.js +1 -0
  44. package/build/static/js/async/403.b00f768c.js +1 -0
  45. package/build/static/js/async/462.92c07a07.js +1 -0
  46. package/build/static/js/async/905.70044ee8.js +1 -0
  47. package/build/static/js/async/907.dc17f1d2.js +1 -0
  48. package/build/static/js/async/blueprint-icons-16px-paths.e17db832.js +1 -0
  49. package/build/static/js/async/blueprint-icons-20px-paths.6ad43f5f.js +1 -0
  50. package/build/static/js/async/blueprint-icons-all-paths-loader.61cc0f7b.js +1 -0
  51. package/build/static/js/async/blueprint-icons-all-paths.0c699441.js +1 -0
  52. package/build/static/js/async/blueprint-icons-split-paths-by-size-loader.5cff79f5.js +1 -0
  53. package/build/static/js/index.8fc34b4d.js +1344 -0
  54. package/build/static/js/index.9a30d560.worker.js +1 -0
  55. package/build/static/js/zfp_wrapper.wasm +0 -0
  56. package/build/static/svg/blueprint-icons-16.130888ef.svg +2097 -0
  57. package/build/static/svg/blueprint-icons-20.c8456d56.svg +2097 -0
  58. package/build/zfp_wrapper.wasm +0 -0
  59. package/declarations.d.ts +18 -0
  60. package/docs_website/.prettierignore +1 -0
  61. package/docs_website/api/api.md +13 -0
  62. package/docs_website/babel.config.js +3 -0
  63. package/docs_website/docs/assets/enable-code-snippets.png +0 -0
  64. package/docs_website/docs/code-snippet-tutorial/_category_.json +8 -0
  65. package/docs_website/docs/code-snippet-tutorial/basics.md +97 -0
  66. package/docs_website/docs/code-snippet-tutorial/image-blending.mdx +57 -0
  67. package/docs_website/docs/code-snippet-tutorial/image-fitting.mdx +44 -0
  68. package/docs_website/docs/code-snippet-tutorial/image-properties.mdx +84 -0
  69. package/docs_website/docs/code-snippet-tutorial/moment-images.mdx +31 -0
  70. package/docs_website/docs/code-snippet-tutorial/pv-images.mdx +28 -0
  71. package/docs_website/docs/code-snippet-tutorial/quick-start.mdx +82 -0
  72. package/docs_website/docs/code-snippet-tutorial/regions.mdx +49 -0
  73. package/docs_website/docs/contributing/_category_.json +7 -0
  74. package/docs_website/docs/contributing/developer-tips.md +61 -0
  75. package/docs_website/docs/contributing/documentation-guidelines.md +87 -0
  76. package/docs_website/docs/contributing/github-workflow.md +146 -0
  77. package/docs_website/docs/contributing/release-guidelines.md +73 -0
  78. package/docs_website/docs/contributing/unit-test-guidelines.md +79 -0
  79. package/docs_website/docs/documents.mdx +15 -0
  80. package/docs_website/docusaurus.config.js +167 -0
  81. package/docs_website/package-lock.json +16769 -0
  82. package/docs_website/package.json +121 -0
  83. package/docs_website/patches/@docusaurus+core+3.9.2.patch +20 -0
  84. package/docs_website/sidebars.js +33 -0
  85. package/docs_website/static/.nojekyll +0 -0
  86. package/docs_website/static/img/carta_icon_128px.png +0 -0
  87. package/docs_website/versioned_docs/version-4.1.0/api-packages.json +1 -0
  88. package/docs_website/versioned_docs/version-4.1.0/api-typedoc.json +214112 -0
  89. package/docs_website/versioned_docs/version-4.1.0/assets/enable-code-snippets.png +0 -0
  90. package/docs_website/versioned_docs/version-4.1.0/code-snippet-tutorial/_category_.json +8 -0
  91. package/docs_website/versioned_docs/version-4.1.0/code-snippet-tutorial/basics.md +97 -0
  92. package/docs_website/versioned_docs/version-4.1.0/code-snippet-tutorial/image-fitting.mdx +42 -0
  93. package/docs_website/versioned_docs/version-4.1.0/code-snippet-tutorial/image-properties.mdx +86 -0
  94. package/docs_website/versioned_docs/version-4.1.0/code-snippet-tutorial/moment-images.mdx +31 -0
  95. package/docs_website/versioned_docs/version-4.1.0/code-snippet-tutorial/pv-images.mdx +28 -0
  96. package/docs_website/versioned_docs/version-4.1.0/code-snippet-tutorial/quick-start.mdx +82 -0
  97. package/docs_website/versioned_docs/version-4.1.0/code-snippet-tutorial/regions.mdx +49 -0
  98. package/docs_website/versioned_docs/version-4.1.0/contributing/_category_.json +7 -0
  99. package/docs_website/versioned_docs/version-4.1.0/contributing/developer-tips.md +36 -0
  100. package/docs_website/versioned_docs/version-4.1.0/contributing/documentation-guidelines.md +87 -0
  101. package/docs_website/versioned_docs/version-4.1.0/contributing/github-workflow.md +141 -0
  102. package/docs_website/versioned_docs/version-4.1.0/contributing/release-guidelines.md +73 -0
  103. package/docs_website/versioned_docs/version-4.1.0/contributing/unit-test-guidelines.md +79 -0
  104. package/docs_website/versioned_docs/version-4.1.0/documents.mdx +15 -0
  105. package/docs_website/versioned_docs/version-5.0.0/api-packages.json +1 -0
  106. package/docs_website/versioned_docs/version-5.0.0/api-typedoc.json +315266 -0
  107. package/docs_website/versioned_docs/version-5.0.0/assets/enable-code-snippets.png +0 -0
  108. package/docs_website/versioned_docs/version-5.0.0/code-snippet-tutorial/_category_.json +8 -0
  109. package/docs_website/versioned_docs/version-5.0.0/code-snippet-tutorial/basics.md +97 -0
  110. package/docs_website/versioned_docs/version-5.0.0/code-snippet-tutorial/image-blending.mdx +57 -0
  111. package/docs_website/versioned_docs/version-5.0.0/code-snippet-tutorial/image-fitting.mdx +44 -0
  112. package/docs_website/versioned_docs/version-5.0.0/code-snippet-tutorial/image-properties.mdx +86 -0
  113. package/docs_website/versioned_docs/version-5.0.0/code-snippet-tutorial/moment-images.mdx +31 -0
  114. package/docs_website/versioned_docs/version-5.0.0/code-snippet-tutorial/pv-images.mdx +28 -0
  115. package/docs_website/versioned_docs/version-5.0.0/code-snippet-tutorial/quick-start.mdx +82 -0
  116. package/docs_website/versioned_docs/version-5.0.0/code-snippet-tutorial/regions.mdx +49 -0
  117. package/docs_website/versioned_docs/version-5.0.0/contributing/_category_.json +7 -0
  118. package/docs_website/versioned_docs/version-5.0.0/contributing/developer-tips.md +36 -0
  119. package/docs_website/versioned_docs/version-5.0.0/contributing/documentation-guidelines.md +87 -0
  120. package/docs_website/versioned_docs/version-5.0.0/contributing/github-workflow.md +141 -0
  121. package/docs_website/versioned_docs/version-5.0.0/contributing/release-guidelines.md +73 -0
  122. package/docs_website/versioned_docs/version-5.0.0/contributing/unit-test-guidelines.md +79 -0
  123. package/docs_website/versioned_docs/version-5.0.0/documents.mdx +15 -0
  124. package/docs_website/versioned_sidebars/version-4.1.0-sidebars.json +8 -0
  125. package/docs_website/versioned_sidebars/version-5.0.0-sidebars.json +8 -0
  126. package/docs_website/versions.json +4 -0
  127. package/eslint.config.mjs +86 -0
  128. package/jest.config.js +101 -0
  129. package/package.json +186 -0
  130. package/patches/golden-layout+1.5.9.patch +24 -0
  131. package/patches/react-split-pane+0.1.92.patch +20 -0
  132. package/rsbuild.config.ts +75 -0
  133. package/schemas/.github/workflows/AddToCartaVisProject.yml +23 -0
  134. package/schemas/.prettierrc.json +18 -0
  135. package/schemas/CMakeLists.txt +15 -0
  136. package/schemas/README.md +1 -0
  137. package/schemas/_config.yml +7 -0
  138. package/schemas/controller_config_schema_1.json +343 -0
  139. package/schemas/controller_config_schema_2.json +685 -0
  140. package/schemas/layout_schema_2.json +440 -0
  141. package/schemas/preference_backend_schema_1.json +81 -0
  142. package/schemas/preference_backend_schema_2.json +118 -0
  143. package/schemas/preference_schema_1.json +410 -0
  144. package/schemas/preferences_schema_2.json +421 -0
  145. package/schemas/schemacompiler.c +200 -0
  146. package/schemas/snippet_schema_1.json +45 -0
  147. package/schemas/workspace_schema_1.json +573 -0
  148. package/scripts/make_colormaps.py +161 -0
@@ -0,0 +1,925 @@
1
+ /*
2
+ object-assign
3
+ (c) Sindre Sorhus
4
+ @license MIT
5
+ */
6
+
7
+ /*!
8
+ Copyright (c) 2018 Jed Watson.
9
+ Licensed under the MIT License (MIT), see
10
+ http://jedwatson.github.io/classnames
11
+ */
12
+
13
+ /*!
14
+ Copyright (c) 2018 Jed Watson.
15
+ Licensed under the MIT License (MIT), see
16
+ http://jedwatson.github.io/classnames
17
+ */
18
+
19
+ /*!
20
+ * @kurkle/color v0.3.2
21
+ * https://github.com/kurkle/color#readme
22
+ * (c) 2023 Jukka Kurkela
23
+ * Released under the MIT License
24
+ */
25
+
26
+ /*!
27
+ * Chart.js v4.4.3
28
+ * https://www.chartjs.org
29
+ * (c) 2024 Chart.js Contributors
30
+ * Released under the MIT License
31
+ */
32
+
33
+ /*!
34
+ * Determine if an object is a Buffer
35
+ *
36
+ * @author Feross Aboukhadijeh <https://feross.org>
37
+ * @license MIT
38
+ */
39
+
40
+ /*!
41
+ * Sizzle CSS Selector Engine v2.3.6
42
+ * https://sizzlejs.com/
43
+ *
44
+ * Copyright JS Foundation and other contributors
45
+ * Released under the MIT license
46
+ * https://js.foundation/
47
+ *
48
+ * Date: 2021-02-16
49
+ */
50
+
51
+ /*!
52
+ * The buffer module from node.js, for the browser.
53
+ *
54
+ * @author Feross Aboukhadijeh <https://feross.org>
55
+ * @license MIT
56
+ */
57
+
58
+ /*!
59
+ * html2canvas 1.4.1 <https://html2canvas.hertzen.com>
60
+ * Copyright (c) 2022 Niklas von Hertzen <https://hertzen.com>
61
+ * Released under MIT License
62
+ */
63
+
64
+ /*!
65
+ * jQuery JavaScript Library v3.6.0
66
+ * https://jquery.com/
67
+ *
68
+ * Includes Sizzle.js
69
+ * https://sizzlejs.com/
70
+ *
71
+ * Copyright OpenJS Foundation and other contributors
72
+ * Released under the MIT license
73
+ * https://jquery.org/license
74
+ *
75
+ * Date: 2021-03-02T17:08Z
76
+ */
77
+
78
+ /*!
79
+ * pad-left <https://github.com/jonschlinkert/pad-left>
80
+ *
81
+ * Copyright (c) 2014-2015, Jon Schlinkert.
82
+ * Licensed under the MIT license.
83
+ */
84
+
85
+ /*!
86
+ * repeat-string <https://github.com/jonschlinkert/repeat-string>
87
+ *
88
+ * Copyright (c) 2014-2015, Jon Schlinkert.
89
+ * Licensed under the MIT License.
90
+ */
91
+
92
+ /*! *****************************************************************************
93
+ Copyright (c) Microsoft Corporation.
94
+
95
+ Permission to use, copy, modify, and/or distribute this software for any
96
+ purpose with or without fee is hereby granted.
97
+
98
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
99
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
100
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
101
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
102
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
103
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
104
+ PERFORMANCE OF THIS SOFTWARE.
105
+ ***************************************************************************** */
106
+
107
+ /*! *****************************************************************************
108
+ Copyright (c) Microsoft Corporation. All rights reserved.
109
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use
110
+ this file except in compliance with the License. You may obtain a copy of the
111
+ License at http://www.apache.org/licenses/LICENSE-2.0
112
+
113
+ THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
114
+ KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
115
+ WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
116
+ MERCHANTABLITY OR NON-INFRINGEMENT.
117
+
118
+ See the Apache Version 2.0 License for specific language governing permissions
119
+ and limitations under the License.
120
+ ***************************************************************************** */
121
+
122
+ /*! Bundled license information:
123
+
124
+ native-promise-only/lib/npo.src.js:
125
+ (*! Native Promise Only
126
+ v0.8.1 (c) Kyle Simpson
127
+ MIT License: http://getify.mit-license.org
128
+ *)
129
+
130
+ polybooljs/index.js:
131
+ (*
132
+ * @copyright 2016 Sean Connelly (@voidqk), http://syntheti.cc
133
+ * @license MIT
134
+ * @preserve Project Home: https://github.com/voidqk/polybooljs
135
+ *)
136
+
137
+ ieee754/index.js:
138
+ (*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> *)
139
+
140
+ buffer/index.js:
141
+ (*!
142
+ * The buffer module from node.js, for the browser.
143
+ *
144
+ * @author Feross Aboukhadijeh <https://feross.org>
145
+ * @license MIT
146
+ *)
147
+
148
+ safe-buffer/index.js:
149
+ (*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> *)
150
+
151
+ assert/build/internal/util/comparisons.js:
152
+ (*!
153
+ * The buffer module from node.js, for the browser.
154
+ *
155
+ * @author Feross Aboukhadijeh <feross@feross.org> <http://feross.org>
156
+ * @license MIT
157
+ *)
158
+
159
+ object-assign/index.js:
160
+ (*
161
+ object-assign
162
+ (c) Sindre Sorhus
163
+ @license MIT
164
+ *)
165
+
166
+ maplibre-gl/dist/maplibre-gl.js:
167
+ (**
168
+ * MapLibre GL JS
169
+ * @license 3-Clause BSD. Full text of license: https://github.com/maplibre/maplibre-gl-js/blob/v4.7.1/LICENSE.txt
170
+ *)
171
+ */
172
+
173
+ /*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
174
+
175
+ /*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
176
+
177
+ /**
178
+ * @license
179
+ * Copyright 2009 The Closure Library Authors
180
+ * Copyright 2020 Daniel Wirtz / The long.js Authors.
181
+ *
182
+ * Licensed under the Apache License, Version 2.0 (the "License");
183
+ * you may not use this file except in compliance with the License.
184
+ * You may obtain a copy of the License at
185
+ *
186
+ * http://www.apache.org/licenses/LICENSE-2.0
187
+ *
188
+ * Unless required by applicable law or agreed to in writing, software
189
+ * distributed under the License is distributed on an "AS IS" BASIS,
190
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
191
+ * See the License for the specific language governing permissions and
192
+ * limitations under the License.
193
+ *
194
+ * SPDX-License-Identifier: Apache-2.0
195
+ */
196
+
197
+ /**
198
+ * @license
199
+ * Lodash <https://lodash.com/>
200
+ * Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
201
+ * Released under MIT license <https://lodash.com/license>
202
+ * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
203
+ * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
204
+ */
205
+
206
+ /**
207
+ * @license React
208
+ * react-dom.production.min.js
209
+ *
210
+ * Copyright (c) Facebook, Inc. and its affiliates.
211
+ *
212
+ * This source code is licensed under the MIT license found in the
213
+ * LICENSE file in the root directory of this source tree.
214
+ */
215
+
216
+ /**
217
+ * @license React
218
+ * react-jsx-runtime.production.min.js
219
+ *
220
+ * Copyright (c) Facebook, Inc. and its affiliates.
221
+ *
222
+ * This source code is licensed under the MIT license found in the
223
+ * LICENSE file in the root directory of this source tree.
224
+ */
225
+
226
+ /**
227
+ * @license React
228
+ * react-reconciler-constants.production.min.js
229
+ *
230
+ * Copyright (c) Facebook, Inc. and its affiliates.
231
+ *
232
+ * This source code is licensed under the MIT license found in the
233
+ * LICENSE file in the root directory of this source tree.
234
+ */
235
+
236
+ /**
237
+ * @license React
238
+ * react-reconciler.production.min.js
239
+ *
240
+ * Copyright (c) Facebook, Inc. and its affiliates.
241
+ *
242
+ * This source code is licensed under the MIT license found in the
243
+ * LICENSE file in the root directory of this source tree.
244
+ */
245
+
246
+ /**
247
+ * @license React
248
+ * react.production.min.js
249
+ *
250
+ * Copyright (c) Facebook, Inc. and its affiliates.
251
+ *
252
+ * This source code is licensed under the MIT license found in the
253
+ * LICENSE file in the root directory of this source tree.
254
+ */
255
+
256
+ /**
257
+ * @license React
258
+ * scheduler.production.min.js
259
+ *
260
+ * Copyright (c) Facebook, Inc. and its affiliates.
261
+ *
262
+ * This source code is licensed under the MIT license found in the
263
+ * LICENSE file in the root directory of this source tree.
264
+ */
265
+
266
+ /**
267
+ * @license React
268
+ * use-sync-external-store-shim.production.js
269
+ *
270
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
271
+ *
272
+ * This source code is licensed under the MIT license found in the
273
+ * LICENSE file in the root directory of this source tree.
274
+ */
275
+
276
+ /**
277
+ * Prism: Lightweight, robust, elegant syntax highlighting
278
+ *
279
+ * @license MIT <https://opensource.org/licenses/MIT>
280
+ * @author Lea Verou <https://lea.verou.me>
281
+ * @namespace
282
+ * @public
283
+ */
284
+
285
+ //! Burak Yiğit Kaya: https://github.com/BYK
286
+
287
+ //! Sigurd Gartmann : https://github.com/sigurdga
288
+
289
+ //! Stephen Ramthun : https://github.com/stephenramthun
290
+
291
+ //! Author : Menelion Elensúle : https://github.com/Oire
292
+
293
+ //! author : Abdel Said : https://github.com/abdelsaid
294
+
295
+ //! author : Abdel Said: https://github.com/abdelsaid
296
+
297
+ //! author : Adam Brunner : https://github.com/adambrunner
298
+
299
+ //! author : Aggelos Karalias : https://github.com/mehiel
300
+
301
+ //! author : Ahmed Elkhatib
302
+
303
+ //! author : Alessandro Maruccia : https://github.com/alesma
304
+
305
+ //! author : Ali Hmer: https://github.com/kikoanis
306
+
307
+ //! author : Amine Roukh: https://github.com/Amine27
308
+
309
+ //! author : Anatoly Mironov : https://github.com/mirontoli
310
+
311
+ //! author : Andrew Hood : https://github.com/andrewhood125
312
+
313
+ //! author : André Silva : https://github.com/askpt
314
+
315
+ //! author : Anthony : https://github.com/anthonylau
316
+
317
+ //! author : Arjunkumar Krishnamoorthy : https://github.com/tk120404
318
+
319
+ //! author : Armendarabyan : https://github.com/armendarabyan
320
+
321
+ //! author : Asraf Hossain Patoary : https://github.com/ashwoolford
322
+
323
+ //! author : Atamyrat Abdyrahmanov : https://github.com/atamyratabdy
324
+
325
+ //! author : Atolagbe Abisoye : https://github.com/andela-batolagbe
326
+
327
+ //! author : Bang Nguyen : https://github.com/bangnk
328
+
329
+ //! author : Ben : https://github.com/ben-lin
330
+
331
+ //! author : Bojan Marković : https://github.com/bmarkovic
332
+
333
+ //! author : Borislav Mickov : https://github.com/B0k0
334
+
335
+ //! author : Caio Ribeiro Pereira : https://github.com/caio-ribeiro-pereira
336
+
337
+ //! author : Chien Kira : https://github.com/chienkira
338
+
339
+ //! author : Chris Cartlidge : https://github.com/chriscartlidge
340
+
341
+ //! author : Chris Gedrim : https://github.com/chrisgedrim
342
+
343
+ //! author : Chris Lam : https://github.com/hehachris
344
+
345
+ //! author : Chyngyz Arystan uulu : https://github.com/chyngyz
346
+
347
+ //! author : Colin Dean : https://github.com/colindean
348
+
349
+ //! author : Dan Hagman : https://github.com/hagmandan
350
+
351
+ //! author : David Raison : https://github.com/kwisatz
352
+
353
+ //! author : David Rossellat : https://github.com/gholadr
354
+
355
+ //! author : Dmitry Demidov : https://github.com/demidov91
356
+
357
+ //! author : Dominika Kruk : https://github.com/amaranthrose
358
+
359
+ //! author : Ebrahim Byagowi : https://github.com/ebraminio
360
+
361
+ //! author : ElFadili Yassine : https://github.com/ElFadiliY
362
+
363
+ //! author : Emanuel Cepoi : https://github.com/cepem
364
+
365
+ //! author : Eneko Illarramendi : https://github.com/eillarra
366
+
367
+ //! author : Estelle Comment : https://github.com/estellecomment
368
+
369
+ //! author : Fahad Kassim : https://github.com/fadsel
370
+
371
+ //! author : Flakërim Ismani : https://github.com/flakerimi
372
+
373
+ //! author : Floyd Pink : https://github.com/floydpink
374
+
375
+ //! author : Gaspard Bucher : https://github.com/gaspard
376
+
377
+ //! author : Harpreet Singh : https://github.com/harpreetkhalsagtbit
378
+
379
+ //! author : Harshad Kale : https://github.com/kalehv
380
+
381
+ //! author : Henry Kehlmann : https://github.com/madhenry
382
+
383
+ //! author : Hinrik Örn Sigurðsson : https://github.com/hinrik
384
+
385
+ //! author : Irakli Janiashvili : https://github.com/IrakliJani
386
+
387
+ //! author : Iustì Canun
388
+
389
+ //! author : JC Franco : https://github.com/jcfranco
390
+
391
+ //! author : Jacob Middag : https://github.com/middagj
392
+
393
+ //! author : Jared Morse : https://github.com/jarcoal
394
+
395
+ //! author : Jatin Agrawal : https://github.com/jatinag22
396
+
397
+ //! author : Javkhlantugs Nyamdorj : https://github.com/javkhaanj7
398
+
399
+ //! author : Jawish Hameed : https://github.com/jawish
400
+
401
+ //! author : Jean-Baptiste Le Duigou : https://github.com/jbleduigou
402
+
403
+ //! author : Jeeeyul Lee <jeeeyul@gmail.com>
404
+
405
+ //! author : Jefferson : https://github.com/jalex79
406
+
407
+ //! author : Jens Alm : https://github.com/ulmus
408
+
409
+ //! author : John Corrigan <robbiecloset@gmail.com> : https://github.com/johnideal
410
+
411
+ //! author : John Fischer : https://github.com/jfroffice
412
+
413
+ //! author : Jon Ashdown : https://github.com/jonashdown
414
+
415
+ //! author : Jonathan Abourbih : https://github.com/jonbca
416
+
417
+ //! author : Joris Röling : https://github.com/jorisroling
418
+
419
+ //! author : Joshua Brooks : https://github.com/joshbrooks
420
+
421
+ //! author : Juan G. Hurtado : https://github.com/juanghurtado
422
+
423
+ //! author : Julio Napurí : https://github.com/julionc
424
+
425
+ //! author : Jānis Elmeris : https://github.com/JanisE
426
+
427
+ //! author : Kaushik Gandhi : https://github.com/kaushikgandhi
428
+
429
+ //! author : Kaushik Thanki : https://github.com/Kaushik1987
430
+
431
+ //! author : Konstantin : https://github.com/skfd
432
+
433
+ //! author : Krasen Borisov : https://github.com/kraz
434
+
435
+ //! author : Kridsada Thanabulpong : https://github.com/sirn
436
+
437
+ //! author : Krishna Chaitanya Thota : https://github.com/kcthota
438
+
439
+ //! author : Kristaps Karlsons : https://github.com/skakri
440
+
441
+ //! author : Kristian Sakarisson : https://github.com/sakarisson
442
+
443
+ //! author : Kruy Vanna : https://github.com/kruyvanna
444
+
445
+ //! author : Kyungwook, Park : https://github.com/kyungw00k
446
+
447
+ //! author : LI Long : https://github.com/baryon
448
+
449
+ //! author : Lorenzo : https://github.com/aliem
450
+
451
+ //! author : Luke McGregor : https://github.com/lukemcgregor
452
+
453
+ //! author : Majd Al-Shihabi : https://github.com/majdal
454
+
455
+ //! author : Martin Groller : https://github.com/MadMG
456
+
457
+ //! author : Martin Minka : https://github.com/k2s
458
+
459
+ //! author : Matthew Castrillon-Madrigal : https://github.com/techdimension
460
+
461
+ //! author : Matthew Co : https://github.com/matthewdeeco
462
+
463
+ //! author : Mayank Singhal : https://github.com/mayanksinghal
464
+
465
+ //! author : Menelion Elensúle : https://github.com/Oire
466
+
467
+ //! author : Mia Nordentoft Imperatori : https://github.com/miestasmia
468
+
469
+ //! author : Mikolaj Dadela : https://github.com/mik01aj
470
+
471
+ //! author : Milan Janačković<milanjanackovic@gmail.com> : https://github.com/milan-j
472
+
473
+ //! author : Mindaugas Mozūras : https://github.com/mmozuras
474
+
475
+ //! author : Miodrag Nikač <miodrag@restartit.me> : https://github.com/miodragnikac
476
+
477
+ //! author : Mohammad Satrio Utomo : https://github.com/tyok
478
+
479
+ //! author : Moshe Simantov : https://github.com/DevelopmentIL
480
+
481
+ //! author : Nader Toukabri : https://github.com/naderio
482
+
483
+ //! author : Narain Sagar : https://github.com/narainsagar
484
+
485
+ //! author : Nedim Cholich : https://github.com/frontyard
486
+
487
+ //! author : Nicolai Davies<mail@nicolai.io> : https://github.com/nicolaidavies
488
+
489
+ //! author : Noureddine LOUAHEDJ : https://github.com/noureddinem
490
+
491
+ //! author : Nusret Parlak: https://github.com/nusretparlak
492
+
493
+ //! author : Oerd Cukalla : https://github.com/oerd
494
+
495
+ //! author : Onorio De J. Afonso : https://github.com/marobo
496
+
497
+ //! author : Orif N. Jr. : https://github.com/orif-jr
498
+
499
+ //! author : Peter Viszt : https://github.com/passatgt
500
+
501
+ //! author : Quentin PAGÈS : https://github.com/Quenty31
502
+
503
+ //! author : Rafal Hirsz : https://github.com/evoL
504
+
505
+ //! author : Ragnar Johannesen : https://github.com/ragnar123
506
+
507
+ //! author : Rajeev Naik : https://github.com/rajeevnaikte
508
+
509
+ //! author : Rasid Redzic : https://github.com/rasidre
510
+
511
+ //! author : Rasulbek Mirzayev : github.com/Rasulbeeek
512
+
513
+ //! author : Robert Allen : https://github.com/robgallen
514
+
515
+ //! author : Robert Sedovšek : https://github.com/sedovsek
516
+
517
+ //! author : Robin van der Vliet : https://github.com/robin0van0der0v
518
+
519
+ //! author : Rony Lantip : https://github.com/lantip
520
+
521
+ //! author : Ryan Hart : https://github.com/ryanhart2
522
+
523
+ //! author : Sampath Sitinamaluwa : https://github.com/sampathsris
524
+
525
+ //! author : Sardor Muminov : https://github.com/muminoff
526
+
527
+ //! author : Sashko Todorov : https://github.com/bkyceh
528
+
529
+ //! author : Sawood Alam : https://github.com/ibnesayeed
530
+
531
+ //! author : Shahram Mebashar : https://github.com/ShahramMebashar
532
+
533
+ //! author : Sonia Simoes : https://github.com/soniasimoes
534
+
535
+ //! author : Squar team, mysquar.com
536
+
537
+ //! author : Stefan Crnjaković <stefan@hotmail.rs> : https://github.com/crnjakovic
538
+
539
+ //! author : Suhail Alkowaileet : https://github.com/xsoh
540
+
541
+ //! author : Tal Ater : https://github.com/TalAter
542
+
543
+ //! author : Tan Yuanhong : https://github.com/le0tan
544
+
545
+ //! author : Tarmo Aidantausta : https://github.com/bleadof
546
+
547
+ //! author : The Discoverer : https://github.com/WikiDiscoverer
548
+
549
+ //! author : Thupten N. Chakrishar : https://github.com/vajradog
550
+
551
+ //! author : Tin Aung Lin : https://github.com/thanyawzinmin
552
+
553
+ //! author : Tomer Cohen : https://github.com/tomer
554
+
555
+ //! author : Ulrik Nielsen : https://github.com/mrbase
556
+
557
+ //! author : Valentin Agachi : https://github.com/avaly
558
+
559
+ //! author : Viktorminator : https://github.com/Viktorminator
560
+
561
+ //! author : Vivek Athalye : https://github.com/vnathalye
562
+
563
+ //! author : Vlad Gurdiga : https://github.com/gurdiga
564
+
565
+ //! author : Weldan Jamili : https://github.com/weldan
566
+
567
+ //! author : Werner Mollentze : https://github.com/wernerm
568
+
569
+ //! author : Zack : https://github.com/ZackVision
570
+
571
+ //! author : Zeno Zeng : https://github.com/zenozeng
572
+
573
+ //! author : bustta : https://github.com/bustta
574
+
575
+ //! author : chrisrodz : https://github.com/chrisrodz
576
+
577
+ //! author : forabi https://github.com/forabi
578
+
579
+ //! author : https://github.com/ryangreaves
580
+
581
+ //! author : lluchs : https://github.com/lluchs
582
+
583
+ //! author : mweimerskirch : https://github.com/mweimerskirch
584
+
585
+ //! author : petrbela : https://github.com/petrbela
586
+
587
+ //! author : sschueller : https://github.com/sschueller
588
+
589
+ //! author : suupic : https://github.com/suupic
590
+
591
+ //! author : suvash : https://github.com/suvash
592
+
593
+ //! author : topchiyev : https://github.com/topchiyev
594
+
595
+ //! author : uu109 : https://github.com/uu109
596
+
597
+ //! author : xfh : https://github.com/xfh
598
+
599
+ //! author : zemlanin : https://github.com/zemlanin
600
+
601
+ //! author : Коренберг Марк : https://github.com/socketpair
602
+
603
+ //! author: Marco : https://github.com/Manfre98
604
+
605
+ //! author: Mattia Larentis: https://github.com/nostalgiaz
606
+
607
+ //! author: Menelion Elensúle: https://github.com/Oire
608
+
609
+ //! author: Praleska: http://praleska.pro/
610
+
611
+ //! author: boyaq : https://github.com/boyaq
612
+
613
+ //! authors : Bård Rolstad Henriksen : https://github.com/karamell
614
+
615
+ //! authors : Erhan Gundogan : https://github.com/erhangundogan,
616
+
617
+ //! authors : Espen Hovlandsdal : https://github.com/rexxars
618
+
619
+ //! authors : Mazlum Özdogan : https://github.com/mergehez
620
+
621
+ //! authors : Nurlan Rakhimzhanov : https://github.com/nurlan
622
+
623
+ //! authors : Tim Wood, Iskren Chernev, Moment.js contributors
624
+
625
+ //! authors : https://github.com/mechuwind
626
+
627
+ //! based on (hr) translation by Bojan Marković
628
+
629
+ //! based on work of petrbela : https://github.com/petrbela
630
+
631
+ //! comment : Vivakvo corrected the translation by colindean and miestasmia
632
+
633
+ //! comment : miestasmia corrected the translation by colindean
634
+
635
+ //! improvements : Illimar Tambek : https://github.com/ragulka
636
+
637
+ //! license : MIT
638
+
639
+ //! locale : Arabic (Tunisia) [ar-tn]
640
+
641
+ //! locale : Afrikaans [af]
642
+
643
+ //! locale : Albanian [sq]
644
+
645
+ //! locale : Arabic (Algeria) [ar-dz]
646
+
647
+ //! locale : Arabic (Kuwait) [ar-kw]
648
+
649
+ //! locale : Arabic (Libya) [ar-ly]
650
+
651
+ //! locale : Arabic (Morocco) [ar-ma]
652
+
653
+ //! locale : Arabic (Palestine) [ar-ps]
654
+
655
+ //! locale : Arabic (Saudi Arabia) [ar-sa]
656
+
657
+ //! locale : Arabic [ar]
658
+
659
+ //! locale : Armenian [hy-am]
660
+
661
+ //! locale : Azerbaijani [az]
662
+
663
+ //! locale : Bambara [bm]
664
+
665
+ //! locale : Basque [eu]
666
+
667
+ //! locale : Belarusian [be]
668
+
669
+ //! locale : Bengali (Bangladesh) [bn-bd]
670
+
671
+ //! locale : Bengali [bn]
672
+
673
+ //! locale : Bosnian [bs]
674
+
675
+ //! locale : Breton [br]
676
+
677
+ //! locale : Bulgarian [bg]
678
+
679
+ //! locale : Burmese [my]
680
+
681
+ //! locale : Cambodian [km]
682
+
683
+ //! locale : Catalan [ca]
684
+
685
+ //! locale : Central Atlas Tamazight Latin [tzm-latn]
686
+
687
+ //! locale : Central Atlas Tamazight [tzm]
688
+
689
+ //! locale : Chinese (China) [zh-cn]
690
+
691
+ //! locale : Chinese (Hong Kong) [zh-hk]
692
+
693
+ //! locale : Chinese (Macau) [zh-mo]
694
+
695
+ //! locale : Chinese (Taiwan) [zh-tw]
696
+
697
+ //! locale : Chuvash [cv]
698
+
699
+ //! locale : Croatian [hr]
700
+
701
+ //! locale : Czech [cs]
702
+
703
+ //! locale : Danish [da]
704
+
705
+ //! locale : Dutch (Belgium) [nl-be]
706
+
707
+ //! locale : Dutch [nl]
708
+
709
+ //! locale : English (Australia) [en-au]
710
+
711
+ //! locale : English (Canada) [en-ca]
712
+
713
+ //! locale : English (India) [en-in]
714
+
715
+ //! locale : English (Ireland) [en-ie]
716
+
717
+ //! locale : English (Israel) [en-il]
718
+
719
+ //! locale : English (New Zealand) [en-nz]
720
+
721
+ //! locale : English (Singapore) [en-sg]
722
+
723
+ //! locale : English (United Kingdom) [en-gb]
724
+
725
+ //! locale : Esperanto [eo]
726
+
727
+ //! locale : Estonian [et]
728
+
729
+ //! locale : Faroese [fo]
730
+
731
+ //! locale : Filipino [fil]
732
+
733
+ //! locale : Finnish [fi]
734
+
735
+ //! locale : French (Canada) [fr-ca]
736
+
737
+ //! locale : French (Switzerland) [fr-ch]
738
+
739
+ //! locale : French [fr]
740
+
741
+ //! locale : Frisian [fy]
742
+
743
+ //! locale : Galician [gl]
744
+
745
+ //! locale : Georgian [ka]
746
+
747
+ //! locale : German (Austria) [de-at]
748
+
749
+ //! locale : German (Switzerland) [de-ch]
750
+
751
+ //! locale : German [de]
752
+
753
+ //! locale : Greek [el]
754
+
755
+ //! locale : Gujarati [gu]
756
+
757
+ //! locale : Hebrew [he]
758
+
759
+ //! locale : Hindi [hi]
760
+
761
+ //! locale : Hungarian [hu]
762
+
763
+ //! locale : Icelandic [is]
764
+
765
+ //! locale : Indonesian [id]
766
+
767
+ //! locale : Irish or Irish Gaelic [ga]
768
+
769
+ //! locale : Italian (Switzerland) [it-ch]
770
+
771
+ //! locale : Italian [it]
772
+
773
+ //! locale : Japanese [ja]
774
+
775
+ //! locale : Javanese [jv]
776
+
777
+ //! locale : Kannada [kn]
778
+
779
+ //! locale : Kazakh [kk]
780
+
781
+ //! locale : Klingon [tlh]
782
+
783
+ //! locale : Konkani Devanagari script [gom-deva]
784
+
785
+ //! locale : Konkani Latin script [gom-latn]
786
+
787
+ //! locale : Korean [ko]
788
+
789
+ //! locale : Kurdish [ku]
790
+
791
+ //! locale : Kyrgyz [ky]
792
+
793
+ //! locale : Lao [lo]
794
+
795
+ //! locale : Latvian [lv]
796
+
797
+ //! locale : Lithuanian [lt]
798
+
799
+ //! locale : Luxembourgish [lb]
800
+
801
+ //! locale : Macedonian [mk]
802
+
803
+ //! locale : Malay [ms-my]
804
+
805
+ //! locale : Malay [ms]
806
+
807
+ //! locale : Malayalam [ml]
808
+
809
+ //! locale : Maldivian [dv]
810
+
811
+ //! locale : Maltese (Malta) [mt]
812
+
813
+ //! locale : Maori [mi]
814
+
815
+ //! locale : Marathi [mr]
816
+
817
+ //! locale : Mongolian [mn]
818
+
819
+ //! locale : Montenegrin [me]
820
+
821
+ //! locale : Nepalese [ne]
822
+
823
+ //! locale : Northern Kurdish [ku-kmr]
824
+
825
+ //! locale : Northern Sami [se]
826
+
827
+ //! locale : Norwegian Bokmål [nb]
828
+
829
+ //! locale : Nynorsk [nn]
830
+
831
+ //! locale : Occitan, lengadocian dialecte [oc-lnc]
832
+
833
+ //! locale : Persian [fa]
834
+
835
+ //! locale : Polish [pl]
836
+
837
+ //! locale : Portuguese (Brazil) [pt-br]
838
+
839
+ //! locale : Portuguese [pt]
840
+
841
+ //! locale : Pseudo [x-pseudo]
842
+
843
+ //! locale : Punjabi (India) [pa-in]
844
+
845
+ //! locale : Romanian [ro]
846
+
847
+ //! locale : Russian [ru]
848
+
849
+ //! locale : Scottish Gaelic [gd]
850
+
851
+ //! locale : Serbian Cyrillic [sr-cyrl]
852
+
853
+ //! locale : Serbian [sr]
854
+
855
+ //! locale : Sindhi [sd]
856
+
857
+ //! locale : Sinhalese [si]
858
+
859
+ //! locale : Slovak [sk]
860
+
861
+ //! locale : Slovenian [sl]
862
+
863
+ //! locale : Spanish (Dominican Republic) [es-do]
864
+
865
+ //! locale : Spanish (Mexico) [es-mx]
866
+
867
+ //! locale : Spanish (United States) [es-us]
868
+
869
+ //! locale : Spanish [es]
870
+
871
+ //! locale : Swahili [sw]
872
+
873
+ //! locale : Swedish [sv]
874
+
875
+ //! locale : Tagalog (Philippines) [tl-ph]
876
+
877
+ //! locale : Tajik [tg]
878
+
879
+ //! locale : Talossan [tzl]
880
+
881
+ //! locale : Tamil [ta]
882
+
883
+ //! locale : Telugu [te]
884
+
885
+ //! locale : Tetun Dili (East Timor) [tet]
886
+
887
+ //! locale : Thai [th]
888
+
889
+ //! locale : Tibetan [bo]
890
+
891
+ //! locale : Turkish [tr]
892
+
893
+ //! locale : Turkmen [tk]
894
+
895
+ //! locale : Ukrainian [uk]
896
+
897
+ //! locale : Urdu [ur]
898
+
899
+ //! locale : Uyghur (China) [ug-cn]
900
+
901
+ //! locale : Uzbek Latin [uz-latn]
902
+
903
+ //! locale : Uzbek [uz]
904
+
905
+ //! locale : Vietnamese [vi]
906
+
907
+ //! locale : Welsh [cy]
908
+
909
+ //! locale : Yoruba Nigeria [yo]
910
+
911
+ //! locale : siSwati [ss]
912
+
913
+ //! moment.js
914
+
915
+ //! moment.js locale configuration
916
+
917
+ //! momentjs.com
918
+
919
+ //! note : DEPRECATED, the correct one is [ms]
920
+
921
+ //! reference: http://id.wikisource.org/wiki/Pedoman_Umum_Ejaan_Bahasa_Indonesia_yang_Disempurnakan
922
+
923
+ //! reference: http://jv.wikipedia.org/wiki/Basa_Jawa
924
+
925
+ //! version : 2.30.1