@ptcwebops/ptcw-design 0.3.0 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/dist/cjs/{icon-asset_11.cjs.entry.js → icon-asset_16.cjs.entry.js} +320 -33
  2. package/dist/cjs/loader.cjs.js +1 -1
  3. package/dist/cjs/ptc-date.cjs.entry.js +54 -0
  4. package/dist/cjs/ptcw-design.cjs.js +1 -1
  5. package/dist/collection/components/icon-asset/media/designer.svg +29 -10
  6. package/dist/collection/components/ptc-card-bottom/ptc-card-bottom.css +2 -1
  7. package/dist/collection/components/ptc-card-content/ptc-card-content.css +92 -2
  8. package/dist/collection/components/ptc-card-plm/ptc-card-plm.css +14 -4
  9. package/dist/collection/components/ptc-card-plm/ptc-card-plm.js +2 -2
  10. package/dist/collection/components/ptc-hero/ptc-hero.js +26 -2
  11. package/dist/collection/components/ptc-para/ptc-para.css +6 -0
  12. package/dist/collection/components/ptc-picture/ptc-picture.css +9 -1
  13. package/dist/collection/components/ptc-picture/ptc-picture.js +46 -0
  14. package/dist/collection/components/ptc-title/ptc-title.css +15 -0
  15. package/dist/collection/components/ptc-title/ptc-title.js +19 -1
  16. package/dist/custom-elements/index.js +26 -11
  17. package/dist/esm/{icon-asset_11.entry.js → icon-asset_16.entry.js} +313 -31
  18. package/dist/esm/loader.js +1 -1
  19. package/dist/esm/ptc-date.entry.js +50 -0
  20. package/dist/esm/ptcw-design.js +1 -1
  21. package/dist/ptcw-design/media/designer.svg +29 -10
  22. package/dist/ptcw-design/p-5e44555b.entry.js +1 -0
  23. package/dist/ptcw-design/p-77dfe920.entry.js +1 -0
  24. package/dist/ptcw-design/ptcw-design.css +1 -1
  25. package/dist/ptcw-design/ptcw-design.esm.js +1 -1
  26. package/dist/types/components/ptc-card-plm/ptc-card-plm.d.ts +1 -1
  27. package/dist/types/components/ptc-hero/ptc-hero.d.ts +7 -0
  28. package/dist/types/components/ptc-picture/ptc-picture.d.ts +8 -0
  29. package/dist/types/components/ptc-title/ptc-title.d.ts +4 -0
  30. package/dist/types/components.d.ts +40 -2
  31. package/package.json +1 -1
  32. package/readme.md +1 -1
  33. package/dist/cjs/interfaces-0ecd8027.js +0 -15
  34. package/dist/cjs/list-item.cjs.entry.js +0 -29
  35. package/dist/cjs/ptc-breadcrumb.cjs.entry.js +0 -23
  36. package/dist/cjs/ptc-button.cjs.entry.js +0 -76
  37. package/dist/cjs/ptc-hero.cjs.entry.js +0 -25
  38. package/dist/cjs/ptc-img.cjs.entry.js +0 -160
  39. package/dist/cjs/ptc-span.cjs.entry.js +0 -34
  40. package/dist/esm/interfaces-c1c73092.js +0 -12
  41. package/dist/esm/list-item.entry.js +0 -25
  42. package/dist/esm/ptc-breadcrumb.entry.js +0 -19
  43. package/dist/esm/ptc-button.entry.js +0 -72
  44. package/dist/esm/ptc-hero.entry.js +0 -21
  45. package/dist/esm/ptc-img.entry.js +0 -156
  46. package/dist/esm/ptc-span.entry.js +0 -30
  47. package/dist/ptcw-design/p-29fe43a9.entry.js +0 -1
  48. package/dist/ptcw-design/p-473ec631.entry.js +0 -1
  49. package/dist/ptcw-design/p-50e52c88.js +0 -1
  50. package/dist/ptcw-design/p-563d409f.entry.js +0 -1
  51. package/dist/ptcw-design/p-797e4a7d.entry.js +0 -1
  52. package/dist/ptcw-design/p-9372c930.entry.js +0 -1
  53. package/dist/ptcw-design/p-abd4772d.entry.js +0 -1
  54. package/dist/ptcw-design/p-b3d73b7f.entry.js +0 -1
@@ -0,0 +1,54 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ const index = require('./index-0b899fc6.js');
6
+
7
+ const ptcDateCss = ":host{display:block}:host(.primary-grey){color:var(--color-primary-gray-new)}:host(.white) span{color:var(--color-white)}";
8
+
9
+ let PtcDate = class {
10
+ constructor(hostRef) {
11
+ index.registerInstance(this, hostRef);
12
+ /**
13
+ * Year
14
+ */
15
+ this.year = 1900;
16
+ /**
17
+ * Month
18
+ * An integer between 0 (January) and 11 (December) representing the month.If omitted, defaults to 0.
19
+ */
20
+ this.month = 0;
21
+ /**
22
+ * Day
23
+ * An integer between 1 and 31 representing the day of the month. If omitted, defaults to 1.
24
+ */
25
+ this.day = 1;
26
+ /**
27
+ * Country
28
+ * examples: en-US, zh-CN, zh-TW, fr-FR, ja-JP, ru-RU, de-DE, ko-KR, it-IT, es-ES
29
+ */
30
+ this.country = "en-US";
31
+ }
32
+ render() {
33
+ // const newDate = new Date(this.year, this.month, this.day);
34
+ const classMap = this.getCssClassMap();
35
+ return (index.h(index.Host, { class: classMap }, this.dateStyles && index.h("style", null, this.dateStyles), index.h("span", { part: "part-ptc-date" }, this.getDate().toLocaleDateString(this.country, { year: 'numeric', month: 'short', day: 'numeric' }))));
36
+ }
37
+ getCssClassMap() {
38
+ return {
39
+ [this.dateColor]: !!this.dateColor ? true : false
40
+ };
41
+ }
42
+ getDate() {
43
+ if (this.dateString) {
44
+ let newDate = new Date(this.dateString.replace(/-/g, '\/'));
45
+ return newDate;
46
+ }
47
+ else {
48
+ return new Date(this.year, this.month, this.day);
49
+ }
50
+ }
51
+ };
52
+ PtcDate.style = ptcDateCss;
53
+
54
+ exports.ptc_date = PtcDate;
@@ -15,5 +15,5 @@ const patchBrowser = () => {
15
15
  };
