@gitlab/ui 84.1.0 → 85.0.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.
Files changed (1162) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist/components/base/accordion/accordion_item.js +1 -1
  3. package/dist/components/base/badge/badge.js +1 -1
  4. package/dist/components/base/breadcrumb/breadcrumb.js +1 -1
  5. package/dist/components/base/breadcrumb/breadcrumb_item.js +1 -1
  6. package/dist/components/base/button/button.js +1 -1
  7. package/dist/components/base/button_group/button_group.js +1 -1
  8. package/dist/components/base/carousel/carousel.js +1 -1
  9. package/dist/components/base/carousel/carousel_slide.js +1 -1
  10. package/dist/components/base/collapse/collapse.js +1 -1
  11. package/dist/components/base/dropdown/dropdown.js +2 -2
  12. package/dist/components/base/dropdown/dropdown_divider.js +1 -1
  13. package/dist/components/base/dropdown/dropdown_form.js +1 -1
  14. package/dist/components/base/dropdown/dropdown_item.js +2 -1
  15. package/dist/components/base/dropdown/dropdown_section_header.js +1 -1
  16. package/dist/components/base/dropdown/dropdown_text.js +1 -1
  17. package/dist/components/base/form/form.js +1 -1
  18. package/dist/components/base/form/form_checkbox/form_checkbox.js +1 -1
  19. package/dist/components/base/form/form_checkbox/form_checkbox_group.js +2 -2
  20. package/dist/components/base/form/form_group/form_group.js +1 -1
  21. package/dist/components/base/form/form_input/form_input.js +1 -1
  22. package/dist/components/base/form/form_input_group/form_input_group.js +4 -1
  23. package/dist/components/base/form/form_radio/form_radio.js +1 -1
  24. package/dist/components/base/form/form_radio_group/form_radio_group.js +2 -2
  25. package/dist/components/base/form/form_select/form_select.js +1 -1
  26. package/dist/components/base/form/form_text/form_text.js +1 -1
  27. package/dist/components/base/form/form_textarea/form_textarea.js +1 -1
  28. package/dist/components/base/form/input_group_text/input_group_text.js +1 -1
  29. package/dist/components/base/link/link.js +1 -1
  30. package/dist/components/base/modal/modal.js +1 -1
  31. package/dist/components/base/nav/nav.js +1 -1
  32. package/dist/components/base/nav/nav_item.js +1 -1
  33. package/dist/components/base/nav/nav_item_dropdown.js +1 -1
  34. package/dist/components/base/navbar/navbar.js +1 -1
  35. package/dist/components/base/new_dropdowns/disclosure/disclosure_dropdown_item.js +1 -1
  36. package/dist/components/base/popover/popover.js +1 -1
  37. package/dist/components/base/progress_bar/progress_bar.js +1 -1
  38. package/dist/components/base/segmented_control/segmented_control.js +1 -1
  39. package/dist/components/base/table/table.js +1 -1
  40. package/dist/components/base/table_lite/table_lite.js +1 -1
  41. package/dist/components/base/tabs/tab/tab.js +1 -1
  42. package/dist/components/base/tabs/tabs/tabs.js +1 -1
  43. package/dist/components/base/toast/toast.js +1 -1
  44. package/dist/components/base/tooltip/tooltip.js +1 -1
  45. package/dist/components/experimental/duo/chat/duo_chat.js +5 -2
  46. package/dist/config.js +1 -1
  47. package/dist/directives/collapse_toggle.js +1 -1
  48. package/dist/directives/modal.js +1 -1
  49. package/dist/directives/tooltip.js +1 -1
  50. package/dist/index.css +1 -1
  51. package/dist/index.css.map +1 -1
  52. package/dist/tokens/build/js/tokens.dark.js +78 -1
  53. package/dist/tokens/build/js/tokens.js +78 -1
  54. package/dist/tokens/css/tokens.css +77 -0
  55. package/dist/tokens/css/tokens.dark.css +77 -0
  56. package/dist/tokens/js/tokens.dark.js +77 -0
  57. package/dist/tokens/js/tokens.js +77 -0
  58. package/dist/tokens/json/tokens.dark.json +1976 -0
  59. package/dist/tokens/json/tokens.json +1976 -0
  60. package/dist/tokens/scss/_tokens.dark.scss +77 -0
  61. package/dist/tokens/scss/_tokens.scss +77 -0
  62. package/dist/tokens/scss/_tokens_custom_properties.scss +77 -0
  63. package/dist/utils/utils.js +1 -1
  64. package/dist/vendor/bootstrap-vue/src/browser-icons.js +8 -0
  65. package/dist/vendor/bootstrap-vue/src/browser.js +8 -0
  66. package/dist/vendor/bootstrap-vue/src/bv-config.js +6 -0
  67. package/dist/vendor/bootstrap-vue/src/components/alert/alert.js +179 -0
  68. package/dist/vendor/bootstrap-vue/src/components/alert/index.js +11 -0
  69. package/dist/vendor/bootstrap-vue/src/components/aspect/aspect.js +67 -0
  70. package/dist/vendor/bootstrap-vue/src/components/aspect/index.js +11 -0
  71. package/dist/vendor/bootstrap-vue/src/components/avatar/avatar-group.js +67 -0
  72. package/dist/vendor/bootstrap-vue/src/components/avatar/avatar.js +266 -0
  73. package/dist/vendor/bootstrap-vue/src/components/avatar/index.js +14 -0
  74. package/dist/vendor/bootstrap-vue/src/components/badge/badge.js +53 -0
  75. package/dist/vendor/bootstrap-vue/src/components/badge/index.js +11 -0
  76. package/dist/vendor/bootstrap-vue/src/components/breadcrumb/breadcrumb-item.js +34 -0
  77. package/dist/vendor/bootstrap-vue/src/components/breadcrumb/breadcrumb-link.js +48 -0
  78. package/dist/vendor/bootstrap-vue/src/components/breadcrumb/breadcrumb.js +67 -0
  79. package/dist/vendor/bootstrap-vue/src/components/breadcrumb/index.js +17 -0
  80. package/dist/vendor/bootstrap-vue/src/components/button/button-close.js +66 -0
  81. package/dist/vendor/bootstrap-vue/src/components/button/button.js +180 -0
  82. package/dist/vendor/bootstrap-vue/src/components/button/index.js +16 -0
  83. package/dist/vendor/bootstrap-vue/src/components/button-group/button-group.js +44 -0
  84. package/dist/vendor/bootstrap-vue/src/components/button-group/index.js +12 -0
  85. package/dist/vendor/bootstrap-vue/src/components/button-toolbar/button-toolbar.js +112 -0
  86. package/dist/vendor/bootstrap-vue/src/components/button-toolbar/index.js +12 -0
  87. package/dist/vendor/bootstrap-vue/src/components/calendar/calendar.js +1010 -0
  88. package/dist/vendor/bootstrap-vue/src/components/calendar/index.js +11 -0
  89. package/dist/vendor/bootstrap-vue/src/components/card/card-body.js +63 -0
  90. package/dist/vendor/bootstrap-vue/src/components/card/card-footer.js +48 -0
  91. package/dist/vendor/bootstrap-vue/src/components/card/card-group.js +33 -0
  92. package/dist/vendor/bootstrap-vue/src/components/card/card-header.js +48 -0
  93. package/dist/vendor/bootstrap-vue/src/components/card/card-img-lazy.js +46 -0
  94. package/dist/vendor/bootstrap-vue/src/components/card/card-img.js +58 -0
  95. package/dist/vendor/bootstrap-vue/src/components/card/card-sub-title.js +35 -0
  96. package/dist/vendor/bootstrap-vue/src/components/card/card-text.js +31 -0
  97. package/dist/vendor/bootstrap-vue/src/components/card/card-title.js +33 -0
  98. package/dist/vendor/bootstrap-vue/src/components/card/card.js +123 -0
  99. package/dist/vendor/bootstrap-vue/src/components/card/index.js +38 -0
  100. package/dist/vendor/bootstrap-vue/src/components/carousel/carousel-slide.js +123 -0
  101. package/dist/vendor/bootstrap-vue/src/components/carousel/carousel.js +617 -0
  102. package/dist/vendor/bootstrap-vue/src/components/carousel/index.js +14 -0
  103. package/dist/vendor/bootstrap-vue/src/components/collapse/collapse.js +274 -0
  104. package/dist/vendor/bootstrap-vue/src/components/collapse/helpers/bv-collapse.js +90 -0
  105. package/dist/vendor/bootstrap-vue/src/components/collapse/index.js +15 -0
  106. package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-divider.js +41 -0
  107. package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-form.js +52 -0
  108. package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-group.js +75 -0
  109. package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-header.js +52 -0
  110. package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-item-button.js +83 -0
  111. package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-item.js +89 -0
  112. package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-text.js +49 -0
  113. package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown.js +195 -0
  114. package/dist/vendor/bootstrap-vue/src/components/dropdown/index.js +42 -0
  115. package/dist/vendor/bootstrap-vue/src/components/embed/embed.js +50 -0
  116. package/dist/vendor/bootstrap-vue/src/components/embed/index.js +11 -0
  117. package/dist/vendor/bootstrap-vue/src/components/form/form-datalist.js +52 -0
  118. package/dist/vendor/bootstrap-vue/src/components/form/form-invalid-feedback.js +53 -0
  119. package/dist/vendor/bootstrap-vue/src/components/form/form-text.js +40 -0
  120. package/dist/vendor/bootstrap-vue/src/components/form/form-valid-feedback.js +53 -0
  121. package/dist/vendor/bootstrap-vue/src/components/form/form.js +41 -0
  122. package/dist/vendor/bootstrap-vue/src/components/form/index.js +28 -0
  123. package/dist/vendor/bootstrap-vue/src/components/form-btn-label-control/bv-form-btn-label-control.js +261 -0
  124. package/dist/vendor/bootstrap-vue/src/components/form-checkbox/form-checkbox-group.js +37 -0
  125. package/dist/vendor/bootstrap-vue/src/components/form-checkbox/form-checkbox.js +134 -0
  126. package/dist/vendor/bootstrap-vue/src/components/form-checkbox/index.js +18 -0
  127. package/dist/vendor/bootstrap-vue/src/components/form-datepicker/form-datepicker.js +310 -0
  128. package/dist/vendor/bootstrap-vue/src/components/form-datepicker/index.js +12 -0
  129. package/dist/vendor/bootstrap-vue/src/components/form-file/form-file.js +561 -0
  130. package/dist/vendor/bootstrap-vue/src/components/form-file/index.js +12 -0
  131. package/dist/vendor/bootstrap-vue/src/components/form-group/form-group.js +347 -0
  132. package/dist/vendor/bootstrap-vue/src/components/form-group/index.js +12 -0
  133. package/dist/vendor/bootstrap-vue/src/components/form-input/form-input.js +157 -0
  134. package/dist/vendor/bootstrap-vue/src/components/form-input/index.js +12 -0
  135. package/dist/vendor/bootstrap-vue/src/components/form-radio/form-radio-group.js +29 -0
  136. package/dist/vendor/bootstrap-vue/src/components/form-radio/form-radio.js +30 -0
  137. package/dist/vendor/bootstrap-vue/src/components/form-radio/index.js +16 -0
  138. package/dist/vendor/bootstrap-vue/src/components/form-rating/form-rating.js +402 -0
  139. package/dist/vendor/bootstrap-vue/src/components/form-rating/index.js +12 -0
  140. package/dist/vendor/bootstrap-vue/src/components/form-select/form-select-option-group.js +54 -0
  141. package/dist/vendor/bootstrap-vue/src/components/form-select/form-select-option.js +41 -0
  142. package/dist/vendor/bootstrap-vue/src/components/form-select/form-select.js +143 -0
  143. package/dist/vendor/bootstrap-vue/src/components/form-select/helpers/mixin-options.js +56 -0
  144. package/dist/vendor/bootstrap-vue/src/components/form-select/index.js +20 -0
  145. package/dist/vendor/bootstrap-vue/src/components/form-spinbutton/form-spinbutton.js +555 -0
  146. package/dist/vendor/bootstrap-vue/src/components/form-spinbutton/index.js +12 -0
  147. package/dist/vendor/bootstrap-vue/src/components/form-tags/form-tag.js +97 -0
  148. package/dist/vendor/bootstrap-vue/src/components/form-tags/form-tags.js +806 -0
  149. package/dist/vendor/bootstrap-vue/src/components/form-tags/index.js +16 -0
  150. package/dist/vendor/bootstrap-vue/src/components/form-textarea/form-textarea.js +217 -0
  151. package/dist/vendor/bootstrap-vue/src/components/form-textarea/index.js +12 -0
  152. package/dist/vendor/bootstrap-vue/src/components/form-timepicker/form-timepicker.js +281 -0
  153. package/dist/vendor/bootstrap-vue/src/components/form-timepicker/index.js +12 -0
  154. package/dist/vendor/bootstrap-vue/src/components/image/img-lazy.js +157 -0
  155. package/dist/vendor/bootstrap-vue/src/components/image/img.js +124 -0
  156. package/dist/vendor/bootstrap-vue/src/components/image/index.js +14 -0
  157. package/dist/vendor/bootstrap-vue/src/components/index.js +109 -0
  158. package/dist/vendor/bootstrap-vue/src/components/input-group/index.js +23 -0
  159. package/dist/vendor/bootstrap-vue/src/components/input-group/input-group-addon.js +44 -0
  160. package/dist/vendor/bootstrap-vue/src/components/input-group/input-group-append.js +34 -0
  161. package/dist/vendor/bootstrap-vue/src/components/input-group/input-group-prepend.js +34 -0
  162. package/dist/vendor/bootstrap-vue/src/components/input-group/input-group-text.js +31 -0
  163. package/dist/vendor/bootstrap-vue/src/components/input-group/input-group.js +75 -0
  164. package/dist/vendor/bootstrap-vue/src/components/jumbotron/index.js +11 -0
  165. package/dist/vendor/bootstrap-vue/src/components/jumbotron/jumbotron.js +98 -0
  166. package/dist/vendor/bootstrap-vue/src/components/layout/col.js +156 -0
  167. package/dist/vendor/bootstrap-vue/src/components/layout/container.js +41 -0
  168. package/dist/vendor/bootstrap-vue/src/components/layout/form-row.js +31 -0
  169. package/dist/vendor/bootstrap-vue/src/components/layout/index.js +20 -0
  170. package/dist/vendor/bootstrap-vue/src/components/layout/row.js +113 -0
  171. package/dist/vendor/bootstrap-vue/src/components/link/index.js +11 -0
  172. package/dist/vendor/bootstrap-vue/src/components/link/link.js +239 -0
  173. package/dist/vendor/bootstrap-vue/src/components/list-group/index.js +14 -0
  174. package/dist/vendor/bootstrap-vue/src/components/list-group/list-group-item.js +78 -0
  175. package/dist/vendor/bootstrap-vue/src/components/list-group/list-group.js +42 -0
  176. package/dist/vendor/bootstrap-vue/src/components/media/index.js +17 -0
  177. package/dist/vendor/bootstrap-vue/src/components/media/media-aside.js +41 -0
  178. package/dist/vendor/bootstrap-vue/src/components/media/media-body.js +31 -0
  179. package/dist/vendor/bootstrap-vue/src/components/media/media.js +61 -0
  180. package/dist/vendor/bootstrap-vue/src/components/modal/helpers/bv-modal-event.class.js +21 -0
  181. package/dist/vendor/bootstrap-vue/src/components/modal/helpers/bv-modal.js +279 -0
  182. package/dist/vendor/bootstrap-vue/src/components/modal/helpers/modal-manager.js +211 -0
  183. package/dist/vendor/bootstrap-vue/src/components/modal/index.js +20 -0
  184. package/dist/vendor/bootstrap-vue/src/components/modal/modal.js +920 -0
  185. package/dist/vendor/bootstrap-vue/src/components/nav/index.js +30 -0
  186. package/dist/vendor/bootstrap-vue/src/components/nav/nav-form.js +45 -0
  187. package/dist/vendor/bootstrap-vue/src/components/nav/nav-item-dropdown.js +108 -0
  188. package/dist/vendor/bootstrap-vue/src/components/nav/nav-item.js +43 -0
  189. package/dist/vendor/bootstrap-vue/src/components/nav/nav-text.js +26 -0
  190. package/dist/vendor/bootstrap-vue/src/components/nav/nav.js +65 -0
  191. package/dist/vendor/bootstrap-vue/src/components/navbar/index.js +29 -0
  192. package/dist/vendor/bootstrap-vue/src/components/navbar/navbar-brand.js +40 -0
  193. package/dist/vendor/bootstrap-vue/src/components/navbar/navbar-nav.js +46 -0
  194. package/dist/vendor/bootstrap-vue/src/components/navbar/navbar-toggle.js +89 -0
  195. package/dist/vendor/bootstrap-vue/src/components/navbar/navbar.js +72 -0
  196. package/dist/vendor/bootstrap-vue/src/components/overlay/index.js +11 -0
  197. package/dist/vendor/bootstrap-vue/src/components/overlay/overlay.js +163 -0
  198. package/dist/vendor/bootstrap-vue/src/components/pagination/index.js +11 -0
  199. package/dist/vendor/bootstrap-vue/src/components/pagination/pagination.js +135 -0
  200. package/dist/vendor/bootstrap-vue/src/components/pagination-nav/index.js +11 -0
  201. package/dist/vendor/bootstrap-vue/src/components/pagination-nav/pagination-nav.js +299 -0
  202. package/dist/vendor/bootstrap-vue/src/components/popover/helpers/bv-popover-template.js +52 -0
  203. package/dist/vendor/bootstrap-vue/src/components/popover/helpers/bv-popover.js +26 -0
  204. package/dist/vendor/bootstrap-vue/src/components/popover/index.js +15 -0
  205. package/dist/vendor/bootstrap-vue/src/components/popover/popover.js +45 -0
  206. package/dist/vendor/bootstrap-vue/src/components/progress/index.js +14 -0
  207. package/dist/vendor/bootstrap-vue/src/components/progress/progress-bar.js +128 -0
  208. package/dist/vendor/bootstrap-vue/src/components/progress/progress.js +56 -0
  209. package/dist/vendor/bootstrap-vue/src/components/sidebar/index.js +15 -0
  210. package/dist/vendor/bootstrap-vue/src/components/sidebar/sidebar.js +432 -0
  211. package/dist/vendor/bootstrap-vue/src/components/skeleton/index.js +23 -0
  212. package/dist/vendor/bootstrap-vue/src/components/skeleton/skeleton-icon.js +47 -0
  213. package/dist/vendor/bootstrap-vue/src/components/skeleton/skeleton-img.js +60 -0
  214. package/dist/vendor/bootstrap-vue/src/components/skeleton/skeleton-table.js +64 -0
  215. package/dist/vendor/bootstrap-vue/src/components/skeleton/skeleton-wrapper.js +46 -0
  216. package/dist/vendor/bootstrap-vue/src/components/skeleton/skeleton.js +49 -0
  217. package/dist/vendor/bootstrap-vue/src/components/spinner/index.js +11 -0
  218. package/dist/vendor/bootstrap-vue/src/components/spinner/spinner.js +55 -0
  219. package/dist/vendor/bootstrap-vue/src/components/table/helpers/constants.js +22 -0
  220. package/dist/vendor/bootstrap-vue/src/components/table/helpers/default-sort-compare.js +64 -0
  221. package/dist/vendor/bootstrap-vue/src/components/table/helpers/filter-event.js +40 -0
  222. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-bottom-row.js +43 -0
  223. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-busy.js +83 -0
  224. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-caption.js +50 -0
  225. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-colgroup.js +32 -0
  226. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-empty.js +82 -0
  227. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-filtering.js +265 -0
  228. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-items.js +150 -0
  229. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-pagination.js +44 -0
  230. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-provider.js +187 -0
  231. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-selectable.js +229 -0
  232. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-sorting.js +290 -0
  233. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-stacked.js +39 -0
  234. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-table-renderer.js +186 -0
  235. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-tbody-row.js +338 -0
  236. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-tbody.js +237 -0
  237. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-tfoot.js +50 -0
  238. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-thead.js +214 -0
  239. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-top-row.js +42 -0
  240. package/dist/vendor/bootstrap-vue/src/components/table/helpers/normalize-fields.js +86 -0
  241. package/dist/vendor/bootstrap-vue/src/components/table/helpers/sanitize-row.js +32 -0
  242. package/dist/vendor/bootstrap-vue/src/components/table/helpers/stringify-record-values.js +11 -0
  243. package/dist/vendor/bootstrap-vue/src/components/table/helpers/text-selection-active.js +14 -0
  244. package/dist/vendor/bootstrap-vue/src/components/table/index.js +47 -0
  245. package/dist/vendor/bootstrap-vue/src/components/table/table-lite.js +52 -0
  246. package/dist/vendor/bootstrap-vue/src/components/table/table-simple.js +45 -0
  247. package/dist/vendor/bootstrap-vue/src/components/table/table.js +68 -0
  248. package/dist/vendor/bootstrap-vue/src/components/table/tbody.js +109 -0
  249. package/dist/vendor/bootstrap-vue/src/components/table/td.js +183 -0
  250. package/dist/vendor/bootstrap-vue/src/components/table/tfoot.js +93 -0
  251. package/dist/vendor/bootstrap-vue/src/components/table/th.js +27 -0
  252. package/dist/vendor/bootstrap-vue/src/components/table/thead.js +96 -0
  253. package/dist/vendor/bootstrap-vue/src/components/table/tr.js +118 -0
  254. package/dist/vendor/bootstrap-vue/src/components/tabs/index.js +14 -0
  255. package/dist/vendor/bootstrap-vue/src/components/tabs/tab.js +199 -0
  256. package/dist/vendor/bootstrap-vue/src/components/tabs/tabs.js +617 -0
  257. package/dist/vendor/bootstrap-vue/src/components/time/index.js +11 -0
  258. package/dist/vendor/bootstrap-vue/src/components/time/time.js +600 -0
  259. package/dist/vendor/bootstrap-vue/src/components/toast/helpers/bv-toast.js +209 -0
  260. package/dist/vendor/bootstrap-vue/src/components/toast/index.js +19 -0
  261. package/dist/vendor/bootstrap-vue/src/components/toast/toast.js +419 -0
  262. package/dist/vendor/bootstrap-vue/src/components/toast/toaster.js +142 -0
  263. package/dist/vendor/bootstrap-vue/src/components/tooltip/helpers/bv-popper.js +243 -0
  264. package/dist/vendor/bootstrap-vue/src/components/tooltip/helpers/bv-tooltip-template.js +118 -0
  265. package/dist/vendor/bootstrap-vue/src/components/tooltip/helpers/bv-tooltip.js +929 -0
  266. package/dist/vendor/bootstrap-vue/src/components/tooltip/index.js +15 -0
  267. package/dist/vendor/bootstrap-vue/src/components/tooltip/tooltip.js +280 -0
  268. package/dist/vendor/bootstrap-vue/src/components/transition/bv-transition.js +85 -0
  269. package/dist/vendor/bootstrap-vue/src/components/transporter/transporter.js +197 -0
  270. package/dist/vendor/bootstrap-vue/src/constants/classes.js +4 -0
  271. package/dist/vendor/bootstrap-vue/src/constants/components.js +135 -0
  272. package/dist/vendor/bootstrap-vue/src/constants/config.js +5 -0
  273. package/dist/vendor/bootstrap-vue/src/constants/date.js +8 -0
  274. package/dist/vendor/bootstrap-vue/src/constants/env.js +47 -0
  275. package/dist/vendor/bootstrap-vue/src/constants/events.js +71 -0
  276. package/dist/vendor/bootstrap-vue/src/constants/key-codes.js +16 -0
  277. package/dist/vendor/bootstrap-vue/src/constants/popper.js +10 -0
  278. package/dist/vendor/bootstrap-vue/src/constants/props.js +27 -0
  279. package/dist/vendor/bootstrap-vue/src/constants/regex.js +61 -0
  280. package/dist/vendor/bootstrap-vue/src/constants/safe-types.js +15 -0
  281. package/dist/vendor/bootstrap-vue/src/constants/slots.js +66 -0
  282. package/dist/vendor/bootstrap-vue/src/directives/hover/hover.js +61 -0
  283. package/dist/vendor/bootstrap-vue/src/directives/hover/index.js +11 -0
  284. package/dist/vendor/bootstrap-vue/src/directives/index.js +23 -0
  285. package/dist/vendor/bootstrap-vue/src/directives/modal/index.js +11 -0
  286. package/dist/vendor/bootstrap-vue/src/directives/modal/modal.js +112 -0
  287. package/dist/vendor/bootstrap-vue/src/directives/popover/index.js +11 -0
  288. package/dist/vendor/bootstrap-vue/src/directives/popover/popover.js +265 -0
  289. package/dist/vendor/bootstrap-vue/src/directives/scrollspy/helpers/bv-scrollspy.class.js +404 -0
  290. package/dist/vendor/bootstrap-vue/src/directives/scrollspy/index.js +11 -0
  291. package/dist/vendor/bootstrap-vue/src/directives/scrollspy/scrollspy.js +112 -0
  292. package/dist/vendor/bootstrap-vue/src/directives/toggle/index.js +11 -0
  293. package/dist/vendor/bootstrap-vue/src/directives/toggle/toggle.js +253 -0
  294. package/dist/vendor/bootstrap-vue/src/directives/tooltip/index.js +11 -0
  295. package/dist/vendor/bootstrap-vue/src/directives/tooltip/tooltip.js +264 -0
  296. package/dist/vendor/bootstrap-vue/src/directives/visible/index.js +11 -0
  297. package/dist/vendor/bootstrap-vue/src/directives/visible/visible.js +156 -0
  298. package/dist/vendor/bootstrap-vue/src/icons/helpers/icon-base.js +139 -0
  299. package/dist/vendor/bootstrap-vue/src/icons/helpers/make-icon.js +56 -0
  300. package/dist/vendor/bootstrap-vue/src/icons/icon.js +56 -0
  301. package/dist/vendor/bootstrap-vue/src/icons/icons.js +1377 -0
  302. package/dist/vendor/bootstrap-vue/src/icons/iconstack.js +31 -0
  303. package/dist/vendor/bootstrap-vue/src/icons/index.js +4 -0
  304. package/dist/vendor/bootstrap-vue/src/icons/plugin.js +1410 -0
  305. package/dist/vendor/bootstrap-vue/src/icons-only.js +10 -0
  306. package/dist/vendor/bootstrap-vue/src/index.js +205 -0
  307. package/dist/vendor/bootstrap-vue/src/mixins/attrs.js +22 -0
  308. package/dist/vendor/bootstrap-vue/src/mixins/card.js +22 -0
  309. package/dist/vendor/bootstrap-vue/src/mixins/click-out.js +54 -0
  310. package/dist/vendor/bootstrap-vue/src/mixins/dropdown.js +457 -0
  311. package/dist/vendor/bootstrap-vue/src/mixins/focus-in.js +46 -0
  312. package/dist/vendor/bootstrap-vue/src/mixins/form-control.js +50 -0
  313. package/dist/vendor/bootstrap-vue/src/mixins/form-custom.js +23 -0
  314. package/dist/vendor/bootstrap-vue/src/mixins/form-options.js +72 -0
  315. package/dist/vendor/bootstrap-vue/src/mixins/form-radio-check-group.js +142 -0
  316. package/dist/vendor/bootstrap-vue/src/mixins/form-radio-check.js +318 -0
  317. package/dist/vendor/bootstrap-vue/src/mixins/form-selection.js +62 -0
  318. package/dist/vendor/bootstrap-vue/src/mixins/form-size.js +23 -0
  319. package/dist/vendor/bootstrap-vue/src/mixins/form-state.js +47 -0
  320. package/dist/vendor/bootstrap-vue/src/mixins/form-text.js +248 -0
  321. package/dist/vendor/bootstrap-vue/src/mixins/form-validity.js +50 -0
  322. package/dist/vendor/bootstrap-vue/src/mixins/has-listener.js +26 -0
  323. package/dist/vendor/bootstrap-vue/src/mixins/id.js +52 -0
  324. package/dist/vendor/bootstrap-vue/src/mixins/listen-on-document.js +63 -0
  325. package/dist/vendor/bootstrap-vue/src/mixins/listen-on-root.js +121 -0
  326. package/dist/vendor/bootstrap-vue/src/mixins/listen-on-window.js +63 -0
  327. package/dist/vendor/bootstrap-vue/src/mixins/listeners.js +24 -0
  328. package/dist/vendor/bootstrap-vue/src/mixins/model.js +10 -0
  329. package/dist/vendor/bootstrap-vue/src/mixins/normalize-slot.js +30 -0
  330. package/dist/vendor/bootstrap-vue/src/mixins/pagination.js +598 -0
  331. package/dist/vendor/bootstrap-vue/src/mixins/scoped-style.js +18 -0
  332. package/dist/vendor/bootstrap-vue/src/mixins/use-parent.js +14 -0
  333. package/dist/vendor/bootstrap-vue/src/utils/array.js +30 -0
  334. package/dist/vendor/bootstrap-vue/src/utils/bv-event.class.js +60 -0
  335. package/dist/vendor/bootstrap-vue/src/utils/cache.js +38 -0
  336. package/dist/vendor/bootstrap-vue/src/utils/clone-deep.js +18 -0
  337. package/dist/vendor/bootstrap-vue/src/utils/config-set.js +81 -0
  338. package/dist/vendor/bootstrap-vue/src/utils/config.js +77 -0
  339. package/dist/vendor/bootstrap-vue/src/utils/create-new-child-component.js +12 -0
  340. package/dist/vendor/bootstrap-vue/src/utils/css-escape.js +70 -0
  341. package/dist/vendor/bootstrap-vue/src/utils/date.js +135 -0
  342. package/dist/vendor/bootstrap-vue/src/utils/dom.js +298 -0
  343. package/dist/vendor/bootstrap-vue/src/utils/element-to-vue-instance-registry.js +34 -0
  344. package/dist/vendor/bootstrap-vue/src/utils/env.js +16 -0
  345. package/dist/vendor/bootstrap-vue/src/utils/events.js +78 -0
  346. package/dist/vendor/bootstrap-vue/src/utils/get-event-root.js +5 -0
  347. package/dist/vendor/bootstrap-vue/src/utils/get-instance-from-directive.js +5 -0
  348. package/dist/vendor/bootstrap-vue/src/utils/get-scope-id.js +9 -0
  349. package/dist/vendor/bootstrap-vue/src/utils/get.js +63 -0
  350. package/dist/vendor/bootstrap-vue/src/utils/html.js +16 -0
  351. package/dist/vendor/bootstrap-vue/src/utils/identity.js +3 -0
  352. package/dist/vendor/bootstrap-vue/src/utils/inspect.js +37 -0
  353. package/dist/vendor/bootstrap-vue/src/utils/locale.js +19 -0
  354. package/dist/vendor/bootstrap-vue/src/utils/loose-equal.js +59 -0
  355. package/dist/vendor/bootstrap-vue/src/utils/loose-index-of.js +13 -0
  356. package/dist/vendor/bootstrap-vue/src/utils/math.js +11 -0
  357. package/dist/vendor/bootstrap-vue/src/utils/memoize.js +14 -0
  358. package/dist/vendor/bootstrap-vue/src/utils/model.js +33 -0
  359. package/dist/vendor/bootstrap-vue/src/utils/noop.js +3 -0
  360. package/dist/vendor/bootstrap-vue/src/utils/normalize-slot.js +51 -0
  361. package/dist/vendor/bootstrap-vue/src/utils/number.js +23 -0
  362. package/dist/vendor/bootstrap-vue/src/utils/object.js +79 -0
  363. package/dist/vendor/bootstrap-vue/src/utils/observe-dom.js +76 -0
  364. package/dist/vendor/bootstrap-vue/src/utils/plugins.js +183 -0
  365. package/dist/vendor/bootstrap-vue/src/utils/props.js +103 -0
  366. package/dist/vendor/bootstrap-vue/src/utils/router.js +136 -0
  367. package/dist/vendor/bootstrap-vue/src/utils/safe-vue-instance.js +14 -0
  368. package/dist/vendor/bootstrap-vue/src/utils/stable-sort.js +28 -0
  369. package/dist/vendor/bootstrap-vue/src/utils/string.js +62 -0
  370. package/dist/vendor/bootstrap-vue/src/utils/stringify-object-values.js +31 -0
  371. package/dist/vendor/bootstrap-vue/src/utils/warn.js +60 -0
  372. package/dist/vendor/bootstrap-vue/src/vue.js +103 -0
  373. package/package.json +6 -4
  374. package/src/components/base/accordion/accordion_item.vue +1 -1
  375. package/src/components/base/badge/badge.scss +63 -63
  376. package/src/components/base/badge/badge.vue +1 -1
  377. package/src/components/base/breadcrumb/breadcrumb.vue +1 -1
  378. package/src/components/base/breadcrumb/breadcrumb_item.vue +1 -1
  379. package/src/components/base/button/button.vue +1 -1
  380. package/src/components/base/button_group/button_group.vue +1 -1
  381. package/src/components/base/carousel/carousel.vue +1 -1
  382. package/src/components/base/carousel/carousel_slide.vue +1 -1
  383. package/src/components/base/collapse/collapse.vue +1 -1
  384. package/src/components/base/dropdown/dropdown.vue +2 -2
  385. package/src/components/base/dropdown/dropdown_divider.vue +1 -1
  386. package/src/components/base/dropdown/dropdown_form.vue +1 -1
  387. package/src/components/base/dropdown/dropdown_item.vue +2 -1
  388. package/src/components/base/dropdown/dropdown_section_header.vue +1 -1
  389. package/src/components/base/dropdown/dropdown_text.vue +1 -1
  390. package/src/components/base/form/form.vue +1 -1
  391. package/src/components/base/form/form_checkbox/form_checkbox.vue +1 -1
  392. package/src/components/base/form/form_checkbox/form_checkbox_group.vue +2 -2
  393. package/src/components/base/form/form_group/form_group.vue +1 -1
  394. package/src/components/base/form/form_input/form_input.vue +1 -1
  395. package/src/components/base/form/form_input_group/form_input_group.vue +4 -1
  396. package/src/components/base/form/form_radio/form_radio.vue +1 -1
  397. package/src/components/base/form/form_radio_group/form_radio_group.vue +2 -2
  398. package/src/components/base/form/form_select/form_select.vue +1 -1
  399. package/src/components/base/form/form_text/form_text.vue +1 -1
  400. package/src/components/base/form/form_textarea/form_textarea.vue +3 -3
  401. package/src/components/base/form/input_group_text/input_group_text.vue +1 -1
  402. package/src/components/base/link/link.vue +1 -1
  403. package/src/components/base/modal/modal.vue +1 -1
  404. package/src/components/base/nav/nav.vue +1 -1
  405. package/src/components/base/nav/nav_item.vue +1 -1
  406. package/src/components/base/nav/nav_item_dropdown.vue +1 -1
  407. package/src/components/base/navbar/navbar.vue +1 -1
  408. package/src/components/base/new_dropdowns/disclosure/disclosure_dropdown_item.vue +1 -1
  409. package/src/components/base/popover/popover.vue +1 -1
  410. package/src/components/base/progress_bar/progress_bar.vue +1 -1
  411. package/src/components/base/segmented_control/segmented_control.vue +1 -1
  412. package/src/components/base/table/table.vue +1 -1
  413. package/src/components/base/table_lite/table_lite.vue +1 -1
  414. package/src/components/base/tabs/tab/tab.vue +1 -1
  415. package/src/components/base/tabs/tabs/tabs.vue +1 -1
  416. package/src/components/base/toast/toast.js +2 -1
  417. package/src/components/base/tooltip/tooltip.vue +1 -1
  418. package/src/components/experimental/duo/chat/duo_chat.vue +6 -2
  419. package/src/config.js +1 -1
  420. package/src/directives/collapse_toggle.js +1 -1
  421. package/src/directives/modal.js +1 -1
  422. package/src/directives/tooltip.js +1 -1
  423. package/src/scss/bootstrap_vue.scss +29 -29
  424. package/src/tokens/build/css/tokens.css +77 -0
  425. package/src/tokens/build/css/tokens.dark.css +77 -0
  426. package/src/tokens/build/js/tokens.dark.js +77 -0
  427. package/src/tokens/build/js/tokens.js +77 -0
  428. package/src/tokens/build/json/tokens.dark.json +1976 -0
  429. package/src/tokens/build/json/tokens.json +1976 -0
  430. package/src/tokens/build/scss/_tokens.dark.scss +77 -0
  431. package/src/tokens/build/scss/_tokens.scss +77 -0
  432. package/src/tokens/build/scss/_tokens_custom_properties.scss +77 -0
  433. package/src/tokens/status.tokens.json +746 -0
  434. package/src/utils/utils.js +1 -1
  435. package/src/vendor/bootstrap-vue/LICENSE +21 -0
  436. package/src/vendor/bootstrap-vue/nuxt/index.js +185 -0
  437. package/src/vendor/bootstrap-vue/nuxt/plugin.template.js +35 -0
  438. package/src/vendor/bootstrap-vue/package.json +205 -0
  439. package/src/vendor/bootstrap-vue/src/_custom-controls.scss +30 -0
  440. package/src/vendor/bootstrap-vue/src/_utilities.scss +22 -0
  441. package/src/vendor/bootstrap-vue/src/_variables.scss +177 -0
  442. package/src/vendor/bootstrap-vue/src/browser-icons.js +9 -0
  443. package/src/vendor/bootstrap-vue/src/browser.js +9 -0
  444. package/src/vendor/bootstrap-vue/src/bv-config.d.ts +4 -0
  445. package/src/vendor/bootstrap-vue/src/bv-config.js +6 -0
  446. package/src/vendor/bootstrap-vue/src/components/alert/README.md +280 -0
  447. package/src/vendor/bootstrap-vue/src/components/alert/alert.js +185 -0
  448. package/src/vendor/bootstrap-vue/src/components/alert/alert.spec.js +442 -0
  449. package/src/vendor/bootstrap-vue/src/components/alert/index.d.ts +13 -0
  450. package/src/vendor/bootstrap-vue/src/components/alert/index.js +8 -0
  451. package/src/vendor/bootstrap-vue/src/components/alert/package.json +72 -0
  452. package/src/vendor/bootstrap-vue/src/components/aspect/README.md +65 -0
  453. package/src/vendor/bootstrap-vue/src/components/aspect/aspect.js +65 -0
  454. package/src/vendor/bootstrap-vue/src/components/aspect/aspect.spec.js +121 -0
  455. package/src/vendor/bootstrap-vue/src/components/aspect/index.d.ts +11 -0
  456. package/src/vendor/bootstrap-vue/src/components/aspect/index.js +8 -0
  457. package/src/vendor/bootstrap-vue/src/components/aspect/package.json +26 -0
  458. package/src/vendor/bootstrap-vue/src/components/avatar/README.md +567 -0
  459. package/src/vendor/bootstrap-vue/src/components/avatar/_avatar.scss +148 -0
  460. package/src/vendor/bootstrap-vue/src/components/avatar/avatar-group.js +75 -0
  461. package/src/vendor/bootstrap-vue/src/components/avatar/avatar-group.spec.js +74 -0
  462. package/src/vendor/bootstrap-vue/src/components/avatar/avatar.js +228 -0
  463. package/src/vendor/bootstrap-vue/src/components/avatar/avatar.spec.js +355 -0
  464. package/src/vendor/bootstrap-vue/src/components/avatar/index.d.ts +14 -0
  465. package/src/vendor/bootstrap-vue/src/components/avatar/index.js +9 -0
  466. package/src/vendor/bootstrap-vue/src/components/avatar/index.scss +1 -0
  467. package/src/vendor/bootstrap-vue/src/components/avatar/package.json +149 -0
  468. package/src/vendor/bootstrap-vue/src/components/badge/README.md +126 -0
  469. package/src/vendor/bootstrap-vue/src/components/badge/badge.js +55 -0
  470. package/src/vendor/bootstrap-vue/src/components/badge/badge.spec.js +141 -0
  471. package/src/vendor/bootstrap-vue/src/components/badge/index.d.ts +11 -0
  472. package/src/vendor/bootstrap-vue/src/components/badge/index.js +8 -0
  473. package/src/vendor/bootstrap-vue/src/components/badge/package.json +29 -0
  474. package/src/vendor/bootstrap-vue/src/components/breadcrumb/README.md +94 -0
  475. package/src/vendor/bootstrap-vue/src/components/breadcrumb/breadcrumb-item.js +27 -0
  476. package/src/vendor/bootstrap-vue/src/components/breadcrumb/breadcrumb-item.spec.js +123 -0
  477. package/src/vendor/bootstrap-vue/src/components/breadcrumb/breadcrumb-link.js +43 -0
  478. package/src/vendor/bootstrap-vue/src/components/breadcrumb/breadcrumb-link.spec.js +117 -0
  479. package/src/vendor/bootstrap-vue/src/components/breadcrumb/breadcrumb.js +52 -0
  480. package/src/vendor/bootstrap-vue/src/components/breadcrumb/breadcrumb.spec.js +183 -0
  481. package/src/vendor/bootstrap-vue/src/components/breadcrumb/index.d.ts +17 -0
  482. package/src/vendor/bootstrap-vue/src/components/breadcrumb/index.js +10 -0
  483. package/src/vendor/bootstrap-vue/src/components/breadcrumb/package.json +62 -0
  484. package/src/vendor/bootstrap-vue/src/components/button/README.md +281 -0
  485. package/src/vendor/bootstrap-vue/src/components/button/button-close.js +65 -0
  486. package/src/vendor/bootstrap-vue/src/components/button/button-close.spec.js +210 -0
  487. package/src/vendor/bootstrap-vue/src/components/button/button.js +179 -0
  488. package/src/vendor/bootstrap-vue/src/components/button/button.spec.js +385 -0
  489. package/src/vendor/bootstrap-vue/src/components/button/index.d.ts +14 -0
  490. package/src/vendor/bootstrap-vue/src/components/button/index.js +14 -0
  491. package/src/vendor/bootstrap-vue/src/components/button/package.json +105 -0
  492. package/src/vendor/bootstrap-vue/src/components/button-group/README.md +112 -0
  493. package/src/vendor/bootstrap-vue/src/components/button-group/button-group.js +42 -0
  494. package/src/vendor/bootstrap-vue/src/components/button-group/button-group.spec.js +98 -0
  495. package/src/vendor/bootstrap-vue/src/components/button-group/index.d.ts +11 -0
  496. package/src/vendor/bootstrap-vue/src/components/button-group/index.js +11 -0
  497. package/src/vendor/bootstrap-vue/src/components/button-group/package.json +29 -0
  498. package/src/vendor/bootstrap-vue/src/components/button-toolbar/README.md +109 -0
  499. package/src/vendor/bootstrap-vue/src/components/button-toolbar/button-toolbar.js +117 -0
  500. package/src/vendor/bootstrap-vue/src/components/button-toolbar/button-toolbar.spec.js +185 -0
  501. package/src/vendor/bootstrap-vue/src/components/button-toolbar/index.d.ts +11 -0
  502. package/src/vendor/bootstrap-vue/src/components/button-toolbar/index.js +11 -0
  503. package/src/vendor/bootstrap-vue/src/components/button-toolbar/package.json +32 -0
  504. package/src/vendor/bootstrap-vue/src/components/calendar/README.md +735 -0
  505. package/src/vendor/bootstrap-vue/src/components/calendar/_calendar.scss +78 -0
  506. package/src/vendor/bootstrap-vue/src/components/calendar/calendar.js +1146 -0
  507. package/src/vendor/bootstrap-vue/src/components/calendar/calendar.spec.js +466 -0
  508. package/src/vendor/bootstrap-vue/src/components/calendar/index.d.ts +28 -0
  509. package/src/vendor/bootstrap-vue/src/components/calendar/index.js +8 -0
  510. package/src/vendor/bootstrap-vue/src/components/calendar/index.scss +1 -0
  511. package/src/vendor/bootstrap-vue/src/components/calendar/package.json +317 -0
  512. package/src/vendor/bootstrap-vue/src/components/card/README.md +729 -0
  513. package/src/vendor/bootstrap-vue/src/components/card/_card-img.scss +7 -0
  514. package/src/vendor/bootstrap-vue/src/components/card/card-body.js +69 -0
  515. package/src/vendor/bootstrap-vue/src/components/card/card-body.spec.js +142 -0
  516. package/src/vendor/bootstrap-vue/src/components/card/card-footer.js +48 -0
  517. package/src/vendor/bootstrap-vue/src/components/card/card-footer.spec.js +98 -0
  518. package/src/vendor/bootstrap-vue/src/components/card/card-group.js +33 -0
  519. package/src/vendor/bootstrap-vue/src/components/card/card-group.spec.js +75 -0
  520. package/src/vendor/bootstrap-vue/src/components/card/card-header.js +48 -0
  521. package/src/vendor/bootstrap-vue/src/components/card/card-header.spec.js +98 -0
  522. package/src/vendor/bootstrap-vue/src/components/card/card-img-lazy.js +47 -0
  523. package/src/vendor/bootstrap-vue/src/components/card/card-img-lazy.spec.js +204 -0
  524. package/src/vendor/bootstrap-vue/src/components/card/card-img.js +50 -0
  525. package/src/vendor/bootstrap-vue/src/components/card/card-img.spec.js +208 -0
  526. package/src/vendor/bootstrap-vue/src/components/card/card-sub-title.js +35 -0
  527. package/src/vendor/bootstrap-vue/src/components/card/card-sub-title.spec.js +60 -0
  528. package/src/vendor/bootstrap-vue/src/components/card/card-text.js +25 -0
  529. package/src/vendor/bootstrap-vue/src/components/card/card-text.spec.js +48 -0
  530. package/src/vendor/bootstrap-vue/src/components/card/card-title.js +33 -0
  531. package/src/vendor/bootstrap-vue/src/components/card/card-title.spec.js +45 -0
  532. package/src/vendor/bootstrap-vue/src/components/card/card.js +140 -0
  533. package/src/vendor/bootstrap-vue/src/components/card/card.spec.js +296 -0
  534. package/src/vendor/bootstrap-vue/src/components/card/index.d.ts +38 -0
  535. package/src/vendor/bootstrap-vue/src/components/card/index.js +40 -0
  536. package/src/vendor/bootstrap-vue/src/components/card/index.scss +1 -0
  537. package/src/vendor/bootstrap-vue/src/components/card/package.json +262 -0
  538. package/src/vendor/bootstrap-vue/src/components/carousel/README.md +320 -0
  539. package/src/vendor/bootstrap-vue/src/components/carousel/carousel-slide.js +132 -0
  540. package/src/vendor/bootstrap-vue/src/components/carousel/carousel-slide.spec.js +276 -0
  541. package/src/vendor/bootstrap-vue/src/components/carousel/carousel.js +655 -0
  542. package/src/vendor/bootstrap-vue/src/components/carousel/carousel.spec.js +1069 -0
  543. package/src/vendor/bootstrap-vue/src/components/carousel/index.d.ts +20 -0
  544. package/src/vendor/bootstrap-vue/src/components/carousel/index.js +12 -0
  545. package/src/vendor/bootstrap-vue/src/components/carousel/package.json +185 -0
  546. package/src/vendor/bootstrap-vue/src/components/collapse/README.md +321 -0
  547. package/src/vendor/bootstrap-vue/src/components/collapse/collapse.js +272 -0
  548. package/src/vendor/bootstrap-vue/src/components/collapse/collapse.spec.js +558 -0
  549. package/src/vendor/bootstrap-vue/src/components/collapse/helpers/bv-collapse.js +88 -0
  550. package/src/vendor/bootstrap-vue/src/components/collapse/index.d.ts +13 -0
  551. package/src/vendor/bootstrap-vue/src/components/collapse/index.js +10 -0
  552. package/src/vendor/bootstrap-vue/src/components/collapse/package.json +111 -0
  553. package/src/vendor/bootstrap-vue/src/components/dropdown/README.md +730 -0
  554. package/src/vendor/bootstrap-vue/src/components/dropdown/_dropdown-form.scss +38 -0
  555. package/src/vendor/bootstrap-vue/src/components/dropdown/_dropdown-text.scss +17 -0
  556. package/src/vendor/bootstrap-vue/src/components/dropdown/_dropdown.scss +58 -0
  557. package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-divider.js +36 -0
  558. package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-divider.spec.js +58 -0
  559. package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-form.js +47 -0
  560. package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-form.spec.js +110 -0
  561. package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-group.js +76 -0
  562. package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-group.spec.js +94 -0
  563. package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-header.js +46 -0
  564. package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-header.spec.js +73 -0
  565. package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-item-button.js +93 -0
  566. package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-item-button.spec.js +117 -0
  567. package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-item.js +87 -0
  568. package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-item.spec.js +147 -0
  569. package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-text.js +42 -0
  570. package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-text.spec.js +59 -0
  571. package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown.js +202 -0
  572. package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown.spec.js +1121 -0
  573. package/src/vendor/bootstrap-vue/src/components/dropdown/index.d.ts +36 -0
  574. package/src/vendor/bootstrap-vue/src/components/dropdown/index.js +44 -0
  575. package/src/vendor/bootstrap-vue/src/components/dropdown/index.scss +3 -0
  576. package/src/vendor/bootstrap-vue/src/components/dropdown/package.json +368 -0
  577. package/src/vendor/bootstrap-vue/src/components/embed/README.md +63 -0
  578. package/src/vendor/bootstrap-vue/src/components/embed/embed.js +51 -0
  579. package/src/vendor/bootstrap-vue/src/components/embed/embed.spec.js +110 -0
  580. package/src/vendor/bootstrap-vue/src/components/embed/index.d.ts +11 -0
  581. package/src/vendor/bootstrap-vue/src/components/embed/index.js +8 -0
  582. package/src/vendor/bootstrap-vue/src/components/embed/package.json +29 -0
  583. package/src/vendor/bootstrap-vue/src/components/form/README.md +370 -0
  584. package/src/vendor/bootstrap-vue/src/components/form/form-datalist.js +42 -0
  585. package/src/vendor/bootstrap-vue/src/components/form/form-datalist.spec.js +57 -0
  586. package/src/vendor/bootstrap-vue/src/components/form/form-invalid-feedback.js +51 -0
  587. package/src/vendor/bootstrap-vue/src/components/form/form-invalid-feedback.spec.js +170 -0
  588. package/src/vendor/bootstrap-vue/src/components/form/form-text.js +40 -0
  589. package/src/vendor/bootstrap-vue/src/components/form/form-text.spec.js +93 -0
  590. package/src/vendor/bootstrap-vue/src/components/form/form-valid-feedback.js +51 -0
  591. package/src/vendor/bootstrap-vue/src/components/form/form-valid-feedback.spec.js +157 -0
  592. package/src/vendor/bootstrap-vue/src/components/form/form.js +41 -0
  593. package/src/vendor/bootstrap-vue/src/components/form/form.spec.js +97 -0
  594. package/src/vendor/bootstrap-vue/src/components/form/index.d.ts +23 -0
  595. package/src/vendor/bootstrap-vue/src/components/form/index.js +24 -0
  596. package/src/vendor/bootstrap-vue/src/components/form/package.json +124 -0
  597. package/src/vendor/bootstrap-vue/src/components/form-btn-label-control/_form-btn-label-control.scss +125 -0
  598. package/src/vendor/bootstrap-vue/src/components/form-btn-label-control/bv-form-btn-label-control.js +278 -0
  599. package/src/vendor/bootstrap-vue/src/components/form-btn-label-control/index.scss +1 -0
  600. package/src/vendor/bootstrap-vue/src/components/form-btn-label-control/package.json +5 -0
  601. package/src/vendor/bootstrap-vue/src/components/form-checkbox/README.md +862 -0
  602. package/src/vendor/bootstrap-vue/src/components/form-checkbox/_form-checkbox-group.scss +2 -0
  603. package/src/vendor/bootstrap-vue/src/components/form-checkbox/_form-checkbox.scss +125 -0
  604. package/src/vendor/bootstrap-vue/src/components/form-checkbox/form-checkbox-group.js +42 -0
  605. package/src/vendor/bootstrap-vue/src/components/form-checkbox/form-checkbox-group.spec.js +642 -0
  606. package/src/vendor/bootstrap-vue/src/components/form-checkbox/form-checkbox.js +132 -0
  607. package/src/vendor/bootstrap-vue/src/components/form-checkbox/form-checkbox.spec.js +1331 -0
  608. package/src/vendor/bootstrap-vue/src/components/form-checkbox/index.d.ts +14 -0
  609. package/src/vendor/bootstrap-vue/src/components/form-checkbox/index.js +16 -0
  610. package/src/vendor/bootstrap-vue/src/components/form-checkbox/index.scss +2 -0
  611. package/src/vendor/bootstrap-vue/src/components/form-checkbox/package.json +172 -0
  612. package/src/vendor/bootstrap-vue/src/components/form-datepicker/README.md +694 -0
  613. package/src/vendor/bootstrap-vue/src/components/form-datepicker/_form-datepicker.scss +1 -0
  614. package/src/vendor/bootstrap-vue/src/components/form-datepicker/form-datepicker.js +342 -0
  615. package/src/vendor/bootstrap-vue/src/components/form-datepicker/form-datepicker.spec.js +562 -0
  616. package/src/vendor/bootstrap-vue/src/components/form-datepicker/index.d.ts +12 -0
  617. package/src/vendor/bootstrap-vue/src/components/form-datepicker/index.js +11 -0
  618. package/src/vendor/bootstrap-vue/src/components/form-datepicker/index.scss +1 -0
  619. package/src/vendor/bootstrap-vue/src/components/form-datepicker/package.json +420 -0
  620. package/src/vendor/bootstrap-vue/src/components/form-file/README.md +357 -0
  621. package/src/vendor/bootstrap-vue/src/components/form-file/_form-file.scss +61 -0
  622. package/src/vendor/bootstrap-vue/src/components/form-file/form-file.js +575 -0
  623. package/src/vendor/bootstrap-vue/src/components/form-file/form-file.spec.js +885 -0
  624. package/src/vendor/bootstrap-vue/src/components/form-file/index.d.ts +13 -0
  625. package/src/vendor/bootstrap-vue/src/components/form-file/index.js +11 -0
  626. package/src/vendor/bootstrap-vue/src/components/form-file/index.scss +1 -0
  627. package/src/vendor/bootstrap-vue/src/components/form-file/package.json +131 -0
  628. package/src/vendor/bootstrap-vue/src/components/form-group/README.md +337 -0
  629. package/src/vendor/bootstrap-vue/src/components/form-group/form-group.js +403 -0
  630. package/src/vendor/bootstrap-vue/src/components/form-group/form-group.spec.js +477 -0
  631. package/src/vendor/bootstrap-vue/src/components/form-group/index.d.ts +11 -0
  632. package/src/vendor/bootstrap-vue/src/components/form-group/index.js +11 -0
  633. package/src/vendor/bootstrap-vue/src/components/form-group/package.json +183 -0
  634. package/src/vendor/bootstrap-vue/src/components/form-input/README.md +612 -0
  635. package/src/vendor/bootstrap-vue/src/components/form-input/_form-input.scss +217 -0
  636. package/src/vendor/bootstrap-vue/src/components/form-input/form-input.js +168 -0
  637. package/src/vendor/bootstrap-vue/src/components/form-input/form-input.spec.js +986 -0
  638. package/src/vendor/bootstrap-vue/src/components/form-input/index.d.ts +13 -0
  639. package/src/vendor/bootstrap-vue/src/components/form-input/index.js +11 -0
  640. package/src/vendor/bootstrap-vue/src/components/form-input/index.scss +1 -0
  641. package/src/vendor/bootstrap-vue/src/components/form-input/package.json +135 -0
  642. package/src/vendor/bootstrap-vue/src/components/form-radio/README.md +566 -0
  643. package/src/vendor/bootstrap-vue/src/components/form-radio/_form-radio-group.scss +3 -0
  644. package/src/vendor/bootstrap-vue/src/components/form-radio/_form-radio.scss +47 -0
  645. package/src/vendor/bootstrap-vue/src/components/form-radio/form-radio-group.js +30 -0
  646. package/src/vendor/bootstrap-vue/src/components/form-radio/form-radio-group.spec.js +469 -0
  647. package/src/vendor/bootstrap-vue/src/components/form-radio/form-radio.js +28 -0
  648. package/src/vendor/bootstrap-vue/src/components/form-radio/form-radio.spec.js +952 -0
  649. package/src/vendor/bootstrap-vue/src/components/form-radio/index.d.ts +14 -0
  650. package/src/vendor/bootstrap-vue/src/components/form-radio/index.js +14 -0
  651. package/src/vendor/bootstrap-vue/src/components/form-radio/index.scss +2 -0
  652. package/src/vendor/bootstrap-vue/src/components/form-radio/package.json +162 -0
  653. package/src/vendor/bootstrap-vue/src/components/form-rating/README.md +526 -0
  654. package/src/vendor/bootstrap-vue/src/components/form-rating/_form-rating.scss +57 -0
  655. package/src/vendor/bootstrap-vue/src/components/form-rating/form-rating.js +411 -0
  656. package/src/vendor/bootstrap-vue/src/components/form-rating/form-rating.spec.js +544 -0
  657. package/src/vendor/bootstrap-vue/src/components/form-rating/index.d.ts +14 -0
  658. package/src/vendor/bootstrap-vue/src/components/form-rating/index.js +8 -0
  659. package/src/vendor/bootstrap-vue/src/components/form-rating/index.scss +1 -0
  660. package/src/vendor/bootstrap-vue/src/components/form-rating/package.json +166 -0
  661. package/src/vendor/bootstrap-vue/src/components/form-select/README.md +504 -0
  662. package/src/vendor/bootstrap-vue/src/components/form-select/form-select-option-group.js +48 -0
  663. package/src/vendor/bootstrap-vue/src/components/form-select/form-select-option-group.spec.js +138 -0
  664. package/src/vendor/bootstrap-vue/src/components/form-select/form-select-option.js +35 -0
  665. package/src/vendor/bootstrap-vue/src/components/form-select/form-select-option.spec.js +75 -0
  666. package/src/vendor/bootstrap-vue/src/components/form-select/form-select.js +153 -0
  667. package/src/vendor/bootstrap-vue/src/components/form-select/form-select.spec.js +723 -0
  668. package/src/vendor/bootstrap-vue/src/components/form-select/helpers/mixin-options.js +56 -0
  669. package/src/vendor/bootstrap-vue/src/components/form-select/index.d.ts +17 -0
  670. package/src/vendor/bootstrap-vue/src/components/form-select/index.js +17 -0
  671. package/src/vendor/bootstrap-vue/src/components/form-select/package.json +132 -0
  672. package/src/vendor/bootstrap-vue/src/components/form-spinbutton/README.md +411 -0
  673. package/src/vendor/bootstrap-vue/src/components/form-spinbutton/_spinbutton.scss +76 -0
  674. package/src/vendor/bootstrap-vue/src/components/form-spinbutton/form-spinbutton.js +572 -0
  675. package/src/vendor/bootstrap-vue/src/components/form-spinbutton/form-spinbutton.spec.js +731 -0
  676. package/src/vendor/bootstrap-vue/src/components/form-spinbutton/index.d.ts +12 -0
  677. package/src/vendor/bootstrap-vue/src/components/form-spinbutton/index.js +11 -0
  678. package/src/vendor/bootstrap-vue/src/components/form-spinbutton/index.scss +1 -0
  679. package/src/vendor/bootstrap-vue/src/components/form-spinbutton/package.json +150 -0
  680. package/src/vendor/bootstrap-vue/src/components/form-tags/README.md +880 -0
  681. package/src/vendor/bootstrap-vue/src/components/form-tags/_form-tags.scss +70 -0
  682. package/src/vendor/bootstrap-vue/src/components/form-tags/form-tag.js +94 -0
  683. package/src/vendor/bootstrap-vue/src/components/form-tags/form-tag.spec.js +166 -0
  684. package/src/vendor/bootstrap-vue/src/components/form-tags/form-tags.js +891 -0
  685. package/src/vendor/bootstrap-vue/src/components/form-tags/form-tags.spec.js +920 -0
  686. package/src/vendor/bootstrap-vue/src/components/form-tags/index.d.ts +16 -0
  687. package/src/vendor/bootstrap-vue/src/components/form-tags/index.js +14 -0
  688. package/src/vendor/bootstrap-vue/src/components/form-tags/index.scss +1 -0
  689. package/src/vendor/bootstrap-vue/src/components/form-tags/package.json +440 -0
  690. package/src/vendor/bootstrap-vue/src/components/form-textarea/README.md +453 -0
  691. package/src/vendor/bootstrap-vue/src/components/form-textarea/form-textarea.js +226 -0
  692. package/src/vendor/bootstrap-vue/src/components/form-textarea/form-textarea.spec.js +1000 -0
  693. package/src/vendor/bootstrap-vue/src/components/form-textarea/index.d.ts +13 -0
  694. package/src/vendor/bootstrap-vue/src/components/form-textarea/index.js +11 -0
  695. package/src/vendor/bootstrap-vue/src/components/form-textarea/package.json +122 -0
  696. package/src/vendor/bootstrap-vue/src/components/form-timepicker/README.md +450 -0
  697. package/src/vendor/bootstrap-vue/src/components/form-timepicker/_form-timepicker.scss +1 -0
  698. package/src/vendor/bootstrap-vue/src/components/form-timepicker/form-timepicker.js +308 -0
  699. package/src/vendor/bootstrap-vue/src/components/form-timepicker/form-timepicker.spec.js +440 -0
  700. package/src/vendor/bootstrap-vue/src/components/form-timepicker/index.d.ts +12 -0
  701. package/src/vendor/bootstrap-vue/src/components/form-timepicker/index.js +11 -0
  702. package/src/vendor/bootstrap-vue/src/components/form-timepicker/index.scss +1 -0
  703. package/src/vendor/bootstrap-vue/src/components/form-timepicker/package.json +255 -0
  704. package/src/vendor/bootstrap-vue/src/components/image/README.md +322 -0
  705. package/src/vendor/bootstrap-vue/src/components/image/img-lazy.js +161 -0
  706. package/src/vendor/bootstrap-vue/src/components/image/img-lazy.spec.js +96 -0
  707. package/src/vendor/bootstrap-vue/src/components/image/img.js +139 -0
  708. package/src/vendor/bootstrap-vue/src/components/image/img.spec.js +255 -0
  709. package/src/vendor/bootstrap-vue/src/components/image/index.d.ts +14 -0
  710. package/src/vendor/bootstrap-vue/src/components/image/index.js +12 -0
  711. package/src/vendor/bootstrap-vue/src/components/image/package.json +152 -0
  712. package/src/vendor/bootstrap-vue/src/components/index.d.ts +56 -0
  713. package/src/vendor/bootstrap-vue/src/components/index.js +110 -0
  714. package/src/vendor/bootstrap-vue/src/components/index.scss +27 -0
  715. package/src/vendor/bootstrap-vue/src/components/input-group/README.md +334 -0
  716. package/src/vendor/bootstrap-vue/src/components/input-group/_input-group.scss +29 -0
  717. package/src/vendor/bootstrap-vue/src/components/input-group/index.d.ts +23 -0
  718. package/src/vendor/bootstrap-vue/src/components/input-group/index.js +25 -0
  719. package/src/vendor/bootstrap-vue/src/components/input-group/index.scss +1 -0
  720. package/src/vendor/bootstrap-vue/src/components/input-group/input-group-addon.js +43 -0
  721. package/src/vendor/bootstrap-vue/src/components/input-group/input-group-append.js +31 -0
  722. package/src/vendor/bootstrap-vue/src/components/input-group/input-group-append.spec.js +84 -0
  723. package/src/vendor/bootstrap-vue/src/components/input-group/input-group-prepend.js +31 -0
  724. package/src/vendor/bootstrap-vue/src/components/input-group/input-group-prepend.spec.js +84 -0
  725. package/src/vendor/bootstrap-vue/src/components/input-group/input-group-text.js +31 -0
  726. package/src/vendor/bootstrap-vue/src/components/input-group/input-group-text.spec.js +45 -0
  727. package/src/vendor/bootstrap-vue/src/components/input-group/input-group.js +73 -0
  728. package/src/vendor/bootstrap-vue/src/components/input-group/input-group.spec.js +153 -0
  729. package/src/vendor/bootstrap-vue/src/components/input-group/package.json +109 -0
  730. package/src/vendor/bootstrap-vue/src/components/jumbotron/README.md +109 -0
  731. package/src/vendor/bootstrap-vue/src/components/jumbotron/index.d.ts +11 -0
  732. package/src/vendor/bootstrap-vue/src/components/jumbotron/index.js +8 -0
  733. package/src/vendor/bootstrap-vue/src/components/jumbotron/jumbotron.js +103 -0
  734. package/src/vendor/bootstrap-vue/src/components/jumbotron/jumbotron.spec.js +254 -0
  735. package/src/vendor/bootstrap-vue/src/components/jumbotron/package.json +66 -0
  736. package/src/vendor/bootstrap-vue/src/components/layout/README.md +791 -0
  737. package/src/vendor/bootstrap-vue/src/components/layout/col.js +154 -0
  738. package/src/vendor/bootstrap-vue/src/components/layout/col.spec.js +192 -0
  739. package/src/vendor/bootstrap-vue/src/components/layout/container.js +40 -0
  740. package/src/vendor/bootstrap-vue/src/components/layout/container.spec.js +75 -0
  741. package/src/vendor/bootstrap-vue/src/components/layout/form-row.js +31 -0
  742. package/src/vendor/bootstrap-vue/src/components/layout/form-row.spec.js +45 -0
  743. package/src/vendor/bootstrap-vue/src/components/layout/index.d.ts +20 -0
  744. package/src/vendor/bootstrap-vue/src/components/layout/index.js +16 -0
  745. package/src/vendor/bootstrap-vue/src/components/layout/package.json +166 -0
  746. package/src/vendor/bootstrap-vue/src/components/layout/row.js +111 -0
  747. package/src/vendor/bootstrap-vue/src/components/layout/row.spec.js +138 -0
  748. package/src/vendor/bootstrap-vue/src/components/link/README.md +76 -0
  749. package/src/vendor/bootstrap-vue/src/components/link/index.d.ts +14 -0
  750. package/src/vendor/bootstrap-vue/src/components/link/index.js +8 -0
  751. package/src/vendor/bootstrap-vue/src/components/link/link.js +212 -0
  752. package/src/vendor/bootstrap-vue/src/components/link/link.spec.js +434 -0
  753. package/src/vendor/bootstrap-vue/src/components/link/package.json +57 -0
  754. package/src/vendor/bootstrap-vue/src/components/list-group/README.md +291 -0
  755. package/src/vendor/bootstrap-vue/src/components/list-group/index.d.ts +14 -0
  756. package/src/vendor/bootstrap-vue/src/components/list-group/index.js +12 -0
  757. package/src/vendor/bootstrap-vue/src/components/list-group/list-group-item.js +76 -0
  758. package/src/vendor/bootstrap-vue/src/components/list-group/list-group-item.spec.js +286 -0
  759. package/src/vendor/bootstrap-vue/src/components/list-group/list-group.js +42 -0
  760. package/src/vendor/bootstrap-vue/src/components/list-group/list-group.spec.js +132 -0
  761. package/src/vendor/bootstrap-vue/src/components/list-group/package.json +52 -0
  762. package/src/vendor/bootstrap-vue/src/components/media/README.md +183 -0
  763. package/src/vendor/bootstrap-vue/src/components/media/_media.scss +9 -0
  764. package/src/vendor/bootstrap-vue/src/components/media/index.d.ts +17 -0
  765. package/src/vendor/bootstrap-vue/src/components/media/index.js +14 -0
  766. package/src/vendor/bootstrap-vue/src/components/media/index.scss +1 -0
  767. package/src/vendor/bootstrap-vue/src/components/media/media-aside.js +45 -0
  768. package/src/vendor/bootstrap-vue/src/components/media/media-aside.spec.js +79 -0
  769. package/src/vendor/bootstrap-vue/src/components/media/media-body.js +25 -0
  770. package/src/vendor/bootstrap-vue/src/components/media/media-body.spec.js +47 -0
  771. package/src/vendor/bootstrap-vue/src/components/media/media.js +52 -0
  772. package/src/vendor/bootstrap-vue/src/components/media/media.spec.js +149 -0
  773. package/src/vendor/bootstrap-vue/src/components/media/package.json +65 -0
  774. package/src/vendor/bootstrap-vue/src/components/modal/README.md +1193 -0
  775. package/src/vendor/bootstrap-vue/src/components/modal/_modal.scss +5 -0
  776. package/src/vendor/bootstrap-vue/src/components/modal/helpers/bv-modal-event.class.js +22 -0
  777. package/src/vendor/bootstrap-vue/src/components/modal/helpers/bv-modal-event.class.spec.js +82 -0
  778. package/src/vendor/bootstrap-vue/src/components/modal/helpers/bv-modal.js +279 -0
  779. package/src/vendor/bootstrap-vue/src/components/modal/helpers/bv-modal.spec.js +178 -0
  780. package/src/vendor/bootstrap-vue/src/components/modal/helpers/modal-manager.js +219 -0
  781. package/src/vendor/bootstrap-vue/src/components/modal/index.d.ts +95 -0
  782. package/src/vendor/bootstrap-vue/src/components/modal/index.js +13 -0
  783. package/src/vendor/bootstrap-vue/src/components/modal/index.scss +1 -0
  784. package/src/vendor/bootstrap-vue/src/components/modal/modal.js +1022 -0
  785. package/src/vendor/bootstrap-vue/src/components/modal/modal.spec.js +1418 -0
  786. package/src/vendor/bootstrap-vue/src/components/modal/package.json +587 -0
  787. package/src/vendor/bootstrap-vue/src/components/nav/README.md +480 -0
  788. package/src/vendor/bootstrap-vue/src/components/nav/_nav-item-dropdown.scss +1 -0
  789. package/src/vendor/bootstrap-vue/src/components/nav/index.d.ts +27 -0
  790. package/src/vendor/bootstrap-vue/src/components/nav/index.js +25 -0
  791. package/src/vendor/bootstrap-vue/src/components/nav/index.scss +1 -0
  792. package/src/vendor/bootstrap-vue/src/components/nav/nav-form.js +50 -0
  793. package/src/vendor/bootstrap-vue/src/components/nav/nav-form.spec.js +93 -0
  794. package/src/vendor/bootstrap-vue/src/components/nav/nav-item-dropdown.js +123 -0
  795. package/src/vendor/bootstrap-vue/src/components/nav/nav-item-dropdown.spec.js +268 -0
  796. package/src/vendor/bootstrap-vue/src/components/nav/nav-item.js +49 -0
  797. package/src/vendor/bootstrap-vue/src/components/nav/nav-item.spec.js +127 -0
  798. package/src/vendor/bootstrap-vue/src/components/nav/nav-text.js +18 -0
  799. package/src/vendor/bootstrap-vue/src/components/nav/nav-text.spec.js +30 -0
  800. package/src/vendor/bootstrap-vue/src/components/nav/nav.js +60 -0
  801. package/src/vendor/bootstrap-vue/src/components/nav/nav.spec.js +244 -0
  802. package/src/vendor/bootstrap-vue/src/components/nav/package.json +238 -0
  803. package/src/vendor/bootstrap-vue/src/components/navbar/README.md +339 -0
  804. package/src/vendor/bootstrap-vue/src/components/navbar/_navbar.scss +1 -0
  805. package/src/vendor/bootstrap-vue/src/components/navbar/index.d.ts +19 -0
  806. package/src/vendor/bootstrap-vue/src/components/navbar/index.js +25 -0
  807. package/src/vendor/bootstrap-vue/src/components/navbar/index.scss +1 -0
  808. package/src/vendor/bootstrap-vue/src/components/navbar/navbar-brand.js +42 -0
  809. package/src/vendor/bootstrap-vue/src/components/navbar/navbar-brand.spec.js +50 -0
  810. package/src/vendor/bootstrap-vue/src/components/navbar/navbar-nav.js +45 -0
  811. package/src/vendor/bootstrap-vue/src/components/navbar/navbar-nav.spec.js +105 -0
  812. package/src/vendor/bootstrap-vue/src/components/navbar/navbar-toggle.js +84 -0
  813. package/src/vendor/bootstrap-vue/src/components/navbar/navbar-toggle.spec.js +189 -0
  814. package/src/vendor/bootstrap-vue/src/components/navbar/navbar.js +78 -0
  815. package/src/vendor/bootstrap-vue/src/components/navbar/navbar.spec.js +130 -0
  816. package/src/vendor/bootstrap-vue/src/components/navbar/package.json +134 -0
  817. package/src/vendor/bootstrap-vue/src/components/overlay/README.md +815 -0
  818. package/src/vendor/bootstrap-vue/src/components/overlay/index.d.ts +11 -0
  819. package/src/vendor/bootstrap-vue/src/components/overlay/index.js +8 -0
  820. package/src/vendor/bootstrap-vue/src/components/overlay/overlay.js +162 -0
  821. package/src/vendor/bootstrap-vue/src/components/overlay/overlay.spec.js +257 -0
  822. package/src/vendor/bootstrap-vue/src/components/overlay/package.json +130 -0
  823. package/src/vendor/bootstrap-vue/src/components/pagination/README.md +430 -0
  824. package/src/vendor/bootstrap-vue/src/components/pagination/_pagination.scss +26 -0
  825. package/src/vendor/bootstrap-vue/src/components/pagination/index.d.ts +11 -0
  826. package/src/vendor/bootstrap-vue/src/components/pagination/index.js +8 -0
  827. package/src/vendor/bootstrap-vue/src/components/pagination/index.scss +1 -0
  828. package/src/vendor/bootstrap-vue/src/components/pagination/package.json +295 -0
  829. package/src/vendor/bootstrap-vue/src/components/pagination/pagination.js +138 -0
  830. package/src/vendor/bootstrap-vue/src/components/pagination/pagination.spec.js +1198 -0
  831. package/src/vendor/bootstrap-vue/src/components/pagination-nav/README.md +544 -0
  832. package/src/vendor/bootstrap-vue/src/components/pagination-nav/_pagination-nav.scss +2 -0
  833. package/src/vendor/bootstrap-vue/src/components/pagination-nav/index.d.ts +11 -0
  834. package/src/vendor/bootstrap-vue/src/components/pagination-nav/index.js +8 -0
  835. package/src/vendor/bootstrap-vue/src/components/pagination-nav/index.scss +1 -0
  836. package/src/vendor/bootstrap-vue/src/components/pagination-nav/package.json +315 -0
  837. package/src/vendor/bootstrap-vue/src/components/pagination-nav/pagination-nav.js +281 -0
  838. package/src/vendor/bootstrap-vue/src/components/pagination-nav/pagination-nav.spec.js +671 -0
  839. package/src/vendor/bootstrap-vue/src/components/popover/README.md +964 -0
  840. package/src/vendor/bootstrap-vue/src/components/popover/_popover.scss +113 -0
  841. package/src/vendor/bootstrap-vue/src/components/popover/helpers/bv-popover-template.js +50 -0
  842. package/src/vendor/bootstrap-vue/src/components/popover/helpers/bv-popover.js +28 -0
  843. package/src/vendor/bootstrap-vue/src/components/popover/index.d.ts +11 -0
  844. package/src/vendor/bootstrap-vue/src/components/popover/index.js +10 -0
  845. package/src/vendor/bootstrap-vue/src/components/popover/index.scss +1 -0
  846. package/src/vendor/bootstrap-vue/src/components/popover/package.json +264 -0
  847. package/src/vendor/bootstrap-vue/src/components/popover/popover.js +46 -0
  848. package/src/vendor/bootstrap-vue/src/components/popover/popover.spec.js +199 -0
  849. package/src/vendor/bootstrap-vue/src/components/progress/README.md +376 -0
  850. package/src/vendor/bootstrap-vue/src/components/progress/index.d.ts +14 -0
  851. package/src/vendor/bootstrap-vue/src/components/progress/index.js +12 -0
  852. package/src/vendor/bootstrap-vue/src/components/progress/package.json +109 -0
  853. package/src/vendor/bootstrap-vue/src/components/progress/progress-bar.js +133 -0
  854. package/src/vendor/bootstrap-vue/src/components/progress/progress-bar.spec.js +270 -0
  855. package/src/vendor/bootstrap-vue/src/components/progress/progress.js +57 -0
  856. package/src/vendor/bootstrap-vue/src/components/progress/progress.spec.js +71 -0
  857. package/src/vendor/bootstrap-vue/src/components/sidebar/README.md +406 -0
  858. package/src/vendor/bootstrap-vue/src/components/sidebar/_sidebar.scss +97 -0
  859. package/src/vendor/bootstrap-vue/src/components/sidebar/index.d.ts +11 -0
  860. package/src/vendor/bootstrap-vue/src/components/sidebar/index.js +10 -0
  861. package/src/vendor/bootstrap-vue/src/components/sidebar/index.scss +1 -0
  862. package/src/vendor/bootstrap-vue/src/components/sidebar/package.json +239 -0
  863. package/src/vendor/bootstrap-vue/src/components/sidebar/sidebar.js +438 -0
  864. package/src/vendor/bootstrap-vue/src/components/sidebar/sidebar.spec.js +404 -0
  865. package/src/vendor/bootstrap-vue/src/components/skeleton/README.md +275 -0
  866. package/src/vendor/bootstrap-vue/src/components/skeleton/_skeleton.scss +141 -0
  867. package/src/vendor/bootstrap-vue/src/components/skeleton/index.d.ts +23 -0
  868. package/src/vendor/bootstrap-vue/src/components/skeleton/index.js +18 -0
  869. package/src/vendor/bootstrap-vue/src/components/skeleton/index.scss +1 -0
  870. package/src/vendor/bootstrap-vue/src/components/skeleton/package.json +136 -0
  871. package/src/vendor/bootstrap-vue/src/components/skeleton/skeleton-icon.js +45 -0
  872. package/src/vendor/bootstrap-vue/src/components/skeleton/skeleton-icon.spec.js +86 -0
  873. package/src/vendor/bootstrap-vue/src/components/skeleton/skeleton-img.js +49 -0
  874. package/src/vendor/bootstrap-vue/src/components/skeleton/skeleton-img.spec.js +139 -0
  875. package/src/vendor/bootstrap-vue/src/components/skeleton/skeleton-table.js +58 -0
  876. package/src/vendor/bootstrap-vue/src/components/skeleton/skeleton-table.spec.js +119 -0
  877. package/src/vendor/bootstrap-vue/src/components/skeleton/skeleton-wrapper.js +47 -0
  878. package/src/vendor/bootstrap-vue/src/components/skeleton/skeleton-wrapper.spec.js +48 -0
  879. package/src/vendor/bootstrap-vue/src/components/skeleton/skeleton.js +46 -0
  880. package/src/vendor/bootstrap-vue/src/components/skeleton/skeleton.spec.js +126 -0
  881. package/src/vendor/bootstrap-vue/src/components/spinner/README.md +229 -0
  882. package/src/vendor/bootstrap-vue/src/components/spinner/index.d.ts +11 -0
  883. package/src/vendor/bootstrap-vue/src/components/spinner/index.js +8 -0
  884. package/src/vendor/bootstrap-vue/src/components/spinner/package.json +38 -0
  885. package/src/vendor/bootstrap-vue/src/components/spinner/spinner.js +54 -0
  886. package/src/vendor/bootstrap-vue/src/components/spinner/spinner.spec.js +305 -0
  887. package/src/vendor/bootstrap-vue/src/components/table/README.md +3170 -0
  888. package/src/vendor/bootstrap-vue/src/components/table/_table.scss +474 -0
  889. package/src/vendor/bootstrap-vue/src/components/table/helpers/constants.js +30 -0
  890. package/src/vendor/bootstrap-vue/src/components/table/helpers/default-sort-compare.js +60 -0
  891. package/src/vendor/bootstrap-vue/src/components/table/helpers/default-sort-compare.spec.js +112 -0
  892. package/src/vendor/bootstrap-vue/src/components/table/helpers/filter-event.js +38 -0
  893. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-bottom-row.js +44 -0
  894. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-busy.js +88 -0
  895. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-caption.js +49 -0
  896. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-colgroup.js +27 -0
  897. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-empty.js +105 -0
  898. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-filtering.js +271 -0
  899. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-items.js +146 -0
  900. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-pagination.js +38 -0
  901. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-provider.js +188 -0
  902. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-selectable.js +241 -0
  903. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-sorting.js +299 -0
  904. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-stacked.js +33 -0
  905. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-table-renderer.js +209 -0
  906. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-tbody-row.js +360 -0
  907. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-tbody.js +258 -0
  908. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-tfoot.js +55 -0
  909. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-thead.js +238 -0
  910. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-top-row.js +37 -0
  911. package/src/vendor/bootstrap-vue/src/components/table/helpers/normalize-fields.js +71 -0
  912. package/src/vendor/bootstrap-vue/src/components/table/helpers/normalize-fields.spec.js +93 -0
  913. package/src/vendor/bootstrap-vue/src/components/table/helpers/sanitize-row.js +39 -0
  914. package/src/vendor/bootstrap-vue/src/components/table/helpers/stringify-record-values.js +11 -0
  915. package/src/vendor/bootstrap-vue/src/components/table/helpers/text-selection-active.js +13 -0
  916. package/src/vendor/bootstrap-vue/src/components/table/index.d.ts +243 -0
  917. package/src/vendor/bootstrap-vue/src/components/table/index.js +56 -0
  918. package/src/vendor/bootstrap-vue/src/components/table/index.scss +1 -0
  919. package/src/vendor/bootstrap-vue/src/components/table/package.json +1767 -0
  920. package/src/vendor/bootstrap-vue/src/components/table/table-busy.spec.js +150 -0
  921. package/src/vendor/bootstrap-vue/src/components/table/table-caption.spec.js +176 -0
  922. package/src/vendor/bootstrap-vue/src/components/table/table-colgroup.spec.js +81 -0
  923. package/src/vendor/bootstrap-vue/src/components/table/table-filtering.spec.js +409 -0
  924. package/src/vendor/bootstrap-vue/src/components/table/table-item-formatter.spec.js +56 -0
  925. package/src/vendor/bootstrap-vue/src/components/table/table-lite.js +63 -0
  926. package/src/vendor/bootstrap-vue/src/components/table/table-lite.spec.js +682 -0
  927. package/src/vendor/bootstrap-vue/src/components/table/table-pagination.spec.js +133 -0
  928. package/src/vendor/bootstrap-vue/src/components/table/table-primarykey.spec.js +83 -0
  929. package/src/vendor/bootstrap-vue/src/components/table/table-provider.spec.js +411 -0
  930. package/src/vendor/bootstrap-vue/src/components/table/table-row-details.spec.js +459 -0
  931. package/src/vendor/bootstrap-vue/src/components/table/table-selectable.spec.js +1182 -0
  932. package/src/vendor/bootstrap-vue/src/components/table/table-simple.js +50 -0
  933. package/src/vendor/bootstrap-vue/src/components/table/table-simple.spec.js +206 -0
  934. package/src/vendor/bootstrap-vue/src/components/table/table-sorting.spec.js +858 -0
  935. package/src/vendor/bootstrap-vue/src/components/table/table-sticky-column.spec.js +377 -0
  936. package/src/vendor/bootstrap-vue/src/components/table/table-tbody-bottom-row.spec.js +94 -0
  937. package/src/vendor/bootstrap-vue/src/components/table/table-tbody-row-events.spec.js +529 -0
  938. package/src/vendor/bootstrap-vue/src/components/table/table-tbody-top-row.spec.js +88 -0
  939. package/src/vendor/bootstrap-vue/src/components/table/table-tbody-transition.spec.js +83 -0
  940. package/src/vendor/bootstrap-vue/src/components/table/table-tfoot-custom.spec.js +91 -0
  941. package/src/vendor/bootstrap-vue/src/components/table/table-tfoot-events.spec.js +137 -0
  942. package/src/vendor/bootstrap-vue/src/components/table/table-thead-events.spec.js +155 -0
  943. package/src/vendor/bootstrap-vue/src/components/table/table-thead-top.spec.js +96 -0
  944. package/src/vendor/bootstrap-vue/src/components/table/table.js +89 -0
  945. package/src/vendor/bootstrap-vue/src/components/table/table.spec.js +692 -0
  946. package/src/vendor/bootstrap-vue/src/components/table/tbody.js +103 -0
  947. package/src/vendor/bootstrap-vue/src/components/table/td.js +195 -0
  948. package/src/vendor/bootstrap-vue/src/components/table/tfoot.js +95 -0
  949. package/src/vendor/bootstrap-vue/src/components/table/th.js +25 -0
  950. package/src/vendor/bootstrap-vue/src/components/table/thead.js +98 -0
  951. package/src/vendor/bootstrap-vue/src/components/table/tr.js +122 -0
  952. package/src/vendor/bootstrap-vue/src/components/tabs/README.md +575 -0
  953. package/src/vendor/bootstrap-vue/src/components/tabs/index.d.ts +17 -0
  954. package/src/vendor/bootstrap-vue/src/components/tabs/index.js +12 -0
  955. package/src/vendor/bootstrap-vue/src/components/tabs/package.json +205 -0
  956. package/src/vendor/bootstrap-vue/src/components/tabs/tab.js +197 -0
  957. package/src/vendor/bootstrap-vue/src/components/tabs/tab.spec.js +330 -0
  958. package/src/vendor/bootstrap-vue/src/components/tabs/tabs.js +688 -0
  959. package/src/vendor/bootstrap-vue/src/components/tabs/tabs.spec.js +836 -0
  960. package/src/vendor/bootstrap-vue/src/components/time/README.md +431 -0
  961. package/src/vendor/bootstrap-vue/src/components/time/_time.scss +41 -0
  962. package/src/vendor/bootstrap-vue/src/components/time/index.d.ts +27 -0
  963. package/src/vendor/bootstrap-vue/src/components/time/index.js +8 -0
  964. package/src/vendor/bootstrap-vue/src/components/time/index.scss +1 -0
  965. package/src/vendor/bootstrap-vue/src/components/time/package.json +123 -0
  966. package/src/vendor/bootstrap-vue/src/components/time/time.js +601 -0
  967. package/src/vendor/bootstrap-vue/src/components/time/time.spec.js +330 -0
  968. package/src/vendor/bootstrap-vue/src/components/toast/README.md +658 -0
  969. package/src/vendor/bootstrap-vue/src/components/toast/_toast.scss +79 -0
  970. package/src/vendor/bootstrap-vue/src/components/toast/_toaster-transition.scss +45 -0
  971. package/src/vendor/bootstrap-vue/src/components/toast/_toaster.scss +108 -0
  972. package/src/vendor/bootstrap-vue/src/components/toast/helpers/bv-toast.js +208 -0
  973. package/src/vendor/bootstrap-vue/src/components/toast/helpers/bv-toast.spec.js +131 -0
  974. package/src/vendor/bootstrap-vue/src/components/toast/index.d.ts +70 -0
  975. package/src/vendor/bootstrap-vue/src/components/toast/index.js +12 -0
  976. package/src/vendor/bootstrap-vue/src/components/toast/index.scss +3 -0
  977. package/src/vendor/bootstrap-vue/src/components/toast/package.json +188 -0
  978. package/src/vendor/bootstrap-vue/src/components/toast/toast.js +454 -0
  979. package/src/vendor/bootstrap-vue/src/components/toast/toast.spec.js +346 -0
  980. package/src/vendor/bootstrap-vue/src/components/toast/toaster.js +139 -0
  981. package/src/vendor/bootstrap-vue/src/components/toast/toaster.spec.js +77 -0
  982. package/src/vendor/bootstrap-vue/src/components/tooltip/README.md +559 -0
  983. package/src/vendor/bootstrap-vue/src/components/tooltip/_tooltip.scss +86 -0
  984. package/src/vendor/bootstrap-vue/src/components/tooltip/helpers/bv-popper.js +248 -0
  985. package/src/vendor/bootstrap-vue/src/components/tooltip/helpers/bv-tooltip-template.js +130 -0
  986. package/src/vendor/bootstrap-vue/src/components/tooltip/helpers/bv-tooltip.js +981 -0
  987. package/src/vendor/bootstrap-vue/src/components/tooltip/index.d.ts +11 -0
  988. package/src/vendor/bootstrap-vue/src/components/tooltip/index.js +10 -0
  989. package/src/vendor/bootstrap-vue/src/components/tooltip/index.scss +1 -0
  990. package/src/vendor/bootstrap-vue/src/components/tooltip/package.json +261 -0
  991. package/src/vendor/bootstrap-vue/src/components/tooltip/tooltip.js +316 -0
  992. package/src/vendor/bootstrap-vue/src/components/tooltip/tooltip.spec.js +1529 -0
  993. package/src/vendor/bootstrap-vue/src/components/transition/bv-transition.js +83 -0
  994. package/src/vendor/bootstrap-vue/src/components/transition/package.json +5 -0
  995. package/src/vendor/bootstrap-vue/src/components/transporter/package.json +5 -0
  996. package/src/vendor/bootstrap-vue/src/components/transporter/transporter.js +202 -0
  997. package/src/vendor/bootstrap-vue/src/components/transporter/transporter.spec.js +85 -0
  998. package/src/vendor/bootstrap-vue/src/constants/classes.js +2 -0
  999. package/src/vendor/bootstrap-vue/src/constants/components.js +133 -0
  1000. package/src/vendor/bootstrap-vue/src/constants/config.js +4 -0
  1001. package/src/vendor/bootstrap-vue/src/constants/date.js +7 -0
  1002. package/src/vendor/bootstrap-vue/src/constants/env.js +58 -0
  1003. package/src/vendor/bootstrap-vue/src/constants/events.js +68 -0
  1004. package/src/vendor/bootstrap-vue/src/constants/key-codes.js +14 -0
  1005. package/src/vendor/bootstrap-vue/src/constants/popper.js +8 -0
  1006. package/src/vendor/bootstrap-vue/src/constants/props.js +29 -0
  1007. package/src/vendor/bootstrap-vue/src/constants/regex.js +60 -0
  1008. package/src/vendor/bootstrap-vue/src/constants/safe-types.js +17 -0
  1009. package/src/vendor/bootstrap-vue/src/constants/slots.js +64 -0
  1010. package/src/vendor/bootstrap-vue/src/directives/hover/README.md +87 -0
  1011. package/src/vendor/bootstrap-vue/src/directives/hover/hover.js +54 -0
  1012. package/src/vendor/bootstrap-vue/src/directives/hover/hover.spec.js +49 -0
  1013. package/src/vendor/bootstrap-vue/src/directives/hover/index.d.ts +11 -0
  1014. package/src/vendor/bootstrap-vue/src/directives/hover/index.js +8 -0
  1015. package/src/vendor/bootstrap-vue/src/directives/hover/package.json +13 -0
  1016. package/src/vendor/bootstrap-vue/src/directives/index.d.ts +13 -0
  1017. package/src/vendor/bootstrap-vue/src/directives/index.js +22 -0
  1018. package/src/vendor/bootstrap-vue/src/directives/modal/index.d.ts +11 -0
  1019. package/src/vendor/bootstrap-vue/src/directives/modal/index.js +8 -0
  1020. package/src/vendor/bootstrap-vue/src/directives/modal/modal.js +115 -0
  1021. package/src/vendor/bootstrap-vue/src/directives/modal/modal.spec.js +191 -0
  1022. package/src/vendor/bootstrap-vue/src/directives/popover/README.md +648 -0
  1023. package/src/vendor/bootstrap-vue/src/directives/popover/index.d.ts +11 -0
  1024. package/src/vendor/bootstrap-vue/src/directives/popover/index.js +8 -0
  1025. package/src/vendor/bootstrap-vue/src/directives/popover/package.json +111 -0
  1026. package/src/vendor/bootstrap-vue/src/directives/popover/popover.js +275 -0
  1027. package/src/vendor/bootstrap-vue/src/directives/popover/popover.spec.js +129 -0
  1028. package/src/vendor/bootstrap-vue/src/directives/scrollspy/README.md +411 -0
  1029. package/src/vendor/bootstrap-vue/src/directives/scrollspy/helpers/bv-scrollspy.class.js +480 -0
  1030. package/src/vendor/bootstrap-vue/src/directives/scrollspy/index.d.ts +11 -0
  1031. package/src/vendor/bootstrap-vue/src/directives/scrollspy/index.js +8 -0
  1032. package/src/vendor/bootstrap-vue/src/directives/scrollspy/package.json +38 -0
  1033. package/src/vendor/bootstrap-vue/src/directives/scrollspy/scrollspy.js +117 -0
  1034. package/src/vendor/bootstrap-vue/src/directives/toggle/README.md +164 -0
  1035. package/src/vendor/bootstrap-vue/src/directives/toggle/index.d.ts +11 -0
  1036. package/src/vendor/bootstrap-vue/src/directives/toggle/index.js +8 -0
  1037. package/src/vendor/bootstrap-vue/src/directives/toggle/package.json +26 -0
  1038. package/src/vendor/bootstrap-vue/src/directives/toggle/toggle.js +274 -0
  1039. package/src/vendor/bootstrap-vue/src/directives/toggle/toggle.spec.js +452 -0
  1040. package/src/vendor/bootstrap-vue/src/directives/tooltip/README.md +522 -0
  1041. package/src/vendor/bootstrap-vue/src/directives/tooltip/index.d.ts +11 -0
  1042. package/src/vendor/bootstrap-vue/src/directives/tooltip/index.js +8 -0
  1043. package/src/vendor/bootstrap-vue/src/directives/tooltip/package.json +131 -0
  1044. package/src/vendor/bootstrap-vue/src/directives/tooltip/tooltip.js +270 -0
  1045. package/src/vendor/bootstrap-vue/src/directives/tooltip/tooltip.spec.js +223 -0
  1046. package/src/vendor/bootstrap-vue/src/directives/visible/README.md +244 -0
  1047. package/src/vendor/bootstrap-vue/src/directives/visible/index.d.ts +11 -0
  1048. package/src/vendor/bootstrap-vue/src/directives/visible/index.js +8 -0
  1049. package/src/vendor/bootstrap-vue/src/directives/visible/package.json +24 -0
  1050. package/src/vendor/bootstrap-vue/src/directives/visible/visible.js +184 -0
  1051. package/src/vendor/bootstrap-vue/src/icons/README.md +874 -0
  1052. package/src/vendor/bootstrap-vue/src/icons/_icons.scss +156 -0
  1053. package/src/vendor/bootstrap-vue/src/icons/helpers/icon-base.js +134 -0
  1054. package/src/vendor/bootstrap-vue/src/icons/helpers/make-icon.js +48 -0
  1055. package/src/vendor/bootstrap-vue/src/icons/icon.js +54 -0
  1056. package/src/vendor/bootstrap-vue/src/icons/icons.d.ts +2757 -0
  1057. package/src/vendor/bootstrap-vue/src/icons/icons.js +8244 -0
  1058. package/src/vendor/bootstrap-vue/src/icons/icons.spec.js +522 -0
  1059. package/src/vendor/bootstrap-vue/src/icons/iconstack.js +31 -0
  1060. package/src/vendor/bootstrap-vue/src/icons/iconstack.spec.js +161 -0
  1061. package/src/vendor/bootstrap-vue/src/icons/index.d.ts +18 -0
  1062. package/src/vendor/bootstrap-vue/src/icons/index.js +16 -0
  1063. package/src/vendor/bootstrap-vue/src/icons/index.scss +1 -0
  1064. package/src/vendor/bootstrap-vue/src/icons/package.json +72782 -0
  1065. package/src/vendor/bootstrap-vue/src/icons/plugin.js +4159 -0
  1066. package/src/vendor/bootstrap-vue/src/icons-only.js +33 -0
  1067. package/src/vendor/bootstrap-vue/src/icons.scss +8 -0
  1068. package/src/vendor/bootstrap-vue/src/index.d.ts +67 -0
  1069. package/src/vendor/bootstrap-vue/src/index.js +366 -0
  1070. package/src/vendor/bootstrap-vue/src/index.scss +17 -0
  1071. package/src/vendor/bootstrap-vue/src/mixins/attrs.js +19 -0
  1072. package/src/vendor/bootstrap-vue/src/mixins/attrs.spec.js +194 -0
  1073. package/src/vendor/bootstrap-vue/src/mixins/card.js +23 -0
  1074. package/src/vendor/bootstrap-vue/src/mixins/click-out.js +72 -0
  1075. package/src/vendor/bootstrap-vue/src/mixins/click-out.spec.js +52 -0
  1076. package/src/vendor/bootstrap-vue/src/mixins/dropdown.js +460 -0
  1077. package/src/vendor/bootstrap-vue/src/mixins/focus-in.js +44 -0
  1078. package/src/vendor/bootstrap-vue/src/mixins/focus-in.spec.js +53 -0
  1079. package/src/vendor/bootstrap-vue/src/mixins/form-control.js +51 -0
  1080. package/src/vendor/bootstrap-vue/src/mixins/form-custom.js +24 -0
  1081. package/src/vendor/bootstrap-vue/src/mixins/form-options.js +73 -0
  1082. package/src/vendor/bootstrap-vue/src/mixins/form-radio-check-group.js +162 -0
  1083. package/src/vendor/bootstrap-vue/src/mixins/form-radio-check.js +332 -0
  1084. package/src/vendor/bootstrap-vue/src/mixins/form-selection.js +60 -0
  1085. package/src/vendor/bootstrap-vue/src/mixins/form-size.js +24 -0
  1086. package/src/vendor/bootstrap-vue/src/mixins/form-state.js +47 -0
  1087. package/src/vendor/bootstrap-vue/src/mixins/form-text.js +250 -0
  1088. package/src/vendor/bootstrap-vue/src/mixins/form-validity.js +48 -0
  1089. package/src/vendor/bootstrap-vue/src/mixins/has-listener.js +26 -0
  1090. package/src/vendor/bootstrap-vue/src/mixins/id.js +51 -0
  1091. package/src/vendor/bootstrap-vue/src/mixins/listen-on-document.js +64 -0
  1092. package/src/vendor/bootstrap-vue/src/mixins/listen-on-document.spec.js +117 -0
  1093. package/src/vendor/bootstrap-vue/src/mixins/listen-on-root.js +121 -0
  1094. package/src/vendor/bootstrap-vue/src/mixins/listen-on-root.spec.js +77 -0
  1095. package/src/vendor/bootstrap-vue/src/mixins/listen-on-window.js +64 -0
  1096. package/src/vendor/bootstrap-vue/src/mixins/listen-on-window.spec.js +115 -0
  1097. package/src/vendor/bootstrap-vue/src/mixins/listeners.js +24 -0
  1098. package/src/vendor/bootstrap-vue/src/mixins/listeners.spec.js +245 -0
  1099. package/src/vendor/bootstrap-vue/src/mixins/model.js +5 -0
  1100. package/src/vendor/bootstrap-vue/src/mixins/normalize-slot.js +30 -0
  1101. package/src/vendor/bootstrap-vue/src/mixins/pagination.js +670 -0
  1102. package/src/vendor/bootstrap-vue/src/mixins/scoped-style.js +14 -0
  1103. package/src/vendor/bootstrap-vue/src/mixins/use-parent.js +12 -0
  1104. package/src/vendor/bootstrap-vue/src/utils/array.js +22 -0
  1105. package/src/vendor/bootstrap-vue/src/utils/bv-event.class.js +60 -0
  1106. package/src/vendor/bootstrap-vue/src/utils/bv-event.class.spec.js +66 -0
  1107. package/src/vendor/bootstrap-vue/src/utils/cache.js +37 -0
  1108. package/src/vendor/bootstrap-vue/src/utils/clone-deep.js +15 -0
  1109. package/src/vendor/bootstrap-vue/src/utils/clone-deep.spec.js +70 -0
  1110. package/src/vendor/bootstrap-vue/src/utils/config-set.js +80 -0
  1111. package/src/vendor/bootstrap-vue/src/utils/config.js +72 -0
  1112. package/src/vendor/bootstrap-vue/src/utils/config.spec.js +169 -0
  1113. package/src/vendor/bootstrap-vue/src/utils/create-new-child-component.js +10 -0
  1114. package/src/vendor/bootstrap-vue/src/utils/css-escape.js +73 -0
  1115. package/src/vendor/bootstrap-vue/src/utils/css-escape.spec.js +82 -0
  1116. package/src/vendor/bootstrap-vue/src/utils/date.js +130 -0
  1117. package/src/vendor/bootstrap-vue/src/utils/date.spec.js +159 -0
  1118. package/src/vendor/bootstrap-vue/src/utils/dom.js +308 -0
  1119. package/src/vendor/bootstrap-vue/src/utils/dom.spec.js +291 -0
  1120. package/src/vendor/bootstrap-vue/src/utils/element-to-vue-instance-registry.js +40 -0
  1121. package/src/vendor/bootstrap-vue/src/utils/env.js +15 -0
  1122. package/src/vendor/bootstrap-vue/src/utils/events.js +71 -0
  1123. package/src/vendor/bootstrap-vue/src/utils/events.spec.js +41 -0
  1124. package/src/vendor/bootstrap-vue/src/utils/get-event-root.js +3 -0
  1125. package/src/vendor/bootstrap-vue/src/utils/get-instance-from-directive.js +4 -0
  1126. package/src/vendor/bootstrap-vue/src/utils/get-scope-id.js +6 -0
  1127. package/src/vendor/bootstrap-vue/src/utils/get.js +64 -0
  1128. package/src/vendor/bootstrap-vue/src/utils/get.spec.js +109 -0
  1129. package/src/vendor/bootstrap-vue/src/utils/html.js +8 -0
  1130. package/src/vendor/bootstrap-vue/src/utils/identity.js +1 -0
  1131. package/src/vendor/bootstrap-vue/src/utils/inspect.js +55 -0
  1132. package/src/vendor/bootstrap-vue/src/utils/inspect.spec.js +251 -0
  1133. package/src/vendor/bootstrap-vue/src/utils/locale.js +34 -0
  1134. package/src/vendor/bootstrap-vue/src/utils/loose-equal.js +57 -0
  1135. package/src/vendor/bootstrap-vue/src/utils/loose-equal.spec.js +203 -0
  1136. package/src/vendor/bootstrap-vue/src/utils/loose-index-of.js +11 -0
  1137. package/src/vendor/bootstrap-vue/src/utils/math.js +15 -0
  1138. package/src/vendor/bootstrap-vue/src/utils/memoize.js +10 -0
  1139. package/src/vendor/bootstrap-vue/src/utils/model.js +29 -0
  1140. package/src/vendor/bootstrap-vue/src/utils/noop.js +1 -0
  1141. package/src/vendor/bootstrap-vue/src/utils/normalize-slot.js +44 -0
  1142. package/src/vendor/bootstrap-vue/src/utils/normalize-slot.spec.js +63 -0
  1143. package/src/vendor/bootstrap-vue/src/utils/number.js +19 -0
  1144. package/src/vendor/bootstrap-vue/src/utils/number.spec.js +72 -0
  1145. package/src/vendor/bootstrap-vue/src/utils/object.js +68 -0
  1146. package/src/vendor/bootstrap-vue/src/utils/object.spec.js +61 -0
  1147. package/src/vendor/bootstrap-vue/src/utils/observe-dom.js +77 -0
  1148. package/src/vendor/bootstrap-vue/src/utils/plugins.js +169 -0
  1149. package/src/vendor/bootstrap-vue/src/utils/props.js +98 -0
  1150. package/src/vendor/bootstrap-vue/src/utils/props.spec.js +112 -0
  1151. package/src/vendor/bootstrap-vue/src/utils/router.js +145 -0
  1152. package/src/vendor/bootstrap-vue/src/utils/router.spec.js +248 -0
  1153. package/src/vendor/bootstrap-vue/src/utils/safe-vue-instance.js +13 -0
  1154. package/src/vendor/bootstrap-vue/src/utils/stable-sort.js +31 -0
  1155. package/src/vendor/bootstrap-vue/src/utils/string.js +75 -0
  1156. package/src/vendor/bootstrap-vue/src/utils/string.spec.js +94 -0
  1157. package/src/vendor/bootstrap-vue/src/utils/stringify-object-values.js +31 -0
  1158. package/src/vendor/bootstrap-vue/src/utils/stringify-object-values.spec.js +47 -0
  1159. package/src/vendor/bootstrap-vue/src/utils/warn.js +57 -0
  1160. package/src/vendor/bootstrap-vue/src/utils/warn.spec.js +54 -0
  1161. package/src/vendor/bootstrap-vue/src/vue-injections.d.ts +13 -0
  1162. package/src/vendor/bootstrap-vue/src/vue.js +126 -0
