@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/appDetail.js ADDED
@@ -0,0 +1,69 @@
1
+ !function(t){var e={};function i(n){if(e[n])return e[n].exports;var s=e[n]={i:n,l:!1,exports:{}};return t[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}i.m=t,i.c=e,i.d=function(t,e,n){i.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:n})},i.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},i.t=function(t,e){if(1&e&&(t=i(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var s in t)i.d(n,s,function(e){return t[e]}.bind(null,s));return n},i.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return i.d(e,"a",e),e},i.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},i.p="",i(i.s=88)}({10:function(t,e,i){"use strict";var n=i(15);i.d(e,"a",(function(){return n.a}));var s=i(8);i.d(e,"b",(function(){return s.a}));i(16),i(17);var r=i(18);i.d(e,"c",(function(){return r.a}));i(19),i(20),i(21)},14:function(t,e,i){"use strict";i.d(e,"a",(function(){return l}));var n=i(6);i.d(e,"b",(function(){return n.b}));var s,r,o=i(2);i.d(e,"c",(function(){return o.b}));n.a;class l extends n.a{constructor(){super(...arguments),this.renderOptions={host:this},this._$Dt=void 0}createRenderRoot(){var t,e;const i=super.createRenderRoot();return null!==(t=(e=this.renderOptions).renderBefore)&&void 0!==t||(e.renderBefore=i.firstChild),i}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}}l.finalized=!0,l._$litElement$=!0,null===(s=globalThis.litElementHydrateSupport)||void 0===s||s.call(globalThis,{LitElement:l});const a=globalThis.litElementPolyfillSupport;null==a||a({LitElement:l});(null!==(r=globalThis.litElementVersions)&&void 0!==r?r:globalThis.litElementVersions=[]).push("3.0.1")},15:function(t,e,i){"use strict";i.d(e,"a",(function(){return n}));
2
+ /**
3
+ * @license
4
+ * Copyright 2017 Google LLC
5
+ * SPDX-License-Identifier: BSD-3-Clause
6
+ */
7
+ const n=t=>e=>"function"==typeof e?((t,e)=>(window.customElements.define(t,e),e))(t,e):((t,e)=>{const{kind:i,elements:n}=e;return{kind:i,elements:n,finisher(e){window.customElements.define(t,e)}}})(t,e)},16:function(t,e,i){"use strict";i.d(e,"a",(function(){return s}));var n=i(8);
8
+ /**
9
+ * @license
10
+ * Copyright 2017 Google LLC
11
+ * SPDX-License-Identifier: BSD-3-Clause
12
+ */function s(t){return Object(n.a)({...t,state:!0})}},17:function(t,e,i){"use strict";i.d(e,"a",(function(){return s}));var n=i(4);
13
+ /**
14
+ * @license
15
+ * Copyright 2017 Google LLC
16
+ * SPDX-License-Identifier: BSD-3-Clause
17
+ */function s(t){return Object(n.a)({finisher:(e,i)=>{Object.assign(e.prototype[i],t)}})}},18:function(t,e,i){"use strict";i.d(e,"a",(function(){return s}));var n=i(4);
18
+ /**
19
+ * @license
20
+ * Copyright 2017 Google LLC
21
+ * SPDX-License-Identifier: BSD-3-Clause
22
+ */function s(t,e){return Object(n.a)({descriptor:i=>{const n={get(){var e,i;return null!==(i=null===(e=this.renderRoot)||void 0===e?void 0:e.querySelector(t))&&void 0!==i?i:null},enumerable:!0,configurable:!0};if(e){const e="symbol"==typeof i?Symbol():"__"+i;n.get=function(){var i,n;return void 0===this[e]&&(this[e]=null!==(n=null===(i=this.renderRoot)||void 0===i?void 0:i.querySelector(t))&&void 0!==n?n:null),this[e]}}return n}})}},19:function(t,e,i){"use strict";i(4);
23
+ /**
24
+ * @license
25
+ * Copyright 2017 Google LLC
26
+ * SPDX-License-Identifier: BSD-3-Clause
27
+ */},2:function(t,e,i){"use strict";
28
+ /**
29
+ * @license
30
+ * Copyright 2017 Google LLC
31
+ * SPDX-License-Identifier: BSD-3-Clause
32
+ */
33
+ var n;i.d(e,"a",(function(){return L})),i.d(e,"b",(function(){return b})),i.d(e,"c",(function(){return E})),i.d(e,"d",(function(){return S})),i.d(e,"e",(function(){return C}));const s=globalThis.trustedTypes,r=s?s.createPolicy("lit-html",{createHTML:t=>t}):void 0,o=`lit$${(Math.random()+"").slice(9)}$`,l="?"+o,a=`<${l}>`,c=document,h=(t="")=>c.createComment(t),u=t=>null===t||"object"!=typeof t&&"function"!=typeof t,d=Array.isArray,p=t=>{var e;return d(t)||"function"==typeof(null===(e=t)||void 0===e?void 0:e[Symbol.iterator])},v=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,f=/-->/g,$=/>/g,_=/>|[ \n \r](?:([^\s"'>=/]+)([ \n \r]*=[ \n \r]*(?:[^ \n \r"'`<>=]|("|')|))|$)/g,m=/'/g,y=/"/g,g=/^(?:script|style|textarea)$/i,A=t=>(e,...i)=>({_$litType$:t,strings:e,values:i}),b=A(1),E=(A(2),Symbol.for("lit-noChange")),S=Symbol.for("lit-nothing"),w=new WeakMap,C=(t,e,i)=>{var n,s;const r=null!==(n=null==i?void 0:i.renderBefore)&&void 0!==n?n:e;let o=r._$litPart$;if(void 0===o){const t=null!==(s=null==i?void 0:i.renderBefore)&&void 0!==s?s:null;r._$litPart$=o=new H(e.insertBefore(h(),t),t,void 0,null!=i?i:{})}return o._$AI(t),o},x=c.createTreeWalker(c,129,null,!1),P=(t,e)=>{const i=t.length-1,n=[];let s,l=2===e?"<svg>":"",c=v;for(let e=0;e<i;e++){const i=t[e];let r,h,u=-1,d=0;for(;d<i.length&&(c.lastIndex=d,h=c.exec(i),null!==h);)d=c.lastIndex,c===v?"!--"===h[1]?c=f:void 0!==h[1]?c=$:void 0!==h[2]?(g.test(h[2])&&(s=RegExp("</"+h[2],"g")),c=_):void 0!==h[3]&&(c=_):c===_?">"===h[0]?(c=null!=s?s:v,u=-1):void 0===h[1]?u=-2:(u=c.lastIndex-h[2].length,r=h[1],c=void 0===h[3]?_:'"'===h[3]?y:m):c===y||c===m?c=_:c===f||c===$?c=v:(c=_,s=void 0);const p=c===_&&t[e+1].startsWith("/>")?" ":"";l+=c===v?i+a:u>=0?(n.push(r),i.slice(0,u)+"$lit$"+i.slice(u)+o+p):i+o+(-2===u?(n.push(void 0),e):p)}const h=l+(t[i]||"<?>")+(2===e?"</svg>":"");return[void 0!==r?r.createHTML(h):h,n]};class O{constructor({strings:t,_$litType$:e},i){let n;this.parts=[];let r=0,a=0;const c=t.length-1,u=this.parts,[d,p]=P(t,e);if(this.el=O.createElement(d,i),x.currentNode=this.el.content,2===e){const t=this.el.content,e=t.firstChild;e.remove(),t.append(...e.childNodes)}for(;null!==(n=x.nextNode())&&u.length<c;){if(1===n.nodeType){if(n.hasAttributes()){const t=[];for(const e of n.getAttributeNames())if(e.endsWith("$lit$")||e.startsWith(o)){const i=p[a++];if(t.push(e),void 0!==i){const t=n.getAttribute(i.toLowerCase()+"$lit$").split(o),e=/([.?@])?(.*)/.exec(i);u.push({type:1,index:r,name:e[2],strings:t,ctor:"."===e[1]?R:"?"===e[1]?M:"@"===e[1]?k:N})}else u.push({type:6,index:r})}for(const e of t)n.removeAttribute(e)}if(g.test(n.tagName)){const t=n.textContent.split(o),e=t.length-1;if(e>0){n.textContent=s?s.emptyScript:"";for(let i=0;i<e;i++)n.append(t[i],h()),x.nextNode(),u.push({type:2,index:++r});n.append(t[e],h())}}}else if(8===n.nodeType)if(n.data===l)u.push({type:2,index:r});else{let t=-1;for(;-1!==(t=n.data.indexOf(o,t+1));)u.push({type:7,index:r}),t+=o.length-1}r++}}static createElement(t,e){const i=c.createElement("template");return i.innerHTML=t,i}}function U(t,e,i=t,n){var s,r,o,l;if(e===E)return e;let a=void 0!==n?null===(s=i._$Cl)||void 0===s?void 0:s[n]:i._$Cu;const c=u(e)?void 0:e._$litDirective$;return(null==a?void 0:a.constructor)!==c&&(null===(r=null==a?void 0:a._$AO)||void 0===r||r.call(a,!1),void 0===c?a=void 0:(a=new c(t),a._$AT(t,i,n)),void 0!==n?(null!==(o=(l=i)._$Cl)&&void 0!==o?o:l._$Cl=[])[n]=a:i._$Cu=a),void 0!==a&&(e=U(t,a._$AS(t,e.values),a,n)),e}class T{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:i},parts:n}=this._$AD,s=(null!==(e=null==t?void 0:t.creationScope)&&void 0!==e?e:c).importNode(i,!0);x.currentNode=s;let r=x.nextNode(),o=0,l=0,a=n[0];for(;void 0!==a;){if(o===a.index){let e;2===a.type?e=new H(r,r.nextSibling,this,t):1===a.type?e=new a.ctor(r,a.name,a.strings,this,t):6===a.type&&(e=new j(r,this,t)),this.v.push(e),a=n[++l]}o!==(null==a?void 0:a.index)&&(r=x.nextNode(),o++)}return s}m(t){let e=0;for(const i of this.v)void 0!==i&&(void 0!==i.strings?(i._$AI(t,i,e),e+=i.strings.length-2):i._$AI(t[e])),e++}}class H{constructor(t,e,i,n){var s;this.type=2,this._$AH=S,this._$AN=void 0,this._$AA=t,this._$AB=e,this._$AM=i,this.options=n,this._$Cg=null===(s=null==n?void 0:n.isConnected)||void 0===s||s}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=U(this,t,e),u(t)?t===S||null==t||""===t?(this._$AH!==S&&this._$AR(),this._$AH=S):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!==S&&u(this._$AH)?this._$AA.nextSibling.data=t:this.S(c.createTextNode(t)),this._$AH=t}T(t){var e;const{values:i,_$litType$:n}=t,s="number"==typeof n?this._$AC(t):(void 0===n.el&&(n.el=O.createElement(n.h,this.options)),n);if((null===(e=this._$AH)||void 0===e?void 0:e._$AD)===s)this._$AH.m(i);else{const t=new T(s,this),e=t.p(this.options);t.m(i),this.S(e),this._$AH=t}}_$AC(t){let e=w.get(t.strings);return void 0===e&&w.set(t.strings,e=new O(t)),e}M(t){d(this._$AH)||(this._$AH=[],this._$AR());const e=this._$AH;let i,n=0;for(const s of t)n===e.length?e.push(i=new H(this.A(h()),this.A(h()),this,this.options)):i=e[n],i._$AI(s),n++;n<e.length&&(this._$AR(i&&i._$AB.nextSibling,n),e.length=n)}_$AR(t=this._$AA.nextSibling,e){var i;for(null===(i=this._$AP)||void 0===i||i.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 N{constructor(t,e,i,n,s){this.type=1,this._$AH=S,this._$AN=void 0,this.element=t,this.name=e,this._$AM=n,this.options=s,i.length>2||""!==i[0]||""!==i[1]?(this._$AH=Array(i.length-1).fill(new String),this.strings=i):this._$AH=S}get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}_$AI(t,e=this,i,n){const s=this.strings;let r=!1;if(void 0===s)t=U(this,t,e,0),r=!u(t)||t!==this._$AH&&t!==E,r&&(this._$AH=t);else{const n=t;let o,l;for(t=s[0],o=0;o<s.length-1;o++)l=U(this,n[i+o],e,o),l===E&&(l=this._$AH[o]),r||(r=!u(l)||l!==this._$AH[o]),l===S?t=S:t!==S&&(t+=(null!=l?l:"")+s[o+1]),this._$AH[o]=l}r&&!n&&this.k(t)}k(t){t===S?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,null!=t?t:"")}}class R extends N{constructor(){super(...arguments),this.type=3}k(t){this.element[this.name]=t===S?void 0:t}}class M extends N{constructor(){super(...arguments),this.type=4}k(t){t&&t!==S?this.element.setAttribute(this.name,""):this.element.removeAttribute(this.name)}}class k extends N{constructor(t,e,i,n,s){super(t,e,i,n,s),this.type=5}_$AI(t,e=this){var i;if((t=null!==(i=U(this,t,e,0))&&void 0!==i?i:S)===E)return;const n=this._$AH,s=t===S&&n!==S||t.capture!==n.capture||t.once!==n.once||t.passive!==n.passive,r=t!==S&&(n===S||s);s&&this.element.removeEventListener(this.name,this,n),r&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){var e,i;"function"==typeof this._$AH?this._$AH.call(null!==(i=null===(e=this.options)||void 0===e?void 0:e.host)&&void 0!==i?i:this.element,t):this._$AH.handleEvent(t)}}class j{constructor(t,e,i){this.element=t,this.type=6,this._$AN=void 0,this._$AM=e,this.options=i}get _$AU(){return this._$AM._$AU}_$AI(t){U(this,t)}}const L={P:"$lit$",V:o,L:l,I:1,N:P,R:T,D:p,j:U,H:H,O:N,F:M,B:k,W:R,Z:j},z=window.litHtmlPolyfillSupport;null==z||z(O,H),(null!==(n=globalThis.litHtmlVersions)&&void 0!==n?n:globalThis.litHtmlVersions=[]).push("2.0.1")},20:function(t,e,i){"use strict";i.d(e,"a",(function(){return s}));var n=i(4);
34
+ /**
35
+ * @license
36
+ * Copyright 2017 Google LLC
37
+ * SPDX-License-Identifier: BSD-3-Clause
38
+ */function s(t){return Object(n.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,i){"use strict";i.d(e,"a",(function(){return s}));var n=i(4);
39
+ /**
40
+ * @license
41
+ * Copyright 2017 Google LLC
42
+ * SPDX-License-Identifier: BSD-3-Clause
43
+ */function s(t="",e=!1,i=""){return Object(n.a)({descriptor:n=>({get(){var n,s,r;const o="slot"+(t?`[name=${t}]`:":not([name])");let l=null!==(r=null===(s=null===(n=this.renderRoot)||void 0===n?void 0:n.querySelector(o))||void 0===s?void 0:s.assignedNodes({flatten:e}))&&void 0!==r?r:[];return i&&(l=l.filter(t=>t.nodeType===Node.ELEMENT_NODE&&t.matches(i))),l},enumerable:!0,configurable:!0})})}},27:function(t,e,i){"use strict";i(6),i(2);var n=i(14);i.d(e,"a",(function(){return n.a})),i.d(e,"b",(function(){return n.b})),i.d(e,"c",(function(){return n.c}))},4:function(t,e,i){"use strict";i.d(e,"a",(function(){return n}));
44
+ /**
45
+ * @license
46
+ * Copyright 2017 Google LLC
47
+ * SPDX-License-Identifier: BSD-3-Clause
48
+ */
49
+ const n=({finisher:t,descriptor:e})=>(i,n)=>{var s;if(void 0===n){const n=null!==(s=i.originalKey)&&void 0!==s?s:i.key,r=null!=e?{kind:"method",placement:"prototype",key:n,descriptor:e(i.key)}:{...i,key:n};return null!=t&&(r.finisher=function(e){t(e,n)}),r}{const s=i.constructor;void 0!==e&&Object.defineProperty(i,n,e(n)),null==t||t(s,n)}}},6:function(t,e,i){"use strict";i.d(e,"b",(function(){return l})),i.d(e,"a",(function(){return v}));
50
+ /**
51
+ * @license
52
+ * Copyright 2019 Google LLC
53
+ * SPDX-License-Identifier: BSD-3-Clause
54
+ */
55
+ const n=window.ShadowRoot&&(void 0===window.ShadyCSS||window.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,s=Symbol(),r=new Map;class o{constructor(t,e){if(this._$cssResult$=!0,e!==s)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=t}get styleSheet(){let t=r.get(this.cssText);return n&&void 0===t&&(r.set(this.cssText,t=new CSSStyleSheet),t.replaceSync(this.cssText)),t}toString(){return this.cssText}}const l=(t,...e)=>{const i=1===t.length?t[0]:e.reduce((e,i,n)=>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.")})(i)+t[n+1],t[0]);return new o(i,s)},a=n?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let e="";for(const i of t.cssRules)e+=i.cssText;return(t=>new o("string"==typeof t?t:t+"",s))(e)})(t):t
56
+ /**
57
+ * @license
58
+ * Copyright 2017 Google LLC
59
+ * SPDX-License-Identifier: BSD-3-Clause
60
+ */;var c;const h=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 i=t;switch(e){case Boolean:i=null!==t;break;case Number:i=null===t?null:Number(t);break;case Object:case Array:try{i=JSON.parse(t)}catch(t){i=null}}return i}},d=(t,e)=>e!==t&&(e==e||t==t),p={attribute:!0,type:String,converter:u,reflect:!1,hasChanged:d};class v 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,i)=>{const n=this._$Eh(i,e);void 0!==n&&(this._$Eu.set(n,i),t.push(n))}),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 i="symbol"==typeof t?Symbol():"__"+t,n=this.getPropertyDescriptor(t,i,e);void 0!==n&&Object.defineProperty(this.prototype,t,n)}}static getPropertyDescriptor(t,e,i){return{get(){return this[e]},set(n){const s=this[t];this[e]=n,this.requestUpdate(t,s,i)},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 i of e)this.createProperty(i,t[i])}return this.elementStyles=this.finalizeStyles(this.styles),!0}static finalizeStyles(t){const e=[];if(Array.isArray(t)){const i=new Set(t.flat(1/0).reverse());for(const t of i)e.unshift(a(t))}else void 0!==t&&e.push(a(t));return e}static _$Eh(t,e){const i=e.attribute;return!1===i?void 0:"string"==typeof i?i:"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,i;(null!==(e=this._$Em)&&void 0!==e?e:this._$Em=[]).push(t),void 0!==this.renderRoot&&this.isConnected&&(null===(i=t.hostConnected)||void 0===i||i.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 i=e,s=this.constructor.elementStyles,n?i.adoptedStyleSheets=s.map(t=>t instanceof CSSStyleSheet?t:t.styleSheet):s.forEach(t=>{const e=document.createElement("style"),n=window.litNonce;void 0!==n&&e.setAttribute("nonce",n),e.textContent=t.cssText,i.appendChild(e)}),e;var i,s}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,i){this._$AK(t,i)}_$Eg(t,e,i=p){var n,s;const r=this.constructor._$Eh(t,i);if(void 0!==r&&!0===i.reflect){const o=(null!==(s=null===(n=i.converter)||void 0===n?void 0:n.toAttribute)&&void 0!==s?s:u.toAttribute)(e,i.type);this._$Ei=t,null==o?this.removeAttribute(r):this.setAttribute(r,o),this._$Ei=null}}_$AK(t,e){var i,n,s;const r=this.constructor,o=r._$Eu.get(t);if(void 0!==o&&this._$Ei!==o){const t=r.getPropertyOptions(o),l=t.converter,a=null!==(s=null!==(n=null===(i=l)||void 0===i?void 0:i.fromAttribute)&&void 0!==n?n:"function"==typeof l?l:null)&&void 0!==s?s:u.fromAttribute;this._$Ei=o,this[o]=a(e,t.type),this._$Ei=null}}requestUpdate(t,e,i){let n=!0;void 0!==t&&(((i=i||this.constructor.getPropertyOptions(t)).hasChanged||d)(this[t],e)?(this._$AL.has(t)||this._$AL.set(t,e),!0===i.reflect&&this._$Ei!==t&&(void 0===this._$ES&&(this._$ES=new Map),this._$ES.set(t,i))):n=!1),!this.isUpdatePending&&n&&(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 i=this._$AL;try{e=this.shouldUpdate(i),e?(this.willUpdate(i),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(i)):this._$EU()}catch(t){throw e=!1,this._$EU(),t}e&&this._$AE(i)}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){}}v.finalized=!0,v.elementProperties=new Map,v.elementStyles=[],v.shadowRootOptions={mode:"open"},null==h||h({ReactiveElement:v}),(null!==(c=globalThis.reactiveElementVersions)&&void 0!==c?c:globalThis.reactiveElementVersions=[]).push("1.0.1")},8:function(t,e,i){"use strict";i.d(e,"a",(function(){return s}));
61
+ /**
62
+ * @license
63
+ * Copyright 2017 Google LLC
64
+ * SPDX-License-Identifier: BSD-3-Clause
65
+ */
66
+ const n=(t,e)=>"method"===e.kind&&e.descriptor&&!("value"in e.descriptor)?{...e,finisher(i){i.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(i){i.createProperty(e.key,t)}};function s(t){return(e,i)=>void 0!==i?((t,e,i)=>{e.constructor.createProperty(i,t)})(t,e,i):n(t,e)}},88:function(t,e,i){"use strict";i.r(e),i.d(e,"CovalentAppDetailBase",(function(){return a}));var n=i(10),s=i(27);class r extends s.a{render(){return s.c`
67
+ <div class="mini-list"><slot name="mini-list"></slot></div>
68
+ <div class="main-content"><slot></slot></div>
69
+ `}}var o=s.b`:host{display:grid;grid-template-columns:auto 1fr;grid-template-rows:min-content;grid-template-areas:"mini-list main";min-height:100vh}.main-content{grid-area:main;overflow:auto;height:100vh;border-left:1px solid;border-color:var(--mdc-theme-border,rgba(0,0,0,.12))}.mini-list{grid-area:mini-list;width:320px;height:100vh;overflow-y:auto;border-left:1px solid;border-color:var(--mdc-theme-border,rgba(0,0,0,.12))}@media only screen and (max-width:1000px){.mini-list{display:none}}`,l=function(t,e,i,n){var s,r=arguments.length,o=r<3?e:null===n?n=Object.getOwnPropertyDescriptor(e,i):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(t,e,i,n);else for(var l=t.length-1;l>=0;l--)(s=t[l])&&(o=(r<3?s(o):r>3?s(e,i,o):s(e,i))||o);return r>3&&o&&Object.defineProperty(e,i,o),o};let a=class extends r{};a.styles=[o],a=l([Object(n.a)("td-app-detail")],a)}});