16
16
 
17
17
  patchBrowser().then(options => {
18
- return index.bootstrapLazy([["ptc-breadcrumb.cjs",[[1,"ptc-breadcrumb"]]],["ptc-hero.cjs",[[1,"ptc-hero",{"heroType":[1,"hero-type"]}]]],["ptc-announcement.cjs",[[1,"ptc-announcement",{"barTitle":[1,"bar-title"],"Description":[1,"description"],"linkText":[513,"link-text"],"visible":[1540],"linkUrl":[513,"link-url"],"tempContainer":[4,"temp-container"]}]]],["ptc-card.cjs",[[1,"ptc-card",{"cardType":[1,"card-type"],"cardHref":[1,"card-href"],"target":[1],"rel":[1],"hasImage":[4,"has-image"],"hasVideo":[4,"has-video"],"hasLottie":[4,"has-lottie"],"heading":[1],"headingTransform":[1,"heading-transform"],"cardDate":[1,"card-date"],"styles":[1]}]]],["ptc-lottie.cjs",[[1,"ptc-lottie",{"jsonSrc":[1025,"json-src"],"speed":[1026]}]]],["my-component.cjs",[[1,"my-component",{"first":[1],"middle":[1],"last":[1]}]]],["ptc-avatar.cjs",[[1,"ptc-avatar"]]],["ptc-button.cjs",[[1,"ptc-button",{"disabled":[516],"type":[1],"color":[1],"iconAnimation":[1,"icon-animation"],"iconPosition":[1,"icon-position"],"linkHref":[1,"link-href"],"linkTitle":[1,"link-title"],"target":[1],"rel":[1],"tabNav":[2,"tab-nav"],"styles":[1]}]]],["ptc-countdown.cjs",[[1,"ptc-countdown"]]],["ptc-footer.cjs",[[1,"ptc-footer"]]],["ptc-form.cjs",[[6,"ptc-form",{"value":[32],"inputValue":[32],"selectValue":[32]}]]],["ptc-input.cjs",[[6,"ptc-input",{"type":[1],"dataEloquaName":[1,"data-eloqua-name"],"inputId":[1,"input-id"],"inputName":[1,"input-name"],"focused":[32]}]]],["ptc-list.cjs",[[2,"ptc-list",{"listType":[1,"list-type"],"listItems":[16]}]]],["ptc-nav.cjs",[[1,"ptc-nav"]]],["ptc-nav-item.cjs",[[1,"ptc-nav-item",{"url":[1025],"label":[1025],"ariaExpanded":[1028,"aria-expanded"],"depth":[1538],"hasChildren":[1028,"has-children"],"parentExpanded":[1540,"parent-expanded"],"navType":[1,"nav-type"]},[[0,"handleClick","handleClick"],[9,"resize","handleResize"]]]]],["ptc-select.cjs",[[6,"ptc-select",{"dataEloquaName":[1,"data-eloqua-name"],"selectId":[1,"select-id"],"name":[1],"valueOptions":[1040]}]]],["ptc-span.cjs",[[1,"ptc-span",{"spanStyle":[1,"span-style"],"display":[1],"styles":[1]}]]],["list-item.cjs",[[1,"list-item",{"listType":[1,"list-type"],"linkHref":[1,"link-href"],"flushBefore":[4,"flush-before"]}]]],["lottie-player.cjs",[[1,"lottie-player",{"mode":[1],"autoplay":[4],"background":[513],"controls":[4],"count":[2],"direction":[2],"hover":[4],"loop":[516],"renderer":[1],"speed":[2],"src":[1],"currentState":[1,"current-state"],"seeker":[8],"intermission":[2],"play":[64],"pause":[64],"stop":[64],"seek":[64],"getLottie":[64],"setSpeed":[64],"setDirection":[64],"setLooping":[64],"togglePlay":[64],"toggleLooping":[64]}]]],["ptc-img.cjs",[[4,"ptc-img",{"sizeXs":[1025,"size-xs"],"sizeSm":[1025,"size-sm"],"sizeMd":[1025,"size-md"],"sizeLg":[1025,"size-lg"],"imgUrl":[1,"img-url"],"imageType":[1,"image-type"],"borderRadius":[1,"border-radius"],"loadMode":[1,"load-mode"]},[[9,"resize","WindowResize"]]]]],["ptc-svg-btn.cjs",[[1,"ptc-svg-btn",{"svgName":[1,"svg-name"]}]]],["icon-asset_11.cjs",[[1,"ptc-link",{"disabled":[516],"external":[516],"href":[1],"target":[1],"linkTitle":[1,"link-title"],"theme":[1],"uppercase":[4],"fontSize":[1,"font-size"]}],[1,"ptc-card-bottom",{"cardType":[1,"card-type"]}],[1,"ptc-card-content",{"cardType":[1,"card-type"]}],[1,"ptc-card-plm",{"cardType":[1,"card-type"],"cardLink":[1,"card-link"],"linkTitle":[1,"link-title"],"linkTarget":[1,"link-target"]}],[1,"ptc-para",{"fontSize":[1,"font-size"],"fontWeight":[1,"font-weight"],"paraStyle":[1,"para-style"],"paraColor":[1,"para-color"],"paraLineH":[1,"para-line-h"],"paraMargin":[1,"para-margin"]}],[1,"ptc-picture",{"src":[1],"alt":[1],"sizeXs":[1025,"size-xs"],"sizeSm":[1025,"size-sm"],"sizeMd":[1025,"size-md"],"sizeLg":[1025,"size-lg"],"imagePosition":[1,"image-position"],"borderRadius":[1,"border-radius"],"height":[1],"width":[1],"objectFit":[1,"object-fit"],"styles":[1],"oldSrc":[32]},[[9,"resize","WindowResize"]]],[1,"ptc-spacer",{"breakpoint":[1],"size":[1],"direction":[1]}],[6,"ptc-title",{"isPlmHub":[4,"is-plm-hub"],"type":[1],"textAlign":[1,"text-align"],"upperline":[1],"titleMargin":[1,"title-margin"],"styles":[1]}],[1,"ptc-date",{"year":[2],"month":[2],"day":[2],"country":[1],"dateString":[1,"date-string"],"dateColor":[1,"date-color"],"dateStyles":[1,"date-styles"]}],[1,"ptc-overlay",{"filterColor":[1,"filter-color"],"borderRadius":[1,"border-radius"],"overlayZIndex":[1,"overlay-z-index"],"styles":[1]}],[0,"icon-asset",{"name":[1],"size":[1],"type":[1],"spin":[1],"pulse":[1],"color":[1]}]]]], options);
18
+ return index.bootstrapLazy([["ptc-announcement.cjs",[[1,"ptc-announcement",{"barTitle":[1,"bar-title"],"Description":[1,"description"],"linkText":[513,"link-text"],"visible":[1540],"linkUrl":[513,"link-url"],"tempContainer":[4,"temp-container"]}]]],["ptc-card.cjs",[[1,"ptc-card",{"cardType":[1,"card-type"],"cardHref":[1,"card-href"],"target":[1],"rel":[1],"hasImage":[4,"has-image"],"hasVideo":[4,"has-video"],"hasLottie":[4,"has-lottie"],"heading":[1],"headingTransform":[1,"heading-transform"],"cardDate":[1,"card-date"],"styles":[1]}]]],["ptc-lottie.cjs",[[1,"ptc-lottie",{"jsonSrc":[1025,"json-src"],"speed":[1026]}]]],["my-component.cjs",[[1,"my-component",{"first":[1],"middle":[1],"last":[1]}]]],["ptc-avatar.cjs",[[1,"ptc-avatar"]]],["ptc-countdown.cjs",[[1,"ptc-countdown"]]],["ptc-footer.cjs",[[1,"ptc-footer"]]],["ptc-form.cjs",[[6,"ptc-form",{"value":[32],"inputValue":[32],"selectValue":[32]}]]],["ptc-input.cjs",[[6,"ptc-input",{"type":[1],"dataEloquaName":[1,"data-eloqua-name"],"inputId":[1,"input-id"],"inputName":[1,"input-name"],"focused":[32]}]]],["ptc-list.cjs",[[2,"ptc-list",{"listType":[1,"list-type"],"listItems":[16]}]]],["ptc-nav.cjs",[[1,"ptc-nav"]]],["ptc-nav-item.cjs",[[1,"ptc-nav-item",{"url":[1025],"label":[1025],"ariaExpanded":[1028,"aria-expanded"],"depth":[1538],"hasChildren":[1028,"has-children"],"parentExpanded":[1540,"parent-expanded"],"navType":[1,"nav-type"]},[[0,"handleClick","handleClick"],[9,"resize","handleResize"]]]]],["ptc-select.cjs",[[6,"ptc-select",{"dataEloquaName":[1,"data-eloqua-name"],"selectId":[1,"select-id"],"name":[1],"valueOptions":[1040]}]]],["lottie-player.cjs",[[1,"lottie-player",{"mode":[1],"autoplay":[4],"background":[513],"controls":[4],"count":[2],"direction":[2],"hover":[4],"loop":[516],"renderer":[1],"speed":[2],"src":[1],"currentState":[1,"current-state"],"seeker":[8],"intermission":[2],"play":[64],"pause":[64],"stop":[64],"seek":[64],"getLottie":[64],"setSpeed":[64],"setDirection":[64],"setLooping":[64],"togglePlay":[64],"toggleLooping":[64]}]]],["ptc-date.cjs",[[1,"ptc-date",{"year":[2],"month":[2],"day":[2],"country":[1],"dateString":[1,"date-string"],"dateColor":[1,"date-color"],"dateStyles":[1,"date-styles"]}]]],["ptc-svg-btn.cjs",[[1,"ptc-svg-btn",{"svgName":[1,"svg-name"]}]]],["icon-asset_16.cjs",[[1,"ptc-breadcrumb"],[1,"ptc-hero",{"heroType":[1,"hero-type"],"bgUrl":[1,"bg-url"]}],[1,"ptc-link",{"disabled":[516],"external":[516],"href":[1],"target":[1],"linkTitle":[1,"link-title"],"theme":[1],"uppercase":[4],"fontSize":[1,"font-size"]}],[1,"ptc-button",{"disabled":[516],"type":[1],"color":[1],"iconAnimation":[1,"icon-animation"],"iconPosition":[1,"icon-position"],"linkHref":[1,"link-href"],"linkTitle":[1,"link-title"],"target":[1],"rel":[1],"tabNav":[2,"tab-nav"],"styles":[1]}],[1,"ptc-card-bottom",{"cardType":[1,"card-type"]}],[1,"ptc-card-content",{"cardType":[1,"card-type"]}],[1,"ptc-card-plm",{"cardType":[1,"card-type"],"cardLink":[1,"card-link"],"linkTitle":[1,"link-title"],"linkTarget":[1,"link-target"]}],[1,"ptc-para",{"fontSize":[1,"font-size"],"fontWeight":[1,"font-weight"],"paraStyle":[1,"para-style"],"paraColor":[1,"para-color"],"paraLineH":[1,"para-line-h"],"paraMargin":[1,"para-margin"]}],[1,"ptc-picture",{"src":[1],"alt":[1],"sizeXs":[1025,"size-xs"],"sizeSm":[1025,"size-sm"],"sizeMd":[1025,"size-md"],"sizeLg":[1025,"size-lg"],"imagePosition":[1,"image-position"],"borderRadius":[1,"border-radius"],"height":[1],"width":[1],"objectFit":[1,"object-fit"],"isFullHeight":[4,"is-full-height"],"isFullWidth":[4,"is-full-width"],"styles":[1],"oldSrc":[32]},[[9,"resize","WindowResize"]]],[1,"ptc-spacer",{"breakpoint":[1],"size":[1],"direction":[1]}],[1,"ptc-span",{"spanStyle":[1,"span-style"],"display":[1],"styles":[1]}],[6,"ptc-title",{"isPlmHub":[4,"is-plm-hub"],"type":[1],"textAlign":[1,"text-align"],"upperline":[1],"titleShadow":[1,"title-shadow"],"titleMargin":[1,"title-margin"],"styles":[1]}],[1,"list-item",{"listType":[1,"list-type"],"linkHref":[1,"link-href"],"flushBefore":[4,"flush-before"]}],[4,"ptc-img",{"sizeXs":[1025,"size-xs"],"sizeSm":[1025,"size-sm"],"sizeMd":[1025,"size-md"],"sizeLg":[1025,"size-lg"],"imgUrl":[1,"img-url"],"imageType":[1,"image-type"],"borderRadius":[1,"border-radius"],"loadMode":[1,"load-mode"]},[[9,"resize","WindowResize"]]],[1,"ptc-overlay",{"filterColor":[1,"filter-color"],"borderRadius":[1,"border-radius"],"overlayZIndex":[1,"overlay-z-index"],"styles":[1]}],[0,"icon-asset",{"name":[1],"size":[1],"type":[1],"spin":[1],"pulse":[1],"color":[1]}]]]], options);
19
19
  });
