@ecomplus/widget-martan 1.1.22 → 1.2.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 (97) hide show
  1. package/.version +0 -0
  2. package/CHANGELOG.md +14 -0
  3. package/cms.config.js +78 -83
  4. package/dist/public/widget-martan.0.min.js +62 -0
  5. package/dist/public/widget-martan.0.min.js.map +1 -0
  6. package/dist/public/widget-martan.1.min.js.map +1 -1
  7. package/dist/public/widget-martan.2.min.js +1 -1
  8. package/dist/public/widget-martan.2.min.js.map +1 -1
  9. package/dist/public/widget-martan.3.min.js +1 -1
  10. package/dist/public/widget-martan.3.min.js.map +1 -1
  11. package/dist/public/widget-martan.4.min.js +1 -1
  12. package/dist/public/widget-martan.4.min.js.map +1 -1
  13. package/dist/public/widget-martan.5.min.js +1 -1
  14. package/dist/public/widget-martan.5.min.js.map +1 -1
  15. package/dist/public/widget-martan.6.min.js +2 -0
  16. package/dist/public/widget-martan.6.min.js.map +1 -0
  17. package/dist/public/widget-martan.7.min.js +2 -0
  18. package/dist/public/widget-martan.7.min.js.map +1 -0
  19. package/dist/public/widget-martan.8.min.js +2 -0
  20. package/dist/public/widget-martan.8.min.js.map +1 -0
  21. package/dist/public/widget-martan.9.min.js +2 -0
  22. package/dist/public/widget-martan.9.min.js.map +1 -0
  23. package/dist/public/widget-martan.var.min.js +3 -3
  24. package/dist/public/widget-martan.var.min.js.map +1 -1
  25. package/dist/widget-martan.0.min.js +62 -0
  26. package/dist/widget-martan.0.min.js.map +1 -0
  27. package/dist/widget-martan.1.min.js.map +1 -1
  28. package/dist/widget-martan.2.min.js +1 -1
  29. package/dist/widget-martan.2.min.js.map +1 -1
  30. package/dist/widget-martan.3.min.js +1 -1
  31. package/dist/widget-martan.3.min.js.map +1 -1
  32. package/dist/widget-martan.4.min.js +1 -1
  33. package/dist/widget-martan.4.min.js.map +1 -1
  34. package/dist/widget-martan.5.min.js +1 -1
  35. package/dist/widget-martan.5.min.js.map +1 -1
  36. package/dist/widget-martan.6.min.js +2 -0
  37. package/dist/widget-martan.6.min.js.map +1 -0
  38. package/dist/widget-martan.7.min.js +2 -0
  39. package/dist/widget-martan.7.min.js.map +1 -0
  40. package/dist/widget-martan.8.min.js +2 -0
  41. package/dist/widget-martan.8.min.js.map +1 -0
  42. package/dist/widget-martan.9.min.js +2 -0
  43. package/dist/widget-martan.9.min.js.map +1 -0
  44. package/dist/widget-martan.min.js +3 -3
  45. package/dist/widget-martan.min.js.map +1 -1
  46. package/package.json +2 -2
  47. package/src/append/product-block.ejs +5 -1
  48. package/src/append/product-card-slots.ejs +1 -1
  49. package/src/append/product-slots.ejs +1 -9
  50. package/src/index.js +17 -12
  51. package/src/utils/configProps.js +29 -0
  52. package/src/utils/lighten-color.js +20 -0
  53. package/src/utils/widget-initializer.js +60 -0
  54. package/src/widgets/questions/Questions.vue +436 -0
  55. package/src/widgets/questions/index.js +10 -0
  56. package/src/widgets/ratings/Rating.vue +223 -0
  57. package/src/widgets/ratings/index.js +232 -0
  58. package/src/widgets/reviews/Reviews.vue +317 -288
  59. package/src/widgets/reviews/components/Quickview.vue +390 -0
  60. package/src/widgets/reviews/components/Rating.vue +106 -0
  61. package/src/widgets/reviews/components/RatingBreakdown.vue +171 -0
  62. package/src/widgets/reviews/components/RatingHistogram.vue +306 -0
  63. package/src/widgets/reviews/components/RatingSummary.vue +226 -0
  64. package/src/widgets/reviews/components/RatingSummaryG.vue +104 -0
  65. package/src/widgets/reviews/components/ReviewCard.vue +223 -0
  66. package/src/widgets/reviews/{ReviewReply.vue → components/ReviewReply.vue} +42 -1
  67. package/src/widgets/reviews/{Score.vue → components/Score.vue} +3 -4
  68. package/src/widgets/reviews/{Sort.vue → components/Sort.vue} +1 -1
  69. package/src/widgets/reviews/components/SortDropdown.vue +184 -0
  70. package/src/widgets/reviews/components/VerifiedPurchase.vue +121 -0
  71. package/src/widgets/reviews/headers/Center.vue +248 -0
  72. package/src/widgets/reviews/headers/Compact.vue +225 -0
  73. package/src/widgets/reviews/headers/Histogram.vue +224 -0
  74. package/src/widgets/reviews/headers/Padrao.vue +113 -0
  75. package/src/widgets/reviews/headers/Summary.vue +217 -0
  76. package/src/widgets/reviews/index.js +2 -48
  77. package/src/append/body.ejs +0 -79
  78. package/src/append/head.ejs +0 -5
  79. package/src/append/stamps.ejs +0 -3
  80. package/src/widgets/reviews/AuthorAndRating.vue +0 -30
  81. package/src/widgets/reviews/AverageScore.vue +0 -160
  82. package/src/widgets/reviews/AverageTotal.vue +0 -35
  83. package/src/widgets/reviews/CardReview.vue +0 -87
  84. package/src/widgets/reviews/GridView.vue +0 -113
  85. package/src/widgets/reviews/HeaderExpanded.vue +0 -84
  86. package/src/widgets/reviews/HeaderMinimal.vue +0 -110
  87. package/src/widgets/reviews/ListView.vue +0 -47
  88. package/src/widgets/reviews/Quickview.vue +0 -397
  89. package/src/widgets/reviews/ReviewBody.vue +0 -39
  90. package/src/widgets/reviews/ThumbsPictures.vue +0 -135
  91. package/src/widgets/reviews/Total.vue +0 -79
  92. package/src/widgets/reviews/VerifiedPurchase.vue +0 -110
  93. package/src/widgets/reviews/isRecommended.vue +0 -44
  94. package/src/widgets/snippets/Rating.vue +0 -71
  95. package/src/widgets/snippets/Snippets.vue +0 -311
  96. package/src/widgets/snippets/index.js +0 -45
  97. /package/src/widgets/reviews/{VideoPlayer.vue → components/VideoPlayer.vue} +0 -0
