@descope/web-components-ui 1.28.0 → 1.30.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.
- package/dist/cjs/index.cjs.js +3 -11
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +3 -11
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/2540.js +1 -1
- package/dist/umd/8823.js +1 -1
- package/dist/umd/DescopeDev.js +1 -1
- package/package.json +7 -7
package/dist/cjs/index.cjs.js
CHANGED
@@ -6035,14 +6035,6 @@ const createBaseConnectorClass = () =>
|
|
6035
6035
|
);
|
6036
6036
|
|
6037
6037
|
if (missingOrInvalidParams.length) {
|
6038
|
-
// eslint-disable-next-line no-console
|
6039
|
-
console.error(
|
6040
|
-
`[${this.constructor.name}] Invalid configuration. Issues with parameters:`,
|
6041
|
-
missingOrInvalidParams.map((param) => ({
|
6042
|
-
param,
|
6043
|
-
value: this.getAttribute(param),
|
6044
|
-
})),
|
6045
|
-
);
|
6046
6038
|
return false;
|
6047
6039
|
}
|
6048
6040
|
return true;
|
@@ -6505,8 +6497,6 @@ const connectorMixin =
|
|
6505
6497
|
const template = this.connectorTemplate;
|
6506
6498
|
|
6507
6499
|
if (!this.connectorClasses[template]) {
|
6508
|
-
// eslint-disable-next-line no-console
|
6509
|
-
console.error(`Unsupported connector template: ${template}`);
|
6510
6500
|
return;
|
6511
6501
|
}
|
6512
6502
|
const ConnectorClass = this.connectorClasses[template];
|
@@ -6516,7 +6506,9 @@ const connectorMixin =
|
|
6516
6506
|
async fetchConnectorResults(query) {
|
6517
6507
|
if (!this.connector) {
|
6518
6508
|
// eslint-disable-next-line no-console
|
6519
|
-
console.error(
|
6509
|
+
console.error(
|
6510
|
+
`No connector initialized for the field with template: ${this.connectorTemplate}`,
|
6511
|
+
);
|
6520
6512
|
return { results: [] };
|
6521
6513
|
}
|
6522
6514
|
|