@pure-ds/storybook 0.7.60 → 0.7.70

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 (36) hide show
  1. package/dist/pds-reference.json +84 -1
  2. package/package.json +2 -2
  3. package/public/assets/data/icons_en.json +29344 -0
  4. package/public/assets/js/app.js +1 -1
  5. package/public/assets/js/pds-autocomplete.js +3 -3
  6. package/public/assets/js/pds-enhancers.js +1 -1
  7. package/public/assets/js/pds-localization.js +1 -1
  8. package/public/assets/js/pds-manager.js +448 -276
  9. package/public/assets/pds/components/pds-form.js +3 -3
  10. package/public/assets/pds/components/pds-icon.js +73 -6
  11. package/public/assets/pds/components/pds-omnibox.js +3 -1
  12. package/public/assets/pds/components/pds-render.js +768 -0
  13. package/public/assets/pds/components/pds-scrollrow.js +68 -29
  14. package/public/assets/pds/components/pds-tags.js +33 -3
  15. package/public/assets/pds/core/pds-autocomplete.js +3 -3
  16. package/public/assets/pds/core/pds-enhancers.js +1 -1
  17. package/public/assets/pds/core/pds-localization.js +1 -1
  18. package/public/assets/pds/core/pds-manager.js +448 -276
  19. package/public/assets/pds/icons/pds-icons.svg +8 -0
  20. package/src/js/common/localization-resource-provider.js +3 -1
  21. package/src/js/common/localization-resource-provider.test.mjs +91 -0
  22. package/src/js/pds-autocomplete.js +2 -1
  23. package/src/js/pds-core/pds-config.js +2 -0
  24. package/src/js/pds-core/pds-enhancers-meta.js +64 -9
  25. package/src/js/pds-core/pds-enhancers.js +265 -5
  26. package/src/js/pds-core/pds-generator.js +153 -0
  27. package/src/js/pds.d.ts +1 -0
  28. package/stories/components/PdsForm.Basics.stories.js +1 -0
  29. package/stories/components/PdsForm.stories.js +58 -0
  30. package/stories/components/PdsIcon.stories.js +103 -0
  31. package/stories/components/PdsRender.stories.js +116 -0
  32. package/stories/components/PdsTags.stories.js +332 -0
  33. package/stories/enhancements/Dropdowns.stories.js +44 -0
  34. package/stories/enhancements/OtpInput.stories.js +114 -0
  35. package/stories/enhancements/_enhancement-header.js +1 -0
  36. package/stories/foundations/Colors.stories.js +149 -38
@@ -1,5 +1,5 @@
1
1
  {
2
- "generatedAt": "2026-03-28T12:12:10.967Z",
2
+ "generatedAt": "2026-04-30T17:29:18.055Z",
3
3
  "sources": {
4
4
  "customElements": "custom-elements.json",
5
5
  "ontology": "src\\js\\pds-core\\pds-ontology.js",
@@ -5350,6 +5350,13 @@
5350
5350
  "demoHtml": null,
5351
5351
  "source": "src\\js\\pds-core\\pds-ontology.js"
5352
5352
  },
5353
+ {
5354
+ "id": "input-autocomplete-one-time-code",
5355
+ "selector": "input[autocomplete=\"one-time-code\"]",
5356
+ "description": null,
5357
+ "demoHtml": null,
5358
+ "source": "src\\js\\pds-core\\pds-enhancers.js"
5359
+ },
5353
5360
  {
5354
5361
  "id": "input-type-range",
5355
5362
  "selector": "input[type=\"range\"]",
@@ -7789,6 +7796,53 @@
7789
7796
  "packages\\pds-storybook\\stories\\components\\PdsRating.stories.js"
7790
7797
  ]
7791
7798
  },
