@descope/web-components-ui 1.0.373 → 1.0.375
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 +5 -1
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +8 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/2773.js +148 -0
- package/dist/umd/63.js +1 -1
- package/dist/umd/9423.js +1 -1
- package/dist/umd/DescopeDev.js +1 -1
- package/dist/umd/index.js +1 -1
- package/dist/umd/mapping-fields-descope-mappings-field-index-js.js +1 -1
- package/dist/umd/phone-fields-descope-phone-field-descope-phone-field-internal-index-js.js +1 -1
- package/dist/umd/phone-fields-descope-phone-field-index-js.js +1 -1
- package/package.json +2 -1
- package/src/components/mapping-fields/descope-mappings-field/MappingsFieldClass.js +4 -1
- package/src/components/phone-fields/descope-phone-field/descope-phone-field-internal/PhoneFieldInternal.js +4 -1
- package/dist/umd/7164.js +0 -148
- /package/dist/umd/{7164.js.LICENSE.txt → 2773.js.LICENSE.txt} +0 -0
package/dist/cjs/index.cjs.js
CHANGED
@@ -5,6 +5,7 @@ var Color = require('color');
|
|
5
5
|
var DOMPurify = require('dompurify');
|
6
6
|
var MarkdownIt = require('markdown-it');
|
7
7
|
require('lodash.debounce');
|
8
|
+
require('libphonenumber-js/min');
|
8
9
|
var hljs = require('highlight.js');
|
9
10
|
|
10
11
|
const DESCOPE_PREFIX = 'descope';
|
@@ -12095,7 +12096,10 @@ const MappingsFieldClass = compose(
|
|
12095
12096
|
{ ...labelsText, property: 'line-height' },
|
12096
12097
|
{ ...labels, property: 'line-height' },
|
12097
12098
|
],
|
12098
|
-
labelTextColor:
|
12099
|
+
labelTextColor: [
|
12100
|
+
{ ...labels, property: TextClass.cssVarList.textColor },
|
12101
|
+
{ ...separator, property: 'color' },
|
12102
|
+
],
|
12099
12103
|
itemMarginBottom: { ...mappingItem, property: 'margin-bottom' },
|
12100
12104
|
valueLabelMinWidth: { ...valueLabel, property: 'min-width' },
|
12101
12105
|
attrLabelMinWidth: { ...attrLabel, property: 'min-width' },
|