@covalent/components 1.0.11 → 1.0.14

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 (247) hide show
  1. package/actionRibbon.js +192 -0
  2. package/alert.js +198 -0
  3. package/appDetail.js +69 -0
  4. package/appShell.js +399 -0
  5. package/button.js +280 -0
  6. package/checkbox.js +270 -0
  7. package/circularProgress.js +184 -0
  8. package/components/{action-ribbon → src/action-ribbon}/action-ribbon-base.d.ts +3 -3
  9. package/components/src/action-ribbon/action-ribbon-base.d.ts.map +1 -0
  10. package/components/{action-ribbon/action-ribbon.component.d.ts → src/action-ribbon/action-ribbon.d.ts} +1 -1
  11. package/components/src/action-ribbon/action-ribbon.d.ts.map +1 -0
  12. package/components/{action-ribbon → src/action-ribbon}/foundation.d.ts +0 -0
  13. package/components/src/action-ribbon/foundation.d.ts.map +1 -0
  14. package/components/src/alert/alert-base.d.ts +31 -0
  15. package/components/src/alert/alert-base.d.ts.map +1 -0
  16. package/components/src/alert/alert.d.ts +15 -0
  17. package/components/src/alert/alert.d.ts.map +1 -0
  18. package/components/src/app-detail/app-detail-base.d.ts +5 -0
  19. package/components/src/app-detail/app-detail-base.d.ts.map +1 -0
  20. package/components/src/app-detail/app-detail.d.ts +10 -0
  21. package/components/src/app-detail/app-detail.d.ts.map +1 -0
  22. package/components/src/app-shell/app-shell.d.ts +27 -0
  23. package/components/src/app-shell/app-shell.d.ts.map +1 -0
  24. package/components/src/button/button.d.ts +10 -0
  25. package/components/src/button/button.d.ts.map +1 -0
  26. package/components/src/card/card-base.d.ts +17 -0
  27. package/components/src/card/card-base.d.ts.map +1 -0
  28. package/components/src/card/card.d.ts +10 -0
  29. package/components/src/card/card.d.ts.map +1 -0
  30. package/components/src/checkbox/checkbox.d.ts +10 -0
  31. package/components/src/checkbox/checkbox.d.ts.map +1 -0
  32. package/components/src/chips/chip-base.d.ts +52 -0
  33. package/components/src/chips/chip-base.d.ts.map +1 -0
  34. package/components/src/chips/chip-set-base.d.ts +33 -0
  35. package/components/src/chips/chip-set-base.d.ts.map +1 -0
  36. package/components/src/chips/chip-set.d.ts +15 -0
  37. package/components/src/chips/chip-set.d.ts.map +1 -0
  38. package/components/src/chips/chip.d.ts +15 -0
  39. package/components/src/chips/chip.d.ts.map +1 -0
  40. package/components/src/chips/foundation.d.ts +38 -0
  41. package/components/src/chips/foundation.d.ts.map +1 -0
  42. package/components/src/circular-progress/circular-progress.d.ts +10 -0
  43. package/components/src/circular-progress/circular-progress.d.ts.map +1 -0
  44. package/components/src/dialog/dialog.d.ts +10 -0
  45. package/components/src/dialog/dialog.d.ts.map +1 -0
  46. package/components/src/drawer/drawer.d.ts +10 -0
  47. package/components/src/drawer/drawer.d.ts.map +1 -0
  48. package/components/src/formfield/formfield.d.ts +10 -0
  49. package/components/src/formfield/formfield.d.ts.map +1 -0
  50. package/components/src/icon/icon.d.ts +10 -0
  51. package/components/src/icon/icon.d.ts.map +1 -0
  52. package/components/src/icon-button/icon-button.d.ts +10 -0
  53. package/components/src/icon-button/icon-button.d.ts.map +1 -0
  54. package/components/src/index.d.ts +29 -0
  55. package/components/src/index.d.ts.map +1 -0
  56. package/components/src/linear-progress/linear-progress.d.ts +10 -0
  57. package/components/src/linear-progress/linear-progress.d.ts.map +1 -0
  58. package/components/src/list/check-list-item.d.ts +10 -0
  59. package/components/src/list/check-list-item.d.ts.map +1 -0
  60. package/components/src/list/list-expansion.d.ts +14 -0
  61. package/components/src/list/list-expansion.d.ts.map +1 -0
  62. package/components/src/list/list-item.d.ts +12 -0
  63. package/components/src/list/list-item.d.ts.map +1 -0
  64. package/components/src/list/list.d.ts +10 -0
  65. package/components/src/list/list.d.ts.map +1 -0
  66. package/components/src/list/radio-list-item.d.ts +10 -0
  67. package/components/src/list/radio-list-item.d.ts.map +1 -0
  68. package/components/src/menu/menu.d.ts +10 -0
  69. package/components/src/menu/menu.d.ts.map +1 -0
  70. package/components/src/radio/radio.d.ts +10 -0
  71. package/components/src/radio/radio.d.ts.map +1 -0
  72. package/components/src/select/select.d.ts +10 -0
  73. package/components/src/select/select.d.ts.map +1 -0
  74. package/components/src/slider/slider-range.d.ts +10 -0
  75. package/components/src/slider/slider-range.d.ts.map +1 -0
  76. package/components/src/slider/slider.d.ts +10 -0
  77. package/components/src/slider/slider.d.ts.map +1 -0
  78. package/components/src/snackbar/snackbar.d.ts +10 -0
  79. package/components/src/snackbar/snackbar.d.ts.map +1 -0
  80. package/components/src/switch/switch.d.ts +10 -0
  81. package/components/src/switch/switch.d.ts.map +1 -0
  82. package/components/src/tab/tab-bar.d.ts +10 -0
  83. package/components/src/tab/tab-bar.d.ts.map +1 -0
  84. package/components/src/tab/tab.d.ts +10 -0
  85. package/components/src/tab/tab.d.ts.map +1 -0
  86. package/components/src/textarea/textarea.d.ts +10 -0
  87. package/components/src/textarea/textarea.d.ts.map +1 -0
  88. package/components/src/textfield/textfield.d.ts +10 -0
  89. package/components/src/textfield/textfield.d.ts.map +1 -0
  90. package/components/src/top-app-bar/top-app-bar-fixed.d.ts +10 -0
  91. package/components/src/top-app-bar/top-app-bar-fixed.d.ts.map +1 -0
  92. package/components/src/top-app-bar/top-app-bar.d.ts +10 -0
  93. package/components/src/top-app-bar/top-app-bar.d.ts.map +1 -0
  94. package/dialog.js +264 -0
  95. package/drawer.js +185 -0
  96. package/formField.js +157 -0
  97. package/icon.js +99 -0
  98. package/iconButton.js +256 -0
  99. package/{covalent-icons → icons}/covalent-icons.css +0 -0
  100. package/{covalent-icons → icons}/covalent-icons.eot +0 -0
  101. package/{covalent-icons → icons}/covalent-icons.svg +0 -0
  102. package/{covalent-icons → icons}/covalent-icons.ttf +0 -0
  103. package/{covalent-icons → icons}/covalent-icons.woff +0 -0
  104. package/icons/favicon.ico +0 -0
  105. package/index.js +1877 -0
  106. package/linearProgress.js +154 -0
  107. package/list.js +344 -0
  108. package/listExpansion.js +360 -0
  109. package/listItem.js +264 -0
  110. package/listRadioItem.js +342 -0
  111. package/menu.js +485 -0
  112. package/package.json +2 -80
  113. package/radio.js +275 -0
  114. package/select.js +624 -0
  115. package/slider.js +367 -0
  116. package/sliderRange.js +417 -0
  117. package/snackBar.js +177 -0
  118. package/styles.css +1 -0
  119. package/styles.js +1 -0
  120. package/switch.js +360 -0
  121. package/tab.js +277 -0
  122. package/tabBar.js +352 -0
  123. package/textArea.js +291 -0
  124. package/textField.js +252 -0
  125. package/theme.css +1 -0
  126. package/theme.js +1 -0
  127. package/topAppBar.js +192 -0
  128. package/topAppBarFixed.js +198 -0
  129. package/vendor.css +13 -0
  130. package/vendor.js +1 -0
  131. package/components/action-ribbon/action-ribbon-base.d.ts.map +0 -1
  132. package/components/action-ribbon/action-ribbon.component.d.ts.map +0 -1
  133. package/components/action-ribbon/foundation.d.ts.map +0 -1
  134. package/components/app-shell/app-shell.component.d.ts +0 -51
  135. package/components/app-shell/app-shell.component.d.ts.map +0 -1
  136. package/components/mini-list/mini-list.component.d.ts +0 -16
  137. package/components/mini-list/mini-list.component.d.ts.map +0 -1
  138. package/covalent-icons/svgs/Screen Shot 2021-09-21 at 3.33.14 PM.png +0 -0
  139. package/covalent-icons/svgs/alias_arrow.svg +0 -3
  140. package/covalent-icons/svgs/api.svg +0 -3
  141. package/covalent-icons/svgs/api_ondark.svg +0 -3
  142. package/covalent-icons/svgs/application.svg +0 -3
  143. package/covalent-icons/svgs/bucket.svg +0 -3
  144. package/covalent-icons/svgs/cluster_analysis.svg +0 -3
  145. package/covalent-icons/svgs/column.svg +0 -3
  146. package/covalent-icons/svgs/connected_identity.svg +0 -3
  147. package/covalent-icons/svgs/data_preparation.svg +0 -3
  148. package/covalent-icons/svgs/data_source.svg +0 -3
  149. package/covalent-icons/svgs/database.svg +0 -3
  150. package/covalent-icons/svgs/database_changed.svg +0 -3
  151. package/covalent-icons/svgs/database_edit.svg +0 -3
  152. package/covalent-icons/svgs/database_foreign.svg +0 -3
  153. package/covalent-icons/svgs/database_lab.svg +0 -3
  154. package/covalent-icons/svgs/database_search.svg +0 -3
  155. package/covalent-icons/svgs/database_synced.svg +0 -3
  156. package/covalent-icons/svgs/disconnect.svg +0 -3
  157. package/covalent-icons/svgs/dock_right.svg +0 -3
  158. package/covalent-icons/svgs/engine.svg +0 -3
  159. package/covalent-icons/svgs/file.svg +0 -3
  160. package/covalent-icons/svgs/file_changed.svg +0 -3
  161. package/covalent-icons/svgs/file_edit.svg +0 -3
  162. package/covalent-icons/svgs/file_foreign.svg +0 -3
  163. package/covalent-icons/svgs/file_lab.svg +0 -3
  164. package/covalent-icons/svgs/file_search.svg +0 -3
  165. package/covalent-icons/svgs/file_synced.svg +0 -3
  166. package/covalent-icons/svgs/formula.svg +0 -3
  167. package/covalent-icons/svgs/lab.svg +0 -3
  168. package/covalent-icons/svgs/loader-dots.svg +0 -31
  169. package/covalent-icons/svgs/machine_learning.svg +0 -3
  170. package/covalent-icons/svgs/machine_learning_ondark.svg +0 -3
  171. package/covalent-icons/svgs/model.svg +0 -3
  172. package/covalent-icons/svgs/model_configuration.svg +0 -3
  173. package/covalent-icons/svgs/model_configuration_ondark.svg +0 -3
  174. package/covalent-icons/svgs/model_ondark.svg +0 -3
  175. package/covalent-icons/svgs/no_results.svg +0 -3
  176. package/covalent-icons/svgs/node_branch.svg +0 -3
  177. package/covalent-icons/svgs/node_merge.svg +0 -3
  178. package/covalent-icons/svgs/node_notification.svg +0 -3
  179. package/covalent-icons/svgs/node_notification_ondark.svg +0 -3
  180. package/covalent-icons/svgs/object_storage.svg +0 -3
  181. package/covalent-icons/svgs/object_storage_ondark.svg +0 -3
  182. package/covalent-icons/svgs/operations.svg +0 -3
  183. package/covalent-icons/svgs/operators_divide.svg +0 -3
  184. package/covalent-icons/svgs/operators_equals.svg +0 -5
  185. package/covalent-icons/svgs/operators_greater_than.svg +0 -3
  186. package/covalent-icons/svgs/operators_greater_than_or_equal.svg +0 -5
  187. package/covalent-icons/svgs/operators_less_than.svg +0 -3
  188. package/covalent-icons/svgs/operators_less_than_or_equal.svg +0 -5
  189. package/covalent-icons/svgs/operators_multiply.svg +0 -5
  190. package/covalent-icons/svgs/operators_not_equal.svg +0 -5
  191. package/covalent-icons/svgs/operators_parentheses.svg +0 -3
  192. package/covalent-icons/svgs/operators_parenthesis_left.svg +0 -3
  193. package/covalent-icons/svgs/operators_parenthesis_right.svg +0 -3
  194. package/covalent-icons/svgs/operators_product_analyst.svg +0 -3
  195. package/covalent-icons/svgs/operators_product_console.svg +0 -3
  196. package/covalent-icons/svgs/operators_product_editor.svg +0 -3
  197. package/covalent-icons/svgs/operators_subtract.svg +0 -5
  198. package/covalent-icons/svgs/outbound_campaign_manager.svg +0 -3
  199. package/covalent-icons/svgs/resize_northeast.svg +0 -3
  200. package/covalent-icons/svgs/resize_northwest.svg +0 -3
  201. package/covalent-icons/svgs/resize_southeast.svg +0 -3
  202. package/covalent-icons/svgs/resize_southwest.svg +0 -3
  203. package/covalent-icons/svgs/rules.svg +0 -3
  204. package/covalent-icons/svgs/rules_insert.svg +0 -3
  205. package/covalent-icons/svgs/rules_insert_ondark.svg +0 -3
  206. package/covalent-icons/svgs/rules_ondark.svg +0 -3
  207. package/covalent-icons/svgs/rules_select.svg +0 -3
  208. package/covalent-icons/svgs/rules_select_ondark.svg +0 -3
  209. package/covalent-icons/svgs/script.svg +0 -3
  210. package/covalent-icons/svgs/script_macro.svg +0 -6
  211. package/covalent-icons/svgs/script_macro_ondark.svg +0 -6
  212. package/covalent-icons/svgs/script_ondark.svg +0 -3
  213. package/covalent-icons/svgs/script_sql.svg +0 -6
  214. package/covalent-icons/svgs/script_sql_ondark.svg +0 -6
  215. package/covalent-icons/svgs/script_stored_procedure.svg +0 -6
  216. package/covalent-icons/svgs/script_stored_procedure_ondark.svg +0 -6
  217. package/covalent-icons/svgs/segmentation.svg +0 -3
  218. package/covalent-icons/svgs/server.svg +0 -3
  219. package/covalent-icons/svgs/server_changed.svg +0 -3
  220. package/covalent-icons/svgs/server_edit.svg +0 -3
  221. package/covalent-icons/svgs/server_foreign.svg +0 -3
  222. package/covalent-icons/svgs/server_lab.svg +0 -3
  223. package/covalent-icons/svgs/server_search.svg +0 -3
  224. package/covalent-icons/svgs/server_synced.svg +0 -3
  225. package/covalent-icons/svgs/sftp.svg +0 -3
  226. package/covalent-icons/svgs/sftp_ondark.svg +0 -3
  227. package/covalent-icons/svgs/table.svg +0 -3
  228. package/covalent-icons/svgs/table_changed.svg +0 -3
  229. package/covalent-icons/svgs/table_edit.svg +0 -3
  230. package/covalent-icons/svgs/table_foreign.svg +0 -3
  231. package/covalent-icons/svgs/table_lab.svg +0 -3
  232. package/covalent-icons/svgs/table_search.svg +0 -3
  233. package/covalent-icons/svgs/table_synced.svg +0 -3
  234. package/covalent-icons/svgs/teradata-icons-v1.0.zip +0 -0
  235. package/covalent-icons/svgs/teradata.svg +0 -3
  236. package/covalent-icons/svgs/teradata_nocircle.svg +0 -3
  237. package/covalent-icons/svgs/text_analysis.svg +0 -3
  238. package/covalent-icons/svgs/undock.svg +0 -3
  239. package/covalent-icons/svgs/variable.svg +0 -3
  240. package/covalent-icons/svgs/variable_ondark.svg +0 -3
  241. package/covalent-icons/svgs/view_sankey.svg +0 -3
  242. package/covalent-icons/svgs/wand.svg +0 -3
  243. package/covalent-icons/svgs/workflow.svg +0 -3
  244. package/covalent-theme.css +0 -13
  245. package/covalent.js +0 -685
  246. package/index.d.ts +0 -4
  247. package/index.d.ts.map +0 -1
