@ptcwebops/ptcw-design 3.5.8 → 3.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/dist/cjs/loader.cjs.js +1 -1
  2. package/dist/cjs/ptc-checkbox-group.cjs.entry.js +50 -0
  3. package/dist/cjs/ptc-preferance-center-form.cjs.entry.js +28 -0
  4. package/dist/cjs/ptc-showcase-card.cjs.entry.js +1 -1
  5. package/dist/cjs/ptc-title.cjs.entry.js +1 -1
  6. package/dist/cjs/ptcw-design.cjs.js +1 -1
  7. package/dist/collection/collection-manifest.json +2 -0
  8. package/dist/collection/components/icon-asset/media/designer.svg +1 -1
  9. package/dist/collection/components/ptc-checkbox-group/ptc-checkbox-group.css +75 -0
  10. package/dist/collection/components/ptc-checkbox-group/ptc-checkbox-group.js +90 -0
  11. package/dist/collection/components/ptc-preferance-center-form/ptc-preferance-center-form.css +37 -0
  12. package/dist/collection/components/ptc-preferance-center-form/ptc-preferance-center-form.js +27 -0
  13. package/dist/collection/components/ptc-showcase-card/ptc-showcase-card.css +3 -0
  14. package/dist/collection/components/ptc-title/ptc-title.css +1 -1
  15. package/dist/custom-elements/index.d.ts +12 -0
  16. package/dist/custom-elements/index.js +74 -3
  17. package/dist/esm/loader.js +1 -1
  18. package/dist/esm/ptc-checkbox-group.entry.js +46 -0
  19. package/dist/esm/ptc-preferance-center-form.entry.js +24 -0
  20. package/dist/esm/ptc-showcase-card.entry.js +1 -1
  21. package/dist/esm/ptc-title.entry.js +1 -1
  22. package/dist/esm/ptcw-design.js +1 -1
  23. package/dist/ptcw-design/media/designer.svg +1 -1
  24. package/dist/ptcw-design/{p-5e506e9c.entry.js → p-0838bd76.entry.js} +1 -1
  25. package/dist/ptcw-design/{p-55cb70b9.entry.js → p-4a0cdd85.entry.js} +1 -1
  26. package/dist/ptcw-design/p-51187ea1.entry.js +1 -0
  27. package/dist/ptcw-design/p-bf0ad42b.entry.js +1 -0
  28. package/dist/ptcw-design/ptcw-design.esm.js +1 -1
  29. package/dist/types/components/ptc-checkbox-group/ptc-checkbox-group.d.ts +10 -0
  30. package/dist/types/components/ptc-preferance-center-form/ptc-preferance-center-form.d.ts +5 -0
  31. package/dist/types/components.d.ts +30 -0
  32. package/package.json +1 -1
  33. package/readme.md +1 -1
@@ -525,6 +525,10 @@ export namespace Components {
525
525
  "inputName": string;
526
526
  "value": string;
527
527
  }