@@ -400,6 +400,83 @@
400
400
  --gl-text-color-strong: var(--gl-color-neutral-0); /* Used for text with the highest contrast. */
401
401
  --gl-text-color-subtle: var(--gl-color-neutral-200); /* Used for supplemental text that doesn't need to be as prominent as other text. */
402
402
  --gl-text-color-default: var(--gl-color-neutral-50); /* Used for the default text color. */
403
+ --gl-status-brand-icon-color-active: var(--gl-color-purple-300); /* Used for the icon of a brand related status item in the active state. */
404
+ --gl-status-brand-icon-color-focus: var(--gl-color-purple-400); /* Used for the icon of a brand related status item in the focus state. */
405
+ --gl-status-brand-icon-color-hover: var(--gl-color-purple-400); /* Used for the icon of a brand related status item in the hover state. */
406
+ --gl-status-brand-icon-color-default: var(--gl-color-purple-500); /* Used for the icon of a brand related status item when static or the default state when linked. */
407
+ --gl-status-brand-text-color-active: var(--gl-color-purple-100); /* Used for the text of a brand related status item in the active state. */
408
+ --gl-status-brand-text-color-focus: var(--gl-color-purple-200); /* Used for the text of a brand related status item in the focus state. */
409
+ --gl-status-brand-text-color-hover: var(--gl-color-purple-200); /* Used for the text of a brand related status item in the hover state. */
410
+ --gl-status-brand-text-color-default: var(--gl-color-purple-300); /* Used for the text of a brand related status item when static or the default state when linked. */
411
+ --gl-status-brand-border-color-hover: var(--gl-color-purple-800); /* Used for the border of a brand related status item in the hover state. */
412
+ --gl-status-brand-background-color-active: var(--gl-color-purple-800); /* Used for the background of a brand related status item in the active state. */
413
+ --gl-status-brand-background-color-default: var(--gl-color-purple-900); /* Used for the background of a brand related status item when static or the default state when linked. */
414
+ --gl-status-danger-icon-color-active: var(--gl-color-red-200); /* Used for the icon of a danger (critical) status item in the active state. */
415
+ --gl-status-danger-icon-color-focus: var(--gl-color-red-300); /* Used for the icon of a danger (critical) status item in the focus state. */
416
+ --gl-status-danger-icon-color-hover: var(--gl-color-red-300); /* Used for the icon of a danger (critical) status item in the hover state. */
417
+ --gl-status-danger-icon-color-default: var(--gl-color-red-400); /* Used for the icon of a danger (critical) status item when static or the default state when linked. */
418
+ --gl-status-danger-text-color-active: var(--gl-color-red-50); /* Used for the text of a danger (critical) status item in the active state. */
419
+ --gl-status-danger-text-color-focus: var(--gl-color-red-100); /* Used for the text of a danger (critical) status item in the focus state. */
420
+ --gl-status-danger-text-color-hover: var(--gl-color-red-100); /* Used for the text of a danger (critical) status item in the hover state. */
421
+ --gl-status-danger-text-color-default: var(--gl-color-red-200); /* Used for the text of a danger (critical) status item when static or the default state when linked. */
422
+ --gl-status-danger-border-color-hover: var(--gl-color-red-700); /* Used for the border of a danger (critical) status item in the hover state. */
423
+ --gl-status-danger-background-color-active: var(--gl-color-red-700); /* Used for the background of a danger (critical) status item in the active state. */
424
+ --gl-status-danger-background-color-default: var(--gl-color-red-800); /* Used for the background of a danger (critical) status item when static or the default state when linked. */
425
+ --gl-status-warning-icon-color-active: var(--gl-color-orange-200); /* Used for the icon of a warning status or confidential item in the active state. */
426
+ --gl-status-warning-icon-color-focus: var(--gl-color-orange-300); /* Used for the icon of a warning status or confidential item in the focus state. */
427
+ --gl-status-warning-icon-color-hover: var(--gl-color-orange-300); /* Used for the icon of a warning status or confidential item in the hover state. */
428
+ --gl-status-warning-icon-color-default: var(--gl-color-orange-400); /* Used for the icon of a warning status or confidential item when static or the default state when linked. */
429
+ --gl-status-warning-text-color-active: var(--gl-color-orange-50); /* Used for the text of a warning status or confidential item in the active state.N */
430
+ --gl-status-warning-text-color-focus: var(--gl-color-orange-100); /* Used for the text of a warning status or confidential item in the focus state. */
431
+ --gl-status-warning-text-color-hover: var(--gl-color-orange-100); /* Used for the text of a warning status or confidential item in the hover state. */
432
+ --gl-status-warning-text-color-default: var(--gl-color-orange-200); /* Used for the text of a warning status or confidential item when static or the default state when linked. */
433
+ --gl-status-warning-border-color-hover: var(--gl-color-orange-700); /* Used for the border of a warning status or confidential item in the hover state. */
434
+ --gl-status-warning-background-color-active: var(--gl-color-orange-700); /* Used for the background of a warning status or confidential item in the active state. */
435
+ --gl-status-warning-background-color-default: var(--gl-color-orange-800); /* Used for the background of a warning status or confidential item when static or the default state when linked. */
436
+ --gl-status-success-icon-color-active: var(--gl-color-green-200); /* Used for the icon of a success status item in the active state. */
437
+ --gl-status-success-icon-color-focus: var(--gl-color-green-300); /* Used for the icon of a success status item in the focus state. */
438
+ --gl-status-success-icon-color-hover: var(--gl-color-green-300); /* Used for the icon of a success status item in the hover state. */
439
+ --gl-status-success-icon-color-default: var(--gl-color-green-400); /* Used for the icon of a success status item when static or the default state when linked. */
440
+ --gl-status-success-text-color-active: var(--gl-color-green-50); /* Used for the text of a success status item in the active state. */
441
+ --gl-status-success-text-color-focus: var(--gl-color-green-100); /* Used for the text of a success status item in the focus state. */
442
+ --gl-status-success-text-color-hover: var(--gl-color-green-100); /* Used for the text of a success status item in the hover state. */
443
+ --gl-status-success-text-color-default: var(--gl-color-green-200); /* Used for the text of a success status item when static or the default state when linked. */
444
+ --gl-status-success-border-color-hover: var(--gl-color-green-700); /* Used for the border of a success status item in the hover state. */
445
+ --gl-status-success-background-color-active: var(--gl-color-green-700); /* Used for the background of a success status item in the active state. */
446
+ --gl-status-success-background-color-default: var(--gl-color-green-800); /* Used for the background of a success status item when static or the default state when linked. */
447
+ --gl-status-info-icon-color-active: var(--gl-color-blue-200); /* Used for the icon of an informational status item in the active state. */
448
+ --gl-status-info-icon-color-focus: var(--gl-color-blue-300); /* Used for the icon of an informational status item in the focus state. */
449
+ --gl-status-info-icon-color-hover: var(--gl-color-blue-300); /* Used for the icon of an informational status item in the hover state. */
450
+ --gl-status-info-icon-color-default: var(--gl-color-blue-400); /* Used for the icon of an informational status item when static or the default state when linked. */
451
+ --gl-status-info-text-color-active: var(--gl-color-blue-50); /* Used for the text of an informational status item in the active state. */
452
+ --gl-status-info-text-color-focus: var(--gl-color-blue-100); /* Used for the text of an informational status item in the focus state. */
453
+ --gl-status-info-text-color-hover: var(--gl-color-blue-100); /* Used for the text of an informational status item in the hover state. */
454
+ --gl-status-info-text-color-default: var(--gl-color-blue-200); /* Used for the text of an informational status item when static or the default state when linked. */
455
+ --gl-status-info-border-color-hover: var(--gl-color-blue-700); /* Used for the border of an informational status item in the hover state. */
456
+ --gl-status-info-background-color-active: var(--gl-color-blue-700); /* Used for the background of an informational status item in the active state. */
457
+ --gl-status-info-background-color-default: var(--gl-color-blue-800); /* Used for the background of an informational status item when static or the default state when linked. */
458
+ --gl-status-neutral-icon-color-active: var(--gl-color-neutral-200); /* Used for the icon of a neutral status item in the active state. */
459
+ --gl-status-neutral-icon-color-focus: var(--gl-color-neutral-300); /* Used for the icon of a neutral status item in the focus state. */
460
+ --gl-status-neutral-icon-color-hover: var(--gl-color-neutral-300); /* Used for the icon of a neutral status item in the hover state. */
461
+ --gl-status-neutral-icon-color-default: var(--gl-color-neutral-400); /* Used for the icon of a neutral status item when static or the default state when linked. */
462
+ --gl-status-neutral-text-color-active: var(--gl-color-neutral-50); /* Used for the text of a neutral status item in the active state. */
463
+ --gl-status-neutral-text-color-focus: var(--gl-color-neutral-100); /* Used for the text of a neutral status item in the focus state. */
464
+ --gl-status-neutral-text-color-hover: var(--gl-color-neutral-100); /* Used for the text of a neutral status item in the hover state. */
465
+ --gl-status-neutral-text-color-default: var(--gl-color-neutral-200); /* Used for the text of a neutral status item when static or the default state when linked. */
466
+ --gl-status-neutral-border-color-hover: var(--gl-color-neutral-700); /* Used for the border of a neutral status item in the hover state. */
467
+ --gl-status-neutral-background-color-active: var(--gl-color-neutral-700); /* Used for the background of a neutral status item in the active state. */
468
+ --gl-status-neutral-background-color-default: var(--gl-color-neutral-800); /* Used for the background of a neutral status item when static or the default state when linked. */
469
+ --gl-status-muted-icon-color-active: var(--gl-color-neutral-200); /* Used for the icon of a subtle neutral status item in the active state. */
470
+ --gl-status-muted-icon-color-focus: var(--gl-color-neutral-300); /* Used for the icon of a subtle neutral status item in the focus state. */
471
+ --gl-status-muted-icon-color-hover: var(--gl-color-neutral-300); /* Used for the icon of a subtle neutral status item in the hover state. */
472
+ --gl-status-muted-icon-color-default: var(--gl-color-neutral-400); /* Used for the icon of a subtle neutral status item when static or the default state when linked. */
473
+ --gl-status-muted-text-color-active: var(--gl-color-neutral-100); /* Used for the text of a subtle neutral status item in the active state. */
474
+ --gl-status-muted-text-color-focus: var(--gl-color-neutral-200); /* Used for the text of a subtle neutral status item in the focus state. */
475
+ --gl-status-muted-text-color-hover: var(--gl-color-neutral-200); /* Used for the text of a subtle neutral status item in the hover state. */
476
+ --gl-status-muted-text-color-default: var(--gl-color-neutral-300); /* Used for the text of a subtle neutral status item when static or the default state when linked. */
477
+ --gl-status-muted-border-color-hover: var(--gl-color-neutral-700); /* Used for the border of a subtle neutral status item in the hover state. */
478
+ --gl-status-muted-background-color-active: var(--gl-color-neutral-800); /* Used for the background of a subtle neutral status item in the active state. */
479
+ --gl-status-muted-background-color-default: var(--gl-color-neutral-900); /* Used for the background of a subtle neutral status item when static or the default state when linked. */
403
480
  --gl-icon-color-success: var(--gl-color-green-300); /* Used for an icon associated with success or validity. */
