@indfnd/common-pro 1.0.1 → 1.0.2

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