528
+ interface PtcCheckboxGroup {
529
+ "groupName": string;
530
+ "type": 'single' | 'card';
531
+ }
528
532
  interface PtcCollapseList {
529
533
  "addSelectedItem": (value: string) => Promise<void>;
530
534
  "debounceUpdateDelay": 500;
@@ -1287,6 +1291,8 @@ export namespace Components {
1287
1291
  */
1288
1292
  "imageSrc"?: string;
1289
1293
  }
1294
+ interface PtcPreferanceCenterForm {
1295
+ }
1290
1296
  interface PtcPreloaderSection {
1291
1297
  "numberOfCards": number;
1292
1298
  "sectionType": string;
@@ -2465,6 +2471,12 @@ declare global {
2465
2471
  prototype: HTMLPtcCheckboxElement;
2466
2472
  new (): HTMLPtcCheckboxElement;
2467
2473
  };
2474
+ interface HTMLPtcCheckboxGroupElement extends Components.PtcCheckboxGroup, HTMLStencilElement {
2475
+ }
2476
+ var HTMLPtcCheckboxGroupElement: {
2477
+ prototype: HTMLPtcCheckboxGroupElement;
2478
+ new (): HTMLPtcCheckboxGroupElement;
2479
+ };
2468
2480
  interface HTMLPtcCollapseListElement extends Components.PtcCollapseList, HTMLStencilElement {
2469
2481
  }
2470
2482
  var HTMLPtcCollapseListElement: {
@@ -2711,6 +2723,12 @@ declare global {
2711
2723
  prototype: HTMLPtcPodcastCardElement;
2712
2724
  new (): HTMLPtcPodcastCardElement;
2713
2725
  };
2726
+ interface HTMLPtcPreferanceCenterFormElement extends Components.PtcPreferanceCenterForm, HTMLStencilElement {
2727
+ }
2728
+ var HTMLPtcPreferanceCenterFormElement: {
2729
+ prototype: HTMLPtcPreferanceCenterFormElement;
2730
+ new (): HTMLPtcPreferanceCenterFormElement;
2731
+ };
2714
2732
  interface HTMLPtcPreloaderSectionElement extends Components.PtcPreloaderSection, HTMLStencilElement {
2715
2733
  }
2716
2734
  var HTMLPtcPreloaderSectionElement: {
@@ -3101,6 +3119,7 @@ declare global {
3101
3119
  "ptc-card-wrapper": HTMLPtcCardWrapperElement;
3102
3120
  "ptc-case-studies-slider": HTMLPtcCaseStudiesSliderElement;
3103
3121
  "ptc-checkbox": HTMLPtcCheckboxElement;
3122
+ "ptc-checkbox-group": HTMLPtcCheckboxGroupElement;
3104
3123
  "ptc-collapse-list": HTMLPtcCollapseListElement;
3105
3124
  "ptc-container": HTMLPtcContainerElement;
3106
3125
  "ptc-data-lookup": HTMLPtcDataLookupElement;
@@ -3142,6 +3161,7 @@ declare global {
3142
3161
  "ptc-para": HTMLPtcParaElement;
3143
3162
  "ptc-picture": HTMLPtcPictureElement;
3144
3163
  "ptc-podcast-card": HTMLPtcPodcastCardElement;
3164
+ "ptc-preferance-center-form": HTMLPtcPreferanceCenterFormElement;
3145
3165
  "ptc-preloader-section": HTMLPtcPreloaderSectionElement;
3146
3166
  "ptc-previous-url": HTMLPtcPreviousUrlElement;
3147
3167
  "ptc-pricing-add-on-card": HTMLPtcPricingAddOnCardElement;
@@ -3742,6 +3762,10 @@ declare namespace LocalJSX {
3742
3762
  "onCheckedChanged"?: (event: PtcCheckboxCustomEvent<any>) => void;
3743
3763
  "value"?: string;
3744
3764
  }
3765
+ interface PtcCheckboxGroup {
3766
+ "groupName"?: string;
3767
+ "type"?: 'single' | 'card';
3768
+ }
3745
3769
  interface PtcCollapseList {
3746
3770
  "debounceUpdateDelay"?: 500;
3747
3771
  "header"?: string;
@@ -4530,6 +4554,8 @@ declare namespace LocalJSX {
4530
4554
  */
4531
4555
  "imageSrc"?: string;
4532
4556
  }
4557
+ interface PtcPreferanceCenterForm {
4558
+ }
4533
4559
  interface PtcPreloaderSection {
4534
4560
  "numberOfCards"?: number;
4535
4561
  "sectionType"?: string;
@@ -5413,6 +5439,7 @@ declare namespace LocalJSX {
5413
5439
  "ptc-card-wrapper": PtcCardWrapper;
5414
5440
  "ptc-case-studies-slider": PtcCaseStudiesSlider;
5415
5441
  "ptc-checkbox": PtcCheckbox;
5442
+ "ptc-checkbox-group": PtcCheckboxGroup;
5416
5443
  "ptc-collapse-list": PtcCollapseList;
5417
5444
  "ptc-container": PtcContainer;
5418
5445
  "ptc-data-lookup": PtcDataLookup;
@@ -5454,6 +5481,7 @@ declare namespace LocalJSX {
5454
5481
  "ptc-para": PtcPara;
5455
5482
  "ptc-picture": PtcPicture;
5456
5483
  "ptc-podcast-card": PtcPodcastCard;
5484
+ "ptc-preferance-center-form": PtcPreferanceCenterForm;
5457
5485
  "ptc-preloader-section": PtcPreloaderSection;
5458
5486
  "ptc-previous-url": PtcPreviousUrl;
5459
5487
  "ptc-pricing-add-on-card": PtcPricingAddOnCard;
@@ -5554,6 +5582,7 @@ declare module "@stencil/core" {
5554
5582
  "ptc-card-wrapper": LocalJSX.PtcCardWrapper & JSXBase.HTMLAttributes<HTMLPtcCardWrapperElement>;
5555
5583
  "ptc-case-studies-slider": LocalJSX.PtcCaseStudiesSlider & JSXBase.HTMLAttributes<HTMLPtcCaseStudiesSliderElement>;
5556
5584
  "ptc-checkbox": LocalJSX.PtcCheckbox & JSXBase.HTMLAttributes<HTMLPtcCheckboxElement>;
5585
+ "ptc-checkbox-group": LocalJSX.PtcCheckboxGroup & JSXBase.HTMLAttributes<HTMLPtcCheckboxGroupElement>;
5557
5586
  "ptc-collapse-list": LocalJSX.PtcCollapseList & JSXBase.HTMLAttributes<HTMLPtcCollapseListElement>;
5558
5587
  "ptc-container": LocalJSX.PtcContainer & JSXBase.HTMLAttributes<HTMLPtcContainerElement>;
5559
5588
  "ptc-data-lookup": LocalJSX.PtcDataLookup & JSXBase.HTMLAttributes<HTMLPtcDataLookupElement>;
@@ -5595,6 +5624,7 @@ declare module "@stencil/core" {
5595
5624
  "ptc-para": LocalJSX.PtcPara & JSXBase.HTMLAttributes<HTMLPtcParaElement>;
5596
5625
  "ptc-picture": LocalJSX.PtcPicture & JSXBase.HTMLAttributes<HTMLPtcPictureElement>;
5597
5626
  "ptc-podcast-card": LocalJSX.PtcPodcastCard & JSXBase.HTMLAttributes<HTMLPtcPodcastCardElement>;
5627
+ "ptc-preferance-center-form": LocalJSX.PtcPreferanceCenterForm & JSXBase.HTMLAttributes<HTMLPtcPreferanceCenterFormElement>;
5598
5628
  "ptc-preloader-section": LocalJSX.PtcPreloaderSection & JSXBase.HTMLAttributes<HTMLPtcPreloaderSectionElement>;
5599
5629
  "ptc-previous-url": LocalJSX.PtcPreviousUrl & JSXBase.HTMLAttributes<HTMLPtcPreviousUrlElement>;
5600
5630
  "ptc-pricing-add-on-card": LocalJSX.PtcPricingAddOnCard & JSXBase.HTMLAttributes<HTMLPtcPricingAddOnCardElement>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ptcwebops/ptcw-design",
3
- "version": "3.5.8",
3
+ "version": "3.6.0",
4
4
  "description": "Stencil Component Starter",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "./dist/index.js",
package/readme.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ![Built With Stencil](https://img.shields.io/badge/-Built%20With%20Stencil-16161d.svg?logo=data%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjIuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI%2BCjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI%2BCgkuc3Qwe2ZpbGw6I0ZGRkZGRjt9Cjwvc3R5bGU%2BCjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik00MjQuNywzNzMuOWMwLDM3LjYtNTUuMSw2OC42LTkyLjcsNjguNkgxODAuNGMtMzcuOSwwLTkyLjctMzAuNy05Mi43LTY4LjZ2LTMuNmgzMzYuOVYzNzMuOXoiLz4KPHBhdGggY2xhc3M9InN0MCIgZD0iTTQyNC43LDI5Mi4xSDE4MC40Yy0zNy42LDAtOTIuNy0zMS05Mi43LTY4LjZ2LTMuNkgzMzJjMzcuNiwwLDkyLjcsMzEsOTIuNyw2OC42VjI5Mi4xeiIvPgo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNNDI0LjcsMTQxLjdIODcuN3YtMy42YzAtMzcuNiw1NC44LTY4LjYsOTIuNy02OC42SDMzMmMzNy45LDAsOTIuNywzMC43LDkyLjcsNjguNlYxNDEuN3oiLz4KPC9zdmc%2BCg%3D%3D&colorA=16161d&style=flat-square)
2
2
 
3
- # PTC Design 3.5.8
3
+ # PTC Design 3.6.0
4
4
 
5
5
  The site is the place for documentation on PTC Design System
6
6