@digital-realty/ix-widget 1.0.1
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 +30 -0
- package/dist/IxWidget.d.ts +6 -0
- package/dist/IxWidget.js +85 -0
- package/dist/IxWidget.js.map +1 -0
- package/dist/assets/columns.d.ts +5 -0
- package/dist/assets/columns.js +45 -0
- package/dist/assets/columns.js.map +1 -0
- package/dist/assets/contacts.d.ts +17 -0
- package/dist/assets/contacts.js +88 -0
- package/dist/assets/contacts.js.map +1 -0
- package/dist/assets/data.d.ts +2243 -0
- package/dist/assets/data.js +2354 -0
- package/dist/assets/data.js.map +1 -0
- package/dist/assets/iconset.d.ts +16 -0
- package/dist/assets/iconset.js +18 -0
- package/dist/assets/iconset.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -0
- package/dist/ix-action-list.d.ts +8 -0
- package/dist/ix-action-list.js +108 -0
- package/dist/ix-action-list.js.map +1 -0
- package/dist/ix-contacts.d.ts +9 -0
- package/dist/ix-contacts.js +137 -0
- package/dist/ix-contacts.js.map +1 -0
- package/dist/ix-info-card.d.ts +10 -0
- package/dist/ix-info-card.js +164 -0
- package/dist/ix-info-card.js.map +1 -0
- package/dist/ix-launchpad.d.ts +14 -0
- package/dist/ix-launchpad.js +188 -0
- package/dist/ix-launchpad.js.map +1 -0
- package/dist/ix-nav-item.d.ts +8 -0
- package/dist/ix-nav-item.js +98 -0
- package/dist/ix-nav-item.js.map +1 -0
- package/dist/ix-nav-list.d.ts +8 -0
- package/dist/ix-nav-list.js +44 -0
- package/dist/ix-nav-list.js.map +1 -0
- package/dist/ix-news-feed.d.ts +9 -0
- package/dist/ix-news-feed.js +243 -0
- package/dist/ix-news-feed.js.map +1 -0
- package/dist/ix-status-counter-group.d.ts +8 -0
- package/dist/ix-status-counter-group.js +115 -0
- package/dist/ix-status-counter-group.js.map +1 -0
- package/dist/ix-status-counter.d.ts +12 -0
- package/dist/ix-status-counter.js +163 -0
- package/dist/ix-status-counter.js.map +1 -0
- package/dist/ix-table-data.d.ts +12 -0
- package/dist/ix-table-data.js +99 -0
- package/dist/ix-table-data.js.map +1 -0
- package/dist/ix-widget.d.ts +1 -0
- package/dist/ix-widget.js +3 -0
- package/dist/ix-widget.js.map +1 -0
- package/dist/ix-widget.min.js +1 -0
- package/dist/styles/launchpad-styles.d.ts +1 -0
- package/dist/styles/launchpad-styles.js +221 -0
- package/dist/styles/launchpad-styles.js.map +1 -0
- package/package.json +128 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 ix-widget
|
|
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,30 @@
|
|
|
1
|
+
# \<ix-widget>
|
|
2
|
+
|
|
3
|
+
This webcomponent follows the [open-wc](https://github.com/open-wc/open-wc) recommendation.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm i @digital-realty/ix-widget
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```html
|
|
14
|
+
<script type="module">
|
|
15
|
+
import '@digital-realty/ix-widget/ix-widget.js';
|
|
16
|
+
</script>
|
|
17
|
+
|
|
18
|
+
<ix-widget></ix-widget>
|
|
19
|
+
```
|
|
20
|
+
### In React
|
|
21
|
+
```html
|
|
22
|
+
<script type="module">
|
|
23
|
+
import { IxWidget } from '@digital-realty/ix-widget/IxWidget'
|
|
24
|
+
</script>
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
## Demo and Documentation
|
|
29
|
+
|
|
30
|
+
Full documentation and demo are available at [DLR Component Gallery](https://inxn-p1-uicomponentgallery.azurewebsites.net/?path=/story/inxn-ix-widget--default).
|
package/dist/IxWidget.js
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { __decorate } from "tslib";
|
|
2
|
+
import { html, LitElement, css } from 'lit';
|
|
3
|
+
import { property } from 'lit/decorators.js';
|
|
4
|
+
export class IxWidget extends LitElement {
|
|
5
|
+
constructor() {
|
|
6
|
+
super(...arguments);
|
|
7
|
+
this.type = 'default';
|
|
8
|
+
}
|
|
9
|
+
render() {
|
|
10
|
+
return html `<div class="card" type=${this.type}>
|
|
11
|
+
<slot></slot>
|
|
12
|
+
</div>`;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
IxWidget.styles = css `
|
|
16
|
+
.card {
|
|
17
|
+
border-radius: 0.75rem;
|
|
18
|
+
background: var(--ix-widget-background, white);
|
|
19
|
+
padding: var(--ix-widget-padding, 16px 24px 32px);
|
|
20
|
+
border: var(--ix-widget-border, none);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
[type='status-counter'].card {
|
|
24
|
+
margin-bottom: 0;
|
|
25
|
+
--ix-widget-padding: 0;
|
|
26
|
+
--ix-widget-padding: 1rem;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
@media (min-width: 1350px) {
|
|
30
|
+
[type='status-counter'].card {
|
|
31
|
+
--ix-widget-padding: 36.5px 20px 36.5px 24px;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
[type='status-counter-group'].card {
|
|
36
|
+
--ix-widget-padding: 0;
|
|
37
|
+
--ix-widget-background: transparent;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
@media (max-width: 1349px) {
|
|
41
|
+
[type='status-counter-group'].card {
|
|
42
|
+
--ix-widget-padding: 1rem;
|
|
43
|
+
--ix-widget-background: white;
|
|
44
|
+
box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 1px -1px,
|
|
45
|
+
rgba(0, 0, 0, 0.14) 0px 1px 1px 0px,
|
|
46
|
+
rgba(0, 0, 0, 0.12) 0px 1px 3px 0px;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
[type='info-card'].card {
|
|
51
|
+
display: block;
|
|
52
|
+
max-width: 348px;
|
|
53
|
+
border-radius: 0.5rem;
|
|
54
|
+
border: 1px solid #e0e0e0;
|
|
55
|
+
position: relative;
|
|
56
|
+
overflow: auto;
|
|
57
|
+
aspect-ratio: 1 / 1.47;
|
|
58
|
+
}
|
|
59
|
+
[type='info-card-2'].card {
|
|
60
|
+
display: block;
|
|
61
|
+
max-width: 348px;
|
|
62
|
+
border-radius: 0.5rem;
|
|
63
|
+
border: 1px solid #e0e0e0;
|
|
64
|
+
position: relative;
|
|
65
|
+
overflow: hidden;
|
|
66
|
+
aspect-ratio: 1 / 0.85;
|
|
67
|
+
}
|
|
68
|
+
[type='action-list'].card {
|
|
69
|
+
box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 1px -1px,
|
|
70
|
+
rgba(0, 0, 0, 0.14) 0px 1px 1px 0px, rgba(0, 0, 0, 0.12) 0px 1px 3px 0px;
|
|
71
|
+
}
|
|
72
|
+
[type='news-feed'].card {
|
|
73
|
+
display: flex;
|
|
74
|
+
flex-direction: column;
|
|
75
|
+
background: rgb(255, 255, 255);
|
|
76
|
+
box-shadow: rgba(0, 0, 0, 0.12) 0px 12px 20px -12px,
|
|
77
|
+
rgb(225, 228, 232) 0px 0px 0px 1px inset;
|
|
78
|
+
border-radius: 12px;
|
|
79
|
+
padding-bottom: 11px;
|
|
80
|
+
}
|
|
81
|
+
`;
|
|
82
|
+
__decorate([
|
|
83
|
+
property({ type: String })
|
|
84
|
+
], IxWidget.prototype, "type", void 0);
|
|
85
|
+
//# sourceMappingURL=IxWidget.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IxWidget.js","sourceRoot":"","sources":["../src/IxWidget.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,IAAI,EAAE,UAAU,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAC5C,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAE7C,MAAM,OAAO,QAAS,SAAQ,UAAU;IAAxC;;QAqE8B,SAAI,GAAG,SAAS,CAAC;IAO/C,CAAC;IALoB,MAAM;QACvB,OAAO,IAAI,CAAA,0BAA0B,IAAI,CAAC,IAAI;;WAEvC,CAAC;IACV,CAAC;;AA1EM,eAAM,GAAG,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkElB,AAlEY,CAkEX;AAE0B;IAA3B,QAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;sCAAkB","sourcesContent":["import { html, LitElement, css } from 'lit';\nimport { property } from 'lit/decorators.js';\n\nexport class IxWidget extends LitElement {\n static styles = css`\n .card {\n border-radius: 0.75rem;\n background: var(--ix-widget-background, white);\n padding: var(--ix-widget-padding, 16px 24px 32px);\n border: var(--ix-widget-border, none);\n }\n\n [type='status-counter'].card {\n margin-bottom: 0;\n --ix-widget-padding: 0;\n --ix-widget-padding: 1rem;\n }\n\n @media (min-width: 1350px) {\n [type='status-counter'].card {\n --ix-widget-padding: 36.5px 20px 36.5px 24px;\n }\n }\n\n [type='status-counter-group'].card {\n --ix-widget-padding: 0;\n --ix-widget-background: transparent;\n }\n\n @media (max-width: 1349px) {\n [type='status-counter-group'].card {\n --ix-widget-padding: 1rem;\n --ix-widget-background: white;\n box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 1px -1px,\n rgba(0, 0, 0, 0.14) 0px 1px 1px 0px,\n rgba(0, 0, 0, 0.12) 0px 1px 3px 0px;\n }\n }\n\n [type='info-card'].card {\n display: block;\n max-width: 348px;\n border-radius: 0.5rem;\n border: 1px solid #e0e0e0;\n position: relative;\n overflow: auto;\n aspect-ratio: 1 / 1.47;\n }\n [type='info-card-2'].card {\n display: block;\n max-width: 348px;\n border-radius: 0.5rem;\n border: 1px solid #e0e0e0;\n position: relative;\n overflow: hidden;\n aspect-ratio: 1 / 0.85;\n }\n [type='action-list'].card {\n box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 1px -1px,\n rgba(0, 0, 0, 0.14) 0px 1px 1px 0px, rgba(0, 0, 0, 0.12) 0px 1px 3px 0px;\n }\n [type='news-feed'].card {\n display: flex;\n flex-direction: column;\n background: rgb(255, 255, 255);\n box-shadow: rgba(0, 0, 0, 0.12) 0px 12px 20px -12px,\n rgb(225, 228, 232) 0px 0px 0px 1px inset;\n border-radius: 12px;\n padding-bottom: 11px;\n }\n `;\n\n @property({ type: String }) type = 'default';\n\n protected override render() {\n return html`<div class=\"card\" type=${this.type}>\n <slot></slot>\n </div>`;\n }\n}\n"]}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
// @ts-nocheck
|
|
2
|
+
import { html } from 'lit';
|
|
3
|
+
export const columns = [
|
|
4
|
+
{
|
|
5
|
+
name: 'title',
|
|
6
|
+
header: 'Subject',
|
|
7
|
+
bodyRenderer: row => html ` <span>${row.title}</span>`,
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
name: 'status',
|
|
11
|
+
header: 'Status',
|
|
12
|
+
bodyRenderer: row => html ` <span
|
|
13
|
+
style="display: flex;
|
|
14
|
+
flex-direction: row;
|
|
15
|
+
-webkit-box-align: center;
|
|
16
|
+
align-items: center;
|
|
17
|
+
padding: 2px 12px;
|
|
18
|
+
width: 185px;
|
|
19
|
+
height: 28px;
|
|
20
|
+
left: 0px;
|
|
21
|
+
top: 0px;
|
|
22
|
+
border-radius: 68px;
|
|
23
|
+
flex: 0 0 auto;
|
|
24
|
+
order: 0;
|
|
25
|
+
-webkit-box-flex: 0;
|
|
26
|
+
color: white;
|
|
27
|
+
-webkit-box-pack: center;
|
|
28
|
+
justify-content: center;
|
|
29
|
+
background: rgb(76, 175, 80);
|
|
30
|
+
margin: -6px 0;"
|
|
31
|
+
>${row.status}</span
|
|
32
|
+
>`,
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
name: 'type',
|
|
36
|
+
header: 'Ticket Type',
|
|
37
|
+
bodyRenderer: row => html ` <span>${row.ticketType}</span>`,
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
name: 'updated',
|
|
41
|
+
header: 'Updated On',
|
|
42
|
+
bodyRenderer: row => html ` <span>${row.updatedOn.split(' ')[0]}</span>`,
|
|
43
|
+
},
|
|
44
|
+
];
|
|
45
|
+
//# sourceMappingURL=columns.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"columns.js","sourceRoot":"","sources":["../../src/assets/columns.ts"],"names":[],"mappings":"AAAA,cAAc;AACd,OAAO,EAAE,IAAI,EAAE,MAAM,KAAK,CAAC;AAE3B,MAAM,CAAC,MAAM,OAAO,GAAG;IACrB;QACE,IAAI,EAAE,OAAO;QACb,MAAM,EAAE,SAAS;QACjB,YAAY,EAAE,GAAG,CAAC,EAAE,CAAC,IAAI,CAAA,UAAU,GAAG,CAAC,KAAK,SAAS;KACtD;IACD;QACE,IAAI,EAAE,QAAQ;QACd,MAAM,EAAE,QAAQ;QAChB,YAAY,EAAE,GAAG,CAAC,EAAE,CAAC,IAAI,CAAA;;;;;;;;;;;;;;;;;;;SAmBpB,GAAG,CAAC,MAAM;MACb;KACH;IACD;QACE,IAAI,EAAE,MAAM;QACZ,MAAM,EAAE,aAAa;QACrB,YAAY,EAAE,GAAG,CAAC,EAAE,CAAC,IAAI,CAAA,UAAU,GAAG,CAAC,UAAU,SAAS;KAC3D;IACD;QACE,IAAI,EAAE,SAAS;QACf,MAAM,EAAE,YAAY;QACpB,YAAY,EAAE,GAAG,CAAC,EAAE,CAAC,IAAI,CAAA,UAAU,GAAG,CAAC,SAAS,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,SAAS;KACxE;CACF,CAAC","sourcesContent":["// @ts-nocheck\nimport { html } from 'lit';\n\nexport const columns = [\n {\n name: 'title',\n header: 'Subject',\n bodyRenderer: row => html` <span>${row.title}</span>`,\n },\n {\n name: 'status',\n header: 'Status',\n bodyRenderer: row => html` <span\n style=\"display: flex;\n flex-direction: row;\n -webkit-box-align: center;\n align-items: center;\n padding: 2px 12px;\n width: 185px;\n height: 28px;\n left: 0px;\n top: 0px;\n border-radius: 68px;\n flex: 0 0 auto;\n order: 0;\n -webkit-box-flex: 0;\n color: white;\n -webkit-box-pack: center;\n justify-content: center;\n background: rgb(76, 175, 80);\n margin: -6px 0;\"\n >${row.status}</span\n >`,\n },\n {\n name: 'type',\n header: 'Ticket Type',\n bodyRenderer: row => html` <span>${row.ticketType}</span>`,\n },\n {\n name: 'updated',\n header: 'Updated On',\n bodyRenderer: row => html` <span>${row.updatedOn.split(' ')[0]}</span>`,\n },\n];\n"]}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare const contacts: {
|
|
2
|
+
id: string;
|
|
3
|
+
title: string;
|
|
4
|
+
status: string;
|
|
5
|
+
site: string;
|
|
6
|
+
requestType: string;
|
|
7
|
+
category: string;
|
|
8
|
+
isBulkRequest: boolean;
|
|
9
|
+
createdOn: string;
|
|
10
|
+
updatedOn: string;
|
|
11
|
+
closedOn: string;
|
|
12
|
+
createdBy: string;
|
|
13
|
+
ticketType: string;
|
|
14
|
+
description: string;
|
|
15
|
+
accessRequestedFor: string;
|
|
16
|
+
location: string;
|
|
17
|
+
}[];
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
export const contacts = [
|
|
2
|
+
{
|
|
3
|
+
id: 'WO10133499',
|
|
4
|
+
title: 'Request for New Permanent badge',
|
|
5
|
+
status: 'In Progress',
|
|
6
|
+
site: 'IAD035',
|
|
7
|
+
requestType: 'Permanent Badge',
|
|
8
|
+
category: 'New Badge',
|
|
9
|
+
isBulkRequest: false,
|
|
10
|
+
createdOn: '2024-05-17 15:53:29',
|
|
11
|
+
updatedOn: '2024-05-17 15:58:16',
|
|
12
|
+
closedOn: '',
|
|
13
|
+
createdBy: 'magic link1',
|
|
14
|
+
ticketType: 'Facility Access',
|
|
15
|
+
description: 'Request for New Permanent badge',
|
|
16
|
+
accessRequestedFor: 'asd asd',
|
|
17
|
+
location: 'LinkedIn Office 230-A',
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
id: 'WO10133500',
|
|
21
|
+
title: 'Request for Terminate Permanent badge',
|
|
22
|
+
status: 'Approved',
|
|
23
|
+
site: 'IAD035',
|
|
24
|
+
requestType: 'Permanent Badge',
|
|
25
|
+
category: 'Terminate All Access',
|
|
26
|
+
isBulkRequest: false,
|
|
27
|
+
createdOn: '2024-05-17 15:55:14',
|
|
28
|
+
updatedOn: '2024-05-17 15:55:59',
|
|
29
|
+
closedOn: '',
|
|
30
|
+
createdBy: 'magic link1',
|
|
31
|
+
ticketType: 'Facility Access',
|
|
32
|
+
description: 'Request for Terminate Permanent badge',
|
|
33
|
+
accessRequestedFor: 'asd asd',
|
|
34
|
+
location: 'S190 Data Center LinkedIn E',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
id: 'WO10128046',
|
|
38
|
+
title: 'CS8',
|
|
39
|
+
status: 'New',
|
|
40
|
+
site: 'IAD035',
|
|
41
|
+
requestType: 'Accounts Receivable',
|
|
42
|
+
category: 'General Billing Inquiry',
|
|
43
|
+
isBulkRequest: false,
|
|
44
|
+
createdOn: '2024-05-07 14:47:35',
|
|
45
|
+
updatedOn: '2024-05-17 14:47:35',
|
|
46
|
+
closedOn: '',
|
|
47
|
+
createdBy: 'magic link1',
|
|
48
|
+
ticketType: 'Customer Support',
|
|
49
|
+
description: 'CS8',
|
|
50
|
+
accessRequestedFor: ' ',
|
|
51
|
+
location: 'LinkedIn Office 230',
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
id: 'WO10128045',
|
|
55
|
+
title: 'CS8',
|
|
56
|
+
status: 'New',
|
|
57
|
+
site: 'IAD035',
|
|
58
|
+
requestType: 'Accounts Receivable',
|
|
59
|
+
category: 'General Billing Inquiry',
|
|
60
|
+
isBulkRequest: false,
|
|
61
|
+
createdOn: '2024-05-07 14:47:35',
|
|
62
|
+
updatedOn: '2024-05-17 14:47:35',
|
|
63
|
+
closedOn: '',
|
|
64
|
+
createdBy: 'magic link1',
|
|
65
|
+
ticketType: 'Customer Support',
|
|
66
|
+
description: 'CS8',
|
|
67
|
+
accessRequestedFor: ' ',
|
|
68
|
+
location: 'G100 Data Center LinkedIn K',
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
id: 'WO10127822',
|
|
72
|
+
title: 'Customer Support Title',
|
|
73
|
+
status: 'New',
|
|
74
|
+
site: 'IAD035',
|
|
75
|
+
requestType: 'Accounts Receivable',
|
|
76
|
+
category: 'General Billing Inquiry',
|
|
77
|
+
isBulkRequest: false,
|
|
78
|
+
createdOn: '2024-05-07 13:27:55',
|
|
79
|
+
updatedOn: '2024-05-17 13:27:55',
|
|
80
|
+
closedOn: '',
|
|
81
|
+
createdBy: 'magic link1',
|
|
82
|
+
ticketType: 'Customer Support',
|
|
83
|
+
description: 'Customer Support Title',
|
|
84
|
+
accessRequestedFor: ' ',
|
|
85
|
+
location: 'LinkedIn Office 230-A',
|
|
86
|
+
},
|
|
87
|
+
];
|
|
88
|
+
//# sourceMappingURL=contacts.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"contacts.js","sourceRoot":"","sources":["../../src/assets/contacts.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,QAAQ,GAAG;IACtB;QACE,EAAE,EAAE,YAAY;QAChB,KAAK,EAAE,iCAAiC;QACxC,MAAM,EAAE,aAAa;QACrB,IAAI,EAAE,QAAQ;QACd,WAAW,EAAE,iBAAiB;QAC9B,QAAQ,EAAE,WAAW;QACrB,aAAa,EAAE,KAAK;QACpB,SAAS,EAAE,qBAAqB;QAChC,SAAS,EAAE,qBAAqB;QAChC,QAAQ,EAAE,EAAE;QACZ,SAAS,EAAE,aAAa;QACxB,UAAU,EAAE,iBAAiB;QAC7B,WAAW,EAAE,iCAAiC;QAC9C,kBAAkB,EAAE,SAAS;QAC7B,QAAQ,EAAE,uBAAuB;KAClC;IACD;QACE,EAAE,EAAE,YAAY;QAChB,KAAK,EAAE,uCAAuC;QAC9C,MAAM,EAAE,UAAU;QAClB,IAAI,EAAE,QAAQ;QACd,WAAW,EAAE,iBAAiB;QAC9B,QAAQ,EAAE,sBAAsB;QAChC,aAAa,EAAE,KAAK;QACpB,SAAS,EAAE,qBAAqB;QAChC,SAAS,EAAE,qBAAqB;QAChC,QAAQ,EAAE,EAAE;QACZ,SAAS,EAAE,aAAa;QACxB,UAAU,EAAE,iBAAiB;QAC7B,WAAW,EAAE,uCAAuC;QACpD,kBAAkB,EAAE,SAAS;QAC7B,QAAQ,EAAE,6BAA6B;KACxC;IACD;QACE,EAAE,EAAE,YAAY;QAChB,KAAK,EAAE,KAAK;QACZ,MAAM,EAAE,KAAK;QACb,IAAI,EAAE,QAAQ;QACd,WAAW,EAAE,qBAAqB;QAClC,QAAQ,EAAE,yBAAyB;QACnC,aAAa,EAAE,KAAK;QACpB,SAAS,EAAE,qBAAqB;QAChC,SAAS,EAAE,qBAAqB;QAChC,QAAQ,EAAE,EAAE;QACZ,SAAS,EAAE,aAAa;QACxB,UAAU,EAAE,kBAAkB;QAC9B,WAAW,EAAE,KAAK;QAClB,kBAAkB,EAAE,GAAG;QACvB,QAAQ,EAAE,qBAAqB;KAChC;IACD;QACE,EAAE,EAAE,YAAY;QAChB,KAAK,EAAE,KAAK;QACZ,MAAM,EAAE,KAAK;QACb,IAAI,EAAE,QAAQ;QACd,WAAW,EAAE,qBAAqB;QAClC,QAAQ,EAAE,yBAAyB;QACnC,aAAa,EAAE,KAAK;QACpB,SAAS,EAAE,qBAAqB;QAChC,SAAS,EAAE,qBAAqB;QAChC,QAAQ,EAAE,EAAE;QACZ,SAAS,EAAE,aAAa;QACxB,UAAU,EAAE,kBAAkB;QAC9B,WAAW,EAAE,KAAK;QAClB,kBAAkB,EAAE,GAAG;QACvB,QAAQ,EAAE,6BAA6B;KACxC;IACD;QACE,EAAE,EAAE,YAAY;QAChB,KAAK,EAAE,wBAAwB;QAC/B,MAAM,EAAE,KAAK;QACb,IAAI,EAAE,QAAQ;QACd,WAAW,EAAE,qBAAqB;QAClC,QAAQ,EAAE,yBAAyB;QACnC,aAAa,EAAE,KAAK;QACpB,SAAS,EAAE,qBAAqB;QAChC,SAAS,EAAE,qBAAqB;QAChC,QAAQ,EAAE,EAAE;QACZ,SAAS,EAAE,aAAa;QACxB,UAAU,EAAE,kBAAkB;QAC9B,WAAW,EAAE,wBAAwB;QACrC,kBAAkB,EAAE,GAAG;QACvB,QAAQ,EAAE,uBAAuB;KAClC;CACF,CAAC","sourcesContent":["export const contacts = [\n {\n id: 'WO10133499',\n title: 'Request for New Permanent badge',\n status: 'In Progress',\n site: 'IAD035',\n requestType: 'Permanent Badge',\n category: 'New Badge',\n isBulkRequest: false,\n createdOn: '2024-05-17 15:53:29',\n updatedOn: '2024-05-17 15:58:16',\n closedOn: '',\n createdBy: 'magic link1',\n ticketType: 'Facility Access',\n description: 'Request for New Permanent badge',\n accessRequestedFor: 'asd asd',\n location: 'LinkedIn Office 230-A',\n },\n {\n id: 'WO10133500',\n title: 'Request for Terminate Permanent badge',\n status: 'Approved',\n site: 'IAD035',\n requestType: 'Permanent Badge',\n category: 'Terminate All Access',\n isBulkRequest: false,\n createdOn: '2024-05-17 15:55:14',\n updatedOn: '2024-05-17 15:55:59',\n closedOn: '',\n createdBy: 'magic link1',\n ticketType: 'Facility Access',\n description: 'Request for Terminate Permanent badge',\n accessRequestedFor: 'asd asd',\n location: 'S190 Data Center LinkedIn E',\n },\n {\n id: 'WO10128046',\n title: 'CS8',\n status: 'New',\n site: 'IAD035',\n requestType: 'Accounts Receivable',\n category: 'General Billing Inquiry',\n isBulkRequest: false,\n createdOn: '2024-05-07 14:47:35',\n updatedOn: '2024-05-17 14:47:35',\n closedOn: '',\n createdBy: 'magic link1',\n ticketType: 'Customer Support',\n description: 'CS8',\n accessRequestedFor: ' ',\n location: 'LinkedIn Office 230',\n },\n {\n id: 'WO10128045',\n title: 'CS8',\n status: 'New',\n site: 'IAD035',\n requestType: 'Accounts Receivable',\n category: 'General Billing Inquiry',\n isBulkRequest: false,\n createdOn: '2024-05-07 14:47:35',\n updatedOn: '2024-05-17 14:47:35',\n closedOn: '',\n createdBy: 'magic link1',\n ticketType: 'Customer Support',\n description: 'CS8',\n accessRequestedFor: ' ',\n location: 'G100 Data Center LinkedIn K',\n },\n {\n id: 'WO10127822',\n title: 'Customer Support Title',\n status: 'New',\n site: 'IAD035',\n requestType: 'Accounts Receivable',\n category: 'General Billing Inquiry',\n isBulkRequest: false,\n createdOn: '2024-05-07 13:27:55',\n updatedOn: '2024-05-17 13:27:55',\n closedOn: '',\n createdBy: 'magic link1',\n ticketType: 'Customer Support',\n description: 'Customer Support Title',\n accessRequestedFor: ' ',\n location: 'LinkedIn Office 230-A',\n },\n];\n"]}
|