package/.version ADDED
File without changes
package/CHANGELOG.md CHANGED
@@ -3,6 +3,20 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.2.0](https://github.com/ecomplus/storefront/compare/@ecomplus/widget-martan@1.1.24...@ecomplus/widget-martan@1.2.0) (2026-01-20)
7
+
8
+ ### Features
9
+
10
+ - **widget-martan:** add new widget configuration to CMS settings ([35c5b1c](https://github.com/ecomplus/storefront/commit/35c5b1cc77e9908d7168a28847872cfe1e776ae4))
11
+
12
+ ## [1.1.24](https://github.com/ecomplus/storefront/compare/@ecomplus/widget-martan@1.1.23...@ecomplus/widget-martan@1.1.24) (2025-09-02)
13
+
14
+ **Note:** Version bump only for package @ecomplus/widget-martan
15
+
16
+ ## [1.1.23](https://github.com/ecomplus/storefront/compare/@ecomplus/widget-martan@1.1.22...@ecomplus/widget-martan@1.1.23) (2025-09-01)
17
+
18
+ **Note:** Version bump only for package @ecomplus/widget-martan
19
+
6
20
  ## [1.1.22](https://github.com/ecomplus/storefront/compare/@ecomplus/widget-martan@1.1.21...@ecomplus/widget-martan@1.1.22) (2025-07-10)
7
21
 
8
22
  **Note:** Version bump only for package @ecomplus/widget-martan
package/cms.config.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { name } from './package.json'
2
2
 
3
3
  const label = 'Martan'
4
- const thumbnail = 'https://ik.imagekit.io/2wovc1fdm/storefront-widget.png'
4
+ const thumbnail = 'https://ik.imagekit.io/2wovc1fdm/review-6ee734d1-0d51-4b83-8911-5bd8e74fd18f-1767972806198-logo-nbg_R-cm00EY6.png'
5
5
 
6
6
  const martan = {
7
7
  label: 'Configuração dos Widgets',
@@ -10,31 +10,24 @@ const martan = {
10
10
  hint: 'Para ajuda com a configuração use nossa documentação.(https://docs.martan.app/integracoes/ecomplus)',
11
11
  fields: [
12
12
  {
13
- label: 'ID da loja',
14
- hint: 'Obtenha aqui https://app.martan.app/settings',
13
+ label: 'ID da loja (Store ID)',
14
+ hint: 'Obtenha aqui https://dash.martan.app/stores',
15
15
  name: 'store_id',
16
16
  widget: 'number',
17
17
  required: true
18
18
  },
19
19
  {
20
- label: 'Widget Key',
21
- name: 'widget_key',
22
- widget: 'string',
23
- required: true,
24
- hint: 'Obtenha aqui https://app.martan.app/settings'
25
- },
26
- {
27
- label: 'Web ID',
20
+ label: 'Web ID (API-Key)',
28
21
  name: 'web_id',
29
22
  widget: 'string',
30
23
  required: true,
31
- hint: 'Obtenha aqui https://app.martan.app/settings'
24
+ hint: 'Obtenha aqui https://dash.martan.app/stores'
32
25
  }
33
26
  ]
34
27
  }
35
28
 
36
29
  const widgetRating = {
37
- label: 'Média de avaliações',
30
+ label: 'Widget de Avaliações Card de Produtos (Rating)',
38
31
  name: 'widget_rating',
39
32
  widget: 'object',
40
33
  hint: 'Este widget é exibido no card dos produtos exibindo a média das avaliações através de estrelas.',
@@ -51,14 +44,14 @@ const widgetRating = {
51
44
  hint: 'Exibir estrela com classificação média das notas nos cards de resultado de pesquisa',
52
45
  name: 'search_page',
53
46
  widget: 'boolean',
54
- default: false
47
+ default: true
55
48
  },
56
49
  {
57
50
  label: 'Tamanho da font (px) da estrela',
58
51
  name: 'font_size',
59
52
  hint: 'Tamanho do icone da estrela nos cards de produtos',
60
53
  widget: 'number',
61
- default: 12,
54
+ default: 15,
62
55
  required: false
63
56
  },
64
57
  {
@@ -66,7 +59,25 @@ const widgetRating = {
66
59
  hint: 'Cor do incone de estrela que será exibido no widget de reviews',
67
60
  name: 'star_color',
68
61
  widget: 'color',
69
- required: false
62
+ required: false,
63
+ default: '#ffc107'
64
+ },
65
+ {
66
+ label: 'Estilo do widget',
67
+ name: 'theme',
68
+ widget: 'select',
69
+ required: false,
70
+ default: 'normal',
71
+ options: [
72
+ {
73
+ label: 'Compacto',
74
+ value: 'compact'
75
+ },
76
+ {
77
+ label: 'Nota Completa',
78
+ value: 'normal'
79
+ }
80
+ ]
70
81
  },
71
82
  {
72
83
  label: 'Quando exibir o widget',
@@ -74,14 +85,14 @@ const widgetRating = {
74
85
  name: 'display',
75
86
  widget: 'select',
76
87
  required: false,
77
- default: 'always',
88
+ default: 'gt1',
78
89
  options: [
79
90
  {
80
91
  label: 'Sempre',
81
92
  value: 'always'
82
93
  },
83
94
  {
84
- label: 'Apenas quando houver avaliações',
95
+ label: 'Apenas quando houver +1 avaliação',
85
96
  value: 'gt1'
86
97
  }
87
98
  ]
@@ -112,22 +123,35 @@ const widgetReview = {
112
123
  label: 'Cor do icone de estrela',
113
124
  name: 'star_color',
114
125
  widget: 'color',
115
- required: false
126
+ required: false,
127
+ default: '#ffc107'
116
128
  },
117
129
  {
118
130
  label: 'Estilo do Cabeçalho',
119
131
  name: 'header_layout',
120
132
  widget: 'select',
121
133
  required: false,
122
- default: 'header-minimal',
134
+ default: 'Histogram',
123
135
  options: [
124
136
  {
125
- label: 'Minimal',
126
- value: 'header-minimal'
137
+ label: 'Padrão',
138
+ value: 'Padrao'
139
+ },
140
+ {
141
+ label: 'Compacto',
142
+ value: 'compact'
127
143
  },
128
144
  {
129
- label: 'Expandido',
130
- value: 'header-expanded'
145
+ label: 'Centralizado',
146
+ value: 'Center'
147
+ },
148
+ {
149
+ label: 'Resumo',
150
+ value: 'Summary'
151
+ },
152
+ {
153
+ label: 'Histograma',
154
+ value: 'Histogram'
131
155
  }
132
156
  ]
133
157
  },
@@ -136,7 +160,7 @@ const widgetReview = {
136
160
  name: 'reviews_layout',
137
161
  widget: 'select',
138
162
  required: false,
139
- default: 'list-expanded',
163
+ default: 'list-grid',
140
164
  options: [
141
165
  {
142
166
  label: 'Lista',
@@ -151,53 +175,6 @@ const widgetReview = {
151
175
  ]
152
176
  }
153
177
 
154
- const widgetSnippet = {
155
- label: 'Snippet de Reviews',
156
- name: 'widget_snippet',
157
- widget: 'object',
158
- hint: 'Este widget será exibido na página de produtos acima do preço do produto.',
159
- fields: [
160
- {
161
- label: 'Habilitar Widget',
162
- name: 'is_enabled',
163
- widget: 'boolean',
164
- default: true
165
- },
166
- {
167
- label: 'Cor de fundo',
168
- name: 'background_color',
169
- widget: 'color',
170
- required: false
171
- },
172
- {
173
- label: 'Cor do Texto',
174
- name: 'text_color',
175
- widget: 'color',
176
- required: false
177
- },
178
- {
179
- label: 'Cor do icone de estrela',
180
- name: 'star_color',
181
- widget: 'color',
182
- required: false
183
- },
184
- {
185
- label: 'Bordas',
186
- name: 'border',
187
- widget: 'boolean',
188
- default: false,
189
- required: false
190
- },
191
- {
192
- label: 'Cor da borda',
193
- name: 'border_color',
194
- hint: 'Borda será aplicada apenas se opção acima estiver habilitada',
195
- widget: 'color',
196
- required: false
197
- }
198
- ]
199
- }
200
-
201
178
  const configDefault = {
202
179
  label,
203
180
  thumbnail,
@@ -228,16 +205,6 @@ const configDefault = {
228
205
  widget: 'hidden',
229
206
  default: true
230
207
  },
231
- {
232
- name: 'headAppend',
233
- widget: 'hidden',
234
- default: 'src/append/head'
235
- },
236
- {
237
- name: 'bodyAppend',
238
- widget: 'hidden',
239
- default: 'src/append/body'
240
- },
241
208
  {
242
209
  name: 'productDescriptionAppend',
243
210
  widget: 'hidden',
@@ -256,9 +223,37 @@ const configDefault = {
256
223
  ]
257
224
  }
258
225
 
226
+ const widgetQuestions = {
227
+ label: 'Perguntas e Respostas',
228
+ name: 'widget_questions',
229
+ widget: 'object',
230
+ hint: 'Este widget é exibido apenas na página de produtos, exibindo uma listagem com as perguntas e respostas dos compradores.',
231
+ fields: [
232
+ {
233
+ label: 'Habilitar Widget',
234
+ name: 'is_enabled',
235
+ widget: 'boolean',
236
+ default: true
237
+ },
238
+ {
239
+ label: 'Título',
240
+ name: 'title',
241
+ widget: 'string',
242
+ default: 'Perguntas e respostas',
243
+ required: false
244
+ },
245
+ {
246
+ label: 'Habilitar novas pergunta',
247
+ name: 'enable_new_questions',
248
+ widget: 'boolean',
249
+ default: true
250
+ }
251
+ ]
252
+ }
253
+
259
254
  martan.fields.push(widgetRating)
260
255
  martan.fields.push(widgetReview)
261
- martan.fields.push(widgetSnippet)
256
+ martan.fields.push(widgetQuestions)
262
257
 
263
258
  configDefault.fields.push(martan)
264
259
  export default () => configDefault
@@ -0,0 +1,62 @@
1
+ (window.webpackJsonpwidgetMartan=window.webpackJsonpwidgetMartan||[]).push([[0],{32:function(e,t,n){
2
+ /*!
3
+ * Bootstrap util.js v4.6.2 (https://getbootstrap.com/)
4
+ * Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
5
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
6
+ */
7
+ e.exports=function(e){"use strict";function t(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var n=t(e);function i(e){var t=this,i=!1;return n.default(this).one(a.TRANSITION_END,(function(){i=!0})),setTimeout((function(){i||a.triggerTransitionEnd(t)}),e),this}var a={TRANSITION_END:"bsTransitionEnd",getUID:function(e){do{e+=~~(1e6*Math.random())}while(document.getElementById(e));return e},getSelectorFromElement:function(e){var t=e.getAttribute("data-target");if(!t||"#"===t){var n=e.getAttribute("href");t=n&&"#"!==n?n.trim():""}try{return document.querySelector(t)?t:null}catch(e){return null}},getTransitionDurationFromElement:function(e){if(!e)return 0;var t=n.default(e).css("transition-duration"),i=n.default(e).css("transition-delay"),a=parseFloat(t),o=parseFloat(i);return a||o?(t=t.split(",")[0],i=i.split(",")[0],1e3*(parseFloat(t)+parseFloat(i))):0},reflow:function(e){return e.offsetHeight},triggerTransitionEnd:function(e){n.default(e).trigger("transitionend")},supportsTransitionEnd:function(){return Boolean("transitionend")},isElement:function(e){return(e[0]||e).nodeType},typeCheckConfig:function(e,t,n){for(var i in n)if(Object.prototype.hasOwnProperty.call(n,i)){var o=n[i],r=t[i],l=r&&a.isElement(r)?"element":null==(s=r)?""+s:{}.toString.call(s).match(/\s([a-z]+)/i)[1].toLowerCase();if(!new RegExp(o).test(l))throw new Error(e.toUpperCase()+': Option "'+i+'" provided type "'+l+'" but expected type "'+o+'".')}var s},findShadowRoot:function(e){if(!document.documentElement.attachShadow)return null;if("function"==typeof e.getRootNode){var t=e.getRootNode();return t instanceof ShadowRoot?t:null}return e instanceof ShadowRoot?e:e.parentNode?a.findShadowRoot(e.parentNode):null},jQueryDetection:function(){if(void 0===n.default)throw new TypeError("Bootstrap's JavaScript requires jQuery. jQuery must be included before Bootstrap's JavaScript.");var e=n.default.fn.jquery.split(" ")[0].split(".");if(e[0]<2&&e[1]<9||1===e[0]&&9===e[1]&&e[2]<1||e[0]>=4)throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}};return a.jQueryDetection(),n.default.fn.emulateTransitionEnd=i,n.default.event.special[a.TRANSITION_END]={bindType:"transitionend",delegateType:"transitionend",handle:function(e){if(n.default(e.target).is(this))return e.handleObj.handler.apply(this,arguments)}},a}(n(26))},47:function(e,t,n){
8
+ /*!
9
+ * Bootstrap tooltip.js v4.6.2 (https://getbootstrap.com/)
10
+ * Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
11
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
12
+ */
13
+ e.exports=function(e,t,n){"use strict";function i(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var a=i(e),o=i(t),r=i(n);function l(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function s(){return(s=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e}).apply(this,arguments)}var u=["background","cite","href","itemtype","longdesc","poster","src","xlink:href"],d={"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},f=/^(?:(?:https?|mailto|ftp|tel|file|sms):|[^#&/:?]*(?:[#/?]|$))/i,c=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[\d+/a-z]+=*$/i;function h(e,t,n){if(0===e.length)return e;if(n&&"function"==typeof n)return n(e);for(var i=(new window.DOMParser).parseFromString(e,"text/html"),a=Object.keys(t),o=[].slice.call(i.body.querySelectorAll("*")),r=function(e,n){var i=o[e],r=i.nodeName.toLowerCase();if(-1===a.indexOf(i.nodeName.toLowerCase()))return i.parentNode.removeChild(i),"continue";var l=[].slice.call(i.attributes),s=[].concat(t["*"]||[],t[r]||[]);l.forEach((function(e){(function(e,t){var n=e.nodeName.toLowerCase();if(-1!==t.indexOf(n))return-1===u.indexOf(n)||Boolean(f.test(e.nodeValue)||c.test(e.nodeValue));for(var i=t.filter((function(e){return e instanceof RegExp})),a=0,o=i.length;a<o;a++)if(i[a].test(n))return!0;return!1})(e,s)||i.removeAttribute(e.nodeName)}))},l=0,s=o.length;l<s;l++)r(l);return i.body.innerHTML}var g="tooltip",p=".bs.tooltip",m=a.default.fn[g],_=new RegExp("(^|\\s)bs-tooltip\\S+","g"),v=["sanitize","whiteList","sanitizeFn"],b={AUTO:"auto",TOP:"top",RIGHT:"right",BOTTOM:"bottom",LEFT:"left"},y={animation:!0,template:'<div class="tooltip" role="tooltip"><div class="arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent",customClass:"",sanitize:!0,sanitizeFn:null,whiteList:d,popperConfig:null},w={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(number|string|function)",container:"(string|element|boolean)",fallbackPlacement:"(string|array)",boundary:"(string|element)",customClass:"(string|function)",sanitize:"boolean",sanitizeFn:"(null|function)",whiteList:"object",popperConfig:"(null|object)"},E={HIDE:"hide"+p,HIDDEN:"hidden"+p,SHOW:"show"+p,SHOWN:"shown"+p,INSERTED:"inserted"+p,CLICK:"click"+p,FOCUSIN:"focusin"+p,FOCUSOUT:"focusout"+p,MOUSEENTER:"mouseenter"+p,MOUSELEAVE:"mouseleave"+p},T=function(){function e(e,t){if(void 0===o.default)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=e,this.config=this._getConfig(t),this.tip=null,this._setListeners()}var t,n,i,u=e.prototype;return u.enable=function(){this._isEnabled=!0},u.disable=function(){this._isEnabled=!1},u.toggleEnabled=function(){this._isEnabled=!this._isEnabled},u.toggle=function(e){if(this._isEnabled)if(e){var t=this.constructor.DATA_KEY,n=a.default(e.currentTarget).data(t);n||(n=new this.constructor(e.currentTarget,this._getDelegateConfig()),a.default(e.currentTarget).data(t,n)),n._activeTrigger.click=!n._activeTrigger.click,n._isWithActiveTrigger()?n._enter(null,n):n._leave(null,n)}else{if(a.default(this.getTipElement()).hasClass("show"))return void this._leave(null,this);this._enter(null,this)}},u.dispose=function(){clearTimeout(this._timeout),a.default.removeData(this.element,this.constructor.DATA_KEY),a.default(this.element).off(this.constructor.EVENT_KEY),a.default(this.element).closest(".modal").off("hide.bs.modal",this._hideModalHandler),this.tip&&a.default(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,this._activeTrigger=null,this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},u.show=function(){var e=this;if("none"===a.default(this.element).css("display"))throw new Error("Please use show on visible elements");var t=a.default.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){a.default(this.element).trigger(t);var n=r.default.findShadowRoot(this.element),i=a.default.contains(null!==n?n:this.element.ownerDocument.documentElement,this.element);if(t.isDefaultPrevented()||!i)return;var l=this.getTipElement(),s=r.default.getUID(this.constructor.NAME);l.setAttribute("id",s),this.element.setAttribute("aria-describedby",s),this.setContent(),this.config.animation&&a.default(l).addClass("fade");var u="function"==typeof this.config.placement?this.config.placement.call(this,l,this.element):this.config.placement,d=this._getAttachment(u);this.addAttachmentClass(d);var f=this._getContainer();a.default(l).data(this.constructor.DATA_KEY,this),a.default.contains(this.element.ownerDocument.documentElement,this.tip)||a.default(l).appendTo(f),a.default(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new o.default(this.element,l,this._getPopperConfig(d)),a.default(l).addClass("show"),a.default(l).addClass(this.config.customClass),"ontouchstart"in document.documentElement&&a.default(document.body).children().on("mouseover",null,a.default.noop);var c=function(){e.config.animation&&e._fixTransition();var t=e._hoverState;e._hoverState=null,a.default(e.element).trigger(e.constructor.Event.SHOWN),"out"===t&&e._leave(null,e)};if(a.default(this.tip).hasClass("fade")){var h=r.default.getTransitionDurationFromElement(this.tip);a.default(this.tip).one(r.default.TRANSITION_END,c).emulateTransitionEnd(h)}else c()}},u.hide=function(e){var t=this,n=this.getTipElement(),i=a.default.Event(this.constructor.Event.HIDE),o=function(){"show"!==t._hoverState&&n.parentNode&&n.parentNode.removeChild(n),t._cleanTipClass(),t.element.removeAttribute("aria-describedby"),a.default(t.element).trigger(t.constructor.Event.HIDDEN),null!==t._popper&&t._popper.destroy(),e&&e()};if(a.default(this.element).trigger(i),!i.isDefaultPrevented()){if(a.default(n).removeClass("show"),"ontouchstart"in document.documentElement&&a.default(document.body).children().off("mouseover",null,a.default.noop),this._activeTrigger.click=!1,this._activeTrigger.focus=!1,this._activeTrigger.hover=!1,a.default(this.tip).hasClass("fade")){var l=r.default.getTransitionDurationFromElement(n);a.default(n).one(r.default.TRANSITION_END,o).emulateTransitionEnd(l)}else o();this._hoverState=""}},u.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},u.isWithContent=function(){return Boolean(this.getTitle())},u.addAttachmentClass=function(e){a.default(this.getTipElement()).addClass("bs-tooltip-"+e)},u.getTipElement=function(){return this.tip=this.tip||a.default(this.config.template)[0],this.tip},u.setContent=function(){var e=this.getTipElement();this.setElementContent(a.default(e.querySelectorAll(".tooltip-inner")),this.getTitle()),a.default(e).removeClass("fade show")},u.setElementContent=function(e,t){"object"!=typeof t||!t.nodeType&&!t.jquery?this.config.html?(this.config.sanitize&&(t=h(t,this.config.whiteList,this.config.sanitizeFn)),e.html(t)):e.text(t):this.config.html?a.default(t).parent().is(e)||e.empty().append(t):e.text(a.default(t).text())},u.getTitle=function(){var e=this.element.getAttribute("data-original-title");return e||(e="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),e},u._getPopperConfig=function(e){var t=this;return s({},{placement:e,modifiers:{offset:this._getOffset(),flip:{behavior:this.config.fallbackPlacement},arrow:{element:".arrow"},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(e){e.originalPlacement!==e.placement&&t._handlePopperPlacementChange(e)},onUpdate:function(e){return t._handlePopperPlacementChange(e)}},this.config.popperConfig)},u._getOffset=function(){var e=this,t={};return"function"==typeof this.config.offset?t.fn=function(t){return t.offsets=s({},t.offsets,e.config.offset(t.offsets,e.element)),t}:t.offset=this.config.offset,t},u._getContainer=function(){return!1===this.config.container?document.body:r.default.isElement(this.config.container)?a.default(this.config.container):a.default(document).find(this.config.container)},u._getAttachment=function(e){return b[e.toUpperCase()]},u._setListeners=function(){var e=this;this.config.trigger.split(" ").forEach((function(t){if("click"===t)a.default(e.element).on(e.constructor.Event.CLICK,e.config.selector,(function(t){return e.toggle(t)}));else if("manual"!==t){var n="hover"===t?e.constructor.Event.MOUSEENTER:e.constructor.Event.FOCUSIN,i="hover"===t?e.constructor.Event.MOUSELEAVE:e.constructor.Event.FOCUSOUT;a.default(e.element).on(n,e.config.selector,(function(t){return e._enter(t)})).on(i,e.config.selector,(function(t){return e._leave(t)}))}})),this._hideModalHandler=function(){e.element&&e.hide()},a.default(this.element).closest(".modal").on("hide.bs.modal",this._hideModalHandler),this.config.selector?this.config=s({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},u._fixTitle=function(){var e=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==e)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},u._enter=function(e,t){var n=this.constructor.DATA_KEY;(t=t||a.default(e.currentTarget).data(n))||(t=new this.constructor(e.currentTarget,this._getDelegateConfig()),a.default(e.currentTarget).data(n,t)),e&&(t._activeTrigger["focusin"===e.type?"focus":"hover"]=!0),a.default(t.getTipElement()).hasClass("show")||"show"===t._hoverState?t._hoverState="show":(clearTimeout(t._timeout),t._hoverState="show",t.config.delay&&t.config.delay.show?t._timeout=setTimeout((function(){"show"===t._hoverState&&t.show()}),t.config.delay.show):t.show())},u._leave=function(e,t){var n=this.constructor.DATA_KEY;(t=t||a.default(e.currentTarget).data(n))||(t=new this.constructor(e.currentTarget,this._getDelegateConfig()),a.default(e.currentTarget).data(n,t)),e&&(t._activeTrigger["focusout"===e.type?"focus":"hover"]=!1),t._isWithActiveTrigger()||(clearTimeout(t._timeout),t._hoverState="out",t.config.delay&&t.config.delay.hide?t._timeout=setTimeout((function(){"out"===t._hoverState&&t.hide()}),t.config.delay.hide):t.hide())},u._isWithActiveTrigger=function(){for(var e in this._activeTrigger)if(this._activeTrigger[e])return!0;return!1},u._getConfig=function(e){var t=a.default(this.element).data();return Object.keys(t).forEach((function(e){-1!==v.indexOf(e)&&delete t[e]})),"number"==typeof(e=s({},this.constructor.Default,t,"object"==typeof e&&e?e:{})).delay&&(e.delay={show:e.delay,hide:e.delay}),"number"==typeof e.title&&(e.title=e.title.toString()),"number"==typeof e.content&&(e.content=e.content.toString()),r.default.typeCheckConfig(g,e,this.constructor.DefaultType),e.sanitize&&(e.template=h(e.template,e.whiteList,e.sanitizeFn)),e},u._getDelegateConfig=function(){var e={};if(this.config)for(var t in this.config)this.constructor.Default[t]!==this.config[t]&&(e[t]=this.config[t]);return e},u._cleanTipClass=function(){var e=a.default(this.getTipElement()),t=e.attr("class").match(_);null!==t&&t.length&&e.removeClass(t.join(""))},u._handlePopperPlacementChange=function(e){this.tip=e.instance.popper,this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(e.placement))},u._fixTransition=function(){var e=this.getTipElement(),t=this.config.animation;null===e.getAttribute("x-placement")&&(a.default(e).removeClass("fade"),this.config.animation=!1,this.hide(),this.show(),this.config.animation=t)},e._jQueryInterface=function(t){return this.each((function(){var n=a.default(this),i=n.data("bs.tooltip"),o="object"==typeof t&&t;if((i||!/dispose|hide/.test(t))&&(i||(i=new e(this,o),n.data("bs.tooltip",i)),"string"==typeof t)){if(void 0===i[t])throw new TypeError('No method named "'+t+'"');i[t]()}}))},t=e,i=[{key:"VERSION",get:function(){return"4.6.2"}},{key:"Default",get:function(){return y}},{key:"NAME",get:function(){return g}},{key:"DATA_KEY",get:function(){return"bs.tooltip"}},{key:"Event",get:function(){return E}},{key:"EVENT_KEY",get:function(){return p}},{key:"DefaultType",get:function(){return w}}],(n=null)&&l(t.prototype,n),i&&l(t,i),Object.defineProperty(t,"prototype",{writable:!1}),e}();return a.default.fn[g]=T._jQueryInterface,a.default.fn[g].Constructor=T,a.default.fn[g].noConflict=function(){return a.default.fn[g]=m,T._jQueryInterface},T}(n(26),n(28),n(32))},55:function(e,t,n){
14
+ /*!
15
+ * Bootstrap alert.js v4.6.2 (https://getbootstrap.com/)
16
+ * Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
17
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
18
+ */
19
+ e.exports=function(e,t){"use strict";function n(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var i=n(e),a=n(t);function o(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}var r="alert",l=i.default.fn[r],s=function(){function e(e){this._element=e}var t,n,r,l=e.prototype;return l.close=function(e){var t=this._element;e&&(t=this._getRootElement(e)),this._triggerCloseEvent(t).isDefaultPrevented()||this._removeElement(t)},l.dispose=function(){i.default.removeData(this._element,"bs.alert"),this._element=null},l._getRootElement=function(e){var t=a.default.getSelectorFromElement(e),n=!1;return t&&(n=document.querySelector(t)),n||(n=i.default(e).closest(".alert")[0]),n},l._triggerCloseEvent=function(e){var t=i.default.Event("close.bs.alert");return i.default(e).trigger(t),t},l._removeElement=function(e){var t=this;if(i.default(e).removeClass("show"),i.default(e).hasClass("fade")){var n=a.default.getTransitionDurationFromElement(e);i.default(e).one(a.default.TRANSITION_END,(function(n){return t._destroyElement(e,n)})).emulateTransitionEnd(n)}else this._destroyElement(e)},l._destroyElement=function(e){i.default(e).detach().trigger("closed.bs.alert").remove()},e._jQueryInterface=function(t){return this.each((function(){var n=i.default(this),a=n.data("bs.alert");a||(a=new e(this),n.data("bs.alert",a)),"close"===t&&a[t](this)}))},e._handleDismiss=function(e){return function(t){t&&t.preventDefault(),e.close(this)}},t=e,r=[{key:"VERSION",get:function(){return"4.6.2"}}],(n=null)&&o(t.prototype,n),r&&o(t,r),Object.defineProperty(t,"prototype",{writable:!1}),e}();return i.default(document).on("click.bs.alert.data-api",'[data-dismiss="alert"]',s._handleDismiss(new s)),i.default.fn[r]=s._jQueryInterface,i.default.fn[r].Constructor=s,i.default.fn[r].noConflict=function(){return i.default.fn[r]=l,s._jQueryInterface},s}(n(26),n(32))},56:function(e,t,n){
20
+ /*!
21
+ * Bootstrap button.js v4.6.2 (https://getbootstrap.com/)
22
+ * Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
23
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
24
+ */
25
+ e.exports=function(e){"use strict";function t(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var n=t(e);function i(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}var a="button",o=n.default.fn[a],r=function(){function e(e){this._element=e,this.shouldAvoidTriggerChange=!1}var t,a,o,r=e.prototype;return r.toggle=function(){var e=!0,t=!0,i=n.default(this._element).closest('[data-toggle="buttons"]')[0];if(i){var a=this._element.querySelector('input:not([type="hidden"])');if(a){if("radio"===a.type)if(a.checked&&this._element.classList.contains("active"))e=!1;else{var o=i.querySelector(".active");o&&n.default(o).removeClass("active")}e&&("checkbox"!==a.type&&"radio"!==a.type||(a.checked=!this._element.classList.contains("active")),this.shouldAvoidTriggerChange||n.default(a).trigger("change")),a.focus(),t=!1}}this._element.hasAttribute("disabled")||this._element.classList.contains("disabled")||(t&&this._element.setAttribute("aria-pressed",!this._element.classList.contains("active")),e&&n.default(this._element).toggleClass("active"))},r.dispose=function(){n.default.removeData(this._element,"bs.button"),this._element=null},e._jQueryInterface=function(t,i){return this.each((function(){var a=n.default(this),o=a.data("bs.button");o||(o=new e(this),a.data("bs.button",o)),o.shouldAvoidTriggerChange=i,"toggle"===t&&o[t]()}))},t=e,o=[{key:"VERSION",get:function(){return"4.6.2"}}],(a=null)&&i(t.prototype,a),o&&i(t,o),Object.defineProperty(t,"prototype",{writable:!1}),e}();return n.default(document).on("click.bs.button.data-api",'[data-toggle^="button"]',(function(e){var t=e.target,i=t;if(n.default(t).hasClass("btn")||(t=n.default(t).closest(".btn")[0]),!t||t.hasAttribute("disabled")||t.classList.contains("disabled"))e.preventDefault();else{var a=t.querySelector('input:not([type="hidden"])');if(a&&(a.hasAttribute("disabled")||a.classList.contains("disabled")))return void e.preventDefault();"INPUT"!==i.tagName&&"LABEL"===t.tagName||r._jQueryInterface.call(n.default(t),"toggle","INPUT"===i.tagName)}})).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',(function(e){var t=n.default(e.target).closest(".btn")[0];n.default(t).toggleClass("focus",/^focus(in)?$/.test(e.type))})),n.default(window).on("load.bs.button.data-api",(function(){for(var e=[].slice.call(document.querySelectorAll('[data-toggle="buttons"] .btn')),t=0,n=e.length;t<n;t++){var i=e[t],a=i.querySelector('input:not([type="hidden"])');a.checked||a.hasAttribute("checked")?i.classList.add("active"):i.classList.remove("active")}for(var o=0,r=(e=[].slice.call(document.querySelectorAll('[data-toggle="button"]'))).length;o<r;o++){var l=e[o];"true"===l.getAttribute("aria-pressed")?l.classList.add("active"):l.classList.remove("active")}})),n.default.fn[a]=r._jQueryInterface,n.default.fn[a].Constructor=r,n.default.fn[a].noConflict=function(){return n.default.fn[a]=o,r._jQueryInterface},r}(n(26))},57:function(e,t,n){
26
+ /*!
27
+ * Bootstrap collapse.js v4.6.2 (https://getbootstrap.com/)
28
+ * Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
29
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
30
+ */
31
+ e.exports=function(e,t){"use strict";function n(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var i=n(e),a=n(t);function o(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function r(){return(r=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e}).apply(this,arguments)}var l="collapse",s="bs.collapse",u=i.default.fn[l],d={toggle:!0,parent:""},f={toggle:"boolean",parent:"(string|element)"},c=function(){function e(e,t){this._isTransitioning=!1,this._element=e,this._config=this._getConfig(t),this._triggerArray=[].slice.call(document.querySelectorAll('[data-toggle="collapse"][href="#'+e.id+'"],[data-toggle="collapse"][data-target="#'+e.id+'"]'));for(var n=[].slice.call(document.querySelectorAll('[data-toggle="collapse"]')),i=0,o=n.length;i<o;i++){var r=n[i],l=a.default.getSelectorFromElement(r),s=[].slice.call(document.querySelectorAll(l)).filter((function(t){return t===e}));null!==l&&s.length>0&&(this._selector=l,this._triggerArray.push(r))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var t,n,u,c=e.prototype;return c.toggle=function(){i.default(this._element).hasClass("show")?this.hide():this.show()},c.show=function(){var t,n,o=this;if(!(this._isTransitioning||i.default(this._element).hasClass("show")||(this._parent&&0===(t=[].slice.call(this._parent.querySelectorAll(".show, .collapsing")).filter((function(e){return"string"==typeof o._config.parent?e.getAttribute("data-parent")===o._config.parent:e.classList.contains("collapse")}))).length&&(t=null),t&&(n=i.default(t).not(this._selector).data(s))&&n._isTransitioning))){var r=i.default.Event("show.bs.collapse");if(i.default(this._element).trigger(r),!r.isDefaultPrevented()){t&&(e._jQueryInterface.call(i.default(t).not(this._selector),"hide"),n||i.default(t).data(s,null));var l=this._getDimension();i.default(this._element).removeClass("collapse").addClass("collapsing"),this._element.style[l]=0,this._triggerArray.length&&i.default(this._triggerArray).removeClass("collapsed").attr("aria-expanded",!0),this.setTransitioning(!0);var u="scroll"+(l[0].toUpperCase()+l.slice(1)),d=a.default.getTransitionDurationFromElement(this._element);i.default(this._element).one(a.default.TRANSITION_END,(function(){i.default(o._element).removeClass("collapsing").addClass("collapse show"),o._element.style[l]="",o.setTransitioning(!1),i.default(o._element).trigger("shown.bs.collapse")})).emulateTransitionEnd(d),this._element.style[l]=this._element[u]+"px"}}},c.hide=function(){var e=this;if(!this._isTransitioning&&i.default(this._element).hasClass("show")){var t=i.default.Event("hide.bs.collapse");if(i.default(this._element).trigger(t),!t.isDefaultPrevented()){var n=this._getDimension();this._element.style[n]=this._element.getBoundingClientRect()[n]+"px",a.default.reflow(this._element),i.default(this._element).addClass("collapsing").removeClass("collapse show");var o=this._triggerArray.length;if(o>0)for(var r=0;r<o;r++){var l=this._triggerArray[r],s=a.default.getSelectorFromElement(l);null!==s&&(i.default([].slice.call(document.querySelectorAll(s))).hasClass("show")||i.default(l).addClass("collapsed").attr("aria-expanded",!1))}this.setTransitioning(!0),this._element.style[n]="";var u=a.default.getTransitionDurationFromElement(this._element);i.default(this._element).one(a.default.TRANSITION_END,(function(){e.setTransitioning(!1),i.default(e._element).removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")})).emulateTransitionEnd(u)}}},c.setTransitioning=function(e){this._isTransitioning=e},c.dispose=function(){i.default.removeData(this._element,s),this._config=null,this._parent=null,this._element=null,this._triggerArray=null,this._isTransitioning=null},c._getConfig=function(e){return(e=r({},d,e)).toggle=Boolean(e.toggle),a.default.typeCheckConfig(l,e,f),e},c._getDimension=function(){return i.default(this._element).hasClass("width")?"width":"height"},c._getParent=function(){var t,n=this;a.default.isElement(this._config.parent)?(t=this._config.parent,void 0!==this._config.parent.jquery&&(t=this._config.parent[0])):t=document.querySelector(this._config.parent);var o='[data-toggle="collapse"][data-parent="'+this._config.parent+'"]',r=[].slice.call(t.querySelectorAll(o));return i.default(r).each((function(t,i){n._addAriaAndCollapsedClass(e._getTargetFromElement(i),[i])})),t},c._addAriaAndCollapsedClass=function(e,t){var n=i.default(e).hasClass("show");t.length&&i.default(t).toggleClass("collapsed",!n).attr("aria-expanded",n)},e._getTargetFromElement=function(e){var t=a.default.getSelectorFromElement(e);return t?document.querySelector(t):null},e._jQueryInterface=function(t){return this.each((function(){var n=i.default(this),a=n.data(s),o=r({},d,n.data(),"object"==typeof t&&t?t:{});if(!a&&o.toggle&&"string"==typeof t&&/show|hide/.test(t)&&(o.toggle=!1),a||(a=new e(this,o),n.data(s,a)),"string"==typeof t){if(void 0===a[t])throw new TypeError('No method named "'+t+'"');a[t]()}}))},t=e,u=[{key:"VERSION",get:function(){return"4.6.2"}},{key:"Default",get:function(){return d}}],(n=null)&&o(t.prototype,n),u&&o(t,u),Object.defineProperty(t,"prototype",{writable:!1}),e}();return i.default(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',(function(e){"A"===e.currentTarget.tagName&&e.preventDefault();var t=i.default(this),n=a.default.getSelectorFromElement(this),o=[].slice.call(document.querySelectorAll(n));i.default(o).each((function(){var e=i.default(this),n=e.data(s)?"toggle":t.data();c._jQueryInterface.call(e,n)}))})),i.default.fn[l]=c._jQueryInterface,i.default.fn[l].Constructor=c,i.default.fn[l].noConflict=function(){return i.default.fn[l]=u,c._jQueryInterface},c}(n(26),n(32))},58:function(e,t,n){
32
+ /*!
33
+ * Bootstrap dropdown.js v4.6.2 (https://getbootstrap.com/)
34
+ * Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
35
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
36
+ */
37
+ e.exports=function(e,t,n){"use strict";function i(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var a=i(e),o=i(t),r=i(n);function l(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function s(){return(s=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e}).apply(this,arguments)}var u="dropdown",d="bs.dropdown",f="."+d,c=a.default.fn[u],h=new RegExp("38|40|27"),g={offset:0,flip:!0,boundary:"scrollParent",reference:"toggle",display:"dynamic",popperConfig:null},p={offset:"(number|string|function)",flip:"boolean",boundary:"(string|element)",reference:"(string|element)",display:"string",popperConfig:"(null|object)"},m=function(){function e(e,t){this._element=e,this._popper=null,this._config=this._getConfig(t),this._menu=this._getMenuElement(),this._inNavbar=this._detectNavbar(),this._addEventListeners()}var t,n,i,c=e.prototype;return c.toggle=function(){if(!this._element.disabled&&!a.default(this._element).hasClass("disabled")){var t=a.default(this._menu).hasClass("show");e._clearMenus(),t||this.show(!0)}},c.show=function(t){if(void 0===t&&(t=!1),!(this._element.disabled||a.default(this._element).hasClass("disabled")||a.default(this._menu).hasClass("show"))){var n={relatedTarget:this._element},i=a.default.Event("show.bs.dropdown",n),l=e._getParentFromElement(this._element);if(a.default(l).trigger(i),!i.isDefaultPrevented()){if(!this._inNavbar&&t){if(void 0===o.default)throw new TypeError("Bootstrap's dropdowns require Popper (https://popper.js.org)");var s=this._element;"parent"===this._config.reference?s=l:r.default.isElement(this._config.reference)&&(s=this._config.reference,void 0!==this._config.reference.jquery&&(s=this._config.reference[0])),"scrollParent"!==this._config.boundary&&a.default(l).addClass("position-static"),this._popper=new o.default(s,this._menu,this._getPopperConfig())}"ontouchstart"in document.documentElement&&0===a.default(l).closest(".navbar-nav").length&&a.default(document.body).children().on("mouseover",null,a.default.noop),this._element.focus(),this._element.setAttribute("aria-expanded",!0),a.default(this._menu).toggleClass("show"),a.default(l).toggleClass("show").trigger(a.default.Event("shown.bs.dropdown",n))}}},c.hide=function(){if(!this._element.disabled&&!a.default(this._element).hasClass("disabled")&&a.default(this._menu).hasClass("show")){var t={relatedTarget:this._element},n=a.default.Event("hide.bs.dropdown",t),i=e._getParentFromElement(this._element);a.default(i).trigger(n),n.isDefaultPrevented()||(this._popper&&this._popper.destroy(),a.default(this._menu).toggleClass("show"),a.default(i).toggleClass("show").trigger(a.default.Event("hidden.bs.dropdown",t)))}},c.dispose=function(){a.default.removeData(this._element,d),a.default(this._element).off(f),this._element=null,this._menu=null,null!==this._popper&&(this._popper.destroy(),this._popper=null)},c.update=function(){this._inNavbar=this._detectNavbar(),null!==this._popper&&this._popper.scheduleUpdate()},c._addEventListeners=function(){var e=this;a.default(this._element).on("click.bs.dropdown",(function(t){t.preventDefault(),t.stopPropagation(),e.toggle()}))},c._getConfig=function(e){return e=s({},this.constructor.Default,a.default(this._element).data(),e),r.default.typeCheckConfig(u,e,this.constructor.DefaultType),e},c._getMenuElement=function(){if(!this._menu){var t=e._getParentFromElement(this._element);t&&(this._menu=t.querySelector(".dropdown-menu"))}return this._menu},c._getPlacement=function(){var e=a.default(this._element.parentNode),t="bottom-start";return e.hasClass("dropup")?t=a.default(this._menu).hasClass("dropdown-menu-right")?"top-end":"top-start":e.hasClass("dropright")?t="right-start":e.hasClass("dropleft")?t="left-start":a.default(this._menu).hasClass("dropdown-menu-right")&&(t="bottom-end"),t},c._detectNavbar=function(){return a.default(this._element).closest(".navbar").length>0},c._getOffset=function(){var e=this,t={};return"function"==typeof this._config.offset?t.fn=function(t){return t.offsets=s({},t.offsets,e._config.offset(t.offsets,e._element)),t}:t.offset=this._config.offset,t},c._getPopperConfig=function(){var e={placement:this._getPlacement(),modifiers:{offset:this._getOffset(),flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._config.boundary}}};return"static"===this._config.display&&(e.modifiers.applyStyle={enabled:!1}),s({},e,this._config.popperConfig)},e._jQueryInterface=function(t){return this.each((function(){var n=a.default(this).data(d);if(n||(n=new e(this,"object"==typeof t?t:null),a.default(this).data(d,n)),"string"==typeof t){if(void 0===n[t])throw new TypeError('No method named "'+t+'"');n[t]()}}))},e._clearMenus=function(t){if(!t||3!==t.which&&("keyup"!==t.type||9===t.which))for(var n=[].slice.call(document.querySelectorAll('[data-toggle="dropdown"]')),i=0,o=n.length;i<o;i++){var r=e._getParentFromElement(n[i]),l=a.default(n[i]).data(d),s={relatedTarget:n[i]};if(t&&"click"===t.type&&(s.clickEvent=t),l){var u=l._menu;if(a.default(r).hasClass("show")&&!(t&&("click"===t.type&&/input|textarea/i.test(t.target.tagName)||"keyup"===t.type&&9===t.which)&&a.default.contains(r,t.target))){var f=a.default.Event("hide.bs.dropdown",s);a.default(r).trigger(f),f.isDefaultPrevented()||("ontouchstart"in document.documentElement&&a.default(document.body).children().off("mouseover",null,a.default.noop),n[i].setAttribute("aria-expanded","false"),l._popper&&l._popper.destroy(),a.default(u).removeClass("show"),a.default(r).removeClass("show").trigger(a.default.Event("hidden.bs.dropdown",s)))}}}},e._getParentFromElement=function(e){var t,n=r.default.getSelectorFromElement(e);return n&&(t=document.querySelector(n)),t||e.parentNode},e._dataApiKeydownHandler=function(t){if(!(/input|textarea/i.test(t.target.tagName)?32===t.which||27!==t.which&&(40!==t.which&&38!==t.which||a.default(t.target).closest(".dropdown-menu").length):!h.test(t.which))&&!this.disabled&&!a.default(this).hasClass("disabled")){var n=e._getParentFromElement(this),i=a.default(n).hasClass("show");if(i||27!==t.which){if(t.preventDefault(),t.stopPropagation(),!i||27===t.which||32===t.which)return 27===t.which&&a.default(n.querySelector('[data-toggle="dropdown"]')).trigger("focus"),void a.default(this).trigger("click");var o=[].slice.call(n.querySelectorAll(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)")).filter((function(e){return a.default(e).is(":visible")}));if(0!==o.length){var r=o.indexOf(t.target);38===t.which&&r>0&&r--,40===t.which&&r<o.length-1&&r++,r<0&&(r=0),o[r].focus()}}}},t=e,i=[{key:"VERSION",get:function(){return"4.6.2"}},{key:"Default",get:function(){return g}},{key:"DefaultType",get:function(){return p}}],(n=null)&&l(t.prototype,n),i&&l(t,i),Object.defineProperty(t,"prototype",{writable:!1}),e}();return a.default(document).on("keydown.bs.dropdown.data-api",'[data-toggle="dropdown"]',m._dataApiKeydownHandler).on("keydown.bs.dropdown.data-api",".dropdown-menu",m._dataApiKeydownHandler).on("click.bs.dropdown.data-api keyup.bs.dropdown.data-api",m._clearMenus).on("click.bs.dropdown.data-api",'[data-toggle="dropdown"]',(function(e){e.preventDefault(),e.stopPropagation(),m._jQueryInterface.call(a.default(this),"toggle")})).on("click.bs.dropdown.data-api",".dropdown form",(function(e){e.stopPropagation()})),a.default.fn[u]=m._jQueryInterface,a.default.fn[u].Constructor=m,a.default.fn[u].noConflict=function(){return a.default.fn[u]=c,m._jQueryInterface},m}(n(26),n(28),n(32))},59:function(e,t,n){
38
+ /*!
39
+ * Bootstrap modal.js v4.6.2 (https://getbootstrap.com/)
40
+ * Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
41
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
42
+ */
43
+ e.exports=function(e,t){"use strict";function n(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var i=n(e),a=n(t);function o(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function r(){return(r=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e}).apply(this,arguments)}var l="modal",s=".bs.modal",u=i.default.fn[l],d={backdrop:!0,keyboard:!0,focus:!0,show:!0},f={backdrop:"(boolean|string)",keyboard:"boolean",focus:"boolean",show:"boolean"},c=function(){function e(e,t){this._config=this._getConfig(t),this._element=e,this._dialog=e.querySelector(".modal-dialog"),this._backdrop=null,this._isShown=!1,this._isBodyOverflowing=!1,this._ignoreBackdropClick=!1,this._isTransitioning=!1,this._scrollbarWidth=0}var t,n,u,c=e.prototype;return c.toggle=function(e){return this._isShown?this.hide():this.show(e)},c.show=function(e){var t=this;if(!this._isShown&&!this._isTransitioning){var n=i.default.Event("show.bs.modal",{relatedTarget:e});i.default(this._element).trigger(n),n.isDefaultPrevented()||(this._isShown=!0,i.default(this._element).hasClass("fade")&&(this._isTransitioning=!0),this._checkScrollbar(),this._setScrollbar(),this._adjustDialog(),this._setEscapeEvent(),this._setResizeEvent(),i.default(this._element).on("click.dismiss.bs.modal",'[data-dismiss="modal"]',(function(e){return t.hide(e)})),i.default(this._dialog).on("mousedown.dismiss.bs.modal",(function(){i.default(t._element).one("mouseup.dismiss.bs.modal",(function(e){i.default(e.target).is(t._element)&&(t._ignoreBackdropClick=!0)}))})),this._showBackdrop((function(){return t._showElement(e)})))}},c.hide=function(e){var t=this;if(e&&e.preventDefault(),this._isShown&&!this._isTransitioning){var n=i.default.Event("hide.bs.modal");if(i.default(this._element).trigger(n),this._isShown&&!n.isDefaultPrevented()){this._isShown=!1;var o=i.default(this._element).hasClass("fade");if(o&&(this._isTransitioning=!0),this._setEscapeEvent(),this._setResizeEvent(),i.default(document).off("focusin.bs.modal"),i.default(this._element).removeClass("show"),i.default(this._element).off("click.dismiss.bs.modal"),i.default(this._dialog).off("mousedown.dismiss.bs.modal"),o){var r=a.default.getTransitionDurationFromElement(this._element);i.default(this._element).one(a.default.TRANSITION_END,(function(e){return t._hideModal(e)})).emulateTransitionEnd(r)}else this._hideModal()}}},c.dispose=function(){[window,this._element,this._dialog].forEach((function(e){return i.default(e).off(s)})),i.default(document).off("focusin.bs.modal"),i.default.removeData(this._element,"bs.modal"),this._config=null,this._element=null,this._dialog=null,this._backdrop=null,this._isShown=null,this._isBodyOverflowing=null,this._ignoreBackdropClick=null,this._isTransitioning=null,this._scrollbarWidth=null},c.handleUpdate=function(){this._adjustDialog()},c._getConfig=function(e){return e=r({},d,e),a.default.typeCheckConfig(l,e,f),e},c._triggerBackdropTransition=function(){var e=this,t=i.default.Event("hidePrevented.bs.modal");if(i.default(this._element).trigger(t),!t.isDefaultPrevented()){var n=this._element.scrollHeight>document.documentElement.clientHeight;n||(this._element.style.overflowY="hidden"),this._element.classList.add("modal-static");var o=a.default.getTransitionDurationFromElement(this._dialog);i.default(this._element).off(a.default.TRANSITION_END),i.default(this._element).one(a.default.TRANSITION_END,(function(){e._element.classList.remove("modal-static"),n||i.default(e._element).one(a.default.TRANSITION_END,(function(){e._element.style.overflowY=""})).emulateTransitionEnd(e._element,o)})).emulateTransitionEnd(o),this._element.focus()}},c._showElement=function(e){var t=this,n=i.default(this._element).hasClass("fade"),o=this._dialog?this._dialog.querySelector(".modal-body"):null;this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),i.default(this._dialog).hasClass("modal-dialog-scrollable")&&o?o.scrollTop=0:this._element.scrollTop=0,n&&a.default.reflow(this._element),i.default(this._element).addClass("show"),this._config.focus&&this._enforceFocus();var r=i.default.Event("shown.bs.modal",{relatedTarget:e}),l=function(){t._config.focus&&t._element.focus(),t._isTransitioning=!1,i.default(t._element).trigger(r)};if(n){var s=a.default.getTransitionDurationFromElement(this._dialog);i.default(this._dialog).one(a.default.TRANSITION_END,l).emulateTransitionEnd(s)}else l()},c._enforceFocus=function(){var e=this;i.default(document).off("focusin.bs.modal").on("focusin.bs.modal",(function(t){document!==t.target&&e._element!==t.target&&0===i.default(e._element).has(t.target).length&&e._element.focus()}))},c._setEscapeEvent=function(){var e=this;this._isShown?i.default(this._element).on("keydown.dismiss.bs.modal",(function(t){e._config.keyboard&&27===t.which?(t.preventDefault(),e.hide()):e._config.keyboard||27!==t.which||e._triggerBackdropTransition()})):this._isShown||i.default(this._element).off("keydown.dismiss.bs.modal")},c._setResizeEvent=function(){var e=this;this._isShown?i.default(window).on("resize.bs.modal",(function(t){return e.handleUpdate(t)})):i.default(window).off("resize.bs.modal")},c._hideModal=function(){var e=this;this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._showBackdrop((function(){i.default(document.body).removeClass("modal-open"),e._resetAdjustments(),e._resetScrollbar(),i.default(e._element).trigger("hidden.bs.modal")}))},c._removeBackdrop=function(){this._backdrop&&(i.default(this._backdrop).remove(),this._backdrop=null)},c._showBackdrop=function(e){var t=this,n=i.default(this._element).hasClass("fade")?"fade":"";if(this._isShown&&this._config.backdrop){if(this._backdrop=document.createElement("div"),this._backdrop.className="modal-backdrop",n&&this._backdrop.classList.add(n),i.default(this._backdrop).appendTo(document.body),i.default(this._element).on("click.dismiss.bs.modal",(function(e){t._ignoreBackdropClick?t._ignoreBackdropClick=!1:e.target===e.currentTarget&&("static"===t._config.backdrop?t._triggerBackdropTransition():t.hide())})),n&&a.default.reflow(this._backdrop),i.default(this._backdrop).addClass("show"),!e)return;if(!n)return void e();var o=a.default.getTransitionDurationFromElement(this._backdrop);i.default(this._backdrop).one(a.default.TRANSITION_END,e).emulateTransitionEnd(o)}else if(!this._isShown&&this._backdrop){i.default(this._backdrop).removeClass("show");var r=function(){t._removeBackdrop(),e&&e()};if(i.default(this._element).hasClass("fade")){var l=a.default.getTransitionDurationFromElement(this._backdrop);i.default(this._backdrop).one(a.default.TRANSITION_END,r).emulateTransitionEnd(l)}else r()}else e&&e()},c._adjustDialog=function(){var e=this._element.scrollHeight>document.documentElement.clientHeight;!this._isBodyOverflowing&&e&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!e&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},c._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},c._checkScrollbar=function(){var e=document.body.getBoundingClientRect();this._isBodyOverflowing=Math.round(e.left+e.right)<window.innerWidth,this._scrollbarWidth=this._getScrollbarWidth()},c._setScrollbar=function(){var e=this;if(this._isBodyOverflowing){var t=[].slice.call(document.querySelectorAll(".fixed-top, .fixed-bottom, .is-fixed, .sticky-top")),n=[].slice.call(document.querySelectorAll(".sticky-top"));i.default(t).each((function(t,n){var a=n.style.paddingRight,o=i.default(n).css("padding-right");i.default(n).data("padding-right",a).css("padding-right",parseFloat(o)+e._scrollbarWidth+"px")})),i.default(n).each((function(t,n){var a=n.style.marginRight,o=i.default(n).css("margin-right");i.default(n).data("margin-right",a).css("margin-right",parseFloat(o)-e._scrollbarWidth+"px")}));var a=document.body.style.paddingRight,o=i.default(document.body).css("padding-right");i.default(document.body).data("padding-right",a).css("padding-right",parseFloat(o)+this._scrollbarWidth+"px")}i.default(document.body).addClass("modal-open")},c._resetScrollbar=function(){var e=[].slice.call(document.querySelectorAll(".fixed-top, .fixed-bottom, .is-fixed, .sticky-top"));i.default(e).each((function(e,t){var n=i.default(t).data("padding-right");i.default(t).removeData("padding-right"),t.style.paddingRight=n||""}));var t=[].slice.call(document.querySelectorAll(".sticky-top"));i.default(t).each((function(e,t){var n=i.default(t).data("margin-right");void 0!==n&&i.default(t).css("margin-right",n).removeData("margin-right")}));var n=i.default(document.body).data("padding-right");i.default(document.body).removeData("padding-right"),document.body.style.paddingRight=n||""},c._getScrollbarWidth=function(){var e=document.createElement("div");e.className="modal-scrollbar-measure",document.body.appendChild(e);var t=e.getBoundingClientRect().width-e.clientWidth;return document.body.removeChild(e),t},e._jQueryInterface=function(t,n){return this.each((function(){var a=i.default(this).data("bs.modal"),o=r({},d,i.default(this).data(),"object"==typeof t&&t?t:{});if(a||(a=new e(this,o),i.default(this).data("bs.modal",a)),"string"==typeof t){if(void 0===a[t])throw new TypeError('No method named "'+t+'"');a[t](n)}else o.show&&a.show(n)}))},t=e,u=[{key:"VERSION",get:function(){return"4.6.2"}},{key:"Default",get:function(){return d}}],(n=null)&&o(t.prototype,n),u&&o(t,u),Object.defineProperty(t,"prototype",{writable:!1}),e}();return i.default(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',(function(e){var t,n=this,o=a.default.getSelectorFromElement(this);o&&(t=document.querySelector(o));var l=i.default(t).data("bs.modal")?"toggle":r({},i.default(t).data(),i.default(this).data());"A"!==this.tagName&&"AREA"!==this.tagName||e.preventDefault();var s=i.default(t).one("show.bs.modal",(function(e){e.isDefaultPrevented()||s.one("hidden.bs.modal",(function(){i.default(n).is(":visible")&&n.focus()}))}));c._jQueryInterface.call(i.default(t),l,this)})),i.default.fn[l]=c._jQueryInterface,i.default.fn[l].Constructor=c,i.default.fn[l].noConflict=function(){return i.default.fn[l]=u,c._jQueryInterface},c}(n(26),n(32))},60:function(e,t,n){
44
+ /*!
45
+ * Bootstrap popover.js v4.6.2 (https://getbootstrap.com/)
46
+ * Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
47
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
48
+ */
49
+ e.exports=function(e,t){"use strict";function n(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var i=n(e),a=n(t);function o(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function r(){return(r=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e}).apply(this,arguments)}function l(e,t){return(l=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e})(e,t)}var s="popover",u=".bs.popover",d=i.default.fn[s],f=new RegExp("(^|\\s)bs-popover\\S+","g"),c=r({},a.default.Default,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-header"></h3><div class="popover-body"></div></div>'}),h=r({},a.default.DefaultType,{content:"(string|element|function)"}),g={HIDE:"hide"+u,HIDDEN:"hidden"+u,SHOW:"show"+u,SHOWN:"shown"+u,INSERTED:"inserted"+u,CLICK:"click"+u,FOCUSIN:"focusin"+u,FOCUSOUT:"focusout"+u,MOUSEENTER:"mouseenter"+u,MOUSELEAVE:"mouseleave"+u},p=function(e){var t,n;function a(){return e.apply(this,arguments)||this}n=e,(t=a).prototype=Object.create(n.prototype),t.prototype.constructor=t,l(t,n);var r,d,p,m=a.prototype;return m.isWithContent=function(){return this.getTitle()||this._getContent()},m.addAttachmentClass=function(e){i.default(this.getTipElement()).addClass("bs-popover-"+e)},m.getTipElement=function(){return this.tip=this.tip||i.default(this.config.template)[0],this.tip},m.setContent=function(){var e=i.default(this.getTipElement());this.setElementContent(e.find(".popover-header"),this.getTitle());var t=this._getContent();"function"==typeof t&&(t=t.call(this.element)),this.setElementContent(e.find(".popover-body"),t),e.removeClass("fade show")},m._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},m._cleanTipClass=function(){var e=i.default(this.getTipElement()),t=e.attr("class").match(f);null!==t&&t.length>0&&e.removeClass(t.join(""))},a._jQueryInterface=function(e){return this.each((function(){var t=i.default(this).data("bs.popover"),n="object"==typeof e?e:null;if((t||!/dispose|hide/.test(e))&&(t||(t=new a(this,n),i.default(this).data("bs.popover",t)),"string"==typeof e)){if(void 0===t[e])throw new TypeError('No method named "'+e+'"');t[e]()}}))},r=a,p=[{key:"VERSION",get:function(){return"4.6.2"}},{key:"Default",get:function(){return c}},{key:"NAME",get:function(){return s}},{key:"DATA_KEY",get:function(){return"bs.popover"}},{key:"Event",get:function(){return g}},{key:"EVENT_KEY",get:function(){return u}},{key:"DefaultType",get:function(){return h}}],(d=null)&&o(r.prototype,d),p&&o(r,p),Object.defineProperty(r,"prototype",{writable:!1}),a}(a.default);return i.default.fn[s]=p._jQueryInterface,i.default.fn[s].Constructor=p,i.default.fn[s].noConflict=function(){return i.default.fn[s]=d,p._jQueryInterface},p}(n(26),n(47))},61:function(e,t,n){
50
+ /*!
51
+ * Bootstrap tab.js v4.6.2 (https://getbootstrap.com/)
52
+ * Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
53
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
54
+ */
55
+ e.exports=function(e,t){"use strict";function n(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var i=n(e),a=n(t);function o(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}var r=i.default.fn.tab,l=function(){function e(e){this._element=e}var t,n,r,l=e.prototype;return l.show=function(){var e=this;if(!(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&i.default(this._element).hasClass("active")||i.default(this._element).hasClass("disabled")||this._element.hasAttribute("disabled"))){var t,n,o=i.default(this._element).closest(".nav, .list-group")[0],r=a.default.getSelectorFromElement(this._element);if(o){var l="UL"===o.nodeName||"OL"===o.nodeName?"> li > .active":".active";n=(n=i.default.makeArray(i.default(o).find(l)))[n.length-1]}var s=i.default.Event("hide.bs.tab",{relatedTarget:this._element}),u=i.default.Event("show.bs.tab",{relatedTarget:n});if(n&&i.default(n).trigger(s),i.default(this._element).trigger(u),!u.isDefaultPrevented()&&!s.isDefaultPrevented()){r&&(t=document.querySelector(r)),this._activate(this._element,o);var d=function(){var t=i.default.Event("hidden.bs.tab",{relatedTarget:e._element}),a=i.default.Event("shown.bs.tab",{relatedTarget:n});i.default(n).trigger(t),i.default(e._element).trigger(a)};t?this._activate(t,t.parentNode,d):d()}}},l.dispose=function(){i.default.removeData(this._element,"bs.tab"),this._element=null},l._activate=function(e,t,n){var o=this,r=(!t||"UL"!==t.nodeName&&"OL"!==t.nodeName?i.default(t).children(".active"):i.default(t).find("> li > .active"))[0],l=n&&r&&i.default(r).hasClass("fade"),s=function(){return o._transitionComplete(e,r,n)};if(r&&l){var u=a.default.getTransitionDurationFromElement(r);i.default(r).removeClass("show").one(a.default.TRANSITION_END,s).emulateTransitionEnd(u)}else s()},l._transitionComplete=function(e,t,n){if(t){i.default(t).removeClass("active");var o=i.default(t.parentNode).find("> .dropdown-menu .active")[0];o&&i.default(o).removeClass("active"),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!1)}i.default(e).addClass("active"),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!0),a.default.reflow(e),e.classList.contains("fade")&&e.classList.add("show");var r=e.parentNode;if(r&&"LI"===r.nodeName&&(r=r.parentNode),r&&i.default(r).hasClass("dropdown-menu")){var l=i.default(e).closest(".dropdown")[0];if(l){var s=[].slice.call(l.querySelectorAll(".dropdown-toggle"));i.default(s).addClass("active")}e.setAttribute("aria-expanded",!0)}n&&n()},e._jQueryInterface=function(t){return this.each((function(){var n=i.default(this),a=n.data("bs.tab");if(a||(a=new e(this),n.data("bs.tab",a)),"string"==typeof t){if(void 0===a[t])throw new TypeError('No method named "'+t+'"');a[t]()}}))},t=e,r=[{key:"VERSION",get:function(){return"4.6.2"}}],(n=null)&&o(t.prototype,n),r&&o(t,r),Object.defineProperty(t,"prototype",{writable:!1}),e}();return i.default(document).on("click.bs.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',(function(e){e.preventDefault(),l._jQueryInterface.call(i.default(this),"show")})),i.default.fn.tab=l._jQueryInterface,i.default.fn.tab.Constructor=l,i.default.fn.tab.noConflict=function(){return i.default.fn.tab=r,l._jQueryInterface},l}(n(26),n(32))},62:function(e,t,n){
56
+ /*!
57
+ * Bootstrap toast.js v4.6.2 (https://getbootstrap.com/)
58
+ * Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
59
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
60
+ */
61
+ e.exports=function(e,t){"use strict";function n(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var i=n(e),a=n(t);function o(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function r(){return(r=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e}).apply(this,arguments)}var l="toast",s=i.default.fn[l],u={animation:!0,autohide:!0,delay:500},d={animation:"boolean",autohide:"boolean",delay:"number"},f=function(){function e(e,t){this._element=e,this._config=this._getConfig(t),this._timeout=null,this._setListeners()}var t,n,s,f=e.prototype;return f.show=function(){var e=this,t=i.default.Event("show.bs.toast");if(i.default(this._element).trigger(t),!t.isDefaultPrevented()){this._clearTimeout(),this._config.animation&&this._element.classList.add("fade");var n=function(){e._element.classList.remove("showing"),e._element.classList.add("show"),i.default(e._element).trigger("shown.bs.toast"),e._config.autohide&&(e._timeout=setTimeout((function(){e.hide()}),e._config.delay))};if(this._element.classList.remove("hide"),a.default.reflow(this._element),this._element.classList.add("showing"),this._config.animation){var o=a.default.getTransitionDurationFromElement(this._element);i.default(this._element).one(a.default.TRANSITION_END,n).emulateTransitionEnd(o)}else n()}},f.hide=function(){if(this._element.classList.contains("show")){var e=i.default.Event("hide.bs.toast");i.default(this._element).trigger(e),e.isDefaultPrevented()||this._close()}},f.dispose=function(){this._clearTimeout(),this._element.classList.contains("show")&&this._element.classList.remove("show"),i.default(this._element).off("click.dismiss.bs.toast"),i.default.removeData(this._element,"bs.toast"),this._element=null,this._config=null},f._getConfig=function(e){return e=r({},u,i.default(this._element).data(),"object"==typeof e&&e?e:{}),a.default.typeCheckConfig(l,e,this.constructor.DefaultType),e},f._setListeners=function(){var e=this;i.default(this._element).on("click.dismiss.bs.toast",'[data-dismiss="toast"]',(function(){return e.hide()}))},f._close=function(){var e=this,t=function(){e._element.classList.add("hide"),i.default(e._element).trigger("hidden.bs.toast")};if(this._element.classList.remove("show"),this._config.animation){var n=a.default.getTransitionDurationFromElement(this._element);i.default(this._element).one(a.default.TRANSITION_END,t).emulateTransitionEnd(n)}else t()},f._clearTimeout=function(){clearTimeout(this._timeout),this._timeout=null},e._jQueryInterface=function(t){return this.each((function(){var n=i.default(this),a=n.data("bs.toast");if(a||(a=new e(this,"object"==typeof t&&t),n.data("bs.toast",a)),"string"==typeof t){if(void 0===a[t])throw new TypeError('No method named "'+t+'"');a[t](this)}}))},t=e,s=[{key:"VERSION",get:function(){return"4.6.2"}},{key:"DefaultType",get:function(){return d}},{key:"Default",get:function(){return u}}],(n=null)&&o(t.prototype,n),s&&o(t,s),Object.defineProperty(t,"prototype",{writable:!1}),e}();return i.default.fn[l]=f._jQueryInterface,i.default.fn[l].Constructor=f,i.default.fn[l].noConflict=function(){return i.default.fn[l]=s,f._jQueryInterface},f}(n(26),n(32))}}]);
62
+ //# sourceMappingURL=widget-martan.0.min.js.map