ext_yarn 0.1.0
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.
- checksums.yaml +7 -0
- data/.gitignore +125 -0
- data/.ruby-version +1 -0
- data/Gemfile +21 -0
- data/Gemfile.lock +78 -0
- data/MIT-LICENSE +20 -0
- data/README.md +3 -0
- data/bin/yarn +12 -0
- data/ext_yarn.gemspec +23 -0
- data/lib/ext_yarn/engine.rb +21 -0
- data/lib/ext_yarn/version.rb +3 -0
- data/lib/ext_yarn.rb +5 -0
- data/node_modules/.yarn-integrity +64 -0
- data/node_modules/bootstrap-sass/LICENSE +22 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/affix.js +162 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/alert.js +94 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/button.js +125 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/carousel.js +237 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/collapse.js +212 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/dropdown.js +165 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/modal.js +339 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/popover.js +108 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/scrollspy.js +172 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/tab.js +155 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/tooltip.js +520 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/transition.js +59 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap-sprockets.js +12 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap.js +2377 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/_bootstrap-compass.scss +9 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/_bootstrap-mincer.scss +19 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/_bootstrap-sprockets.scss +9 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/_bootstrap.scss +56 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_alerts.scss +73 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_badges.scss +68 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_breadcrumbs.scss +28 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_button-groups.scss +244 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_buttons.scss +168 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_carousel.scss +270 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_close.scss +36 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_code.scss +69 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_component-animations.scss +37 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_dropdowns.scss +216 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_forms.scss +617 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_glyphicons.scss +307 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_grid.scss +84 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_input-groups.scss +171 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_jumbotron.scss +54 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_labels.scss +66 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_list-group.scss +130 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_media.scss +66 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_mixins.scss +40 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_modals.scss +150 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss +662 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navs.scss +242 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_normalize.scss +424 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_pager.scss +54 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_pagination.scss +89 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_panels.scss +271 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_popovers.scss +131 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_print.scss +101 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_progress-bars.scss +87 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_responsive-embed.scss +35 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_responsive-utilities.scss +179 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_scaffolding.scss +161 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_tables.scss +234 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_theme.scss +291 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_thumbnails.scss +38 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_tooltip.scss +101 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_type.scss +298 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_utilities.scss +55 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss +874 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_wells.scss +29 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_alerts.scss +14 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_background-variant.scss +12 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_border-radius.scss +18 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_buttons.scss +65 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_center-block.scss +7 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_clearfix.scss +22 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_forms.scss +88 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_gradients.scss +58 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +81 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_grid.scss +122 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_hide-text.scss +21 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_image.scss +33 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_labels.scss +12 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_list-group.scss +32 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +10 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss +9 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_opacity.scss +8 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_pagination.scss +24 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_panels.scss +24 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_progress-bar.scss +10 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_reset-filter.scss +8 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_reset-text.scss +18 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_resize.scss +6 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss +21 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_size.scss +10 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_tab-focus.scss +9 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_table-row.scss +28 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +12 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_text-overflow.scss +8 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss +222 -0
- data/node_modules/bootstrap-sass/package.json +44 -0
- data/node_modules/bootswatch/cerulean/_bootswatch.scss +131 -0
- data/node_modules/bootswatch/cerulean/_variables.scss +870 -0
- data/node_modules/bootswatch/cosmo/_bootswatch.scss +262 -0
- data/node_modules/bootswatch/cosmo/_variables.scss +870 -0
- data/node_modules/bootswatch/cyborg/_bootswatch.scss +243 -0
- data/node_modules/bootswatch/cyborg/_variables.scss +870 -0
- data/node_modules/bootswatch/darkly/_bootswatch.scss +351 -0
- data/node_modules/bootswatch/darkly/_variables.scss +870 -0
- data/node_modules/bootswatch/flatly/_bootswatch.scss +330 -0
- data/node_modules/bootswatch/flatly/_variables.scss +870 -0
- data/node_modules/bootswatch/journal/_bootswatch.scss +145 -0
- data/node_modules/bootswatch/journal/_variables.scss +870 -0
- data/node_modules/bootswatch/lumen/_bootswatch.scss +523 -0
- data/node_modules/bootswatch/lumen/_variables.scss +870 -0
- data/node_modules/bootswatch/package.json +26 -0
- data/node_modules/bootswatch/paper/_bootswatch.scss +620 -0
- data/node_modules/bootswatch/paper/_variables.scss +870 -0
- data/node_modules/bootswatch/readable/_bootswatch.scss +183 -0
- data/node_modules/bootswatch/readable/_variables.scss +870 -0
- data/node_modules/bootswatch/sandstone/_bootswatch.scss +196 -0
- data/node_modules/bootswatch/sandstone/_variables.scss +870 -0
- data/node_modules/bootswatch/simplex/_bootswatch.scss +170 -0
- data/node_modules/bootswatch/simplex/_variables.scss +870 -0
- data/node_modules/bootswatch/slate/_bootswatch.scss +448 -0
- data/node_modules/bootswatch/slate/_variables.scss +870 -0
- data/node_modules/bootswatch/spacelab/_bootswatch.scss +142 -0
- data/node_modules/bootswatch/spacelab/_variables.scss +870 -0
- data/node_modules/bootswatch/superhero/_bootswatch.scss +360 -0
- data/node_modules/bootswatch/superhero/_variables.scss +870 -0
- data/node_modules/bootswatch/united/_bootswatch.scss +56 -0
- data/node_modules/bootswatch/united/_variables.scss +870 -0
- data/node_modules/bootswatch/yeti/_bootswatch.scss +445 -0
- data/node_modules/bootswatch/yeti/_variables.scss +870 -0
- data/node_modules/chart.js/dist/Chart.bundle.js +18919 -0
- data/node_modules/chart.js/dist/Chart.js +14384 -0
- data/node_modules/chart.js/package.json +57 -0
- data/node_modules/chartkick/chartkick.js +1853 -0
- data/node_modules/chartkick/package.json +25 -0
- data/node_modules/eonasdan-bootstrap-datetimepicker/package.json +51 -0
- data/node_modules/eonasdan-bootstrap-datetimepicker/src/js/bootstrap-datetimepicker.js +2636 -0
- data/node_modules/eonasdan-bootstrap-datetimepicker/src/sass/_bootstrap-datetimepicker.scss +344 -0
- data/node_modules/eonasdan-bootstrap-datetimepicker/src/sass/bootstrap-datetimepicker-build.scss +16 -0
- data/node_modules/file-saver/FileSaver.js +188 -0
- data/node_modules/file-saver/package.json +28 -0
- data/node_modules/font-awesome-sass/LICENSE.txt +22 -0
- data/node_modules/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.eot +0 -0
- data/node_modules/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.svg +2671 -0
- data/node_modules/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.ttf +0 -0
- data/node_modules/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.woff +0 -0
- data/node_modules/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.woff2 +0 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/_font-awesome-compass.scss +5 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/_font-awesome-sprockets.scss +5 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/_font-awesome.scss +18 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_animated.scss +34 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_bordered-pulled.scss +25 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_core.scss +12 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_fixed-width.scss +6 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_icons.scss +789 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_larger.scss +13 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_list.scss +19 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_mixins.scss +60 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_path.scss +14 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_rotated-flipped.scss +20 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_screen-reader.scss +5 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_stacked.scss +20 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_variables.scss +802 -0
- data/node_modules/font-awesome-sass/package.json +19 -0
- data/node_modules/jquery/dist/jquery.js +10253 -0
- data/node_modules/jquery/dist/jquery.slim.js +8160 -0
- data/node_modules/jquery/package.json +97 -0
- data/node_modules/jquery-pjax/jquery.pjax.js +903 -0
- data/node_modules/jquery-pjax/package.json +18 -0
- data/node_modules/jquery-ui/package.json +74 -0
- data/node_modules/jquery-ui/themes/base/accordion.css +23 -0
- data/node_modules/jquery-ui/themes/base/all.css +12 -0
- data/node_modules/jquery-ui/themes/base/autocomplete.css +16 -0
- data/node_modules/jquery-ui/themes/base/base.css +30 -0
- data/node_modules/jquery-ui/themes/base/button.css +82 -0
- data/node_modules/jquery-ui/themes/base/checkboxradio.css +34 -0
- data/node_modules/jquery-ui/themes/base/controlgroup.css +65 -0
- data/node_modules/jquery-ui/themes/base/core.css +97 -0
- data/node_modules/jquery-ui/themes/base/datepicker.css +185 -0
- data/node_modules/jquery-ui/themes/base/dialog.css +101 -0
- data/node_modules/jquery-ui/themes/base/draggable.css +12 -0
- data/node_modules/jquery-ui/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/node_modules/jquery-ui/themes/base/images/ui-icons_444444_256x240.png +0 -0
- data/node_modules/jquery-ui/themes/base/images/ui-icons_555555_256x240.png +0 -0
- data/node_modules/jquery-ui/themes/base/images/ui-icons_777620_256x240.png +0 -0
- data/node_modules/jquery-ui/themes/base/images/ui-icons_777777_256x240.png +0 -0
- data/node_modules/jquery-ui/themes/base/images/ui-icons_cc0000_256x240.png +0 -0
- data/node_modules/jquery-ui/themes/base/images/ui-icons_ffffff_256x240.png +0 -0
- data/node_modules/jquery-ui/themes/base/menu.css +64 -0
- data/node_modules/jquery-ui/themes/base/progressbar.css +28 -0
- data/node_modules/jquery-ui/themes/base/resizable.css +78 -0
- data/node_modules/jquery-ui/themes/base/selectable.css +17 -0
- data/node_modules/jquery-ui/themes/base/selectmenu.css +50 -0
- data/node_modules/jquery-ui/themes/base/slider.css +75 -0
- data/node_modules/jquery-ui/themes/base/sortable.css +12 -0
- data/node_modules/jquery-ui/themes/base/spinner.css +52 -0
- data/node_modules/jquery-ui/themes/base/tabs.css +51 -0
- data/node_modules/jquery-ui/themes/base/theme.css +443 -0
- data/node_modules/jquery-ui/themes/base/tooltip.css +19 -0
- data/node_modules/jquery-ui/ui/core.js +21 -0
- data/node_modules/jquery-ui/ui/data.js +39 -0
- data/node_modules/jquery-ui/ui/disable-selection.js +46 -0
- data/node_modules/jquery-ui/ui/effect.js +1635 -0
- data/node_modules/jquery-ui/ui/effects/effect-blind.js +70 -0
- data/node_modules/jquery-ui/ui/effects/effect-bounce.js +110 -0
- data/node_modules/jquery-ui/ui/effects/effect-clip.js +65 -0
- data/node_modules/jquery-ui/ui/effects/effect-drop.js +69 -0
- data/node_modules/jquery-ui/ui/effects/effect-explode.js +111 -0
- data/node_modules/jquery-ui/ui/effects/effect-fade.js +47 -0
- data/node_modules/jquery-ui/ui/effects/effect-fold.js +89 -0
- data/node_modules/jquery-ui/ui/effects/effect-highlight.js +57 -0
- data/node_modules/jquery-ui/ui/effects/effect-puff.js +42 -0
- data/node_modules/jquery-ui/ui/effects/effect-pulsate.js +64 -0
- data/node_modules/jquery-ui/ui/effects/effect-scale.js +56 -0
- data/node_modules/jquery-ui/ui/effects/effect-shake.js +74 -0
- data/node_modules/jquery-ui/ui/effects/effect-size.js +191 -0
- data/node_modules/jquery-ui/ui/effects/effect-slide.js +76 -0
- data/node_modules/jquery-ui/ui/effects/effect-transfer.js +40 -0
- data/node_modules/jquery-ui/ui/escape-selector.js +21 -0
- data/node_modules/jquery-ui/ui/focusable.js +84 -0
- data/node_modules/jquery-ui/ui/form-reset-mixin.js +77 -0
- data/node_modules/jquery-ui/ui/form.js +20 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-af.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ar-DZ.js +39 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ar.js +39 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-az.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-be.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-bg.js +38 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-bs.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ca.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-cs.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-cy-GB.js +45 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-da.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-de.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-el.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-en-AU.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-en-GB.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-en-NZ.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-eo.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-es.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-et.js +45 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-eu.js +36 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-fa.js +73 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-fi.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-fo.js +45 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-fr-CA.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-fr-CH.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-fr.js +39 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-gl.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-he.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-hi.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-hr.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-hu.js +36 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-hy.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-id.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-is.js +45 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-it-CH.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-it.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ja.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ka.js +48 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-kk.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-km.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ko.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ky.js +38 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-lb.js +45 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-lt.js +45 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-lv.js +45 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-mk.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ml.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ms.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-nb.js +49 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-nl-BE.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-nl.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-nn.js +49 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-no.js +50 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-pl.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-pt-BR.js +45 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-pt.js +44 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-rm.js +61 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ro.js +40 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ru.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-sk.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-sl.js +38 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-sq.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-sr-SR.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-sr.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-sv.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ta.js +53 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-th.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-tj.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-tr.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-uk.js +38 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-vi.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-zh-CN.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-zh-HK.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-zh-TW.js +37 -0
- data/node_modules/jquery-ui/ui/ie.js +15 -0
- data/node_modules/jquery-ui/ui/jquery-1-7.js +89 -0
- data/node_modules/jquery-ui/ui/keycode.js +45 -0
- data/node_modules/jquery-ui/ui/labels.js +62 -0
- data/node_modules/jquery-ui/ui/plugin.js +44 -0
- data/node_modules/jquery-ui/ui/position.js +498 -0
- data/node_modules/jquery-ui/ui/safe-active-element.js +40 -0
- data/node_modules/jquery-ui/ui/safe-blur.js +21 -0
- data/node_modules/jquery-ui/ui/scroll-parent.js +45 -0
- data/node_modules/jquery-ui/ui/tabbable.js +35 -0
- data/node_modules/jquery-ui/ui/unique-id.js +49 -0
- data/node_modules/jquery-ui/ui/version.js +17 -0
- data/node_modules/jquery-ui/ui/widget.js +733 -0
- data/node_modules/jquery-ui/ui/widgets/accordion.js +613 -0
- data/node_modules/jquery-ui/ui/widgets/autocomplete.js +682 -0
- data/node_modules/jquery-ui/ui/widgets/button.js +386 -0
- data/node_modules/jquery-ui/ui/widgets/checkboxradio.js +286 -0
- data/node_modules/jquery-ui/ui/widgets/controlgroup.js +298 -0
- data/node_modules/jquery-ui/ui/widgets/datepicker.js +2120 -0
- data/node_modules/jquery-ui/ui/widgets/dialog.js +940 -0
- data/node_modules/jquery-ui/ui/widgets/draggable.js +1250 -0
- data/node_modules/jquery-ui/ui/widgets/droppable.js +497 -0
- data/node_modules/jquery-ui/ui/widgets/menu.js +673 -0
- data/node_modules/jquery-ui/ui/widgets/mouse.js +226 -0
- data/node_modules/jquery-ui/ui/widgets/progressbar.js +178 -0
- data/node_modules/jquery-ui/ui/widgets/resizable.js +1201 -0
- data/node_modules/jquery-ui/ui/widgets/selectable.js +310 -0
- data/node_modules/jquery-ui/ui/widgets/selectmenu.js +687 -0
- data/node_modules/jquery-ui/ui/widgets/slider.js +752 -0
- data/node_modules/jquery-ui/ui/widgets/sortable.js +1554 -0
- data/node_modules/jquery-ui/ui/widgets/spinner.js +575 -0
- data/node_modules/jquery-ui/ui/widgets/tabs.js +924 -0
- data/node_modules/jquery-ui/ui/widgets/tooltip.js +520 -0
- data/node_modules/jquery-ujs/package.json +26 -0
- data/node_modules/jquery-ujs/src/rails.js +555 -0
- data/node_modules/js-cookie/package.json +49 -0
- data/node_modules/js-cookie/src/js.cookie.js +165 -0
- data/node_modules/jstz/dist/jstz.js +1428 -0
- data/node_modules/jstz/package.json +57 -0
- data/node_modules/lodash/core.js +3836 -0
- data/node_modules/lodash/lodash.js +17084 -0
- data/node_modules/lodash/package.json +17 -0
- data/node_modules/moment/locale/af.js +74 -0
- data/node_modules/moment/locale/ar-dz.js +60 -0
- data/node_modules/moment/locale/ar-kw.js +60 -0
- data/node_modules/moment/locale/ar-ly.js +127 -0
- data/node_modules/moment/locale/ar-ma.js +61 -0
- data/node_modules/moment/locale/ar-sa.js +106 -0
- data/node_modules/moment/locale/ar-tn.js +60 -0
- data/node_modules/moment/locale/ar.js +143 -0
- data/node_modules/moment/locale/az.js +106 -0
- data/node_modules/moment/locale/be.js +135 -0
- data/node_modules/moment/locale/bg.js +91 -0
- data/node_modules/moment/locale/bm.js +60 -0
- data/node_modules/moment/locale/bn.js +120 -0
- data/node_modules/moment/locale/bo.js +120 -0
- data/node_modules/moment/locale/br.js +109 -0
- data/node_modules/moment/locale/bs.js +153 -0
- data/node_modules/moment/locale/ca.js +89 -0
- data/node_modules/moment/locale/cs.js +180 -0
- data/node_modules/moment/locale/cv.js +64 -0
- data/node_modules/moment/locale/cy.js +82 -0
- data/node_modules/moment/locale/da.js +61 -0
- data/node_modules/moment/locale/de-at.js +80 -0
- data/node_modules/moment/locale/de-ch.js +79 -0
- data/node_modules/moment/locale/de.js +79 -0
- data/node_modules/moment/locale/dv.js +101 -0
- data/node_modules/moment/locale/el.js +101 -0
- data/node_modules/moment/locale/en-au.js +68 -0
- data/node_modules/moment/locale/en-ca.js +64 -0
- data/node_modules/moment/locale/en-gb.js +68 -0
- data/node_modules/moment/locale/en-ie.js +68 -0
- data/node_modules/moment/locale/en-nz.js +68 -0
- data/node_modules/moment/locale/eo.js +74 -0
- data/node_modules/moment/locale/es-do.js +92 -0
- data/node_modules/moment/locale/es-us.js +84 -0
- data/node_modules/moment/locale/es.js +93 -0
- data/node_modules/moment/locale/et.js +82 -0
- data/node_modules/moment/locale/eu.js +67 -0
- data/node_modules/moment/locale/fa.js +108 -0
- data/node_modules/moment/locale/fi.js +110 -0
- data/node_modules/moment/locale/fo.js +61 -0
- data/node_modules/moment/locale/fr-ca.js +75 -0
- data/node_modules/moment/locale/fr-ch.js +79 -0
- data/node_modules/moment/locale/fr.js +84 -0
- data/node_modules/moment/locale/fy.js +76 -0
- data/node_modules/moment/locale/gd.js +77 -0
- data/node_modules/moment/locale/gl.js +78 -0
- data/node_modules/moment/locale/gom-latn.js +124 -0
- data/node_modules/moment/locale/gu.js +125 -0
- data/node_modules/moment/locale/he.js +100 -0
- data/node_modules/moment/locale/hi.js +125 -0
- data/node_modules/moment/locale/hr.js +155 -0
- data/node_modules/moment/locale/hu.js +111 -0
- data/node_modules/moment/locale/hy-am.js +96 -0
- data/node_modules/moment/locale/id.js +84 -0
- data/node_modules/moment/locale/is.js +133 -0
- data/node_modules/moment/locale/it.js +71 -0
- data/node_modules/moment/locale/ja.js +81 -0
- data/node_modules/moment/locale/jv.js +84 -0
- data/node_modules/moment/locale/ka.js +90 -0
- data/node_modules/moment/locale/kk.js +88 -0
- data/node_modules/moment/locale/km.js +59 -0
- data/node_modules/moment/locale/kn.js +127 -0
- data/node_modules/moment/locale/ko.js +83 -0
- data/node_modules/moment/locale/ky.js +89 -0
- data/node_modules/moment/locale/lb.js +138 -0
- data/node_modules/moment/locale/lo.js +71 -0
- data/node_modules/moment/locale/lt.js +119 -0
- data/node_modules/moment/locale/lv.js +99 -0
- data/node_modules/moment/locale/me.js +113 -0
- data/node_modules/moment/locale/mi.js +65 -0
- data/node_modules/moment/locale/mk.js +91 -0
- data/node_modules/moment/locale/ml.js +82 -0
- data/node_modules/moment/locale/mr.js +162 -0
- data/node_modules/moment/locale/ms-my.js +84 -0
- data/node_modules/moment/locale/ms.js +83 -0
- data/node_modules/moment/locale/mt.js +61 -0
- data/node_modules/moment/locale/my.js +97 -0
- data/node_modules/moment/locale/nb.js +64 -0
- data/node_modules/moment/locale/ne.js +124 -0
- data/node_modules/moment/locale/nl-be.js +89 -0
- data/node_modules/moment/locale/nl.js +89 -0
- data/node_modules/moment/locale/nn.js +61 -0
- data/node_modules/moment/locale/pa-in.js +125 -0
- data/node_modules/moment/locale/pl.js +127 -0
- data/node_modules/moment/locale/pt-br.js +62 -0
- data/node_modules/moment/locale/pt.js +66 -0
- data/node_modules/moment/locale/ro.js +77 -0
- data/node_modules/moment/locale/ru.js +185 -0
- data/node_modules/moment/locale/sd.js +99 -0
- data/node_modules/moment/locale/se.js +62 -0
- data/node_modules/moment/locale/si.js +72 -0
- data/node_modules/moment/locale/sk.js +158 -0
- data/node_modules/moment/locale/sl.js +174 -0
- data/node_modules/moment/locale/sq.js +71 -0
- data/node_modules/moment/locale/sr-cyrl.js +112 -0
- data/node_modules/moment/locale/sr.js +112 -0
- data/node_modules/moment/locale/ss.js +90 -0
- data/node_modules/moment/locale/sv.js +70 -0
- data/node_modules/moment/locale/sw.js +60 -0
- data/node_modules/moment/locale/ta.js +131 -0
- data/node_modules/moment/locale/te.js +90 -0
- data/node_modules/moment/locale/tet.js +69 -0
- data/node_modules/moment/locale/th.js +68 -0
- data/node_modules/moment/locale/tl-ph.js +63 -0
- data/node_modules/moment/locale/tlh.js +123 -0
- data/node_modules/moment/locale/tr.js +91 -0
- data/node_modules/moment/locale/tzl.js +93 -0
- data/node_modules/moment/locale/tzm-latn.js +59 -0
- data/node_modules/moment/locale/tzm.js +59 -0
- data/node_modules/moment/locale/uk.js +153 -0
- data/node_modules/moment/locale/ur.js +100 -0
- data/node_modules/moment/locale/uz-latn.js +59 -0
- data/node_modules/moment/locale/uz.js +59 -0
- data/node_modules/moment/locale/vi.js +80 -0
- data/node_modules/moment/locale/x-pseudo.js +69 -0
- data/node_modules/moment/locale/yo.js +61 -0
- data/node_modules/moment/locale/zh-cn.js +112 -0
- data/node_modules/moment/locale/zh-hk.js +106 -0
- data/node_modules/moment/locale/zh-tw.js +105 -0
- data/node_modules/moment/min/locales.js +9769 -0
- data/node_modules/moment/min/moment-with-locales.js +14289 -0
- data/node_modules/moment/moment.js +4535 -0
- data/node_modules/moment/package.json +99 -0
- data/node_modules/moment-timezone/builds/moment-timezone-with-data-2012-2022.js +1204 -0
- data/node_modules/moment-timezone/builds/moment-timezone-with-data.js +1204 -0
- data/node_modules/moment-timezone/moment-timezone-utils.js +316 -0
- data/node_modules/moment-timezone/moment-timezone.js +605 -0
- data/node_modules/moment-timezone/package.json +50 -0
- data/node_modules/nprogress/nprogress.css +74 -0
- data/node_modules/nprogress/nprogress.js +480 -0
- data/node_modules/nprogress/package.json +47 -0
- data/node_modules/nprogress/support/extras.css +4 -0
- data/node_modules/roboto-fontface/css/mixins.scss +36 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-black-italic.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-black.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-bold-italic.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-bold.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-light-italic.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-light.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-medium-italic.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-medium.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-regular-italic.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-regular.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-thin-italic.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-thin.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface.scss +12 -0
- data/node_modules/roboto-fontface/css/roboto-condensed/sass/roboto-condensed-fontface-bold-italic.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-condensed/sass/roboto-condensed-fontface-bold.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-condensed/sass/roboto-condensed-fontface-light-italic.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-condensed/sass/roboto-condensed-fontface-light.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-condensed/sass/roboto-condensed-fontface-regular-italic.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-condensed/sass/roboto-condensed-fontface-regular.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-condensed/sass/roboto-condensed-fontface.scss +6 -0
- data/node_modules/roboto-fontface/css/roboto-slab/sass/roboto-slab-fontface-bold.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-slab/sass/roboto-slab-fontface-light.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-slab/sass/roboto-slab-fontface-regular.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-slab/sass/roboto-slab-fontface-thin.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-slab/sass/roboto-slab-fontface.scss +4 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Black.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Black.svg +10968 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Black.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Black.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Black.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BlackItalic.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BlackItalic.svg +11086 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BlackItalic.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BlackItalic.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BlackItalic.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Bold.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Bold.svg +11010 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Bold.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Bold.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Bold.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BoldItalic.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BoldItalic.svg +11096 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BoldItalic.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BoldItalic.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BoldItalic.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Light.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Light.svg +10564 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Light.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Light.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Light.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-LightItalic.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-LightItalic.svg +10646 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-LightItalic.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-LightItalic.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-LightItalic.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Medium.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Medium.svg +10999 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Medium.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Medium.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Medium.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-MediumItalic.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-MediumItalic.svg +11100 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-MediumItalic.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-MediumItalic.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-MediumItalic.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Regular.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Regular.svg +10520 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Regular.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Regular.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Regular.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-RegularItalic.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-RegularItalic.svg +10629 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-RegularItalic.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-RegularItalic.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-RegularItalic.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Thin.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Thin.svg +10617 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Thin.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Thin.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Thin.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-ThinItalic.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-ThinItalic.svg +10726 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-ThinItalic.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-ThinItalic.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-ThinItalic.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Bold.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Bold.svg +643 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Bold.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Bold.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Bold.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.svg +643 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Light.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Light.svg +643 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Light.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Light.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Light.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-LightItalic.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-LightItalic.svg +643 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-LightItalic.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-LightItalic.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-LightItalic.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Regular.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Regular.svg +644 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Regular.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Regular.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Regular.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.svg +644 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Bold.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Bold.svg +679 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Bold.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Bold.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Bold.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Light.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Light.svg +678 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Light.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Light.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Light.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Regular.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Regular.svg +678 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Regular.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Regular.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Regular.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Thin.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Thin.svg +678 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Thin.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Thin.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Thin.woff2 +0 -0
- data/node_modules/roboto-fontface/package.json +28 -0
- data/node_modules/signature_pad/dist/signature_pad.js +610 -0
- data/node_modules/signature_pad/package.json +41 -0
- data/package.json +25 -0
- data/yarn.lock +126 -0
- metadata +708 -0
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
//! moment.js locale configuration
|
|
2
|
+
//! locale : Kannada [kn]
|
|
3
|
+
//! author : Rajeev Naik : https://github.com/rajeevnaikte
|
|
4
|
+
|
|
5
|
+
;(function (global, factory) {
|
|
6
|
+
typeof exports === 'object' && typeof module !== 'undefined'
|
|
7
|
+
&& typeof require === 'function' ? factory(require('../moment')) :
|
|
8
|
+
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
|
9
|
+
factory(global.moment)
|
|
10
|
+
}(this, (function (moment) { 'use strict';
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
var symbolMap = {
|
|
14
|
+
'1': '೧',
|
|
15
|
+
'2': '೨',
|
|
16
|
+
'3': '೩',
|
|
17
|
+
'4': '೪',
|
|
18
|
+
'5': '೫',
|
|
19
|
+
'6': '೬',
|
|
20
|
+
'7': '೭',
|
|
21
|
+
'8': '೮',
|
|
22
|
+
'9': '೯',
|
|
23
|
+
'0': '೦'
|
|
24
|
+
};
|
|
25
|
+
var numberMap = {
|
|
26
|
+
'೧': '1',
|
|
27
|
+
'೨': '2',
|
|
28
|
+
'೩': '3',
|
|
29
|
+
'೪': '4',
|
|
30
|
+
'೫': '5',
|
|
31
|
+
'೬': '6',
|
|
32
|
+
'೭': '7',
|
|
33
|
+
'೮': '8',
|
|
34
|
+
'೯': '9',
|
|
35
|
+
'೦': '0'
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
var kn = moment.defineLocale('kn', {
|
|
39
|
+
months : 'ಜನವರಿ_ಫೆಬ್ರವರಿ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂಬರ್_ಅಕ್ಟೋಬರ್_ನವೆಂಬರ್_ಡಿಸೆಂಬರ್'.split('_'),
|
|
40
|
+
monthsShort : 'ಜನ_ಫೆಬ್ರ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂಬ_ಅಕ್ಟೋಬ_ನವೆಂಬ_ಡಿಸೆಂಬ'.split('_'),
|
|
41
|
+
monthsParseExact: true,
|
|
42
|
+
weekdays : 'ಭಾನುವಾರ_ಸೋಮವಾರ_ಮಂಗಳವಾರ_ಬುಧವಾರ_ಗುರುವಾರ_ಶುಕ್ರವಾರ_ಶನಿವಾರ'.split('_'),
|
|
43
|
+
weekdaysShort : 'ಭಾನು_ಸೋಮ_ಮಂಗಳ_ಬುಧ_ಗುರು_ಶುಕ್ರ_ಶನಿ'.split('_'),
|
|
44
|
+
weekdaysMin : 'ಭಾ_ಸೋ_ಮಂ_ಬು_ಗು_ಶು_ಶ'.split('_'),
|
|
45
|
+
longDateFormat : {
|
|
46
|
+
LT : 'A h:mm',
|
|
47
|
+
LTS : 'A h:mm:ss',
|
|
48
|
+
L : 'DD/MM/YYYY',
|
|
49
|
+
LL : 'D MMMM YYYY',
|
|
50
|
+
LLL : 'D MMMM YYYY, A h:mm',
|
|
51
|
+
LLLL : 'dddd, D MMMM YYYY, A h:mm'
|
|
52
|
+
},
|
|
53
|
+
calendar : {
|
|
54
|
+
sameDay : '[ಇಂದು] LT',
|
|
55
|
+
nextDay : '[ನಾಳೆ] LT',
|
|
56
|
+
nextWeek : 'dddd, LT',
|
|
57
|
+
lastDay : '[ನಿನ್ನೆ] LT',
|
|
58
|
+
lastWeek : '[ಕೊನೆಯ] dddd, LT',
|
|
59
|
+
sameElse : 'L'
|
|
60
|
+
},
|
|
61
|
+
relativeTime : {
|
|
62
|
+
future : '%s ನಂತರ',
|
|
63
|
+
past : '%s ಹಿಂದೆ',
|
|
64
|
+
s : 'ಕೆಲವು ಕ್ಷಣಗಳು',
|
|
65
|
+
ss : '%d ಸೆಕೆಂಡುಗಳು',
|
|
66
|
+
m : 'ಒಂದು ನಿಮಿಷ',
|
|
67
|
+
mm : '%d ನಿಮಿಷ',
|
|
68
|
+
h : 'ಒಂದು ಗಂಟೆ',
|
|
69
|
+
hh : '%d ಗಂಟೆ',
|
|
70
|
+
d : 'ಒಂದು ದಿನ',
|
|
71
|
+
dd : '%d ದಿನ',
|
|
72
|
+
M : 'ಒಂದು ತಿಂಗಳು',
|
|
73
|
+
MM : '%d ತಿಂಗಳು',
|
|
74
|
+
y : 'ಒಂದು ವರ್ಷ',
|
|
75
|
+
yy : '%d ವರ್ಷ'
|
|
76
|
+
},
|
|
77
|
+
preparse: function (string) {
|
|
78
|
+
return string.replace(/[೧೨೩೪೫೬೭೮೯೦]/g, function (match) {
|
|
79
|
+
return numberMap[match];
|
|
80
|
+
});
|
|
81
|
+
},
|
|
82
|
+
postformat: function (string) {
|
|
83
|
+
return string.replace(/\d/g, function (match) {
|
|
84
|
+
return symbolMap[match];
|
|
85
|
+
});
|
|
86
|
+
},
|
|
87
|
+
meridiemParse: /ರಾತ್ರಿ|ಬೆಳಿಗ್ಗೆ|ಮಧ್ಯಾಹ್ನ|ಸಂಜೆ/,
|
|
88
|
+
meridiemHour : function (hour, meridiem) {
|
|
89
|
+
if (hour === 12) {
|
|
90
|
+
hour = 0;
|
|
91
|
+
}
|
|
92
|
+
if (meridiem === 'ರಾತ್ರಿ') {
|
|
93
|
+
return hour < 4 ? hour : hour + 12;
|
|
94
|
+
} else if (meridiem === 'ಬೆಳಿಗ್ಗೆ') {
|
|
95
|
+
return hour;
|
|
96
|
+
} else if (meridiem === 'ಮಧ್ಯಾಹ್ನ') {
|
|
97
|
+
return hour >= 10 ? hour : hour + 12;
|
|
98
|
+
} else if (meridiem === 'ಸಂಜೆ') {
|
|
99
|
+
return hour + 12;
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
meridiem : function (hour, minute, isLower) {
|
|
103
|
+
if (hour < 4) {
|
|
104
|
+
return 'ರಾತ್ರಿ';
|
|
105
|
+
} else if (hour < 10) {
|
|
106
|
+
return 'ಬೆಳಿಗ್ಗೆ';
|
|
107
|
+
} else if (hour < 17) {
|
|
108
|
+
return 'ಮಧ್ಯಾಹ್ನ';
|
|
109
|
+
} else if (hour < 20) {
|
|
110
|
+
return 'ಸಂಜೆ';
|
|
111
|
+
} else {
|
|
112
|
+
return 'ರಾತ್ರಿ';
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
dayOfMonthOrdinalParse: /\d{1,2}(ನೇ)/,
|
|
116
|
+
ordinal : function (number) {
|
|
117
|
+
return number + 'ನೇ';
|
|
118
|
+
},
|
|
119
|
+
week : {
|
|
120
|
+
dow : 0, // Sunday is the first day of the week.
|
|
121
|
+
doy : 6 // The week that contains Jan 1st is the first week of the year.
|
|
122
|
+
}
|
|
123
|
+
});
|
|
124
|
+
|
|
125
|
+
return kn;
|
|
126
|
+
|
|
127
|
+
})));
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
//! moment.js locale configuration
|
|
2
|
+
//! locale : Korean [ko]
|
|
3
|
+
//! author : Kyungwook, Park : https://github.com/kyungw00k
|
|
4
|
+
//! author : Jeeeyul Lee <jeeeyul@gmail.com>
|
|
5
|
+
|
|
6
|
+
;(function (global, factory) {
|
|
7
|
+
typeof exports === 'object' && typeof module !== 'undefined'
|
|
8
|
+
&& typeof require === 'function' ? factory(require('../moment')) :
|
|
9
|
+
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
|
10
|
+
factory(global.moment)
|
|
11
|
+
}(this, (function (moment) { 'use strict';
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
var ko = moment.defineLocale('ko', {
|
|
15
|
+
months : '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split('_'),
|
|
16
|
+
monthsShort : '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split('_'),
|
|
17
|
+
weekdays : '일요일_월요일_화요일_수요일_목요일_금요일_토요일'.split('_'),
|
|
18
|
+
weekdaysShort : '일_월_화_수_목_금_토'.split('_'),
|
|
19
|
+
weekdaysMin : '일_월_화_수_목_금_토'.split('_'),
|
|
20
|
+
longDateFormat : {
|
|
21
|
+
LT : 'A h:mm',
|
|
22
|
+
LTS : 'A h:mm:ss',
|
|
23
|
+
L : 'YYYY.MM.DD',
|
|
24
|
+
LL : 'YYYY년 MMMM D일',
|
|
25
|
+
LLL : 'YYYY년 MMMM D일 A h:mm',
|
|
26
|
+
LLLL : 'YYYY년 MMMM D일 dddd A h:mm',
|
|
27
|
+
l : 'YYYY.MM.DD',
|
|
28
|
+
ll : 'YYYY년 MMMM D일',
|
|
29
|
+
lll : 'YYYY년 MMMM D일 A h:mm',
|
|
30
|
+
llll : 'YYYY년 MMMM D일 dddd A h:mm'
|
|
31
|
+
},
|
|
32
|
+
calendar : {
|
|
33
|
+
sameDay : '오늘 LT',
|
|
34
|
+
nextDay : '내일 LT',
|
|
35
|
+
nextWeek : 'dddd LT',
|
|
36
|
+
lastDay : '어제 LT',
|
|
37
|
+
lastWeek : '지난주 dddd LT',
|
|
38
|
+
sameElse : 'L'
|
|
39
|
+
},
|
|
40
|
+
relativeTime : {
|
|
41
|
+
future : '%s 후',
|
|
42
|
+
past : '%s 전',
|
|
43
|
+
s : '몇 초',
|
|
44
|
+
ss : '%d초',
|
|
45
|
+
m : '1분',
|
|
46
|
+
mm : '%d분',
|
|
47
|
+
h : '한 시간',
|
|
48
|
+
hh : '%d시간',
|
|
49
|
+
d : '하루',
|
|
50
|
+
dd : '%d일',
|
|
51
|
+
M : '한 달',
|
|
52
|
+
MM : '%d달',
|
|
53
|
+
y : '일 년',
|
|
54
|
+
yy : '%d년'
|
|
55
|
+
},
|
|
56
|
+
dayOfMonthOrdinalParse : /\d{1,2}(일|월|주)/,
|
|
57
|
+
ordinal : function (number, period) {
|
|
58
|
+
switch (period) {
|
|
59
|
+
case 'd':
|
|
60
|
+
case 'D':
|
|
61
|
+
case 'DDD':
|
|
62
|
+
return number + '일';
|
|
63
|
+
case 'M':
|
|
64
|
+
return number + '월';
|
|
65
|
+
case 'w':
|
|
66
|
+
case 'W':
|
|
67
|
+
return number + '주';
|
|
68
|
+
default:
|
|
69
|
+
return number;
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
meridiemParse : /오전|오후/,
|
|
73
|
+
isPM : function (token) {
|
|
74
|
+
return token === '오후';
|
|
75
|
+
},
|
|
76
|
+
meridiem : function (hour, minute, isUpper) {
|
|
77
|
+
return hour < 12 ? '오전' : '오후';
|
|
78
|
+
}
|
|
79
|
+
});
|
|
80
|
+
|
|
81
|
+
return ko;
|
|
82
|
+
|
|
83
|
+
})));
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
//! moment.js locale configuration
|
|
2
|
+
//! locale : Kyrgyz [ky]
|
|
3
|
+
//! author : Chyngyz Arystan uulu : https://github.com/chyngyz
|
|
4
|
+
|
|
5
|
+
;(function (global, factory) {
|
|
6
|
+
typeof exports === 'object' && typeof module !== 'undefined'
|
|
7
|
+
&& typeof require === 'function' ? factory(require('../moment')) :
|
|
8
|
+
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
|
9
|
+
factory(global.moment)
|
|
10
|
+
}(this, (function (moment) { 'use strict';
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
var suffixes = {
|
|
15
|
+
0: '-чү',
|
|
16
|
+
1: '-чи',
|
|
17
|
+
2: '-чи',
|
|
18
|
+
3: '-чү',
|
|
19
|
+
4: '-чү',
|
|
20
|
+
5: '-чи',
|
|
21
|
+
6: '-чы',
|
|
22
|
+
7: '-чи',
|
|
23
|
+
8: '-чи',
|
|
24
|
+
9: '-чу',
|
|
25
|
+
10: '-чу',
|
|
26
|
+
20: '-чы',
|
|
27
|
+
30: '-чу',
|
|
28
|
+
40: '-чы',
|
|
29
|
+
50: '-чү',
|
|
30
|
+
60: '-чы',
|
|
31
|
+
70: '-чи',
|
|
32
|
+
80: '-чи',
|
|
33
|
+
90: '-чу',
|
|
34
|
+
100: '-чү'
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
var ky = moment.defineLocale('ky', {
|
|
38
|
+
months : 'январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь'.split('_'),
|
|
39
|
+
monthsShort : 'янв_фев_март_апр_май_июнь_июль_авг_сен_окт_ноя_дек'.split('_'),
|
|
40
|
+
weekdays : 'Жекшемби_Дүйшөмбү_Шейшемби_Шаршемби_Бейшемби_Жума_Ишемби'.split('_'),
|
|
41
|
+
weekdaysShort : 'Жек_Дүй_Шей_Шар_Бей_Жум_Ише'.split('_'),
|
|
42
|
+
weekdaysMin : 'Жк_Дй_Шй_Шр_Бй_Жм_Иш'.split('_'),
|
|
43
|
+
longDateFormat : {
|
|
44
|
+
LT : 'HH:mm',
|
|
45
|
+
LTS : 'HH:mm:ss',
|
|
46
|
+
L : 'DD.MM.YYYY',
|
|
47
|
+
LL : 'D MMMM YYYY',
|
|
48
|
+
LLL : 'D MMMM YYYY HH:mm',
|
|
49
|
+
LLLL : 'dddd, D MMMM YYYY HH:mm'
|
|
50
|
+
},
|
|
51
|
+
calendar : {
|
|
52
|
+
sameDay : '[Бүгүн саат] LT',
|
|
53
|
+
nextDay : '[Эртең саат] LT',
|
|
54
|
+
nextWeek : 'dddd [саат] LT',
|
|
55
|
+
lastDay : '[Кече саат] LT',
|
|
56
|
+
lastWeek : '[Өткен аптанын] dddd [күнү] [саат] LT',
|
|
57
|
+
sameElse : 'L'
|
|
58
|
+
},
|
|
59
|
+
relativeTime : {
|
|
60
|
+
future : '%s ичинде',
|
|
61
|
+
past : '%s мурун',
|
|
62
|
+
s : 'бирнече секунд',
|
|
63
|
+
ss : '%d секунд',
|
|
64
|
+
m : 'бир мүнөт',
|
|
65
|
+
mm : '%d мүнөт',
|
|
66
|
+
h : 'бир саат',
|
|
67
|
+
hh : '%d саат',
|
|
68
|
+
d : 'бир күн',
|
|
69
|
+
dd : '%d күн',
|
|
70
|
+
M : 'бир ай',
|
|
71
|
+
MM : '%d ай',
|
|
72
|
+
y : 'бир жыл',
|
|
73
|
+
yy : '%d жыл'
|
|
74
|
+
},
|
|
75
|
+
dayOfMonthOrdinalParse: /\d{1,2}-(чи|чы|чү|чу)/,
|
|
76
|
+
ordinal : function (number) {
|
|
77
|
+
var a = number % 10,
|
|
78
|
+
b = number >= 100 ? 100 : null;
|
|
79
|
+
return number + (suffixes[number] || suffixes[a] || suffixes[b]);
|
|
80
|
+
},
|
|
81
|
+
week : {
|
|
82
|
+
dow : 1, // Monday is the first day of the week.
|
|
83
|
+
doy : 7 // The week that contains Jan 1st is the first week of the year.
|
|
84
|
+
}
|
|
85
|
+
});
|
|
86
|
+
|
|
87
|
+
return ky;
|
|
88
|
+
|
|
89
|
+
})));
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
//! moment.js locale configuration
|
|
2
|
+
//! locale : Luxembourgish [lb]
|
|
3
|
+
//! author : mweimerskirch : https://github.com/mweimerskirch
|
|
4
|
+
//! author : David Raison : https://github.com/kwisatz
|
|
5
|
+
|
|
6
|
+
;(function (global, factory) {
|
|
7
|
+
typeof exports === 'object' && typeof module !== 'undefined'
|
|
8
|
+
&& typeof require === 'function' ? factory(require('../moment')) :
|
|
9
|
+
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
|
10
|
+
factory(global.moment)
|
|
11
|
+
}(this, (function (moment) { 'use strict';
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
function processRelativeTime(number, withoutSuffix, key, isFuture) {
|
|
15
|
+
var format = {
|
|
16
|
+
'm': ['eng Minutt', 'enger Minutt'],
|
|
17
|
+
'h': ['eng Stonn', 'enger Stonn'],
|
|
18
|
+
'd': ['een Dag', 'engem Dag'],
|
|
19
|
+
'M': ['ee Mount', 'engem Mount'],
|
|
20
|
+
'y': ['ee Joer', 'engem Joer']
|
|
21
|
+
};
|
|
22
|
+
return withoutSuffix ? format[key][0] : format[key][1];
|
|
23
|
+
}
|
|
24
|
+
function processFutureTime(string) {
|
|
25
|
+
var number = string.substr(0, string.indexOf(' '));
|
|
26
|
+
if (eifelerRegelAppliesToNumber(number)) {
|
|
27
|
+
return 'a ' + string;
|
|
28
|
+
}
|
|
29
|
+
return 'an ' + string;
|
|
30
|
+
}
|
|
31
|
+
function processPastTime(string) {
|
|
32
|
+
var number = string.substr(0, string.indexOf(' '));
|
|
33
|
+
if (eifelerRegelAppliesToNumber(number)) {
|
|
34
|
+
return 'viru ' + string;
|
|
35
|
+
}
|
|
36
|
+
return 'virun ' + string;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* Returns true if the word before the given number loses the '-n' ending.
|
|
40
|
+
* e.g. 'an 10 Deeg' but 'a 5 Deeg'
|
|
41
|
+
*
|
|
42
|
+
* @param number {integer}
|
|
43
|
+
* @returns {boolean}
|
|
44
|
+
*/
|
|
45
|
+
function eifelerRegelAppliesToNumber(number) {
|
|
46
|
+
number = parseInt(number, 10);
|
|
47
|
+
if (isNaN(number)) {
|
|
48
|
+
return false;
|
|
49
|
+
}
|
|
50
|
+
if (number < 0) {
|
|
51
|
+
// Negative Number --> always true
|
|
52
|
+
return true;
|
|
53
|
+
} else if (number < 10) {
|
|
54
|
+
// Only 1 digit
|
|
55
|
+
if (4 <= number && number <= 7) {
|
|
56
|
+
return true;
|
|
57
|
+
}
|
|
58
|
+
return false;
|
|
59
|
+
} else if (number < 100) {
|
|
60
|
+
// 2 digits
|
|
61
|
+
var lastDigit = number % 10, firstDigit = number / 10;
|
|
62
|
+
if (lastDigit === 0) {
|
|
63
|
+
return eifelerRegelAppliesToNumber(firstDigit);
|
|
64
|
+
}
|
|
65
|
+
return eifelerRegelAppliesToNumber(lastDigit);
|
|
66
|
+
} else if (number < 10000) {
|
|
67
|
+
// 3 or 4 digits --> recursively check first digit
|
|
68
|
+
while (number >= 10) {
|
|
69
|
+
number = number / 10;
|
|
70
|
+
}
|
|
71
|
+
return eifelerRegelAppliesToNumber(number);
|
|
72
|
+
} else {
|
|
73
|
+
// Anything larger than 4 digits: recursively check first n-3 digits
|
|
74
|
+
number = number / 1000;
|
|
75
|
+
return eifelerRegelAppliesToNumber(number);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
var lb = moment.defineLocale('lb', {
|
|
80
|
+
months: 'Januar_Februar_Mäerz_Abrëll_Mee_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'),
|
|
81
|
+
monthsShort: 'Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.'.split('_'),
|
|
82
|
+
monthsParseExact : true,
|
|
83
|
+
weekdays: 'Sonndeg_Méindeg_Dënschdeg_Mëttwoch_Donneschdeg_Freideg_Samschdeg'.split('_'),
|
|
84
|
+
weekdaysShort: 'So._Mé._Dë._Më._Do._Fr._Sa.'.split('_'),
|
|
85
|
+
weekdaysMin: 'So_Mé_Dë_Më_Do_Fr_Sa'.split('_'),
|
|
86
|
+
weekdaysParseExact : true,
|
|
87
|
+
longDateFormat: {
|
|
88
|
+
LT: 'H:mm [Auer]',
|
|
89
|
+
LTS: 'H:mm:ss [Auer]',
|
|
90
|
+
L: 'DD.MM.YYYY',
|
|
91
|
+
LL: 'D. MMMM YYYY',
|
|
92
|
+
LLL: 'D. MMMM YYYY H:mm [Auer]',
|
|
93
|
+
LLLL: 'dddd, D. MMMM YYYY H:mm [Auer]'
|
|
94
|
+
},
|
|
95
|
+
calendar: {
|
|
96
|
+
sameDay: '[Haut um] LT',
|
|
97
|
+
sameElse: 'L',
|
|
98
|
+
nextDay: '[Muer um] LT',
|
|
99
|
+
nextWeek: 'dddd [um] LT',
|
|
100
|
+
lastDay: '[Gëschter um] LT',
|
|
101
|
+
lastWeek: function () {
|
|
102
|
+
// Different date string for 'Dënschdeg' (Tuesday) and 'Donneschdeg' (Thursday) due to phonological rule
|
|
103
|
+
switch (this.day()) {
|
|
104
|
+
case 2:
|
|
105
|
+
case 4:
|
|
106
|
+
return '[Leschten] dddd [um] LT';
|
|
107
|
+
default:
|
|
108
|
+
return '[Leschte] dddd [um] LT';
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
relativeTime : {
|
|
113
|
+
future : processFutureTime,
|
|
114
|
+
past : processPastTime,
|
|
115
|
+
s : 'e puer Sekonnen',
|
|
116
|
+
ss : '%d Sekonnen',
|
|
117
|
+
m : processRelativeTime,
|
|
118
|
+
mm : '%d Minutten',
|
|
119
|
+
h : processRelativeTime,
|
|
120
|
+
hh : '%d Stonnen',
|
|
121
|
+
d : processRelativeTime,
|
|
122
|
+
dd : '%d Deeg',
|
|
123
|
+
M : processRelativeTime,
|
|
124
|
+
MM : '%d Méint',
|
|
125
|
+
y : processRelativeTime,
|
|
126
|
+
yy : '%d Joer'
|
|
127
|
+
},
|
|
128
|
+
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
|
129
|
+
ordinal: '%d.',
|
|
130
|
+
week: {
|
|
131
|
+
dow: 1, // Monday is the first day of the week.
|
|
132
|
+
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
|
133
|
+
}
|
|
134
|
+
});
|
|
135
|
+
|
|
136
|
+
return lb;
|
|
137
|
+
|
|
138
|
+
})));
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
//! moment.js locale configuration
|
|
2
|
+
//! locale : Lao [lo]
|
|
3
|
+
//! author : Ryan Hart : https://github.com/ryanhart2
|
|
4
|
+
|
|
5
|
+
;(function (global, factory) {
|
|
6
|
+
typeof exports === 'object' && typeof module !== 'undefined'
|
|
7
|
+
&& typeof require === 'function' ? factory(require('../moment')) :
|
|
8
|
+
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
|
9
|
+
factory(global.moment)
|
|
10
|
+
}(this, (function (moment) { 'use strict';
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
var lo = moment.defineLocale('lo', {
|
|
14
|
+
months : 'ມັງກອນ_ກຸມພາ_ມີນາ_ເມສາ_ພຶດສະພາ_ມິຖຸນາ_ກໍລະກົດ_ສິງຫາ_ກັນຍາ_ຕຸລາ_ພະຈິກ_ທັນວາ'.split('_'),
|
|
15
|
+
monthsShort : 'ມັງກອນ_ກຸມພາ_ມີນາ_ເມສາ_ພຶດສະພາ_ມິຖຸນາ_ກໍລະກົດ_ສິງຫາ_ກັນຍາ_ຕຸລາ_ພະຈິກ_ທັນວາ'.split('_'),
|
|
16
|
+
weekdays : 'ອາທິດ_ຈັນ_ອັງຄານ_ພຸດ_ພະຫັດ_ສຸກ_ເສົາ'.split('_'),
|
|
17
|
+
weekdaysShort : 'ທິດ_ຈັນ_ອັງຄານ_ພຸດ_ພະຫັດ_ສຸກ_ເສົາ'.split('_'),
|
|
18
|
+
weekdaysMin : 'ທ_ຈ_ອຄ_ພ_ພຫ_ສກ_ສ'.split('_'),
|
|
19
|
+
weekdaysParseExact : true,
|
|
20
|
+
longDateFormat : {
|
|
21
|
+
LT : 'HH:mm',
|
|
22
|
+
LTS : 'HH:mm:ss',
|
|
23
|
+
L : 'DD/MM/YYYY',
|
|
24
|
+
LL : 'D MMMM YYYY',
|
|
25
|
+
LLL : 'D MMMM YYYY HH:mm',
|
|
26
|
+
LLLL : 'ວັນdddd D MMMM YYYY HH:mm'
|
|
27
|
+
},
|
|
28
|
+
meridiemParse: /ຕອນເຊົ້າ|ຕອນແລງ/,
|
|
29
|
+
isPM: function (input) {
|
|
30
|
+
return input === 'ຕອນແລງ';
|
|
31
|
+
},
|
|
32
|
+
meridiem : function (hour, minute, isLower) {
|
|
33
|
+
if (hour < 12) {
|
|
34
|
+
return 'ຕອນເຊົ້າ';
|
|
35
|
+
} else {
|
|
36
|
+
return 'ຕອນແລງ';
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
calendar : {
|
|
40
|
+
sameDay : '[ມື້ນີ້ເວລາ] LT',
|
|
41
|
+
nextDay : '[ມື້ອື່ນເວລາ] LT',
|
|
42
|
+
nextWeek : '[ວັນ]dddd[ໜ້າເວລາ] LT',
|
|
43
|
+
lastDay : '[ມື້ວານນີ້ເວລາ] LT',
|
|
44
|
+
lastWeek : '[ວັນ]dddd[ແລ້ວນີ້ເວລາ] LT',
|
|
45
|
+
sameElse : 'L'
|
|
46
|
+
},
|
|
47
|
+
relativeTime : {
|
|
48
|
+
future : 'ອີກ %s',
|
|
49
|
+
past : '%sຜ່ານມາ',
|
|
50
|
+
s : 'ບໍ່ເທົ່າໃດວິນາທີ',
|
|
51
|
+
ss : '%d ວິນາທີ' ,
|
|
52
|
+
m : '1 ນາທີ',
|
|
53
|
+
mm : '%d ນາທີ',
|
|
54
|
+
h : '1 ຊົ່ວໂມງ',
|
|
55
|
+
hh : '%d ຊົ່ວໂມງ',
|
|
56
|
+
d : '1 ມື້',
|
|
57
|
+
dd : '%d ມື້',
|
|
58
|
+
M : '1 ເດືອນ',
|
|
59
|
+
MM : '%d ເດືອນ',
|
|
60
|
+
y : '1 ປີ',
|
|
61
|
+
yy : '%d ປີ'
|
|
62
|
+
},
|
|
63
|
+
dayOfMonthOrdinalParse: /(ທີ່)\d{1,2}/,
|
|
64
|
+
ordinal : function (number) {
|
|
65
|
+
return 'ທີ່' + number;
|
|
66
|
+
}
|
|
67
|
+
});
|
|
68
|
+
|
|
69
|
+
return lo;
|
|
70
|
+
|
|
71
|
+
})));
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
//! moment.js locale configuration
|
|
2
|
+
//! locale : Lithuanian [lt]
|
|
3
|
+
//! author : Mindaugas Mozūras : https://github.com/mmozuras
|
|
4
|
+
|
|
5
|
+
;(function (global, factory) {
|
|
6
|
+
typeof exports === 'object' && typeof module !== 'undefined'
|
|
7
|
+
&& typeof require === 'function' ? factory(require('../moment')) :
|
|
8
|
+
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
|
9
|
+
factory(global.moment)
|
|
10
|
+
}(this, (function (moment) { 'use strict';
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
var units = {
|
|
14
|
+
'ss' : 'sekundė_sekundžių_sekundes',
|
|
15
|
+
'm' : 'minutė_minutės_minutę',
|
|
16
|
+
'mm': 'minutės_minučių_minutes',
|
|
17
|
+
'h' : 'valanda_valandos_valandą',
|
|
18
|
+
'hh': 'valandos_valandų_valandas',
|
|
19
|
+
'd' : 'diena_dienos_dieną',
|
|
20
|
+
'dd': 'dienos_dienų_dienas',
|
|
21
|
+
'M' : 'mėnuo_mėnesio_mėnesį',
|
|
22
|
+
'MM': 'mėnesiai_mėnesių_mėnesius',
|
|
23
|
+
'y' : 'metai_metų_metus',
|
|
24
|
+
'yy': 'metai_metų_metus'
|
|
25
|
+
};
|
|
26
|
+
function translateSeconds(number, withoutSuffix, key, isFuture) {
|
|
27
|
+
if (withoutSuffix) {
|
|
28
|
+
return 'kelios sekundės';
|
|
29
|
+
} else {
|
|
30
|
+
return isFuture ? 'kelių sekundžių' : 'kelias sekundes';
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
function translateSingular(number, withoutSuffix, key, isFuture) {
|
|
34
|
+
return withoutSuffix ? forms(key)[0] : (isFuture ? forms(key)[1] : forms(key)[2]);
|
|
35
|
+
}
|
|
36
|
+
function special(number) {
|
|
37
|
+
return number % 10 === 0 || (number > 10 && number < 20);
|
|
38
|
+
}
|
|
39
|
+
function forms(key) {
|
|
40
|
+
return units[key].split('_');
|
|
41
|
+
}
|
|
42
|
+
function translate(number, withoutSuffix, key, isFuture) {
|
|
43
|
+
var result = number + ' ';
|
|
44
|
+
if (number === 1) {
|
|
45
|
+
return result + translateSingular(number, withoutSuffix, key[0], isFuture);
|
|
46
|
+
} else if (withoutSuffix) {
|
|
47
|
+
return result + (special(number) ? forms(key)[1] : forms(key)[0]);
|
|
48
|
+
} else {
|
|
49
|
+
if (isFuture) {
|
|
50
|
+
return result + forms(key)[1];
|
|
51
|
+
} else {
|
|
52
|
+
return result + (special(number) ? forms(key)[1] : forms(key)[2]);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
var lt = moment.defineLocale('lt', {
|
|
57
|
+
months : {
|
|
58
|
+
format: 'sausio_vasario_kovo_balandžio_gegužės_birželio_liepos_rugpjūčio_rugsėjo_spalio_lapkričio_gruodžio'.split('_'),
|
|
59
|
+
standalone: 'sausis_vasaris_kovas_balandis_gegužė_birželis_liepa_rugpjūtis_rugsėjis_spalis_lapkritis_gruodis'.split('_'),
|
|
60
|
+
isFormat: /D[oD]?(\[[^\[\]]*\]|\s)+MMMM?|MMMM?(\[[^\[\]]*\]|\s)+D[oD]?/
|
|
61
|
+
},
|
|
62
|
+
monthsShort : 'sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd'.split('_'),
|
|
63
|
+
weekdays : {
|
|
64
|
+
format: 'sekmadienį_pirmadienį_antradienį_trečiadienį_ketvirtadienį_penktadienį_šeštadienį'.split('_'),
|
|
65
|
+
standalone: 'sekmadienis_pirmadienis_antradienis_trečiadienis_ketvirtadienis_penktadienis_šeštadienis'.split('_'),
|
|
66
|
+
isFormat: /dddd HH:mm/
|
|
67
|
+
},
|
|
68
|
+
weekdaysShort : 'Sek_Pir_Ant_Tre_Ket_Pen_Šeš'.split('_'),
|
|
69
|
+
weekdaysMin : 'S_P_A_T_K_Pn_Š'.split('_'),
|
|
70
|
+
weekdaysParseExact : true,
|
|
71
|
+
longDateFormat : {
|
|
72
|
+
LT : 'HH:mm',
|
|
73
|
+
LTS : 'HH:mm:ss',
|
|
74
|
+
L : 'YYYY-MM-DD',
|
|
75
|
+
LL : 'YYYY [m.] MMMM D [d.]',
|
|
76
|
+
LLL : 'YYYY [m.] MMMM D [d.], HH:mm [val.]',
|
|
77
|
+
LLLL : 'YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]',
|
|
78
|
+
l : 'YYYY-MM-DD',
|
|
79
|
+
ll : 'YYYY [m.] MMMM D [d.]',
|
|
80
|
+
lll : 'YYYY [m.] MMMM D [d.], HH:mm [val.]',
|
|
81
|
+
llll : 'YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]'
|
|
82
|
+
},
|
|
83
|
+
calendar : {
|
|
84
|
+
sameDay : '[Šiandien] LT',
|
|
85
|
+
nextDay : '[Rytoj] LT',
|
|
86
|
+
nextWeek : 'dddd LT',
|
|
87
|
+
lastDay : '[Vakar] LT',
|
|
88
|
+
lastWeek : '[Praėjusį] dddd LT',
|
|
89
|
+
sameElse : 'L'
|
|
90
|
+
},
|
|
91
|
+
relativeTime : {
|
|
92
|
+
future : 'po %s',
|
|
93
|
+
past : 'prieš %s',
|
|
94
|
+
s : translateSeconds,
|
|
95
|
+
ss : translate,
|
|
96
|
+
m : translateSingular,
|
|
97
|
+
mm : translate,
|
|
98
|
+
h : translateSingular,
|
|
99
|
+
hh : translate,
|
|
100
|
+
d : translateSingular,
|
|
101
|
+
dd : translate,
|
|
102
|
+
M : translateSingular,
|
|
103
|
+
MM : translate,
|
|
104
|
+
y : translateSingular,
|
|
105
|
+
yy : translate
|
|
106
|
+
},
|
|
107
|
+
dayOfMonthOrdinalParse: /\d{1,2}-oji/,
|
|
108
|
+
ordinal : function (number) {
|
|
109
|
+
return number + '-oji';
|
|
110
|
+
},
|
|
111
|
+
week : {
|
|
112
|
+
dow : 1, // Monday is the first day of the week.
|
|
113
|
+
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
|
114
|
+
}
|
|
115
|
+
});
|
|
116
|
+
|
|
117
|
+
return lt;
|
|
118
|
+
|
|
119
|
+
})));
|