@indfnd/common-pro 1.0.99 → 1.0.101

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