@indfnd/common-pro 1.2.8 → 1.2.10

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.
@@ -1,877 +0,0 @@
1
- /*!
2
- * Signature Pad v4.2.0 | https://github.com/szimek/signature_pad
3
- * (c) 2024 Szymon Nowak | Released under the MIT license
4
- */
5
-
6
- /*!
7
- * css-vars-ponyfill
8
- * v2.4.9
9
- * https://jhildenbiddle.github.io/css-vars-ponyfill/
10
- * (c) 2018-2024 John Hildenbiddle <http://hildenbiddle.com>
11
- * MIT license
12
- */
13
-
14
- /*!
15
- * get-css-data
16
- * v2.1.0
17
- * https://github.com/jhildenbiddle/get-css-data
18
- * (c) 2018-2022 John Hildenbiddle <http://hildenbiddle.com>
19
- * MIT license
20
- */
21
-
22
- /*!
23
- * is-plain-object <https://github.com/jonschlinkert/is-plain-object>
24
- *
25
- * Copyright (c) 2014-2017, Jon Schlinkert.
26
- * Released under the MIT License.
27
- */
28
-
29
- /*! *****************************************************************************
30
- Copyright (c) Microsoft Corporation.
31
-
32
- Permission to use, copy, modify, and/or distribute this software for any
33
- purpose with or without fee is hereby granted.
34
-
35
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
36
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
37
- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
38
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
39
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
40
- OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
41
- PERFORMANCE OF THIS SOFTWARE.
42
- ***************************************************************************** */
43
-
44
- /**
45
- * @ag-grid-community/all-modules - Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue * @version v30.2.1
46
- * @link https://www.ag-grid.com/
47
- * @license MIT
48
- */
49
-
50
- /**
51
- * vue-class-component v7.2.6
52
- * (c) 2015-present Evan You
53
- * @license MIT
54
- */
55
-
56
- /**
57
- * @ag-grid-community/core - Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
58
- * @version v30.2.1
59
- * @link https://www.ag-grid.com/
60
- * @license MIT
61
- */
62
-
63
- /**
64
- * @license
65
- * Lodash <https://lodash.com/>
66
- * Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
67
- * Released under MIT license <https://lodash.com/license>
68
- * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
69
- * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
70
- */
71
-
72
- /**
73
- * Fetches, parses, and transforms CSS custom properties from specified
74
- * <style> and <link> elements into static values, then appends a new <style>
75
- * element with static values to the DOM to provide CSS custom property
76
- * compatibility for legacy browsers. Also provides a single interface for
77
- * live updates of runtime values in both modern and legacy browsers.
78
- *
79
- * @preserve
80
- * @param {object} [options] Options object
81
- * @param {object} [options.rootElement=document] Root element to traverse for
82
- * <link> and <style> nodes
83
- * @param {boolean} [options.shadowDOM=false] Determines if shadow DOM <link>
84
- * and <style> nodes will be processed.
85
- * @param {string} [options.include="style,link[rel=stylesheet]"] CSS selector
86
- * matching <link re="stylesheet"> and <style> nodes to
87
- * process
88
- * @param {string} [options.exclude] CSS selector matching <link
89
- * rel="stylehseet"> and <style> nodes to exclude from those
90
- * matches by options.include
91
- * @param {object} [options.variables] A map of custom property name/value
92
- * pairs. Property names can omit or include the leading
93
- * double-hyphen (—), and values specified will override
94
- * previous values
95
- * @param {boolean} [options.onlyLegacy=true] Determines if the ponyfill will
96
- * only generate legacy-compatible CSS in browsers that lack
97
- * native support (i.e., legacy browsers)
98
- * @param {boolean} [options.preserveStatic=true] Determines if CSS
99
- * declarations that do not reference a custom property will
100
- * be preserved in the transformed CSS
101
- * @param {boolean} [options.preserveVars=false] Determines if CSS custom
102
- * property declarations will be preserved in the transformed
103
- * CSS
104
- * @param {boolean} [options.silent=false] Determines if warning and error
105
- * messages will be displayed on the console
106
- * @param {boolean} [options.updateDOM=true] Determines if the ponyfill will
107
- * update the DOM after processing CSS custom properties
108
- * @param {boolean} [options.updateURLs=true] Determines if relative url()
109
- * paths will be converted to absolute urls in external CSS
110
- * @param {boolean} [options.watch=false] Determines if a MutationObserver will
111
- * be created that will execute the ponyfill when a <link> or
112
- * <style> DOM mutation is observed
113
- * @param {function} [options.onBeforeSend] Callback before XHR is sent. Passes
114
- * 1) the XHR object, 2) source node reference, and 3) the
115
- * source URL as arguments
116
- * @param {function} [options.onError] Callback after a CSS parsing error has
117
- * occurred or an XHR request has failed. Passes 1) an error
118
- * message, and 2) source node reference, 3) xhr, and 4 url as
119
- * arguments.
120
- * @param {function} [options.onWarning] Callback after each CSS parsing warning
121
- * has occurred. Passes 1) a warning message as an argument.
122
- * @param {function} [options.onSuccess] Callback after CSS data has been
123
- * collected from each node and before CSS custom properties
124
- * have been transformed. Allows modifying the CSS data before
125
- * it is transformed by returning any string value (or false
126
- * to skip). Passes 1) CSS text, 2) source node reference, and
127
- * 3) the source URL as arguments.
128
- * @param {function} [options.onComplete] Callback after all CSS has been
129
- * processed, legacy-compatible CSS has been generated, and
130
- * (optionally) the DOM has been updated. Passes 1) a CSS
131
- * string with CSS variable values resolved, 2) an array of
132
- * output <style> node references that have been appended to
133
- * the DOM, 3) an object containing all custom properies names
134
- * and values, and 4) the ponyfill execution time in
135
- * milliseconds.
136
- * @param {function} [options.onFinally] Callback in modern and legacy browsers
137
- * after the ponyfill has finished all tasks. Passes 1) a
138
- * boolean indicating if the last ponyfill call resulted in a
139
- * style change, 2) a boolean indicating if the current
140
- * browser provides native support for CSS custom properties,
141
- * and 3) the ponyfill execution time in milliseconds.
142
- * @example
143
- *
144
- * cssVars({
145
- * rootElement : document,
146
- * shadowDOM : false,
147
- * include : 'style,link[rel="stylesheet"]',
148
- * exclude : '',
149
- * variables : {},
150
- * onlyLegacy : true,
151
- * preserveStatic: true,
152
- * preserveVars : false,
153
- * silent : false,
154
- * updateDOM : true,
155
- * updateURLs : true,
156
- * watch : false,
157
- * onBeforeSend(xhr, node, url) {},
158
- * onError(message, node, xhr, url) {},
159
- * onWarning(message) {},
160
- * onSuccess(cssText, node, url) {},
161
- * onComplete(cssText, styleNode, cssVariables, benchmark) {},
162
- * onFinally(hasChanged, hasNativeSupport, benchmark)
163
- * });
164
- */
165
-
166
- /**
167
- * Gets CSS data from <style> and <link> nodes (including @imports), then
168
- * returns data in order processed by DOM. Allows specifying nodes to
169
- * include/exclude and filtering CSS data using RegEx.
170
- *
171
- * @preserve
172
- * @param {object} [options] The options object
173
- * @param {object} [options.rootElement=document] Root element to traverse for
174
- * <link> and <style> nodes.
175
- * @param {string} [options.include] CSS selector matching <link> and <style>
176
- * nodes to include
177
- * @param {string} [options.exclude] CSS selector matching <link> and <style>
178
- * nodes to exclude
179
- * @param {object} [options.filter] Regular expression used to filter node CSS
180
- * data. Each block of CSS data is tested against the filter,
181
- * and only matching data is included.
182
- * @param {boolean} [options.skipDisabled=true] Determines if disabled
183
- * stylesheets will be skipped while collecting CSS data.
184
- * @param {boolean} [options.useCSSOM=false] Determines if CSS data will be
185
- * collected from a stylesheet's runtime values instead of its
186
- * text content. This is required to get accurate CSS data
187
- * when a stylesheet has been modified using the deleteRule()
188
- * or insertRule() methods because these modifications will
189
- * not be reflected in the stylesheet's text content.
190
- * @param {function} [options.onBeforeSend] Callback before XHR is sent. Passes
191
- * 1) the XHR object, 2) source node reference, and 3) the
192
- * source URL as arguments.
193
- * @param {function} [options.onSuccess] Callback on each CSS node read. Passes
194
- * 1) CSS text, 2) source node reference, and 3) the source
195
- * URL as arguments.
196
- * @param {function} [options.onError] Callback on each error. Passes 1) the XHR
197
- * object for inspection, 2) soure node reference, and 3) the
198
- * source URL that failed (either a <link> href or an @import)
199
- * as arguments
200
- * @param {function} [options.onComplete] Callback after all nodes have been
201
- * processed. Passes 1) concatenated CSS text, 2) an array of
202
- * CSS text in DOM order, and 3) an array of nodes in DOM
203
- * order as arguments.
204
- *
205
- * @example
206
- *
207
- * getCssData({
208
- * rootElement : document,
209
- * include : 'style,link[rel="stylesheet"]',
210
- * exclude : '[href="skip.css"]',
211
- * filter : /red/,
212
- * skipDisabled: true,
213
- * useCSSOM : false,
214
- * onBeforeSend(xhr, node, url) {
215
- * // ...
216
- * }
217
- * onSuccess(cssText, node, url) {
218
- * // ...
219
- * }
220
- * onError(xhr, node, url) {
221
- * // ...
222
- * },
223
- * onComplete(cssText, cssArray, nodeArray) {
224
- * // ...
225
- * }
226
- * });
227
- */
228
-
229
- /**
230
- * Prism: Lightweight, robust, elegant syntax highlighting
231
- *
232
- * @license MIT <https://opensource.org/licenses/MIT>
233
- * @author Lea Verou <https://lea.verou.me>
234
- * @namespace
235
- * @public
236
- */
237
-
238
- /**
239
- * Takes a string with placeholder variables like `%{smart_count} file selected`
240
- * and replaces it with values from options `{smart_count: 5}`
241
- *
242
- * @license https://github.com/airbnb/polyglot.js/blob/master/LICENSE
243
- * taken from https://github.com/airbnb/polyglot.js/blob/master/lib/polyglot.js#L299
244
- *
245
- * @param {string} phrase that needs interpolation, with placeholders
246
- * @param {object} options with values that will be used to replace placeholders
247
- * @returns {any[]} interpolated
248
- */
249
-
250
- /**!
251
- * @fileOverview Kickass library to create and place poppers near their reference elements.
252
- * @version 1.16.1
253
- * @license
254
- * Copyright (c) 2016 Federico Zivolo and contributors
255
- *
256
- * Permission is hereby granted, free of charge, to any person obtaining a copy
257
- * of this software and associated documentation files (the "Software"), to deal
258
- * in the Software without restriction, including without limitation the rights
259
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
260
- * copies of the Software, and to permit persons to whom the Software is
261
- * furnished to do so, subject to the following conditions:
262
- *
263
- * The above copyright notice and this permission notice shall be included in all
264
- * copies or substantial portions of the Software.
265
- *
266
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
267
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
268
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
269
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
270
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
271
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
272
- * SOFTWARE.
273
- */
274
-
275
- //! Burak Yiğit Kaya: https://github.com/BYK
276
-
277
- //! Sigurd Gartmann : https://github.com/sigurdga
278
-
279
- //! Stephen Ramthun : https://github.com/stephenramthun
280
-
281
- //! author : Abdel Said : https://github.com/abdelsaid
282
-
283
- //! author : Abdel Said: https://github.com/abdelsaid
284
-
285
- //! author : Adam Brunner : https://github.com/adambrunner
286
-
287
- //! author : Ahmed Elkhatib
288
-
289
- //! author : Alessandro Maruccia : https://github.com/alesma
290
-
291
- //! author : Ali Hmer: https://github.com/kikoanis
292
-
293
- //! author : Amine Roukh: https://github.com/Amine27
294
-
295
- //! author : Anatoly Mironov : https://github.com/mirontoli
296
-
297
- //! author : Andrew Hood : https://github.com/andrewhood125
298
-
299
- //! author : Anthony : https://github.com/anthonylau
300
-
301
- //! author : Arjunkumar Krishnamoorthy : https://github.com/tk120404
302
-
303
- //! author : Armendarabyan : https://github.com/armendarabyan
304
-
305
- //! author : Asraf Hossain Patoary : https://github.com/ashwoolford
306
-
307
- //! author : Atamyrat Abdyrahmanov : https://github.com/atamyratabdy
308
-
309
- //! author : Atolagbe Abisoye : https://github.com/andela-batolagbe
310
-
311
- //! author : Bang Nguyen : https://github.com/bangnk
312
-
313
- //! author : Ben : https://github.com/ben-lin
314
-
315
- //! author : Bojan Marković : https://github.com/bmarkovic
316
-
317
- //! author : Borislav Mickov : https://github.com/B0k0
318
-
319
- //! author : Caio Ribeiro Pereira : https://github.com/caio-ribeiro-pereira
320
-
321
- //! author : Chien Kira : https://github.com/chienkira
322
-
323
- //! author : Chris Cartlidge : https://github.com/chriscartlidge
324
-
325
- //! author : Chris Gedrim : https://github.com/chrisgedrim
326
-
327
- //! author : Chris Lam : https://github.com/hehachris
328
-
329
- //! author : Chyngyz Arystan uulu : https://github.com/chyngyz
330
-
331
- //! author : Colin Dean : https://github.com/colindean
332
-
333
- //! author : Dan Hagman : https://github.com/hagmandan
334
-
335
- //! author : David Raison : https://github.com/kwisatz
336
-
337
- //! author : David Rossellat : https://github.com/gholadr
338
-
339
- //! author : Dominika Kruk : https://github.com/amaranthrose
340
-
341
- //! author : Ebrahim Byagowi : https://github.com/ebraminio
342
-
343
- //! author : ElFadili Yassine : https://github.com/ElFadiliY
344
-
345
- //! author : Emanuel Cepoi : https://github.com/cepem
346
-
347
- //! author : Eneko Illarramendi : https://github.com/eillarra
348
-
349
- //! author : Estelle Comment : https://github.com/estellecomment
350
-
351
- //! author : Fahad Kassim : https://github.com/fadsel
352
-
353
- //! author : Flakërim Ismani : https://github.com/flakerimi
354
-
355
- //! author : Floyd Pink : https://github.com/floydpink
356
-
357
- //! author : Gaspard Bucher : https://github.com/gaspard
358
-
359
- //! author : Harpreet Singh : https://github.com/harpreetkhalsagtbit
360
-
361
- //! author : Harshad Kale : https://github.com/kalehv
362
-
363
- //! author : Henry Kehlmann : https://github.com/madhenry
364
-
365
- //! author : Hinrik Örn Sigurðsson : https://github.com/hinrik
366
-
367
- //! author : Irakli Janiashvili : https://github.com/IrakliJani
368
-
369
- //! author : Iustì Canun
370
-
371
- //! author : JC Franco : https://github.com/jcfranco
372
-
373
- //! author : Jacob Middag : https://github.com/middagj
374
-
375
- //! author : Jared Morse : https://github.com/jarcoal
376
-
377
- //! author : Jatin Agrawal : https://github.com/jatinag22
378
-
379
- //! author : Javkhlantugs Nyamdorj : https://github.com/javkhaanj7
380
-
381
- //! author : Jawish Hameed : https://github.com/jawish
382
-
383
- //! author : Jean-Baptiste Le Duigou : https://github.com/jbleduigou
384
-
385
- //! author : Jeeeyul Lee <jeeeyul@gmail.com>
386
-
387
- //! author : Jefferson : https://github.com/jalex79
388
-
389
- //! author : Jens Alm : https://github.com/ulmus
390
-
391
- //! author : John Corrigan <robbiecloset@gmail.com> : https://github.com/johnideal
392
-
393
- //! author : John Fischer : https://github.com/jfroffice
394
-
395
- //! author : Jonathan Abourbih : https://github.com/jonbca
396
-
397
- //! author : Joris Röling : https://github.com/jorisroling
398
-
399
- //! author : Joshua Brooks : https://github.com/joshbrooks
400
-
401
- //! author : Juan G. Hurtado : https://github.com/juanghurtado
402
-
403
- //! author : Julio Napurí : https://github.com/julionc
404
-
405
- //! author : Jānis Elmeris : https://github.com/JanisE
406
-
407
- //! author : Kaushik Gandhi : https://github.com/kaushikgandhi
408
-
409
- //! author : Kaushik Thanki : https://github.com/Kaushik1987
410
-
411
- //! author : Konstantin : https://github.com/skfd
412
-
413
- //! author : Krasen Borisov : https://github.com/kraz
414
-
415
- //! author : Kridsada Thanabulpong : https://github.com/sirn
416
-
417
- //! author : Krishna Chaitanya Thota : https://github.com/kcthota
418
-
419
- //! author : Kristaps Karlsons : https://github.com/skakri
420
-
421
- //! author : Kristian Sakarisson : https://github.com/sakarisson
422
-
423
- //! author : Kruy Vanna : https://github.com/kruyvanna
424
-
425
- //! author : Kyungwook, Park : https://github.com/kyungw00k
426
-
427
- //! author : LI Long : https://github.com/baryon
428
-
429
- //! author : Lorenzo : https://github.com/aliem
430
-
431
- //! author : Luke McGregor : https://github.com/lukemcgregor
432
-
433
- //! author : Martin Groller : https://github.com/MadMG
434
-
435
- //! author : Martin Minka : https://github.com/k2s
436
-
437
- //! author : Matthew Castrillon-Madrigal : https://github.com/techdimension
438
-
439
- //! author : Matthew Co : https://github.com/matthewdeeco
440
-
441
- //! author : Mayank Singhal : https://github.com/mayanksinghal
442
-
443
- //! author : Menelion Elensúle : https://github.com/Oire
444
-
445
- //! author : Mia Nordentoft Imperatori : https://github.com/miestasmia
446
-
447
- //! author : Mikolaj Dadela : https://github.com/mik01aj
448
-
449
- //! author : Milan Janačković<milanjanackovic@gmail.com> : https://github.com/milan-j
450
-
451
- //! author : Mindaugas Mozūras : https://github.com/mmozuras
452
-
453
- //! author : Miodrag Nikač <miodrag@restartit.me> : https://github.com/miodragnikac
454
-
455
- //! author : Mohammad Satrio Utomo : https://github.com/tyok
456
-
457
- //! author : Moshe Simantov : https://github.com/DevelopmentIL
458
-
459
- //! author : Nader Toukabri : https://github.com/naderio
460
-
461
- //! author : Narain Sagar : https://github.com/narainsagar
462
-
463
- //! author : Nedim Cholich : https://github.com/frontyard
464
-
465
- //! author : Nicolai Davies<mail@nicolai.io> : https://github.com/nicolaidavies
466
-
467
- //! author : Noureddine LOUAHEDJ : https://github.com/noureddinem
468
-
469
- //! author : Nusret Parlak: https://github.com/nusretparlak
470
-
471
- //! author : Oerd Cukalla : https://github.com/oerd
472
-
473
- //! author : Onorio De J. Afonso : https://github.com/marobo
474
-
475
- //! author : Orif N. Jr. : https://github.com/orif-jr
476
-
477
- //! author : Peter Viszt : https://github.com/passatgt
478
-
479
- //! author : Quentin PAGÈS : https://github.com/Quenty31
480
-
481
- //! author : Rafal Hirsz : https://github.com/evoL
482
-
483
- //! author : Ragnar Johannesen : https://github.com/ragnar123
484
-
485
- //! author : Rajeev Naik : https://github.com/rajeevnaikte
486
-
487
- //! author : Rasulbek Mirzayev : github.com/Rasulbeeek
488
-
489
- //! author : Robert Allen : https://github.com/robgallen
490
-
491
- //! author : Robert Sedovšek : https://github.com/sedovsek
492
-
493
- //! author : Robin van der Vliet : https://github.com/robin0van0der0v
494
-
495
- //! author : Rony Lantip : https://github.com/lantip
496
-
497
- //! author : Ryan Hart : https://github.com/ryanhart2
498
-
499
- //! author : Sampath Sitinamaluwa : https://github.com/sampathsris
500
-
501
- //! author : Sardor Muminov : https://github.com/muminoff
502
-
503
- //! author : Sashko Todorov : https://github.com/bkyceh
504
-
505
- //! author : Sawood Alam : https://github.com/ibnesayeed
506
-
507
- //! author : Shahram Mebashar : https://github.com/ShahramMebashar
508
-
509
- //! author : Sonia Simoes : https://github.com/soniasimoes
510
-
511
- //! author : Squar team, mysquar.com
512
-
513
- //! author : Stefan Crnjaković <stefan@hotmail.rs> : https://github.com/crnjakovic
514
-
515
- //! author : Suhail Alkowaileet : https://github.com/xsoh
516
-
517
- //! author : Tal Ater : https://github.com/TalAter
518
-
519
- //! author : Tan Yuanhong : https://github.com/le0tan
520
-
521
- //! author : Tarmo Aidantausta : https://github.com/bleadof
522
-
523
- //! author : The Discoverer : https://github.com/WikiDiscoverer
524
-
525
- //! author : Thupten N. Chakrishar : https://github.com/vajradog
526
-
527
- //! author : Tin Aung Lin : https://github.com/thanyawzinmin
528
-
529
- //! author : Tomer Cohen : https://github.com/tomer
530
-
531
- //! author : Ulrik Nielsen : https://github.com/mrbase
532
-
533
- //! author : Valentin Agachi : https://github.com/avaly
534
-
535
- //! author : Vivek Athalye : https://github.com/vnathalye
536
-
537
- //! author : Vlad Gurdiga : https://github.com/gurdiga
538
-
539
- //! author : Weldan Jamili : https://github.com/weldan
540
-
541
- //! author : Werner Mollentze : https://github.com/wernerm
542
-
543
- //! author : Zack : https://github.com/ZackVision
544
-
545
- //! author : Zeno Zeng : https://github.com/zenozeng
546
-
547
- //! author : bustta : https://github.com/bustta
548
-
549
- //! author : chrisrodz : https://github.com/chrisrodz
550
-
551
- //! author : forabi https://github.com/forabi
552
-
553
- //! author : https://github.com/ryangreaves
554
-
555
- //! author : lluchs : https://github.com/lluchs
556
-
557
- //! author : mweimerskirch : https://github.com/mweimerskirch
558
-
559
- //! author : petrbela : https://github.com/petrbela
560
-
561
- //! author : sschueller : https://github.com/sschueller
562
-
563
- //! author : suupic : https://github.com/suupic
564
-
565
- //! author : suvash : https://github.com/suvash
566
-
567
- //! author : topchiyev : https://github.com/topchiyev
568
-
569
- //! author : uu109 : https://github.com/uu109
570
-
571
- //! author : xfh : https://github.com/xfh
572
-
573
- //! author: Marco : https://github.com/Manfre98
574
-
575
- //! author: Mattia Larentis: https://github.com/nostalgiaz
576
-
577
- //! author: Menelion Elensúle: https://github.com/Oire
578
-
579
- //! author: boyaq : https://github.com/boyaq
580
-
581
- //! authors : Bård Rolstad Henriksen : https://github.com/karamell
582
-
583
- //! authors : Erhan Gundogan : https://github.com/erhangundogan,
584
-
585
- //! authors : Espen Hovlandsdal : https://github.com/rexxars
586
-
587
- //! authors : Nurlan Rakhimzhanov : https://github.com/nurlan
588
-
589
- //! authors : Tim Wood, Iskren Chernev, Moment.js contributors
590
-
591
- //! authors : https://github.com/mechuwind
592
-
593
- //! based on (hr) translation by Bojan Marković
594
-
595
- //! based on work of petrbela : https://github.com/petrbela
596
-
597
- //! comment : Vivakvo corrected the translation by colindean and miestasmia
598
-
599
- //! comment : miestasmia corrected the translation by colindean
600
-
601
- //! improvements : Illimar Tambek : https://github.com/ragulka
602
-
603
- //! license : MIT
604
-
605
- //! locale : Arabic (Tunisia) [ar-tn]
606
-
607
- //! locale : Afrikaans [af]
608
-
609
- //! locale : Albanian [sq]
610
-
611
- //! locale : Arabic (Algeria) [ar-dz]
612
-
613
- //! locale : Arabic (Kuwait) [ar-kw]
614
-
615
- //! locale : Arabic (Libya) [ar-ly]
616
-
617
- //! locale : Arabic (Morocco) [ar-ma]
618
-
619
- //! locale : Arabic (Saudi Arabia) [ar-sa]
620
-
621
- //! locale : Arabic [ar]
622
-
623
- //! locale : Armenian [hy-am]
624
-
625
- //! locale : Azerbaijani [az]
626
-
627
- //! locale : Bambara [bm]
628
-
629
- //! locale : Basque [eu]
630
-
631
- //! locale : Bengali (Bangladesh) [bn-bd]
632
-
633
- //! locale : Bengali [bn]
634
-
635
- //! locale : Bosnian [bs]
636
-
637
- //! locale : Breton [br]
638
-
639
- //! locale : Bulgarian [bg]
640
-
641
- //! locale : Burmese [my]
642
-
643
- //! locale : Cambodian [km]
644
-
645
- //! locale : Catalan [ca]
646
-
647
- //! locale : Central Atlas Tamazight Latin [tzm-latn]
648
-
649
- //! locale : Central Atlas Tamazight [tzm]
650
-
651
- //! locale : Chinese (China) [zh-cn]
652
-
653
- //! locale : Chinese (Hong Kong) [zh-hk]
654
-
655
- //! locale : Chinese (Macau) [zh-mo]
656
-
657
- //! locale : Chinese (Taiwan) [zh-tw]
658
-
659
- //! locale : Chuvash [cv]
660
-
661
- //! locale : Croatian [hr]
662
-
663
- //! locale : Czech [cs]
664
-
665
- //! locale : Danish [da]
666
-
667
- //! locale : Dutch (Belgium) [nl-be]
668
-
669
- //! locale : Dutch [nl]
670
-
671
- //! locale : English (Australia) [en-au]
672
-
673
- //! locale : English (Canada) [en-ca]
674
-
675
- //! locale : English (India) [en-in]
676
-
677
- //! locale : English (Ireland) [en-ie]
678
-
679
- //! locale : English (Israel) [en-il]
680
-
681
- //! locale : English (New Zealand) [en-nz]
682
-
683
- //! locale : English (Singapore) [en-sg]
684
-
685
- //! locale : English (United Kingdom) [en-gb]
686
-
687
- //! locale : Esperanto [eo]
688
-
689
- //! locale : Estonian [et]
690
-
691
- //! locale : Faroese [fo]
692
-
693
- //! locale : Filipino [fil]
694
-
695
- //! locale : Finnish [fi]
696
-
697
- //! locale : French (Canada) [fr-ca]
698
-
699
- //! locale : French (Switzerland) [fr-ch]
700
-
701
- //! locale : French [fr]
702
-
703
- //! locale : Frisian [fy]
704
-
705
- //! locale : Galician [gl]
706
-
707
- //! locale : Georgian [ka]
708
-
709
- //! locale : German (Austria) [de-at]
710
-
711
- //! locale : German (Switzerland) [de-ch]
712
-
713
- //! locale : German [de]
714
-
715
- //! locale : Gujarati [gu]
716
-
717
- //! locale : Hebrew [he]
718
-
719
- //! locale : Hindi [hi]
720
-
721
- //! locale : Hungarian [hu]
722
-
723
- //! locale : Icelandic [is]
724
-
725
- //! locale : Indonesian [id]
726
-
727
- //! locale : Italian (Switzerland) [it-ch]
728
-
729
- //! locale : Italian [it]
730
-
731
- //! locale : Japanese [ja]
732
-
733
- //! locale : Javanese [jv]
734
-
735
- //! locale : Kannada [kn]
736
-
737
- //! locale : Kazakh [kk]
738
-
739
- //! locale : Klingon [tlh]
740
-
741
- //! locale : Konkani Devanagari script [gom-deva]
742
-
743
- //! locale : Konkani Latin script [gom-latn]
744
-
745
- //! locale : Korean [ko]
746
-
747
- //! locale : Kurdish [ku]
748
-
749
- //! locale : Kyrgyz [ky]
750
-
751
- //! locale : Lao [lo]
752
-
753
- //! locale : Latvian [lv]
754
-
755
- //! locale : Lithuanian [lt]
756
-
757
- //! locale : Luxembourgish [lb]
758
-
759
- //! locale : Macedonian [mk]
760
-
761
- //! locale : Malay [ms-my]
762
-
763
- //! locale : Malay [ms]
764
-
765
- //! locale : Malayalam [ml]
766
-
767
- //! locale : Maldivian [dv]
768
-
769
- //! locale : Maltese (Malta) [mt]
770
-
771
- //! locale : Maori [mi]
772
-
773
- //! locale : Marathi [mr]
774
-
775
- //! locale : Mongolian [mn]
776
-
777
- //! locale : Montenegrin [me]
778
-
779
- //! locale : Nepalese [ne]
780
-
781
- //! locale : Northern Sami [se]
782
-
783
- //! locale : Norwegian Bokmål [nb]
784
-
785
- //! locale : Nynorsk [nn]
786
-
787
- //! locale : Occitan, lengadocian dialecte [oc-lnc]
788
-
789
- //! locale : Persian [fa]
790
-
791
- //! locale : Polish [pl]
792
-
793
- //! locale : Portuguese (Brazil) [pt-br]
794
-
795
- //! locale : Portuguese [pt]
796
-
797
- //! locale : Pseudo [x-pseudo]
798
-
799
- //! locale : Punjabi (India) [pa-in]
800
-
801
- //! locale : Romanian [ro]
802
-
803
- //! locale : Serbian Cyrillic [sr-cyrl]
804
-
805
- //! locale : Serbian [sr]
806
-
807
- //! locale : Sindhi [sd]
808
-
809
- //! locale : Sinhalese [si]
810
-
811
- //! locale : Slovak [sk]
812
-
813
- //! locale : Slovenian [sl]
814
-
815
- //! locale : Spanish (Dominican Republic) [es-do]
816
-
817
- //! locale : Spanish (Mexico) [es-mx]
818
-
819
- //! locale : Spanish (United States) [es-us]
820
-
821
- //! locale : Spanish [es]
822
-
823
- //! locale : Swahili [sw]
824
-
825
- //! locale : Swedish [sv]
826
-
827
- //! locale : Tagalog (Philippines) [tl-ph]
828
-
829
- //! locale : Tajik [tg]
830
-
831
- //! locale : Talossan [tzl]
832
-
833
- //! locale : Tamil [ta]
834
-
835
- //! locale : Telugu [te]
836
-
837
- //! locale : Tetun Dili (East Timor) [tet]
838
-
839
- //! locale : Thai [th]
840
-
841
- //! locale : Tibetan [bo]
842
-
843
- //! locale : Turkish [tr]
844
-
845
- //! locale : Turkmen [tk]
846
-
847
- //! locale : Urdu [ur]
848
-
849
- //! locale : Uyghur (China) [ug-cn]
850
-
851
- //! locale : Uzbek Latin [uz-latn]
852
-
853
- //! locale : Uzbek [uz]
854
-
855
- //! locale : Vietnamese [vi]
856
-
857
- //! locale : Welsh [cy]
858
-
859
- //! locale : Yoruba Nigeria [yo]
860
-
861
- //! locale : siSwati [ss]
862
-
863
- //! moment.js
864
-
865
- //! moment.js locale configuration
866
-
867
- //! momentjs.com
868
-
869
- //! note : DEPRECATED, the correct one is [ms]
870
-
871
- //! reference: http://id.wikisource.org/wiki/Pedoman_Umum_Ejaan_Bahasa_Indonesia_yang_Disempurnakan
872
-
873
- //! reference: http://jv.wikipedia.org/wiki/Basa_Jawa
874
-
875
- //! version : 2.29.4
876
-
877
- //!this.rowClick, // 企管的是点击就选中行,咱也一样