@ptcwebops/ptcw-design 6.3.7 → 6.3.8
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/dist/cjs/{component-5b5b6a98.js → component-1b8ad4d2.js} +1 -1
- package/dist/cjs/{component-06dda623.js → component-35540bfb.js} +1 -1
- package/dist/cjs/ptc-countdown.cjs.entry.js +19 -16
- package/dist/cjs/ptc-data-lookup.cjs.entry.js +2 -2
- package/dist/cjs/ptc-form-checkbox_2.cjs.entry.js +1 -1
- package/dist/cjs/ptc-multi-select_2.cjs.entry.js +2 -2
- package/dist/collection/components/ptc-countdown/ptc-countdown.js +19 -16
- package/dist/custom-elements/index.js +20 -17
- package/dist/esm/{component-274da230.js → component-8c53e377.js} +1 -1
- package/dist/esm/{component-341e4eaa.js → component-9beac35b.js} +1 -1
- package/dist/esm/ptc-countdown.entry.js +19 -16
- package/dist/esm/ptc-data-lookup.entry.js +2 -2
- package/dist/esm/ptc-form-checkbox_2.entry.js +1 -1
- package/dist/esm/ptc-multi-select_2.entry.js +2 -2
- package/dist/ptcw-design/{p-114d0de7.entry.js → p-2cb2de0f.entry.js} +1 -1
- package/dist/ptcw-design/{p-1ca8a5bf.entry.js → p-5dae4f30.entry.js} +1 -1
- package/dist/ptcw-design/{p-be533f0d.js → p-98844b50.js} +1 -1
- package/dist/ptcw-design/{p-9fa958b9.entry.js → p-bab5bb88.entry.js} +1 -1
- package/dist/ptcw-design/{p-076efe50.entry.js → p-dd02e4d6.entry.js} +1 -1
- package/dist/ptcw-design/ptcw-design.esm.js +1 -1
- package/package.json +1 -1
- package/readme.md +1 -1
- /package/dist/ptcw-design/{p-c1513c3f.js → p-98426799.js} +0 -0
|
@@ -14,7 +14,7 @@ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
|
14
14
|
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
15
15
|
PERFORMANCE OF THIS SOFTWARE.
|
|
16
16
|
***************************************************************************** */
|
|
17
|
-
/* global Reflect, Promise, SuppressedError, Symbol */
|
|
17
|
+
/* global Reflect, Promise, SuppressedError, Symbol, Iterator */
|
|
18
18
|
|
|
19
19
|
var extendStatics = function(d, b) {
|
|
20
20
|
extendStatics = Object.setPrototypeOf ||
|
|
@@ -53,8 +53,26 @@ const PtcCountdown = class {
|
|
|
53
53
|
// Map time zone abbreviations to their offset in minutes.
|
|
54
54
|
getOffsetFromAbbr(abbr) {
|
|
55
55
|
const tzMapping = {
|
|
56
|
-
'
|
|
56
|
+
'PST': -480,
|
|
57
|
+
'PDT': -420,
|
|
58
|
+
'MST': -420,
|
|
59
|
+
'MDT': -360,
|
|
60
|
+
'CST': -360,
|
|
61
|
+
'CDT': -300,
|
|
62
|
+
'UTC': 0,
|
|
63
|
+
'BST': 60,
|
|
64
|
+
'GST': 240,
|
|
65
|
+
'KST': 540,
|
|
57
66
|
'ACST': 570,
|
|
67
|
+
'ACDT': 630,
|
|
68
|
+
'EST': -300,
|
|
69
|
+
'EDT': -240,
|
|
70
|
+
'CET': 60,
|
|
71
|
+
'CEST': 120,
|
|
72
|
+
'IST': 330,
|
|
73
|
+
'CST_CN': 480,
|
|
74
|
+
'JST': 540,
|
|
75
|
+
//Above shows the existing timezones in SC
|
|
58
76
|
'ADT': -180,
|
|
59
77
|
'AEDT': 660,
|
|
60
78
|
'AEST': 600,
|
|
@@ -62,25 +80,10 @@ const PtcCountdown = class {
|
|
|
62
80
|
'AKST': -540,
|
|
63
81
|
'AST': -240,
|
|
64
82
|
'AWST': 480,
|
|
65
|
-
'BST': 60,
|
|
66
|
-
'CDT': -300,
|
|
67
|
-
'CEST': 120,
|
|
68
|
-
'CET': 60,
|
|
69
|
-
'CST': -360,
|
|
70
|
-
'CST_CN': 480,
|
|
71
|
-
'EDT': -240,
|
|
72
83
|
'EEST': 180,
|
|
73
84
|
'EET': 120,
|
|
74
|
-
'EST': -300,
|
|
75
85
|
'GMT': 0,
|
|
76
86
|
'HKT': 480,
|
|
77
|
-
'IST': 330,
|
|
78
|
-
'JST': 540,
|
|
79
|
-
'MDT': -360,
|
|
80
|
-
'MST': -420,
|
|
81
|
-
'PDT': -420,
|
|
82
|
-
'PST': -480,
|
|
83
|
-
'UTC': 0,
|
|
84
87
|
};
|
|
85
88
|
return tzMapping[abbr] !== undefined ? tzMapping[abbr] : 0;
|
|
86
89
|
}
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
const index = require('./index-63ddc79c.js');
|
|
6
|
-
const component = require('./component-
|
|
7
|
-
require('./component-
|
|
6
|
+
const component = require('./component-35540bfb.js');
|
|
7
|
+
require('./component-1b8ad4d2.js');
|
|
8
8
|
|
|
9
9
|
// Define the ElqLib class
|
|
10
10
|
class ElqLib {
|
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
const index = require('./index-63ddc79c.js');
|
|
6
6
|
const validationMessages = require('./validation-messages-33a4f26b.js');
|
|
7
7
|
const utils = require('./utils-ad441b07.js');
|
|
8
|
-
const component = require('./component-
|
|
8
|
+
const component = require('./component-1b8ad4d2.js');
|
|
9
9
|
const _commonjsHelpers = require('./_commonjsHelpers-537d719a.js');
|
|
10
10
|
|
|
11
11
|
/**
|
|
@@ -5,8 +5,8 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
const index = require('./index-63ddc79c.js');
|
|
6
6
|
const validationMessages = require('./validation-messages-33a4f26b.js');
|
|
7
7
|
const utils = require('./utils-ad441b07.js');
|
|
8
|
-
const component = require('./component-
|
|
9
|
-
require('./component-
|
|
8
|
+
const component = require('./component-35540bfb.js');
|
|
9
|
+
require('./component-1b8ad4d2.js');
|
|
10
10
|
|
|
11
11
|
const ptcMultiSelectCss = "h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}.ptc-multi-select{position:relative;display:block;margin-bottom:var(--ptc-element-spacing-04)}.ptc-multi-select.invalid::before{content:\"\";position:absolute;width:calc(100% + 16px);height:calc(100% + 8px);background:#FEF3F3;display:flex;flex-direction:column;justify-content:center;z-index:0;left:50%;top:50%;transform:translate(-50%, -50%)}.ptc-multi-select.invalid .mdc-select-helper-text--validation-msg{z-index:2;opacity:1;position:relative;color:#AF3231;font-family:var(--ptc-font-latin);font-size:var(--ptc-font-size-xx-small);font-style:normal;font-weight:var(--ptc-font-weight-semibold);line-height:var(--ptc-line-height-densest);opacity:1;height:auto;margin-left:8px;margin-top:var(--ptc-element-spacing-02)}.ptc-multi-select.invalid .mdc-select-helper-text--validation-msg svg{transform:translate(-8px, 3px)}.ptc-multi-select .multi-select-label{display:block;font-size:var(--ptc-font-size-xx-small);font-weight:var(--ptc-font-weight-semibold);line-height:normal;margin-bottom:var(--ptc-element-spacing-01);z-index:1;position:relative;color:#40434A}.ptc-multi-select .selected-items{cursor:pointer;background-color:#fff;border:1px solid rgba(0, 0, 0, 0.38);padding:8px;border-radius:0px;position:relative;user-select:none;color:var(--color-gray-12);font-family:var(--ptc-font-latin);font-size:var(--ptc-font-size-xx-small);font-weight:var(--ptc-font-weight-regular);max-width:100%;max-height:34px;overflow:hidden;line-height:24px;display:flex;align-items:center}.ptc-multi-select .selected-items:focus-visible{border-radius:var(--ptc-border-radius-standard);outline:5px solid var(--keyboard-nav-outline);outline-offset:-4px}.ptc-multi-select .selected-items:focus{border:2px solid var(--color-blue-07)}.ptc-multi-select .selected-items[aria-expanded]{border:2px solid var(--color-blue-07)}.ptc-multi-select .selected-items .input-text{width:calc(100% - 18px);display:-webkit-box;-webkit-line-clamp:1;line-clamp:1;-webkit-box-orient:vertical;text-overflow:ellipsis}.ptc-multi-select .multi-select-icon{fill:rgba(0, 0, 0, 0.54);position:absolute;right:var(--ptc-element-spacing-02);width:18px;height:18px;margin:0 auto}.ptc-multi-select .multi-select-icon .multi-arrow-svg{transform:translate(-50%, 25%);position:relative;left:50%;bottom:25%}.ptc-multi-select .dropdown{display:none;list-style:none;padding:0;margin:0;border:1px solid #ccc;max-height:350px;overflow-y:auto;position:absolute;width:100%;background-color:#fff;z-index:1000;}.ptc-multi-select .dropdown.show{display:block}.ptc-multi-select .dropdown li{display:flex;align-items:center;padding:5px 8px;cursor:pointer;color:var(--color-gray-10);position:relative;}.ptc-multi-select .dropdown li:hover,.ptc-multi-select .dropdown li:focus-within{background-color:var(--color-gray-02)}.ptc-multi-select .dropdown li.selected{background-color:var(--color-gray-02)}.ptc-multi-select .dropdown li.selected:hover{background-color:var(--color-gray-04)}.ptc-multi-select .dropdown li label{display:-webkit-box;font-family:var(--ptc-font-latin);font-size:var(--ptc-font-size-xx-small);position:relative;padding-left:22px;cursor:pointer;width:100%;overflow:hidden;-webkit-line-clamp:4;line-clamp:4;-webkit-box-orient:vertical;text-overflow:ellipsis;line-height:24px}.ptc-multi-select .dropdown li:focus-within{background-color:var(--color-gray-02);outline:none}.ptc-multi-select .dropdown li:last-child{border-bottom:none}.ptc-multi-select .dropdown input[type=checkbox]{position:absolute;opacity:0;cursor:pointer}.ptc-multi-select .dropdown input[type=checkbox]:checked{background-color:var(--color-green-07)}.ptc-multi-select .dropdown label::before{content:\"\";position:absolute;left:0;top:5px;width:14px;height:14px;background-color:#fff;border:1px solid #ccc;box-sizing:border-box}.ptc-multi-select .dropdown input[type=checkbox]:checked+label::before{background-color:var(--color-green-07);border-color:var(--color-green-07)}.ptc-multi-select .dropdown input[type=checkbox]:checked+label::after{content:url(\"data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.15341 1.14134C7.0572 1.04719 6.94024 1 6.80262 1C6.66499 1 6.54771 1.04719 6.45158 1.14134L3.06571 4.45979L1.5485 2.96965C1.45197 2.8755 1.33501 2.82831 1.19738 2.82831C1.05976 2.82831 0.942797 2.8755 0.846348 2.96965L0.144437 3.65645C0.0482247 3.75091 0 3.86528 0 4.00004C0 4.13472 0.0482247 4.2494 0.144437 4.34355L2.01277 6.17186L2.71492 6.85866C2.81113 6.95312 2.92809 7 3.06571 7C3.20334 7 3.3203 6.95312 3.41675 6.85866L4.11866 6.17186L7.85556 2.51525C7.95177 2.42086 8 2.30641 8 2.17173C8 2.03705 7.95177 1.9226 7.85556 1.82814L7.15341 1.14134Z' fill='white'/%3E%3C/svg%3E\");position:absolute;left:3px;top:0px;color:white;width:8px;height:24px}.ptc-multi-select button.ddl-click-text{all:unset;cursor:pointer;color:var(--color-gray-7);text-decoration:underline;font-size:var(--ptc-font-size-xx-small);font-weight:var(--ptc-font-weight-semibold)}.ptc-multi-select .tooltip{position:absolute;transform:translate(0, -12px);z-index:1001;padding:8px;color:var(--color-white);font-size:var(--ptc-font-size-xxx-small);font-weight:var(--ptc-font-weight-semibold);background:var(--color-gray-09);box-shadow:0px 2px 4px rgba(0, 0, 0, 0.3);border:none;border-radius:2px;width:auto;height:fit-content;text-align:left;text-shadow:none;white-space:normal}.ptc-multi-select .tooltip::after{position:absolute;content:\"\";bottom:0px;border:8px solid transparent;border-top:8px solid var(--color-gray-09);left:50%;transform:translate(-50%, 100%)}@media only screen and (min-width: 992px){.ptc-multi-select .tooltip{width:273px;transform:translate(-100%, 80%)}.ptc-multi-select .tooltip::after{right:8px;left:auto;transform:translateY(100%)}}.ptc-multi-select .tooltip span{word-break:initial}";
|
|
12
12
|
|
|
@@ -39,8 +39,26 @@ export class PtcCountdown {
|
|
|
39
39
|
// Map time zone abbreviations to their offset in minutes.
|
|
40
40
|
getOffsetFromAbbr(abbr) {
|
|
41
41
|
const tzMapping = {
|
|
42
|
-
'
|
|
42
|
+
'PST': -480,
|
|
43
|
+
'PDT': -420,
|
|
44
|
+
'MST': -420,
|
|
45
|
+
'MDT': -360,
|
|
46
|
+
'CST': -360,
|
|
47
|
+
'CDT': -300,
|
|
48
|
+
'UTC': 0,
|
|
49
|
+
'BST': 60,
|
|
50
|
+
'GST': 240,
|
|
51
|
+
'KST': 540,
|
|
43
52
|
'ACST': 570,
|
|
53
|
+
'ACDT': 630,
|
|
54
|
+
'EST': -300,
|
|
55
|
+
'EDT': -240,
|
|
56
|
+
'CET': 60,
|
|
57
|
+
'CEST': 120,
|
|
58
|
+
'IST': 330,
|
|
59
|
+
'CST_CN': 480,
|
|
60
|
+
'JST': 540,
|
|
61
|
+
//Above shows the existing timezones in SC
|
|
44
62
|
'ADT': -180,
|
|
45
63
|
'AEDT': 660,
|
|
46
64
|
'AEST': 600,
|
|
@@ -48,25 +66,10 @@ export class PtcCountdown {
|
|
|
48
66
|
'AKST': -540,
|
|
49
67
|
'AST': -240,
|
|
50
68
|
'AWST': 480,
|
|
51
|
-
'BST': 60,
|
|
52
|
-
'CDT': -300,
|
|
53
|
-
'CEST': 120,
|
|
54
|
-
'CET': 60,
|
|
55
|
-
'CST': -360,
|
|
56
|
-
'CST_CN': 480,
|
|
57
|
-
'EDT': -240,
|
|
58
69
|
'EEST': 180,
|
|
59
70
|
'EET': 120,
|
|
60
|
-
'EST': -300,
|
|
61
71
|
'GMT': 0,
|
|
62
72
|
'HKT': 480,
|
|
63
|
-
'IST': 330,
|
|
64
|
-
'JST': 540,
|
|
65
|
-
'MDT': -360,
|
|
66
|
-
'MST': -420,
|
|
67
|
-
'PDT': -420,
|
|
68
|
-
'PST': -480,
|
|
69
|
-
'UTC': 0,
|
|
70
73
|
};
|
|
71
74
|
return tzMapping[abbr] !== undefined ? tzMapping[abbr] : 0;
|
|
72
75
|
}
|
|
@@ -12290,8 +12290,26 @@ const PtcCountdown$1 = class extends HTMLElement$1 {
|
|
|
12290
12290
|
// Map time zone abbreviations to their offset in minutes.
|
|
12291
12291
|
getOffsetFromAbbr(abbr) {
|
|
12292
12292
|
const tzMapping = {
|
|
12293
|
-
'
|
|
12293
|
+
'PST': -480,
|
|
12294
|
+
'PDT': -420,
|
|
12295
|
+
'MST': -420,
|
|
12296
|
+
'MDT': -360,
|
|
12297
|
+
'CST': -360,
|
|
12298
|
+
'CDT': -300,
|
|
12299
|
+
'UTC': 0,
|
|
12300
|
+
'BST': 60,
|
|
12301
|
+
'GST': 240,
|
|
12302
|
+
'KST': 540,
|
|
12294
12303
|
'ACST': 570,
|
|
12304
|
+
'ACDT': 630,
|
|
12305
|
+
'EST': -300,
|
|
12306
|
+
'EDT': -240,
|
|
12307
|
+
'CET': 60,
|
|
12308
|
+
'CEST': 120,
|
|
12309
|
+
'IST': 330,
|
|
12310
|
+
'CST_CN': 480,
|
|
12311
|
+
'JST': 540,
|
|
12312
|
+
//Above shows the existing timezones in SC
|
|
12295
12313
|
'ADT': -180,
|
|
12296
12314
|
'AEDT': 660,
|
|
12297
12315
|
'AEST': 600,
|
|
@@ -12299,25 +12317,10 @@ const PtcCountdown$1 = class extends HTMLElement$1 {
|
|
|
12299
12317
|
'AKST': -540,
|
|
12300
12318
|
'AST': -240,
|
|
12301
12319
|
'AWST': 480,
|
|
12302
|
-
'BST': 60,
|
|
12303
|
-
'CDT': -300,
|
|
12304
|
-
'CEST': 120,
|
|
12305
|
-
'CET': 60,
|
|
12306
|
-
'CST': -360,
|
|
12307
|
-
'CST_CN': 480,
|
|
12308
|
-
'EDT': -240,
|
|
12309
12320
|
'EEST': 180,
|
|
12310
12321
|
'EET': 120,
|
|
12311
|
-
'EST': -300,
|
|
12312
12322
|
'GMT': 0,
|
|
12313
12323
|
'HKT': 480,
|
|
12314
|
-
'IST': 330,
|
|
12315
|
-
'JST': 540,
|
|
12316
|
-
'MDT': -360,
|
|
12317
|
-
'MST': -420,
|
|
12318
|
-
'PDT': -420,
|
|
12319
|
-
'PST': -480,
|
|
12320
|
-
'UTC': 0,
|
|
12321
12324
|
};
|
|
12322
12325
|
return tzMapping[abbr] !== undefined ? tzMapping[abbr] : 0;
|
|
12323
12326
|
}
|
|
@@ -12424,7 +12427,7 @@ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
|
12424
12427
|
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
12425
12428
|
PERFORMANCE OF THIS SOFTWARE.
|
|
12426
12429
|
***************************************************************************** */
|
|
12427
|
-
/* global Reflect, Promise, SuppressedError, Symbol */
|
|
12430
|
+
/* global Reflect, Promise, SuppressedError, Symbol, Iterator */
|
|
12428
12431
|
|
|
12429
12432
|
var extendStatics = function(d, b) {
|
|
12430
12433
|
extendStatics = Object.setPrototypeOf ||
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as __extends, a as __assign, b as __read, c as __spreadArray, M as MDCFoundation, m as matches, d as closest, e as MDCComponent, f as __values, g as getCorrectPropertyName, h as MDCRipple, i as MDCRippleFoundation, j as MDCFloatingLabel, k as MDCLineRipple, l as MDCNotchedOutline } from './component-
|
|
1
|
+
import { _ as __extends, a as __assign, b as __read, c as __spreadArray, M as MDCFoundation, m as matches, d as closest, e as MDCComponent, f as __values, g as getCorrectPropertyName, h as MDCRipple, i as MDCRippleFoundation, j as MDCFloatingLabel, k as MDCLineRipple, l as MDCNotchedOutline } from './component-9beac35b.js';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* @license
|
|
@@ -12,7 +12,7 @@ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
|
12
12
|
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
13
13
|
PERFORMANCE OF THIS SOFTWARE.
|
|
14
14
|
***************************************************************************** */
|
|
15
|
-
/* global Reflect, Promise, SuppressedError, Symbol */
|
|
15
|
+
/* global Reflect, Promise, SuppressedError, Symbol, Iterator */
|
|
16
16
|
|
|
17
17
|
var extendStatics = function(d, b) {
|
|
18
18
|
extendStatics = Object.setPrototypeOf ||
|
|
@@ -49,8 +49,26 @@ const PtcCountdown = class {
|
|
|
49
49
|
// Map time zone abbreviations to their offset in minutes.
|
|
50
50
|
getOffsetFromAbbr(abbr) {
|
|
51
51
|
const tzMapping = {
|
|
52
|
-
'
|
|
52
|
+
'PST': -480,
|
|
53
|
+
'PDT': -420,
|
|
54
|
+
'MST': -420,
|
|
55
|
+
'MDT': -360,
|
|
56
|
+
'CST': -360,
|
|
57
|
+
'CDT': -300,
|
|
58
|
+
'UTC': 0,
|
|
59
|
+
'BST': 60,
|
|
60
|
+
'GST': 240,
|
|
61
|
+
'KST': 540,
|
|
53
62
|
'ACST': 570,
|
|
63
|
+
'ACDT': 630,
|
|
64
|
+
'EST': -300,
|
|
65
|
+
'EDT': -240,
|
|
66
|
+
'CET': 60,
|
|
67
|
+
'CEST': 120,
|
|
68
|
+
'IST': 330,
|
|
69
|
+
'CST_CN': 480,
|
|
70
|
+
'JST': 540,
|
|
71
|
+
//Above shows the existing timezones in SC
|
|
54
72
|
'ADT': -180,
|
|
55
73
|
'AEDT': 660,
|
|
56
74
|
'AEST': 600,
|
|
@@ -58,25 +76,10 @@ const PtcCountdown = class {
|
|
|
58
76
|
'AKST': -540,
|
|
59
77
|
'AST': -240,
|
|
60
78
|
'AWST': 480,
|
|
61
|
-
'BST': 60,
|
|
62
|
-
'CDT': -300,
|
|
63
|
-
'CEST': 120,
|
|
64
|
-
'CET': 60,
|
|
65
|
-
'CST': -360,
|
|
66
|
-
'CST_CN': 480,
|
|
67
|
-
'EDT': -240,
|
|
68
79
|
'EEST': 180,
|
|
69
80
|
'EET': 120,
|
|
70
|
-
'EST': -300,
|
|
71
81
|
'GMT': 0,
|
|
72
82
|
'HKT': 480,
|
|
73
|
-
'IST': 330,
|
|
74
|
-
'JST': 540,
|
|
75
|
-
'MDT': -360,
|
|
76
|
-
'MST': -420,
|
|
77
|
-
'PDT': -420,
|
|
78
|
-
'PST': -480,
|
|
79
|
-
'UTC': 0,
|
|
80
83
|
};
|
|
81
84
|
return tzMapping[abbr] !== undefined ? tzMapping[abbr] : 0;
|
|
82
85
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { r as registerInstance, h, g as getElement } from './index-c83db688.js';
|
|
2
|
-
import { M as MDCSelect } from './component-
|
|
3
|
-
import './component-
|
|
2
|
+
import { M as MDCSelect } from './component-8c53e377.js';
|
|
3
|
+
import './component-9beac35b.js';
|
|
4
4
|
|
|
5
5
|
// Define the ElqLib class
|
|
6
6
|
class ElqLib {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { r as registerInstance, c as createEvent, h, H as Host, g as getElement } from './index-c83db688.js';
|
|
2
2
|
import { V as ValidationMessages } from './validation-messages-adbb6518.js';
|
|
3
3
|
import { h as getLanguageFromURL } from './utils-63eab4bd.js';
|
|
4
|
-
import { _ as __extends, a as __assign, M as MDCFoundation, n as getCorrectEventName, h as MDCRipple, o as applyPassive, m as matches, i as MDCRippleFoundation, f as __values, e as MDCComponent, k as MDCLineRipple, j as MDCFloatingLabel, l as MDCNotchedOutline } from './component-
|
|
4
|
+
import { _ as __extends, a as __assign, M as MDCFoundation, n as getCorrectEventName, h as MDCRipple, o as applyPassive, m as matches, i as MDCRippleFoundation, f as __values, e as MDCComponent, k as MDCLineRipple, j as MDCFloatingLabel, l as MDCNotchedOutline } from './component-9beac35b.js';
|
|
5
5
|
import { c as createCommonjsModule } from './_commonjsHelpers-9943807e.js';
|
|
6
6
|
|
|
7
7
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { r as registerInstance, c as createEvent, h, H as Host, g as getElement } from './index-c83db688.js';
|
|
2
2
|
import { V as ValidationMessages } from './validation-messages-adbb6518.js';
|
|
3
3
|
import { h as getLanguageFromURL } from './utils-63eab4bd.js';
|
|
4
|
-
import { M as MDCSelect } from './component-
|
|
5
|
-
import './component-
|
|
4
|
+
import { M as MDCSelect } from './component-8c53e377.js';
|
|
5
|
+
import './component-9beac35b.js';
|
|
6
6
|
|
|
7
7
|
const ptcMultiSelectCss = "h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}.ptc-multi-select{position:relative;display:block;margin-bottom:var(--ptc-element-spacing-04)}.ptc-multi-select.invalid::before{content:\"\";position:absolute;width:calc(100% + 16px);height:calc(100% + 8px);background:#FEF3F3;display:flex;flex-direction:column;justify-content:center;z-index:0;left:50%;top:50%;transform:translate(-50%, -50%)}.ptc-multi-select.invalid .mdc-select-helper-text--validation-msg{z-index:2;opacity:1;position:relative;color:#AF3231;font-family:var(--ptc-font-latin);font-size:var(--ptc-font-size-xx-small);font-style:normal;font-weight:var(--ptc-font-weight-semibold);line-height:var(--ptc-line-height-densest);opacity:1;height:auto;margin-left:8px;margin-top:var(--ptc-element-spacing-02)}.ptc-multi-select.invalid .mdc-select-helper-text--validation-msg svg{transform:translate(-8px, 3px)}.ptc-multi-select .multi-select-label{display:block;font-size:var(--ptc-font-size-xx-small);font-weight:var(--ptc-font-weight-semibold);line-height:normal;margin-bottom:var(--ptc-element-spacing-01);z-index:1;position:relative;color:#40434A}.ptc-multi-select .selected-items{cursor:pointer;background-color:#fff;border:1px solid rgba(0, 0, 0, 0.38);padding:8px;border-radius:0px;position:relative;user-select:none;color:var(--color-gray-12);font-family:var(--ptc-font-latin);font-size:var(--ptc-font-size-xx-small);font-weight:var(--ptc-font-weight-regular);max-width:100%;max-height:34px;overflow:hidden;line-height:24px;display:flex;align-items:center}.ptc-multi-select .selected-items:focus-visible{border-radius:var(--ptc-border-radius-standard);outline:5px solid var(--keyboard-nav-outline);outline-offset:-4px}.ptc-multi-select .selected-items:focus{border:2px solid var(--color-blue-07)}.ptc-multi-select .selected-items[aria-expanded]{border:2px solid var(--color-blue-07)}.ptc-multi-select .selected-items .input-text{width:calc(100% - 18px);display:-webkit-box;-webkit-line-clamp:1;line-clamp:1;-webkit-box-orient:vertical;text-overflow:ellipsis}.ptc-multi-select .multi-select-icon{fill:rgba(0, 0, 0, 0.54);position:absolute;right:var(--ptc-element-spacing-02);width:18px;height:18px;margin:0 auto}.ptc-multi-select .multi-select-icon .multi-arrow-svg{transform:translate(-50%, 25%);position:relative;left:50%;bottom:25%}.ptc-multi-select .dropdown{display:none;list-style:none;padding:0;margin:0;border:1px solid #ccc;max-height:350px;overflow-y:auto;position:absolute;width:100%;background-color:#fff;z-index:1000;}.ptc-multi-select .dropdown.show{display:block}.ptc-multi-select .dropdown li{display:flex;align-items:center;padding:5px 8px;cursor:pointer;color:var(--color-gray-10);position:relative;}.ptc-multi-select .dropdown li:hover,.ptc-multi-select .dropdown li:focus-within{background-color:var(--color-gray-02)}.ptc-multi-select .dropdown li.selected{background-color:var(--color-gray-02)}.ptc-multi-select .dropdown li.selected:hover{background-color:var(--color-gray-04)}.ptc-multi-select .dropdown li label{display:-webkit-box;font-family:var(--ptc-font-latin);font-size:var(--ptc-font-size-xx-small);position:relative;padding-left:22px;cursor:pointer;width:100%;overflow:hidden;-webkit-line-clamp:4;line-clamp:4;-webkit-box-orient:vertical;text-overflow:ellipsis;line-height:24px}.ptc-multi-select .dropdown li:focus-within{background-color:var(--color-gray-02);outline:none}.ptc-multi-select .dropdown li:last-child{border-bottom:none}.ptc-multi-select .dropdown input[type=checkbox]{position:absolute;opacity:0;cursor:pointer}.ptc-multi-select .dropdown input[type=checkbox]:checked{background-color:var(--color-green-07)}.ptc-multi-select .dropdown label::before{content:\"\";position:absolute;left:0;top:5px;width:14px;height:14px;background-color:#fff;border:1px solid #ccc;box-sizing:border-box}.ptc-multi-select .dropdown input[type=checkbox]:checked+label::before{background-color:var(--color-green-07);border-color:var(--color-green-07)}.ptc-multi-select .dropdown input[type=checkbox]:checked+label::after{content:url(\"data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.15341 1.14134C7.0572 1.04719 6.94024 1 6.80262 1C6.66499 1 6.54771 1.04719 6.45158 1.14134L3.06571 4.45979L1.5485 2.96965C1.45197 2.8755 1.33501 2.82831 1.19738 2.82831C1.05976 2.82831 0.942797 2.8755 0.846348 2.96965L0.144437 3.65645C0.0482247 3.75091 0 3.86528 0 4.00004C0 4.13472 0.0482247 4.2494 0.144437 4.34355L2.01277 6.17186L2.71492 6.85866C2.81113 6.95312 2.92809 7 3.06571 7C3.20334 7 3.3203 6.95312 3.41675 6.85866L4.11866 6.17186L7.85556 2.51525C7.95177 2.42086 8 2.30641 8 2.17173C8 2.03705 7.95177 1.9226 7.85556 1.82814L7.15341 1.14134Z' fill='white'/%3E%3C/svg%3E\");position:absolute;left:3px;top:0px;color:white;width:8px;height:24px}.ptc-multi-select button.ddl-click-text{all:unset;cursor:pointer;color:var(--color-gray-7);text-decoration:underline;font-size:var(--ptc-font-size-xx-small);font-weight:var(--ptc-font-weight-semibold)}.ptc-multi-select .tooltip{position:absolute;transform:translate(0, -12px);z-index:1001;padding:8px;color:var(--color-white);font-size:var(--ptc-font-size-xxx-small);font-weight:var(--ptc-font-weight-semibold);background:var(--color-gray-09);box-shadow:0px 2px 4px rgba(0, 0, 0, 0.3);border:none;border-radius:2px;width:auto;height:fit-content;text-align:left;text-shadow:none;white-space:normal}.ptc-multi-select .tooltip::after{position:absolute;content:\"\";bottom:0px;border:8px solid transparent;border-top:8px solid var(--color-gray-09);left:50%;transform:translate(-50%, 100%)}@media only screen and (min-width: 992px){.ptc-multi-select .tooltip{width:273px;transform:translate(-100%, 80%)}.ptc-multi-select .tooltip::after{right:8px;left:auto;transform:translateY(100%)}}.ptc-multi-select .tooltip span{word-break:initial}";
|
|
8
8
|
|