404
481
  --gl-icon-color-danger: var(--gl-color-red-300); /* Used for an icon associated with an error or danger. */
405
482
  --gl-icon-color-warning: var(--gl-color-orange-300); /* Used for an icon associated with a warning. */
@@ -406,6 +406,83 @@ export const GL_LINE_HEIGHT_36 = '2.25rem';
406
406
  export const GL_LINE_HEIGHT_42 = '2.625rem';
407
407
  export const GL_LINE_HEIGHT_44 = '2.75rem';
408
408
  export const GL_LINE_HEIGHT_52 = '3.25rem';
409
+ export const GL_STATUS_MUTED_BACKGROUND_COLOR_DEFAULT = '#333238'; // Used for the background of a subtle neutral status item when static or the default state when linked.
410
+ export const GL_STATUS_MUTED_BACKGROUND_COLOR_ACTIVE = '#434248'; // Used for the background of a subtle neutral status item in the active state.
411
+ export const GL_STATUS_MUTED_BORDER_COLOR_HOVER = '#535158'; // Used for the border of a subtle neutral status item in the hover state.
412
+ export const GL_STATUS_MUTED_TEXT_COLOR_DEFAULT = '#a4a3a8'; // Used for the text of a subtle neutral status item when static or the default state when linked.
413
+ export const GL_STATUS_MUTED_TEXT_COLOR_HOVER = '#bfbfc3'; // Used for the text of a subtle neutral status item in the hover state.
414
+ export const GL_STATUS_MUTED_TEXT_COLOR_FOCUS = '#bfbfc3'; // Used for the text of a subtle neutral status item in the focus state.
415
+ export const GL_STATUS_MUTED_TEXT_COLOR_ACTIVE = '#dcdcde'; // Used for the text of a subtle neutral status item in the active state.
416
+ export const GL_STATUS_MUTED_ICON_COLOR_DEFAULT = '#89888d'; // Used for the icon of a subtle neutral status item when static or the default state when linked.
417
+ export const GL_STATUS_MUTED_ICON_COLOR_HOVER = '#a4a3a8'; // Used for the icon of a subtle neutral status item in the hover state.
418
+ export const GL_STATUS_MUTED_ICON_COLOR_FOCUS = '#a4a3a8'; // Used for the icon of a subtle neutral status item in the focus state.
419
+ export const GL_STATUS_MUTED_ICON_COLOR_ACTIVE = '#bfbfc3'; // Used for the icon of a subtle neutral status item in the active state.
420
+ export const GL_STATUS_NEUTRAL_BACKGROUND_COLOR_DEFAULT = '#434248'; // Used for the background of a neutral status item when static or the default state when linked.
421
+ export const GL_STATUS_NEUTRAL_BACKGROUND_COLOR_ACTIVE = '#535158'; // Used for the background of a neutral status item in the active state.
422
+ export const GL_STATUS_NEUTRAL_BORDER_COLOR_HOVER = '#535158'; // Used for the border of a neutral status item in the hover state.
423
+ export const GL_STATUS_NEUTRAL_TEXT_COLOR_DEFAULT = '#bfbfc3'; // Used for the text of a neutral status item when static or the default state when linked.
424
+ export const GL_STATUS_NEUTRAL_TEXT_COLOR_HOVER = '#dcdcde'; // Used for the text of a neutral status item in the hover state.
425
+ export const GL_STATUS_NEUTRAL_TEXT_COLOR_FOCUS = '#dcdcde'; // Used for the text of a neutral status item in the focus state.
426
+ export const GL_STATUS_NEUTRAL_TEXT_COLOR_ACTIVE = '#ececef'; // Used for the text of a neutral status item in the active state.
427
+ export const GL_STATUS_NEUTRAL_ICON_COLOR_DEFAULT = '#89888d'; // Used for the icon of a neutral status item when static or the default state when linked.
428
+ export const GL_STATUS_NEUTRAL_ICON_COLOR_HOVER = '#a4a3a8'; // Used for the icon of a neutral status item in the hover state.
429
+ export const GL_STATUS_NEUTRAL_ICON_COLOR_FOCUS = '#a4a3a8'; // Used for the icon of a neutral status item in the focus state.
430
+ export const GL_STATUS_NEUTRAL_ICON_COLOR_ACTIVE = '#bfbfc3'; // Used for the icon of a neutral status item in the active state.
431
+ export const GL_STATUS_INFO_BACKGROUND_COLOR_DEFAULT = '#064787'; // Used for the background of an informational status item when static or the default state when linked.
432
+ export const GL_STATUS_INFO_BACKGROUND_COLOR_ACTIVE = '#0b5cad'; // Used for the background of an informational status item in the active state.
433
+ export const GL_STATUS_INFO_BORDER_COLOR_HOVER = '#0b5cad'; // Used for the border of an informational status item in the hover state.
434
+ export const GL_STATUS_INFO_TEXT_COLOR_DEFAULT = '#9dc7f1'; // Used for the text of an informational status item when static or the default state when linked.
435
+ export const GL_STATUS_INFO_TEXT_COLOR_HOVER = '#cbe2f9'; // Used for the text of an informational status item in the hover state.
436
+ export const GL_STATUS_INFO_TEXT_COLOR_FOCUS = '#cbe2f9'; // Used for the text of an informational status item in the focus state.
437
+ export const GL_STATUS_INFO_TEXT_COLOR_ACTIVE = '#e9f3fc'; // Used for the text of an informational status item in the active state.
438
+ export const GL_STATUS_INFO_ICON_COLOR_DEFAULT = '#428fdc'; // Used for the icon of an informational status item when static or the default state when linked.
439
+ export const GL_STATUS_INFO_ICON_COLOR_HOVER = '#63a6e9'; // Used for the icon of an informational status item in the hover state.
440
+ export const GL_STATUS_INFO_ICON_COLOR_FOCUS = '#63a6e9'; // Used for the icon of an informational status item in the focus state.
441
+ export const GL_STATUS_INFO_ICON_COLOR_ACTIVE = '#9dc7f1'; // Used for the icon of an informational status item in the active state.
442
+ export const GL_STATUS_SUCCESS_BACKGROUND_COLOR_DEFAULT = '#0d532a'; // Used for the background of a success status item when static or the default state when linked.
443
+ export const GL_STATUS_SUCCESS_BACKGROUND_COLOR_ACTIVE = '#24663b'; // Used for the background of a success status item in the active state.
444
+ export const GL_STATUS_SUCCESS_BORDER_COLOR_HOVER = '#24663b'; // Used for the border of a success status item in the hover state.
445
+ export const GL_STATUS_SUCCESS_TEXT_COLOR_DEFAULT = '#91d4a8'; // Used for the text of a success status item when static or the default state when linked.
446
+ export const GL_STATUS_SUCCESS_TEXT_COLOR_HOVER = '#c3e6cd'; // Used for the text of a success status item in the hover state.
447
+ export const GL_STATUS_SUCCESS_TEXT_COLOR_FOCUS = '#c3e6cd'; // Used for the text of a success status item in the focus state.
448
+ export const GL_STATUS_SUCCESS_TEXT_COLOR_ACTIVE = '#ecf4ee'; // Used for the text of a success status item in the active state.
449
+ export const GL_STATUS_SUCCESS_ICON_COLOR_DEFAULT = '#2da160'; // Used for the icon of a success status item when static or the default state when linked.
450
+ export const GL_STATUS_SUCCESS_ICON_COLOR_HOVER = '#52b87a'; // Used for the icon of a success status item in the hover state.
451
+ export const GL_STATUS_SUCCESS_ICON_COLOR_FOCUS = '#52b87a'; // Used for the icon of a success status item in the focus state.
452
+ export const GL_STATUS_SUCCESS_ICON_COLOR_ACTIVE = '#91d4a8'; // Used for the icon of a success status item in the active state.
453
+ export const GL_STATUS_WARNING_BACKGROUND_COLOR_DEFAULT = '#703800'; // Used for the background of a warning status or confidential item when static or the default state when linked.
454
+ export const GL_STATUS_WARNING_BACKGROUND_COLOR_ACTIVE = '#8f4700'; // Used for the background of a warning status or confidential item in the active state.
455
+ export const GL_STATUS_WARNING_BORDER_COLOR_HOVER = '#8f4700'; // Used for the border of a warning status or confidential item in the hover state.
456
+ export const GL_STATUS_WARNING_TEXT_COLOR_DEFAULT = '#e9be74'; // Used for the text of a warning status or confidential item when static or the default state when linked.
457
+ export const GL_STATUS_WARNING_TEXT_COLOR_HOVER = '#f5d9a8'; // Used for the text of a warning status or confidential item in the hover state.
458
+ export const GL_STATUS_WARNING_TEXT_COLOR_FOCUS = '#f5d9a8'; // Used for the text of a warning status or confidential item in the focus state.
459
+ export const GL_STATUS_WARNING_TEXT_COLOR_ACTIVE = '#fdf1dd'; // Used for the text of a warning status or confidential item in the active state.N
460
+ export const GL_STATUS_WARNING_ICON_COLOR_DEFAULT = '#c17d10'; // Used for the icon of a warning status or confidential item when static or the default state when linked.
461
+ export const GL_STATUS_WARNING_ICON_COLOR_HOVER = '#d99530'; // Used for the icon of a warning status or confidential item in the hover state.
462
+ export const GL_STATUS_WARNING_ICON_COLOR_FOCUS = '#d99530'; // Used for the icon of a warning status or confidential item in the focus state.
463
+ export const GL_STATUS_WARNING_ICON_COLOR_ACTIVE = '#e9be74'; // Used for the icon of a warning status or confidential item in the active state.
464
+ export const GL_STATUS_DANGER_BACKGROUND_COLOR_DEFAULT = '#8d1300'; // Used for the background of a danger (critical) status item when static or the default state when linked.
465
+ export const GL_STATUS_DANGER_BACKGROUND_COLOR_ACTIVE = '#ae1800'; // Used for the background of a danger (critical) status item in the active state.
466
+ export const GL_STATUS_DANGER_BORDER_COLOR_HOVER = '#ae1800'; // Used for the border of a danger (critical) status item in the hover state.
467
+ export const GL_STATUS_DANGER_TEXT_COLOR_DEFAULT = '#fcb5aa'; // Used for the text of a danger (critical) status item when static or the default state when linked.
468
+ export const GL_STATUS_DANGER_TEXT_COLOR_HOVER = '#fdd4cd'; // Used for the text of a danger (critical) status item in the hover state.
469
+ export const GL_STATUS_DANGER_TEXT_COLOR_FOCUS = '#fdd4cd'; // Used for the text of a danger (critical) status item in the focus state.
470
+ export const GL_STATUS_DANGER_TEXT_COLOR_ACTIVE = '#fcf1ef'; // Used for the text of a danger (critical) status item in the active state.
471
+ export const GL_STATUS_DANGER_ICON_COLOR_DEFAULT = '#ec5941'; // Used for the icon of a danger (critical) status item when static or the default state when linked.
472
+ export const GL_STATUS_DANGER_ICON_COLOR_HOVER = '#f57f6c'; // Used for the icon of a danger (critical) status item in the hover state.
473
+ export const GL_STATUS_DANGER_ICON_COLOR_FOCUS = '#f57f6c'; // Used for the icon of a danger (critical) status item in the focus state.
474
+ export const GL_STATUS_DANGER_ICON_COLOR_ACTIVE = '#fcb5aa'; // Used for the icon of a danger (critical) status item in the active state.
475
+ export const GL_STATUS_BRAND_BACKGROUND_COLOR_DEFAULT = '#2f2a6b'; // Used for the background of a brand related status item when static or the default state when linked.
476
+ export const GL_STATUS_BRAND_BACKGROUND_COLOR_ACTIVE = '#453894'; // Used for the background of a brand related status item in the active state.
477
+ export const GL_STATUS_BRAND_BORDER_COLOR_HOVER = '#453894'; // Used for the border of a brand related status item in the hover state.
478
+ export const GL_STATUS_BRAND_TEXT_COLOR_DEFAULT = '#ac93e6'; // Used for the text of a brand related status item when static or the default state when linked.
479
+ export const GL_STATUS_BRAND_TEXT_COLOR_HOVER = '#cbbbf2'; // Used for the text of a brand related status item in the hover state.
480
+ export const GL_STATUS_BRAND_TEXT_COLOR_FOCUS = '#cbbbf2'; // Used for the text of a brand related status item in the focus state.
481
+ export const GL_STATUS_BRAND_TEXT_COLOR_ACTIVE = '#e1d8f9'; // Used for the text of a brand related status item in the active state.
482
+ export const GL_STATUS_BRAND_ICON_COLOR_DEFAULT = '#7b58cf'; // Used for the icon of a brand related status item when static or the default state when linked.
483
+ export const GL_STATUS_BRAND_ICON_COLOR_HOVER = '#9475db'; // Used for the icon of a brand related status item in the hover state.
484
+ export const GL_STATUS_BRAND_ICON_COLOR_FOCUS = '#9475db'; // Used for the icon of a brand related status item in the focus state.
485
+ export const GL_STATUS_BRAND_ICON_COLOR_ACTIVE = '#ac93e6'; // Used for the icon of a brand related status item in the active state.
409
486
  export const GL_TEXT_PRIMARY = '#ececef'; // Use text.color.default instead
