@sap-ux/ui-components 1.21.0 → 1.21.2
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/components/UIInput/UITextInput.d.ts +10 -1
- package/dist/components/UIInput/UITextInput.d.ts.map +1 -1
- package/dist/components/UIInput/UITextInput.js +36 -19
- package/dist/components/UIInput/UITextInput.js.map +1 -1
- package/dist/components/UITranslationInput/UITranslationInput.d.ts.map +1 -1
- package/dist/components/UITranslationInput/UITranslationInput.js +7 -1
- package/dist/components/UITranslationInput/UITranslationInput.js.map +1 -1
- package/dist/components/UITranslationInput/UITranslationInput.scss +7 -0
- package/package.json +4 -4
- package/storybook/{342.d1d957e9.iframe.bundle.js → 342.8616aa95.iframe.bundle.js} +1 -1
- package/storybook/501.8ce2c34d.iframe.bundle.js +1 -0
- package/storybook/{504.f031c6ee.iframe.bundle.js → 504.7124a758.iframe.bundle.js} +26 -26
- package/storybook/536.289052c3.iframe.bundle.js +62 -0
- package/storybook/841.88f994d4.iframe.bundle.js +7 -0
- package/storybook/favicon.svg +1 -7
- package/storybook/iframe.html +35 -5
- package/storybook/index.html +34 -16
- package/storybook/index.json +1 -1
- package/storybook/{main.f69d158b.iframe.bundle.js → main.aaadecba.iframe.bundle.js} +1 -1
- package/storybook/nunito-sans-bold-italic.woff2 +0 -0
- package/storybook/nunito-sans-bold.woff2 +0 -0
- package/storybook/nunito-sans-italic.woff2 +0 -0
- package/storybook/nunito-sans-regular.woff2 +0 -0
- package/storybook/project.json +1 -1
- package/storybook/runtime~main.3ecd6ab4.iframe.bundle.js +2 -0
- package/storybook/sb-addons/common-manager-bundle.js +1 -1
- package/storybook/sb-common-assets/favicon.svg +1 -0
- package/storybook/sb-manager/globals-module-info.js +1028 -1
- package/storybook/sb-manager/globals-runtime.js +40861 -1
- package/storybook/sb-manager/globals.js +48 -1
- package/storybook/sb-manager/runtime.js +13337 -1
- package/storybook/sb-preview/globals.js +33 -1
- package/storybook/sb-preview/runtime.js +7134 -116
- package/storybook/389.5879b7cc.iframe.bundle.js +0 -55
- package/storybook/841.8ff27cf5.iframe.bundle.js +0 -7
- package/storybook/runtime~main.ba21217c.iframe.bundle.js +0 -2
- package/storybook/sb-common-assets/fonts.css +0 -31
- package/storybook/sb-manager/WithTooltip-KJL26V4Q-5LS5AN27.js +0 -1
- package/storybook/sb-manager/chunk-2IOEGHGR.js +0 -274
- package/storybook/sb-manager/chunk-B3YDJJJH.js +0 -347
- package/storybook/sb-manager/chunk-BLWCBWKL.js +0 -9
- package/storybook/sb-manager/chunk-GUVK2GTO.js +0 -6
- package/storybook/sb-manager/chunk-VQTIH3SE.js +0 -186
- package/storybook/sb-manager/chunk-ZR5JZWHI.js +0 -1
- package/storybook/sb-manager/formatter-2WMMO6ZP-JI7RHVTW.js +0 -58
- package/storybook/sb-manager/index.js +0 -1
- package/storybook/sb-manager/syntaxhighlighter-BP7B2CQK-WOJYHKQR.js +0 -1
|
@@ -6,6 +6,7 @@ export type UITextInputProps = ITextFieldProps & UIMessagesExtendedProps;
|
|
|
6
6
|
export declare const COMMON_INPUT_STYLES: {
|
|
7
7
|
borderRadius: number;
|
|
8
8
|
};
|
|
9
|
+
export type InputRenderProps = React.InputHTMLAttributes<HTMLInputElement> & React.RefAttributes<HTMLInputElement>;
|
|
9
10
|
/**
|
|
10
11
|
* UITextInput component
|
|
11
12
|
* based on https://developer.microsoft.com/en-us/fluentui#/controls/web/textfield
|
|
@@ -36,7 +37,7 @@ export declare class UITextInput extends React.Component<UITextInputProps> {
|
|
|
36
37
|
*/
|
|
37
38
|
private getStyles;
|
|
38
39
|
/**
|
|
39
|
-
* Method to
|
|
40
|
+
* Method to extend HTML input element.
|
|
40
41
|
* Custom rendering is used to use "readonly" attribute instead of "disabled" to make disabled field focusable.
|
|
41
42
|
*
|
|
42
43
|
* @param {InputRenderProps} [props] Input props.
|
|
@@ -44,6 +45,14 @@ export declare class UITextInput extends React.Component<UITextInputProps> {
|
|
|
44
45
|
* @returns {JSX.Element | null} Input element to render.
|
|
45
46
|
*/
|
|
46
47
|
private onRenderDisabledInput;
|
|
48
|
+
/**
|
|
49
|
+
* Method to render HTML input element.
|
|
50
|
+
*
|
|
51
|
+
* @param {InputRenderProps} [props] Input props.
|
|
52
|
+
* @param {(props?: InputRenderProps) => JSX.Element | null} [defaultRender] Default renderer.
|
|
53
|
+
* @returns {JSX.Element | null} Input element to render.
|
|
54
|
+
*/
|
|
55
|
+
private onRenderInput;
|
|
47
56
|
/**
|
|
48
57
|
* @returns {JSX.Element}
|
|
49
58
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UITextInput.d.ts","sourceRoot":"","sources":["../../../src/components/UIInput/UITextInput.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,eAAe,EAA0C,MAAM,iBAAiB,CAAC;AAE/F,OAAO,KAAK,EAAE,uBAAuB,EAA8B,MAAM,gCAAgC,CAAC;AAK1G,OAAO,EAAE,UAAU,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAE9D,MAAM,MAAM,gBAAgB,GAAG,eAAe,GAAG,uBAAuB,CAAC;AAEzE,eAAO,MAAM,mBAAmB;;CAE/B,CAAC;
|
|
1
|
+
{"version":3,"file":"UITextInput.d.ts","sourceRoot":"","sources":["../../../src/components/UIInput/UITextInput.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,eAAe,EAA0C,MAAM,iBAAiB,CAAC;AAE/F,OAAO,KAAK,EAAE,uBAAuB,EAA8B,MAAM,gCAAgC,CAAC;AAK1G,OAAO,EAAE,UAAU,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAE9D,MAAM,MAAM,gBAAgB,GAAG,eAAe,GAAG,uBAAuB,CAAC;AAEzE,eAAO,MAAM,mBAAmB;;CAE/B,CAAC;AAyBF,MAAM,MAAM,gBAAgB,GAAG,KAAK,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,aAAa,CAAC,gBAAgB,CAAC,CAAC;AAEnH;;;;;;;GAOG;AACH,qBAAa,WAAY,SAAQ,KAAK,CAAC,SAAS,CAAC,gBAAgB,CAAC;IAC9D;;;;OAIG;gBACgB,KAAK,EAAE,gBAAgB;IAM1C;;;;;OAKG;IACH,OAAO,CAAC,cAAc;IAQtB;;;;;OAKG;IACH,OAAO,CAAC,SAAS,CAgJf;IAEF;;;;;;;OAOG;IACH,OAAO,CAAC,qBAAqB;IAe7B;;;;;;OAMG;IACH,OAAO,CAAC,aAAa;IAYrB;;OAEG;IACH,MAAM,IAAI,GAAG,CAAC,OAAO;CAYxB"}
|
|
@@ -201,24 +201,7 @@ class UITextInput extends react_1.default.Component {
|
|
|
201
201
|
}
|
|
202
202
|
};
|
|
203
203
|
};
|
|
204
|
-
|
|
205
|
-
* Method to render HTML input element.
|
|
206
|
-
* Custom rendering is used to use "readonly" attribute instead of "disabled" to make disabled field focusable.
|
|
207
|
-
*
|
|
208
|
-
* @param {InputRenderProps} [props] Input props.
|
|
209
|
-
* @param {(props?: InputRenderProps) => JSX.Element | null} [defaultRender] Default renderer.
|
|
210
|
-
* @returns {JSX.Element | null} Input element to render.
|
|
211
|
-
*/
|
|
212
|
-
this.onRenderDisabledInput = (props, defaultRender) => {
|
|
213
|
-
const inputProps = {
|
|
214
|
-
...props,
|
|
215
|
-
disabled: undefined,
|
|
216
|
-
readOnly: true,
|
|
217
|
-
['aria-disabled']: true
|
|
218
|
-
};
|
|
219
|
-
return defaultRender?.(inputProps) || null;
|
|
220
|
-
};
|
|
221
|
-
this.onRenderDisabledInput = this.onRenderDisabledInput.bind(this);
|
|
204
|
+
this.onRenderInput = this.onRenderInput.bind(this);
|
|
222
205
|
}
|
|
223
206
|
/**
|
|
224
207
|
* Method returns value for CSS property "border" for focus state.
|
|
@@ -233,13 +216,47 @@ class UITextInput extends react_1.default.Component {
|
|
|
233
216
|
}
|
|
234
217
|
return `1px ${COLOR_STYLES.regular.borderStyle} ${color}`;
|
|
235
218
|
}
|
|
219
|
+
/**
|
|
220
|
+
* Method to extend HTML input element.
|
|
221
|
+
* Custom rendering is used to use "readonly" attribute instead of "disabled" to make disabled field focusable.
|
|
222
|
+
*
|
|
223
|
+
* @param {InputRenderProps} [props] Input props.
|
|
224
|
+
* @param {(props?: InputRenderProps) => JSX.Element | null} [defaultRender] Default renderer.
|
|
225
|
+
* @returns {JSX.Element | null} Input element to render.
|
|
226
|
+
*/
|
|
227
|
+
onRenderDisabledInput(props, defaultRender) {
|
|
228
|
+
const inputProps = this.props.disabled
|
|
229
|
+
? {
|
|
230
|
+
...props,
|
|
231
|
+
disabled: undefined,
|
|
232
|
+
readOnly: true,
|
|
233
|
+
['aria-disabled']: true
|
|
234
|
+
}
|
|
235
|
+
: props;
|
|
236
|
+
return defaultRender?.(inputProps) || null;
|
|
237
|
+
}
|
|
238
|
+
/**
|
|
239
|
+
* Method to render HTML input element.
|
|
240
|
+
*
|
|
241
|
+
* @param {InputRenderProps} [props] Input props.
|
|
242
|
+
* @param {(props?: InputRenderProps) => JSX.Element | null} [defaultRender] Default renderer.
|
|
243
|
+
* @returns {JSX.Element | null} Input element to render.
|
|
244
|
+
*/
|
|
245
|
+
onRenderInput(props, defaultRender) {
|
|
246
|
+
if (this.props.onRenderInput) {
|
|
247
|
+
return this.props.onRenderInput(props, (renderProps) => {
|
|
248
|
+
return this.onRenderDisabledInput(renderProps, defaultRender);
|
|
249
|
+
});
|
|
250
|
+
}
|
|
251
|
+
return this.onRenderDisabledInput(props, defaultRender);
|
|
252
|
+
}
|
|
236
253
|
/**
|
|
237
254
|
* @returns {JSX.Element}
|
|
238
255
|
*/
|
|
239
256
|
render() {
|
|
240
257
|
const messageInfo = (0, ValidationMessage_1.getMessageInfo)(this.props);
|
|
241
258
|
const textFieldStyles = this.getStyles;
|
|
242
|
-
return (react_1.default.createElement(react_2.TextField, {
|
|
259
|
+
return (react_1.default.createElement(react_2.TextField, { ...this.props, onRenderInput: this.onRenderInput, errorMessage: messageInfo.message, styles: textFieldStyles }));
|
|
243
260
|
}
|
|
244
261
|
}
|
|
245
262
|
exports.UITextInput = UITextInput;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UITextInput.js","sourceRoot":"","sources":["../../../src/components/UIInput/UITextInput.tsx"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"UITextInput.js","sourceRoot":"","sources":["../../../src/components/UIInput/UITextInput.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UITranslationInput.d.ts","sourceRoot":"","sources":["../../../src/components/UITranslationInput/UITranslationInput.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAE1C,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"UITranslationInput.d.ts","sourceRoot":"","sources":["../../../src/components/UITranslationInput/UITranslationInput.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAE1C,OAAO,KAAK,EAAoB,eAAe,EAAE,MAAM,YAAY,CAAC;AAGpE,OAAO,KAAK,EACR,kBAAkB,EAGlB,UAAU,EACV,sBAAsB,EACtB,gBAAgB,EACnB,MAAM,6BAA6B,CAAC;AACrC,OAAO,EAAE,uBAAuB,EAAoB,MAAM,6BAA6B,CAAC;AAWxF,MAAM,WAAW,uBAAuB,CAAC,CAAC,SAAS,gBAAgB,CAAE,SAAQ,eAAe,EAAE,kBAAkB,CAAC,CAAC,CAAC;IAC/G,EAAE,EAAE,MAAM,CAAC;IAEX,OAAO,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC;IAGvB,gBAAgB,CAAC,EAAE,uBAAuB,CAAC;IAE3C,UAAU,EAAE,MAAM,CAAC;IAEnB,mBAAmB,CAAC,EAAE,MAAM,EAAE,CAAC;IAE/B,cAAc,EAAE,sBAAsB,CAAC;IAEvC,eAAe,EAAE,sBAAsB,EAAE,CAAC;CAC7C;AA8FD;;;;;GAKG;AACH,eAAO,MAAM,kBAAkB;KAAI,CAAC,SAAS,gBAAgB,4BAClD,uBAAuB,CAAC,CAAC,CAAC,GAClC,YAAY;;;;CAqGd,CAAC"}
|
|
@@ -161,7 +161,13 @@ const UITranslationInput = (props) => {
|
|
|
161
161
|
onShowExistingEntry,
|
|
162
162
|
onUpdateValue
|
|
163
163
|
]);
|
|
164
|
-
|
|
164
|
+
const onRenderInput = (0, react_1.useCallback)((props, defaultRender) => {
|
|
165
|
+
if (defaultRender) {
|
|
166
|
+
return (react_1.default.createElement("div", { className: "ui-translatable__field", title: title }, defaultRender({ ...props, title: undefined })));
|
|
167
|
+
}
|
|
168
|
+
return null;
|
|
169
|
+
}, [title]);
|
|
170
|
+
return (react_1.default.createElement(UIInput_1.UITextInput, { ...props, onRenderSuffix: value?.trim() ? onRenderSuffix : undefined, className: classNames, onRenderInput: onRenderInput }));
|
|
165
171
|
};
|
|
166
172
|
exports.UITranslationInput = UITranslationInput;
|
|
167
173
|
exports.UITranslationInput.defaultProps = {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UITranslationInput.js","sourceRoot":"","sources":["../../../src/components/UITranslationInput/UITranslationInput.tsx"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"UITranslationInput.js","sourceRoot":"","sources":["../../../src/components/UITranslationInput/UITranslationInput.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+CAA2C;AAE3C,wCAAyC;AAEzC,oCAAmC;AACnC,+DAA4D;AAS5D,2EAAwF;AACxF,6DAM8B;AAC9B,yCAA4D;AAC5D,uDAAgE;AAmBhE;;;;;GAKG;AACH,MAAM,wBAAwB,GAAG,CAC7B,KAAiC,EACZ,EAAE;IACvB,MAAM,EACF,KAAK,GAAG,EAAE,EACV,eAAe,EACf,OAAO,EACP,OAAO,GAAG,yCAA8B,EACxC,gBAAgB,GAAG,mDAAuB,CAAC,SAAS,EACpD,cAAc,EACd,UAAU,EACV,mBAAmB,EACtB,GAAG,KAAK,CAAC;IACV,MAAM,OAAO,GAAG,IAAA,mCAAc,EAAC,KAAK,EAAE,eAAe,EAAE,mBAAmB,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC;IAC5F,IAAI,OAAO,GAAG,EAAE,CAAC;IACjB,IAAI,OAAO,GAAG,EAAE,CAAC;IACjB,IAAI,OAAmC,CAAC;IACxC,IAAI,OAAO,EAAE,CAAC;QACV,yCAAyC;QACzC,MAAM,KAAK,GAAG,IAAA,wCAAmB,EAAC,OAAO,EAAE,OAAO,CAAC,CAAC;QACpD,IAAI,KAAK,EAAE,CAAC;YACR,OAAO,GAAG,OAAO,CAAC,sBAAsB,CAAC;YACzC,OAAO,GAAG;gBACN,KAAK;gBACL,IAAI,EAAE,4CAAgB,CAAC,QAAQ;gBAC/B,IAAI,EAAE,eAAO,CAAC,UAAU;aAC3B,CAAC;QACN,CAAC;aAAM,CAAC;YACJ,OAAO,GAAG,OAAO,CAAC,yBAAyB,CAAC;YAC5C,OAAO,GAAG,OAAO,CAAC,qBAAqB,CAAC;YACxC,OAAO,GAAG;gBACN,KAAK,EAAE;oBACH,GAAG,EAAE;wBACD,KAAK,EAAE,OAAO;qBACjB;oBACD,KAAK,EAAE;wBACH,KAAK,EAAE,OAAO;qBACjB;iBACJ;gBACD,IAAI,EAAE,4CAAgB,CAAC,GAAG;gBAC1B,IAAI,EAAE,eAAO,CAAC,YAAY;aAC7B,CAAC;QACN,CAAC;IACL,CAAC;SAAM,CAAC;QACJ,0EAA0E;QAC1E,MAAM,aAAa,GAAG,IAAA,yCAAoB,EAAC,OAAO,EAAE,KAAK,CAAC,CAAC;QAC3D,IAAI,aAAa,EAAE,CAAC;YAChB,OAAO,GAAG,OAAO,CAAC,kCAAkC,CAAC;YACrD,OAAO,GAAG,OAAO,CAAC,8BAA8B,CAAC;YACjD,OAAO,GAAG;gBACN,KAAK,EAAE,aAAa;gBACpB,IAAI,EAAE,4CAAgB,CAAC,MAAM;aAChC,CAAC;QACN,CAAC;aAAM,CAAC;YACJ,OAAO,GAAG,OAAO,CAAC,2BAA2B,CAAC;YAC9C,OAAO,GAAG,OAAO,CAAC,uBAAuB,CAAC;YAC1C,MAAM,GAAG,GAAG,IAAA,oCAAe,EAAC,KAAK,EAAE,gBAAgB,EAAE,OAAO,CAAC,CAAC;YAC9D,OAAO,GAAG;gBACN,KAAK,EAAE;oBACH,GAAG,EAAE;wBACD,KAAK,EAAE,GAAG;qBACb;oBACD,KAAK,EAAE;wBACH,KAAK;qBACR;iBACJ;gBACD,IAAI,EAAE,4CAAgB,CAAC,GAAG;aAC7B,CAAC;QACN,CAAC;IACL,CAAC;IACD,uCAAuC;IACvC,OAAO,CAAC,IAAI,GAAG,IAAA,qCAAgB,EAAC,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,KAAK,EAAE,cAAc,EAAE,UAAU,CAAC,CAAC;IACrF,oCAAoC;IACpC,MAAM,aAAa,GAAG;QAClB,GAAG,EAAE,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,KAAK;QAC5B,KAAK,EAAE,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK;QAChC,IAAI,EAAE,OAAO,CAAC,IAAI;KACrB,CAAC;IACF,OAAO,GAAG,IAAA,4BAAU,EAAC,OAAO,EAAE,aAAa,CAAC,CAAC;IAC7C,OAAO;QACH,OAAO,EAAE,8BAAC,iCAAe,IAAC,MAAM,EAAE,aAAa,IAAG,OAAO,CAAmB;QAC5E,OAAO;QACP,OAAO;KACV,CAAC;AACN,CAAC,CAAC;AAEF;;;;;GAKG;AACI,MAAM,kBAAkB,GAAG,CAC9B,KAAiC,EACrB,EAAE;IACd,MAAM,EACF,EAAE,EACF,SAAS,EACT,QAAQ,EACR,KAAK,EACL,eAAe,EACf,cAAc,EACd,OAAO,EACP,IAAI,EACJ,UAAU,EACV,mBAAmB,EACnB,gBAAgB,EAChB,gBAAgB,EAChB,mBAAmB,EACnB,QAAQ,EACR,OAAO,EACV,GAAG,KAAK,CAAC;IAEV,MAAM,UAAU,GAAG,wBAAwB,CAAC,KAAK,CAAC,CAAC;IAEnD,IAAI,UAAU,GAAG,yBAAyB,CAAC;IAC3C,0BAA0B;IAC1B,IAAI,SAAS,EAAE,CAAC;QACZ,UAAU,IAAI,IAAI,SAAS,EAAE,CAAC;IAClC,CAAC;IAED,MAAM,aAAa,GAAG,IAAA,mBAAW,EAC7B,CAAC,QAAgB,EAAQ,EAAE;QACvB,QAAQ,EAAE,CAAC,EAAuC,EAAE,QAAQ,CAAC,CAAC;IAClE,CAAC,EACD,CAAC,QAAQ,CAAC,CACb,CAAC;IACF,kCAAkC;IAClC,IAAI,QAAQ,GAAG,GAAG,EAAE,OAAO,CAAC;IAC5B,IAAI,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC;IACxB,IAAI,UAAU,CAAC,OAAO,EAAE,IAAI,KAAK,4CAAgB,CAAC,QAAQ,IAAI,OAAO,EAAE,2BAA2B,EAAE,CAAC;QACjG,uCAAuC;QACvC,QAAQ,IAAI,WAAW,CAAC;QACxB,IAAI,CAAC,KAAK,EAAE,CAAC;YACT,KAAK,GAAG,IAAA,4BAAU,EAAC,OAAO,CAAC,2BAA2B,EAAE;gBACpD,KAAK,EAAE,KAAK,IAAI,EAAE;gBAClB,WAAW,EAAE,UAAU,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK;aACpD,CAAC,CAAC;QACP,CAAC;IACL,CAAC;IAED,MAAM,cAAc,GAAG,IAAA,mBAAW,EAAC,GAAuB,EAAE;QACxD,OAAO,CACH,8BAAC,yCAAmB,IAChB,EAAE,EAAE,QAAQ,EACZ,KAAK,EAAE,KAAK,EACZ,IAAI,EAAE,IAAI,EACV,gBAAgB,EAAE,gBAAgB,EAClC,mBAAmB,EAAE,mBAAmB,EACxC,aAAa,EAAE,aAAa,EAC5B,QAAQ,EAAE,QAAQ,EAClB,OAAO,EAAE,OAAO,EAChB,UAAU,EAAE,UAAU,GACxB,CACL,CAAC;IACN,CAAC,EAAE;QACC,KAAK;QACL,eAAe;QACf,cAAc;QACd,OAAO;QACP,IAAI;QACJ,QAAQ;QACR,UAAU;QACV,mBAAmB;QACnB,gBAAgB;QAChB,gBAAgB;QAChB,mBAAmB;QACnB,aAAa;KAChB,CAAC,CAAC;IAEH,MAAM,aAAa,GAAG,IAAA,mBAAW,EAC7B,CACI,KAAwB,EACxB,aAAgE,EAC9C,EAAE;QACpB,IAAI,aAAa,EAAE,CAAC;YAChB,OAAO,CACH,uCAAK,SAAS,EAAC,wBAAwB,EAAC,KAAK,EAAE,KAAK,IAC/C,aAAa,CAAC,EAAE,GAAG,KAAK,EAAE,KAAK,EAAE,SAAS,EAAE,CAAC,CAC5C,CACT,CAAC;QACN,CAAC;QACD,OAAO,IAAI,CAAC;IAChB,CAAC,EACD,CAAC,KAAK,CAAC,CACV,CAAC;IAEF,OAAO,CACH,8BAAC,qBAAW,OACJ,KAAK,EACT,cAAc,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,EAC1D,SAAS,EAAE,UAAU,EACrB,aAAa,EAAE,aAAa,GAC9B,CACL,CAAC;AACN,CAAC,CAAC;AAvGW,QAAA,kBAAkB,sBAuG7B;AAEF,0BAAkB,CAAC,YAAY,GAAG;IAC9B,OAAO,EAAE,yCAA8B;CAC1C,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap-ux/ui-components",
|
|
3
|
-
"version": "1.21.
|
|
3
|
+
"version": "1.21.2",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "SAP UI Components Library",
|
|
6
6
|
"repository": {
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
"@babel/preset-env": "7.22.20",
|
|
37
37
|
"@babel/preset-react": "7.22.15",
|
|
38
38
|
"@babel/preset-typescript": "7.22.15",
|
|
39
|
-
"@storybook/react": "8.
|
|
40
|
-
"@storybook/react-webpack5": "8.
|
|
39
|
+
"@storybook/react": "8.4.2",
|
|
40
|
+
"@storybook/react-webpack5": "8.4.2",
|
|
41
41
|
"@testing-library/jest-dom": "5.17.0",
|
|
42
42
|
"@testing-library/react": "12.1.5",
|
|
43
43
|
"@types/enzyme": "3.10.13",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"require-from-string": "2.0.2",
|
|
64
64
|
"sass": "1.66.1",
|
|
65
65
|
"sass-loader": "13.3.2",
|
|
66
|
-
"storybook": "8.
|
|
66
|
+
"storybook": "8.4.2",
|
|
67
67
|
"storybook-addon-turbo-build": "2.0.1",
|
|
68
68
|
"style-loader": "3.3.3",
|
|
69
69
|
"ts-loader": "9.4.4",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
(()=>{var j=Object.defineProperty,T=Object.defineProperties;var h=Object.getOwnPropertyDescriptors;var O=Object.getOwnPropertySymbols;var C=Object.prototype.hasOwnProperty,A=Object.prototype.propertyIsEnumerable;var P=(a,s,e)=>s in a?j(a,s,{enumerable:!0,configurable:!0,writable:!0,value:e}):a[s]=e,y=(a,s)=>{for(var e in s||(s={}))C.call(s,e)&&P(a,e,s[e]);if(O)for(var e of O(s))A.call(s,e)&&P(a,e,s[e]);return a},I=(a,s)=>T(a,h(s));(self.webpackChunk_sap_ux_ui_components=self.webpackChunk_sap_ux_ui_components||[]).push([[342],{"../../node_modules/.pnpm/css-loader@6.8.1_webpack@5.94.0/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[11].use[1]!../../node_modules/.pnpm/sass-loader@13.3.2_sass@1.66.1_webpack@5.94.0/node_modules/sass-loader/dist/cjs.js!./src/components/UIIcon/UIIcon.scss":(a,s,e)=>{var i=e("../../node_modules/.pnpm/css-loader@6.8.1_webpack@5.94.0/node_modules/css-loader/dist/runtime/noSourceMaps.js"),d=e("../../node_modules/.pnpm/css-loader@6.8.1_webpack@5.94.0/node_modules/css-loader/dist/runtime/api.js"),n=d(i);n.push([a.id,".ts-icon{fill:var(--vscode-foreground)}",""]),a.exports=n},"../../node_modules/.pnpm/css-loader@6.8.1_webpack@5.94.0/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[11].use[1]!../../node_modules/.pnpm/sass-loader@13.3.2_sass@1.66.1_webpack@5.94.0/node_modules/sass-loader/dist/cjs.js!./src/helper/ValidationMessage/MessageWrapper.scss":(a,s,e)=>{var i=e("../../node_modules/.pnpm/css-loader@6.8.1_webpack@5.94.0/node_modules/css-loader/dist/runtime/noSourceMaps.js"),d=e("../../node_modules/.pnpm/css-loader@6.8.1_webpack@5.94.0/node_modules/css-loader/dist/runtime/api.js"),n=d(i);n.push([a.id,".ts-message-wrapper .ts-message-body{display:flex;font-size:11px}.ts-message-wrapper .ts-message-body>span{padding-top:1px}.ts-message-wrapper .ts-message-body>i{margin:1px 2px 0 0}.ts-message-wrapper--error .ts-message-body{color:var(--vscode-errorForeground)}.ts-message-wrapper--warning .ts-message-body{color:var(--vscode-editorMarkerNavigationWarning-background)}.ts-message-wrapper--info .ts-message-body{color:var(--vscode-inputValidation-infoBorder)}.ts-message-wrapper--info .ts-icon svg path{fill:var(--vscode-inputValidation-infoBorder)}.ts-message-wrapper--horizontal{display:flex}.ts-message-wrapper--horizontal .ts-message-body{align-self:flex-end;margin:0 0 7px 5px}",""]),a.exports=n},"./src/components/UIIcon/UIIcon.scss":(a,s,e)=>{"use strict";e.r(s),e.d(s,{default:()=>v});var i=e("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.94.0/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),d=e.n(i),n=e("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.94.0/node_modules/style-loader/dist/runtime/styleDomAPI.js"),t=e.n(n),o=e("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.94.0/node_modules/style-loader/dist/runtime/insertBySelector.js"),r=e.n(o),_=e("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.94.0/node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),l=e.n(_),c=e("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.94.0/node_modules/style-loader/dist/runtime/insertStyleElement.js"),g=e.n(c),f=e("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.94.0/node_modules/style-loader/dist/runtime/styleTagTransform.js"),u=e.n(f),m=e("../../node_modules/.pnpm/css-loader@6.8.1_webpack@5.94.0/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[11].use[1]!../../node_modules/.pnpm/sass-loader@13.3.2_sass@1.66.1_webpack@5.94.0/node_modules/sass-loader/dist/cjs.js!./src/components/UIIcon/UIIcon.scss"),b=e.n(m),M={};for(const E in m)E!=="default"&&(M[E]=()=>m[E]);e.d(s,M);var p={};p.styleTagTransform=u(),p.setAttributes=l(),p.insert=r().bind(null,"head"),p.domAPI=t(),p.insertStyleElement=g();var S=d()(b(),p);const v=b()&&b().locals?b().locals:void 0},"./src/helper/ValidationMessage/MessageWrapper.scss":(a,s,e)=>{"use strict";e.r(s),e.d(s,{default:()=>v});var i=e("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.94.0/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),d=e.n(i),n=e("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.94.0/node_modules/style-loader/dist/runtime/styleDomAPI.js"),t=e.n(n),o=e("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.94.0/node_modules/style-loader/dist/runtime/insertBySelector.js"),r=e.n(o),_=e("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.94.0/node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),l=e.n(_),c=e("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.94.0/node_modules/style-loader/dist/runtime/insertStyleElement.js"),g=e.n(c),f=e("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.94.0/node_modules/style-loader/dist/runtime/styleTagTransform.js"),u=e.n(f),m=e("../../node_modules/.pnpm/css-loader@6.8.1_webpack@5.94.0/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[11].use[1]!../../node_modules/.pnpm/sass-loader@13.3.2_sass@1.66.1_webpack@5.94.0/node_modules/sass-loader/dist/cjs.js!./src/helper/ValidationMessage/MessageWrapper.scss"),b=e.n(m),M={};for(const E in m)E!=="default"&&(M[E]=()=>m[E]);e.d(s,M);var p={};p.styleTagTransform=u(),p.setAttributes=l(),p.insert=r().bind(null,"head"),p.domAPI=t(),p.insertStyleElement=g();var S=d()(b(),p);const v=b()&&b().locals?b().locals:void 0},"./src/components/UIIcon/UIIcon.tsx":function(a,s,e){"use strict";var i=this&&this.__importDefault||function(o){return o&&o.__esModule?o:{default:o}};Object.defineProperty(s,"__esModule",{value:!0}),s.UIIcon=void 0;const d=i(e("../../node_modules/.pnpm/react@16.14.0/node_modules/react/index.js")),n=e("../../node_modules/.pnpm/@fluentui+react@8.120.5_@types+react-dom@16.9.24_@types+react@16.14.55_react-dom@16.14.0_react@16.14.0/node_modules/@fluentui/react/lib-commonjs/index.js");e("./src/components/UIIcon/UIIcon.scss");class t extends d.default.Component{constructor(r){super(r),this.setStyle=()=>({})}render(){const r=this.props.className?` ${this.props.className}`:"";return d.default.createElement(n.Icon,I(y({},this.props),{className:`ts-icon${r}`,styles:this.setStyle()}))}}s.UIIcon=t},"./src/components/UIIcon/index.tsx":function(a,s,e){"use strict";var i=this&&this.__createBinding||(Object.create?function(n,t,o,r){r===void 0&&(r=o);var _=Object.getOwnPropertyDescriptor(t,o);(!_||("get"in _?!t.__esModule:_.writable||_.configurable))&&(_={enumerable:!0,get:function(){return t[o]}}),Object.defineProperty(n,r,_)}:function(n,t,o,r){r===void 0&&(r=o),n[r]=t[o]}),d=this&&this.__exportStar||function(n,t){for(var o in n)o!=="default"&&!Object.prototype.hasOwnProperty.call(t,o)&&i(t,n,o)};Object.defineProperty(s,"__esModule",{value:!0}),d(e("./src/components/UIIcon/UIIcon.tsx"),s)},"./src/components/UIInput/UITextInput.tsx":function(a,s,e){"use strict";var i=this&&this.__importDefault||function(g){return g&&g.__esModule?g:{default:g}};Object.defineProperty(s,"__esModule",{value:!0}),s.UITextInput=s.COMMON_INPUT_STYLES=s.ITextFieldProps=s.ITextField=void 0;const d=i(e("../../node_modules/.pnpm/react@16.14.0/node_modules/react/index.js")),n=e("../../node_modules/.pnpm/@fluentui+react@8.120.5_@types+react-dom@16.9.24_@types+react@16.14.55_react-dom@16.14.0_react@16.14.0/node_modules/@fluentui/react/lib-commonjs/index.js"),t=e("./src/helper/ValidationMessage/index.tsx"),o=e("./src/components/UILabel/index.tsx"),r=e("./src/components/types.ts");var _=e("../../node_modules/.pnpm/@fluentui+react@8.120.5_@types+react-dom@16.9.24_@types+react@16.14.55_react-dom@16.14.0_react@16.14.0/node_modules/@fluentui/react/lib-commonjs/index.js");Object.defineProperty(s,"ITextField",{enumerable:!0,get:function(){return _.ITextField}}),Object.defineProperty(s,"ITextFieldProps",{enumerable:!0,get:function(){return _.ITextFieldProps}}),s.COMMON_INPUT_STYLES={borderRadius:2};const l={regular:{backgroundColor:"var(--vscode-input-background)",borderColor:"var(--vscode-editorWidget-border)",color:"var(--vscode-input-foreground)",borderStyle:"solid"},disabled:{backgroundColor:"var(--vscode-editor-inactiveSelectionBackground)",opacity:.5},readOnly:{backgroundColor:"var(--vscode-editor-background)",borderStyle:"dashed"},hover:{borderColor:"var(--vscode-focusBorder)"},focus:{borderColor:"var(--vscode-focusBorder)"}};class c extends d.default.Component{constructor(f){super(f),this.getStyles=u=>{const m=(0,t.getMessageInfo)(this.props);return{root:{height:"auto",fontFamily:"var(--vscode-font-family)"},fieldGroup:[{backgroundColor:l.regular.backgroundColor,borderWidth:1,borderStyle:l.regular.borderStyle,borderColor:l.regular.borderColor,color:l.regular.color,borderRadius:s.COMMON_INPUT_STYLES.borderRadius,boxSizing:"initial"},!u.multiline&&{height:24,maxHeight:24,minHeight:24},!u.disabled&&{selectors:{"&:hover":{borderColor:l.hover.borderColor}}},u.disabled&&{backgroundColor:l.disabled.backgroundColor,opacity:l.disabled.opacity,borderRadius:s.COMMON_INPUT_STYLES.borderRadius},this.props.readOnly&&{borderStyle:l.readOnly.borderStyle,backgroundColor:l.readOnly.backgroundColor,selectors:this.props.value?void 0:{"&:hover":{borderColor:"var(--vscode-editorWidget-border)"}}},u.hasErrorMessage&&{borderColor:m.style.borderColor},u.focused&&{selectors:{":after":{border:this.getFocusBorder(m),borderRadius:s.COMMON_INPUT_STYLES.borderRadius}}}],field:[{backgroundColor:l.regular.backgroundColor,color:l.regular.color,fontSize:"13px",fontWeight:"normal",boxSizing:"border-box",borderRadius:s.COMMON_INPUT_STYLES.borderRadius,fontFamily:"var(--vscode-font-family)",selectors:{"::placeholder":{fontSize:13,fontFamily:"var(--vscode-font-family)",color:"var(--vscode-input-placeholderForeground)"}}},!u.multiline&&{lineHeight:"normal"},u.multiline&&{minHeight:"60px",height:"auto",display:"flex"},u.disabled&&{backgroundColor:"transparent"},this.props.readOnly&&{fontStyle:"italic",backgroundColor:l.readOnly.backgroundColor},u.hasIcon&&{selectors:{"&:hover":{cursor:"pointer"}}}],suffix:{backgroundColor:"var(--vscode-input-background)"},subComponentStyles:{label:{root:[y({marginTop:25},o.labelGlobalStyle),u.disabled&&{opacity:l.disabled.opacity},u.required&&{selectors:{"::after":{content:r.REQUIRED_LABEL_INDICATOR,color:"var(--vscode-inputValidation-errorBorder)",paddingRight:12}}}]}},errorMessage:[m.style],icon:[{bottom:2}]}},this.onRenderDisabledInput=(u,m)=>{const b=I(y({},u),{disabled:void 0,readOnly:!0,"aria-disabled":!0});return(m==null?void 0:m(b))||null},this.onRenderDisabledInput=this.onRenderDisabledInput.bind(this)}getFocusBorder(f){let u=l.focus.borderColor;return this.props.errorMessage&&f.style.borderColor&&(u=`var(${f.style.borderColor})`),`1px ${l.regular.borderStyle} ${u}`}render(){const f=(0,t.getMessageInfo)(this.props),u=this.getStyles;return d.default.createElement(n.TextField,I(y({onRenderInput:this.props.disabled?this.onRenderDisabledInput:void 0},this.props),{errorMessage:f.message,styles:u}))}}s.UITextInput=c},"./src/components/UIInput/index.tsx":function(a,s,e){"use strict";var i=this&&this.__createBinding||(Object.create?function(n,t,o,r){r===void 0&&(r=o);var _=Object.getOwnPropertyDescriptor(t,o);(!_||("get"in _?!t.__esModule:_.writable||_.configurable))&&(_={enumerable:!0,get:function(){return t[o]}}),Object.defineProperty(n,r,_)}:function(n,t,o,r){r===void 0&&(r=o),n[r]=t[o]}),d=this&&this.__exportStar||function(n,t){for(var o in n)o!=="default"&&!Object.prototype.hasOwnProperty.call(t,o)&&i(t,n,o)};Object.defineProperty(s,"__esModule",{value:!0}),d(e("./src/components/UIInput/UITextInput.tsx"),s)},"./src/components/UILabel/UILabel.tsx":function(a,s,e){"use strict";var i=this&&this.__importDefault||function(r){return r&&r.__esModule?r:{default:r}};Object.defineProperty(s,"__esModule",{value:!0}),s.UILabel=s.labelGlobalStyle=void 0;const d=i(e("../../node_modules/.pnpm/react@16.14.0/node_modules/react/index.js")),n=e("../../node_modules/.pnpm/@fluentui+react@8.120.5_@types+react-dom@16.9.24_@types+react@16.14.55_react-dom@16.14.0_react@16.14.0/node_modules/@fluentui/react/lib-commonjs/index.js"),t=e("./src/components/types.ts");s.labelGlobalStyle={fontWeight:"bold",fontSize:"13px",color:"var(--vscode-input-foreground)",fontFamily:"var(--vscode-font-family)",padding:"4px 0"};class o extends d.default.Component{constructor(_){super(_)}render(){const _=l=>({root:[y({marginTop:25},s.labelGlobalStyle),l.disabled&&{opacity:"0.4"},l.required&&{selectors:{"::after":{content:t.REQUIRED_LABEL_INDICATOR,color:"var(--vscode-inputValidation-errorBorder)",paddingRight:12}}}]});return d.default.createElement(n.Label,I(y({},this.props),{styles:_}))}}s.UILabel=o},"./src/components/UILabel/index.tsx":function(a,s,e){"use strict";var i=this&&this.__createBinding||(Object.create?function(n,t,o,r){r===void 0&&(r=o);var _=Object.getOwnPropertyDescriptor(t,o);(!_||("get"in _?!t.__esModule:_.writable||_.configurable))&&(_={enumerable:!0,get:function(){return t[o]}}),Object.defineProperty(n,r,_)}:function(n,t,o,r){r===void 0&&(r=o),n[r]=t[o]}),d=this&&this.__exportStar||function(n,t){for(var o in n)o!=="default"&&!Object.prototype.hasOwnProperty.call(t,o)&&i(t,n,o)};Object.defineProperty(s,"__esModule",{value:!0}),d(e("./src/components/UILabel/UILabel.tsx"),s)},"./src/components/types.ts":(a,s)=>{"use strict";Object.defineProperty(s,"__esModule",{value:!0}),s.REQUIRED_LABEL_INDICATOR=void 0,s.REQUIRED_LABEL_INDICATOR="' *' / ''"},"./src/helper/ValidationMessage/MessageWrapper.tsx":function(a,s,e){"use strict";var i=this&&this.__importDefault||function(_){return _&&_.__esModule?_:{default:_}};Object.defineProperty(s,"__esModule",{value:!0}),s.MESSAGE_ICONS_MAP=void 0,s.MessageWrapper=r;const d=i(e("../../node_modules/.pnpm/react@16.14.0/node_modules/react/index.js")),n=e("./src/helper/ValidationMessage/utils.ts"),t=e("./src/components/Icons.tsx"),o=e("./src/components/UIIcon/index.tsx");e("./src/helper/ValidationMessage/MessageWrapper.scss"),s.MESSAGE_ICONS_MAP=new Map([[void 0,t.UiIcons.Error],[n.ErrorMessageType.Error,t.UiIcons.Error],[n.ErrorMessageType.Warning,t.UiIcons.Warning],[n.ErrorMessageType.Info,t.UiIcons.Info]]);function r(_){const{children:l,message:c}=_,g=c.message?n.MESSAGE_TYPES_CLASSNAME_MAP.get(c.type):void 0,f=s.MESSAGE_ICONS_MAP.get(c.type);return d.default.createElement("div",{className:`ts-message-wrapper ts-message-wrapper--${g}`},d.default.createElement("div",{className:"ts-message-target"},l),d.default.createElement("div",{className:"ts-message-body"},d.default.createElement(o.UIIcon,{iconName:f}),d.default.createElement("span",null,c.message)))}},"./src/helper/ValidationMessage/index.tsx":function(a,s,e){"use strict";var i=this&&this.__createBinding||(Object.create?function(n,t,o,r){r===void 0&&(r=o);var _=Object.getOwnPropertyDescriptor(t,o);(!_||("get"in _?!t.__esModule:_.writable||_.configurable))&&(_={enumerable:!0,get:function(){return t[o]}}),Object.defineProperty(n,r,_)}:function(n,t,o,r){r===void 0&&(r=o),n[r]=t[o]}),d=this&&this.__exportStar||function(n,t){for(var o in n)o!=="default"&&!Object.prototype.hasOwnProperty.call(t,o)&&i(t,n,o)};Object.defineProperty(s,"__esModule",{value:!0}),d(e("./src/helper/ValidationMessage/MessageWrapper.tsx"),s),d(e("./src/helper/ValidationMessage/utils.ts"),s)},"./src/helper/ValidationMessage/utils.ts":(a,s)=>{"use strict";Object.defineProperty(s,"__esModule",{value:!0}),s.getMessageInfo=s.MESSAGE_TYPES_CLASSNAME_MAP=s.ErrorMessageType=void 0;var e;(function(_){_.Error="Error",_.Warning="Warning",_.Info="Info"})(e||(s.ErrorMessageType=e={}));const i=(_,l)=>{const c=`1px solid ${l}`;return{backgroundColor:_,borderLeft:c,borderRight:c,borderBottom:c,borderColor:l}},d={error:I(y({color:"var(--vscode-input-foreground)"},i("var(--vscode-inputValidation-errorBackground)","var(--vscode-inputValidation-errorBorder)")),{paddingTop:4,paddingBottom:5,paddingLeft:8,margin:0}),warning:{},info:{}};d.warning=y(y({},d.error),i("var(--vscode-inputValidation-warningBackground)","var(--vscode-inputValidation-warningBorder)")),d.info=y(y({},d.error),i("var(--vscode-inputValidation-infoBackground)","var(--vscode-inputValidation-infoBorder)")),s.MESSAGE_TYPES_CLASSNAME_MAP=new Map([[void 0,"error"],[e.Error,"error"],[e.Warning,"warning"],[e.Info,"info"]]);const n=_=>{let l;switch(_){case e.Warning:{l=d.warning;break}case e.Info:{l=d.info;break}default:{l=d.error;break}}return l},t=_=>{if(_){if(_.errorMessage)return e.Error;if(_.warningMessage)return e.Warning;if(_.infoMessage)return e.Info}return e.Error},o=_=>{const l=["errorMessage","warningMessage","infoMessage"];for(const c of l)if(_!=null&&_[c])return _[c]},r=_=>{const l=t(_);return{type:l,style:n(l),message:o(_)}};s.getMessageInfo=r}}]);})();
|
|
1
|
+
(()=>{var j=Object.defineProperty,h=Object.defineProperties;var T=Object.getOwnPropertyDescriptors;var O=Object.getOwnPropertySymbols;var C=Object.prototype.hasOwnProperty,A=Object.prototype.propertyIsEnumerable;var P=(a,s,e)=>s in a?j(a,s,{enumerable:!0,configurable:!0,writable:!0,value:e}):a[s]=e,y=(a,s)=>{for(var e in s||(s={}))C.call(s,e)&&P(a,e,s[e]);if(O)for(var e of O(s))A.call(s,e)&&P(a,e,s[e]);return a},I=(a,s)=>h(a,T(s));(self.webpackChunk_sap_ux_ui_components=self.webpackChunk_sap_ux_ui_components||[]).push([[342],{"../../node_modules/.pnpm/css-loader@6.8.1_webpack@5.94.0/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[11].use[1]!../../node_modules/.pnpm/sass-loader@13.3.2_sass@1.66.1_webpack@5.94.0/node_modules/sass-loader/dist/cjs.js!./src/components/UIIcon/UIIcon.scss":(a,s,e)=>{var i=e("../../node_modules/.pnpm/css-loader@6.8.1_webpack@5.94.0/node_modules/css-loader/dist/runtime/noSourceMaps.js"),d=e("../../node_modules/.pnpm/css-loader@6.8.1_webpack@5.94.0/node_modules/css-loader/dist/runtime/api.js"),n=d(i);n.push([a.id,".ts-icon{fill:var(--vscode-foreground)}",""]),a.exports=n},"../../node_modules/.pnpm/css-loader@6.8.1_webpack@5.94.0/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[11].use[1]!../../node_modules/.pnpm/sass-loader@13.3.2_sass@1.66.1_webpack@5.94.0/node_modules/sass-loader/dist/cjs.js!./src/helper/ValidationMessage/MessageWrapper.scss":(a,s,e)=>{var i=e("../../node_modules/.pnpm/css-loader@6.8.1_webpack@5.94.0/node_modules/css-loader/dist/runtime/noSourceMaps.js"),d=e("../../node_modules/.pnpm/css-loader@6.8.1_webpack@5.94.0/node_modules/css-loader/dist/runtime/api.js"),n=d(i);n.push([a.id,".ts-message-wrapper .ts-message-body{display:flex;font-size:11px}.ts-message-wrapper .ts-message-body>span{padding-top:1px}.ts-message-wrapper .ts-message-body>i{margin:1px 2px 0 0}.ts-message-wrapper--error .ts-message-body{color:var(--vscode-errorForeground)}.ts-message-wrapper--warning .ts-message-body{color:var(--vscode-editorMarkerNavigationWarning-background)}.ts-message-wrapper--info .ts-message-body{color:var(--vscode-inputValidation-infoBorder)}.ts-message-wrapper--info .ts-icon svg path{fill:var(--vscode-inputValidation-infoBorder)}.ts-message-wrapper--horizontal{display:flex}.ts-message-wrapper--horizontal .ts-message-body{align-self:flex-end;margin:0 0 7px 5px}",""]),a.exports=n},"./src/components/UIIcon/UIIcon.scss":(a,s,e)=>{"use strict";e.r(s),e.d(s,{default:()=>v});var i=e("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.94.0/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),d=e.n(i),n=e("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.94.0/node_modules/style-loader/dist/runtime/styleDomAPI.js"),t=e.n(n),o=e("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.94.0/node_modules/style-loader/dist/runtime/insertBySelector.js"),r=e.n(o),_=e("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.94.0/node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),l=e.n(_),m=e("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.94.0/node_modules/style-loader/dist/runtime/insertStyleElement.js"),g=e.n(m),c=e("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.94.0/node_modules/style-loader/dist/runtime/styleTagTransform.js"),u=e.n(c),p=e("../../node_modules/.pnpm/css-loader@6.8.1_webpack@5.94.0/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[11].use[1]!../../node_modules/.pnpm/sass-loader@13.3.2_sass@1.66.1_webpack@5.94.0/node_modules/sass-loader/dist/cjs.js!./src/components/UIIcon/UIIcon.scss"),b=e.n(p),M={};for(const E in p)E!=="default"&&(M[E]=()=>p[E]);e.d(s,M);var f={};f.styleTagTransform=u(),f.setAttributes=l(),f.insert=r().bind(null,"head"),f.domAPI=t(),f.insertStyleElement=g();var S=d()(b(),f);const v=b()&&b().locals?b().locals:void 0},"./src/helper/ValidationMessage/MessageWrapper.scss":(a,s,e)=>{"use strict";e.r(s),e.d(s,{default:()=>v});var i=e("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.94.0/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),d=e.n(i),n=e("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.94.0/node_modules/style-loader/dist/runtime/styleDomAPI.js"),t=e.n(n),o=e("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.94.0/node_modules/style-loader/dist/runtime/insertBySelector.js"),r=e.n(o),_=e("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.94.0/node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),l=e.n(_),m=e("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.94.0/node_modules/style-loader/dist/runtime/insertStyleElement.js"),g=e.n(m),c=e("../../node_modules/.pnpm/style-loader@3.3.3_webpack@5.94.0/node_modules/style-loader/dist/runtime/styleTagTransform.js"),u=e.n(c),p=e("../../node_modules/.pnpm/css-loader@6.8.1_webpack@5.94.0/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[11].use[1]!../../node_modules/.pnpm/sass-loader@13.3.2_sass@1.66.1_webpack@5.94.0/node_modules/sass-loader/dist/cjs.js!./src/helper/ValidationMessage/MessageWrapper.scss"),b=e.n(p),M={};for(const E in p)E!=="default"&&(M[E]=()=>p[E]);e.d(s,M);var f={};f.styleTagTransform=u(),f.setAttributes=l(),f.insert=r().bind(null,"head"),f.domAPI=t(),f.insertStyleElement=g();var S=d()(b(),f);const v=b()&&b().locals?b().locals:void 0},"./src/components/UIIcon/UIIcon.tsx":function(a,s,e){"use strict";var i=this&&this.__importDefault||function(o){return o&&o.__esModule?o:{default:o}};Object.defineProperty(s,"__esModule",{value:!0}),s.UIIcon=void 0;const d=i(e("../../node_modules/.pnpm/react@16.14.0/node_modules/react/index.js")),n=e("../../node_modules/.pnpm/@fluentui+react@8.120.5_@types+react-dom@16.9.24_@types+react@16.14.55_react-dom@16.14.0_react@16.14.0/node_modules/@fluentui/react/lib-commonjs/index.js");e("./src/components/UIIcon/UIIcon.scss");class t extends d.default.Component{constructor(r){super(r),this.setStyle=()=>({})}render(){const r=this.props.className?` ${this.props.className}`:"";return d.default.createElement(n.Icon,I(y({},this.props),{className:`ts-icon${r}`,styles:this.setStyle()}))}}s.UIIcon=t},"./src/components/UIIcon/index.tsx":function(a,s,e){"use strict";var i=this&&this.__createBinding||(Object.create?function(n,t,o,r){r===void 0&&(r=o);var _=Object.getOwnPropertyDescriptor(t,o);(!_||("get"in _?!t.__esModule:_.writable||_.configurable))&&(_={enumerable:!0,get:function(){return t[o]}}),Object.defineProperty(n,r,_)}:function(n,t,o,r){r===void 0&&(r=o),n[r]=t[o]}),d=this&&this.__exportStar||function(n,t){for(var o in n)o!=="default"&&!Object.prototype.hasOwnProperty.call(t,o)&&i(t,n,o)};Object.defineProperty(s,"__esModule",{value:!0}),d(e("./src/components/UIIcon/UIIcon.tsx"),s)},"./src/components/UIInput/UITextInput.tsx":function(a,s,e){"use strict";var i=this&&this.__importDefault||function(g){return g&&g.__esModule?g:{default:g}};Object.defineProperty(s,"__esModule",{value:!0}),s.UITextInput=s.COMMON_INPUT_STYLES=s.ITextFieldProps=s.ITextField=void 0;const d=i(e("../../node_modules/.pnpm/react@16.14.0/node_modules/react/index.js")),n=e("../../node_modules/.pnpm/@fluentui+react@8.120.5_@types+react-dom@16.9.24_@types+react@16.14.55_react-dom@16.14.0_react@16.14.0/node_modules/@fluentui/react/lib-commonjs/index.js"),t=e("./src/helper/ValidationMessage/index.tsx"),o=e("./src/components/UILabel/index.tsx"),r=e("./src/components/types.ts");var _=e("../../node_modules/.pnpm/@fluentui+react@8.120.5_@types+react-dom@16.9.24_@types+react@16.14.55_react-dom@16.14.0_react@16.14.0/node_modules/@fluentui/react/lib-commonjs/index.js");Object.defineProperty(s,"ITextField",{enumerable:!0,get:function(){return _.ITextField}}),Object.defineProperty(s,"ITextFieldProps",{enumerable:!0,get:function(){return _.ITextFieldProps}}),s.COMMON_INPUT_STYLES={borderRadius:2};const l={regular:{backgroundColor:"var(--vscode-input-background)",borderColor:"var(--vscode-editorWidget-border)",color:"var(--vscode-input-foreground)",borderStyle:"solid"},disabled:{backgroundColor:"var(--vscode-editor-inactiveSelectionBackground)",opacity:.5},readOnly:{backgroundColor:"var(--vscode-editor-background)",borderStyle:"dashed"},hover:{borderColor:"var(--vscode-focusBorder)"},focus:{borderColor:"var(--vscode-focusBorder)"}};class m extends d.default.Component{constructor(c){super(c),this.getStyles=u=>{const p=(0,t.getMessageInfo)(this.props);return{root:{height:"auto",fontFamily:"var(--vscode-font-family)"},fieldGroup:[{backgroundColor:l.regular.backgroundColor,borderWidth:1,borderStyle:l.regular.borderStyle,borderColor:l.regular.borderColor,color:l.regular.color,borderRadius:s.COMMON_INPUT_STYLES.borderRadius,boxSizing:"initial"},!u.multiline&&{height:24,maxHeight:24,minHeight:24},!u.disabled&&{selectors:{"&:hover":{borderColor:l.hover.borderColor}}},u.disabled&&{backgroundColor:l.disabled.backgroundColor,opacity:l.disabled.opacity,borderRadius:s.COMMON_INPUT_STYLES.borderRadius},this.props.readOnly&&{borderStyle:l.readOnly.borderStyle,backgroundColor:l.readOnly.backgroundColor,selectors:this.props.value?void 0:{"&:hover":{borderColor:"var(--vscode-editorWidget-border)"}}},u.hasErrorMessage&&{borderColor:p.style.borderColor},u.focused&&{selectors:{":after":{border:this.getFocusBorder(p),borderRadius:s.COMMON_INPUT_STYLES.borderRadius}}}],field:[{backgroundColor:l.regular.backgroundColor,color:l.regular.color,fontSize:"13px",fontWeight:"normal",boxSizing:"border-box",borderRadius:s.COMMON_INPUT_STYLES.borderRadius,fontFamily:"var(--vscode-font-family)",selectors:{"::placeholder":{fontSize:13,fontFamily:"var(--vscode-font-family)",color:"var(--vscode-input-placeholderForeground)"}}},!u.multiline&&{lineHeight:"normal"},u.multiline&&{minHeight:"60px",height:"auto",display:"flex"},u.disabled&&{backgroundColor:"transparent"},this.props.readOnly&&{fontStyle:"italic",backgroundColor:l.readOnly.backgroundColor},u.hasIcon&&{selectors:{"&:hover":{cursor:"pointer"}}}],suffix:{backgroundColor:"var(--vscode-input-background)"},subComponentStyles:{label:{root:[y({marginTop:25},o.labelGlobalStyle),u.disabled&&{opacity:l.disabled.opacity},u.required&&{selectors:{"::after":{content:r.REQUIRED_LABEL_INDICATOR,color:"var(--vscode-inputValidation-errorBorder)",paddingRight:12}}}]}},errorMessage:[p.style],icon:[{bottom:2}]}},this.onRenderInput=this.onRenderInput.bind(this)}getFocusBorder(c){let u=l.focus.borderColor;return this.props.errorMessage&&c.style.borderColor&&(u=`var(${c.style.borderColor})`),`1px ${l.regular.borderStyle} ${u}`}onRenderDisabledInput(c,u){const p=this.props.disabled?I(y({},c),{disabled:void 0,readOnly:!0,"aria-disabled":!0}):c;return(u==null?void 0:u(p))||null}onRenderInput(c,u){return this.props.onRenderInput?this.props.onRenderInput(c,p=>this.onRenderDisabledInput(p,u)):this.onRenderDisabledInput(c,u)}render(){const c=(0,t.getMessageInfo)(this.props),u=this.getStyles;return d.default.createElement(n.TextField,I(y({},this.props),{onRenderInput:this.onRenderInput,errorMessage:c.message,styles:u}))}}s.UITextInput=m},"./src/components/UIInput/index.tsx":function(a,s,e){"use strict";var i=this&&this.__createBinding||(Object.create?function(n,t,o,r){r===void 0&&(r=o);var _=Object.getOwnPropertyDescriptor(t,o);(!_||("get"in _?!t.__esModule:_.writable||_.configurable))&&(_={enumerable:!0,get:function(){return t[o]}}),Object.defineProperty(n,r,_)}:function(n,t,o,r){r===void 0&&(r=o),n[r]=t[o]}),d=this&&this.__exportStar||function(n,t){for(var o in n)o!=="default"&&!Object.prototype.hasOwnProperty.call(t,o)&&i(t,n,o)};Object.defineProperty(s,"__esModule",{value:!0}),d(e("./src/components/UIInput/UITextInput.tsx"),s)},"./src/components/UILabel/UILabel.tsx":function(a,s,e){"use strict";var i=this&&this.__importDefault||function(r){return r&&r.__esModule?r:{default:r}};Object.defineProperty(s,"__esModule",{value:!0}),s.UILabel=s.labelGlobalStyle=void 0;const d=i(e("../../node_modules/.pnpm/react@16.14.0/node_modules/react/index.js")),n=e("../../node_modules/.pnpm/@fluentui+react@8.120.5_@types+react-dom@16.9.24_@types+react@16.14.55_react-dom@16.14.0_react@16.14.0/node_modules/@fluentui/react/lib-commonjs/index.js"),t=e("./src/components/types.ts");s.labelGlobalStyle={fontWeight:"bold",fontSize:"13px",color:"var(--vscode-input-foreground)",fontFamily:"var(--vscode-font-family)",padding:"4px 0"};class o extends d.default.Component{constructor(_){super(_)}render(){const _=l=>({root:[y({marginTop:25},s.labelGlobalStyle),l.disabled&&{opacity:"0.4"},l.required&&{selectors:{"::after":{content:t.REQUIRED_LABEL_INDICATOR,color:"var(--vscode-inputValidation-errorBorder)",paddingRight:12}}}]});return d.default.createElement(n.Label,I(y({},this.props),{styles:_}))}}s.UILabel=o},"./src/components/UILabel/index.tsx":function(a,s,e){"use strict";var i=this&&this.__createBinding||(Object.create?function(n,t,o,r){r===void 0&&(r=o);var _=Object.getOwnPropertyDescriptor(t,o);(!_||("get"in _?!t.__esModule:_.writable||_.configurable))&&(_={enumerable:!0,get:function(){return t[o]}}),Object.defineProperty(n,r,_)}:function(n,t,o,r){r===void 0&&(r=o),n[r]=t[o]}),d=this&&this.__exportStar||function(n,t){for(var o in n)o!=="default"&&!Object.prototype.hasOwnProperty.call(t,o)&&i(t,n,o)};Object.defineProperty(s,"__esModule",{value:!0}),d(e("./src/components/UILabel/UILabel.tsx"),s)},"./src/components/types.ts":(a,s)=>{"use strict";Object.defineProperty(s,"__esModule",{value:!0}),s.REQUIRED_LABEL_INDICATOR=void 0,s.REQUIRED_LABEL_INDICATOR="' *' / ''"},"./src/helper/ValidationMessage/MessageWrapper.tsx":function(a,s,e){"use strict";var i=this&&this.__importDefault||function(_){return _&&_.__esModule?_:{default:_}};Object.defineProperty(s,"__esModule",{value:!0}),s.MESSAGE_ICONS_MAP=void 0,s.MessageWrapper=r;const d=i(e("../../node_modules/.pnpm/react@16.14.0/node_modules/react/index.js")),n=e("./src/helper/ValidationMessage/utils.ts"),t=e("./src/components/Icons.tsx"),o=e("./src/components/UIIcon/index.tsx");e("./src/helper/ValidationMessage/MessageWrapper.scss"),s.MESSAGE_ICONS_MAP=new Map([[void 0,t.UiIcons.Error],[n.ErrorMessageType.Error,t.UiIcons.Error],[n.ErrorMessageType.Warning,t.UiIcons.Warning],[n.ErrorMessageType.Info,t.UiIcons.Info]]);function r(_){const{children:l,message:m}=_,g=m.message?n.MESSAGE_TYPES_CLASSNAME_MAP.get(m.type):void 0,c=s.MESSAGE_ICONS_MAP.get(m.type);return d.default.createElement("div",{className:`ts-message-wrapper ts-message-wrapper--${g}`},d.default.createElement("div",{className:"ts-message-target"},l),d.default.createElement("div",{className:"ts-message-body"},d.default.createElement(o.UIIcon,{iconName:c}),d.default.createElement("span",null,m.message)))}},"./src/helper/ValidationMessage/index.tsx":function(a,s,e){"use strict";var i=this&&this.__createBinding||(Object.create?function(n,t,o,r){r===void 0&&(r=o);var _=Object.getOwnPropertyDescriptor(t,o);(!_||("get"in _?!t.__esModule:_.writable||_.configurable))&&(_={enumerable:!0,get:function(){return t[o]}}),Object.defineProperty(n,r,_)}:function(n,t,o,r){r===void 0&&(r=o),n[r]=t[o]}),d=this&&this.__exportStar||function(n,t){for(var o in n)o!=="default"&&!Object.prototype.hasOwnProperty.call(t,o)&&i(t,n,o)};Object.defineProperty(s,"__esModule",{value:!0}),d(e("./src/helper/ValidationMessage/MessageWrapper.tsx"),s),d(e("./src/helper/ValidationMessage/utils.ts"),s)},"./src/helper/ValidationMessage/utils.ts":(a,s)=>{"use strict";Object.defineProperty(s,"__esModule",{value:!0}),s.getMessageInfo=s.MESSAGE_TYPES_CLASSNAME_MAP=s.ErrorMessageType=void 0;var e;(function(_){_.Error="Error",_.Warning="Warning",_.Info="Info"})(e||(s.ErrorMessageType=e={}));const i=(_,l)=>{const m=`1px solid ${l}`;return{backgroundColor:_,borderLeft:m,borderRight:m,borderBottom:m,borderColor:l}},d={error:I(y({color:"var(--vscode-input-foreground)"},i("var(--vscode-inputValidation-errorBackground)","var(--vscode-inputValidation-errorBorder)")),{paddingTop:4,paddingBottom:5,paddingLeft:8,margin:0}),warning:{},info:{}};d.warning=y(y({},d.error),i("var(--vscode-inputValidation-warningBackground)","var(--vscode-inputValidation-warningBorder)")),d.info=y(y({},d.error),i("var(--vscode-inputValidation-infoBackground)","var(--vscode-inputValidation-infoBorder)")),s.MESSAGE_TYPES_CLASSNAME_MAP=new Map([[void 0,"error"],[e.Error,"error"],[e.Warning,"warning"],[e.Info,"info"]]);const n=_=>{let l;switch(_){case e.Warning:{l=d.warning;break}case e.Info:{l=d.info;break}default:{l=d.error;break}}return l},t=_=>{if(_){if(_.errorMessage)return e.Error;if(_.warningMessage)return e.Warning;if(_.infoMessage)return e.Info}return e.Error},o=_=>{const l=["errorMessage","warningMessage","infoMessage"];for(const m of l)if(_!=null&&_[m])return _[m]},r=_=>{const l=t(_);return{type:l,style:n(l),message:o(_)}};s.getMessageInfo=r}}]);})();
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(()=>{var l=(d,o)=>()=>(o||d((o={exports:{}}).exports,o),o.exports);var a=(d,o,n)=>new Promise((s,_)=>{var u=e=>{try{t(n.next(e))}catch(r){_(r)}},m=e=>{try{t(n.throw(e))}catch(r){_(r)}},t=e=>e.done?s(e.value):Promise.resolve(e.value).then(u,m);t((n=n.apply(d,o)).next())});var p=l(c=>{(self.webpackChunk_sap_ux_ui_components=self.webpackChunk_sap_ux_ui_components||[]).push([[501],{"../../node_modules/.pnpm/@storybook+react-dom-shim@8.4.2_react-dom@16.14.0_react@16.14.0_storybook@8.4.2/node_modules/@storybook/react-dom-shim/dist/react-16.mjs":(d,o,n)=>{n.d(o,{renderElement:()=>_,unmountElement:()=>u});var s=n("../../node_modules/.pnpm/react-dom@16.14.0_react@16.14.0/node_modules/react-dom/index.js"),_=(m,t)=>a(c,null,function*(){return new Promise(e=>{s.render(m,t,()=>e(null))})}),u=m=>{s.unmountComponentAtNode(m)}}}])});p();})();
|