package/snackBar.js ADDED
@@ -0,0 +1,177 @@
1
+ !function(t){var e={};function n(i){if(e[i])return e[i].exports;var r=e[i]={i:i,l:!1,exports:{}};return t[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=t,n.c=e,n.d=function(t,e,i){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:i})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var r in t)n.d(i,r,function(e){return t[e]}.bind(null,r));return i},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=82)}({0:function(t,e,n){"use strict";var i=n(6);n.d(e,"b",(function(){return i.b}));var r=n(2);n.d(e,"e",(function(){return r.b}));var s=n(14);n.d(e,"a",(function(){return s.a}));n(4);var o=n(15);n.d(e,"c",(function(){return o.a}));var a=n(8);n.d(e,"f",(function(){return a.a}));var c=n(16);n.d(e,"j",(function(){return c.a}));var l=n(17);n.d(e,"d",(function(){return l.a}));var d=n(18);n.d(e,"g",(function(){return d.a}));n(19);var u=n(20);n.d(e,"i",(function(){return u.a}));var h=n(21);n.d(e,"h",(function(){return h.a})),
2
+ /**
3
+ * @license
4
+ * Copyright 2017 Google LLC
5
+ * SPDX-License-Identifier: BSD-3-Clause
6
+ */
7
+ console.warn("The main 'lit-element' module entrypoint is deprecated. Please update your imports to use the 'lit' package: 'lit' and 'lit/decorators.ts' or import from 'lit-element/lit-element.ts'. See https://lit.dev/msg/deprecated-import-path for more information.")},1:function(t,e,n){"use strict";n.d(e,"c",(function(){return r})),n.d(e,"a",(function(){return s})),n.d(e,"b",(function(){return o})),n.d(e,"f",(function(){return a})),n.d(e,"d",(function(){return c})),n.d(e,"e",(function(){return l}));
8
+ /*! *****************************************************************************
9
+ Copyright (c) Microsoft Corporation.
10
+
11
+ Permission to use, copy, modify, and/or distribute this software for any
12
+ purpose with or without fee is hereby granted.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
15
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
16
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
17
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
18
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
19
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
20
+ PERFORMANCE OF THIS SOFTWARE.
21
+ ***************************************************************************** */
22
+ var i=function(t,e){return(i=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(t,e)};function r(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}i(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}var s=function(){return(s=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)};function o(t,e,n,i){var r,s=arguments.length,o=s<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,n):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(t,e,n,i);else for(var a=t.length-1;a>=0;a--)(r=t[a])&&(o=(s<3?r(o):s>3?r(e,n,o):r(e,n))||o);return s>3&&o&&Object.defineProperty(e,n,o),o}Object.create;function a(t){var e="function"==typeof Symbol&&Symbol.iterator,n=e&&t[e],i=0;if(n)return n.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&i>=t.length&&(t=void 0),{value:t&&t[i++],done:!t}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}function c(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,r,s=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=s.next()).done;)o.push(i.value)}catch(t){r={error:t}}finally{try{i&&!i.done&&(n=s.return)&&n.call(s)}finally{if(r)throw r.error}}return o}function l(t,e,n){if(n||2===arguments.length)for(var i,r=0,s=e.length;r<s;r++)!i&&r in e||(i||(i=Array.prototype.slice.call(e,0,r)),i[r]=e[r]);return t.concat(i||Array.prototype.slice.call(e))}Object.create},10:function(t,e,n){"use strict";var i=n(15);n.d(e,"a",(function(){return i.a}));var r=n(8);n.d(e,"b",(function(){return r.a}));n(16),n(17);var s=n(18);n.d(e,"c",(function(){return s.a}));n(19),n(20),n(21)},11:function(t,e,n){"use strict";n.d(e,"a",(function(){return i}));
23
+ /**
24
+ * @license
25
+ * Copyright 2018 Google LLC
26
+ * SPDX-License-Identifier: Apache-2.0
27
+ */
28
+ const i=t=>(e,n)=>{if(e.constructor._observers){if(!e.constructor.hasOwnProperty("_observers")){const t=e.constructor._observers;e.constructor._observers=new Map,t.forEach((t,n)=>e.constructor._observers.set(n,t))}}else{e.constructor._observers=new Map;const t=e.updated;e.updated=function(e){t.call(this,e),e.forEach((t,e)=>{const n=this.constructor._observers.get(e);void 0!==n&&n.call(this,this[e],t)})}}e.constructor._observers.set(n,t)}},13:function(t,e,n){"use strict";n.d(e,"a",(function(){return i}));
29
+ /**
30
+ * @license
31
+ * Copyright 2016 Google Inc.
32
+ *
33
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
34
+ * of this software and associated documentation files (the "Software"), to deal
35
+ * in the Software without restriction, including without limitation the rights
36
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
37
+ * copies of the Software, and to permit persons to whom the Software is
38
+ * furnished to do so, subject to the following conditions:
39
+ *
40
+ * The above copyright notice and this permission notice shall be included in
41
+ * all copies or substantial portions of the Software.
42
+ *
43
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
44
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
45
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
46
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
47
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
48
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
49
+ * THE SOFTWARE.
50
+ */
51
+ var i=function(){function t(t){void 0===t&&(t={}),this.adapter=t}return Object.defineProperty(t,"cssClasses",{get:function(){return{}},enumerable:!1,configurable:!0}),Object.defineProperty(t,"strings",{get:function(){return{}},enumerable:!1,configurable:!0}),Object.defineProperty(t,"numbers",{get:function(){return{}},enumerable:!1,configurable:!0}),Object.defineProperty(t,"defaultAdapter",{get:function(){return{}},enumerable:!1,configurable:!0}),t.prototype.init=function(){},t.prototype.destroy=function(){},t}()},14:function(t,e,n){"use strict";n.d(e,"a",(function(){return a}));var i=n(6);n.d(e,"b",(function(){return i.b}));var r,s,o=n(2);n.d(e,"c",(function(){return o.b}));i.a;class a extends i.a{constructor(){super(...arguments),this.renderOptions={host:this},this._$Dt=void 0}createRenderRoot(){var t,e;const n=super.createRenderRoot();return null!==(t=(e=this.renderOptions).renderBefore)&&void 0!==t||(e.renderBefore=n.firstChild),n}update(t){const e=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(t),this._$Dt=Object(o.e)(e,this.renderRoot,this.renderOptions)}connectedCallback(){var t;super.connectedCallback(),null===(t=this._$Dt)||void 0===t||t.setConnected(!0)}disconnectedCallback(){var t;super.disconnectedCallback(),null===(t=this._$Dt)||void 0===t||t.setConnected(!1)}render(){return o.c}}a.finalized=!0,a._$litElement$=!0,null===(r=globalThis.litElementHydrateSupport)||void 0===r||r.call(globalThis,{LitElement:a});const c=globalThis.litElementPolyfillSupport;null==c||c({LitElement:a});(null!==(s=globalThis.litElementVersions)&&void 0!==s?s:globalThis.litElementVersions=[]).push("3.0.1")},15:function(t,e,n){"use strict";n.d(e,"a",(function(){return i}));
52
+ /**
53
+ * @license
54
+ * Copyright 2017 Google LLC
55
+ * SPDX-License-Identifier: BSD-3-Clause
56
+ */
57
+ const i=t=>e=>"function"==typeof e?((t,e)=>(window.customElements.define(t,e),e))(t,e):((t,e)=>{const{kind:n,elements:i}=e;return{kind:n,elements:i,finisher(e){window.customElements.define(t,e)}}})(t,e)},16:function(t,e,n){"use strict";n.d(e,"a",(function(){return r}));var i=n(8);
58
+ /**
59
+ * @license
60
+ * Copyright 2017 Google LLC
61
+ * SPDX-License-Identifier: BSD-3-Clause
62
+ */function r(t){return Object(i.a)({...t,state:!0})}},17:function(t,e,n){"use strict";n.d(e,"a",(function(){return r}));var i=n(4);
63
+ /**
64
+ * @license
65
+ * Copyright 2017 Google LLC
66
+ * SPDX-License-Identifier: BSD-3-Clause
67
+ */function r(t){return Object(i.a)({finisher:(e,n)=>{Object.assign(e.prototype[n],t)}})}},18:function(t,e,n){"use strict";n.d(e,"a",(function(){return r}));var i=n(4);
68
+ /**
69
+ * @license
70
+ * Copyright 2017 Google LLC
71
+ * SPDX-License-Identifier: BSD-3-Clause
72
+ */function r(t,e){return Object(i.a)({descriptor:n=>{const i={get(){var e,n;return null!==(n=null===(e=this.renderRoot)||void 0===e?void 0:e.querySelector(t))&&void 0!==n?n:null},enumerable:!0,configurable:!0};if(e){const e="symbol"==typeof n?Symbol():"__"+n;i.get=function(){var n,i;return void 0===this[e]&&(this[e]=null!==(i=null===(n=this.renderRoot)||void 0===n?void 0:n.querySelector(t))&&void 0!==i?i:null),this[e]}}return i}})}},19:function(t,e,n){"use strict";n(4);
73
+ /**
74
+ * @license
75
+ * Copyright 2017 Google LLC
76
+ * SPDX-License-Identifier: BSD-3-Clause
77
+ */},2:function(t,e,n){"use strict";
78
+ /**
79
+ * @license
80
+ * Copyright 2017 Google LLC
81
+ * SPDX-License-Identifier: BSD-3-Clause
82
+ */
83
+ var i;n.d(e,"a",(function(){return D})),n.d(e,"b",(function(){return $})),n.d(e,"c",(function(){return E})),n.d(e,"d",(function(){return O})),n.d(e,"e",(function(){return S}));const r=globalThis.trustedTypes,s=r?r.createPolicy("lit-html",{createHTML:t=>t}):void 0,o=`lit$${(Math.random()+"").slice(9)}$`,a="?"+o,c=`<${a}>`,l=document,d=(t="")=>l.createComment(t),u=t=>null===t||"object"!=typeof t&&"function"!=typeof t,h=Array.isArray,p=t=>{var e;return h(t)||"function"==typeof(null===(e=t)||void 0===e?void 0:e[Symbol.iterator])},m=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,f=/-->/g,b=/>/g,_=/>|[ \n \r](?:([^\s"'>=/]+)([ \n \r]*=[ \n \r]*(?:[^ \n \r"'`<>=]|("|')|))|$)/g,v=/'/g,y=/"/g,g=/^(?:script|style|textarea)$/i,A=t=>(e,...n)=>({_$litType$:t,strings:e,values:n}),$=A(1),E=(A(2),Symbol.for("lit-noChange")),O=Symbol.for("lit-nothing"),k=new WeakMap,S=(t,e,n)=>{var i,r;const s=null!==(i=null==n?void 0:n.renderBefore)&&void 0!==i?i:e;let o=s._$litPart$;if(void 0===o){const t=null!==(r=null==n?void 0:n.renderBefore)&&void 0!==r?r:null;s._$litPart$=o=new M(e.insertBefore(d(),t),t,void 0,null!=n?n:{})}return o._$AI(t),o},T=l.createTreeWalker(l,129,null,!1),x=(t,e)=>{const n=t.length-1,i=[];let r,a=2===e?"<svg>":"",l=m;for(let e=0;e<n;e++){const n=t[e];let s,d,u=-1,h=0;for(;h<n.length&&(l.lastIndex=h,d=l.exec(n),null!==d);)h=l.lastIndex,l===m?"!--"===d[1]?l=f:void 0!==d[1]?l=b:void 0!==d[2]?(g.test(d[2])&&(r=RegExp("</"+d[2],"g")),l=_):void 0!==d[3]&&(l=_):l===_?">"===d[0]?(l=null!=r?r:m,u=-1):void 0===d[1]?u=-2:(u=l.lastIndex-d[2].length,s=d[1],l=void 0===d[3]?_:'"'===d[3]?y:v):l===y||l===v?l=_:l===f||l===b?l=m:(l=_,r=void 0);const p=l===_&&t[e+1].startsWith("/>")?" ":"";a+=l===m?n+c:u>=0?(i.push(s),n.slice(0,u)+"$lit$"+n.slice(u)+o+p):n+o+(-2===u?(i.push(void 0),e):p)}const d=a+(t[n]||"<?>")+(2===e?"</svg>":"");return[void 0!==s?s.createHTML(d):d,i]};class C{constructor({strings:t,_$litType$:e},n){let i;this.parts=[];let s=0,c=0;const l=t.length-1,u=this.parts,[h,p]=x(t,e);if(this.el=C.createElement(h,n),T.currentNode=this.el.content,2===e){const t=this.el.content,e=t.firstChild;e.remove(),t.append(...e.childNodes)}for(;null!==(i=T.nextNode())&&u.length<l;){if(1===i.nodeType){if(i.hasAttributes()){const t=[];for(const e of i.getAttributeNames())if(e.endsWith("$lit$")||e.startsWith(o)){const n=p[c++];if(t.push(e),void 0!==n){const t=i.getAttribute(n.toLowerCase()+"$lit$").split(o),e=/([.?@])?(.*)/.exec(n);u.push({type:1,index:s,name:e[2],strings:t,ctor:"."===e[1]?j:"?"===e[1]?P:"@"===e[1]?R:I})}else u.push({type:6,index:s})}for(const e of t)i.removeAttribute(e)}if(g.test(i.tagName)){const t=i.textContent.split(o),e=t.length-1;if(e>0){i.textContent=r?r.emptyScript:"";for(let n=0;n<e;n++)i.append(t[n],d()),T.nextNode(),u.push({type:2,index:++s});i.append(t[e],d())}}}else if(8===i.nodeType)if(i.data===a)u.push({type:2,index:s});else{let t=-1;for(;-1!==(t=i.data.indexOf(o,t+1));)u.push({type:7,index:s}),t+=o.length-1}s++}}static createElement(t,e){const n=l.createElement("template");return n.innerHTML=t,n}}function w(t,e,n=t,i){var r,s,o,a;if(e===E)return e;let c=void 0!==i?null===(r=n._$Cl)||void 0===r?void 0:r[i]:n._$Cu;const l=u(e)?void 0:e._$litDirective$;return(null==c?void 0:c.constructor)!==l&&(null===(s=null==c?void 0:c._$AO)||void 0===s||s.call(c,!1),void 0===l?c=void 0:(c=new l(t),c._$AT(t,n,i)),void 0!==i?(null!==(o=(a=n)._$Cl)&&void 0!==o?o:a._$Cl=[])[i]=c:n._$Cu=c),void 0!==c&&(e=w(t,c._$AS(t,e.values),c,i)),e}class N{constructor(t,e){this.v=[],this._$AN=void 0,this._$AD=t,this._$AM=e}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}p(t){var e;const{el:{content:n},parts:i}=this._$AD,r=(null!==(e=null==t?void 0:t.creationScope)&&void 0!==e?e:l).importNode(n,!0);T.currentNode=r;let s=T.nextNode(),o=0,a=0,c=i[0];for(;void 0!==c;){if(o===c.index){let e;2===c.type?e=new M(s,s.nextSibling,this,t):1===c.type?e=new c.ctor(s,c.name,c.strings,this,t):6===c.type&&(e=new U(s,this,t)),this.v.push(e),c=i[++a]}o!==(null==c?void 0:c.index)&&(s=T.nextNode(),o++)}return r}m(t){let e=0;for(const n of this.v)void 0!==n&&(void 0!==n.strings?(n._$AI(t,n,e),e+=n.strings.length-2):n._$AI(t[e])),e++}}class M{constructor(t,e,n,i){var r;this.type=2,this._$AH=O,this._$AN=void 0,this._$AA=t,this._$AB=e,this._$AM=n,this.options=i,this._$Cg=null===(r=null==i?void 0:i.isConnected)||void 0===r||r}get _$AU(){var t,e;return null!==(e=null===(t=this._$AM)||void 0===t?void 0:t._$AU)&&void 0!==e?e:this._$Cg}get parentNode(){let t=this._$AA.parentNode;const e=this._$AM;return void 0!==e&&11===t.nodeType&&(t=e.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,e=this){t=w(this,t,e),u(t)?t===O||null==t||""===t?(this._$AH!==O&&this._$AR(),this._$AH=O):t!==this._$AH&&t!==E&&this.$(t):void 0!==t._$litType$?this.T(t):void 0!==t.nodeType?this.S(t):p(t)?this.M(t):this.$(t)}A(t,e=this._$AB){return this._$AA.parentNode.insertBefore(t,e)}S(t){this._$AH!==t&&(this._$AR(),this._$AH=this.A(t))}$(t){this._$AH!==O&&u(this._$AH)?this._$AA.nextSibling.data=t:this.S(l.createTextNode(t)),this._$AH=t}T(t){var e;const{values:n,_$litType$:i}=t,r="number"==typeof i?this._$AC(t):(void 0===i.el&&(i.el=C.createElement(i.h,this.options)),i);if((null===(e=this._$AH)||void 0===e?void 0:e._$AD)===r)this._$AH.m(n);else{const t=new N(r,this),e=t.p(this.options);t.m(n),this.S(e),this._$AH=t}}_$AC(t){let e=k.get(t.strings);return void 0===e&&k.set(t.strings,e=new C(t)),e}M(t){h(this._$AH)||(this._$AH=[],this._$AR());const e=this._$AH;let n,i=0;for(const r of t)i===e.length?e.push(n=new M(this.A(d()),this.A(d()),this,this.options)):n=e[i],n._$AI(r),i++;i<e.length&&(this._$AR(n&&n._$AB.nextSibling,i),e.length=i)}_$AR(t=this._$AA.nextSibling,e){var n;for(null===(n=this._$AP)||void 0===n||n.call(this,!1,!0,e);t&&t!==this._$AB;){const e=t.nextSibling;t.remove(),t=e}}setConnected(t){var e;void 0===this._$AM&&(this._$Cg=t,null===(e=this._$AP)||void 0===e||e.call(this,t))}}class I{constructor(t,e,n,i,r){this.type=1,this._$AH=O,this._$AN=void 0,this.element=t,this.name=e,this._$AM=i,this.options=r,n.length>2||""!==n[0]||""!==n[1]?(this._$AH=Array(n.length-1).fill(new String),this.strings=n):this._$AH=O}get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}_$AI(t,e=this,n,i){const r=this.strings;let s=!1;if(void 0===r)t=w(this,t,e,0),s=!u(t)||t!==this._$AH&&t!==E,s&&(this._$AH=t);else{const i=t;let o,a;for(t=r[0],o=0;o<r.length-1;o++)a=w(this,i[n+o],e,o),a===E&&(a=this._$AH[o]),s||(s=!u(a)||a!==this._$AH[o]),a===O?t=O:t!==O&&(t+=(null!=a?a:"")+r[o+1]),this._$AH[o]=a}s&&!i&&this.k(t)}k(t){t===O?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,null!=t?t:"")}}class j extends I{constructor(){super(...arguments),this.type=3}k(t){this.element[this.name]=t===O?void 0:t}}class P extends I{constructor(){super(...arguments),this.type=4}k(t){t&&t!==O?this.element.setAttribute(this.name,""):this.element.removeAttribute(this.name)}}class R extends I{constructor(t,e,n,i,r){super(t,e,n,i,r),this.type=5}_$AI(t,e=this){var n;if((t=null!==(n=w(this,t,e,0))&&void 0!==n?n:O)===E)return;const i=this._$AH,r=t===O&&i!==O||t.capture!==i.capture||t.once!==i.once||t.passive!==i.passive,s=t!==O&&(i===O||r);r&&this.element.removeEventListener(this.name,this,i),s&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){var e,n;"function"==typeof this._$AH?this._$AH.call(null!==(n=null===(e=this.options)||void 0===e?void 0:e.host)&&void 0!==n?n:this.element,t):this._$AH.handleEvent(t)}}class U{constructor(t,e,n){this.element=t,this.type=6,this._$AN=void 0,this._$AM=e,this.options=n}get _$AU(){return this._$AM._$AU}_$AI(t){w(this,t)}}const D={P:"$lit$",V:o,L:a,I:1,N:x,R:N,D:p,j:w,H:M,O:I,F:P,B:R,W:j,Z:U},L=window.litHtmlPolyfillSupport;null==L||L(C,M),(null!==(i=globalThis.litHtmlVersions)&&void 0!==i?i:globalThis.litHtmlVersions=[]).push("2.0.1")},20:function(t,e,n){"use strict";n.d(e,"a",(function(){return r}));var i=n(4);
84
+ /**
85
+ * @license
86
+ * Copyright 2017 Google LLC
87
+ * SPDX-License-Identifier: BSD-3-Clause
88
+ */function r(t){return Object(i.a)({descriptor:e=>({async get(){var e;return await this.updateComplete,null===(e=this.renderRoot)||void 0===e?void 0:e.querySelector(t)},enumerable:!0,configurable:!0})})}},21:function(t,e,n){"use strict";n.d(e,"a",(function(){return r}));var i=n(4);
89
+ /**
90
+ * @license
91
+ * Copyright 2017 Google LLC
92
+ * SPDX-License-Identifier: BSD-3-Clause
93
+ */function r(t="",e=!1,n=""){return Object(i.a)({descriptor:i=>({get(){var i,r,s;const o="slot"+(t?`[name=${t}]`:":not([name])");let a=null!==(s=null===(r=null===(i=this.renderRoot)||void 0===i?void 0:i.querySelector(o))||void 0===r?void 0:r.assignedNodes({flatten:e}))&&void 0!==s?s:[];return n&&(a=a.filter(t=>t.nodeType===Node.ELEMENT_NODE&&t.matches(n))),a},enumerable:!0,configurable:!0})})}},23:function(t,e,n){"use strict";n.d(e,"d",(function(){return i})),n.d(e,"a",(function(){return r})),n.d(e,"e",(function(){return c})),n.d(e,"b",(function(){return l})),n.d(e,"c",(function(){return d}));
94
+ /**
95
+ * @license
96
+ * Copyright 2018 Google LLC
97
+ * SPDX-License-Identifier: Apache-2.0
98
+ */
99
+ const i=t=>t.nodeType===Node.ELEMENT_NODE;function r(t){return{addClass:e=>{t.classList.add(e)},removeClass:e=>{t.classList.remove(e)},hasClass:e=>t.classList.contains(e)}}let s=!1;const o=()=>{},a={get passive(){return s=!0,!1}};document.addEventListener("x",o,a),document.removeEventListener("x",o);const c=s,l=(t=window.document)=>{let e=t.activeElement;const n=[];if(!e)return n;for(;e&&(n.push(e),e.shadowRoot);)e=e.shadowRoot.activeElement;return n},d=t=>{const e=l();if(!e.length)return!1;const n=e[e.length-1],i=new Event("check-if-focused",{bubbles:!0,composed:!0});let r=[];const s=t=>{r=t.composedPath()};return document.body.addEventListener("check-if-focused",s),n.dispatchEvent(i),document.body.removeEventListener("check-if-focused",s),-1!==r.indexOf(t)}},4:function(t,e,n){"use strict";n.d(e,"a",(function(){return i}));
100
+ /**
101
+ * @license
102
+ * Copyright 2017 Google LLC
103
+ * SPDX-License-Identifier: BSD-3-Clause
104
+ */
105
+ const i=({finisher:t,descriptor:e})=>(n,i)=>{var r;if(void 0===i){const i=null!==(r=n.originalKey)&&void 0!==r?r:n.key,s=null!=e?{kind:"method",placement:"prototype",key:i,descriptor:e(n.key)}:{...n,key:i};return null!=t&&(s.finisher=function(e){t(e,i)}),s}{const r=n.constructor;void 0!==e&&Object.defineProperty(n,i,e(i)),null==t||t(r,i)}}},43:function(t,e,n){"use strict";n.d(e,"a",(function(){return s})),n.d(e,"b",(function(){return a}));var i=n(2);
106
+ /**
107
+ * @license
108
+ * Copyright 2020 Google LLC
109
+ * SPDX-License-Identifier: BSD-3-Clause
110
+ */const{H:r}=i.a,s=t=>void 0===t.strings,o={},a=(t,e=o)=>t._$AH=e},5:function(t,e,n){"use strict";n.d(e,"a",(function(){return s})),n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return r}));
111
+ /**
112
+ * @license
113
+ * Copyright 2017 Google LLC
114
+ * SPDX-License-Identifier: BSD-3-Clause
115
+ */
116
+ const i={ATTRIBUTE:1,CHILD:2,PROPERTY:3,BOOLEAN_ATTRIBUTE:4,EVENT:5,ELEMENT:6},r=t=>(...e)=>({_$litDirective$:t,values:e});class s{constructor(t){}get _$AU(){return this._$AM._$AU}_$AT(t,e,n){this._$Ct=t,this._$AM=e,this._$Ci=n}_$AS(t,e){return this.update(t,e)}update(t,e){return this.render(...e)}}},6:function(t,e,n){"use strict";n.d(e,"b",(function(){return a})),n.d(e,"a",(function(){return m}));
117
+ /**
118
+ * @license
119
+ * Copyright 2019 Google LLC
120
+ * SPDX-License-Identifier: BSD-3-Clause
121
+ */
122
+ const i=window.ShadowRoot&&(void 0===window.ShadyCSS||window.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,r=Symbol(),s=new Map;class o{constructor(t,e){if(this._$cssResult$=!0,e!==r)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=t}get styleSheet(){let t=s.get(this.cssText);return i&&void 0===t&&(s.set(this.cssText,t=new CSSStyleSheet),t.replaceSync(this.cssText)),t}toString(){return this.cssText}}const a=(t,...e)=>{const n=1===t.length?t[0]:e.reduce((e,n,i)=>e+(t=>{if(!0===t._$cssResult$)return t.cssText;if("number"==typeof t)return t;throw Error("Value passed to 'css' function must be a 'css' function result: "+t+". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.")})(n)+t[i+1],t[0]);return new o(n,r)},c=i?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let e="";for(const n of t.cssRules)e+=n.cssText;return(t=>new o("string"==typeof t?t:t+"",r))(e)})(t):t
123
+ /**
124
+ * @license
125
+ * Copyright 2017 Google LLC
126
+ * SPDX-License-Identifier: BSD-3-Clause
127
+ */;var l;const d=window.reactiveElementPolyfillSupport,u={toAttribute(t,e){switch(e){case Boolean:t=t?"":null;break;case Object:case Array:t=null==t?t:JSON.stringify(t)}return t},fromAttribute(t,e){let n=t;switch(e){case Boolean:n=null!==t;break;case Number:n=null===t?null:Number(t);break;case Object:case Array:try{n=JSON.parse(t)}catch(t){n=null}}return n}},h=(t,e)=>e!==t&&(e==e||t==t),p={attribute:!0,type:String,converter:u,reflect:!1,hasChanged:h};class m extends HTMLElement{constructor(){super(),this._$Et=new Map,this.isUpdatePending=!1,this.hasUpdated=!1,this._$Ei=null,this.o()}static addInitializer(t){var e;null!==(e=this.l)&&void 0!==e||(this.l=[]),this.l.push(t)}static get observedAttributes(){this.finalize();const t=[];return this.elementProperties.forEach((e,n)=>{const i=this._$Eh(n,e);void 0!==i&&(this._$Eu.set(i,n),t.push(i))}),t}static createProperty(t,e=p){if(e.state&&(e.attribute=!1),this.finalize(),this.elementProperties.set(t,e),!e.noAccessor&&!this.prototype.hasOwnProperty(t)){const n="symbol"==typeof t?Symbol():"__"+t,i=this.getPropertyDescriptor(t,n,e);void 0!==i&&Object.defineProperty(this.prototype,t,i)}}static getPropertyDescriptor(t,e,n){return{get(){return this[e]},set(i){const r=this[t];this[e]=i,this.requestUpdate(t,r,n)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)||p}static finalize(){if(this.hasOwnProperty("finalized"))return!1;this.finalized=!0;const t=Object.getPrototypeOf(this);if(t.finalize(),this.elementProperties=new Map(t.elementProperties),this._$Eu=new Map,this.hasOwnProperty("properties")){const t=this.properties,e=[...Object.getOwnPropertyNames(t),...Object.getOwnPropertySymbols(t)];for(const n of e)this.createProperty(n,t[n])}return this.elementStyles=this.finalizeStyles(this.styles),!0}static finalizeStyles(t){const e=[];if(Array.isArray(t)){const n=new Set(t.flat(1/0).reverse());for(const t of n)e.unshift(c(t))}else void 0!==t&&e.push(c(t));return e}static _$Eh(t,e){const n=e.attribute;return!1===n?void 0:"string"==typeof n?n:"string"==typeof t?t.toLowerCase():void 0}o(){var t;this._$Ev=new Promise(t=>this.enableUpdating=t),this._$AL=new Map,this._$Ep(),this.requestUpdate(),null===(t=this.constructor.l)||void 0===t||t.forEach(t=>t(this))}addController(t){var e,n;(null!==(e=this._$Em)&&void 0!==e?e:this._$Em=[]).push(t),void 0!==this.renderRoot&&this.isConnected&&(null===(n=t.hostConnected)||void 0===n||n.call(t))}removeController(t){var e;null===(e=this._$Em)||void 0===e||e.splice(this._$Em.indexOf(t)>>>0,1)}_$Ep(){this.constructor.elementProperties.forEach((t,e)=>{this.hasOwnProperty(e)&&(this._$Et.set(e,this[e]),delete this[e])})}createRenderRoot(){var t;const e=null!==(t=this.shadowRoot)&&void 0!==t?t:this.attachShadow(this.constructor.shadowRootOptions);return n=e,r=this.constructor.elementStyles,i?n.adoptedStyleSheets=r.map(t=>t instanceof CSSStyleSheet?t:t.styleSheet):r.forEach(t=>{const e=document.createElement("style"),i=window.litNonce;void 0!==i&&e.setAttribute("nonce",i),e.textContent=t.cssText,n.appendChild(e)}),e;var n,r}connectedCallback(){var t;void 0===this.renderRoot&&(this.renderRoot=this.createRenderRoot()),this.enableUpdating(!0),null===(t=this._$Em)||void 0===t||t.forEach(t=>{var e;return null===(e=t.hostConnected)||void 0===e?void 0:e.call(t)})}enableUpdating(t){}disconnectedCallback(){var t;null===(t=this._$Em)||void 0===t||t.forEach(t=>{var e;return null===(e=t.hostDisconnected)||void 0===e?void 0:e.call(t)})}attributeChangedCallback(t,e,n){this._$AK(t,n)}_$Eg(t,e,n=p){var i,r;const s=this.constructor._$Eh(t,n);if(void 0!==s&&!0===n.reflect){const o=(null!==(r=null===(i=n.converter)||void 0===i?void 0:i.toAttribute)&&void 0!==r?r:u.toAttribute)(e,n.type);this._$Ei=t,null==o?this.removeAttribute(s):this.setAttribute(s,o),this._$Ei=null}}_$AK(t,e){var n,i,r;const s=this.constructor,o=s._$Eu.get(t);if(void 0!==o&&this._$Ei!==o){const t=s.getPropertyOptions(o),a=t.converter,c=null!==(r=null!==(i=null===(n=a)||void 0===n?void 0:n.fromAttribute)&&void 0!==i?i:"function"==typeof a?a:null)&&void 0!==r?r:u.fromAttribute;this._$Ei=o,this[o]=c(e,t.type),this._$Ei=null}}requestUpdate(t,e,n){let i=!0;void 0!==t&&(((n=n||this.constructor.getPropertyOptions(t)).hasChanged||h)(this[t],e)?(this._$AL.has(t)||this._$AL.set(t,e),!0===n.reflect&&this._$Ei!==t&&(void 0===this._$ES&&(this._$ES=new Map),this._$ES.set(t,n))):i=!1),!this.isUpdatePending&&i&&(this._$Ev=this._$EC())}async _$EC(){this.isUpdatePending=!0;try{await this._$Ev}catch(t){Promise.reject(t)}const t=this.scheduleUpdate();return null!=t&&await t,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){var t;if(!this.isUpdatePending)return;this.hasUpdated,this._$Et&&(this._$Et.forEach((t,e)=>this[e]=t),this._$Et=void 0);let e=!1;const n=this._$AL;try{e=this.shouldUpdate(n),e?(this.willUpdate(n),null===(t=this._$Em)||void 0===t||t.forEach(t=>{var e;return null===(e=t.hostUpdate)||void 0===e?void 0:e.call(t)}),this.update(n)):this._$EU()}catch(t){throw e=!1,this._$EU(),t}e&&this._$AE(n)}willUpdate(t){}_$AE(t){var e;null===(e=this._$Em)||void 0===e||e.forEach(t=>{var e;return null===(e=t.hostUpdated)||void 0===e?void 0:e.call(t)}),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(t)),this.updated(t)}_$EU(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$Ev}shouldUpdate(t){return!0}update(t){void 0!==this._$ES&&(this._$ES.forEach((t,e)=>this._$Eg(e,this[e],t)),this._$ES=void 0),this._$EU()}updated(t){}firstUpdated(t){}}m.finalized=!0,m.elementProperties=new Map,m.elementStyles=[],m.shadowRootOptions={mode:"open"},null==d||d({ReactiveElement:m}),(null!==(l=globalThis.reactiveElementVersions)&&void 0!==l?l:globalThis.reactiveElementVersions=[]).push("1.0.1")},7:function(t,e,n){"use strict";n.d(e,"a",(function(){return s}));var i=n(2),r=n(5);
128
+ /**
129
+ * @license
130
+ * Copyright 2018 Google LLC
131
+ * SPDX-License-Identifier: BSD-3-Clause
132
+ */
133
+ const s=Object(r.c)(class extends r.a{constructor(t){var e;if(super(t),t.type!==r.b.ATTRIBUTE||"class"!==t.name||(null===(e=t.strings)||void 0===e?void 0:e.length)>2)throw Error("`classMap()` can only be used in the `class` attribute and must be the only part in the attribute.")}render(t){return" "+Object.keys(t).filter(e=>t[e]).join(" ")+" "}update(t,[e]){var n,r;if(void 0===this.st){this.st=new Set,void 0!==t.strings&&(this.et=new Set(t.strings.join(" ").split(/\s/).filter(t=>""!==t)));for(const t in e)e[t]&&!(null===(n=this.et)||void 0===n?void 0:n.has(t))&&this.st.add(t);return this.render(e)}const s=t.element.classList;this.st.forEach(t=>{t in e||(s.remove(t),this.st.delete(t))});for(const t in e){const n=!!e[t];n===this.st.has(t)||(null===(r=this.et)||void 0===r?void 0:r.has(t))||(n?(s.add(t),this.st.add(t)):(s.remove(t),this.st.delete(t)))}return i.c}})},8:function(t,e,n){"use strict";n.d(e,"a",(function(){return r}));
134
+ /**
135
+ * @license
136
+ * Copyright 2017 Google LLC
137
+ * SPDX-License-Identifier: BSD-3-Clause
138
+ */
139
+ const i=(t,e)=>"method"===e.kind&&e.descriptor&&!("value"in e.descriptor)?{...e,finisher(n){n.createProperty(e.key,t)}}:{kind:"field",key:Symbol(),placement:"own",descriptor:{},originalKey:e.key,initializer(){"function"==typeof e.initializer&&(this[e.key]=e.initializer.call(this))},finisher(n){n.createProperty(e.key,t)}};function r(t){return(e,n)=>void 0!==n?((t,e,n)=>{e.constructor.createProperty(n,t)})(t,e,n):i(t,e)}},82:function(t,e,n){"use strict";n.r(e),n.d(e,"CovalentSnackbarBase",(function(){return D}));var i=n(1),r=n(9),s=n(11),o=n(13),a={CLOSING:"mdc-snackbar--closing",OPEN:"mdc-snackbar--open",OPENING:"mdc-snackbar--opening"},c={ACTION_SELECTOR:".mdc-snackbar__action",ARIA_LIVE_LABEL_TEXT_ATTR:"data-mdc-snackbar-label-text",CLOSED_EVENT:"MDCSnackbar:closed",CLOSING_EVENT:"MDCSnackbar:closing",DISMISS_SELECTOR:".mdc-snackbar__dismiss",LABEL_SELECTOR:".mdc-snackbar__label",OPENED_EVENT:"MDCSnackbar:opened",OPENING_EVENT:"MDCSnackbar:opening",REASON_ACTION:"action",REASON_DISMISS:"dismiss",SURFACE_SELECTOR:".mdc-snackbar__surface"},l={DEFAULT_AUTO_DISMISS_TIMEOUT_MS:5e3,INDETERMINATE:-1,MAX_AUTO_DISMISS_TIMEOUT_MS:1e4,MIN_AUTO_DISMISS_TIMEOUT_MS:4e3,SNACKBAR_ANIMATION_CLOSE_TIME_MS:75,SNACKBAR_ANIMATION_OPEN_TIME_MS:150,ARIA_LIVE_DELAY_MS:1e3},d=a.OPENING,u=a.OPEN,h=a.CLOSING,p=c.REASON_ACTION,m=c.REASON_DISMISS,f=function(t){function e(n){var r=t.call(this,Object(i.a)(Object(i.a)({},e.defaultAdapter),n))||this;return r.opened=!1,r.animationFrame=0,r.animationTimer=0,r.autoDismissTimer=0,r.autoDismissTimeoutMs=l.DEFAULT_AUTO_DISMISS_TIMEOUT_MS,r.closeOnEscape=!0,r}return Object(i.c)(e,t),Object.defineProperty(e,"cssClasses",{get:function(){return a},enumerable:!1,configurable:!0}),Object.defineProperty(e,"strings",{get:function(){return c},enumerable:!1,configurable:!0}),Object.defineProperty(e,"numbers",{get:function(){return l},enumerable:!1,configurable:!0}),Object.defineProperty(e,"defaultAdapter",{get:function(){return{addClass:function(){},announce:function(){},notifyClosed:function(){},notifyClosing:function(){},notifyOpened:function(){},notifyOpening:function(){},removeClass:function(){}}},enumerable:!1,configurable:!0}),e.prototype.destroy=function(){this.clearAutoDismissTimer(),cancelAnimationFrame(this.animationFrame),this.animationFrame=0,clearTimeout(this.animationTimer),this.animationTimer=0,this.adapter.removeClass(d),this.adapter.removeClass(u),this.adapter.removeClass(h)},e.prototype.open=function(){var t=this;this.clearAutoDismissTimer(),this.opened=!0,this.adapter.notifyOpening(),this.adapter.removeClass(h),this.adapter.addClass(d),this.adapter.announce(),this.runNextAnimationFrame((function(){t.adapter.addClass(u),t.animationTimer=setTimeout((function(){var e=t.getTimeoutMs();t.handleAnimationTimerEnd(),t.adapter.notifyOpened(),e!==l.INDETERMINATE&&(t.autoDismissTimer=setTimeout((function(){t.close(m)}),e))}),l.SNACKBAR_ANIMATION_OPEN_TIME_MS)}))},e.prototype.close=function(t){var e=this;void 0===t&&(t=""),this.opened&&(cancelAnimationFrame(this.animationFrame),this.animationFrame=0,this.clearAutoDismissTimer(),this.opened=!1,this.adapter.notifyClosing(t),this.adapter.addClass(a.CLOSING),this.adapter.removeClass(a.OPEN),this.adapter.removeClass(a.OPENING),clearTimeout(this.animationTimer),this.animationTimer=setTimeout((function(){e.handleAnimationTimerEnd(),e.adapter.notifyClosed(t)}),l.SNACKBAR_ANIMATION_CLOSE_TIME_MS))},e.prototype.isOpen=function(){return this.opened},e.prototype.getTimeoutMs=function(){return this.autoDismissTimeoutMs},e.prototype.setTimeoutMs=function(t){var e=l.MIN_AUTO_DISMISS_TIMEOUT_MS,n=l.MAX_AUTO_DISMISS_TIMEOUT_MS;if(!(t===l.INDETERMINATE||t<=n&&t>=e))throw new Error("\n timeoutMs must be an integer in the range "+e+"–"+n+"\n (or "+l.INDETERMINATE+" to disable), but got '"+t+"'");this.autoDismissTimeoutMs=t},e.prototype.getCloseOnEscape=function(){return this.closeOnEscape},e.prototype.setCloseOnEscape=function(t){this.closeOnEscape=t},e.prototype.handleKeyDown=function(t){("Escape"===t.key||27===t.keyCode)&&this.getCloseOnEscape()&&this.close(m)},e.prototype.handleActionButtonClick=function(t){this.close(p)},e.prototype.handleActionIconClick=function(t){this.close(m)},e.prototype.clearAutoDismissTimer=function(){clearTimeout(this.autoDismissTimer),this.autoDismissTimer=0},e.prototype.handleAnimationTimerEnd=function(){this.animationTimer=0,this.adapter.removeClass(a.OPENING),this.adapter.removeClass(a.CLOSING)},e.prototype.runNextAnimationFrame=function(t){var e=this;cancelAnimationFrame(this.animationFrame),this.animationFrame=requestAnimationFrame((function(){e.animationFrame=0,clearTimeout(e.animationTimer),e.animationTimer=setTimeout(t,0)}))},e}(o.a),b=n(0),_=n(7),v=n(2),y=n(43),g=n(5);
140
+ /**
141
+ * @license
142
+ * Copyright 2017 Google LLC
143
+ * SPDX-License-Identifier: BSD-3-Clause
144
+ */
145
+ const A=(t,e)=>{var n,i;const r=t._$AN;if(void 0===r)return!1;for(const t of r)null===(i=(n=t)._$AO)||void 0===i||i.call(n,e,!1),A(t,e);return!0},$=t=>{let e,n;do{if(void 0===(e=t._$AM))break;n=e._$AN,n.delete(t),t=e}while(0===(null==n?void 0:n.size))},E=t=>{for(let e;e=t._$AM;t=e){let n=e._$AN;if(void 0===n)e._$AN=n=new Set;else if(n.has(t))break;n.add(t),S(e)}};function O(t){void 0!==this._$AN?($(this),this._$AM=t,E(this)):this._$AM=t}function k(t,e=!1,n=0){const i=this._$AH,r=this._$AN;if(void 0!==r&&0!==r.size)if(e)if(Array.isArray(i))for(let t=n;t<i.length;t++)A(i[t],!1),$(i[t]);else null!=i&&(A(i,!1),$(i));else A(this,t)}const S=t=>{var e,n,i,r;t.type==g.b.CHILD&&(null!==(e=(i=t)._$AP)&&void 0!==e||(i._$AP=k),null!==(n=(r=t)._$AQ)&&void 0!==n||(r._$AQ=O))};class T extends g.a{constructor(){super(...arguments),this._$AN=void 0}_$AT(t,e,n){super._$AT(t,e,n),E(this),this.isConnected=t._$AU}_$AO(t,e=!0){var n,i;t!==this.isConnected&&(this.isConnected=t,t?null===(n=this.reconnected)||void 0===n||n.call(this):null===(i=this.disconnected)||void 0===i||i.call(this)),e&&(A(this,t),$(this))}setValue(t){if(Object(y.a)(this._$Ct))this._$Ct._$AI(t,this);else{const e=[...this._$Ct._$AH];e[this._$Ci]=t,this._$Ct._$AI(e,this,0)}}disconnected(){}reconnected(){}}
146
+ /**
147
+ * @license
148
+ * Copyright 2019 Google LLC
149
+ * SPDX-License-Identifier: Apache-2.0
150
+ */const{ARIA_LIVE_DELAY_MS:x}=f.numbers;const C=Object(g.c)(class extends T{constructor(t){if(super(t),this.labelEl=null,this.timerId=null,this.previousPart=null,t.type!==g.b.CHILD)throw new Error("AccessibleSnackbarLabel only supports child parts.")}update(t,[e,n]){var i;if(!n)return;if(null===this.labelEl){const n=document.createElement("div"),r=v.b`<div class="mdc-snackbar__label" role="status" aria-live="polite">${e}</div>`;Object(v.e)(r,n);const s=n.firstElementChild;return null===(i=t.endNode)||void 0===i||i.parentNode.insertBefore(s,t.endNode),this.labelEl=s,s}const r=this.labelEl;r.setAttribute("aria-live","off"),r.textContent="";const s=v.b`<span style="display: inline-block; width: 0; height: 1px;">&nbsp;</span>`;return Object(v.e)(s,r),r.setAttribute("data-mdc-snackbar-label-text",e),null!==this.timerId&&clearTimeout(this.timerId),this.timerId=window.setTimeout(()=>{this.timerId=null,r.setAttribute("aria-live","polite"),r.removeAttribute("data-mdc-snackbar-label-text"),r.textContent=e,this.setValue(this.labelEl)},x),r}render(t,e){return e?v.b`
151
+ <div class="mdc-snackbar__label" role="status" aria-live="polite">${t}</div>`:v.b``}}),{OPENING_EVENT:w,OPENED_EVENT:N,CLOSING_EVENT:M,CLOSED_EVENT:I}=f.strings;
152
+ /**
153
+ * @license
154
+ * Copyright 2018 Google LLC
155
+ * SPDX-License-Identifier: Apache-2.0
156
+ */class j extends r.a{constructor(){super(...arguments),this.mdcFoundationClass=f,this.open=!1,this.timeoutMs=5e3,this.closeOnEscape=!1,this.labelText="",this.stacked=!1,this.leading=!1,this.reason=""}render(){const t={"mdc-snackbar--stacked":this.stacked,"mdc-snackbar--leading":this.leading};return b.e`
157
+ <div class="mdc-snackbar ${Object(_.a)(t)}" @keydown="${this._handleKeydown}">
158
+ <div class="mdc-snackbar__surface">
159
+ ${C(this.labelText,this.open)}
160
+ <div class="mdc-snackbar__actions">
161
+ <slot name="action" @click="${this._handleActionClick}"></slot>
162
+ <slot name="dismiss" @click="${this._handleDismissClick}"></slot>
163
+ </div>
164
+ </div>
165
+ </div>`}createAdapter(){return Object.assign(Object.assign({},Object(r.b)(this.mdcRoot)),{announce:()=>{},notifyClosed:t=>{this.dispatchEvent(new CustomEvent(I,{bubbles:!0,cancelable:!0,detail:{reason:t}}))},notifyClosing:t=>{this.open=!1,this.dispatchEvent(new CustomEvent(M,{bubbles:!0,cancelable:!0,detail:{reason:t}}))},notifyOpened:()=>{this.dispatchEvent(new CustomEvent(N,{bubbles:!0,cancelable:!0}))},notifyOpening:()=>{this.open=!0,this.dispatchEvent(new CustomEvent(w,{bubbles:!0,cancelable:!0}))}})}show(){this.open=!0}close(t=""){this.reason=t,this.open=!1}firstUpdated(){super.firstUpdated(),this.open&&this.mdcFoundation.open()}_handleKeydown(t){this.mdcFoundation.handleKeyDown(t)}_handleActionClick(t){this.mdcFoundation.handleActionButtonClick(t)}_handleDismissClick(t){this.mdcFoundation.handleActionIconClick(t)}}Object(i.b)([Object(b.g)(".mdc-snackbar")],j.prototype,"mdcRoot",void 0),Object(i.b)([Object(b.g)(".mdc-snackbar__label")],j.prototype,"labelElement",void 0),Object(i.b)([Object(b.f)({type:Boolean,reflect:!0}),Object(s.a)((function(t){this.mdcFoundation&&(t?this.mdcFoundation.open():(this.mdcFoundation.close(this.reason),this.reason=""))}))],j.prototype,"open",void 0),Object(i.b)([Object(s.a)((function(t){this.mdcFoundation.setTimeoutMs(t)})),Object(b.f)({type:Number})],j.prototype,"timeoutMs",void 0),Object(i.b)([Object(s.a)((function(t){this.mdcFoundation.setCloseOnEscape(t)})),Object(b.f)({type:Boolean})],j.prototype,"closeOnEscape",void 0),Object(i.b)([Object(b.f)({type:String})],j.prototype,"labelText",void 0),Object(i.b)([Object(b.f)({type:Boolean})],j.prototype,"stacked",void 0),Object(i.b)([Object(b.f)({type:Boolean})],j.prototype,"leading",void 0);
166
+ /**
167
+ * @license
168
+ * Copyright 2021 Google LLC
169
+ * SPDX-LIcense-Identifier: Apache-2.0
170
+ */
171
+ const P=b.b`.mdc-snackbar{z-index:8;margin:8px;display:none;position:fixed;right:0;bottom:0;left:0;align-items:center;justify-content:center;box-sizing:border-box;pointer-events:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mdc-snackbar__surface{background-color:#333333}.mdc-snackbar__label{color:rgba(255, 255, 255, 0.87)}.mdc-snackbar__surface{min-width:344px}@media(max-width: 480px),(max-width: 344px){.mdc-snackbar__surface{min-width:100%}}.mdc-snackbar__surface{max-width:672px}.mdc-snackbar__surface{box-shadow:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px 0px rgba(0, 0, 0, 0.14),0px 1px 18px 0px rgba(0,0,0,.12)}.mdc-snackbar__surface{border-radius:4px;border-radius:var(--mdc-shape-small, 4px)}.mdc-snackbar--opening,.mdc-snackbar--open,.mdc-snackbar--closing{display:flex}.mdc-snackbar--open .mdc-snackbar__label,.mdc-snackbar--open .mdc-snackbar__actions{visibility:visible}.mdc-snackbar--leading{justify-content:flex-start}.mdc-snackbar--stacked .mdc-snackbar__label{padding-left:16px;padding-right:8px;padding-bottom:12px}[dir=rtl] .mdc-snackbar--stacked .mdc-snackbar__label,.mdc-snackbar--stacked .mdc-snackbar__label[dir=rtl]{padding-left:8px;padding-right:16px}.mdc-snackbar--stacked .mdc-snackbar__surface{flex-direction:column;align-items:flex-start}.mdc-snackbar--stacked .mdc-snackbar__actions{align-self:flex-end;margin-bottom:8px}.mdc-snackbar__surface{padding-left:0;padding-right:8px;display:flex;align-items:center;justify-content:flex-start;box-sizing:border-box;transform:scale(0.8);opacity:0}.mdc-snackbar__surface::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:1px solid transparent;border-radius:inherit;content:"";pointer-events:none}[dir=rtl] .mdc-snackbar__surface,.mdc-snackbar__surface[dir=rtl]{padding-left:8px;padding-right:0}.mdc-snackbar--open .mdc-snackbar__surface{transform:scale(1);opacity:1;pointer-events:auto;transition:opacity 150ms 0ms cubic-bezier(0, 0, 0.2, 1),transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-snackbar--closing .mdc-snackbar__surface{transform:scale(1);transition:opacity 75ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mdc-snackbar__label{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:Roboto, sans-serif;font-family:var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));font-size:0.875rem;font-size:var(--mdc-typography-body2-font-size, 0.875rem);line-height:1.25rem;line-height:var(--mdc-typography-body2-line-height, 1.25rem);font-weight:400;font-weight:var(--mdc-typography-body2-font-weight, 400);letter-spacing:0.0178571429em;letter-spacing:var(--mdc-typography-body2-letter-spacing, 0.0178571429em);text-decoration:inherit;text-decoration:var(--mdc-typography-body2-text-decoration, inherit);text-transform:inherit;text-transform:var(--mdc-typography-body2-text-transform, inherit);padding-left:16px;padding-right:8px;width:100%;flex-grow:1;box-sizing:border-box;margin:0;visibility:hidden;padding-top:14px;padding-bottom:14px}[dir=rtl] .mdc-snackbar__label,.mdc-snackbar__label[dir=rtl]{padding-left:8px;padding-right:16px}.mdc-snackbar__label::before{display:inline;content:attr(data-mdc-snackbar-label-text)}.mdc-snackbar__actions{display:flex;flex-shrink:0;align-items:center;box-sizing:border-box;visibility:hidden}.mdc-snackbar__action:not(:disabled){color:#bb86fc}.mdc-snackbar__action::before,.mdc-snackbar__action::after{background-color:#bb86fc;background-color:var(--mdc-ripple-color, #bb86fc)}.mdc-snackbar__action:hover::before,.mdc-snackbar__action.mdc-ripple-surface--hover::before{opacity:0.08;opacity:var(--mdc-ripple-hover-opacity, 0.08)}.mdc-snackbar__action.mdc-ripple-upgraded--background-focused::before,.mdc-snackbar__action:not(.mdc-ripple-upgraded):focus::before{transition-duration:75ms;opacity:0.24;opacity:var(--mdc-ripple-focus-opacity, 0.24)}.mdc-snackbar__action:not(.mdc-ripple-upgraded)::after{transition:opacity 150ms linear}.mdc-snackbar__action:not(.mdc-ripple-upgraded):active::after{transition-duration:75ms;opacity:0.24;opacity:var(--mdc-ripple-press-opacity, 0.24)}.mdc-snackbar__action.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-ripple-press-opacity, 0.24)}.mdc-snackbar__dismiss{color:rgba(255, 255, 255, 0.87)}.mdc-snackbar__dismiss .mdc-icon-button__ripple::before,.mdc-snackbar__dismiss .mdc-icon-button__ripple::after{background-color:rgba(255, 255, 255, 0.87);background-color:var(--mdc-ripple-color, rgba(255, 255, 255, 0.87))}.mdc-snackbar__dismiss:hover .mdc-icon-button__ripple::before,.mdc-snackbar__dismiss.mdc-ripple-surface--hover .mdc-icon-button__ripple::before{opacity:0.08;opacity:var(--mdc-ripple-hover-opacity, 0.08)}.mdc-snackbar__dismiss.mdc-ripple-upgraded--background-focused .mdc-icon-button__ripple::before,.mdc-snackbar__dismiss:not(.mdc-ripple-upgraded):focus .mdc-icon-button__ripple::before{transition-duration:75ms;opacity:0.24;opacity:var(--mdc-ripple-focus-opacity, 0.24)}.mdc-snackbar__dismiss:not(.mdc-ripple-upgraded) .mdc-icon-button__ripple::after{transition:opacity 150ms linear}.mdc-snackbar__dismiss:not(.mdc-ripple-upgraded):active .mdc-icon-button__ripple::after{transition-duration:75ms;opacity:0.24;opacity:var(--mdc-ripple-press-opacity, 0.24)}.mdc-snackbar__dismiss.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-ripple-press-opacity, 0.24)}.mdc-snackbar__dismiss.mdc-snackbar__dismiss{width:36px;height:36px;padding:6px;font-size:18px}.mdc-snackbar__action+.mdc-snackbar__dismiss{margin-left:8px;margin-right:0}[dir=rtl] .mdc-snackbar__action+.mdc-snackbar__dismiss,.mdc-snackbar__action+.mdc-snackbar__dismiss[dir=rtl]{margin-left:0;margin-right:8px}slot[name=action]::slotted(mwc-button){--mdc-theme-primary: var( --mdc-snackbar-action-color, #bb86fc )}slot[name=dismiss]::slotted(mwc-icon-button){--mdc-icon-size: 18px;--mdc-icon-button-size: 36px;color:rgba(255, 255, 255, 0.87);margin-left:8px;margin-right:0}[dir=rtl] slot[name=dismiss]::slotted(mwc-icon-button),::slotted(mwc-icon-buttonslot[name=dismiss][dir=rtl]){margin-left:0;margin-right:8px}`;var R=n(10),U=function(t,e,n,i){var r,s=arguments.length,o=s<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,n):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(t,e,n,i);else for(var a=t.length-1;a>=0;a--)(r=t[a])&&(o=(s<3?r(o):s>3?r(e,n,o):r(e,n))||o);return s>3&&o&&Object.defineProperty(e,n,o),o};let D=class extends j{};D.styles=[P],D=U([Object(R.a)("td-snackbar")],D)},9:function(t,e,n){"use strict";n.d(e,"a",(function(){return s}));var i=n(0),r=n(23);n.d(e,"b",(function(){return r.a}));
172
+ /**
173
+ * @license
174
+ * Copyright 2018 Google LLC
175
+ * SPDX-License-Identifier: Apache-2.0
176
+ */
177
+ class s extends i.a{click(){if(this.mdcRoot)return this.mdcRoot.focus(),void this.mdcRoot.click();super.click()}createFoundation(){void 0!==this.mdcFoundation&&this.mdcFoundation.destroy(),this.mdcFoundationClass&&(this.mdcFoundation=new this.mdcFoundationClass(this.createAdapter()),this.mdcFoundation.init())}firstUpdated(){this.createFoundation()}}}});
package/styles.css ADDED
@@ -0,0 +1 @@
1
+ td-list .beta-list-item{--mdc-list-item-meta-size: 20px;--mdc-list-item-graphic-size: 40px;--mdc-list-item-graphic-margin: 15px;--mdc-typography-subtitle1-font-size: var(--mdc-typography-subtitle2-font-size);--mdc-typography-body2-font-size: var(--mdc-typography-caption-font-size);margin-bottom:8px;font-size:var(--mdc-typography-subtitle1-font-size)}td-list .beta-list-item .beta-icon{height:20px;line-height:20px;width:40px}td-list.navigation-rail td-list-item:not(.beta-list-item){border-radius:0 28px 28px 0;margin-right:16px}td-list.navigation-rail td-list-item[graphic=avatar]:not(.beta-list-item) td-icon[slot=graphic]{background:rgba(0,0,0,0)}td-list.navigation-rail .home-item .covalent-icon:not(.teradata-circle){--mdc-list-item-graphic-size: 40px;--mdc-icon-size: 40px}td-list.navigation-rail .home-item .home-icon{display:none}td-list.navigation-rail .home-item .teradata-circle{display:none}td-list.navigation-rail .home-item .teradata-no-circle{display:block}td-list.navigation-rail .home-item:hover .home-icon{display:block}td-list.navigation-rail .home-item:hover .covalent-icon{display:none}td-app-shell:not([open]) td-list.navigation-rail td-list-item:not(.beta-list-item){border-radius:100%;margin:0 auto 8px;padding:0;width:48px;height:48px}td-app-shell:not([open]) td-list.navigation-rail td-list-item [slot=graphic],td-app-shell:not([open]) td-list.navigation-rail td-list-item td-icon{margin-left:8px}td-app-shell:not([open]) td-list.navigation-rail td-expansion-list{--td-list-item-text-icon-on-background: transparent;--td-list-menu-height: 0}td-app-shell:not([open]) td-list.navigation-rail .beta-list-item{--mdc-list-item-graphic-margin: 0px;--mdc-typography-subtitle1-font-size: 0;--mdc-typography-body2-font-size: 0;height:48px;font-size:0;padding:0;justify-content:center;align-content:center}td-app-shell:not([open]) td-list.navigation-rail .home-item{background-color:#f3753f;--mdc-ripple-color: #fff;--mdc-theme-text-icon-on-background: #fff}td-app-shell[open] td-list.navigation-rail .home-item .covalent-icon{display:none}td-app-shell[open] td-list.navigation-rail .home-item .covalent-icon.teradata-circle{display:block}td-app-shell[open] td-list.navigation-rail .home-item:hover .covalent-icon.teradata-circle{display:none}.skeleton-text *{font-family:"skeleton" !important}.skeleton-text{--mdc-typography-body2-font-family: "skeleton";--mdc-typography-body2-letter-spacing: -0.03em;--mdc-theme-text-primary-on-background: #ccc;--skeleton-color: #ccc}.covalent-icon{--mdc-icon-font: "covalent-icons"}.td-toolbar{min-height:64px;display:flex;align-items:center;padding:0 16px;border-top:1px solid;border-color:var(--mdc-theme-border, rgba(0, 0, 0, 0.12))}.td-toolbar .spacer{display:flex;flex:1}
package/styles.js ADDED
@@ -0,0 +1 @@
1
+ !function(e){var t={};function r(n){if(t[n])return t[n].exports;var o=t[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)r.d(n,o,function(t){return e[t]}.bind(null,o));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=102)}({102:function(e,t,r){e.exports=r.p+"styles.css"}});