@@ -265,9 +265,9 @@
265
265
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 19" id="icon-home">
266
266
  <path d="M18.646 8.74414L16.487 6.93218L16.287 6.49296V2.49086H14.854V4.33182L13.912 4.77106L9.694 1.2312L0.737 8.74715L0 7.86868L9.325 0.0435791H10.062L13.707 3.10219V1.91256L14.28 1.33926H16.86L17.433 1.91256V6.22481L19.387 7.86468L18.646 8.74414ZM9.689 4.8421L3.66899 9.90174V17.1105H6.24899V13.3826L7.396 12.235H11.982L13.129 13.3826V17.1105H15.709V9.90174L9.689 4.8421ZM9.689 3.34131L16.855 9.36446V18.2551H11.982V13.3796H7.396V18.2551H2.522V9.36446L9.688 3.34131H9.689Z"></path>
267
267
  </symbol>
268
- <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" id="Carousel-Arrow">
268
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" id="carousel-arrow">
269
269
  <g filter="url(#filter0_d_126_9197)">
270
- <circle cx="24" cy="22" r="20" fill="white"></circle>
270
+ <circle cx="24" cy="22" r="20"></circle>
271
271
  </g>
272
272
  <path d="M24.8556 16L24.8556 20.5762L17 20.5762L17 23.4239L24.8556 23.4239L24.8556 28L31 21.9669L24.8556 16Z" fill="#40434A"></path>
