@ptcwebops/ptcw-design 2.0.6 → 2.0.7
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/featured-list.cjs.entry.js +93 -0
- package/dist/cjs/fl-tab-content_11.cjs.entry.js +34 -42
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/ptc-modal.cjs.entry.js +1 -1
- package/dist/cjs/ptcw-design.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +1 -0
- package/dist/collection/components/organism-bundles/bundle-featured-list/featured-list.css +218 -0
- package/dist/collection/components/organism-bundles/bundle-featured-list/featured-list.js +115 -0
- package/dist/collection/components/ptc-featured-list/fl-tab-content/fl-tab-content.js +3 -3
- package/dist/collection/components/ptc-featured-list/fl-tab-header/fl-tab-header.js +4 -4
- package/dist/collection/components/ptc-featured-list/fl-tab-image/fl-tab-image.js +3 -3
- package/dist/collection/components/ptc-featured-list/ptc-featured-list.js +30 -38
- package/dist/collection/components/ptc-modal/ptc-modal.css +1 -1
- package/dist/custom-elements/index.d.ts +6 -0
- package/dist/custom-elements/index.js +129 -47
- package/dist/esm/featured-list.entry.js +89 -0
- package/dist/esm/fl-tab-content_11.entry.js +34 -42
- package/dist/esm/loader.js +1 -1
- package/dist/esm/ptc-modal.entry.js +1 -1
- package/dist/esm/ptcw-design.js +1 -1
- package/dist/ptcw-design/p-7c49a1f7.entry.js +1 -0
- package/dist/ptcw-design/p-82295854.entry.js +1 -0
- package/dist/ptcw-design/{p-4be56588.entry.js → p-890bfcd3.entry.js} +1 -1
- package/dist/ptcw-design/ptcw-design.esm.js +1 -1
- package/dist/types/components/organism-bundles/bundle-featured-list/featured-list.d.ts +12 -0
- package/dist/types/components/ptc-featured-list/fl-tab-content/fl-tab-content.d.ts +1 -1
- package/dist/types/components/ptc-featured-list/fl-tab-header/fl-tab-header.d.ts +1 -1
- package/dist/types/components/ptc-featured-list/fl-tab-image/fl-tab-image.d.ts +1 -1
- package/dist/types/components/ptc-featured-list/ptc-featured-list.d.ts +1 -0
- package/dist/types/components.d.ts +19 -6
- package/package.json +1 -1
- package/readme.md +1 -1
- package/dist/ptcw-design/p-2d666a05.entry.js +0 -1
|
@@ -17,11 +17,18 @@ export class PtcFeaturedList {
|
|
|
17
17
|
}
|
|
18
18
|
holdTabOnResize(name) {
|
|
19
19
|
const contentBlocks = this.hostElement.shadowRoot.querySelectorAll(`fl-tab-content`);
|
|
20
|
+
const headerBlocks = this.hostElement.shadowRoot.querySelectorAll(`fl-tab-header`);
|
|
20
21
|
contentBlocks.forEach(content => {
|
|
21
22
|
if (content.classList.contains("init-active")) {
|
|
22
23
|
content.classList.remove("init-active");
|
|
23
24
|
}
|
|
24
|
-
content.
|
|
25
|
+
content.getAttribute('name-key') === name ? (content.setAttribute('selected', 'selected')) : (content.removeAttribute('selected'));
|
|
26
|
+
});
|
|
27
|
+
headerBlocks.forEach(header => {
|
|
28
|
+
if (header.classList.contains("init-active")) {
|
|
29
|
+
header.classList.remove("init-active");
|
|
30
|
+
}
|
|
31
|
+
header.getAttribute('name-key') === name ? (header.setAttribute('selected', 'selected')) : (header.removeAttribute('selected'));
|
|
25
32
|
});
|
|
26
33
|
}
|
|
27
34
|
selectTab(name) {
|
|
@@ -32,59 +39,44 @@ export class PtcFeaturedList {
|
|
|
32
39
|
if (image.classList.contains("init-active")) {
|
|
33
40
|
image.classList.remove("init-active");
|
|
34
41
|
}
|
|
35
|
-
image.
|
|
42
|
+
image.getAttribute('name-key') === name ? (image.setAttribute('selected', 'selected')) : (image.removeAttribute('selected'));
|
|
36
43
|
});
|
|
37
44
|
contentBlocks.forEach(content => {
|
|
38
|
-
|
|
39
|
-
if (content.name === name) {
|
|
40
|
-
if (content.classList.contains("init-active")) {
|
|
41
|
-
content.selected = false;
|
|
42
|
-
}
|
|
43
|
-
else {
|
|
44
|
-
content.selected = !content.selected;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
else {
|
|
48
|
-
content.selected = false;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
else {
|
|
52
|
-
content.selected = content.name === name;
|
|
53
|
-
}
|
|
54
|
-
if (content.classList.contains("init-active")) {
|
|
55
|
-
content.classList.remove("init-active");
|
|
56
|
-
}
|
|
45
|
+
this.updateActiveTab(name, content);
|
|
57
46
|
});
|
|
58
47
|
headerBlocks.forEach(header => {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
48
|
+
this.updateActiveTab(name, header);
|
|
49
|
+
});
|
|
50
|
+
}
|
|
51
|
+
updateActiveTab(name, tabName) {
|
|
52
|
+
if (this.isMobile) {
|
|
53
|
+
if (tabName.getAttribute('name-key') === name) {
|
|
54
|
+
if (tabName.classList.contains("init-active")) {
|
|
55
|
+
tabName.removeAttribute('selected');
|
|
67
56
|
}
|
|
68
57
|
else {
|
|
69
|
-
|
|
58
|
+
tabName.getAttribute('selected') == 'selected' ? (tabName.removeAttribute('selected')) : (tabName.setAttribute('selected', 'selected'));
|
|
70
59
|
}
|
|
71
60
|
}
|
|
72
61
|
else {
|
|
73
|
-
|
|
62
|
+
tabName.removeAttribute('selected');
|
|
74
63
|
}
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
}
|
|
64
|
+
}
|
|
65
|
+
else {
|
|
66
|
+
tabName.getAttribute('name-key') === name ? (tabName.setAttribute('selected', 'selected')) : (tabName.removeAttribute('selected'));
|
|
67
|
+
}
|
|
68
|
+
if (tabName.classList.contains("init-active")) {
|
|
69
|
+
tabName.classList.remove("init-active");
|
|
70
|
+
}
|
|
79
71
|
}
|
|
80
72
|
render() {
|
|
81
|
-
return (h(Host, null, h("div", { class: "featured-image-wrap" }, h("fl-tab-image", { name: "tab-01", class: "init-active" }, h("ptc-img", { "image-type": "smart-bg", "image-alignment": "center", "img-url": "http://s7d1.scene7.com/is/image/ptcinc/cs-boeing-planes-runway" })), h("fl-tab-image", { name: "tab-02" }, h("ptc-background-video", { overlay: false, "play-button-title": "Play", "pause-button-title": "Pause", "video-src": "https://www.ptc.com/en/www.ptc.com//-/media/Videos/BRAND-FILM-CAR-SECTION-short-1mb.mp4", "poster-src": "https://www.ptc.com/-/media/Images/new-org/misc/W232501-LWX23-Hero-Banner-Video-FINAL-jebyrne-110922-screenshot.jpg" })), h("fl-tab-image", { name: "tab-03" }, h("ptc-img", { "image-type": "smart-bg", "image-alignment": "center", "img-url": "https://www.ptc.com/-/media/Images/new-org/1366x542/CIMC-1366x542.jpg?h=542&w=1366&la=en&hash=56AE14F73CFB62C24276D08E556B0949" })), h("fl-tab-image", { name: "tab-04" }, h("ptc-img", { "image-type": "smart-bg", "image-alignment": "center", "img-url": "https://www.ptc.com/-/media/Images/new-org/1366x542/ThingWorx_IIOT_CaterpillarCS_Img_1366x542.jpg?h=542&w=1366&la=en&hash=627ED00C1F58E3677A06F50C0F3009D6" }))), this.isMobile ? (
|
|
73
|
+
return (h(Host, null, h("div", { class: "featured-image-wrap" }, h("fl-tab-image", { "name-key": "tab-01", class: "init-active" }, h("ptc-img", { "image-type": "smart-bg", "image-alignment": "center", "img-url": "http://s7d1.scene7.com/is/image/ptcinc/cs-boeing-planes-runway" })), h("fl-tab-image", { "name-key": "tab-02" }, h("ptc-background-video", { overlay: false, "play-button-title": "Play", "pause-button-title": "Pause", "video-src": "https://www.ptc.com/en/www.ptc.com//-/media/Videos/BRAND-FILM-CAR-SECTION-short-1mb.mp4", "poster-src": "https://www.ptc.com/-/media/Images/new-org/misc/W232501-LWX23-Hero-Banner-Video-FINAL-jebyrne-110922-screenshot.jpg" })), h("fl-tab-image", { "name-key": "tab-03" }, h("ptc-img", { "image-type": "smart-bg", "image-alignment": "center", "img-url": "https://www.ptc.com/-/media/Images/new-org/1366x542/CIMC-1366x542.jpg?h=542&w=1366&la=en&hash=56AE14F73CFB62C24276D08E556B0949" })), h("fl-tab-image", { "name-key": "tab-04" }, h("ptc-img", { "image-type": "smart-bg", "image-alignment": "center", "img-url": "https://www.ptc.com/-/media/Images/new-org/1366x542/ThingWorx_IIOT_CaterpillarCS_Img_1366x542.jpg?h=542&w=1366&la=en&hash=627ED00C1F58E3677A06F50C0F3009D6" }))), this.isMobile ? (
|
|
82
74
|
// Code for mobile only
|
|
83
|
-
h("div", { class: "mobile-wrapper" }, h("div", { class: 'acc-item' }, h("fl-tab-header", { name: "tab-01", "tab-title": "Aerospace & Defense", class: "init-active" }, " "), h("fl-tab-content", { name: "tab-01", class: "init-active" }, h("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h("a", { href: '#' }, "See More about Aerospace & Defense"))), h("div", { class: 'acc-item' }, h("fl-tab-header", { name: "tab-02", "tab-title": "Automotive" }), h("fl-tab-content", { name: "tab-02" }, h("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h("a", { href: '#' }, "See More about Aerospace & Defense"))), h("div", { class: 'acc-item' }, h("fl-tab-header", { name: "tab-03", "tab-title": "Electronics & High-Tech" }), h("fl-tab-content", { name: "tab-03" }, h("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h("a", { href: '#' }, "See More about Aerospace & Defense"))), h("div", { class: 'acc-item' }, h("fl-tab-header", { name: "tab-04", "tab-title": "Retail & Consumer Products" }), h("fl-tab-content", { name: "tab-04" }, h("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h("a", { href: '#' }, "See More about Aerospace & Defense")))))
|
|
75
|
+
h("div", { class: "mobile-wrapper" }, h("div", { class: 'acc-item' }, h("fl-tab-header", { "name-key": "tab-01", "tab-title": "Aerospace & Defense", class: "init-active" }, " "), h("fl-tab-content", { "name-key": "tab-01", class: "init-active" }, h("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h("a", { href: '#' }, "See More about Aerospace & Defense"))), h("div", { class: 'acc-item' }, h("fl-tab-header", { "name-key": "tab-02", "tab-title": "Automotive" }), h("fl-tab-content", { "name-key": "tab-02" }, h("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h("a", { href: '#' }, "See More about Aerospace & Defense"))), h("div", { class: 'acc-item' }, h("fl-tab-header", { "name-key": "tab-03", "tab-title": "Electronics & High-Tech" }), h("fl-tab-content", { "name-key": "tab-03" }, h("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h("a", { href: '#' }, "See More about Aerospace & Defense"))), h("div", { class: 'acc-item' }, h("fl-tab-header", { "name-key": "tab-04", "tab-title": "Retail & Consumer Products" }), h("fl-tab-content", { "name-key": "tab-04" }, h("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h("a", { href: '#' }, "See More about Aerospace & Defense")))))
|
|
84
76
|
:
|
|
85
77
|
(
|
|
86
78
|
// Code for Desktop only
|
|
87
|
-
h("div", { class: "non-mobile-wrapper" }, h("div", { class: "header-list-wrap" }, h("fl-tab-header", { name: "tab-01", "tab-title": "Aerospace & Defense", class: "init-active" }, " "), h("fl-tab-header", { name: "tab-02", "tab-title": "Automotive" }), h("fl-tab-header", { name: "tab-03", "tab-title": "Electronics & High-Tech" }), h("fl-tab-header", { name: "tab-04", "tab-title": "Retail & Consumer Products" })), h("div", { class: "content-wrap" }, h("fl-tab-content", { name: "tab-01", class: "init-active" }, h("ptc-title", { type: 'h3', "title-size": 'large', upperline: "no-upperline", "title-margin": 'margin-flush' }, "Aerospace & Defense"), h("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h("a", { href: '#' }, "See More about Aerospace & Defense")), h("fl-tab-content", { name: "tab-02" }, h("ptc-title", { type: 'h3', "title-size": 'large', upperline: "no-upperline", "title-margin": 'margin-flush' }, "Automotive"), h("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h("a", { href: '#' }, "See More about Aerospace & Defense")), h("fl-tab-content", { name: "tab-03" }, h("ptc-title", { type: 'h3', "title-size": 'large', upperline: "no-upperline", "title-margin": 'margin-flush' }, "Electronics & High-Tech"), h("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Deliver the future of transportation and mobility and gain competitive advantage. Explore automotive solutions for OEMs and suppliers so your team can help drive the future of transportation."), h("a", { href: '#' }, "See More about Aerospace & Defense")), h("fl-tab-content", { name: "tab-04" }, h("ptc-title", { type: 'h3', "title-size": 'large', upperline: "no-upperline", "title-margin": 'margin-flush' }, "Retail & Consumer Products"), h("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Navigate supply chain disruption while maximizing revenue growth and sustainability. Explore how PTC\u2019s digital solutions can accelerate product innovation, supply chain collaboration, and more."), h("a", { href: '#' }, "See More about Aerospace & Defense")))))));
|
|
79
|
+
h("div", { class: "non-mobile-wrapper" }, h("div", { class: "header-list-wrap" }, h("fl-tab-header", { "name-key": "tab-01", "tab-title": "Aerospace & Defense", class: "init-active" }, " "), h("fl-tab-header", { "name-key": "tab-02", "tab-title": "Automotive" }), h("fl-tab-header", { "name-key": "tab-03", "tab-title": "Electronics & High-Tech" }), h("fl-tab-header", { "name-key": "tab-04", "tab-title": "Retail & Consumer Products" })), h("div", { class: "content-wrap" }, h("fl-tab-content", { "name-key": "tab-01", class: "init-active" }, h("ptc-title", { type: 'h3', "title-size": 'large', upperline: "no-upperline", "title-margin": 'margin-flush' }, "Aerospace & Defense"), h("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h("a", { href: '#' }, "See More about Aerospace & Defense")), h("fl-tab-content", { "name-key": "tab-02" }, h("ptc-title", { type: 'h3', "title-size": 'large', upperline: "no-upperline", "title-margin": 'margin-flush' }, "Automotive"), h("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h("a", { href: '#' }, "See More about Aerospace & Defense")), h("fl-tab-content", { "name-key": "tab-03" }, h("ptc-title", { type: 'h3', "title-size": 'large', upperline: "no-upperline", "title-margin": 'margin-flush' }, "Electronics & High-Tech"), h("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Deliver the future of transportation and mobility and gain competitive advantage. Explore automotive solutions for OEMs and suppliers so your team can help drive the future of transportation."), h("a", { href: '#' }, "See More about Aerospace & Defense")), h("fl-tab-content", { "name-key": "tab-04" }, h("ptc-title", { type: 'h3', "title-size": 'large', upperline: "no-upperline", "title-margin": 'margin-flush' }, "Retail & Consumer Products"), h("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Navigate supply chain disruption while maximizing revenue growth and sustainability. Explore how PTC\u2019s digital solutions can accelerate product innovation, supply chain collaboration, and more."), h("a", { href: '#' }, "See More about Aerospace & Defense")))))));
|
|
88
80
|
}
|
|
89
81
|
static get is() { return "ptc-featured-list"; }
|
|
90
82
|
static get encapsulation() { return "shadow"; }
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
margin-top: var(--ptc-element-spacing-03);
|
|
66
66
|
}
|
|
67
67
|
.wrapper .modal-popup.shadow-scroller {
|
|
68
|
-
max-height: calc(100vh -
|
|
68
|
+
max-height: calc(100vh - 220px);
|
|
69
69
|
}
|
|
70
70
|
@media only screen and (min-width: 992px) {
|
|
71
71
|
.wrapper .modal-popup.shadow-scroller {
|
|
@@ -26,6 +26,12 @@ export const DynamicBoxBundle: {
|
|
|
26
26
|
new (): DynamicBoxBundle;
|
|
27
27
|
};
|
|
28
28
|
|
|
29
|
+
interface FeaturedList extends Components.FeaturedList, HTMLElement {}
|
|
30
|
+
export const FeaturedList: {
|
|
31
|
+
prototype: FeaturedList;
|
|
32
|
+
new (): FeaturedList;
|
|
33
|
+
};
|
|
34
|
+
|
|
29
35
|
interface FlTabContent extends Components.FlTabContent, HTMLElement {}
|
|
30
36
|
export const FlTabContent: {
|
|
31
37
|
prototype: FlTabContent;
|
|
@@ -128,6 +128,94 @@ const DynamicBoxBundle$1 = class extends HTMLElement$1 {
|
|
|
128
128
|
static get style() { return dynamicBoxBundleCss; }
|
|
129
129
|
};
|
|
130
130
|
|
|
131
|
+
const featuredListCss = "a {\r\n font-family: var(--ptc-font-latin);\r\n font-style: var(--ptc-font-style-normal);\r\n text-decoration-line: underline;\r\n color: var(--color-blue-07);\r\n transition: color var(--ptc-transition-medium) var(--ptc-ease-out);\r\n font-weight: var(--ptc-font-weight-bold);\r\n\r\n &:visited {\r\n color: var(--color-blue-10);\r\n }\r\n\r\n &:active,\r\n &:visited:active {\r\n // pressed\r\n color: var(--color-blue-09);\r\n }\r\n\r\n &:hover,\r\n &:visited:hover {\r\n color: var(--color-blue-08);\r\n }\r\n\r\n &.disabled {\r\n color: var(--color-gray-04) !important;\r\n cursor: not-allowed;\r\n }\r\n}\r\n\r\n.light-links,.background-grey-10,.background-plm-grey {\r\n a, a.light-link {\r\n color: var(--color-blue-04);\r\n\r\n &:visited {\r\n color: var(--color-blue-06);\r\n }\r\n\r\n &:active,\r\n &:visited:active {\r\n // pressed\r\n color: var(--color-blue-07);\r\n }\r\n\r\n &:hover,\r\n &:visited:hover {\r\n color: var(--color-blue-05);\r\n }\r\n\r\n &.disabled {\r\n color: var(--color-gray-04) !important;\r\n cursor: not-allowed;\r\n }\r\n }\r\n}\r\n\r\n.ptc-link {\r\n color: var(--color-gray-10);\r\n text-decoration: underline;\r\n text-decoration-thickness: 2px;\r\n text-decoration-color: var(--color-green-06);\r\n text-underline-offset: 5px;\r\n transition: text-decoration-color var(--ptc-transition-medium) var(--ptc-ease-inout);\r\n\r\n &:hover {\r\n color: var(--color-green-06);\r\n }\r\n\r\n &:visited {\r\n color: var(--color-gray-10);\r\n }\r\n\r\n &:active,\r\n &:visited:active {\r\n // pressed\r\n color: var(--color-green-06);\r\n }\r\n\r\n &:hover,\r\n &:visited:hover {\r\n color: var(--color-green-06);\r\n }\r\n}\r\n\r\n.ptc-link-dark {\r\n color: var(--color-white);\r\n text-decoration: underline;\r\n text-decoration-thickness: 2px;\r\n text-decoration-color: var(--color-green-06);\r\n text-underline-offset: 5px;\r\n transition: text-decoration-color var(--ptc-transition-medium) var(--ptc-ease-inout);\r\n\r\n &:hover {\r\n color: var(--color-green-06);\r\n }\r\n\r\n &:visited {\r\n color: var(--color-white);\r\n }\r\n\r\n &:active,\r\n &:visited:active {\r\n // pressed\r\n color: var(--color-green-06);\r\n }\r\n\r\n &:hover,\r\n &:visited:hover {\r\n color: var(--color-green-06);\r\n }\r\n\r\n}\r\n :host {\r\n\t display: block;\r\n\t box-sizing: border-box;\r\n}\r\n :host ptc-background-video {\r\n\t height: 240px;\r\n}\r\n @media (min-width: 480px) {\r\n\t :host ptc-background-video {\r\n\t\t height: 320px;\r\n\t}\r\n}\r\n @media (min-width: 768px) {\r\n\t :host ptc-background-video {\r\n\t\t height: 450px;\r\n\t}\r\n}\r\n @media (min-width: 992px) {\r\n\t :host ptc-background-video {\r\n\t\t height: 500px;\r\n\t}\r\n}\r\n :host .fl-header {\r\n\t cursor: pointer;\r\n}\r\n :host .non-mobile-wrapper {\r\n\t box-sizing: border-box;\r\n}\r\n @media (min-width: 992px) {\r\n\t :host .non-mobile-wrapper {\r\n\t\t max-width: 1078px;\r\n\t\t margin: -75px auto 0 auto;\r\n\t\t display: flex;\r\n\t\t align-items: center;\r\n\t\t width: 100%;\r\n\t\t background: var(--color-white);\r\n\t\t box-shadow: var(--ptc-shadow-small);\r\n\t\t padding: 24px 32px;\r\n\t\t z-index: 1;\r\n\t\t position: relative;\r\n\t\t min-height: 350px;\r\n\t}\r\n}\r\n @media (min-width: 992px) {\r\n\t :host .non-mobile-wrapper .header-list-wrap {\r\n\t\t padding-right: 16px;\r\n\t\t margin-right: 64px;\r\n\t\t min-width: 270px;\r\n\t\t max-width: 270px;\r\n\t\t box-sizing: border-box;\r\n\t\t display: flex;\r\n\t\t flex-direction: column;\r\n\t\t align-items: baseline;\r\n\t}\r\n\t :host .non-mobile-wrapper .header-list-wrap::after {\r\n\t\t content: \"\";\r\n\t\t width: 1px;\r\n\t\t height: calc(100% - 48px);\r\n\t\t background-color: var(--color-gray-05);\r\n\t\t position: absolute;\r\n\t\t left: 297px;\r\n\t\t top: 24px;\r\n\t\t bottom: 24px;\r\n\t}\r\n}\r\n @media (min-width: 992px) {\r\n\t :host .non-mobile-wrapper .content-wrap {\r\n\t\t padding-right: 72px;\r\n\t}\r\n}\r\n :host .non-mobile-wrapper .fl-header {\r\n\t border-radius: 4px;\r\n\t margin: 12px 0;\r\n\t padding: 4px 8px;\r\n}\r\n :host .non-mobile-wrapper .fl-header:hover {\r\n\t background-color: var(--color-gray-02);\r\n}\r\n :host .non-mobile-wrapper .fl-header.selected, :host .non-mobile-wrapper .fl-header.init-active {\r\n\t background-color: var(--color-gray-03);\r\n}\r\n :host .mobile-wrapper .acc-item {\r\n\t border-bottom: 1px solid var(--color-gray-03);\r\n\t padding: 14px 30px;\r\n}\r\n :host .mobile-wrapper .acc-item fl-tab-header {\r\n\t padding-left: 34px;\r\n\t position: relative;\r\n}\r\n :host .mobile-wrapper .acc-item fl-tab-header::before {\r\n\t content: '';\r\n\t display: inline-block;\r\n\t width: 16px;\r\n\t height: 16px;\r\n\t background-image: url('data:image/svg+xml,<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(%23clip0_91_790)\"><path d=\"M15.9001 6.29998H9.7001V0.0999756H6.3001V6.29998H0.100098V9.69998H6.3001V15.9H9.7001V9.69998H15.9001V6.29998Z\" fill=\"%23006E09\"/></g><defs><clipPath id=\"clip0_91_790\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></svg>');\r\n\t vertical-align: middle;\r\n\t position: absolute;\r\n\t left: 0;\r\n\t top: 4.5px;\r\n}\r\n :host .mobile-wrapper .acc-item fl-tab-header.selected::before, :host .mobile-wrapper .acc-item fl-tab-header.init-active::before {\r\n\t background-image: url('data:image/svg+xml,<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(%23clip0_113_741)\"><path d=\"M0 7.05566V10.8637H13.913V7.05566H0Z\" fill=\"%23323B42\"/></g><defs><clipPath id=\"clip0_113_741\"><rect width=\"13.913\" height=\"17.92\" fill=\"white\"/></clipPath></defs></svg>');\r\n}\r\n :host .mobile-wrapper .acc-item fl-tab-content {\r\n\t padding-left: 34px;\r\n\t padding-bottom: 18px;\r\n}\r\n";
|
|
132
|
+
|
|
133
|
+
const FeaturedList$1 = class extends HTMLElement$1 {
|
|
134
|
+
constructor() {
|
|
135
|
+
super();
|
|
136
|
+
this.__registerHost();
|
|
137
|
+
this.__attachShadow();
|
|
138
|
+
this.isMobile = undefined;
|
|
139
|
+
this.selectedTabGloble = 'tab-01';
|
|
140
|
+
}
|
|
141
|
+
handleResize() {
|
|
142
|
+
this.isMobile = window.innerWidth < 992;
|
|
143
|
+
this.holdTabOnResize(this.selectedTabGloble);
|
|
144
|
+
}
|
|
145
|
+
componentWillLoad() {
|
|
146
|
+
this.isMobile = window.innerWidth < 992;
|
|
147
|
+
}
|
|
148
|
+
handleflTabClicked(event) {
|
|
149
|
+
this.selectedTabGloble = event.detail.name;
|
|
150
|
+
this.selectTab(this.selectedTabGloble);
|
|
151
|
+
}
|
|
152
|
+
holdTabOnResize(name) {
|
|
153
|
+
const contentBlocks = this.hostElement.shadowRoot.querySelectorAll(`fl-tab-content`);
|
|
154
|
+
const headerBlocks = this.hostElement.shadowRoot.querySelectorAll(`fl-tab-header`);
|
|
155
|
+
contentBlocks.forEach(content => {
|
|
156
|
+
if (content.classList.contains("init-active")) {
|
|
157
|
+
content.classList.remove("init-active");
|
|
158
|
+
}
|
|
159
|
+
content.getAttribute('name-key') === name ? (content.setAttribute('selected', 'selected')) : (content.removeAttribute('selected'));
|
|
160
|
+
});
|
|
161
|
+
headerBlocks.forEach(header => {
|
|
162
|
+
if (header.classList.contains("init-active")) {
|
|
163
|
+
header.classList.remove("init-active");
|
|
164
|
+
}
|
|
165
|
+
header.getAttribute('name-key') === name ? (header.setAttribute('selected', 'selected')) : (header.removeAttribute('selected'));
|
|
166
|
+
});
|
|
167
|
+
}
|
|
168
|
+
selectTab(name) {
|
|
169
|
+
const featuredImages = this.hostElement.shadowRoot.querySelectorAll(`fl-tab-image`);
|
|
170
|
+
const contentBlocks = this.hostElement.shadowRoot.querySelectorAll(`fl-tab-content`);
|
|
171
|
+
const headerBlocks = this.hostElement.shadowRoot.querySelectorAll(`fl-tab-header`);
|
|
172
|
+
featuredImages.forEach(image => {
|
|
173
|
+
if (image.classList.contains("init-active")) {
|
|
174
|
+
image.classList.remove("init-active");
|
|
175
|
+
}
|
|
176
|
+
image.getAttribute('name-key') === name ? (image.setAttribute('selected', 'selected')) : (image.removeAttribute('selected'));
|
|
177
|
+
});
|
|
178
|
+
contentBlocks.forEach(content => {
|
|
179
|
+
this.updateActiveTab(name, content);
|
|
180
|
+
});
|
|
181
|
+
headerBlocks.forEach(header => {
|
|
182
|
+
this.updateActiveTab(name, header);
|
|
183
|
+
});
|
|
184
|
+
}
|
|
185
|
+
updateActiveTab(name, tabName) {
|
|
186
|
+
if (this.isMobile) {
|
|
187
|
+
if (tabName.getAttribute('name-key') === name) {
|
|
188
|
+
if (tabName.classList.contains("init-active")) {
|
|
189
|
+
tabName.removeAttribute('selected');
|
|
190
|
+
}
|
|
191
|
+
else {
|
|
192
|
+
tabName.getAttribute('selected') == 'selected' ? (tabName.removeAttribute('selected')) : (tabName.setAttribute('selected', 'selected'));
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
else {
|
|
196
|
+
tabName.removeAttribute('selected');
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
else {
|
|
200
|
+
tabName.getAttribute('name-key') === name ? (tabName.setAttribute('selected', 'selected')) : (tabName.removeAttribute('selected'));
|
|
201
|
+
}
|
|
202
|
+
if (tabName.classList.contains("init-active")) {
|
|
203
|
+
tabName.classList.remove("init-active");
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
render() {
|
|
207
|
+
return (h$1(Host, null, h$1("div", { class: "featured-image-wrap" }, h$1("fl-tab-image", { "name-key": "tab-01", class: "init-active" }, h$1("ptc-img", { "image-type": "smart-bg", "image-alignment": "center", "img-url": "http://s7d1.scene7.com/is/image/ptcinc/cs-boeing-planes-runway" })), h$1("fl-tab-image", { "name-key": "tab-02" }, h$1("ptc-background-video", { overlay: false, "play-button-title": "Play", "pause-button-title": "Pause", "video-src": "https://www.ptc.com/en/www.ptc.com//-/media/Videos/BRAND-FILM-CAR-SECTION-short-1mb.mp4", "poster-src": "https://www.ptc.com/-/media/Images/new-org/misc/W232501-LWX23-Hero-Banner-Video-FINAL-jebyrne-110922-screenshot.jpg" })), h$1("fl-tab-image", { "name-key": "tab-03" }, h$1("ptc-img", { "image-type": "smart-bg", "image-alignment": "center", "img-url": "https://www.ptc.com/-/media/Images/new-org/1366x542/CIMC-1366x542.jpg?h=542&w=1366&la=en&hash=56AE14F73CFB62C24276D08E556B0949" })), h$1("fl-tab-image", { "name-key": "tab-04" }, h$1("ptc-img", { "image-type": "smart-bg", "image-alignment": "center", "img-url": "https://www.ptc.com/-/media/Images/new-org/1366x542/ThingWorx_IIOT_CaterpillarCS_Img_1366x542.jpg?h=542&w=1366&la=en&hash=627ED00C1F58E3677A06F50C0F3009D6" }))), this.isMobile ? (
|
|
208
|
+
// Code for mobile only
|
|
209
|
+
h$1("div", { class: "mobile-wrapper" }, h$1("div", { class: 'acc-item' }, h$1("fl-tab-header", { "name-key": "tab-01", "tab-title": "Aerospace & Defense", class: "init-active" }, " "), h$1("fl-tab-content", { "name-key": "tab-01", class: "init-active" }, h$1("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h$1("a", { href: '#' }, "See More about Aerospace & Defense"))), h$1("div", { class: 'acc-item' }, h$1("fl-tab-header", { "name-key": "tab-02", "tab-title": "Automotive" }), h$1("fl-tab-content", { "name-key": "tab-02" }, h$1("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h$1("a", { href: '#' }, "See More about Aerospace & Defense"))), h$1("div", { class: 'acc-item' }, h$1("fl-tab-header", { "name-key": "tab-03", "tab-title": "Electronics & High-Tech" }), h$1("fl-tab-content", { "name-key": "tab-03" }, h$1("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h$1("a", { href: '#' }, "See More about Aerospace & Defense"))), h$1("div", { class: 'acc-item' }, h$1("fl-tab-header", { "name-key": "tab-04", "tab-title": "Retail & Consumer Products" }), h$1("fl-tab-content", { "name-key": "tab-04" }, h$1("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h$1("a", { href: '#' }, "See More about Aerospace & Defense")))))
|
|
210
|
+
:
|
|
211
|
+
(
|
|
212
|
+
// Code for Desktop only
|
|
213
|
+
h$1("div", { class: "non-mobile-wrapper" }, h$1("div", { class: "header-list-wrap" }, h$1("fl-tab-header", { "name-key": "tab-01", "tab-title": "Aerospace & Defense", class: "init-active" }, " "), h$1("fl-tab-header", { "name-key": "tab-02", "tab-title": "Automotive" }), h$1("fl-tab-header", { "name-key": "tab-03", "tab-title": "Electronics & High-Tech" }), h$1("fl-tab-header", { "name-key": "tab-04", "tab-title": "Retail & Consumer Products" })), h$1("div", { class: "content-wrap" }, h$1("fl-tab-content", { "name-key": "tab-01", class: "init-active" }, h$1("ptc-title", { type: 'h3', "title-size": 'large', upperline: "no-upperline", "title-margin": 'margin-flush' }, "Aerospace & Defense"), h$1("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h$1("a", { href: '#' }, "See More about Aerospace & Defense")), h$1("fl-tab-content", { "name-key": "tab-02" }, h$1("ptc-title", { type: 'h3', "title-size": 'large', upperline: "no-upperline", "title-margin": 'margin-flush' }, "Automotive"), h$1("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h$1("a", { href: '#' }, "See More about Aerospace & Defense")), h$1("fl-tab-content", { "name-key": "tab-03" }, h$1("ptc-title", { type: 'h3', "title-size": 'large', upperline: "no-upperline", "title-margin": 'margin-flush' }, "Electronics & High-Tech"), h$1("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Deliver the future of transportation and mobility and gain competitive advantage. Explore automotive solutions for OEMs and suppliers so your team can help drive the future of transportation."), h$1("a", { href: '#' }, "See More about Aerospace & Defense")), h$1("fl-tab-content", { "name-key": "tab-04" }, h$1("ptc-title", { type: 'h3', "title-size": 'large', upperline: "no-upperline", "title-margin": 'margin-flush' }, "Retail & Consumer Products"), h$1("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Navigate supply chain disruption while maximizing revenue growth and sustainability. Explore how PTC\u2019s digital solutions can accelerate product innovation, supply chain collaboration, and more."), h$1("a", { href: '#' }, "See More about Aerospace & Defense")))))));
|
|
214
|
+
}
|
|
215
|
+
get hostElement() { return this; }
|
|
216
|
+
static get style() { return featuredListCss; }
|
|
217
|
+
};
|
|
218
|
+
|
|
131
219
|
const flTabContentCss = ":host{display:none}:host(.init-active){display:block}:host(.selected){display:block}";
|
|
132
220
|
|
|
133
221
|
const FlTabContent$1 = class extends HTMLElement$1 {
|
|
@@ -135,7 +223,7 @@ const FlTabContent$1 = class extends HTMLElement$1 {
|
|
|
135
223
|
super();
|
|
136
224
|
this.__registerHost();
|
|
137
225
|
this.__attachShadow();
|
|
138
|
-
this.
|
|
226
|
+
this.nameKey = undefined;
|
|
139
227
|
this.selected = false;
|
|
140
228
|
}
|
|
141
229
|
render() {
|
|
@@ -153,14 +241,14 @@ const FlTabHeader$1 = class extends HTMLElement$1 {
|
|
|
153
241
|
this.__attachShadow();
|
|
154
242
|
this.flTabClicked = createEvent(this, "flTabClicked", 7);
|
|
155
243
|
this.tabTitle = undefined;
|
|
156
|
-
this.
|
|
244
|
+
this.nameKey = undefined;
|
|
157
245
|
this.selected = false;
|
|
158
246
|
}
|
|
159
247
|
handleClick(event) {
|
|
160
248
|
this.flTabClicked.emit({
|
|
161
249
|
'sender': this,
|
|
162
250
|
'event': event,
|
|
163
|
-
'name': this.
|
|
251
|
+
'name': this.nameKey
|
|
164
252
|
});
|
|
165
253
|
}
|
|
166
254
|
render() {
|
|
@@ -177,7 +265,7 @@ const FlTabImage$1 = class extends HTMLElement$1 {
|
|
|
177
265
|
super();
|
|
178
266
|
this.__registerHost();
|
|
179
267
|
this.__attachShadow();
|
|
180
|
-
this.
|
|
268
|
+
this.nameKey = undefined;
|
|
181
269
|
this.selected = false;
|
|
182
270
|
}
|
|
183
271
|
render() {
|
|
@@ -24469,11 +24557,18 @@ const PtcFeaturedList$1 = class extends HTMLElement$1 {
|
|
|
24469
24557
|
}
|
|
24470
24558
|
holdTabOnResize(name) {
|
|
24471
24559
|
const contentBlocks = this.hostElement.shadowRoot.querySelectorAll(`fl-tab-content`);
|
|
24560
|
+
const headerBlocks = this.hostElement.shadowRoot.querySelectorAll(`fl-tab-header`);
|
|
24472
24561
|
contentBlocks.forEach(content => {
|
|
24473
24562
|
if (content.classList.contains("init-active")) {
|
|
24474
24563
|
content.classList.remove("init-active");
|
|
24475
24564
|
}
|
|
24476
|
-
content.
|
|
24565
|
+
content.getAttribute('name-key') === name ? (content.setAttribute('selected', 'selected')) : (content.removeAttribute('selected'));
|
|
24566
|
+
});
|
|
24567
|
+
headerBlocks.forEach(header => {
|
|
24568
|
+
if (header.classList.contains("init-active")) {
|
|
24569
|
+
header.classList.remove("init-active");
|
|
24570
|
+
}
|
|
24571
|
+
header.getAttribute('name-key') === name ? (header.setAttribute('selected', 'selected')) : (header.removeAttribute('selected'));
|
|
24477
24572
|
});
|
|
24478
24573
|
}
|
|
24479
24574
|
selectTab(name) {
|
|
@@ -24484,59 +24579,44 @@ const PtcFeaturedList$1 = class extends HTMLElement$1 {
|
|
|
24484
24579
|
if (image.classList.contains("init-active")) {
|
|
24485
24580
|
image.classList.remove("init-active");
|
|
24486
24581
|
}
|
|
24487
|
-
image.
|
|
24582
|
+
image.getAttribute('name-key') === name ? (image.setAttribute('selected', 'selected')) : (image.removeAttribute('selected'));
|
|
24488
24583
|
});
|
|
24489
24584
|
contentBlocks.forEach(content => {
|
|
24490
|
-
|
|
24491
|
-
if (content.name === name) {
|
|
24492
|
-
if (content.classList.contains("init-active")) {
|
|
24493
|
-
content.selected = false;
|
|
24494
|
-
}
|
|
24495
|
-
else {
|
|
24496
|
-
content.selected = !content.selected;
|
|
24497
|
-
}
|
|
24498
|
-
}
|
|
24499
|
-
else {
|
|
24500
|
-
content.selected = false;
|
|
24501
|
-
}
|
|
24502
|
-
}
|
|
24503
|
-
else {
|
|
24504
|
-
content.selected = content.name === name;
|
|
24505
|
-
}
|
|
24506
|
-
if (content.classList.contains("init-active")) {
|
|
24507
|
-
content.classList.remove("init-active");
|
|
24508
|
-
}
|
|
24585
|
+
this.updateActiveTab(name, content);
|
|
24509
24586
|
});
|
|
24510
24587
|
headerBlocks.forEach(header => {
|
|
24511
|
-
|
|
24512
|
-
|
|
24513
|
-
|
|
24514
|
-
|
|
24515
|
-
|
|
24516
|
-
|
|
24517
|
-
|
|
24518
|
-
|
|
24588
|
+
this.updateActiveTab(name, header);
|
|
24589
|
+
});
|
|
24590
|
+
}
|
|
24591
|
+
updateActiveTab(name, tabName) {
|
|
24592
|
+
if (this.isMobile) {
|
|
24593
|
+
if (tabName.getAttribute('name-key') === name) {
|
|
24594
|
+
if (tabName.classList.contains("init-active")) {
|
|
24595
|
+
tabName.removeAttribute('selected');
|
|
24519
24596
|
}
|
|
24520
24597
|
else {
|
|
24521
|
-
|
|
24598
|
+
tabName.getAttribute('selected') == 'selected' ? (tabName.removeAttribute('selected')) : (tabName.setAttribute('selected', 'selected'));
|
|
24522
24599
|
}
|
|
24523
24600
|
}
|
|
24524
24601
|
else {
|
|
24525
|
-
|
|
24602
|
+
tabName.removeAttribute('selected');
|
|
24526
24603
|
}
|
|
24527
|
-
|
|
24528
|
-
|
|
24529
|
-
|
|
24530
|
-
}
|
|
24604
|
+
}
|
|
24605
|
+
else {
|
|
24606
|
+
tabName.getAttribute('name-key') === name ? (tabName.setAttribute('selected', 'selected')) : (tabName.removeAttribute('selected'));
|
|
24607
|
+
}
|
|
24608
|
+
if (tabName.classList.contains("init-active")) {
|
|
24609
|
+
tabName.classList.remove("init-active");
|
|
24610
|
+
}
|
|
24531
24611
|
}
|
|
24532
24612
|
render() {
|
|
24533
|
-
return (h$1(Host, null, h$1("div", { class: "featured-image-wrap" }, h$1("fl-tab-image", { name: "tab-01", class: "init-active" }, h$1("ptc-img", { "image-type": "smart-bg", "image-alignment": "center", "img-url": "http://s7d1.scene7.com/is/image/ptcinc/cs-boeing-planes-runway" })), h$1("fl-tab-image", { name: "tab-02" }, h$1("ptc-background-video", { overlay: false, "play-button-title": "Play", "pause-button-title": "Pause", "video-src": "https://www.ptc.com/en/www.ptc.com//-/media/Videos/BRAND-FILM-CAR-SECTION-short-1mb.mp4", "poster-src": "https://www.ptc.com/-/media/Images/new-org/misc/W232501-LWX23-Hero-Banner-Video-FINAL-jebyrne-110922-screenshot.jpg" })), h$1("fl-tab-image", { name: "tab-03" }, h$1("ptc-img", { "image-type": "smart-bg", "image-alignment": "center", "img-url": "https://www.ptc.com/-/media/Images/new-org/1366x542/CIMC-1366x542.jpg?h=542&w=1366&la=en&hash=56AE14F73CFB62C24276D08E556B0949" })), h$1("fl-tab-image", { name: "tab-04" }, h$1("ptc-img", { "image-type": "smart-bg", "image-alignment": "center", "img-url": "https://www.ptc.com/-/media/Images/new-org/1366x542/ThingWorx_IIOT_CaterpillarCS_Img_1366x542.jpg?h=542&w=1366&la=en&hash=627ED00C1F58E3677A06F50C0F3009D6" }))), this.isMobile ? (
|
|
24613
|
+
return (h$1(Host, null, h$1("div", { class: "featured-image-wrap" }, h$1("fl-tab-image", { "name-key": "tab-01", class: "init-active" }, h$1("ptc-img", { "image-type": "smart-bg", "image-alignment": "center", "img-url": "http://s7d1.scene7.com/is/image/ptcinc/cs-boeing-planes-runway" })), h$1("fl-tab-image", { "name-key": "tab-02" }, h$1("ptc-background-video", { overlay: false, "play-button-title": "Play", "pause-button-title": "Pause", "video-src": "https://www.ptc.com/en/www.ptc.com//-/media/Videos/BRAND-FILM-CAR-SECTION-short-1mb.mp4", "poster-src": "https://www.ptc.com/-/media/Images/new-org/misc/W232501-LWX23-Hero-Banner-Video-FINAL-jebyrne-110922-screenshot.jpg" })), h$1("fl-tab-image", { "name-key": "tab-03" }, h$1("ptc-img", { "image-type": "smart-bg", "image-alignment": "center", "img-url": "https://www.ptc.com/-/media/Images/new-org/1366x542/CIMC-1366x542.jpg?h=542&w=1366&la=en&hash=56AE14F73CFB62C24276D08E556B0949" })), h$1("fl-tab-image", { "name-key": "tab-04" }, h$1("ptc-img", { "image-type": "smart-bg", "image-alignment": "center", "img-url": "https://www.ptc.com/-/media/Images/new-org/1366x542/ThingWorx_IIOT_CaterpillarCS_Img_1366x542.jpg?h=542&w=1366&la=en&hash=627ED00C1F58E3677A06F50C0F3009D6" }))), this.isMobile ? (
|
|
24534
24614
|
// Code for mobile only
|
|
24535
|
-
h$1("div", { class: "mobile-wrapper" }, h$1("div", { class: 'acc-item' }, h$1("fl-tab-header", { name: "tab-01", "tab-title": "Aerospace & Defense", class: "init-active" }, " "), h$1("fl-tab-content", { name: "tab-01", class: "init-active" }, h$1("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h$1("a", { href: '#' }, "See More about Aerospace & Defense"))), h$1("div", { class: 'acc-item' }, h$1("fl-tab-header", { name: "tab-02", "tab-title": "Automotive" }), h$1("fl-tab-content", { name: "tab-02" }, h$1("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h$1("a", { href: '#' }, "See More about Aerospace & Defense"))), h$1("div", { class: 'acc-item' }, h$1("fl-tab-header", { name: "tab-03", "tab-title": "Electronics & High-Tech" }), h$1("fl-tab-content", { name: "tab-03" }, h$1("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h$1("a", { href: '#' }, "See More about Aerospace & Defense"))), h$1("div", { class: 'acc-item' }, h$1("fl-tab-header", { name: "tab-04", "tab-title": "Retail & Consumer Products" }), h$1("fl-tab-content", { name: "tab-04" }, h$1("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h$1("a", { href: '#' }, "See More about Aerospace & Defense")))))
|
|
24615
|
+
h$1("div", { class: "mobile-wrapper" }, h$1("div", { class: 'acc-item' }, h$1("fl-tab-header", { "name-key": "tab-01", "tab-title": "Aerospace & Defense", class: "init-active" }, " "), h$1("fl-tab-content", { "name-key": "tab-01", class: "init-active" }, h$1("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h$1("a", { href: '#' }, "See More about Aerospace & Defense"))), h$1("div", { class: 'acc-item' }, h$1("fl-tab-header", { "name-key": "tab-02", "tab-title": "Automotive" }), h$1("fl-tab-content", { "name-key": "tab-02" }, h$1("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h$1("a", { href: '#' }, "See More about Aerospace & Defense"))), h$1("div", { class: 'acc-item' }, h$1("fl-tab-header", { "name-key": "tab-03", "tab-title": "Electronics & High-Tech" }), h$1("fl-tab-content", { "name-key": "tab-03" }, h$1("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h$1("a", { href: '#' }, "See More about Aerospace & Defense"))), h$1("div", { class: 'acc-item' }, h$1("fl-tab-header", { "name-key": "tab-04", "tab-title": "Retail & Consumer Products" }), h$1("fl-tab-content", { "name-key": "tab-04" }, h$1("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h$1("a", { href: '#' }, "See More about Aerospace & Defense")))))
|
|
24536
24616
|
:
|
|
24537
24617
|
(
|
|
24538
24618
|
// Code for Desktop only
|
|
24539
|
-
h$1("div", { class: "non-mobile-wrapper" }, h$1("div", { class: "header-list-wrap" }, h$1("fl-tab-header", { name: "tab-01", "tab-title": "Aerospace & Defense", class: "init-active" }, " "), h$1("fl-tab-header", { name: "tab-02", "tab-title": "Automotive" }), h$1("fl-tab-header", { name: "tab-03", "tab-title": "Electronics & High-Tech" }), h$1("fl-tab-header", { name: "tab-04", "tab-title": "Retail & Consumer Products" })), h$1("div", { class: "content-wrap" }, h$1("fl-tab-content", { name: "tab-01", class: "init-active" }, h$1("ptc-title", { type: 'h3', "title-size": 'large', upperline: "no-upperline", "title-margin": 'margin-flush' }, "Aerospace & Defense"), h$1("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h$1("a", { href: '#' }, "See More about Aerospace & Defense")), h$1("fl-tab-content", { name: "tab-02" }, h$1("ptc-title", { type: 'h3', "title-size": 'large', upperline: "no-upperline", "title-margin": 'margin-flush' }, "Automotive"), h$1("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h$1("a", { href: '#' }, "See More about Aerospace & Defense")), h$1("fl-tab-content", { name: "tab-03" }, h$1("ptc-title", { type: 'h3', "title-size": 'large', upperline: "no-upperline", "title-margin": 'margin-flush' }, "Electronics & High-Tech"), h$1("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Deliver the future of transportation and mobility and gain competitive advantage. Explore automotive solutions for OEMs and suppliers so your team can help drive the future of transportation."), h$1("a", { href: '#' }, "See More about Aerospace & Defense")), h$1("fl-tab-content", { name: "tab-04" }, h$1("ptc-title", { type: 'h3', "title-size": 'large', upperline: "no-upperline", "title-margin": 'margin-flush' }, "Retail & Consumer Products"), h$1("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Navigate supply chain disruption while maximizing revenue growth and sustainability. Explore how PTC\u2019s digital solutions can accelerate product innovation, supply chain collaboration, and more."), h$1("a", { href: '#' }, "See More about Aerospace & Defense")))))));
|
|
24619
|
+
h$1("div", { class: "non-mobile-wrapper" }, h$1("div", { class: "header-list-wrap" }, h$1("fl-tab-header", { "name-key": "tab-01", "tab-title": "Aerospace & Defense", class: "init-active" }, " "), h$1("fl-tab-header", { "name-key": "tab-02", "tab-title": "Automotive" }), h$1("fl-tab-header", { "name-key": "tab-03", "tab-title": "Electronics & High-Tech" }), h$1("fl-tab-header", { "name-key": "tab-04", "tab-title": "Retail & Consumer Products" })), h$1("div", { class: "content-wrap" }, h$1("fl-tab-content", { "name-key": "tab-01", class: "init-active" }, h$1("ptc-title", { type: 'h3', "title-size": 'large', upperline: "no-upperline", "title-margin": 'margin-flush' }, "Aerospace & Defense"), h$1("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h$1("a", { href: '#' }, "See More about Aerospace & Defense")), h$1("fl-tab-content", { "name-key": "tab-02" }, h$1("ptc-title", { type: 'h3', "title-size": 'large', upperline: "no-upperline", "title-margin": 'margin-flush' }, "Automotive"), h$1("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Adapt to ever-changing customer demands and increasing cost and competitive pressure. Explore digital solutions for driving engineering excellence, manufacturing efficiency, product innovation, and service optimization."), h$1("a", { href: '#' }, "See More about Aerospace & Defense")), h$1("fl-tab-content", { "name-key": "tab-03" }, h$1("ptc-title", { type: 'h3', "title-size": 'large', upperline: "no-upperline", "title-margin": 'margin-flush' }, "Electronics & High-Tech"), h$1("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Deliver the future of transportation and mobility and gain competitive advantage. Explore automotive solutions for OEMs and suppliers so your team can help drive the future of transportation."), h$1("a", { href: '#' }, "See More about Aerospace & Defense")), h$1("fl-tab-content", { "name-key": "tab-04" }, h$1("ptc-title", { type: 'h3', "title-size": 'large', upperline: "no-upperline", "title-margin": 'margin-flush' }, "Retail & Consumer Products"), h$1("ptc-para", { "para-line-h": 'line-height-p', "font-size": "small", "para-margin": "margin-3" }, "Navigate supply chain disruption while maximizing revenue growth and sustainability. Explore how PTC\u2019s digital solutions can accelerate product innovation, supply chain collaboration, and more."), h$1("a", { href: '#' }, "See More about Aerospace & Defense")))))));
|
|
24540
24620
|
}
|
|
24541
24621
|
get hostElement() { return this; }
|
|
24542
24622
|
static get style() { return ptcFeaturedListCss; }
|
|
@@ -25724,7 +25804,7 @@ const PtcMobileSelect$1 = class extends HTMLElement$1 {
|
|
|
25724
25804
|
static get style() { return ptcMobileSelectCss; }
|
|
25725
25805
|
};
|
|
25726
25806
|
|
|
25727
|
-
const ptcModalCss = ":host{display:block}.wrapper{position:absolute;width:100vw;height:100%;top:0;left:0;z-index:3000;display:none}.wrapper.fixed{position:fixed}.wrapper .modal-popup{margin:7.5rem auto 1rem;background-color:var(--color-white);box-shadow:var(--ptc-shadow-large);max-width:22.5625rem;width:80%;display:flex;flex-direction:column;align-items:flex-end;align-content:flex-end;z-index:3020;transform:translateY(-100%)}@media only screen and (min-width: 992px){.wrapper .modal-popup{max-width:29.125rem}}.wrapper .modal-popup.md{max-width:44.125rem}.wrapper .modal-popup.lg{max-width:56.25rem}.wrapper .modal-popup.xl{max-width:64.0625rem}.wrapper .modal-popup .modal-body{width:100%}.wrapper .modal-popup .modal-body iframe{opacity:0;overflow:hidden;width:100%;border:0;transition:opacity var(--ptc-ease-inout) var(--ptc-transition-medium)}.wrapper .modal-popup .modal-body iframe.ready{opacity:1}.wrapper .modal-popup .modal-body.frame{overflow:hidden}.wrapper .modal-popup .modal-body.html{overflow:hidden}.wrapper .modal-popup .close{margin-right:var(--ptc-element-spacing-03);margin-top:var(--ptc-element-spacing-03)}.wrapper .modal-popup.shadow-scroller{max-height:calc(100vh -
|
|
25807
|
+
const ptcModalCss = ":host{display:block}.wrapper{position:absolute;width:100vw;height:100%;top:0;left:0;z-index:3000;display:none}.wrapper.fixed{position:fixed}.wrapper .modal-popup{margin:7.5rem auto 1rem;background-color:var(--color-white);box-shadow:var(--ptc-shadow-large);max-width:22.5625rem;width:80%;display:flex;flex-direction:column;align-items:flex-end;align-content:flex-end;z-index:3020;transform:translateY(-100%)}@media only screen and (min-width: 992px){.wrapper .modal-popup{max-width:29.125rem}}.wrapper .modal-popup.md{max-width:44.125rem}.wrapper .modal-popup.lg{max-width:56.25rem}.wrapper .modal-popup.xl{max-width:64.0625rem}.wrapper .modal-popup .modal-body{width:100%}.wrapper .modal-popup .modal-body iframe{opacity:0;overflow:hidden;width:100%;border:0;transition:opacity var(--ptc-ease-inout) var(--ptc-transition-medium)}.wrapper .modal-popup .modal-body iframe.ready{opacity:1}.wrapper .modal-popup .modal-body.frame{overflow:hidden}.wrapper .modal-popup .modal-body.html{overflow:hidden}.wrapper .modal-popup .close{margin-right:var(--ptc-element-spacing-03);margin-top:var(--ptc-element-spacing-03)}.wrapper .modal-popup.shadow-scroller{max-height:calc(100vh - 220px)}@media only screen and (min-width: 992px){.wrapper .modal-popup.shadow-scroller{max-height:756px}}.wrapper .modal-popup.shadow-scroller .modal-header{transition:box-shadow ease-in-out 250ms;position:relative;min-height:57px;border-bottom:1px solid var(--color-gray-02);width:100%}.wrapper .modal-popup.shadow-scroller .modal-header .close{position:absolute;top:var(--spacing-md);right:var(--spacing-md);margin:0}.wrapper .modal-popup.shadow-scroller .modal-body{min-height:200px;overflow-x:hidden;overflow-y:auto}.wrapper .modal-popup.shadow-scroller .modal-footer{transition:box-shadow ease-in-out 250ms;width:100%;min-height:60px;border-top:1px solid var(--color-gray-02);padding-top:1rem}.wrapper .modal-popup.shadow-scroller.scroll-top .modal-header{box-shadow:0px 4px 12px rgba(0, 0, 0, 0.12)}.wrapper .modal-popup.shadow-scroller.scroll-bottom .modal-footer{box-shadow:0px -8px 12px rgba(0, 0, 0, 0.12)}.wrapper.show{display:flex;align-items:flex-start}.wrapper.show .modal-popup{transform:translateY(0)}.wrapper.show .modal-popup.rounded{border-radius:var(--ptc-border-radius-standard)}.overlay{width:100vw;height:100vh;position:fixed;top:0;left:0;z-index:3010;display:block;background-color:rgba(0, 0, 0, 0.6)}:host(.standard) .modal-popup{border-radius:var(--ptc-border-radius-standard)}:host(.large) .modal-popup{border-radius:var(--ptc-border-radius-large)}:host(.pill) .modal-popup{border-radius:var(--ptc-border-radius-pill)}:host(.circle) .modal-popup{border-radius:var(--ptc-border-radius-circle)}:host(.bio-modal) .modal-popup{padding:30px 15px 30px 0;max-width:1200px}@media only screen and (min-width: 1440px){:host(.bio-modal) .modal-popup{max-width:1400px}}:host(.bio-modal) .close{position:absolute;margin:0;right:15px;top:30px}:host(.bio-modal) .close svg .cls-1,:host(.bio-modal) .close svg .cls-2{fill:none;stroke-width:2px}:host(.bio-modal) .close svg .cls-1{stroke:#1c2439;stroke-linecap:square}:host(.bio-modal) .close svg .cls-2{stroke:#74c34d}:host(.bio-modal) .close svg path{transition:all ease-in-out 250ms}:host(.bio-modal) .close svg .cls-1:nth-child(1){transform:translate(175.5px, 135.5px)}:host(.bio-modal) .close svg .cls-1:nth-child(2){transform:translate(175.5px, 174.985px)}:host(.bio-modal) .close svg .cls-1:nth-child(3){transform:translate(215.5px, 141.393px)}:host(.bio-modal) .close svg .cls-1:nth-child(4){transform:translate(175.5px, 135.5px)}:host(.bio-modal) .close:hover svg .cls-1:nth-child(1){transform:translate(175.5px, 162px)}:host(.bio-modal) .close:hover svg .cls-1:nth-child(2){transform:translate(149px, 174.985px)}:host(.bio-modal) .close:hover svg .cls-1:nth-child(3){transform:translate(215.5px, 174px)}:host(.bio-modal) .close:hover svg .cls-1:nth-child(4){transform:translate(152.5px, 135.5px)}";
|
|
25728
25808
|
|
|
25729
25809
|
const PtcModal$1 = class extends HTMLElement$1 {
|
|
25730
25810
|
constructor() {
|
|
@@ -28853,9 +28933,10 @@ const BundleExample = /*@__PURE__*/proxyCustomElement(BundleExample$1, [1,"bundl
|
|
|
28853
28933
|
const BundleJumbotronExample = /*@__PURE__*/proxyCustomElement(BundleJumbotronExample$1, [1,"bundle-jumbotron-example",{"jumbotron":[1],"isIframe":[4,"is-iframe"]}]);
|
|
28854
28934
|
const DropdownItem = /*@__PURE__*/proxyCustomElement(DropdownItem$1, [4,"dropdown-item",{"linkHref":[1,"link-href"],"linkTarget":[1,"link-target"]}]);
|
|
28855
28935
|
const DynamicBoxBundle = /*@__PURE__*/proxyCustomElement(DynamicBoxBundle$1, [1,"dynamic-box-bundle",{"topImgSrc":[1,"top-img-src"],"topImgAlt":[1,"top-img-alt"],"boxHeight":[2,"box-height"],"isHovering":[32]},[[1,"mouseover","handleMouseOver"],[1,"mouseout","handleMouseOut"]]]);
|
|
28856
|
-
const
|
|
28857
|
-
const
|
|
28858
|
-
const
|
|
28936
|
+
const FeaturedList = /*@__PURE__*/proxyCustomElement(FeaturedList$1, [1,"featured-list",{"isMobile":[32],"selectedTabGloble":[32]},[[9,"resize","handleResize"],[4,"flTabClicked","handleflTabClicked"]]]);
|
|
28937
|
+
const FlTabContent = /*@__PURE__*/proxyCustomElement(FlTabContent$1, [1,"fl-tab-content",{"nameKey":[1,"name-key"],"selected":[4]}]);
|
|
28938
|
+
const FlTabHeader = /*@__PURE__*/proxyCustomElement(FlTabHeader$1, [1,"fl-tab-header",{"tabTitle":[1,"tab-title"],"nameKey":[1,"name-key"],"selected":[4]}]);
|
|
28939
|
+
const FlTabImage = /*@__PURE__*/proxyCustomElement(FlTabImage$1, [1,"fl-tab-image",{"nameKey":[1,"name-key"],"selected":[4]}]);
|
|
28859
28940
|
const IconAsset = /*@__PURE__*/proxyCustomElement(IconAsset$1, [2,"icon-asset",{"name":[1],"size":[1],"type":[1],"spin":[1],"pulse":[1],"color":[1],"isMobileSelect":[4,"is-mobile-select"],"injectedStyle":[1,"injected-style"]}]);
|
|
28860
28941
|
const InnovatorToggleContainer = /*@__PURE__*/proxyCustomElement(InnovatorToggleContainer$1, [1,"innovator-toggle-container",{"sectionTitle":[1,"section-title"],"description":[1],"backgroundImage":[1,"background-image"]}]);
|
|
28861
28942
|
const ListItem = /*@__PURE__*/proxyCustomElement(ListItem$2, [1,"list-item",{"listType":[1,"list-type"],"linkHref":[1,"link-href"],"flushBefore":[4,"flush-before"],"linkTarget":[1,"link-target"],"color":[1],"styles":[1]}]);
|
|
@@ -28954,6 +29035,7 @@ const defineCustomElements = (opts) => {
|
|
|
28954
29035
|
BundleJumbotronExample,
|
|
28955
29036
|
DropdownItem,
|
|
28956
29037
|
DynamicBoxBundle,
|
|
29038
|
+
FeaturedList,
|
|
28957
29039
|
FlTabContent,
|
|
28958
29040
|
FlTabHeader,
|
|
28959
29041
|
FlTabImage,
|
|
@@ -29056,4 +29138,4 @@ const defineCustomElements = (opts) => {
|
|
|
29056
29138
|
}
|
|
29057
29139
|
};
|
|
29058
29140
|
|
|
29059
|
-
export { BundleExample, BundleJumbotronExample, DropdownItem, DynamicBoxBundle, FlTabContent, FlTabHeader, FlTabImage, IconAsset, InnovatorToggleContainer, ListItem, LottiePlayer, MaxWidthContainer, MyComponent, PtcAccordion, PtcAccordionItem, PtcAnnouncement, PtcBackToTop, PtcBackgroundVideo, PtcBioCard, PtcBreadcrumb, PtcButton, PtcCard, PtcCardBottom, PtcCardContent, PtcCardWrapper, PtcCaseStudiesSlider, PtcCheckbox, PtcCollapseList, PtcContainer, PtcDate, PtcDropdown, PtcDynamicCard, PtcEllipsisDropdown, PtcFeaturedList, PtcFilterTag, PtcHero, PtcHeroFooterCta, PtcIconComponent, PtcIconList, PtcIconMinimize, PtcImageDownloadStrip, PtcImg, PtcJumbotron, PtcLink, PtcList, PtcLottie, PtcMediaCard, PtcMinimizedNav, PtcMobileSelect, PtcModal, PtcNavCard, PtcNavLink, PtcNavPills, PtcNavSlider, PtcNavSubmenu, PtcNews, PtcOverlay, PtcPagenation, PtcPara, PtcPicture, PtcPreviousUrl, PtcPricingBlock, PtcPricingTabs, PtcProductCard, PtcProductCategory, PtcProductDropdown, PtcProductHighlightCard, PtcProductList, PtcProductSidebar, PtcProgressBar, PtcQuote, PtcReadmore, PtcReadmoreChar, PtcResponsiveWrapper, PtcSearchField, PtcShoppingCart, PtcSkeleton, PtcSlitCard, PtcSocialShare, PtcSpacer, PtcSpan, PtcStickyIcons, PtcStickySection, PtcStickyTitle, PtcSubnav, PtcSubnavCard, PtcSvgBtn, PtcTab, PtcTabList, PtcTabs, PtcTextCopyWithBackground, PtcTitle, PtcTooltip, PtcTwoColumnMedia, SequentialBundle, SequentialBundleExample, TabContent, TabHeader, defineCustomElements };
|
|
29141
|
+
export { BundleExample, BundleJumbotronExample, DropdownItem, DynamicBoxBundle, FeaturedList, FlTabContent, FlTabHeader, FlTabImage, IconAsset, InnovatorToggleContainer, ListItem, LottiePlayer, MaxWidthContainer, MyComponent, PtcAccordion, PtcAccordionItem, PtcAnnouncement, PtcBackToTop, PtcBackgroundVideo, PtcBioCard, PtcBreadcrumb, PtcButton, PtcCard, PtcCardBottom, PtcCardContent, PtcCardWrapper, PtcCaseStudiesSlider, PtcCheckbox, PtcCollapseList, PtcContainer, PtcDate, PtcDropdown, PtcDynamicCard, PtcEllipsisDropdown, PtcFeaturedList, PtcFilterTag, PtcHero, PtcHeroFooterCta, PtcIconComponent, PtcIconList, PtcIconMinimize, PtcImageDownloadStrip, PtcImg, PtcJumbotron, PtcLink, PtcList, PtcLottie, PtcMediaCard, PtcMinimizedNav, PtcMobileSelect, PtcModal, PtcNavCard, PtcNavLink, PtcNavPills, PtcNavSlider, PtcNavSubmenu, PtcNews, PtcOverlay, PtcPagenation, PtcPara, PtcPicture, PtcPreviousUrl, PtcPricingBlock, PtcPricingTabs, PtcProductCard, PtcProductCategory, PtcProductDropdown, PtcProductHighlightCard, PtcProductList, PtcProductSidebar, PtcProgressBar, PtcQuote, PtcReadmore, PtcReadmoreChar, PtcResponsiveWrapper, PtcSearchField, PtcShoppingCart, PtcSkeleton, PtcSlitCard, PtcSocialShare, PtcSpacer, PtcSpan, PtcStickyIcons, PtcStickySection, PtcStickyTitle, PtcSubnav, PtcSubnavCard, PtcSvgBtn, PtcTab, PtcTabList, PtcTabs, PtcTextCopyWithBackground, PtcTitle, PtcTooltip, PtcTwoColumnMedia, SequentialBundle, SequentialBundleExample, TabContent, TabHeader, defineCustomElements };
|