410
487
  export const GL_TEXT_SECONDARY = '#89888d'; // Use text.color.subtle instead
411
488
  export const GL_TEXT_TERTIARY = '#737278'; // Use text.color.disabled instead
@@ -406,6 +406,83 @@ export const GL_LINE_HEIGHT_36 = '2.25rem';
406
406
  export const GL_LINE_HEIGHT_42 = '2.625rem';
407
407
  export const GL_LINE_HEIGHT_44 = '2.75rem';
408
408
  export const GL_LINE_HEIGHT_52 = '3.25rem';
409
+ export const GL_STATUS_MUTED_BACKGROUND_COLOR_DEFAULT = '#ececef'; // Used for the background of a subtle neutral status item when static or the default state when linked.
410
+ export const GL_STATUS_MUTED_BACKGROUND_COLOR_ACTIVE = '#dcdcde'; // Used for the background of a subtle neutral status item in the active state.
411
+ export const GL_STATUS_MUTED_BORDER_COLOR_HOVER = '#bfbfc3'; // Used for the border of a subtle neutral status item in the hover state.
412
+ export const GL_STATUS_MUTED_TEXT_COLOR_DEFAULT = '#626168'; // Used for the text of a subtle neutral status item when static or the default state when linked.
413
+ export const GL_STATUS_MUTED_TEXT_COLOR_HOVER = '#535158'; // Used for the text of a subtle neutral status item in the hover state.
414
+ export const GL_STATUS_MUTED_TEXT_COLOR_FOCUS = '#535158'; // Used for the text of a subtle neutral status item in the focus state.
415
+ export const GL_STATUS_MUTED_TEXT_COLOR_ACTIVE = '#434248'; // Used for the text of a subtle neutral status item in the active state.
416
+ export const GL_STATUS_MUTED_ICON_COLOR_DEFAULT = '#737278'; // Used for the icon of a subtle neutral status item when static or the default state when linked.
417
+ export const GL_STATUS_MUTED_ICON_COLOR_HOVER = '#626168'; // Used for the icon of a subtle neutral status item in the hover state.
418
+ export const GL_STATUS_MUTED_ICON_COLOR_FOCUS = '#626168'; // Used for the icon of a subtle neutral status item in the focus state.
419
+ export const GL_STATUS_MUTED_ICON_COLOR_ACTIVE = '#535158'; // Used for the icon of a subtle neutral status item in the active state.
420
+ export const GL_STATUS_NEUTRAL_BACKGROUND_COLOR_DEFAULT = '#dcdcde'; // Used for the background of a neutral status item when static or the default state when linked.
421
+ export const GL_STATUS_NEUTRAL_BACKGROUND_COLOR_ACTIVE = '#bfbfc3'; // Used for the background of a neutral status item in the active state.
422
+ export const GL_STATUS_NEUTRAL_BORDER_COLOR_HOVER = '#bfbfc3'; // Used for the border of a neutral status item in the hover state.
423
+ export const GL_STATUS_NEUTRAL_TEXT_COLOR_DEFAULT = '#535158'; // Used for the text of a neutral status item when static or the default state when linked.
424
+ export const GL_STATUS_NEUTRAL_TEXT_COLOR_HOVER = '#434248'; // Used for the text of a neutral status item in the hover state.
425
+ export const GL_STATUS_NEUTRAL_TEXT_COLOR_FOCUS = '#434248'; // Used for the text of a neutral status item in the focus state.
426
+ export const GL_STATUS_NEUTRAL_TEXT_COLOR_ACTIVE = '#333238'; // Used for the text of a neutral status item in the active state.
427
+ export const GL_STATUS_NEUTRAL_ICON_COLOR_DEFAULT = '#737278'; // Used for the icon of a neutral status item when static or the default state when linked.
428
+ export const GL_STATUS_NEUTRAL_ICON_COLOR_HOVER = '#626168'; // Used for the icon of a neutral status item in the hover state.
429
+ export const GL_STATUS_NEUTRAL_ICON_COLOR_FOCUS = '#626168'; // Used for the icon of a neutral status item in the focus state.
430
+ export const GL_STATUS_NEUTRAL_ICON_COLOR_ACTIVE = '#535158'; // Used for the icon of a neutral status item in the active state.
431
+ export const GL_STATUS_INFO_BACKGROUND_COLOR_DEFAULT = '#cbe2f9'; // Used for the background of an informational status item when static or the default state when linked.
432
+ export const GL_STATUS_INFO_BACKGROUND_COLOR_ACTIVE = '#9dc7f1'; // Used for the background of an informational status item in the active state.
433
+ export const GL_STATUS_INFO_BORDER_COLOR_HOVER = '#9dc7f1'; // Used for the border of an informational status item in the hover state.
434
+ export const GL_STATUS_INFO_TEXT_COLOR_DEFAULT = '#0b5cad'; // Used for the text of an informational status item when static or the default state when linked.
435
+ export const GL_STATUS_INFO_TEXT_COLOR_HOVER = '#064787'; // Used for the text of an informational status item in the hover state.
436
+ export const GL_STATUS_INFO_TEXT_COLOR_FOCUS = '#064787'; // Used for the text of an informational status item in the focus state.
437
+ export const GL_STATUS_INFO_TEXT_COLOR_ACTIVE = '#033464'; // Used for the text of an informational status item in the active state.
438
+ export const GL_STATUS_INFO_ICON_COLOR_DEFAULT = '#1f75cb'; // Used for the icon of an informational status item when static or the default state when linked.
439
+ export const GL_STATUS_INFO_ICON_COLOR_HOVER = '#1068bf'; // Used for the icon of an informational status item in the hover state.
440
+ export const GL_STATUS_INFO_ICON_COLOR_FOCUS = '#1068bf'; // Used for the icon of an informational status item in the focus state.
441
+ export const GL_STATUS_INFO_ICON_COLOR_ACTIVE = '#0b5cad'; // Used for the icon of an informational status item in the active state.
442
+ export const GL_STATUS_SUCCESS_BACKGROUND_COLOR_DEFAULT = '#c3e6cd'; // Used for the background of a success status item when static or the default state when linked.
443
+ export const GL_STATUS_SUCCESS_BACKGROUND_COLOR_ACTIVE = '#91d4a8'; // Used for the background of a success status item in the active state.
444
+ export const GL_STATUS_SUCCESS_BORDER_COLOR_HOVER = '#91d4a8'; // Used for the border of a success status item in the hover state.
445
+ export const GL_STATUS_SUCCESS_TEXT_COLOR_DEFAULT = '#24663b'; // Used for the text of a success status item when static or the default state when linked.
446
+ export const GL_STATUS_SUCCESS_TEXT_COLOR_HOVER = '#0d532a'; // Used for the text of a success status item in the hover state.
447
+ export const GL_STATUS_SUCCESS_TEXT_COLOR_FOCUS = '#0d532a'; // Used for the text of a success status item in the focus state.
448
+ export const GL_STATUS_SUCCESS_TEXT_COLOR_ACTIVE = '#0a4020'; // Used for the text of a success status item in the active state.
449
+ export const GL_STATUS_SUCCESS_ICON_COLOR_DEFAULT = '#108548'; // Used for the icon of a success status item when static or the default state when linked.
450
+ export const GL_STATUS_SUCCESS_ICON_COLOR_HOVER = '#217645'; // Used for the icon of a success status item in the hover state.
451
+ export const GL_STATUS_SUCCESS_ICON_COLOR_FOCUS = '#217645'; // Used for the icon of a success status item in the focus state.
452
+ export const GL_STATUS_SUCCESS_ICON_COLOR_ACTIVE = '#24663b'; // Used for the icon of a success status item in the active state.
453
+ export const GL_STATUS_WARNING_BACKGROUND_COLOR_DEFAULT = '#f5d9a8'; // Used for the background of a warning status or confidential item when static or the default state when linked.
454
+ export const GL_STATUS_WARNING_BACKGROUND_COLOR_ACTIVE = '#e9be74'; // Used for the background of a warning status or confidential item in the active state.
455
+ export const GL_STATUS_WARNING_BORDER_COLOR_HOVER = '#e9be74'; // Used for the border of a warning status or confidential item in the hover state.
456
+ export const GL_STATUS_WARNING_TEXT_COLOR_DEFAULT = '#8f4700'; // Used for the text of a warning status or confidential item when static or the default state when linked.
457
+ export const GL_STATUS_WARNING_TEXT_COLOR_HOVER = '#703800'; // Used for the text of a warning status or confidential item in the hover state.
458
+ export const GL_STATUS_WARNING_TEXT_COLOR_FOCUS = '#703800'; // Used for the text of a warning status or confidential item in the focus state.
459
+ export const GL_STATUS_WARNING_TEXT_COLOR_ACTIVE = '#5c2900'; // Used for the text of a warning status or confidential item in the active state.N
460
+ export const GL_STATUS_WARNING_ICON_COLOR_DEFAULT = '#ab6100'; // Used for the icon of a warning status or confidential item when static or the default state when linked.
461
+ export const GL_STATUS_WARNING_ICON_COLOR_HOVER = '#9e5400'; // Used for the icon of a warning status or confidential item in the hover state.
462
+ export const GL_STATUS_WARNING_ICON_COLOR_FOCUS = '#9e5400'; // Used for the icon of a warning status or confidential item in the focus state.
463
+ export const GL_STATUS_WARNING_ICON_COLOR_ACTIVE = '#8f4700'; // Used for the icon of a warning status or confidential item in the active state.
464
+ export const GL_STATUS_DANGER_BACKGROUND_COLOR_DEFAULT = '#fdd4cd'; // Used for the background of a danger (critical) status item when static or the default state when linked.
465
+ export const GL_STATUS_DANGER_BACKGROUND_COLOR_ACTIVE = '#fcb5aa'; // Used for the background of a danger (critical) status item in the active state.
466
+ export const GL_STATUS_DANGER_BORDER_COLOR_HOVER = '#fcb5aa'; // Used for the border of a danger (critical) status item in the hover state.
467
+ export const GL_STATUS_DANGER_TEXT_COLOR_DEFAULT = '#ae1800'; // Used for the text of a danger (critical) status item when static or the default state when linked.
468
+ export const GL_STATUS_DANGER_TEXT_COLOR_HOVER = '#8d1300'; // Used for the text of a danger (critical) status item in the hover state.
469
+ export const GL_STATUS_DANGER_TEXT_COLOR_FOCUS = '#8d1300'; // Used for the text of a danger (critical) status item in the focus state.
470
+ export const GL_STATUS_DANGER_TEXT_COLOR_ACTIVE = '#660e00'; // Used for the text of a danger (critical) status item in the active state.
471
+ export const GL_STATUS_DANGER_ICON_COLOR_DEFAULT = '#dd2b0e'; // Used for the icon of a danger (critical) status item when static or the default state when linked.
472
+ export const GL_STATUS_DANGER_ICON_COLOR_HOVER = '#c91c00'; // Used for the icon of a danger (critical) status item in the hover state.
473
+ export const GL_STATUS_DANGER_ICON_COLOR_FOCUS = '#c91c00'; // Used for the icon of a danger (critical) status item in the focus state.
474
+ export const GL_STATUS_DANGER_ICON_COLOR_ACTIVE = '#ae1800'; // Used for the icon of a danger (critical) status item in the active state.
475
+ export const GL_STATUS_BRAND_BACKGROUND_COLOR_DEFAULT = '#e1d8f9'; // Used for the background of a brand related status item when static or the default state when linked.
476
+ export const GL_STATUS_BRAND_BACKGROUND_COLOR_ACTIVE = '#cbbbf2'; // Used for the background of a brand related status item in the active state.
477
+ export const GL_STATUS_BRAND_BORDER_COLOR_HOVER = '#cbbbf2'; // Used for the border of a brand related status item in the hover state.
478
+ export const GL_STATUS_BRAND_TEXT_COLOR_DEFAULT = '#5943b6'; // Used for the text of a brand related status item when static or the default state when linked.
479
+ export const GL_STATUS_BRAND_TEXT_COLOR_HOVER = '#453894'; // Used for the text of a brand related status item in the hover state.
480
+ export const GL_STATUS_BRAND_TEXT_COLOR_FOCUS = '#453894'; // Used for the text of a brand related status item in the focus state.
481
+ export const GL_STATUS_BRAND_TEXT_COLOR_ACTIVE = '#2f2a6b'; // Used for the text of a brand related status item in the active state.
482
+ export const GL_STATUS_BRAND_ICON_COLOR_DEFAULT = '#7b58cf'; // Used for the icon of a brand related status item when static or the default state when linked.
483
+ export const GL_STATUS_BRAND_ICON_COLOR_HOVER = '#694cc0'; // Used for the icon of a brand related status item in the hover state.
484
+ export const GL_STATUS_BRAND_ICON_COLOR_FOCUS = '#694cc0'; // Used for the icon of a brand related status item in the focus state.
485
+ export const GL_STATUS_BRAND_ICON_COLOR_ACTIVE = '#5943b6'; // Used for the icon of a brand related status item in the active state.
409
486
  export const GL_TEXT_PRIMARY = '#333238'; // Use text.color.default instead
410
487
  export const GL_TEXT_SECONDARY = '#737278'; // Use text.color.subtle instead
411
488
  export const GL_TEXT_TERTIARY = '#89888d'; // Use text.color.disabled instead