@descope/flow-components 2.0.488 → 2.0.490
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/index.cjs.js +6 -1
- package/package.json +3 -3
package/dist/index.cjs.js
CHANGED
|
@@ -90257,7 +90257,12 @@ descope-boolean-field-internal {
|
|
|
90257
90257
|
|
|
90258
90258
|
// eslint-disable-next-line class-methods-use-this
|
|
90259
90259
|
#renderItem = ({ displayName, value, label }) => {
|
|
90260
|
-
|
|
90260
|
+
const ele = document.createElement('span');
|
|
90261
|
+
ele.setAttribute('data-name', label);
|
|
90262
|
+
ele.setAttribute('data-id', value);
|
|
90263
|
+
ele.textContent = displayName || label;
|
|
90264
|
+
|
|
90265
|
+
return ele.outerHTML;
|
|
90261
90266
|
};
|
|
90262
90267
|
|
|
90263
90268
|
#data;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@descope/flow-components",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.490",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"eslint-plugin-n": "17.16.2",
|
|
78
78
|
"eslint-plugin-no-only-tests": "3.3.0",
|
|
79
79
|
"eslint-plugin-prefer-arrow": "1.2.3",
|
|
80
|
-
"eslint-plugin-prettier": "5.2.
|
|
80
|
+
"eslint-plugin-prettier": "5.2.4",
|
|
81
81
|
"eslint-plugin-promise": "7.2.1",
|
|
82
82
|
"eslint-plugin-react": "^7.30.1",
|
|
83
83
|
"eslint-plugin-testing-library": "^7.0.0",
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
"typescript": "^5.7.2"
|
|
105
105
|
},
|
|
106
106
|
"dependencies": {
|
|
107
|
-
"@descope/web-components-ui": "1.
|
|
107
|
+
"@descope/web-components-ui": "1.55.0"
|
|
108
108
|
},
|
|
109
109
|
"peerDependencies": {
|
|
110
110
|
"react": ">= 18"
|