273
273
  <defs>
@@ -283,16 +283,35 @@
283
283
  </filter>
284
284
  </defs>
285
285
  </symbol>
286
- <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="plm-fb">
287
- <path d="M24 12.0732C24 5.44624 18.627 0.0732422 12 0.0732422C5.373 0.0732422 0 5.44624 0 12.0732C0 18.0632 4.388 23.0272 10.125 23.9272V15.5422H7.078V12.0722H10.125V9.43024C10.125 6.42324 11.917 4.76124 14.658 4.76124C15.97 4.76124 17.344 4.99624 17.344 4.99624V7.94924H15.83C14.339 7.94924 13.874 8.87424 13.874 9.82324V12.0732H17.202L16.67 15.5432H13.874V23.9282C19.612 23.0272 24 18.0622 24 12.0732Z" fill="white"></path>
286
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" id="carousel-arrow-left">
287
+ <g filter="url(#filter0_d_494_37)">
288
+ <circle cx="24" cy="22" r="20"></circle>
289
+ <path d="M23.1444 16L23.1444 20.5762L31 20.5762L31 23.4239L23.1444 23.4239L23.1444 28L17 21.9669L23.1444 16Z" fill="#40434A"></path>
290
+ </g>
291
+ <defs>
292
+ <filter id="filter0_d_494_37" x="0" y="0" width="48" height="48" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
293
+ <feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood>
294
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"></feColorMatrix>
295
+ <feOffset dy="2"></feOffset>
296
+ <feGaussianBlur stdDeviation="2"></feGaussianBlur>
297
+ <feComposite in2="hardAlpha" operator="out"></feComposite>
298
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"></feColorMatrix>
299
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_494_37"></feBlend>
300
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_494_37" result="shape"></feBlend>
301
+ </filter>
302
+ </defs>
303
+ </symbol>
304
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="plm-fb">
305
+ <path d="M24 12.0732C24 5.44624 18.627 0.0732422 12 0.0732422C5.373 0.0732422 0 5.44624 0 12.0732C0 18.0632 4.388 23.0272 10.125 23.9272V15.5422H7.078V12.0722H10.125V9.43024C10.125 6.42324 11.917 4.76124 14.658 4.76124C15.97 4.76124 17.344 4.99624 17.344 4.99624V7.94924H15.83C14.339 7.94924 13.874 8.87424 13.874 9.82324V12.0732H17.202L16.67 15.5432H13.874V23.9282C19.612 23.0272 24 18.0622 24 12.0732Z"></path>
288
306
  </symbol>
