@pure-ds/storybook 0.1.5 → 0.1.6
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.
|
@@ -77,7 +77,7 @@ async function loadConfigForm() {
|
|
|
77
77
|
configFormLoaded = true;
|
|
78
78
|
|
|
79
79
|
// Listen for design updates from the form
|
|
80
|
-
const PDS = (await import('
|
|
80
|
+
const PDS = (await import('@pds-src/js/pds.js')).PDS;
|
|
81
81
|
PDS.addEventListener('pds:design:updated', async (e) => {
|
|
82
82
|
console.log('Design updated in configurator:', e.detail);
|
|
83
83
|
|
|
@@ -135,7 +135,7 @@ if (typeof window !== 'undefined') {
|
|
|
135
135
|
|
|
136
136
|
channel.on(EVENTS.QUERY_EXECUTED, async ({ query }) => {
|
|
137
137
|
try {
|
|
138
|
-
const PDS = (await import('
|
|
138
|
+
const PDS = (await import('@pds-src/js/pds.js')).PDS;
|
|
139
139
|
const results = await PDS.query(query);
|
|
140
140
|
|
|
141
141
|
// Send results back to manager
|
package/dist/pds-reference.json
CHANGED