7799
+ "pds-render": {
7800
+ "slug": "pds-render",
7801
+ "storyTitle": "Components/pds-render",
7802
+ "category": "Components",
7803
+ "name": "pds-render",
7804
+ "description": "Sandboxed renderer for live preview content.\n\n## Public Contract\n\n| API | Type | Description |\n|-----|------|-------------|\n| html | string property | Updates iframe body HTML. |\n| css | string property | Updates user CSS stylesheet. |\n| js | string property | Updates runtime JS module and reloads preview. |\n| setContent(content, options?) | method | Batch update html/css/js via one call. |\n| update(content, options?) | method | Alias for setContent(content, options). |\n| reload() | method | Force full iframe srcdoc rebuild. |\n\ncontent shape:\n- html?: string\n- css?: string\n- js?: string\n\noptions shape:\n- reload?: boolean (default false)",
7805
+ "tags": [
7806
+ "autodocs",
7807
+ "docs",
7808
+ "iframe",
7809
+ "pds-render",
7810
+ "playground",
7811
+ "preview",
7812
+ "sandbox"
7813
+ ],
7814
+ "pdsParameters": {
7815
+ "tags": [
7816
+ "preview",
7817
+ "sandbox",
7818
+ "iframe",
7819
+ "pds-render",
7820
+ "docs",
7821
+ "playground"
7822
+ ]
7823
+ },
7824
+ "stories": [
7825
+ {
7826
+ "exportName": "BatchedJsReload",
7827
+ "name": "Batched JS Reload",
7828
+ "id": "components-pds-render--batched-js-reload",
7829
+ "tags": [],
7830
+ "description": null,
7831
+ "source": "packages\\pds-storybook\\stories\\components\\PdsRender.stories.js"
7832
+ },
7833
+ {
7834
+ "exportName": "PublicContract",
7835
+ "name": "Public Contract",
7836
+ "id": "components-pds-render--public-contract",
7837
+ "tags": [],
7838
+ "description": null,
7839
+ "source": "packages\\pds-storybook\\stories\\components\\PdsRender.stories.js"
7840
+ }
7841
+ ],
7842
+ "files": [
7843
+ "packages\\pds-storybook\\stories\\components\\PdsRender.stories.js"
7844
+ ]
7845
+ },
7792
7846
  "saving-draft": {
7793
7847
  "slug": "saving-draft",
7794
7848
  "storyTitle": "Saving draft",
@@ -8253,6 +8307,35 @@
8253
8307
  "packages\\pds-storybook\\stories\\enhancements\\OpenGroups.stories.js"
8254
8308
  ]
8255
8309
  },
8310
+ "input-autocomplete": {
8311
+ "slug": "input-autocomplete",
8312
+ "storyTitle": "Enhancements/input[autocomplete=",
8313
+ "category": "Enhancements",
8314
+ "name": "input[autocomplete=",
8315
+ "description": null,
8316
+ "tags": [
8317
+ "accessibility",
8318
+ "enhancement",
8319
+ "forms",
8320
+ "input",
8321
+ "one-time-code",
8322
+ "otp"
8323
+ ],
8324
+ "pdsParameters": {
8325
+ "tags": [
8326
+ "otp",
8327
+ "one-time-code",
8328
+ "input",
8329
+ "forms",
8330
+ "accessibility",
8331
+ "enhancement"
8332
+ ]
8333
+ },
8334
+ "stories": [],
8335
+ "files": [
8336
+ "packages\\pds-storybook\\stories\\enhancements\\OtpInput.stories.js"
8337
+ ]
8338
+ },
8256
8339
  "input-type": {
8257
8340
  "slug": "input-type",
8258
8341
  "storyTitle": "Enhancements/input[type=",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pure-ds/storybook",
3
- "version": "0.7.60",
3
+ "version": "0.7.70",
4
4
  "description": "Storybook showcase for Pure Design System with live configuration",
5
5
  "type": "module",
6
6
  "private": false,
@@ -38,7 +38,7 @@
38
38
  "pds:build-icons": "pds-build-icons"
39
39
  },
40
40
  "peerDependencies": {
41
- "@pure-ds/core": "^0.7.60"
41
+ "@pure-ds/core": "^0.7.70"
42
42
  },
43
43
  "dependencies": {
44
44
  "@custom-elements-manifest/analyzer": "^0.11.0",