@jenkinsci/jenkins-io-components 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +91 -0
- package/build/jio-cdf-logo.d.ts +11 -0
- package/build/jio-changelog-ratings.d.ts +19 -0
- package/build/jio-changelog-weather-icon.d.ts +14 -0
- package/build/jio-components.cjs.js +66 -0
- package/build/jio-components.d.ts +11 -0
- package/build/jio-components.ejs.js +77 -0
- package/build/jio-datetime-box.d.ts +20 -0
- package/build/jio-eventbox.d.ts +16 -0
- package/build/jio-footer.d.ts +26 -0
- package/build/jio-improve-this-page.d.ts +19 -0
- package/build/jio-navbar-link.d.ts +22 -0
- package/build/jio-navbar.d.ts +52 -0
- package/build/jio-report-a-problem.d.ts +27 -0
- package/build/jio-socialmedia-buttons.d.ts +15 -0
- package/build/jio-weather-icon.d.ts +20 -0
- package/build/shared-styles.d.ts +2 -0
- package/custom-elements.json +1372 -0
- package/package.json +141 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022 Gavin Mogan
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
# Welcome to Jenkins.io Web Components
|
|
2
|
+
|
|
3
|
+
This is an attempt to build web components that can be used across various jenkins.io based projects
|
|
4
|
+
|
|
5
|
+
## Setup
|
|
6
|
+
|
|
7
|
+
Install dependencies:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm i
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Build
|
|
14
|
+
|
|
15
|
+
This sample uses the TypeScript compiler to produce JavaScript that runs in modern browsers.
|
|
16
|
+
|
|
17
|
+
To build the JavaScript version of your component:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
npm run build
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
To watch files and rebuild when the files are modified, run the following command in a separate shell:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
npm run build:watch
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Both the TypeScript compiler and lit-analyzer are configured to be very strict. You may want to change `tsconfig.json` to make them less strict.
|
|
30
|
+
|
|
31
|
+
## Testing
|
|
32
|
+
|
|
33
|
+
This sample uses modern-web.dev's
|
|
34
|
+
[@web/test-runner](https://www.npmjs.com/package/@web/test-runner) for testing. See the
|
|
35
|
+
[modern-web.dev testing documentation](https://modern-web.dev/docs/test-runner/overview) for
|
|
36
|
+
more information.
|
|
37
|
+
|
|
38
|
+
Tests can be run with the `test` script, which will run your tests against Lit's development mode (with more verbose errors) as well as against Lit's production mode:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
npm test
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
For local testing during development, the `test:dev:watch` command will run your tests in Lit's development mode (with verbose errors) on every change to your source files:
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
npm test:watch
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
Alternatively the `test:prod` and `test:prod:watch` commands will run your tests in Lit's production mode.
|
|
51
|
+
|
|
52
|
+
## Dev Server
|
|
53
|
+
|
|
54
|
+
To run the dev server and open the project in a new browser tab:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
npm run storybook
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
## Editing
|
|
61
|
+
|
|
62
|
+
If you use VS Code, we highly recommend the [lit-plugin extension](https://marketplace.visualstudio.com/items?itemName=runem.lit-plugin), which enables some extremely useful features for lit-html templates:
|
|
63
|
+
|
|
64
|
+
- Syntax highlighting
|
|
65
|
+
- Type-checking
|
|
66
|
+
- Code completion
|
|
67
|
+
- Hover-over docs
|
|
68
|
+
- Jump to definition
|
|
69
|
+
- Linting
|
|
70
|
+
- Quick Fixes
|
|
71
|
+
|
|
72
|
+
The project is setup to recommend lit-plugin to VS Code users if they don't already have it installed.
|
|
73
|
+
|
|
74
|
+
## Linting
|
|
75
|
+
|
|
76
|
+
Linting of TypeScript files is provided by [ESLint](eslint.org) and [TypeScript ESLint](https://github.com/typescript-eslint/typescript-eslint). In addition, [lit-analyzer](https://www.npmjs.com/package/lit-analyzer) is used to type-check and lint lit-html templates with the same engine and rules as lit-plugin.
|
|
77
|
+
|
|
78
|
+
The rules are mostly the recommended rules from each project, but some have been turned off to make LitElement usage easier. The recommended rules are pretty strict, so you may want to relax them by editing `.eslintrc.json` and `tsconfig.json`.
|
|
79
|
+
|
|
80
|
+
To lint the project run:
|
|
81
|
+
|
|
82
|
+
```bash
|
|
83
|
+
npm run lint
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
## Formatting
|
|
87
|
+
|
|
88
|
+
[Prettier](https://prettier.io/) is used for code formatting. It has been pre-configured according to the Lit's style. You can change this in `.prettierrc.json`.
|
|
89
|
+
|
|
90
|
+
Prettier has not been configured to run when committing files, but this can be added with Husky and and `pretty-quick`. See the [prettier.io](https://prettier.io/) site for instructions.
|
|
91
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { LitElement } from 'lit';
|
|
2
|
+
export declare class CDFLogo extends LitElement {
|
|
3
|
+
static styles: import("lit").CSSResult;
|
|
4
|
+
render(): import("lit-html").TemplateResult<1>;
|
|
5
|
+
}
|
|
6
|
+
declare global {
|
|
7
|
+
interface HTMLElementTagNameMap {
|
|
8
|
+
'jio-cdf-logo': CDFLogo;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=jio-cdf-logo.d.ts.map
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { LitElement } from 'lit';
|
|
2
|
+
import './jio-changelog-weather-icon';
|
|
3
|
+
export declare class ChangelogRatings extends LitElement {
|
|
4
|
+
static styles: import("lit").CSSResult;
|
|
5
|
+
good: number;
|
|
6
|
+
nolike: number;
|
|
7
|
+
rollback: number;
|
|
8
|
+
ratings: Array<Number | string>;
|
|
9
|
+
version: string;
|
|
10
|
+
render(): import("lit-html").TemplateResult<1>;
|
|
11
|
+
private _rate;
|
|
12
|
+
private _prompt;
|
|
13
|
+
}
|
|
14
|
+
declare global {
|
|
15
|
+
interface HTMLElementTagNameMap {
|
|
16
|
+
'jio-changelog-ratings': ChangelogRatings;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=jio-changelog-ratings.d.ts.map
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { LitElement } from 'lit';
|
|
2
|
+
import { EnumWeatherIcons } from './jio-weather-icon.js';
|
|
3
|
+
export declare class ChangelogWeatherIcon extends LitElement {
|
|
4
|
+
static styles: import("lit").CSSResult;
|
|
5
|
+
mode: EnumWeatherIcons;
|
|
6
|
+
count: number;
|
|
7
|
+
render(): import("lit-html").TemplateResult<1>;
|
|
8
|
+
}
|
|
9
|
+
declare global {
|
|
10
|
+
interface HTMLElementTagNameMap {
|
|
11
|
+
'jio-changelog-weather-icon': ChangelogWeatherIcon;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=jio-changelog-weather-icon.d.ts.map
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
System.register([],(function(e,t){var r,o,i,n,l,a,s,d,c,f,u,h,p,b,m,x,g,w,v,k,y,C,_,A,$,S,E,j,O,P,L,M,T,z,R,N,U,I,D,H,B,G,J,V,F,W,q,K,Z,Y,X,Q,ee,te,re,oe,ie,ne,le,ae,se,de,ce,fe,ue,he,pe,be,me,xe,ge,we,ve,ke,ye,Ce,_e,Ae,$e,Se,Ee,je,Oe,Pe,Le,Me,Te,ze,Re,Ne,Ue,Ie,De,He,Be,Ge,Je,Ve,Fe,We,qe,Ke,Ze,Ye,Xe,Qe,et,tt,rt,ot,it,nt,lt,at,st,dt,ct,ft,ut,ht,pt,bt,mt,xt,gt,wt,vt,kt,yt,Ct,_t,At,$t,St,Et,jt,Ot,Pt,Lt,Mt,Tt,zt,Rt;function Nt(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}function Ut(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,o)}return r}function It(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?Ut(Object(r),!0).forEach((function(t){Dt(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):Ut(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function Dt(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function Ht(){return Ht="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(e,t,r){var o=Bt(e,t);if(o){var i=Object.getOwnPropertyDescriptor(o,t);return i.get?i.get.call(arguments.length<3?e:r):i.value}},Ht.apply(this,arguments)}function Bt(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&null!==(e=rr(e)););return e}function Gt(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null==r)return;var o,i,n=[],l=!0,a=!1;try{for(r=r.call(e);!(l=(o=r.next()).done)&&(n.push(o.value),!t||n.length!==t);l=!0);}catch(e){a=!0,i=e}finally{try{l||null==r.return||r.return()}finally{if(a)throw i}}return n}(e,t)||ir(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Jt(e){return function(e){if(Array.isArray(e))return nr(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||ir(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Vt(){/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */Vt=function(){return e};var e={},t=Object.prototype,r=t.hasOwnProperty,o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",n=o.asyncIterator||"@@asyncIterator",l=o.toStringTag||"@@toStringTag";function a(e,t,r){return Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{a({},"")}catch(e){a=function(e,t,r){return e[t]=r}}function s(e,t,r,o){var i=t&&t.prototype instanceof f?t:f,n=Object.create(i.prototype),l=new C(o||[]);return n._invoke=function(e,t,r){var o="suspendedStart";return function(i,n){if("executing"===o)throw new Error("Generator is already running");if("completed"===o){if("throw"===i)throw n;return A()}for(r.method=i,r.arg=n;;){var l=r.delegate;if(l){var a=v(l,r);if(a){if(a===c)continue;return a}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if("suspendedStart"===o)throw o="completed",r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o="executing";var s=d(e,t,r);if("normal"===s.type){if(o=r.done?"completed":"suspendedYield",s.arg===c)continue;return{value:s.arg,done:r.done}}"throw"===s.type&&(o="completed",r.method="throw",r.arg=s.arg)}}}(e,r,l),n}function d(e,t,r){try{return{type:"normal",arg:e.call(t,r)}}catch(e){return{type:"throw",arg:e}}}e.wrap=s;var c={};function f(){}function u(){}function h(){}var p={};a(p,i,(function(){return this}));var b=Object.getPrototypeOf,m=b&&b(b(_([])));m&&m!==t&&r.call(m,i)&&(p=m);var x=h.prototype=f.prototype=Object.create(p);function g(e){["next","throw","return"].forEach((function(t){a(e,t,(function(e){return this._invoke(t,e)}))}))}function w(e,t){function o(i,n,l,a){var s=d(e[i],e,n);if("throw"!==s.type){var c=s.arg,f=c.value;return f&&"object"==typeof f&&r.call(f,"__await")?t.resolve(f.__await).then((function(e){o("next",e,l,a)}),(function(e){o("throw",e,l,a)})):t.resolve(f).then((function(e){c.value=e,l(c)}),(function(e){return o("throw",e,l,a)}))}a(s.arg)}var i;this._invoke=function(e,r){function n(){return new t((function(t,i){o(e,r,t,i)}))}return i=i?i.then(n,n):n()}}function v(e,t){var r=e.iterator[t.method];if(void 0===r){if(t.delegate=null,"throw"===t.method){if(e.iterator.return&&(t.method="return",t.arg=void 0,v(e,t),"throw"===t.method))return c;t.method="throw",t.arg=new TypeError("The iterator does not provide a 'throw' method")}return c}var o=d(r,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,c;var i=o.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,c):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,c)}function k(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function y(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function C(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(k,this),this.reset(!0)}function _(e){if(e){var t=e[i];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,n=function t(){for(;++o<e.length;)if(r.call(e,o))return t.value=e[o],t.done=!1,t;return t.value=void 0,t.done=!0,t};return n.next=n}}return{next:A}}function A(){return{value:void 0,done:!0}}return u.prototype=h,a(x,"constructor",h),a(h,"constructor",u),u.displayName=a(h,l,"GeneratorFunction"),e.isGeneratorFunction=function(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===u||"GeneratorFunction"===(t.displayName||t.name))},e.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,h):(e.__proto__=h,a(e,l,"GeneratorFunction")),e.prototype=Object.create(x),e},e.awrap=function(e){return{__await:e}},g(w.prototype),a(w.prototype,n,(function(){return this})),e.AsyncIterator=w,e.async=function(t,r,o,i,n){void 0===n&&(n=Promise);var l=new w(s(t,r,o,i),n);return e.isGeneratorFunction(r)?l:l.next().then((function(e){return e.done?e.value:l.next()}))},g(x),a(x,l,"Generator"),a(x,i,(function(){return this})),a(x,"toString",(function(){return"[object Generator]"})),e.keys=function(e){var t=[];for(var r in e)t.push(r);return t.reverse(),function r(){for(;t.length;){var o=t.pop();if(o in e)return r.value=o,r.done=!1,r}return r.done=!0,r}},e.values=_,C.prototype={constructor:C,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(y),!e)for(var t in this)"t"===t.charAt(0)&&r.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=void 0)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var t=this;function o(r,o){return l.type="throw",l.arg=e,t.next=r,o&&(t.method="next",t.arg=void 0),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var n=this.tryEntries[i],l=n.completion;if("root"===n.tryLoc)return o("end");if(n.tryLoc<=this.prev){var a=r.call(n,"catchLoc"),s=r.call(n,"finallyLoc");if(a&&s){if(this.prev<n.catchLoc)return o(n.catchLoc,!0);if(this.prev<n.finallyLoc)return o(n.finallyLoc)}else if(a){if(this.prev<n.catchLoc)return o(n.catchLoc,!0)}else{if(!s)throw new Error("try statement without catch or finally");if(this.prev<n.finallyLoc)return o(n.finallyLoc)}}}},abrupt:function(e,t){for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o];if(i.tryLoc<=this.prev&&r.call(i,"finallyLoc")&&this.prev<i.finallyLoc){var n=i;break}}n&&("break"===e||"continue"===e)&&n.tryLoc<=t&&t<=n.finallyLoc&&(n=null);var l=n?n.completion:{};return l.type=e,l.arg=t,n?(this.method="next",this.next=n.finallyLoc,c):this.complete(l)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),c},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var r=this.tryEntries[t];if(r.finallyLoc===e)return this.complete(r.completion,r.afterLoc),y(r),c}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var r=this.tryEntries[t];if(r.tryLoc===e){var o=r.completion;if("throw"===o.type){var i=o.arg;y(r)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,r){return this.delegate={iterator:_(e),resultName:t,nextLoc:r},"next"===this.method&&(this.arg=void 0),c}},e}function Ft(e,t,r,o,i,n,l){try{var a=e[n](l),s=a.value}catch(e){return void r(e)}a.done?t(s):Promise.resolve(s).then(o,i)}function Wt(e){return function(){var t=this,r=arguments;return new Promise((function(o,i){var n=e.apply(t,r);function l(e){Ft(n,o,i,l,a,"next",e)}function a(e){Ft(n,o,i,l,a,"throw",e)}l(void 0)}))}}function qt(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&tr(e,t)}function Kt(e){var t=er();return function(){var r,o=rr(e);if(t){var i=rr(this).constructor;r=Reflect.construct(o,arguments,i)}else r=o.apply(this,arguments);return Zt(this,r)}}function Zt(e,t){if(t&&("object"==typeof t||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return Yt(e)}function Yt(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Xt(e){var t="function"==typeof Map?new Map:void 0;return Xt=function(e){if(null===e||(r=e,-1===Function.toString.call(r).indexOf("[native code]")))return e;var r;if("function"!=typeof e)throw new TypeError("Super expression must either be null or a function");if(void 0!==t){if(t.has(e))return t.get(e);t.set(e,o)}function o(){return Qt(e,arguments,rr(this).constructor)}return o.prototype=Object.create(e.prototype,{constructor:{value:o,enumerable:!1,writable:!0,configurable:!0}}),tr(o,e)},Xt(e)}function Qt(e,t,r){return Qt=er()?Reflect.construct.bind():function(e,t,r){var o=[null];o.push.apply(o,t);var i=new(Function.bind.apply(e,o));return r&&tr(i,r.prototype),i},Qt.apply(null,arguments)}function er(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}function tr(e,t){return tr=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},tr(e,t)}function rr(e){return rr=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},rr(e)}function or(e,t){var r="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!r){if(Array.isArray(e)||(r=ir(e))||t&&e&&"number"==typeof e.length){r&&(e=r);var o=0,i=function(){};return{s:i,n:function(){return o>=e.length?{done:!0}:{done:!1,value:e[o++]}},e:function(e){throw e},f:i}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var n,l=!0,a=!1;return{s:function(){r=r.call(e)},n:function(){var e=r.next();return l=e.done,e},e:function(e){a=!0,n=e},f:function(){try{l||null==r.return||r.return()}finally{if(a)throw n}}}}function ir(e,t){if(e){if("string"==typeof e)return nr(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?nr(e,t):void 0}}function nr(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=new Array(t);r<t;r++)o[r]=e[r];return o}function lr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ar(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function sr(e,t,r){return t&&ar(e.prototype,t),r&&ar(e,r),Object.defineProperty(e,"prototype",{writable:!1}),e}function dr(e){return dr="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},dr(e)
|
|
2
|
+
/*! *****************************************************************************
|
|
3
|
+
Copyright (c) Microsoft Corporation.
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted.
|
|
7
|
+
|
|
8
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
9
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
10
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
11
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
12
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
13
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
14
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
15
|
+
***************************************************************************** */}function cr(e,t,r,o){var i,n=arguments.length,l=n<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,r):o;if("object"===("undefined"==typeof Reflect?"undefined":dr(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,r,o);else for(var a=e.length-1;a>=0;a--)(i=e[a])&&(l=(n<3?i(l):n>3?i(t,r,l):i(t,r))||l);return n>3&&l&&Object.defineProperty(t,r,l),l
|
|
16
|
+
/**
|
|
17
|
+
* @license
|
|
18
|
+
* Copyright 2019 Google LLC
|
|
19
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
20
|
+
*/}function fr(e,t){var r,o,i,n,l=arguments.length>2&&void 0!==arguments[2]?arguments[2]:e,a=arguments.length>3?arguments[3]:void 0;if(t===Ne)return t;var s=void 0!==a?null===(r=l._$Co)||void 0===r?void 0:r[a]:l._$Cl,d=Ae(t)?void 0:t._$litDirective$;return(null==s?void 0:s.constructor)!==d&&(null===(o=null==s?void 0:s._$AO)||void 0===o||o.call(s,!1),void 0===d?s=void 0:(s=new d(e))._$AT(e,l,a),void 0!==a?(null!==(i=(n=l)._$Co)&&void 0!==i?i:n._$Co=[])[a]=s:l._$Cl=s),void 0!==s&&(t=fr(e,s._$AS(e,t.values),s,a)),t}function ur(e){return function(t,r){return void 0!==r?function(e,t,r){t.constructor.createProperty(r,e)}(e,t,r):it(e,t)}}
|
|
21
|
+
/**
|
|
22
|
+
* @license
|
|
23
|
+
* Copyright 2017 Google LLC
|
|
24
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
25
|
+
*/function hr(e){return ur(It(It({},e),{},{state:!0}))}
|
|
26
|
+
/**
|
|
27
|
+
* @license
|
|
28
|
+
* Copyright 2021 Google LLC
|
|
29
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
30
|
+
*/function pr(){}function br(){return"undefined"!=typeof WeakMap?new WeakMap:{add:pr,delete:pr,get:pr,set:pr,has:function(e){return!1}}}function mr(e,t){for(var r in t)st(t,r)&&(e[r]=t[r]);return e}function xr(e,t,r){var o=0,i=e[0].match(ut);i&&(o=i[1].length);var n=new RegExp("(\\r\\n|\\r|\\n).{0,"+o+"}","g");t&&(e=e.slice(1));var l=r.newline,a=r.trimLeadingNewline,s=r.trimTrailingNewline,d="string"==typeof l,c=e.length,f=e.map((function(e,t){return e=e.replace(n,"$1"),0===t&&a&&(e=e.replace(dt,"")),t===c-1&&s&&(e=e.replace(ct,"")),d&&(e=e.replace(/\r\n|\n|\r/g,(function(e){return l}))),e}));return f}function gr(e,t){for(var r="",o=0,i=e.length;o<i;o++)r+=e[o],o<i-1&&(r+=t[o]);return r}function wr(e){return st(e,"raw")&&st(e,"length")}function vr(e){var t=br(),r=br();var o=mr((function o(i){for(var n=[],l=1;l<arguments.length;l++)n[l-1]=arguments[l];if(wr(i)){var a=i,s=(n[0]===o||n[0]===pt)&&ht.test(a[0])&&ft.test(a[1]),d=s?r:t,c=d.get(a);if(c||(c=xr(a,s,e),d.set(a,c)),0===n.length)return c[0];var f=gr(c,s?n.slice(1):n);return f}return vr(mr(mr({},e),i||{}))}),{string:function(t){return xr([t],!1,e)[0]}});return o}return{setters:[],execute:function(){if(X=window,Q=X.ShadowRoot&&(void 0===X.ShadyCSS||X.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,ee=Symbol(),te=new WeakMap,re=function(){function e(t,r,o){if(lr(this,e),this._$cssResult$=!0,o!==ee)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=t,this.t=r}return sr(e,[{key:"styleSheet",get:function(){var e=this.o,t=this.t;if(Q&&void 0===e){var r=void 0!==t&&1===t.length;r&&(e=te.get(t)),void 0===e&&((this.o=e=new CSSStyleSheet).replaceSync(this.cssText),r&&te.set(t,e))}return e}},{key:"toString",value:function(){return this.cssText}}]),e}(),oe=function(e){return new re("string"==typeof e?e:e+"",void 0,ee)},ie=function(e){for(var t=arguments.length,r=new Array(t>1?t-1:0),o=1;o<t;o++)r[o-1]=arguments[o];var i=1===e.length?e[0]:r.reduce((function(t,r,o){return t+function(e){if(!0===e._$cssResult$)return e.cssText;if("number"==typeof e)return e;throw Error("Value passed to 'css' function must be a 'css' function result: "+e+". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.")}(r)+e[o+1]}),e[0]);return new re(i,e,ee)},ne=function(e,t){Q?e.adoptedStyleSheets=t.map((function(e){return e instanceof CSSStyleSheet?e:e.styleSheet})):t.forEach((function(t){var r=document.createElement("style"),o=X.litNonce;void 0!==o&&r.setAttribute("nonce",o),r.textContent=t.cssText,e.appendChild(r)}))},le=Q?function(e){return e}:function(e){return e instanceof CSSStyleSheet?function(e){var t,r="",o=or(e.cssRules);try{for(o.s();!(t=o.n()).done;){r+=t.value.cssText}}catch(e){o.e(e)}finally{o.f()}return oe(r)}(e):e},
|
|
31
|
+
/**
|
|
32
|
+
* @license
|
|
33
|
+
* Copyright 2017 Google LLC
|
|
34
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
35
|
+
*/
|
|
36
|
+
se=window,de=se.trustedTypes,ce=de?de.emptyScript:"",fe=se.reactiveElementPolyfillSupport,ue={toAttribute:function(e,t){switch(t){case Boolean:e=e?ce:null;break;case Object:case Array:e=null==e?e:JSON.stringify(e)}return e},fromAttribute:function(e,t){var r=e;switch(t){case Boolean:r=null!==e;break;case Number:r=null===e?null:Number(e);break;case Object:case Array:try{r=JSON.parse(e)}catch(e){r=null}}return r}},he=function(e,t){return t!==e&&(t==t||e==e)},pe={attribute:!0,type:String,converter:ue,reflect:!1,hasChanged:he},be=function(e){qt(o,e);var t,r=Kt(o);function o(){var e;return lr(this,o),(e=r.call(this))._$Ei=new Map,e.isUpdatePending=!1,e.hasUpdated=!1,e._$El=null,e.u(),e}return sr(o,[{key:"u",value:function(){var e,t=this;this._$E_=new Promise((function(e){return t.enableUpdating=e})),this._$AL=new Map,this._$Eg(),this.requestUpdate(),null===(e=this.constructor.h)||void 0===e||e.forEach((function(e){return e(t)}))}},{key:"addController",value:function(e){var t,r;(null!==(t=this._$ES)&&void 0!==t?t:this._$ES=[]).push(e),void 0!==this.renderRoot&&this.isConnected&&(null===(r=e.hostConnected)||void 0===r||r.call(e))}},{key:"removeController",value:function(e){var t;null===(t=this._$ES)||void 0===t||t.splice(this._$ES.indexOf(e)>>>0,1)}},{key:"_$Eg",value:function(){var e=this;this.constructor.elementProperties.forEach((function(t,r){e.hasOwnProperty(r)&&(e._$Ei.set(r,e[r]),delete e[r])}))}},{key:"createRenderRoot",value:function(){var e,t=null!==(e=this.shadowRoot)&&void 0!==e?e:this.attachShadow(this.constructor.shadowRootOptions);return ne(t,this.constructor.elementStyles),t}},{key:"connectedCallback",value:function(){var e;void 0===this.renderRoot&&(this.renderRoot=this.createRenderRoot()),this.enableUpdating(!0),null===(e=this._$ES)||void 0===e||e.forEach((function(e){var t;return null===(t=e.hostConnected)||void 0===t?void 0:t.call(e)}))}},{key:"enableUpdating",value:function(e){}},{key:"disconnectedCallback",value:function(){var e;null===(e=this._$ES)||void 0===e||e.forEach((function(e){var t;return null===(t=e.hostDisconnected)||void 0===t?void 0:t.call(e)}))}},{key:"attributeChangedCallback",value:function(e,t,r){this._$AK(e,r)}},{key:"_$EO",value:function(e,t){var r,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:pe,i=this.constructor._$Ep(e,o);if(void 0!==i&&!0===o.reflect){var n=(void 0!==(null===(r=o.converter)||void 0===r?void 0:r.toAttribute)?o.converter:ue).toAttribute(t,o.type);this._$El=e,null==n?this.removeAttribute(i):this.setAttribute(i,n),this._$El=null}}},{key:"_$AK",value:function(e,t){var r,o=this.constructor,i=o._$Ev.get(e);if(void 0!==i&&this._$El!==i){var n=o.getPropertyOptions(i),l="function"==typeof n.converter?{fromAttribute:n.converter}:void 0!==(null===(r=n.converter)||void 0===r?void 0:r.fromAttribute)?n.converter:ue;this._$El=i,this[i]=l.fromAttribute(t,n.type),this._$El=null}}},{key:"requestUpdate",value:function(e,t,r){var o=!0;void 0!==e&&(((r=r||this.constructor.getPropertyOptions(e)).hasChanged||he)(this[e],t)?(this._$AL.has(e)||this._$AL.set(e,t),!0===r.reflect&&this._$El!==e&&(void 0===this._$EC&&(this._$EC=new Map),this._$EC.set(e,r))):o=!1),!this.isUpdatePending&&o&&(this._$E_=this._$Ej())}},{key:"_$Ej",value:(t=Wt(Vt().mark((function e(){var t;return Vt().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return this.isUpdatePending=!0,e.prev=1,e.next=4,this._$E_;case 4:e.next=9;break;case 6:e.prev=6,e.t0=e.catch(1),Promise.reject(e.t0);case 9:if(t=this.scheduleUpdate(),e.t1=null!=t,!e.t1){e.next=14;break}return e.next=14,t;case 14:return e.abrupt("return",!this.isUpdatePending);case 15:case"end":return e.stop()}}),e,this,[[1,6]])}))),function(){return t.apply(this,arguments)})},{key:"scheduleUpdate",value:function(){return this.performUpdate()}},{key:"performUpdate",value:function(){var e,t=this;if(this.isUpdatePending){this.hasUpdated,this._$Ei&&(this._$Ei.forEach((function(e,r){return t[r]=e})),this._$Ei=void 0);var r=!1,o=this._$AL;try{(r=this.shouldUpdate(o))?(this.willUpdate(o),null===(e=this._$ES)||void 0===e||e.forEach((function(e){var t;return null===(t=e.hostUpdate)||void 0===t?void 0:t.call(e)})),this.update(o)):this._$Ek()}catch(e){throw r=!1,this._$Ek(),e}r&&this._$AE(o)}}},{key:"willUpdate",value:function(e){}},{key:"_$AE",value:function(e){var t;null===(t=this._$ES)||void 0===t||t.forEach((function(e){var t;return null===(t=e.hostUpdated)||void 0===t?void 0:t.call(e)})),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(e)),this.updated(e)}},{key:"_$Ek",value:function(){this._$AL=new Map,this.isUpdatePending=!1}},{key:"updateComplete",get:function(){return this.getUpdateComplete()}},{key:"getUpdateComplete",value:function(){return this._$E_}},{key:"shouldUpdate",value:function(e){return!0}},{key:"update",value:function(e){var t=this;void 0!==this._$EC&&(this._$EC.forEach((function(e,r){return t._$EO(r,t[r],e)})),this._$EC=void 0),this._$Ek()}},{key:"updated",value:function(e){}},{key:"firstUpdated",value:function(e){}}],[{key:"addInitializer",value:function(e){var t;null!==(t=this.h)&&void 0!==t||(this.h=[]),this.h.push(e)}},{key:"observedAttributes",get:function(){var e=this;this.finalize();var t=[];return this.elementProperties.forEach((function(r,o){var i=e._$Ep(o,r);void 0!==i&&(e._$Ev.set(i,o),t.push(i))})),t}},{key:"createProperty",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:pe;if(t.state&&(t.attribute=!1),this.finalize(),this.elementProperties.set(e,t),!t.noAccessor&&!this.prototype.hasOwnProperty(e)){var r="symbol"==dr(e)?Symbol():"__"+e,o=this.getPropertyDescriptor(e,r,t);void 0!==o&&Object.defineProperty(this.prototype,e,o)}}},{key:"getPropertyDescriptor",value:function(e,t,r){return{get:function(){return this[t]},set:function(o){var i=this[e];this[t]=o,this.requestUpdate(e,i,r)},configurable:!0,enumerable:!0}}},{key:"getPropertyOptions",value:function(e){return this.elementProperties.get(e)||pe}},{key:"finalize",value:function(){if(this.hasOwnProperty("finalized"))return!1;this.finalized=!0;var e=Object.getPrototypeOf(this);if(e.finalize(),this.elementProperties=new Map(e.elementProperties),this._$Ev=new Map,this.hasOwnProperty("properties")){var t,r=this.properties,o=or([].concat(Jt(Object.getOwnPropertyNames(r)),Jt(Object.getOwnPropertySymbols(r))));try{for(o.s();!(t=o.n()).done;){var i=t.value;this.createProperty(i,r[i])}}catch(e){o.e(e)}finally{o.f()}}return this.elementStyles=this.finalizeStyles(this.styles),!0}},{key:"finalizeStyles",value:function(e){var t=[];if(Array.isArray(e)){var r,o=or(new Set(e.flat(1/0).reverse()));try{for(o.s();!(r=o.n()).done;){var i=r.value;t.unshift(le(i))}}catch(e){o.e(e)}finally{o.f()}}else void 0!==e&&t.push(le(e));return t}},{key:"_$Ep",value:function(e,t){var r=t.attribute;return!1===r?void 0:"string"==typeof r?r:"string"==typeof e?e.toLowerCase():void 0}}]),o}(Xt(HTMLElement)),be.finalized=!0,be.elementProperties=new Map,be.elementStyles=[],be.shadowRootOptions={mode:"open"},null==fe||fe({ReactiveElement:be}),(null!==(ae=se.reactiveElementVersions)&&void 0!==ae?ae:se.reactiveElementVersions=[]).push("1.4.1"),
|
|
37
|
+
/**
|
|
38
|
+
* @license
|
|
39
|
+
* Copyright 2017 Google LLC
|
|
40
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
41
|
+
*/
|
|
42
|
+
xe=window,ge=xe.trustedTypes,we=ge?ge.createPolicy("lit-html",{createHTML:function(e){return e}}):void 0,ve="lit$".concat((Math.random()+"").slice(9),"$"),ye="<".concat(ke="?"+ve,">"),Ce=document,_e=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return Ce.createComment(e)},Ae=function(e){return null===e||"object"!=dr(e)&&"function"!=typeof e},$e=Array.isArray,Se=function(e){return $e(e)||"function"==typeof(null==e?void 0:e[Symbol.iterator])},Ee=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,je=/-->/g,Oe=/>/g,Pe=RegExp(">|[ \t\n\f\r](?:([^\\s\"'>=/]+)([ \t\n\f\r]*=[ \t\n\f\r]*(?:[^ \t\n\f\r\"'`<>=]|(\"|')|))|$)","g"),Le=/'/g,Me=/"/g,Te=/^(?:script|style|textarea|title)$/i,ze=function(e){return function(t){for(var r=arguments.length,o=new Array(r>1?r-1:0),i=1;i<r;i++)o[i-1]=arguments[i];return{_$litType$:e,strings:t,values:o}}},Re=ze(1),Ne=Symbol.for("lit-noChange"),Ue=Symbol.for("lit-nothing"),Ie=new WeakMap,De=Ce.createTreeWalker(Ce,129,null,!1),He=function(e,t){for(var r,o=e.length-1,i=[],n=2===t?"<svg>":"",l=Ee,a=0;a<o;a++){for(var s=e[a],d=void 0,c=void 0,f=-1,u=0;u<s.length&&(l.lastIndex=u,null!==(c=l.exec(s)));)u=l.lastIndex,l===Ee?"!--"===c[1]?l=je:void 0!==c[1]?l=Oe:void 0!==c[2]?(Te.test(c[2])&&(r=RegExp("</"+c[2],"g")),l=Pe):void 0!==c[3]&&(l=Pe):l===Pe?">"===c[0]?(l=null!=r?r:Ee,f=-1):void 0===c[1]?f=-2:(f=l.lastIndex-c[2].length,d=c[1],l=void 0===c[3]?Pe:'"'===c[3]?Me:Le):l===Me||l===Le?l=Pe:l===je||l===Oe?l=Ee:(l=Pe,r=void 0);var h=l===Pe&&e[a+1].startsWith("/>")?" ":"";n+=l===Ee?s+ye:f>=0?(i.push(d),s.slice(0,f)+"$lit$"+s.slice(f)+ve+h):s+ve+(-2===f?(i.push(void 0),a):h)}var p=n+(e[o]||"<?>")+(2===t?"</svg>":"");if(!Array.isArray(e)||!e.hasOwnProperty("raw"))throw Error("invalid template strings array");return[void 0!==we?we.createHTML(p):p,i]},Be=function(){function e(t,r){var o,i=t.strings,n=t._$litType$;lr(this,e),this.parts=[];var l=0,a=0,s=i.length-1,d=this.parts,c=Gt(He(i,n),2),f=c[0],u=c[1];if(this.el=e.createElement(f,r),De.currentNode=this.el.content,2===n){var h=this.el.content,p=h.firstChild;p.remove(),h.append.apply(h,Jt(p.childNodes))}for(;null!==(o=De.nextNode())&&d.length<s;){if(1===o.nodeType){if(o.hasAttributes()){var b,m=[],x=or(o.getAttributeNames());try{for(x.s();!(b=x.n()).done;){var g=b.value;if(g.endsWith("$lit$")||g.startsWith(ve)){var w=u[a++];if(m.push(g),void 0!==w){var v=o.getAttribute(w.toLowerCase()+"$lit$").split(ve),k=/([.?@])?(.*)/.exec(w);d.push({type:1,index:l,name:k[2],strings:v,ctor:"."===k[1]?Fe:"?"===k[1]?qe:"@"===k[1]?Ke:Ve})}else d.push({type:6,index:l})}}}catch(e){x.e(e)}finally{x.f()}for(var y=0,C=m;y<C.length;y++){var _=C[y];o.removeAttribute(_)}}if(Te.test(o.tagName)){var A=o.textContent.split(ve),$=A.length-1;if($>0){o.textContent=ge?ge.emptyScript:"";for(var S=0;S<$;S++)o.append(A[S],_e()),De.nextNode(),d.push({type:2,index:++l});o.append(A[$],_e())}}}else if(8===o.nodeType)if(o.data===ke)d.push({type:2,index:l});else for(var E=-1;-1!==(E=o.data.indexOf(ve,E+1));)d.push({type:7,index:l}),E+=ve.length-1;l++}}return sr(e,null,[{key:"createElement",value:function(e,t){var r=Ce.createElement("template");return r.innerHTML=e,r}}]),e}(),Ge=function(){function e(t,r){lr(this,e),this.u=[],this._$AN=void 0,this._$AD=t,this._$AM=r}return sr(e,[{key:"parentNode",get:function(){return this._$AM.parentNode}},{key:"_$AU",get:function(){return this._$AM._$AU}},{key:"v",value:function(e){var t,r=this._$AD,o=r.el.content,i=r.parts,n=(null!==(t=null==e?void 0:e.creationScope)&&void 0!==t?t:Ce).importNode(o,!0);De.currentNode=n;for(var l=De.nextNode(),a=0,s=0,d=i[0];void 0!==d;){if(a===d.index){var c=void 0;2===d.type?c=new Je(l,l.nextSibling,this,e):1===d.type?c=new d.ctor(l,d.name,d.strings,this,e):6===d.type&&(c=new Ze(l,this,e)),this.u.push(c),d=i[++s]}a!==(null==d?void 0:d.index)&&(l=De.nextNode(),a++)}return n}},{key:"p",value:function(e){var t,r=0,o=or(this.u);try{for(o.s();!(t=o.n()).done;){var i=t.value;void 0!==i&&(void 0!==i.strings?(i._$AI(e,i,r),r+=i.strings.length-2):i._$AI(e[r])),r++}}catch(e){o.e(e)}finally{o.f()}}}]),e}(),Je=function(){function e(t,r,o,i){var n;lr(this,e),this.type=2,this._$AH=Ue,this._$AN=void 0,this._$AA=t,this._$AB=r,this._$AM=o,this.options=i,this._$Cm=null===(n=null==i?void 0:i.isConnected)||void 0===n||n}return sr(e,[{key:"_$AU",get:function(){var e,t;return null!==(t=null===(e=this._$AM)||void 0===e?void 0:e._$AU)&&void 0!==t?t:this._$Cm}},{key:"parentNode",get:function(){var e=this._$AA.parentNode,t=this._$AM;return void 0!==t&&11===e.nodeType&&(e=t.parentNode),e}},{key:"startNode",get:function(){return this._$AA}},{key:"endNode",get:function(){return this._$AB}},{key:"_$AI",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this;e=fr(this,e,t),Ae(e)?e===Ue||null==e||""===e?(this._$AH!==Ue&&this._$AR(),this._$AH=Ue):e!==this._$AH&&e!==Ne&&this.g(e):void 0!==e._$litType$?this.$(e):void 0!==e.nodeType?this.T(e):Se(e)?this.k(e):this.g(e)}},{key:"O",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this._$AB;return this._$AA.parentNode.insertBefore(e,t)}},{key:"T",value:function(e){this._$AH!==e&&(this._$AR(),this._$AH=this.O(e))}},{key:"g",value:function(e){this._$AH!==Ue&&Ae(this._$AH)?this._$AA.nextSibling.data=e:this.T(Ce.createTextNode(e)),this._$AH=e}},{key:"$",value:function(e){var t,r=e.values,o=e._$litType$,i="number"==typeof o?this._$AC(e):(void 0===o.el&&(o.el=Be.createElement(o.h,this.options)),o);if((null===(t=this._$AH)||void 0===t?void 0:t._$AD)===i)this._$AH.p(r);else{var n=new Ge(i,this),l=n.v(this.options);n.p(r),this.T(l),this._$AH=n}}},{key:"_$AC",value:function(e){var t=Ie.get(e.strings);return void 0===t&&Ie.set(e.strings,t=new Be(e)),t}},{key:"k",value:function(t){$e(this._$AH)||(this._$AH=[],this._$AR());var r,o,i=this._$AH,n=0,l=or(t);try{for(l.s();!(o=l.n()).done;){var a=o.value;n===i.length?i.push(r=new e(this.O(_e()),this.O(_e()),this,this.options)):r=i[n],r._$AI(a),n++}}catch(e){l.e(e)}finally{l.f()}n<i.length&&(this._$AR(r&&r._$AB.nextSibling,n),i.length=n)}},{key:"_$AR",value:function(){var e,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this._$AA.nextSibling,r=arguments.length>1?arguments[1]:void 0;for(null===(e=this._$AP)||void 0===e||e.call(this,!1,!0,r);t&&t!==this._$AB;){var o=t.nextSibling;t.remove(),t=o}}},{key:"setConnected",value:function(e){var t;void 0===this._$AM&&(this._$Cm=e,null===(t=this._$AP)||void 0===t||t.call(this,e))}}]),e}(),Ve=function(){function e(t,r,o,i,n){lr(this,e),this.type=1,this._$AH=Ue,this._$AN=void 0,this.element=t,this.name=r,this._$AM=i,this.options=n,o.length>2||""!==o[0]||""!==o[1]?(this._$AH=Array(o.length-1).fill(new String),this.strings=o):this._$AH=Ue}return sr(e,[{key:"tagName",get:function(){return this.element.tagName}},{key:"_$AU",get:function(){return this._$AM._$AU}},{key:"_$AI",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this,r=arguments.length>2?arguments[2]:void 0,o=arguments.length>3?arguments[3]:void 0,i=this.strings,n=!1;if(void 0===i)e=fr(this,e,t,0),(n=!Ae(e)||e!==this._$AH&&e!==Ne)&&(this._$AH=e);else{var l,a,s=e;for(e=i[0],l=0;l<i.length-1;l++)(a=fr(this,s[r+l],t,l))===Ne&&(a=this._$AH[l]),n||(n=!Ae(a)||a!==this._$AH[l]),a===Ue?e=Ue:e!==Ue&&(e+=(null!=a?a:"")+i[l+1]),this._$AH[l]=a}n&&!o&&this.j(e)}},{key:"j",value:function(e){e===Ue?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,null!=e?e:"")}}]),e}(),Fe=function(e){qt(r,e);var t=Kt(r);function r(){var e;return lr(this,r),(e=t.apply(this,arguments)).type=3,e}return sr(r,[{key:"j",value:function(e){this.element[this.name]=e===Ue?void 0:e}}]),r}(Ve),We=ge?ge.emptyScript:"",qe=function(e){qt(r,e);var t=Kt(r);function r(){var e;return lr(this,r),(e=t.apply(this,arguments)).type=4,e}return sr(r,[{key:"j",value:function(e){e&&e!==Ue?this.element.setAttribute(this.name,We):this.element.removeAttribute(this.name)}}]),r}(Ve),Ke=function(e){qt(r,e);var t=Kt(r);function r(e,o,i,n,l){var a;return lr(this,r),(a=t.call(this,e,o,i,n,l)).type=5,a}return sr(r,[{key:"_$AI",value:function(e){var t,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this;if((e=null!==(t=fr(this,e,r,0))&&void 0!==t?t:Ue)!==Ne){var o=this._$AH,i=e===Ue&&o!==Ue||e.capture!==o.capture||e.once!==o.once||e.passive!==o.passive,n=e!==Ue&&(o===Ue||i);i&&this.element.removeEventListener(this.name,this,o),n&&this.element.addEventListener(this.name,this,e),this._$AH=e}}},{key:"handleEvent",value:function(e){var t,r;"function"==typeof this._$AH?this._$AH.call(null!==(r=null===(t=this.options)||void 0===t?void 0:t.host)&&void 0!==r?r:this.element,e):this._$AH.handleEvent(e)}}]),r}(Ve),Ze=function(){function e(t,r,o){lr(this,e),this.element=t,this.type=6,this._$AN=void 0,this._$AM=r,this.options=o}return sr(e,[{key:"_$AU",get:function(){return this._$AM._$AU}},{key:"_$AI",value:function(e){fr(this,e)}}]),e}(),null==(Ye=xe.litHtmlPolyfillSupport)||Ye(Be,Je),(null!==(me=xe.litHtmlVersions)&&void 0!==me?me:xe.litHtmlVersions=[]).push("2.4.0"),Xe=function(e,t,r){var o,i,n=null!==(o=null==r?void 0:r.renderBefore)&&void 0!==o?o:t,l=n._$litPart$;if(void 0===l){var a=null!==(i=null==r?void 0:r.renderBefore)&&void 0!==i?i:null;n._$litPart$=l=new Je(t.insertBefore(_e(),a),a,void 0,null!=r?r:{})}return l._$AI(e),l},
|
|
43
|
+
/**
|
|
44
|
+
* @license
|
|
45
|
+
* Copyright 2017 Google LLC
|
|
46
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
47
|
+
*/
|
|
48
|
+
tt=function(e){qt(r,e);var t=Kt(r);function r(){var e;return lr(this,r),(e=t.apply(this,arguments)).renderOptions={host:Yt(e)},e._$Do=void 0,e}return sr(r,[{key:"createRenderRoot",value:function(){var e,t,o=Ht(rr(r.prototype),"createRenderRoot",this).call(this);return null!==(e=(t=this.renderOptions).renderBefore)&&void 0!==e||(t.renderBefore=o.firstChild),o}},{key:"update",value:function(e){var t=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),Ht(rr(r.prototype),"update",this).call(this,e),this._$Do=Xe(t,this.renderRoot,this.renderOptions)}},{key:"connectedCallback",value:function(){var e;Ht(rr(r.prototype),"connectedCallback",this).call(this),null===(e=this._$Do)||void 0===e||e.setConnected(!0)}},{key:"disconnectedCallback",value:function(){var e;Ht(rr(r.prototype),"disconnectedCallback",this).call(this),null===(e=this._$Do)||void 0===e||e.setConnected(!1)}},{key:"render",value:function(){return Ne}}]),r}(be),tt.finalized=!0,tt._$litElement$=!0,null===(Qe=globalThis.litElementHydrateSupport)||void 0===Qe||Qe.call(globalThis,{LitElement:tt}),null==(rt=globalThis.litElementPolyfillSupport)||rt({LitElement:tt}),(null!==(et=globalThis.litElementVersions)&&void 0!==et?et:globalThis.litElementVersions=[]).push("3.2.2"),
|
|
49
|
+
/**
|
|
50
|
+
* @license
|
|
51
|
+
* Copyright 2017 Google LLC
|
|
52
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
53
|
+
*/
|
|
54
|
+
ot=function(e){return function(t){return"function"==typeof t?function(e,t){return customElements.define(e,t),t}(e,t):function(e,t){return{kind:t.kind,elements:t.elements,finisher:function(t){customElements.define(e,t)}}}(e,t)}},
|
|
55
|
+
/**
|
|
56
|
+
* @license
|
|
57
|
+
* Copyright 2017 Google LLC
|
|
58
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
59
|
+
*/
|
|
60
|
+
it=function(e,t){return"method"===t.kind&&t.descriptor&&!("value"in t.descriptor)?It(It({},t),{},{finisher:function(r){r.createProperty(t.key,e)}}):{kind:"field",key:Symbol(),placement:"own",descriptor:{},originalKey:t.key,initializer:function(){"function"==typeof t.initializer&&(this[t.key]=t.initializer.call(this))},finisher:function(r){r.createProperty(t.key,e)}}},null===(nt=window.HTMLSlotElement)||void 0===nt||nt.prototype.assignedElements,lt=ie(r||(r=Nt(["a{display:inline-block;vertical-align:middle;text-decoration:none;background-color:transparent;text-decoration-thickness:2px;text-decoration-skip:none;text-underline-offset:2px}a:link{color:var(--jio-a-color,#007bff)}a:visited{color:var(--jio-a-color,#007bff)}a:hover{color:var(--jio-a-color,#007bff)}a:active{color:var(--jio-a-color,#007bff)}ion-icon{color:#000;width:22px;height:22px;vertical-align:middle}"]))),at=Object.prototype.hasOwnProperty,st=function(e,t){return at.call(e,t)},dt=/^[ \t]*(?:\r\n|\r|\n)/,ct=/(?:\r\n|\r|\n)[ \t]*$/,ft=/^(?:[\r\n]|$)/,ut=/(?:\r\n|\r|\n)([ \t]*)(?:[^ \t\r\n]|$)/,ht=/^[ \t]*[\r\n][ \t\r\n]*$/,pt=vr({trimLeadingNewline:!0,trimTrailingNewline:!0}),"undefined"!=typeof module)try{module.exports=pt,Object.defineProperty(pt,"__esModule",{value:!0}),pt.default=pt,pt.outdent=pt}catch(e){}bt=function(e){qt(r,e);var t=Kt(r);function r(){var e;return lr(this,r),(e=t.apply(this,arguments)).pageTitle="",e.url="",e.sourcePath="",e.githubRepo="",e}return sr(r,[{key:"render",value:function(){var e;if(!this.githubRepo)return null;var t="undefined"!=typeof document?document:{title:"Unknown"},r="undefined"!=typeof location?location:{href:"http://unknown"},n=this.url||r.href,l=this.pageTitle||t.title||n,a=new URLSearchParams;a.append("labels","bug"),a.append("template","4-bug.md"),a.append("title","".concat(l," page - TODO: Put a summary here")),a.append("body",pt(o||(o=Nt(["\n ","\n\n TODO: Describe the expected and actual behavior here\n\n # Screenshots\n\n TODO: Add screenshots if possible\n\n # Possible Solution\n\n \x3c!-- If you have suggestions on a fix for the bug, please describe it here. --\x3e\n\n N/A"])),["Problem with the [".concat(l,"](").concat(n,") page"),null!==(e=this.sourcePath)&&void 0!==e?e:"[source file](https://github.com/".concat(this.githubRepo,"/tree/master/src/").concat(this.sourcePath,")")].filter(Boolean).join(", ")));var s="https://github.com/".concat(this.githubRepo,"/issues/new?").concat(a.toString());return Re(i||(i=Nt(['<a href="','" title="','"><ion-icon class="report" name="warning"></ion-icon><span class="text">Report a problem</span></a>'])),s,"Report a problem with ".concat(this.sourcePath||n))}}]),r}(tt),bt.styles=[lt,ie(n||(n=Nt(["ion-icon{color:#ffa91b}"])))],cr([ur()],bt.prototype,"pageTitle",void 0),cr([ur()],bt.prototype,"url",void 0),cr([ur()],bt.prototype,"sourcePath",void 0),cr([ur()],bt.prototype,"githubRepo",void 0),bt=cr([ot("jio-report-a-problem")],bt),mt=function(e){qt(r,e);var t=Kt(r);function r(){var e;return lr(this,r),(e=t.apply(this,arguments)).sourcePath="",e.githubRepo="",e}return sr(r,[{key:"render",value:function(){return this.sourcePath&&this.githubRepo?Re(l||(l=Nt(['<a href="','" title="','"><ion-icon name="logo-github"></ion-icon><span class="text">Improve this page</span></a>'])),"https://github.com/".concat(this.githubRepo,"/edit/main/").concat(this.sourcePath),"Edit ".concat(this.sourcePath," on GitHub")):null}}]),r}(tt),mt.styles=[lt,ie(a||(a=Nt(["ion-icon{color:#000}"])))],cr([ur()],mt.prototype,"sourcePath",void 0),cr([ur()],mt.prototype,"githubRepo",void 0),mt=cr([ot("jio-improve-this-page")],mt),xt=function(e){qt(r,e);var t=Kt(r);function r(){var e;return lr(this,r),(e=t.apply(this,arguments)).mode="sunny",e.count=0,e}return sr(r,[{key:"render",value:function(){var e=this.mode||"sunny";return Re(s||(s=Nt(["<span>",' <span class="','"><jio-weather-icon weather="','" title="','"></jio-weather-icon></span></span>'])),this.count,0===this.count?"light":"",e,{sunny:"No major issues with this release",cloudy:"I experienced notable issues",storm:"I had to roll back"}[e])}}]),r}(tt),xt.styles=ie(d||(d=Nt([".light{opacity:.5}"]))),cr([ur({type:String})],xt.prototype,"mode",void 0),cr([ur({type:Number})],xt.prototype,"count",void 0),xt=cr([ot("jio-changelog-weather-icon")],xt),gt=function(e){qt(o,e);var t,r=Kt(o);function o(){var e;return lr(this,o),(e=r.apply(this,arguments)).good=0,e.nolike=0,e.rollback=0,e.ratings=[],e.version="",e}return sr(o,[{key:"render",value:function(){for(var e={},t=0;t<this.ratings.length;t+=2)e[this.ratings[t].toString()]=this.ratings[t+1];var r=Re(c||(c=Nt([""])));if(Object.keys(e).length>0){var o=Object.keys(e).map((function(t){return Re(f||(f=Nt(["<span>",'<a href="','">JENKINS-',"</a></span>"])),"".concat(e[t],"×"),"https://issues.jenkins.io/browse/JENKINS-".concat(t),t)}));r=Re(u||(u=Nt(['<span class="related-issues">Community reported issues: ',"</span>"])),o)}return Re(h||(h=Nt(['<div><span tabindex="0" role="button" data-direction="good" @click="','"><jio-changelog-weather-icon count="','" mode="sunny"></jio-changelog-weather-icon></span><span tabindex="0" role="button" data-direction="nolike" @click="','"><jio-changelog-weather-icon count="','" mode="cloudy"></jio-changelog-weather-icon></span><span tabindex="0" role="button" data-direction="rollback" @click="','"><jio-changelog-weather-icon count="','" mode="storm"></jio-changelog-weather-icon></span>',"</div>"])),this._rate,this.good,this._rate,this.nolike,this._rate,this.rollback,r)}},{key:"_rate",value:(t=Wt(Vt().mark((function e(t){var r,o,i,n;return Vt().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(r=t.currentTarget.dataset){e.next=3;break}return e.abrupt("return");case 3:if("direction"in r){e.next=5;break}return e.abrupt("return");case 5:if(t.preventDefault(),t.stopPropagation(),o=r.direction,!["nolike","rollback"].includes(o)){e.next=17;break}if(null!==(i=this._prompt("Please provide issue number from our JIRA causing trouble:",""))){e.next=13;break}return this.dispatchEvent(new CustomEvent("changelog-ratings-canceled",{bubbles:!0,composed:!0})),e.abrupt("return");case 13:if(i||(i=this._prompt("Are you sure you do not want to provide an issue reference? It really helps us improve Jenkins.\nEnter issue number, or leave empty to skip:","")),null!==i){e.next=17;break}return this.dispatchEvent(new CustomEvent("changelog-ratings-canceled",{bubbles:!0,composed:!0})),e.abrupt("return");case 17:n={good:1,nolike:0,rollback:-1},this.dispatchEvent(new CustomEvent("changelog-ratings-rated",{detail:{version:this.version,rating:n[o],issue:i},bubbles:!0,composed:!0}));case 19:case"end":return e.stop()}}),e,this)}))),function(e){return t.apply(this,arguments)})},{key:"_prompt",value:function(e,t){return window.prompt(e,t)}}]),o}(tt),gt.styles=ie(p||(p=Nt([".related-issues{display:block}jio-changelog-weather-icon{vertical-align:middle;margin-right:2em;width:36px;height:36px}jio-changelog-weather-icon:hover{cursor:pointer}"]))),cr([ur({type:Number})],gt.prototype,"good",void 0),cr([ur({type:Number})],gt.prototype,"nolike",void 0),cr([ur({type:Number})],gt.prototype,"rollback",void 0),cr([ur({type:Array})],gt.prototype,"ratings",void 0),cr([ur({type:String})],gt.prototype,"version",void 0),gt=cr([ot("jio-changelog-ratings")],gt),wt=function(e){qt(r,e);var t=Kt(r);function r(){var e;return lr(this,r),(e=t.apply(this,arguments)).weather="sunny",e}return sr(r,[{key:"render",value:function(){return{sunny:Re(b||(b=Nt(['<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" height="24" width="24" role="img"><title>','</title><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(1.000000, 0.000000)" fill="#0b6aa2" fill-rule="nonzero"><path d="M10.8,6 C14.1137085,6 16.8,8.6862915 16.8,12 C16.8,15.3137085 14.1137085,18 10.8,18 C7.4862915,18 4.8,15.3137085 4.8,12 C4.8,8.6862915 7.4862915,6 10.8,6 M10.8,8.4 C8.8117749,8.4 7.2,10.0117749 7.2,12 C7.2,13.9882251 8.8117749,15.6 10.8,15.6 C12.7882251,15.6 14.4,13.9882251 14.4,12 C14.4,10.0117749 12.7882251,8.4 10.8,8.4 M10.8,0 L13.668,4.104 C12.7487597,3.76983548 11.7780941,3.59925827 10.8,3.6 C9.792,3.6 8.82,3.78 7.932,4.104 L10.8,0 M0.408,6 L5.4,5.58 C4.65522041,6.20908528 4.02228249,6.95968473 3.528,7.8 C3,8.688 2.7,9.6 2.532,10.548 L0.408,6 M0.432,18 L2.544,13.476 C2.89665685,15.4110521 3.90525776,17.1655091 5.4,18.444 L0.432,18 M21.18,6 L19.056,10.548 C18.7161518,8.60491495 17.7054771,6.8426039 16.2,5.568 L21.18,6 M21.168,18 L16.2,18.432 C16.908,17.82 17.544,17.064 18.048,16.2 C18.552,15.324 18.876,14.4 19.044,13.452 L21.168,18 M10.8,24 L7.908,19.872 C8.796,20.196 9.768,20.4 10.8,20.4 C11.784,20.4 12.756,20.196 13.644,19.872 L10.8,24 Z" id="Shape"></path></g></g></svg>'])),this.title||"Sunny Weather Icon"),storm:Re(m||(m=Nt(['<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" height="24" width="24" role="img"><title>','</title><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(0.000000, 1.000000)" fill="#0b6aa2" fill-rule="nonzero"><path d="M8.72727273,11 C9.30545455,11.154 9.65454545,11.759 9.50181818,12.342 L8.08363636,17.655 C7.93090909,18.249 7.33090909,18.59 6.75272727,18.436 C6.47237636,18.365187 6.23311582,18.1814942 6.09083689,17.9278322 C5.94855796,17.6741701 5.91572218,17.372756 6,17.094 L7.39636364,11.781 C7.54909091,11.187 8.14909091,10.846 8.72727273,11 M13.0909091,11 C13.6690909,11.154 14.0181818,11.759 13.8654545,12.342 L11.6072727,20.845 C11.4545455,21.45 10.8545455,21.78 10.2654545,21.626 C9.68727273,21.45 9.33818182,20.867 9.49090909,20.273 L11.76,11.781 C11.9127273,11.187 12.5127273,10.846 13.0909091,11 M17.4545455,11 C18.0327273,11.154 18.3818182,11.759 18.2290909,12.342 L16.8109091,17.655 C16.6581818,18.249 16.0581818,18.59 15.48,18.436 C15.1996491,18.365187 14.9603886,18.1814942 14.8181096,17.9278322 C14.6758307,17.6741701 14.6429949,17.372756 14.7272727,17.094 L16.1236364,11.781 C16.2763636,11.187 16.8763636,10.846 17.4545455,11 M17.4545455,8.8 L17.4545455,7.7 C17.4545455,4.66243388 15.0124623,2.2 12,2.2 C9.27272727,2.2 7.03636364,4.202 6.61090909,6.809 C6.2404402,6.67205998 5.84912034,6.60133322 5.45454545,6.6 C3.64706809,6.6 2.18181818,8.07746033 2.18181818,9.9 C2.18181818,11.121 2.83636364,12.188 3.81818182,12.76 L3.81818182,12.749 C4.36363636,13.057 4.51636364,13.75 4.22181818,14.256 C3.91636364,14.773 3.27272727,14.96 2.72727273,14.652 L2.72727273,14.663 C1.03636399,13.6838855 -0.00447451729,11.8661304 -1.43689321e-05,9.9 C-1.43689321e-05,6.86243388 2.44208318,4.4 5.45454545,4.4 C6.54545455,1.815 9.05454545,-1.95399252e-15 12,-1.95399252e-15 C15.7418182,-1.95399252e-15 18.8072727,2.926 19.0909091,6.633 L19.6363636,6.6 C22.0463335,6.6 24,8.5699471 24,11 C24,12.65 23.1272727,14.047 21.8181818,14.806 C21.2727273,15.103 20.6290909,14.927 20.3236364,14.399 C20.0290909,13.871 20.1818182,13.2 20.7272727,12.892 L20.7272727,12.903 C21.3818182,12.529 21.8181818,11.814 21.8181818,11 C21.8181818,9.78497355 20.8413485,8.8 19.6363636,8.8 L17.4545455,8.8 L17.4545455,8.8 Z" id="Shape"></path></g></g></svg>'])),this.title||"Stormy Weather Icon"),cloudy:Re(x||(x=Nt(['<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" height="24" width="24" role="img"><title>','</title><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(0.000000, 4.000000)" fill="#0b6aa2" fill-rule="nonzero"><path d="M5.45454545,15.2727273 C4.00791006,15.2727273 2.62052508,14.6980536 1.59759938,13.6751279 C0.574673675,12.6522022 0,11.2648172 0,9.81818182 C0,6.80571955 2.44208318,4.36363636 5.45454545,4.36363636 C6.54545455,1.8 9.05454545,3.87568765e-15 12,3.87568765e-15 C15.7418182,3.87568765e-15 18.8072727,2.90181818 19.0909091,6.57818182 L19.6363636,6.54545455 C22.0463335,6.54545455 24,8.49912109 24,10.9090909 C24,13.3190607 22.0463335,15.2727273 19.6363636,15.2727273 L5.45454545,15.2727273 M19.6363636,8.72727273 L17.4545455,8.72727273 L17.4545455,7.63636364 C17.4545455,4.62390136 15.0124623,2.18181818 12,2.18181818 C9.27272727,2.18181818 7.03636364,4.16727273 6.61090909,6.75272727 C6.2404402,6.61691899 5.84912034,6.54677675 5.45454545,6.54545455 C3.64706809,6.54545455 2.18181818,8.01070446 2.18181818,9.81818182 C2.18181818,11.6256592 3.64706809,13.0909091 5.45454545,13.0909091 L19.6363636,13.0909091 C20.8413485,13.0909091 21.8181818,12.1140758 21.8181818,10.9090909 C21.8181818,9.704106 20.8413485,8.72727273 19.6363636,8.72727273 Z" id="Shape"></path></g></g></svg>'])),this.title||"Cloudy Weather Icon")}[this.weather]}}]),r}(tt),cr([ur({type:"sunny | cloudy | storm"})],wt.prototype,"weather",void 0),wt=cr([ot("jio-weather-icon")],wt),vt=ie(g||(g=Nt(["ul{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;gap:1rem;list-style-type:none;margin:0;padding:0}li{display:contents}a{--brand-color:var(--accent-color, hsl(212, 100%, 42%));--brand-color-translucent:hsla(212, 100%, 42%, 40%);display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;font-size:0;height:2.5rem;position:relative;width:2.5rem}a::before{background:var(--brand-color);border-radius:100vmax;-webkit-box-shadow:0 0 0 10px transparent;box-shadow:0 0 0 10px transparent;content:'';inset:0;opacity:.2;position:absolute;-webkit-transition:.3s ease;transition:.3s ease}a::after{background:var(--brand-color);content:'';inset:0;-webkit-mask-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M202.24 74C166.11 56.75 115.61 48.3 48 48a31.36 31.36 0 00-17.92 5.33A32 32 0 0016 79.9V366c0 19.34 13.76 33.93 32 33.93 71.07 0 142.36 6.64 185.06 47a4.11 4.11 0 006.94-3V106.82a15.89 15.89 0 00-5.46-12A143 143 0 00202.24 74zM481.92 53.3A31.33 31.33 0 00464 48c-67.61.3-118.11 8.71-154.24 26a143.31 143.31 0 00-32.31 20.78 15.93 15.93 0 00-5.45 12v337.13a3.93 3.93 0 006.68 2.81c25.67-25.5 70.72-46.82 185.36-46.81a32 32 0 0032-32v-288a32 32 0 00-14.12-26.61z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M202.24 74C166.11 56.75 115.61 48.3 48 48a31.36 31.36 0 00-17.92 5.33A32 32 0 0016 79.9V366c0 19.34 13.76 33.93 32 33.93 71.07 0 142.36 6.64 185.06 47a4.11 4.11 0 006.94-3V106.82a15.89 15.89 0 00-5.46-12A143 143 0 00202.24 74zM481.92 53.3A31.33 31.33 0 00464 48c-67.61.3-118.11 8.71-154.24 26a143.31 143.31 0 00-32.31 20.78 15.93 15.93 0 00-5.45 12v337.13a3.93 3.93 0 006.68 2.81c25.67-25.5 70.72-46.82 185.36-46.81a32 32 0 0032-32v-288a32 32 0 00-14.12-26.61z'/%3E%3C/svg%3E\");-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:50%;mask-size:50%;position:absolute}a[href*=linkedin]{--brand-color:rgba(14, 78, 181);--brand-color-translucent:rgba(14, 78, 181, 0.4)}a[href*=linkedin]::after{-webkit-mask-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M444.17 32H70.28C49.85 32 32 46.7 32 66.89v374.72C32 461.91 49.85 480 70.28 480h373.78c20.54 0 35.94-18.21 35.94-38.39V66.89C480.12 46.7 464.6 32 444.17 32zm-273.3 373.43h-64.18V205.88h64.18zM141 175.54h-.46c-20.54 0-33.84-15.29-33.84-34.43 0-19.49 13.65-34.42 34.65-34.42s33.85 14.82 34.31 34.42c-.01 19.14-13.31 34.43-34.66 34.43zm264.43 229.89h-64.18V296.32c0-26.14-9.34-44-32.56-44-17.74 0-28.24 12-32.91 23.69-1.75 4.2-2.22 9.92-2.22 15.76v113.66h-64.18V205.88h64.18v27.77c9.34-13.3 23.93-32.44 57.88-32.44 42.13 0 74 27.77 74 87.64z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M444.17 32H70.28C49.85 32 32 46.7 32 66.89v374.72C32 461.91 49.85 480 70.28 480h373.78c20.54 0 35.94-18.21 35.94-38.39V66.89C480.12 46.7 464.6 32 444.17 32zm-273.3 373.43h-64.18V205.88h64.18zM141 175.54h-.46c-20.54 0-33.84-15.29-33.84-34.43 0-19.49 13.65-34.42 34.65-34.42s33.85 14.82 34.31 34.42c-.01 19.14-13.31 34.43-34.66 34.43zm264.43 229.89h-64.18V296.32c0-26.14-9.34-44-32.56-44-17.74 0-28.24 12-32.91 23.69-1.75 4.2-2.22 9.92-2.22 15.76v113.66h-64.18V205.88h64.18v27.77c9.34-13.3 23.93-32.44 57.88-32.44 42.13 0 74 27.77 74 87.64z'/%3E%3C/svg%3E\")}a[href*='github.com']{--brand-color:rgb(110, 84, 148);--brand-color-translucent:rgba(110, 84, 148, 0.4)}a[href*='github.com']::after{-webkit-mask-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 32C132.3 32 32 134.9 32 261.7c0 101.5 64.2 187.5 153.2 217.9a17.56 17.56 0 003.8.4c8.3 0 11.5-6.1 11.5-11.4 0-5.5-.2-19.9-.3-39.1a102.4 102.4 0 01-22.6 2.7c-43.1 0-52.9-33.5-52.9-33.5-10.2-26.5-24.9-33.6-24.9-33.6-19.5-13.7-.1-14.1 1.4-14.1h.1c22.5 2 34.3 23.8 34.3 23.8 11.2 19.6 26.2 25.1 39.6 25.1a63 63 0 0025.6-6c2-14.8 7.8-24.9 14.2-30.7-49.7-5.8-102-25.5-102-113.5 0-25.1 8.7-45.6 23-61.6-2.3-5.8-10-29.2 2.2-60.8a18.64 18.64 0 015-.5c8.1 0 26.4 3.1 56.6 24.1a208.21 208.21 0 01112.2 0c30.2-21 48.5-24.1 56.6-24.1a18.64 18.64 0 015 .5c12.2 31.6 4.5 55 2.2 60.8 14.3 16.1 23 36.6 23 61.6 0 88.2-52.4 107.6-102.3 113.3 8 7.1 15.2 21.1 15.2 42.5 0 30.7-.3 55.5-.3 63 0 5.4 3.1 11.5 11.4 11.5a19.35 19.35 0 004-.4C415.9 449.2 480 363.1 480 261.7 480 134.9 379.7 32 256 32z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 32C132.3 32 32 134.9 32 261.7c0 101.5 64.2 187.5 153.2 217.9a17.56 17.56 0 003.8.4c8.3 0 11.5-6.1 11.5-11.4 0-5.5-.2-19.9-.3-39.1a102.4 102.4 0 01-22.6 2.7c-43.1 0-52.9-33.5-52.9-33.5-10.2-26.5-24.9-33.6-24.9-33.6-19.5-13.7-.1-14.1 1.4-14.1h.1c22.5 2 34.3 23.8 34.3 23.8 11.2 19.6 26.2 25.1 39.6 25.1a63 63 0 0025.6-6c2-14.8 7.8-24.9 14.2-30.7-49.7-5.8-102-25.5-102-113.5 0-25.1 8.7-45.6 23-61.6-2.3-5.8-10-29.2 2.2-60.8a18.64 18.64 0 015-.5c8.1 0 26.4 3.1 56.6 24.1a208.21 208.21 0 01112.2 0c30.2-21 48.5-24.1 56.6-24.1a18.64 18.64 0 015 .5c12.2 31.6 4.5 55 2.2 60.8 14.3 16.1 23 36.6 23 61.6 0 88.2-52.4 107.6-102.3 113.3 8 7.1 15.2 21.1 15.2 42.5 0 30.7-.3 55.5-.3 63 0 5.4 3.1 11.5 11.4 11.5a19.35 19.35 0 004-.4C415.9 449.2 480 363.1 480 261.7 480 134.9 379.7 32 256 32z'/%3E%3C/svg%3E\");-webkit-mask-size:55%;mask-size:55%}a[href*=twitter]{--brand-color:rgb(29, 161, 242);--brand-color-translucent:rgba(29, 161, 242, 0.4)}a[href*=twitter]::after{-webkit-mask-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M496 109.5a201.8 201.8 0 01-56.55 15.3 97.51 97.51 0 0043.33-53.6 197.74 197.74 0 01-62.56 23.5A99.14 99.14 0 00348.31 64c-54.42 0-98.46 43.4-98.46 96.9a93.21 93.21 0 002.54 22.1 280.7 280.7 0 01-203-101.3A95.69 95.69 0 0036 130.4c0 33.6 17.53 63.3 44 80.7A97.5 97.5 0 0135.22 199v1.2c0 47 34 86.1 79 95a100.76 100.76 0 01-25.94 3.4 94.38 94.38 0 01-18.51-1.8c12.51 38.5 48.92 66.5 92.05 67.3A199.59 199.59 0 0139.5 405.6a203 203 0 01-23.5-1.4A278.68 278.68 0 00166.74 448c181.36 0 280.44-147.7 280.44-275.8 0-4.2-.11-8.4-.31-12.5A198.48 198.48 0 00496 109.5z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M496 109.5a201.8 201.8 0 01-56.55 15.3 97.51 97.51 0 0043.33-53.6 197.74 197.74 0 01-62.56 23.5A99.14 99.14 0 00348.31 64c-54.42 0-98.46 43.4-98.46 96.9a93.21 93.21 0 002.54 22.1 280.7 280.7 0 01-203-101.3A95.69 95.69 0 0036 130.4c0 33.6 17.53 63.3 44 80.7A97.5 97.5 0 0135.22 199v1.2c0 47 34 86.1 79 95a100.76 100.76 0 01-25.94 3.4 94.38 94.38 0 01-18.51-1.8c12.51 38.5 48.92 66.5 92.05 67.3A199.59 199.59 0 0139.5 405.6a203 203 0 01-23.5-1.4A278.68 278.68 0 00166.74 448c181.36 0 280.44-147.7 280.44-275.8 0-4.2-.11-8.4-.31-12.5A198.48 198.48 0 00496 109.5z'/%3E%3C/svg%3E\")}a:hover::before{opacity:.25}a:active::before,a:focus::before{-webkit-box-shadow:0 0 0 5px var(--brand-color-translucent);box-shadow:0 0 0 5px var(--brand-color-translucent);opacity:.3}"]))),kt=function(e){qt(r,e);var t=Kt(r);function r(){var e;return lr(this,r),(e=t.apply(this,arguments)).twitter="",e.github="",e.blog="",e.linkedin="",e}return sr(r,[{key:"render",value:function(){var e=Re(w||(w=Nt([""])));this.twitter&&(e=Re(v||(v=Nt(['<li><a href="','" target="_blank" rel="noreferrer noopener">Twitter</a></li>'])),"https://twitter.com/".concat(this.twitter)));var t=Re(k||(k=Nt([""])));this.github&&(t=Re(y||(y=Nt(['<li><a href="','" target="_blank" rel="noreferrer noopener">Github</a></li>'])),"https://github.com/".concat(this.github)));var r=Re(C||(C=Nt([""])));this.blog&&(r=Re(_||(_=Nt(['<li><a href="','" target="_blank" rel="noreferrer noopener">Blog</a></li>'])),this.blog));var o=Re(A||(A=Nt([""])));return this.linkedin&&(o=Re($||($=Nt(['<li><a href="','" target="_blank" rel="noreferrer noopener">LinkedIn</a></li>'])),"https://www.linkedin.com/in/".concat(this.linkedin))),Re(S||(S=Nt(["<ul>","","","","</ul>"])),t,e,r,o)}}]),r}(tt),kt.styles=[vt],cr([ur({type:String})],kt.prototype,"twitter",void 0),cr([ur({type:String})],kt.prototype,"github",void 0),cr([ur({type:String})],kt.prototype,"blog",void 0),cr([ur({type:String})],kt.prototype,"linkedin",void 0),kt=cr([ot("jio-socialmedia-buttons")],kt),yt=Object.freeze(["Jan","Feb","March","April","May","Jun","Jul","Aug","Sept","Oct","Nov","Dec"]),Ct=function(e){if(e)return/^\d+$/.test(e.toString())?new Date(parseInt(e.toString(),10)):new Date(Date.parse(e.toString()))},_t=function(e){qt(r,e);var t=Kt(r);function r(){return lr(this,r),t.apply(this,arguments)}return sr(r,[{key:"render",value:function(){var e=Ct(this.date)||new Date,t=Ct(this.endDate),r=Re(E||(E=Nt([""])));return t&&(r=Re(j||(j=Nt(['- <time datetime="','" title="End Time"><span class="month">','</span> <span class="day">',"</span></time>"])),t.toISOString(),yt[t.getUTCMonth()],t.getUTCDate().toString().padStart(2,"0"))),Re(O||(O=Nt(['<div class="date-time"><div class="date"><time datetime="','" title="Start Time"><span class="month">','</span> <span class="day">',"</span> </time>",'</div><div class="time">',"</div></div>"])),e.toISOString(),yt[e.getUTCMonth()],e.getUTCDate().toString().padStart(2,"0"),r,"".concat((e.getUTCHours()+1).toString().padStart(2,"0"),":").concat(e.getUTCMinutes().toString().padStart(2,"0")," ").concat(e.getUTCHours()+1<=12?"AM":"PM"))}}]),r}(tt),_t.styles=ie(P||(P=Nt([".date-time{background:#157ea7;border-radius:.5em;color:#fff;display:inline-block;font-size:1rem;font-size:.75rem;height:4.75em;overflow:hidden;padding:.5em;position:relative;text-align:center;width:4.75em}.date{background:rgba(180,40,40,.85);border:1px solid rgba(180,40,40,.85);border-top-left-radius:.5em;border-top-right-radius:.5em;box-shadow:0 1px 5px rgb(0 0 0 / 15%);font-size:.75em;font-weight:400;height:2em;line-height:2em;margin-left:-.75em;margin-right:-.75em;margin-top:-.75em;text-align:center}.time{font-size:1.1em;white-space:nowrap;line-height:3em;height:3em}"]))),cr([ur()],_t.prototype,"date",void 0),cr([ur()],_t.prototype,"endDate",void 0),_t=cr([ot("jio-datetime-box")],_t),
|
|
61
|
+
/**
|
|
62
|
+
* @license
|
|
63
|
+
* Copyright 2018 Google LLC
|
|
64
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
65
|
+
*/
|
|
66
|
+
At=function(e){return null!=e?e:Ue},$t=function(e){qt(r,e);var t=Kt(r);function r(){return lr(this,r),t.apply(this,arguments)}return sr(r,[{key:"render",value:function(){return Re(L||(L=Nt(['<svg width="36" height="18" xmlns="http://www.w3.org/2000/svg" role="img" xlink="http://www.w3.org/1999/xlink" viewBox="-3.23 44.77 362.70 271.95"><title>CDF</title><defs><linearGradient id="a" x1="359.765" x2="104.082" y1="134.295" y2="124.577" gradientTransform="matrix(1 0 0 -1 0 439.068)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#ed1c24"></stop><stop offset="1" stop-color="#f7941d"></stop></linearGradient><linearGradient id="b" x1="355.202" x2="99.519" y1="254.467" y2="244.749" href="#a"></linearGradient><linearGradient id="c" x1="183.903" x2="10.612" y1="227.598" y2="221.023" href="#a"></linearGradient><linearGradient id="d" x1="367.119" x2="157.995" y1="265.311" y2="257.091" href="#a"></linearGradient></defs><path fill="#c49a6c" d="M231.52 309.278c2.483-.332 4.895-.77 7.255-1.329s4.649-1.206 6.991-1.957c13.494-4.58 25.187-12.952 36.374-24.593l-.14-.175c-14.944 15.486-30.693 25.344-50.48 28.054z"></path><path fill="url(#a)" d="M224.232 309.96h.332c1.084 0 2.15-.14 3.216-.228a93.844 93.844 0 0 1-3.233.227z"></path><path fill="url(#b)" d="M284.692 187.187l-.122.192.122-.192z"></path><path fill="url(#c)" d="M146.145 231.847a150.844 150.844 0 0 1-12.97 15.862c-7.582 7.889-15.507 13.563-24.652 16.667a47.832 47.832 0 0 1-4.738 1.326 56.959 56.959 0 0 1-4.916.9 38.32 38.32 0 0 1-1.682.214l-.912.083c-.723.059-1.445.118-2.18.154h-3.068a42.325 42.325 0 0 1-9.192-1.043 49.977 49.977 0 0 1-6.764-2.002 43.097 43.097 0 0 1-4.525-1.954c-1.493-.77-2.961-1.516-4.407-2.37a59.5 59.5 0 0 1-17.105-15.399 59.714 59.714 0 0 1-2.914-4.311 53.09 53.09 0 0 1-1.291-2.263 51.985 51.985 0 0 1-2.263-4.738 46.72 46.72 0 0 1 0-36.426 51.986 51.986 0 0 1 2.263-4.738 54.14 54.14 0 0 1 1.291-2.263 59.742 59.742 0 0 1 2.914-4.311 59.714 59.714 0 0 1 17.105-15.4 60.828 60.828 0 0 1 4.407-2.369q2.217-1 4.525-1.777a49.976 49.976 0 0 1 6.906-2.073 42.325 42.325 0 0 1 9.192-1.042h3.128c.722 0 1.445.094 2.155.154l1.043.106 1.019.119c1.8.237 3.553.557 5.271.96.853.2 1.694.426 2.523.663a51.186 51.186 0 0 1 11.846 5.176 59.645 59.645 0 0 1 4.395 2.89 74.485 74.485 0 0 1 8.386 7.108q2.038 1.99 4.063 4.193l.083-.13a159.395 159.395 0 0 1 11.064 13.942c5.437-8.576 13.658-21.464 16.584-25.74 1.185-1.718 2.37-3.46 3.66-5.212-13.54-16.513-29.827-30.23-51.587-36.082h-.154a89.397 89.397 0 0 0-3.187-.794l-.45-.107a92.565 92.565 0 0 0-3.151-.627l-.628-.119a80.578 80.578 0 0 0-3.743-.569h-.142a58.29 58.29 0 0 0-2.073-.236h-.391l-1.872-.166h-.568l-1.754-.119h-.675l-1.777-.07h-3.115c-46.447-.25-87.125 40.476-87.125 86.911s40.725 87.173 87.172 87.173h3.14l1.729-.071h.734l1.67-.095h.676l1.706-.154h.568l1.813-.213.414-.06 1.967-.272h.213a125.91 125.91 0 0 0 3.553-.628l.652-.142c.96-.201 1.907-.415 2.855-.64l.58-.142a86.66 86.66 0 0 0 3.009-.817l.237-.071c20.73-6.077 36.425-19.392 49.55-35.277-2.037-3.068-3.4-5.366-4.039-6.48z"></path><path fill="url(#d)" d="M318.05 51.733v94.66a85.514 85.514 0 0 0-52.595-18.729h-3.115l-1.777.072-.7.047-1.752.118h-.569l-1.871.166h-.391c-.7.071-1.386.142-2.073.237h-.154c-1.256.154-2.5.355-3.732.569l-.628.118c-1.066.19-2.108.403-3.15.628l-.45.107c-30.35 6.858-50.333 28.808-66.822 52.82-.7 1.018-1.35 2.049-2.038 3.068-2.25 3.423-5.46 8.422-8.635 13.397-4.17 6.527-8.292 13.03-9.939 15.66l20.624 32.137s21.997 40.465 61.68 51.482l.237.07c.995.297 2.002.558 3.009.818l.58.142c.936.237 1.896.439 2.855.64l.652.142c1.184.225 2.369.439 3.553.628h.214l1.966.273.415.059 1.812.213h.569l1.705.154h.676l1.67.095h.734l1.73.07h3.139c54.703 0 86.355-30.964 87.149-85.063V51.733zm-52.595 215.403h-3.068c-.734 0-1.457-.095-2.18-.154l-.912-.083c-.568-.06-1.125-.13-1.682-.213a49.077 49.077 0 0 1-9.571-2.275 49.612 49.612 0 0 1-6.634-2.83 55.792 55.792 0 0 1-6.254-3.768 63.068 63.068 0 0 1-3.009-2.215 82.399 82.399 0 0 1-8.683-7.925l-.095.119c-1.255-1.303-2.487-2.69-3.731-4.11-.154-.167-.296-.356-.45-.534-.628-.722-1.256-1.445-1.884-2.215s-1.125-1.398-1.682-2.097-.888-1.101-1.338-1.682a184.467 184.467 0 0 1-6.053-8.292c-.7-.995-1.398-2.025-2.109-3.056-.379-.569-.77-1.184-1.185-1.73-.675-1.018-1.362-2.013-2.049-3.056l-.355-.545c-1.185-1.812-2.37-3.684-3.649-5.603q2.95-4.608 5.817-8.86c1.907-2.831 3.79-5.556 5.662-8.138s3.72-5.046 5.591-7.38 3.72-4.525 5.603-6.586q2.026-2.203 4.063-4.194c1.374-1.338 2.748-2.594 4.158-3.778s2.807-2.287 4.252-3.329a57.594 57.594 0 0 1 7.748-4.62c.331-.166.663-.367 1.006-.533l.226-.118c1.41-.652 2.843-1.185 4.3-1.73l.485-.201c.273-.083.557-.142.83-.237a44.943 44.943 0 0 1 3.34-.948l1.374-.343a60.798 60.798 0 0 1 4.738-.841l1.019-.119 1.042-.106c.711 0 1.434-.119 2.156-.154h3.128a42.431 42.431 0 0 1 4.572.26 48.011 48.011 0 0 1 6.93 1.35c1.54.427 3.08.925 4.596 1.505a48.724 48.724 0 0 1 4.525 1.955c1.493.722 2.961 1.516 4.407 2.369s2.866 1.8 4.24 2.784 2.725 2.049 4.028 3.174a58.459 58.459 0 0 1 8.837 9.477 59.73 59.73 0 0 1 2.914 4.312 51.067 51.067 0 0 1 5.318 11.916 47.38 47.38 0 0 1 1.185 5.165 45.567 45.567 0 0 1 .71 8.09c.072 35.964-16.062 52.122-52.227 52.122z"></path></svg>'])))}}]),r}(tt),$t.styles=ie(M||(M=Nt([""]))),$t=cr([ot("jio-cdf-logo")],$t),St=function(e){qt(r,e);var t=Kt(r);function r(){var e;return lr(this,r),(e=t.apply(this,arguments)).href="",e.property="https://www.jenkins.io",e.class="",e.locationHref=location.href,e}return sr(r,[{key:"render",value:function(){var e;this.title&&(e=this.title);var t=Et(this.href,this.property,this.locationHref),r=t.isActive,o=t.href;return Re(T||(T=Nt(['<a class="','" title="','" href="','"><slot></slot></a>'])),"nav-link ".concat(this.class," ").concat(r?"active":""),At(e),o)}}]),r}(tt),St.styles=ie(z||(z=Nt([".nav-link{color:rgba(255,255,255,.55);display:block;padding:.5em 0;padding-left:.5rem;padding-right:.5rem;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}.dropdown-item{background-color:transparent;border:0;clear:both;color:#212529;display:block;font-weight:400;padding:.25em 1rem;text-align:inherit;text-decoration:none;white-space:nowrap}.dropdown-item:focus,.dropdown-item:hover{background-color:#cbd3da;color:#16181b;text-decoration:none}.active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.active,.dropdown-item:active{background-color:#007bff;color:#fff;text-decoration:none}"]))),cr([ur()],St.prototype,"href",void 0),cr([ur()],St.prototype,"property",void 0),cr([ur()],St.prototype,"class",void 0),cr([ur()],St.prototype,"locationHref",void 0),St=cr([ot("jio-navbar-link")],St),Et=function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"",o=new URL(e,"https://www.jenkins.io"),i=new URL(t),n=!1;if(i.host===o.host)e=o.toString().substring(o.toString().split("/").slice(0,3).join("/").length),r&&r.startsWith(o.pathname)&&(n=!0);else{if(i.host===o.host)throw new Error(e);e=o.toString()}return{isActive:n,href:e}},jt=ie(R||(R=Nt(["*{font-family:system-ui,'Segoe UI',roboto,'Noto Sans',oxygen,ubuntu,cantarell,'Fira Sans','Droid Sans','Helvetica Neue',arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol'}"]))),Ot=ie(N||(N=Nt(["a:focus-visible{outline:2px solid #000b19}.navbar-toggler{background-color:transparent;border:1px solid transparent;border-color:rgba(255,255,255,.1);border-radius:.25rem;color:rgba(255,255,255,.5);display:none;font-size:1.25rem;line-height:1}.nav{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}.navbar{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;background:#212529;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;font-size:.875rem;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 0;padding:.5rem 1rem;position:relative}.navbar-brand ::slotted(a),.navbar-brand a{color:#fff;display:inline-block;font-family:Georgia,Times,Times New Roman,serif;font-size:1.25rem;font-size:20px;font-weight:600;line-height:inherit;margin-right:1rem;padding:2px 0;padding-bottom:.3125rem;padding-top:.3125rem;text-decoration:none;white-space:nowrap}.collapse{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-basis:auto;-ms-flex-preferred-size:auto;flex-basis:auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;line-height:1.5;text-align:center}.nav-item{cursor:pointer}.dropdown{position:relative}.navbar-nav{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;list-style:none;margin-bottom:0;margin-top:0;padding-left:0}.nav-link.dropdown-toggle{background-color:transparent;border:0;cursor:pointer;font-family:inherit;font-size:inherit;line-height:inherit;margin:0 auto}button.nav-link{background:#f9f9f9;border:1px solid #ccc;border-radius:3px;-webkit-box-shadow:0 2px 4px -3px rgb(0 0 0 / 25%);box-shadow:0 2px 4px -3px rgb(0 0 0 / 25%)}.nav-link{color:rgba(255,255,255,.55);display:block;padding:.5em 0;padding-left:.5rem;padding-right:.5rem;text-decoration:none;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}.dropdown-toggle{white-space:nowrap}.dropdown-menu{background-clip:padding-box;background-color:#fff;border:1px solid rgba(0,0,0,.175);border-radius:.375em;color:#212529;display:none;list-style:none;margin:0;min-width:10rem;padding:.5em 0;position:absolute;text-align:left;z-index:1000}.dropdown-menu.show{display:block}.navbar.dropdown-menu{font-size:.875rem;max-height:80vh;overflow-y:auto}.download-btn{font-size:.875rem;margin-left:8px}.download-btn a{background-color:transparent;border:1px solid #6c757d;border-radius:.375;cursor:pointer;line-height:1.5em;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle}.dropdown-toggle::after{border-bottom:0;border-left:.3em solid transparent;border-right:.3em solid transparent;border-top:.3em solid;content:'';display:inline-block;margin-left:.255em;vertical-align:.255em}.searchbox{-webkit-box-sizing:border-box;box-sizing:border-box;display:inline-block;height:32px!important;position:relative;visibility:visible!important;white-space:nowrap;width:200px}@media (min-width:992px){.mr-auto{margin-right:auto}.ml-auto{margin-left:auto}}@media (max-width:992px){.navbar-toggler{display:block}.navbar{-webkit-box-align:normal;-webkit-align-items:normal;-ms-flex-align:normal;align-items:normal}.collapse{-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;list-style:none;margin-bottom:0;padding-left:0}.collapse:not(.show){display:none}.collapse .navbar-nav{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.navbar-nav .dropdown-menu{position:absolute}}.divider{border-left:1px solid #fff}"]))),Pt=function(e){qt(r,e);var t=Kt(r);function r(){var e;return lr(this,r),(e=t.call(this)).property="https://www.jenkins.io",e.showSearchBox=!1,e.locationHref=location.href,e.visibleMenu=-1,e.menuToggled=!1,e.handleDocumentClick=e.handleDocumentClick.bind(Yt(e)),e}return sr(r,[{key:"connectedCallback",value:function(){Ht(rr(r.prototype),"connectedCallback",this).call(this),document.addEventListener("click",this.handleDocumentClick)}},{key:"disconnectedCallback",value:function(){Ht(rr(r.prototype),"disconnectedCallback",this).call(this),document.removeEventListener("click",this.handleDocumentClick)}},{key:"handleDocumentClick",value:function(){this.visibleMenu=-1}},{key:"render",value:function(){var e=this,t=[{label:"Blog",link:"/node"},{label:"Documentation",link:[{label:"User Guide",link:"/doc/book",header:!0},{label:"- Installing Jenkins",link:"/doc/book/installing/"},{label:"- Jenkins Pipeline",link:"/doc/book/pipeline/"},{label:"- Managing Jenkins",link:"/doc/book/managing/"},{label:"- Securing Jenkins",link:"/doc/book/security/"},{label:"- System Administration",link:"/doc/book/system - administration/"},{label:"- Troubleshooting Jenkins",link:"/doc/book/troubleshooting/"},{label:"- Terms and Definitions",link:"/doc/book/glossary/"},{label:"Solution Pages",link:"/solutions",header:!0},{label:"Tutorials",link:"/doc/tutorials",header:!0},{label:"- Guided Tour",link:"/doc/pipeline/tour/getting - started/"},{label:"- More Tutorials",link:"/doc/tutorials/"},{label:"Developer Guide",link:"/doc/developer",header:!0},{label:"Contributor Guide",link:"/participate",header:!0}]},{label:"Plugins",link:"https://plugins.jenkins.io/"},{label:"Community",link:[{label:"Overview",link:"/participate/"},{label:"Chat",link:"/chat/",title:"Chat with the rest of the Jenkins community on IRC"},{label:"Meet",link:"/projects/jam/"},{label:"Events",link:"/events/"},{label:"Forum",link:"https://community.jenkins.io/"},{label:"Issue Tracker",link:"https://issues.jenkins.io/"},{label:"Mailing Lists",link:"/mailing-lists/",title:"Browse Jenkins mailing list archives and/ or subscribe to lists"},{label:"Roadmap",link:"/project/roadmap/"},{label:"Account Management",link:"https://accounts.jenkins.io/",title:"Create/manage your account for accessing wiki, issue tracker, etc"},{label:"Special Interest Groups",link:"/sigs/",header:!0},{label:"- Advocacy and Outreach",link:"/sigs/advocacy - and - outreach/"},{label:"- Chinese Localization",link:"/sigs/chinese - localization/"},{label:"- Cloud Native",link:"/sigs/cloud - native/"},{label:"- Documentation",link:"/sigs/docs/"},{label:"- Google Summer of Code",link:"/sigs/gsoc/"},{label:"- Hardware and EDA",link:"/sigs/hw - and - eda/"},{label:"- Pipeline Authoring",link:"/sigs/pipeline - authoring/"},{label:"- Platform",link:"/sigs/platform/"},{label:"- User Experience",link:"/sigs/ux/"}]},{label:"Subprojects",link:[{label:"Overview",link:"/projects/"},{label:"Google Summer of Code in Jenkins",link:"/projects/gsoc/"},{label:"Infrastructure",link:"/projects/infrastructure/"},{label:"CI/CD and Jenkins Area Meetups",link:"/projects/jam/"},{label:"Jenkins Configuration as Code",link:"/projects/jcasc/"},{label:"Jenkins Operator",link:"/projects/jenkins - operator/"},{label:"Jenkins Remoting",link:"/projects/remoting/"},{label:"Document Jenkins on Kubernetes",link:"/sigs/docs/gsod/2020/projects/document - jenkins - on - kubernetes/"}]},{label:"About",link:[{label:"Roadmap",link:"/project/roadmap/"},{label:"Security",link:"/security/"},{label:"Press",link:"/press/"},{label:"Awards",link:"/awards/"},{label:"Conduct",link:"/project/conduct/"},{label:"Artwork",link:"/artwork/"}]},{label:"English",link:[{label:"中文 Chinese",link:"/zh/"}]}].map((function(t,r){return t.link&&Array.isArray(t.link)?e.renderNavItemDropdown(t,r,e.visibleMenu===r):Re(U||(U=Nt(['<li class="nav-item">',"</li>"])),e.renderNavItemLink(t))})),r=Re(I||(I=Nt([""])));return this.showSearchBox&&(r=Re(D||(D=Nt(['<li class="nav-item searchbox"><input class="form-control searchbox" type="search" placeholder="Search" aria-label="Search"></li>'])))),Re(H||(H=Nt(['<nav class="navbar"><span class="navbar-brand"><slot name="brand"><a href="/">Jenkins</a></slot></span><button class="navbar-toggler collapsed btn" type="button" @click="','"><ion-icon name="menu-outline" title="Toggle Menu Visible"></ion-icon></button><div class="collapse ','"><ul class="nav navbar-nav mr-auto">','</ul><ul class="nav navbar-nav ml-auto">'," ",'<li class="nav-item download-btn">','</li><slot name="rightMenuItems" @slotchange="','"></slot></ul></div></nav>'])),this._clickCollapseButton,this.menuToggled?"show":"",this.renderNavItemDropdown({label:Re(B||(B=Nt(["<jio-cdf-logo></jio-cdf-logo>"]))),link:[{label:"What is CDF?",link:"https://cd.foundation/"},{label:"Jenkins X",link:"https://jenkins-x.io/"},{label:"Tekton",link:"https://cloud.google.com/tekton/"},{label:"Spinnaker",link:"https://www.spinnaker.io/"}]},99,99===this.visibleMenu),t,r,this.renderNavItemLink({link:"/download/",label:"Download"},["btn btn-outline-secondary"]),this.handleSlotchange)}},{key:"handleSlotchange",value:function(e){var t,r=e.target,o=r.assignedElements(),i=r.parentNode,n=or(o);try{for(n.s();!(t=n.n()).done;){var l,a=or(t.value.querySelectorAll("jio-navbar-link"));try{for(a.s();!(l=a.n()).done;){var s=l.value,d=document.createElement("li");d.className="nav-item",d.appendChild(s),i.appendChild(d)}}catch(e){a.e(e)}finally{a.f()}}}catch(e){n.e(e)}finally{n.f()}}},{key:"renderNavItemDropdown",value:function(e,t,r){var o=this;if(!Array.isArray(e.link))return this.renderNavItemLink(e);var i=e.link.map((function(e){return o.renderNavItemLink(e,["dropdown-item feature"])}));return Re(G||(G=Nt(['<li class="nav-item dropdown"><button @click="','" data-idx="','" aria-expanded="','" aria-haspopup="true" class="nav-link dropdown-toggle ','">','</button><div class="dropdown-menu ','">',"</div></li>"])),this._toggleDropdown,t,r?"true":"false",r?"show":"",e.label,r?"show":"",i)}},{key:"renderNavItemLink",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];if(Array.isArray(e.link))throw new Error("dropdown passed into render item");return Re(J||(J=Nt(['<jio-navbar-link .class="','" .locationHref="','" .property="','" href="','" title="','">',"</jio-navbar-link>"])),At(t.join(" ")),At(this.locationHref),this.property,e.link,At(e.title),e.header?Re(V||(V=Nt(["<strong>","</strong>"])),e.label):e.label)}},{key:"_clickCollapseButton",value:function(e){e.preventDefault(),this.menuToggled=!this.menuToggled}},{key:"_toggleDropdown",value:function(e){e.preventDefault(),e.stopPropagation();var t=e.currentTarget.dataset;this.visibleMenu===parseInt(t.idx||"-2",10)?this.visibleMenu=-1:this.visibleMenu=parseInt(t.idx||"-1",10)}}]),r}(tt),Pt.styles=[jt,Ot],cr([ur()],Pt.prototype,"property",void 0),cr([ur({type:Boolean})],Pt.prototype,"showSearchBox",void 0),cr([ur()],Pt.prototype,"locationHref",void 0),cr([hr()],Pt.prototype,"visibleMenu",void 0),cr([hr()],Pt.prototype,"menuToggled",void 0),Pt=cr([ot("jio-navbar")],Pt),Lt=ie(F||(F=Nt([".container{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px;width:100%}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px;width:100%}"]))),Mt=ie(W||(W=Nt([".row{display:flexbox;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-15px;margin-right:-15px}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{padding-left:15px;padding-right:15px;position:relative;width:100%}.col{-webkit-flex-basis:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;-ms-flex-positive:1;-ms-flex-preferred-size:0;max-width:100%}.col-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%;width:auto}.col-1{-webkit-box-flex:0;-webkit-flex:0 0 8.333333%;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-webkit-box-flex:0;-webkit-flex:0 0 16.666667%;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-webkit-box-flex:0;-webkit-flex:0 0 33.333333%;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-webkit-box-flex:0;-webkit-flex:0 0 41.666667%;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-webkit-box-flex:0;-webkit-flex:0 0 58.333333%;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-webkit-box-flex:0;-webkit-flex:0 0 66.666667%;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-webkit-box-flex:0;-webkit-flex:0 0 83.333333%;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-webkit-box-flex:0;-webkit-flex:0 0 91.666667%;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;-webkit-box-ordinal-group:0;-webkit-order:-1;order:-1}.order-last{-ms-flex-order:13;-webkit-box-ordinal-group:14;-webkit-order:13;order:13}.order-0{-ms-flex-order:0;-webkit-box-ordinal-group:1;-webkit-order:0;order:0}.order-1{-ms-flex-order:1;-webkit-box-ordinal-group:2;-webkit-order:1;order:1}.order-2{-ms-flex-order:2;-webkit-box-ordinal-group:3;-webkit-order:2;order:2}.order-3{-ms-flex-order:3;-webkit-box-ordinal-group:4;-webkit-order:3;order:3}.order-4{-ms-flex-order:4;-webkit-box-ordinal-group:5;-webkit-order:4;order:4}.order-5{-ms-flex-order:5;-webkit-box-ordinal-group:6;-webkit-order:5;order:5}.order-6{-ms-flex-order:6;-webkit-box-ordinal-group:7;-webkit-order:6;order:6}.order-7{-ms-flex-order:7;-webkit-box-ordinal-group:8;-webkit-order:7;order:7}.order-8{-ms-flex-order:8;-webkit-box-ordinal-group:9;-webkit-order:8;order:8}.order-9{-ms-flex-order:9;-webkit-box-ordinal-group:10;-webkit-order:9;order:9}.order-10{-ms-flex-order:10;-webkit-box-ordinal-group:11;-webkit-order:10;order:10}.order-11{-ms-flex-order:11;-webkit-box-ordinal-group:12;-webkit-order:11;order:11}.order-12{-ms-flex-order:12;-webkit-box-ordinal-group:13;-webkit-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-webkit-flex-basis:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;-ms-flex-positive:1;-ms-flex-preferred-size:0;max-width:100%}.col-sm-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%;width:auto}.col-sm-1{-webkit-box-flex:0;-webkit-flex:0 0 8.333333%;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-webkit-box-flex:0;-webkit-flex:0 0 16.666667%;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-webkit-box-flex:0;-webkit-flex:0 0 33.333333%;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-webkit-box-flex:0;-webkit-flex:0 0 41.666667%;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-webkit-box-flex:0;-webkit-flex:0 0 58.333333%;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-webkit-box-flex:0;-webkit-flex:0 0 66.666667%;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-webkit-box-flex:0;-webkit-flex:0 0 83.333333%;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-webkit-box-flex:0;-webkit-flex:0 0 91.666667%;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;-webkit-box-ordinal-group:0;-webkit-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;-webkit-box-ordinal-group:14;-webkit-order:13;order:13}.order-sm-0{-ms-flex-order:0;-webkit-box-ordinal-group:1;-webkit-order:0;order:0}.order-sm-1{-ms-flex-order:1;-webkit-box-ordinal-group:2;-webkit-order:1;order:1}.order-sm-2{-ms-flex-order:2;-webkit-box-ordinal-group:3;-webkit-order:2;order:2}.order-sm-3{-ms-flex-order:3;-webkit-box-ordinal-group:4;-webkit-order:3;order:3}.order-sm-4{-ms-flex-order:4;-webkit-box-ordinal-group:5;-webkit-order:4;order:4}.order-sm-5{-ms-flex-order:5;-webkit-box-ordinal-group:6;-webkit-order:5;order:5}.order-sm-6{-ms-flex-order:6;-webkit-box-ordinal-group:7;-webkit-order:6;order:6}.order-sm-7{-ms-flex-order:7;-webkit-box-ordinal-group:8;-webkit-order:7;order:7}.order-sm-8{-ms-flex-order:8;-webkit-box-ordinal-group:9;-webkit-order:8;order:8}.order-sm-9{-ms-flex-order:9;-webkit-box-ordinal-group:10;-webkit-order:9;order:9}.order-sm-10{-ms-flex-order:10;-webkit-box-ordinal-group:11;-webkit-order:10;order:10}.order-sm-11{-ms-flex-order:11;-webkit-box-ordinal-group:12;-webkit-order:11;order:11}.order-sm-12{-ms-flex-order:12;-webkit-box-ordinal-group:13;-webkit-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-webkit-flex-basis:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;-ms-flex-positive:1;-ms-flex-preferred-size:0;max-width:100%}.col-md-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%;width:auto}.col-md-1{-webkit-box-flex:0;-webkit-flex:0 0 8.333333%;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-webkit-box-flex:0;-webkit-flex:0 0 16.666667%;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-webkit-box-flex:0;-webkit-flex:0 0 33.333333%;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-webkit-box-flex:0;-webkit-flex:0 0 41.666667%;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-webkit-box-flex:0;-webkit-flex:0 0 58.333333%;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-webkit-box-flex:0;-webkit-flex:0 0 66.666667%;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-webkit-box-flex:0;-webkit-flex:0 0 83.333333%;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-webkit-box-flex:0;-webkit-flex:0 0 91.666667%;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;-webkit-box-ordinal-group:0;-webkit-order:-1;order:-1}.order-md-last{-ms-flex-order:13;-webkit-box-ordinal-group:14;-webkit-order:13;order:13}.order-md-0{-ms-flex-order:0;-webkit-box-ordinal-group:1;-webkit-order:0;order:0}.order-md-1{-ms-flex-order:1;-webkit-box-ordinal-group:2;-webkit-order:1;order:1}.order-md-2{-ms-flex-order:2;-webkit-box-ordinal-group:3;-webkit-order:2;order:2}.order-md-3{-ms-flex-order:3;-webkit-box-ordinal-group:4;-webkit-order:3;order:3}.order-md-4{-ms-flex-order:4;-webkit-box-ordinal-group:5;-webkit-order:4;order:4}.order-md-5{-ms-flex-order:5;-webkit-box-ordinal-group:6;-webkit-order:5;order:5}.order-md-6{-ms-flex-order:6;-webkit-box-ordinal-group:7;-webkit-order:6;order:6}.order-md-7{-ms-flex-order:7;-webkit-box-ordinal-group:8;-webkit-order:7;order:7}.order-md-8{-ms-flex-order:8;-webkit-box-ordinal-group:9;-webkit-order:8;order:8}.order-md-9{-ms-flex-order:9;-webkit-box-ordinal-group:10;-webkit-order:9;order:9}.order-md-10{-ms-flex-order:10;-webkit-box-ordinal-group:11;-webkit-order:10;order:10}.order-md-11{-ms-flex-order:11;-webkit-box-ordinal-group:12;-webkit-order:11;order:11}.order-md-12{-ms-flex-order:12;-webkit-box-ordinal-group:13;-webkit-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-webkit-flex-basis:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;-ms-flex-positive:1;-ms-flex-preferred-size:0;max-width:100%}.col-lg-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%;width:auto}.col-lg-1{-webkit-box-flex:0;-webkit-flex:0 0 8.333333%;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-webkit-box-flex:0;-webkit-flex:0 0 16.666667%;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-webkit-box-flex:0;-webkit-flex:0 0 33.333333%;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-webkit-box-flex:0;-webkit-flex:0 0 41.666667%;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-webkit-box-flex:0;-webkit-flex:0 0 58.333333%;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-webkit-box-flex:0;-webkit-flex:0 0 66.666667%;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-webkit-box-flex:0;-webkit-flex:0 0 83.333333%;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-webkit-box-flex:0;-webkit-flex:0 0 91.666667%;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;-webkit-box-ordinal-group:0;-webkit-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;-webkit-box-ordinal-group:14;-webkit-order:13;order:13}.order-lg-0{-ms-flex-order:0;-webkit-box-ordinal-group:1;-webkit-order:0;order:0}.order-lg-1{-ms-flex-order:1;-webkit-box-ordinal-group:2;-webkit-order:1;order:1}.order-lg-2{-ms-flex-order:2;-webkit-box-ordinal-group:3;-webkit-order:2;order:2}.order-lg-3{-ms-flex-order:3;-webkit-box-ordinal-group:4;-webkit-order:3;order:3}.order-lg-4{-ms-flex-order:4;-webkit-box-ordinal-group:5;-webkit-order:4;order:4}.order-lg-5{-ms-flex-order:5;-webkit-box-ordinal-group:6;-webkit-order:5;order:5}.order-lg-6{-ms-flex-order:6;-webkit-box-ordinal-group:7;-webkit-order:6;order:6}.order-lg-7{-ms-flex-order:7;-webkit-box-ordinal-group:8;-webkit-order:7;order:7}.order-lg-8{-ms-flex-order:8;-webkit-box-ordinal-group:9;-webkit-order:8;order:8}.order-lg-9{-ms-flex-order:9;-webkit-box-ordinal-group:10;-webkit-order:9;order:9}.order-lg-10{-ms-flex-order:10;-webkit-box-ordinal-group:11;-webkit-order:10;order:10}.order-lg-11{-ms-flex-order:11;-webkit-box-ordinal-group:12;-webkit-order:11;order:11}.order-lg-12{-ms-flex-order:12;-webkit-box-ordinal-group:13;-webkit-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-webkit-flex-basis:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;-ms-flex-positive:1;-ms-flex-preferred-size:0;max-width:100%}.col-xl-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%;width:auto}.col-xl-1{-webkit-box-flex:0;-webkit-flex:0 0 8.333333%;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-webkit-box-flex:0;-webkit-flex:0 0 16.666667%;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-webkit-box-flex:0;-webkit-flex:0 0 33.333333%;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-webkit-box-flex:0;-webkit-flex:0 0 41.666667%;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-webkit-box-flex:0;-webkit-flex:0 0 58.333333%;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-webkit-box-flex:0;-webkit-flex:0 0 66.666667%;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-webkit-box-flex:0;-webkit-flex:0 0 83.333333%;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-webkit-box-flex:0;-webkit-flex:0 0 91.666667%;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;-webkit-box-ordinal-group:0;-webkit-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;-webkit-box-ordinal-group:14;-webkit-order:13;order:13}.order-xl-0{-ms-flex-order:0;-webkit-box-ordinal-group:1;-webkit-order:0;order:0}.order-xl-1{-ms-flex-order:1;-webkit-box-ordinal-group:2;-webkit-order:1;order:1}.order-xl-2{-ms-flex-order:2;-webkit-box-ordinal-group:3;-webkit-order:2;order:2}.order-xl-3{-ms-flex-order:3;-webkit-box-ordinal-group:4;-webkit-order:3;order:3}.order-xl-4{-ms-flex-order:4;-webkit-box-ordinal-group:5;-webkit-order:4;order:4}.order-xl-5{-ms-flex-order:5;-webkit-box-ordinal-group:6;-webkit-order:5;order:5}.order-xl-6{-ms-flex-order:6;-webkit-box-ordinal-group:7;-webkit-order:6;order:6}.order-xl-7{-ms-flex-order:7;-webkit-box-ordinal-group:8;-webkit-order:7;order:7}.order-xl-8{-ms-flex-order:8;-webkit-box-ordinal-group:9;-webkit-order:8;order:8}.order-xl-9{-ms-flex-order:9;-webkit-box-ordinal-group:10;-webkit-order:9;order:9}.order-xl-10{-ms-flex-order:10;-webkit-box-ordinal-group:11;-webkit-order:10;order:10}.order-xl-11{-ms-flex-order:11;-webkit-box-ordinal-group:12;-webkit-order:11;order:11}.order-xl-12{-ms-flex-order:12;-webkit-box-ordinal-group:13;-webkit-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}"]))),Tt=ie(q||(q=Nt(["jio-improve-this-page,jio-report-a-problem{--jio-a-color:#fff}*{-webkit-box-sizing:border-box;box-sizing:border-box}p{margin-bottom:1rem;margin-top:0}footer{background:#1077ad;clear:both;color:#fff;display:block;float:left;line-height:1.66;margin:0;padding:2rem;position:relative;width:100%;z-index:2}.license-box{float:left;font-size:.85rem;padding-left:0}a{background-color:transparent;color:#fff;text-decoration:none;text-decoration-thickness:2px;text-underline-offset:2px}.area{display:inline-block;font-size:.85rem;padding:1rem 0;vertical-align:top}li,ul{display:block;list-style:none;margin:0;padding:0}.links{padding:0}.links li{text-align:left}.links h5{color:#fff;font-size:1rem;font-weight:800;letter-spacing:.05em;line-height:1.2;margin-bottom:.5rem;margin-top:0;text-align:left}.div-mar{border-top:solid 2px #fff;margin-right:2rem;padding:1rem 0}"]))),zt={"cc-sa":Re(K||(K=Nt(['<div id="creativecommons"><a href="https://creativecommons.org/licenses/by-sa/4.0/"><p><img alt="Creative Commons Attribution-ShareAlike license" src="https://licensebuttons.net/l/by-sa/4.0/88x31.png"></p></a><p>The content driving this site is licensed under the Creative Commons Attribution-ShareAlike 4.0 license.</p></div>'])))},Rt=function(e){qt(r,e);var t=Kt(r);function r(){var e;return lr(this,r),(e=t.apply(this,arguments)).license="cc-sa",e.property="https://www.jenkins.io",e.sourcePath="",e.githubRepo="",e}return sr(r,[{key:"render",value:function(){return Re(Z||(Z=Nt(['<footer><div class="container"><div class="row"><div class="col-md-4"><p class="box"><jio-improve-this-page sourcePath="','" githubRepo="','"></jio-improve-this-page><jio-report-a-problem sourcePath="','" githubRepo="','"></jio-report-a-problem></p><div class="license-box">','</div></div><div class="links col-md-8"><div class="container"><div class="row"><div class="area col-md-3"><div class="div-mar"><h5>Resources</h5><ul class="resources"><li><a href="','">Downloads</a></li><li><a href="','">Blog</a></li><li><a href="','">Documentation</a></li><li><a href="','">Plugins</a></li><li><a href="','">Security</a></li><li><a href="','">Contributing</a></li></ul></div></div><div class="area col-md-3"><div class="div-mar"><h5>Project</h5><ul class="project"><li><a href="','">Structure and governance</a></li><li><a href="','">Issue tracker</a></li><li><a href="','">Roadmap</a></li><li><a href="','">GitHub</a></li><li><a href="','">Jenkins on Jenkins</a></li></ul></div></div><div class="area col-md-3"><div class="div-mar"><h5>Community</h5><ul class="community"><li><a href="','">Forum</a></li><li><a href="','">Events</a></li><li><a href="','">Mailing lists</a></li><li><a href="','">Chats</a></li><li><a href="','">Special Interest Groups</a></li><li><a href="','">Twitter</a></li><li><a href="','">Reddit</a></li></ul></div></div><div class="area col-md-3"><div class="div-mar"><h5>Other</h5><ul class="other"><li><a href="','">Code of Conduct</a></li><li><a href="','">Press information</a></li><li><a href="','">Merchandise</a></li><li><a href="','">Artwork</a></li><li><a href="','">Awards</a></li></ul></div></div></div></div></div></div></div></footer>'])),this.sourcePath,this.githubRepo,this.sourcePath,this.githubRepo,zt[this.license]||Re(Y||(Y=Nt([""]))),Et("/download/",this.property).href,Et("/node/",this.property).href,Et("/doc/",this.property).href,Et("https://plugins.jenkins.io/",this.property).href,Et("/security/",this.property).href,Et("/participate/",this.property).href,Et("/project/",this.property).href,Et("https://issues.jenkins.io",this.property).href,Et("/project/roadmap/",this.property).href,Et("https://github.com/jenkinsci",this.property).href,Et("https://ci.jenkins.io",this.property).href,Et("https://community.jenkins.io",this.property).href,Et("/events/",this.property).href,Et("/mailing-lists/",this.property).href,Et("/chat/",this.property).href,Et("/sigs/",this.property).href,Et("https://twitter.com/jenkinsci",this.property).href,Et("https://reddit.com/r/jenkinsci",this.property).href,Et("/conduct/",this.property).href,Et("/press/",this.property).href,Et("/merchandise/",this.property).href,Et("/artwork/",this.property).href,Et("/awards/",this.property).href)}}]),r}(tt),Rt.styles=[jt,Lt,Mt,Tt],cr([ur()],Rt.prototype,"license",void 0),cr([ur()],Rt.prototype,"property",void 0),cr([ur()],Rt.prototype,"sourcePath",void 0),cr([ur()],Rt.prototype,"githubRepo",void 0),Rt=cr([ot("jio-footer")],Rt)}}}));
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export { ReportAProblem } from './jio-report-a-problem';
|
|
2
|
+
export { ImproveThisPage } from './jio-improve-this-page';
|
|
3
|
+
export { ChangelogWeatherIcon } from './jio-changelog-weather-icon';
|
|
4
|
+
export { ChangelogRatings } from './jio-changelog-ratings';
|
|
5
|
+
export { WeatherIcon } from './jio-weather-icon';
|
|
6
|
+
export { SocialMediaButtons } from './jio-socialmedia-buttons';
|
|
7
|
+
export { DatetimeBox } from './jio-datetime-box';
|
|
8
|
+
export { Navbar } from './jio-navbar';
|
|
9
|
+
export { NavbarLink } from './jio-navbar-link';
|
|
10
|
+
export { Footer } from './jio-footer';
|
|
11
|
+
//# sourceMappingURL=jio-components.d.ts.map
|