289
- <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="plm-linkedin">
290
- <path d="M20.447 20.452H16.893V14.883C16.893 13.555 16.866 11.846 15.041 11.846C13.188 11.846 12.905 13.291 12.905 14.785V20.452H9.351V9H12.765V10.561H12.811C13.288 9.661 14.448 8.711 16.181 8.711C19.782 8.711 20.448 11.081 20.448 14.166V20.452H20.447ZM5.337 7.433C4.193 7.433 3.274 6.507 3.274 5.368C3.274 4.23 4.194 3.305 5.337 3.305C6.477 3.305 7.401 4.23 7.401 5.368C7.401 6.507 6.476 7.433 5.337 7.433ZM7.119 20.452H3.555V9H7.119V20.452ZM22.225 0H1.771C0.792 0 0 0.774 0 1.729V22.271C0 23.227 0.792 24 1.771 24H22.222C23.2 24 24 23.227 24 22.271V1.729C24 0.774 23.2 0 22.222 0H22.225Z" fill="white"></path>
307
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="plm-linkedin">
308
+ <path d="M20.447 20.452H16.893V14.883C16.893 13.555 16.866 11.846 15.041 11.846C13.188 11.846 12.905 13.291 12.905 14.785V20.452H9.351V9H12.765V10.561H12.811C13.288 9.661 14.448 8.711 16.181 8.711C19.782 8.711 20.448 11.081 20.448 14.166V20.452H20.447ZM5.337 7.433C4.193 7.433 3.274 6.507 3.274 5.368C3.274 4.23 4.194 3.305 5.337 3.305C6.477 3.305 7.401 4.23 7.401 5.368C7.401 6.507 6.476 7.433 5.337 7.433ZM7.119 20.452H3.555V9H7.119V20.452ZM22.225 0H1.771C0.792 0 0 0.774 0 1.729V22.271C0 23.227 0.792 24 1.771 24H22.222C23.2 24 24 23.227 24 22.271V1.729C24 0.774 23.2 0 22.222 0H22.225Z"></path>
291
309
  </symbol>
292
- <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 15" id="plm-mail">
293
- <path d="M3.3977 14.9995H20.6023C22.479 14.9995 24 13.4329 24 11.4999V0.46875L13.3431 9.336C12.9577 9.67733 12.4786 9.848 11.9995 9.848C11.5205 9.848 11.0414 9.67733 10.656 9.336L0 0.46875V11.4999C0 13.4329 1.52099 14.9995 3.3977 14.9995Z" fill="white"></path>
310
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 16" id="plm-mail">
311
+ <path d="M3.3977 15.9995H20.6023C22.479 15.9995 24 14.4329 24 12.4999V1.46875L13.3431 10.336C12.9577 10.6773 12.4786 10.848 11.9995 10.848C11.5205 10.848 11.0414 10.6773 10.656 10.336L0 1.46875V12.4999C0 14.4329 1.52099 15.9995 3.3977 15.9995Z"></path>
312
+ <path d="M12.1289 8.88116L12.1595 8.85426L22.801 0H1.19824L11.8704 8.88116C11.9452 8.94887 12.0541 8.94887 12.1289 8.88116Z"></path>
294
313
  </symbol>
295
- <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 20" id="plm-twitter">
296
- <path d="M23.953 2.5696C23.0545 2.9652 22.1026 3.22634 21.128 3.3446C22.1541 2.72785 22.9224 1.76064 23.291 0.621599C22.34 1.1766 21.286 1.5806 20.164 1.8056C19.4238 1.01403 18.4429 0.48902 17.3736 0.3121C16.3044 0.13518 15.2067 0.316249 14.2509 0.82719C13.2952 1.33813 12.5349 2.15035 12.0881 3.13772C11.6412 4.1251 11.533 5.23237 11.78 6.2876C7.69 6.0946 4.067 4.1296 1.64 1.1616C1.19879 1.91141 0.968664 2.76662 0.974 3.6366C0.974 5.3466 1.844 6.8496 3.162 7.7326C2.38086 7.70773 1.61697 7.49653 0.934 7.1166V7.1766C0.933557 8.31299 1.32627 9.41454 2.04551 10.2944C2.76474 11.1742 3.76621 11.7781 4.88 12.0036C4.1583 12.197 3.40241 12.226 2.668 12.0886C2.98412 13.0666 3.59766 13.9215 4.42301 14.5341C5.24837 15.1467 6.24435 15.4863 7.272 15.5056C5.53153 16.8715 3.38248 17.6129 1.17 17.6106C0.78 17.6106 0.391 17.5876 0 17.5436C2.25571 18.9879 4.87851 19.7546 7.557 19.7526C16.61 19.7526 21.555 12.2566 21.555 5.7676C21.555 5.5576 21.555 5.3476 21.54 5.1376C22.506 4.44246 23.3392 3.57942 24 2.5896L23.953 2.5696Z" fill="white"></path>
314
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 20" id="plm-twitter">
315
+ <path d="M23.953 2.5696C23.0545 2.9652 22.1026 3.22634 21.128 3.3446C22.1541 2.72785 22.9224 1.76064 23.291 0.621599C22.34 1.1766 21.286 1.5806 20.164 1.8056C19.4238 1.01403 18.4429 0.48902 17.3736 0.3121C16.3044 0.13518 15.2067 0.316249 14.2509 0.82719C13.2952 1.33813 12.5349 2.15035 12.0881 3.13772C11.6412 4.1251 11.533 5.23237 11.78 6.2876C7.69 6.0946 4.067 4.1296 1.64 1.1616C1.19879 1.91141 0.968664 2.76662 0.974 3.6366C0.974 5.3466 1.844 6.8496 3.162 7.7326C2.38086 7.70773 1.61697 7.49653 0.934 7.1166V7.1766C0.933557 8.31299 1.32627 9.41454 2.04551 10.2944C2.76474 11.1742 3.76621 11.7781 4.88 12.0036C4.1583 12.197 3.40241 12.226 2.668 12.0886C2.98412 13.0666 3.59766 13.9215 4.42301 14.5341C5.24837 15.1467 6.24435 15.4863 7.272 15.5056C5.53153 16.8715 3.38248 17.6129 1.17 17.6106C0.78 17.6106 0.391 17.5876 0 17.5436C2.25571 18.9879 4.87851 19.7546 7.557 19.7526C16.61 19.7526 21.555 12.2566 21.555 5.7676C21.555 5.5576 21.555 5.3476 21.54 5.1376C22.506 4.44246 23.3392 3.57942 24 2.5896L23.953 2.5696Z"></path>
297
316
  </symbol>
