@descope/web-components-ui 1.0.366 → 1.0.368
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/index.cjs.js +4 -1
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +533 -525
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/4978.js +1 -1
- package/dist/umd/DescopeDev.js +1 -1
- package/package.json +1 -1
- package/src/index.js +2 -0
- package/src/mixins/inputValidationMixin.js +4 -1
package/package.json
CHANGED
package/src/index.js
CHANGED
@@ -41,6 +41,8 @@ export * from './components/mapping-fields/descope-saml-group-mappings';
|
|
41
41
|
export * from './components/descope-policy-validation';
|
42
42
|
export * from './components/descope-code-snippet';
|
43
43
|
export * from './components/descope-radio-group';
|
44
|
+
export * from './components/descope-list';
|
45
|
+
export * from './components/descope-apps-list';
|
44
46
|
|
45
47
|
export {
|
46
48
|
globalsThemeToStyle,
|
@@ -84,6 +84,7 @@ export const inputValidationMixin = (superclass) =>
|
|
84
84
|
badInput,
|
85
85
|
customError,
|
86
86
|
} = flags;
|
87
|
+
|
87
88
|
switch (true) {
|
88
89
|
case valueMissing:
|
89
90
|
return (
|
@@ -96,7 +97,9 @@ export const inputValidationMixin = (superclass) =>
|
|
96
97
|
);
|
97
98
|
case typeMismatch:
|
98
99
|
return (
|
99
|
-
this.getAttribute(errorAttributes.typeMismatch) ||
|
100
|
+
this.getAttribute(errorAttributes.typeMismatch) ||
|
101
|
+
this.getAttribute(errorAttributes.patternMismatch) ||
|
102
|
+
this.defaultErrorMsgTypeMismatch
|
100
103
|
);
|
101
104
|
case tooShort:
|
102
105
|
return this.getAttribute(errorAttributes.tooShort) || this.defaultErrorMsgTooShort;
|