298
317
  </svg>
@@ -3,7 +3,8 @@
3
3
  }
4
4
 
5
5
  :host(.card-tall) .ptc-card-bottom-wrapper,
6
- :host(.card-wide) .ptc-card-bottom-wrapper {
6
+ :host(.card-wide) .ptc-card-bottom-wrapper,
7
+ :host(.card-2up) .ptc-card-bottom-wrapper {
7
8
  position: absolute;
8
9
  bottom: 0;
9
10
  left: 0;
@@ -17,6 +17,7 @@
17
17
  :host(.card-tall) .ptc-card-content-wrapper,
18
18
  :host(.card-video) .ptc-card-content-wrapper,
19
19
  :host(.card-wide) .ptc-card-content-wrapper,
20
+ :host(.card-2up) .ptc-card-content-wrapper,
20
21
  :host(.card-playlist) .ptc-card-content-wrapper {
21
22
  border-radius: var(--ptc-border-radius-x-large);
22
23
  position: relative;
@@ -24,11 +25,12 @@
24
25
  :host(.card-tall) .ptc-card-content-wrapper::before,
25
26
  :host(.card-video) .ptc-card-content-wrapper::before,
26
27
  :host(.card-wide) .ptc-card-content-wrapper::before,
28
+ :host(.card-2up) .ptc-card-content-wrapper::before,
27
29
  :host(.card-playlist) .ptc-card-content-wrapper::before {
28
30
  content: "";
29
31
  position: absolute;
30
32
  width: 100%;
31
- height: 97.5%;
33
+ height: 100%;
32
34
  border-radius: var(--ptc-border-radius-x-large);
33
35
  top: 0;
34
36
  left: 0;
@@ -40,6 +42,7 @@
40
42
  :host(.card-tall) .ptc-card-content-wrapper::after,
41
43
  :host(.card-video) .ptc-card-content-wrapper::after,
42
44
  :host(.card-wide) .ptc-card-content-wrapper::after,
45
+ :host(.card-2up) .ptc-card-content-wrapper::after,
43
46
  :host(.card-playlist) .ptc-card-content-wrapper::after {
44
47
  content: url("data:image/svg+xml,%3Csvg width='54' height='56' viewBox='0 0 54 56' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_d_126_10476)'%3E%3Cpath d='M42 20L12 36V4L42 20Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_d_126_10476' x='0' y='0' width='54' height='56' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='8'/%3E%3CfeGaussianBlur stdDeviation='6'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_126_10476'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_126_10476' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E%0A");
45
48
  position: absolute;
@@ -61,6 +64,8 @@
61
64
  }
62
65
  :host(.card-playlist) .ptc-card-content-wrapper::after {
63
66
  content: url("data:image/svg+xml,%3Csvg width='46' height='48' viewBox='0 0 46 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_d_126_10337)'%3E%3Cpath d='M34 16L12 28V4L34 16Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_d_126_10337' x='0' y='0' width='46' height='48' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='8'/%3E%3CfeGaussianBlur stdDeviation='6'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_126_10337'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_126_10337' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E%0A");
67
+ width: 40px;
68
+ height: 30px;
64
69
  }
65
70
 
66
71
  :host(.mouse-hover) .ptc-card-content-wrapper::before {
@@ -71,7 +76,8 @@
71
76
  }
72
77
 
73
78
  :host(.card-tall) .ptc-card-content-wrapper::before,
74
- :host(.card-wide) .ptc-card-content-wrapper::before {
79
+ :host(.card-wide) .ptc-card-content-wrapper::before,
80
+ :host(.card-2up) .ptc-card-content-wrapper::before {
75
81
  height: 100%;
76
82
  }
77
83
 
@@ -84,4 +90,88 @@
84
90
  :host(.card-video-intro) {
85
91
  flex: 80% 8 1;
86
92
  }
93
+ }
94
+ :host(.card-video) .ptc-card-content-wrapper {
95
+ padding-bottom: 56.25%;
96
+ }
97
+ :host(.card-video) .ptc-card-content-wrapper ::slotted(*) {
98
+ position: absolute;
99
+ width: 100%;
100
+ height: 100%;
101
+ top: 0;
102
+ left: 0;
103
+ }
104
+
105
+ :host(.card-tall) .ptc-card-content-wrapper {
106
+ height: 322px;
107
+ }
108
+ :host(.card-tall) .ptc-card-content-wrapper ::slotted(*) {
109
+ height: 322px;
110
+ }
111
+
112
+ :host(.card-wide) .ptc-card-content-wrapper {
113
+ height: 268px;
114
+ }
115
+ :host(.card-wide) .ptc-card-content-wrapper ::slotted(*) {
116
+ height: 268px;
117
+ }
118
+
119
+ :host(.card-2up) .ptc-card-content-wrapper {
120
+ height: 322px;
121
+ }
122
+ :host(.card-2up) .ptc-card-content-wrapper ::slotted(*) {
123
+ height: 322px;
124
+ }
125
+
126
+ @media screen and (min-width: 768px) {
127
+ :host(.card-tall) .ptc-card-content-wrapper {
128
+ height: 325px;
129
+ }
130
+ :host(.card-tall) .ptc-card-content-wrapper ::slotted(*) {
131
+ height: 325px;
132
+ }
133
+
134
+ :host(.card-wide) .ptc-card-content-wrapper {
135
+ height: 268px;
136
+ }
137
+ :host(.card-wide) .ptc-card-content-wrapper ::slotted(*) {
138
+ height: 268px;
139
+ }
140
+
141
+ :host(.card-2up) .ptc-card-content-wrapper {
142
+ height: 268px;
143
+ }
144
+ :host(.card-2up) .ptc-card-content-wrapper ::slotted(*) {
145
+ height: 268px;
146
+ }
147
+ }
148
+ @media screen and (min-width: 992px) {
149
+ :host(.card-tall) .ptc-card-content-wrapper {
150
+ height: 380px;
151
+ }
152
+ :host(.card-tall) .ptc-card-content-wrapper ::slotted(*) {
153
+ height: 380px;
154
+ }
155
+ }
156
+ @media screen and (min-width: 1980px) {
157
+ :host(.card-tall) .ptc-card-content-wrapper {
158
+ height: 546px;
159
+ }
160
+ :host(.card-tall) .ptc-card-content-wrapper ::slotted(*) {
161
+ height: 546px;
162
+ }
163
+
164
+ :host(.card-wide) .ptc-card-content-wrapper {
165
+ height: 376px;
166
+ }
167
+ :host(.card-wide) .ptc-card-content-wrapper ::slotted(*) {
168
+ height: 376px;
169
+ }
170
+
171
+ :host(.card-2up) .ptc-card-content-wrapper {
172
+ height: 376px;
173
+ }
174
+ :host(.card-2up) .ptc-card-content-wrapper ::slotted(*) {
175
+ height: 376px;
176
+ }
87
177
  }
@@ -4,17 +4,23 @@
4
4
 
5
5
  :host(.card-tall),
6
6
  :host(.card-wide),
7
- :host(.card-video) :host(.card-playlist) {
7
+ :host(.card-video),
8
+ :host(.card-playlist),
9
+ :host(.card-2up) {
8
10
  position: relative;
9
11
  }
10
12
  :host(.card-tall) a,
11
13
  :host(.card-wide) a,
12
- :host(.card-video) :host(.card-playlist) a {
13
- text-decoration: none;
14
+ :host(.card-video) a,
15
+ :host(.card-playlist) a,
16
+ :host(.card-2up) a {
17
+ text-decoration: none !important;
14
18
  }
15
19
  :host(.card-tall) a:hover,
16
20
  :host(.card-wide) a:hover,
17
- :host(.card-video) :host(.card-playlist) a:hover {
21
+ :host(.card-video) a:hover,
22
+ :host(.card-playlist) a:hover,
23
+ :host(.card-2up) a:hover {
18
24
  text-decoration: none;
19
25
  }
20
26
 
@@ -30,6 +36,10 @@
30
36
  outline: none;
31
37
  }
32
38
 
39
+ :host(.card-video-intro) {
40
+ border-bottom-left-radius: var(--ptc-border-radius-large);
41
+ border-bottom-right-radius: var(--ptc-border-radius-large);
42
+ }
33
43
  :host(.card-video-intro) div {
34
44
  display: block;
35
45
  }
@@ -28,8 +28,8 @@ export class PtcCardPlm {
28
28
  "type": "string",
29
29
  "mutable": false,
30
30
  "complexType": {
31
- "original": "'card-video'| 'card-tall' | 'card-wide' | 'speed-bump' | 'card-playlist' | 'card-video-intro'",
32
- "resolved": "\"card-playlist\" | \"card-tall\" | \"card-video\" | \"card-video-intro\" | \"card-wide\" | \"speed-bump\"",
31
+ "original": "'card-video'| 'card-tall' | 'card-wide' | 'speed-bump' | 'card-playlist' | 'card-video-intro'| 'card-2up'",
32
+ "resolved": "\"card-2up\" | \"card-playlist\" | \"card-tall\" | \"card-video\" | \"card-video-intro\" | \"card-wide\" | \"speed-bump\"",
33
33
  "references": {}
34
34
  },
35
35
  "required": false,
@@ -1,10 +1,16 @@
1
1
  import { Component, Host, h, Prop } from '@stencil/core';
2
2
  export class PtcHero {
3
+ constructor() {
4
+ /**
5
+ * Hero Background Image URL
6
+ */
7
+ this.bgUrl = undefined;
8
+ }
3
9
  render() {
4
10
  const classMap = this.getCssClassMap();
5
11
  return (h(Host, { class: classMap },
6
12
  h("div", { class: "ptc-hero-wrapper" },
7
- h("ptc-img", { "image-type": "smart-bg", "img-url": "http://s7d1.scene7.com/is/image/ptcinc/cs-boeing-planes-runway", "size-xs": "600x450", "size-sm": "1108x658", "size-md": "1920x1080", "size-lg": "2700x1500" },
13
+ h("ptc-img", Object.assign({ "image-type": "smart-bg" }, (!!this.bgUrl ? { imgUrl: this.bgUrl } : {}), { "size-xs": "600x450", "size-sm": "1108x658", "size-md": "1920x1080", "size-lg": "2700x1500" }),
8
14
  this.heroType == 'jumbotron' ? ([h("ptc-overlay", { "filter-color": "black-1-xs" }), h("ptc-overlay", { "filter-color": "black-2-xs" })]) : this.heroType == 'footer-cta' ? (h("ptc-overlay", { "filter-color": "black-3" })) : null,
9
15
  h("slot", null)))));
10
16
  }
@@ -34,10 +40,28 @@ export class PtcHero {
34
40
  "optional": false,
35
41
  "docs": {
36
42
  "tags": [],
37
- "text": ""
43
+ "text": "Hero Type"
38
44
  },
39
45
  "attribute": "hero-type",
40
46
  "reflect": false
47
+ },
48
+ "bgUrl": {
49
+ "type": "string",
50
+ "mutable": false,
51
+ "complexType": {
52
+ "original": "string",
53
+ "resolved": "string",
54
+ "references": {}
55
+ },
56
+ "required": false,
57
+ "optional": false,
58
+ "docs": {
59
+ "tags": [],
60
+ "text": "Hero Background Image URL"
61
+ },
62
+ "attribute": "bg-url",
63
+ "reflect": false,
64
+ "defaultValue": "undefined"
41
65
  }
42
66
  }; }
43
67
  }
@@ -144,4 +144,10 @@ p.announcement {
144
144
  color: var(--color-secondary-grey);
145
145
  line-height: var(--ptc-line-height-looser);
146
146
  letter-spacing: 1px;
147
+ }
148
+
149
+ @media screen and (min-width: 992px) {
150
+ p.font-size-15 {
151
+ font-size: var(--ptc-font-size-medium);
152
+ }
147
153
  }
@@ -12,7 +12,7 @@
12
12
  }
13
13
 
14
14
  :host(.absoltue) {
15
- position: static;
15
+ position: absolute;
16
16
  }
17
17
 
18
18
  img {
@@ -61,4 +61,12 @@ img {
61
61
 
62
62
  .radius-x-lg {
63
63
  border-radius: var(--ptc-border-radius-x-large);
64
+ }
65
+
66
+ .is-full-height {
67
+ height: 100%;
68
+ }
69
+
70
+ .is-full-width {
71
+ width: 100%;
64
72
  }
@@ -35,6 +35,14 @@ export class PtcPicture {
35
35
  * Default: cover
36
36
  */
37
37
  this.objectFit = 'cover';
38
+ /**
39
+ * Stretch height to 100%?
40
+ */
41
+ this.isFullHeight = false;
42
+ /**
43
+ * Stretch width to 100%?
44
+ */
45
+ this.isFullWidth = false;
38
46
  }
39
47
  WindowResize() {
40
48
  this.addIntersectionObserver();
@@ -145,6 +153,8 @@ export class PtcPicture {
145
153
  return {
146
154
  [this.borderRadius]: this.borderRadius ? true : false,
147
155
  [this.objectFit]: true,
156
+ [this.isFullHeight ? 'is-full-height' : 'is-normal-height']: true,
157
+ [this.isFullWidth ? 'is-full-width' : 'is-normal-width']: true
148
158
  };
149
159
  }
150
160
  static get is() { return "ptc-picture"; }
@@ -350,6 +360,42 @@ export class PtcPicture {
350
360
  "reflect": false,
351
361
  "defaultValue": "'cover'"
352
362
  },
363
+ "isFullHeight": {
364
+ "type": "boolean",
365
+ "mutable": false,
366
+ "complexType": {
367
+ "original": "boolean",
368
+ "resolved": "boolean",
369
+ "references": {}
370
+ },
371
+ "required": false,
372
+ "optional": false,
373
+ "docs": {
374
+ "tags": [],
375
+ "text": "Stretch height to 100%?"
376
+ },
377
+ "attribute": "is-full-height",
378
+ "reflect": false,
379
+ "defaultValue": "false"
380
+ },
381
+ "isFullWidth": {
382
+ "type": "boolean",
383
+ "mutable": false,
384
+ "complexType": {
385
+ "original": "boolean",
386
+ "resolved": "boolean",
387
+ "references": {}
388
+ },
389
+ "required": false,
390
+ "optional": false,
391
+ "docs": {
392
+ "tags": [],
393
+ "text": "Stretch width to 100%?"
394
+ },
395
+ "attribute": "is-full-width",
396
+ "reflect": false,
397
+ "defaultValue": "false"
398
+ },
353
399
  "styles": {
354
400
  "type": "string",
355
401
  "mutable": false,
@@ -158,4 +158,19 @@ div.margin-5 {
158
158
  div.margin-6 {
159
159
  margin-top: var(--ptc-element-spacing-06);
160
160
  margin-bottom: var(--ptc-element-spacing-06);
161
+ }
162
+ div.green h1, div.green h2, div.green h3 {
163
+ text-shadow: 0px 0px 12px var(--color-green-07);
164
+ }
165
+ div.blue h1, div.blue h2, div.blue h3 {
166
+ text-shadow: 0px 0px 12px var(--color-blue-07);
167
+ }
168
+ div.red h1, div.red h2, div.red h3 {
169
+ text-shadow: 0px 0px 12px var(--color-red-07);
170
+ }
171
+ div.orange h1, div.orange h2, div.orange h3 {
172
+ text-shadow: 0px 0px 12px var(--color-orange-07);
173
+ }
174
+ div.slate-grey h1, div.slate-grey h2, div.slate-grey h3 {
175
+ text-shadow: 0px 0px 12px var(--color-grey-07);
161
176
  }
@@ -41,7 +41,8 @@ export class PtcTitle {
41
41
  [this.textAlign]: true,
42
42
  [this.upperline]: true,
43
43
  [this.isPlmHub ? 'is-plm-hub' : 'is-standard']: true,
44
- [this.titleMargin]: !!this.titleMargin ? true : false
44
+ [this.titleMargin]: !!this.titleMargin ? true : false,
45
+ [this.titleShadow]: !!this.titleShadow ? true : false
45
46
  };
46
47
  }
47
48
  static get is() { return "ptc-title"; }
@@ -125,6 +126,23 @@ export class PtcTitle {
125
126
  "reflect": false,
126
127
  "defaultValue": "'dotted'"
127
128
  },
129
+ "titleShadow": {
130
+ "type": "string",
131
+ "mutable": false,
132
+ "complexType": {
133
+ "original": "'blue' | 'red' | 'green' | 'orange' | 'slate-grey'",
134
+ "resolved": "\"blue\" | \"green\" | \"orange\" | \"red\" | \"slate-grey\"",
135
+ "references": {}
136
+ },
137
+ "required": false,
138
+ "optional": false,
139
+ "docs": {
140
+ "tags": [],
141
+ "text": "Title Shadow"
142
+ },
143
+ "attribute": "title-shadow",
144
+ "reflect": false
145
+ },
128
146
  "titleMargin": {
129
147
  "type": "string",
130
148
  "mutable": false,