@rjsf/semantic-ui 6.0.0-beta.21 → 6.0.0-beta.22

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.
Files changed (39) hide show
  1. package/dist/index.cjs +27 -38
  2. package/dist/index.cjs.map +3 -3
  3. package/dist/semantic-ui.esm.js +27 -39
  4. package/dist/semantic-ui.esm.js.map +3 -3
  5. package/dist/semantic-ui.umd.js +27 -38
  6. package/lib/ArrayFieldItemTemplate/ArrayFieldItemTemplate.d.ts +3 -3
  7. package/lib/ArrayFieldItemTemplate/ArrayFieldItemTemplate.js +9 -5
  8. package/lib/ArrayFieldItemTemplate/ArrayFieldItemTemplate.js.map +1 -1
  9. package/lib/ArrayFieldTemplate/ArrayFieldTemplate.d.ts +1 -1
  10. package/lib/ArrayFieldTemplate/ArrayFieldTemplate.js +4 -22
  11. package/lib/ArrayFieldTemplate/ArrayFieldTemplate.js.map +1 -1
  12. package/lib/BaseInputTemplate/BaseInputTemplate.js +2 -2
  13. package/lib/BaseInputTemplate/BaseInputTemplate.js.map +1 -1
  14. package/lib/CheckboxWidget/CheckboxWidget.js +2 -2
  15. package/lib/CheckboxWidget/CheckboxWidget.js.map +1 -1
  16. package/lib/CheckboxesWidget/CheckboxesWidget.js +3 -3
  17. package/lib/CheckboxesWidget/CheckboxesWidget.js.map +1 -1
  18. package/lib/ObjectFieldTemplate/ObjectFieldTemplate.js +2 -2
  19. package/lib/ObjectFieldTemplate/ObjectFieldTemplate.js.map +1 -1
  20. package/lib/RadioWidget/RadioWidget.js +2 -2
  21. package/lib/RadioWidget/RadioWidget.js.map +1 -1
  22. package/lib/SelectWidget/SelectWidget.js +2 -2
  23. package/lib/SelectWidget/SelectWidget.js.map +1 -1
  24. package/lib/TextareaWidget/TextareaWidget.js +2 -2
  25. package/lib/TextareaWidget/TextareaWidget.js.map +1 -1
  26. package/lib/WrapIfAdditionalTemplate/WrapIfAdditionalTemplate.js +2 -3
  27. package/lib/WrapIfAdditionalTemplate/WrapIfAdditionalTemplate.js.map +1 -1
  28. package/lib/tsconfig.tsbuildinfo +1 -1
  29. package/package.json +7 -7
  30. package/src/ArrayFieldItemTemplate/ArrayFieldItemTemplate.tsx +11 -8
  31. package/src/ArrayFieldTemplate/ArrayFieldTemplate.tsx +3 -27
  32. package/src/BaseInputTemplate/BaseInputTemplate.tsx +2 -1
  33. package/src/CheckboxWidget/CheckboxWidget.tsx +2 -1
  34. package/src/CheckboxesWidget/CheckboxesWidget.tsx +3 -2
  35. package/src/ObjectFieldTemplate/ObjectFieldTemplate.tsx +2 -2
  36. package/src/RadioWidget/RadioWidget.tsx +2 -1
  37. package/src/SelectWidget/SelectWidget.tsx +2 -1
  38. package/src/TextareaWidget/TextareaWidget.tsx +2 -1
  39. package/src/WrapIfAdditionalTemplate/WrapIfAdditionalTemplate.tsx +4 -7
package/dist/index.cjs CHANGED
@@ -125,14 +125,19 @@ var gridStyle = (vertical) => ({
125
125
  gridTemplateColumns: `1fr ${vertical ? 65 : 150}px`
126
126
  });
127
127
  function ArrayFieldItemTemplate(props) {
128
- const { children, buttonsProps, hasToolbar, uiSchema, registry } = props;
128
+ const { children, buttonsProps, hasToolbar, uiSchema, registry, parentUiSchema } = props;
129
129
  const uiOptions = (0, import_utils3.getUiOptions)(uiSchema);
130
130
  const ArrayFieldItemButtonsTemplate = (0, import_utils3.getTemplate)(
131
131
  "ArrayFieldItemButtonsTemplate",
132
132
  registry,
133
133
  uiOptions
134
134
  );
135
- const { horizontalButtons = true, wrapItem = false } = uiOptions.semantic;
135
+ const semanticProps = getSemanticProps({
136
+ uiSchema: parentUiSchema,
137
+ formContext: registry.formContext,
138
+ defaultSchemaProps: { horizontalButtons: true, wrapItem: false }
139
+ });
140
+ const { horizontalButtons = true, wrapItem = false } = semanticProps;
136
141
  return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("div", { className: "rjsf-array-item", children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(MaybeWrap, { wrap: wrapItem, component: import_semantic_ui_react2.Segment, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_semantic_ui_react2.Grid, { style: { ...gridStyle(!horizontalButtons), alignItems: "center" }, children: [
137
142
  /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_semantic_ui_react2.Grid.Column, { width: 16, verticalAlign: "middle", children }),
138
143
  hasToolbar && /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_semantic_ui_react2.Grid.Column, { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_semantic_ui_react2.Button.Group, { size: "mini", vertical: !horizontalButtons, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(ArrayFieldItemButtonsTemplate, { ...buttonsProps }) }) })
@@ -160,24 +165,12 @@ function ArrayFieldTemplate(props) {
160
165
  title,
161
166
  registry
162
167
  } = props;
163
- const semanticProps = getSemanticProps({
164
- uiSchema,
165
- formContext: registry.formContext,
166
- defaultSchemaProps: { horizontalButtons: true, wrapItem: false }
167
- });
168
- const { horizontalButtons, wrapItem } = semanticProps;
169
- const semantic = { horizontalButtons, wrapItem };
170
168
  const uiOptions = (0, import_utils4.getUiOptions)(uiSchema);
171
169
  const ArrayFieldDescriptionTemplate = (0, import_utils4.getTemplate)(
172
170
  "ArrayFieldDescriptionTemplate",
173
171
  registry,
174
172
  uiOptions
175
173
  );
176
- const ArrayFieldItemTemplate2 = (0, import_utils4.getTemplate)(
177
- "ArrayFieldItemTemplate",
178
- registry,
179
- uiOptions
180
- );
181
174
  const ArrayFieldTitleTemplate = (0, import_utils4.getTemplate)(
182
175
  "ArrayFieldTitleTemplate",
183
176
  registry,
@@ -213,16 +206,7 @@ function ArrayFieldTemplate(props) {
213
206
  /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { children: [
214
207
  /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { className: "row array-item-list", children: [
215
208
  !showOptionalDataControlInTitle ? optionalDataControl : void 0,
216
- items.map(({ key, uiSchema: itemUiSchema = {}, ...props2 }) => {
217
- const mergedUiSchema = {
218
- ...itemUiSchema,
219
- [import_utils4.UI_OPTIONS_KEY]: {
220
- ...itemUiSchema[import_utils4.UI_OPTIONS_KEY],
221
- semantic
222
- }
223
- };
224
- return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(ArrayFieldItemTemplate2, { ...props2, uiSchema: mergedUiSchema }, key);
225
- })
209
+ items
226
210
  ] }),
227
211
  canAdd && /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
228
212
  "div",
@@ -256,6 +240,7 @@ var import_jsx_runtime5 = require("react/jsx-runtime");
256
240
  function BaseInputTemplate(props) {
257
241
  const {
258
242
  id,
243
+ htmlName,
259
244
  placeholder,
260
245
  label,
261
246
  hideLabel,
@@ -289,7 +274,7 @@ function BaseInputTemplate(props) {
289
274
  import_semantic_ui_react3.Form.Input,
290
275
  {
291
276
  id,
292
- name: id,
277
+ name: htmlName || id,
293
278
  placeholder,
294
279
  ...inputProps,
295
280
  label: (0, import_utils5.labelValue)(label || void 0, hideLabel, false),
@@ -506,7 +491,7 @@ function ObjectFieldTemplate(props) {
506
491
  const {
507
492
  description,
508
493
  optionalDataControl,
509
- onAddClick,
494
+ onAddProperty,
510
495
  title,
511
496
  properties,
512
497
  disabled,
@@ -567,7 +552,7 @@ function ObjectFieldTemplate(props) {
567
552
  {
568
553
  id: (0, import_utils11.buttonId)(fieldPathId, "add"),
569
554
  className: "rjsf-object-property-expand",
570
- onClick: onAddClick(schema),
555
+ onClick: onAddProperty,
571
556
  disabled: disabled || readonly,
572
557
  uiSchema,
573
558
  registry
@@ -661,8 +646,8 @@ function WrapIfAdditionalTemplate(props) {
661
646
  disabled,
662
647
  id,
663
648
  label,
664
- onDropPropertyClick,
665
- onKeyChange,
649
+ onKeyRenameBlur,
650
+ onRemoveProperty,
666
651
  readonly,
667
652
  required,
668
653
  schema,
@@ -677,7 +662,6 @@ function WrapIfAdditionalTemplate(props) {
677
662
  if (!additional) {
678
663
  return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: classNames, style, children });
679
664
  }
680
- const handleBlur = ({ target }) => onKeyChange(target.value);
681
665
  return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: classNames, style, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_semantic_ui_react13.Grid, { columns: "equal", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_semantic_ui_react13.Grid.Row, { children: [
682
666
  /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_semantic_ui_react13.Grid.Column, { className: "form-additional", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_semantic_ui_react13.Form.Group, { widths: "equal", grouped: true, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
683
667
  import_semantic_ui_react13.Form.Input,
@@ -692,7 +676,7 @@ function WrapIfAdditionalTemplate(props) {
692
676
  disabled: disabled || readonlyAsDisabled && readonly,
693
677
  id: `${id}`,
694
678
  name: `${id}`,
695
- onBlur: !readonly ? handleBlur : void 0,
679
+ onBlur: !readonly ? onKeyRenameBlur : void 0,
696
680
  style: wrapperStyle,
697
681
  type: "text"
698
682
  }
@@ -705,7 +689,7 @@ function WrapIfAdditionalTemplate(props) {
705
689
  iconType: "mini",
706
690
  className: "rjsf-object-property-remove",
707
691
  disabled: disabled || readonly,
708
- onClick: onDropPropertyClick(label),
692
+ onClick: onRemoveProperty,
709
693
  uiSchema,
710
694
  registry
711
695
  }
@@ -749,6 +733,7 @@ var import_jsx_runtime19 = require("react/jsx-runtime");
749
733
  function CheckboxWidget(props) {
750
734
  const {
751
735
  id,
736
+ htmlName,
752
737
  value,
753
738
  disabled,
754
739
  readonly,
@@ -798,7 +783,7 @@ function CheckboxWidget(props) {
798
783
  import_semantic_ui_react14.Form.Checkbox,
799
784
  {
800
785
  id,
801
- name: id,
786
+ name: htmlName || id,
802
787
  disabled: disabled || readonly,
803
788
  autoFocus: autofocus,
804
789
  ...semanticProps,
@@ -822,6 +807,7 @@ var import_jsx_runtime20 = require("react/jsx-runtime");
822
807
  function CheckboxesWidget(props) {
823
808
  const {
824
809
  id,
810
+ htmlName,
825
811
  disabled,
826
812
  options,
827
813
  value,
@@ -860,14 +846,14 @@ function CheckboxesWidget(props) {
860
846
  const inlineOption = inline ? { inline: true } : { grouped: true };
861
847
  return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(import_jsx_runtime20.Fragment, { children: [
862
848
  !hideLabel && !!label && /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(TitleFieldTemplate, { id: (0, import_utils15.titleId)(id), title: label, schema, uiSchema, registry }),
863
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(import_semantic_ui_react15.Form.Group, { id, name: id, ...inlineOption, children: Array.isArray(enumOptions) && enumOptions.map((option, index) => {
849
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(import_semantic_ui_react15.Form.Group, { id, name: htmlName || id, ...inlineOption, children: Array.isArray(enumOptions) && enumOptions.map((option, index) => {
864
850
  const checked = (0, import_utils15.enumOptionsIsSelected)(option.value, checkboxesValues);
865
851
  const itemDisabled = Array.isArray(enumDisabled) && enumDisabled.indexOf(option.value) !== -1;
866
852
  return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
867
853
  import_semantic_ui_react15.Form.Checkbox,
868
854
  {
869
855
  id: (0, import_utils15.optionId)(id, index),
870
- name: id,
856
+ name: htmlName || id,
871
857
  label: option.label,
872
858
  ...semanticProps,
873
859
  checked,
@@ -893,6 +879,7 @@ var import_react = require("react");
893
879
  function RadioWidget(props) {
894
880
  const {
895
881
  id,
882
+ htmlName,
896
883
  value,
897
884
  required,
898
885
  disabled,
@@ -926,7 +913,7 @@ function RadioWidget(props) {
926
913
  required,
927
914
  control: import_semantic_ui_react16.Radio,
928
915
  id: (0, import_utils16.optionId)(id, index),
929
- name: id,
916
+ name: htmlName || id,
930
917
  ...semanticProps,
931
918
  onFocus: _onFocus,
932
919
  onBlur: _onBlur,
@@ -1021,6 +1008,7 @@ function SelectWidget(props) {
1021
1008
  uiSchema,
1022
1009
  registry,
1023
1010
  id,
1011
+ htmlName,
1024
1012
  options,
1025
1013
  label,
1026
1014
  hideLabel,
@@ -1066,7 +1054,7 @@ function SelectWidget(props) {
1066
1054
  import_semantic_ui_react18.Form.Dropdown,
1067
1055
  {
1068
1056
  id,
1069
- name: id,
1057
+ name: htmlName || id,
1070
1058
  label: (0, import_utils18.labelValue)(label || void 0, hideLabel, false),
1071
1059
  multiple: typeof multiple === "undefined" ? false : multiple,
1072
1060
  value: typeof value === "undefined" ? emptyValue : selectedIndexes,
@@ -1094,6 +1082,7 @@ var import_jsx_runtime24 = require("react/jsx-runtime");
1094
1082
  function TextareaWidget(props) {
1095
1083
  const {
1096
1084
  id,
1085
+ htmlName,
1097
1086
  placeholder,
1098
1087
  value,
1099
1088
  required,
@@ -1121,7 +1110,7 @@ function TextareaWidget(props) {
1121
1110
  import_semantic_ui_react19.Form.TextArea,
1122
1111
  {
1123
1112
  id,
1124
- name: id,
1113
+ name: htmlName || id,
1125
1114
  label: (0, import_utils19.labelValue)(label || void 0, hideLabel, false),
1126
1115
  placeholder,
1127
1116
  autoFocus: autofocus,
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../src/index.ts", "../src/SemanticUIForm/SemanticUIForm.ts", "../src/Theme/Theme.ts", "../src/AddButton/AddButton.tsx", "../src/ArrayFieldItemTemplate/ArrayFieldItemTemplate.tsx", "../src/util.tsx", "../src/ArrayFieldTemplate/ArrayFieldTemplate.tsx", "../src/BaseInputTemplate/BaseInputTemplate.tsx", "../src/DescriptionField/DescriptionField.tsx", "../src/ErrorList/ErrorList.tsx", "../src/IconButton/IconButton.tsx", "../src/FieldErrorTemplate/FieldErrorTemplate.tsx", "../src/FieldHelpTemplate/FieldHelpTemplate.tsx", "../src/FieldTemplate/FieldTemplate.tsx", "../src/GridTemplate/GridTemplate.tsx", "../src/MultiSchemaFieldTemplate/MultiSchemaFieldTemplate.tsx", "../src/ObjectFieldTemplate/ObjectFieldTemplate.tsx", "../src/OptionalDataControlsTemplate/OptionalDataControlsTemplate.tsx", "../src/SubmitButton/SubmitButton.tsx", "../src/TitleField/TitleField.tsx", "../src/WrapIfAdditionalTemplate/WrapIfAdditionalTemplate.tsx", "../src/Templates/Templates.ts", "../src/CheckboxWidget/CheckboxWidget.tsx", "../src/CheckboxesWidget/CheckboxesWidget.tsx", "../src/RadioWidget/RadioWidget.tsx", "../src/RangeWidget/RangeWidget.tsx", "../src/SelectWidget/SelectWidget.tsx", "../src/TextareaWidget/TextareaWidget.tsx", "../src/Widgets/Widgets.tsx"],
4
- "sourcesContent": ["/**\n * @deprecated - This theme will be deleted in a future release of RJSF once we upgrade to React 19\n */\nimport SemanticUIForm from './SemanticUIForm/SemanticUIForm';\n\nexport { default as Templates, generateTemplates } from './Templates';\nexport { default as Form, generateForm } from './SemanticUIForm';\nexport { default as Theme, generateTheme } from './Theme';\nexport { default as Widgets, generateWidgets } from './Widgets';\n\nexport default SemanticUIForm;\n", "import { ComponentType } from 'react';\nimport { withTheme, FormProps } from '@rjsf/core';\nimport { FormContextType, RJSFSchema, StrictRJSFSchema } from '@rjsf/utils';\n\nimport { generateTheme } from '../Theme';\n\nexport function generateForm<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(): ComponentType<FormProps<T, S, F>> {\n return withTheme<T, S, F>(generateTheme<T, S, F>());\n}\n\nexport default generateForm();\n", "import { FormContextType, RJSFSchema, StrictRJSFSchema } from '@rjsf/utils';\nimport { ThemeProps } from '@rjsf/core';\nimport { Form as SuiForm } from 'semantic-ui-react';\n\nimport { generateTemplates } from '../Templates';\nimport { generateWidgets } from '../Widgets';\n\nexport function generateTheme<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(): ThemeProps<T, S, F> {\n return {\n templates: generateTemplates<T, S, F>(),\n widgets: generateWidgets<T, S, F>(),\n _internalFormWrapper: SuiForm,\n };\n}\n\nexport default generateTheme();\n", "import { Button, Icon, ButtonProps } from 'semantic-ui-react';\nimport { FormContextType, RJSFSchema, StrictRJSFSchema, TranslatableString } from '@rjsf/utils';\n\nimport { SemanticIconButtonProps } from '../IconButton';\n\n/** The `AddButton` renders a button that represent the `Add` action on a form\n */\nexport default function AddButton<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>({\n uiSchema,\n registry,\n color,\n ...props\n}: SemanticIconButtonProps<T, S, F>) {\n const { translateString } = registry;\n return (\n <Button\n title={translateString(TranslatableString.AddItemButton)}\n color={color as ButtonProps['color']}\n size='tiny'\n {...props}\n icon\n >\n <Icon name='plus' />\n </Button>\n );\n}\n", "import {\n ArrayFieldItemTemplateType,\n FormContextType,\n GenericObjectType,\n RJSFSchema,\n StrictRJSFSchema,\n getUiOptions,\n getTemplate,\n} from '@rjsf/utils';\nimport { Button, Grid, Segment } from 'semantic-ui-react';\n\nimport { MaybeWrap } from '../util';\n\nconst gridStyle = (vertical: boolean) => ({\n display: 'grid',\n gridTemplateColumns: `1fr ${vertical ? 65 : 150}px`,\n});\n\n/** The `ArrayFieldItemTemplate` component is the template used to render an items of an array.\n *\n * @param props - The `ArrayFieldItemTemplateType` props for the component\n */\nexport default function ArrayFieldItemTemplate<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(props: ArrayFieldItemTemplateType<T, S, F>) {\n const { children, buttonsProps, hasToolbar, uiSchema, registry } = props;\n const uiOptions = getUiOptions<T, S, F>(uiSchema);\n const ArrayFieldItemButtonsTemplate = getTemplate<'ArrayFieldItemButtonsTemplate', T, S, F>(\n 'ArrayFieldItemButtonsTemplate',\n registry,\n uiOptions,\n );\n // Pull the semantic props out of the uiOptions that were put in via the ArrayFieldTemplate\n const { horizontalButtons = true, wrapItem = false } = uiOptions.semantic as GenericObjectType;\n return (\n <div className='rjsf-array-item'>\n <MaybeWrap wrap={wrapItem} component={Segment}>\n <Grid style={{ ...gridStyle(!horizontalButtons), alignItems: 'center' }}>\n <Grid.Column width={16} verticalAlign='middle'>\n {children}\n </Grid.Column>\n {hasToolbar && (\n <Grid.Column>\n <Button.Group size='mini' vertical={!horizontalButtons}>\n <ArrayFieldItemButtonsTemplate {...buttonsProps} />\n </Button.Group>\n </Grid.Column>\n )}\n </Grid>\n </MaybeWrap>\n </div>\n );\n}\n", "import { ElementType } from 'react';\nimport {\n UiSchema,\n GenericObjectType,\n getUiOptions,\n FormContextType,\n RJSFSchema,\n StrictRJSFSchema,\n UIOptionsType,\n} from '@rjsf/utils';\n\nexport type SemanticPropsTypes<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any> = {\n formContext?: F;\n uiSchema?: UiSchema<T, S, F>;\n options?: UIOptionsType<T, S, F>;\n defaultSchemaProps?: GenericObjectType;\n defaultContextProps?: GenericObjectType;\n};\n\nexport type SemanticErrorPropsType<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n> = {\n formContext?: F;\n uiSchema?: UiSchema<T, S, F>;\n options?: UIOptionsType<T, S, F>;\n defaultProps?: GenericObjectType;\n};\n\nexport type WrapProps = GenericObjectType & {\n wrap: boolean;\n component?: ElementType;\n};\n\n/**\n * Extract props meant for semantic UI components from props that are\n * passed to Widgets, Templates and Fields.\n * @param {Object} params\n * @param {Object?} params.formContext\n * @param {Object?} params.uiSchema\n * @param {Object?} params.options\n * @param {Object?} params.defaultSchemaProps\n * @param {Object?} params.defaultContextProps\n * @returns {any}\n */\nexport function getSemanticProps<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>({\n formContext = {} as F,\n uiSchema = {},\n options = {},\n defaultSchemaProps = { fluid: true, inverted: false },\n defaultContextProps = {},\n}: SemanticPropsTypes<T, S, F>) {\n const formContextProps = formContext.semantic;\n const schemaProps = getUiOptions<T, S, F>(uiSchema).semantic;\n const optionProps = options.semantic;\n // formContext props should overide other props\n return Object.assign(\n {},\n { ...defaultSchemaProps },\n { ...defaultContextProps },\n schemaProps,\n optionProps,\n formContextProps,\n );\n}\n\n/**\n * Extract error props meant for semantic UI components from props that are\n * passed to Widgets, Templates and Fields.\n * @param {Object} params\n * @param {Object?} params.formContext\n * @param {Object?} params.uiSchema\n * @param {Object?} params.defaultProps\n * @returns {any}\n */\nexport function getSemanticErrorProps<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>({\n formContext = {} as F,\n uiSchema = {},\n options = {},\n defaultProps = { size: 'small', pointing: 'above' },\n}: SemanticErrorPropsType<T, S, F>) {\n const formContextProps = formContext.semantic && formContext.semantic.errorOptions;\n const semanticOptions: GenericObjectType = getUiOptions<T, S, F>(uiSchema).semantic as GenericObjectType;\n const schemaProps = semanticOptions && semanticOptions.errorOptions;\n const optionProps = options.semantic && (options.semantic as GenericObjectType).errorOptions;\n\n return Object.assign({}, { ...defaultProps }, schemaProps, optionProps, formContextProps);\n}\n\n/**\n * Combine multiple strings containing class names into a single string,\n * removing duplicates. E.g.\n * cleanClassNames('bar', 'baz bar', 'x y ', undefined)\n * // 'bar baz x y'\n * @param {Array} classNameArr\n * @param {Array} omit\n * @returns {string}\n */\nexport function cleanClassNames(classNameArr: Array<string | undefined>, omit: string[] = []) {\n // Split each arg on whitespace, and add it to an array. Skip false-y args\n // like \"\" and undefined.\n const classList = classNameArr\n .filter(Boolean)\n .reduce<string[]>((previous, current) => previous.concat(current!.trim().split(/\\s+/)), []);\n\n // Remove any class names from omit, and make the rest unique before\n // returning them as a string\n return [...new Set(classList.filter((cn) => !omit.includes(cn)))].join(' ');\n}\n\n/**\n *\n * @param {boolean} wrap\n * @param Component\n * @param {Object} props\n * @returns {*}\n * @constructor\n */\nexport function MaybeWrap({ wrap, component: Component = 'div', ...props }: WrapProps) {\n return wrap ? <Component {...props} /> : props.children;\n}\n", "import {\n getTemplate,\n getUiOptions,\n isFixedItems,\n ArrayFieldTemplateProps,\n ArrayFieldItemTemplateType,\n FormContextType,\n RJSFSchema,\n StrictRJSFSchema,\n UI_OPTIONS_KEY,\n buttonId,\n} from '@rjsf/utils';\n\nimport { cleanClassNames, getSemanticProps } from '../util';\n\n/** The `ArrayFieldTemplate` component is the template used to render all items in an array.\n *\n * @param props - The `ArrayFieldItemTemplateType` props for the component\n */\nexport default function ArrayFieldTemplate<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(props: ArrayFieldTemplateProps<T, S, F>) {\n const {\n uiSchema,\n fieldPathId,\n canAdd,\n className,\n // classNames, This is not part of the type, so it is likely never passed in\n disabled,\n items,\n optionalDataControl,\n onAddClick,\n // options, This is not part of the type, so it is likely never passed in\n readonly,\n required,\n schema,\n title,\n registry,\n } = props;\n const semanticProps = getSemanticProps<T, S, F>({\n uiSchema,\n formContext: registry.formContext,\n defaultSchemaProps: { horizontalButtons: true, wrapItem: false },\n });\n const { horizontalButtons, wrapItem } = semanticProps;\n const semantic = { horizontalButtons, wrapItem };\n const uiOptions = getUiOptions<T, S, F>(uiSchema);\n const ArrayFieldDescriptionTemplate = getTemplate<'ArrayFieldDescriptionTemplate', T, S, F>(\n 'ArrayFieldDescriptionTemplate',\n registry,\n uiOptions,\n );\n const ArrayFieldItemTemplate = getTemplate<'ArrayFieldItemTemplate', T, S, F>(\n 'ArrayFieldItemTemplate',\n registry,\n uiOptions,\n );\n const ArrayFieldTitleTemplate = getTemplate<'ArrayFieldTitleTemplate', T, S, F>(\n 'ArrayFieldTitleTemplate',\n registry,\n uiOptions,\n );\n const showOptionalDataControlInTitle = !readonly && !disabled;\n // Button templates are not overridden in the uiSchema\n const {\n ButtonTemplates: { AddButton },\n } = registry.templates;\n return (\n <div className={cleanClassNames([className, isFixedItems<S>(schema) ? '' : 'sortable-form-fields'])}>\n <ArrayFieldTitleTemplate\n fieldPathId={fieldPathId}\n title={uiOptions.title || title}\n schema={schema}\n uiSchema={uiSchema}\n required={required}\n registry={registry}\n optionalDataControl={showOptionalDataControlInTitle ? optionalDataControl : undefined}\n />\n <ArrayFieldDescriptionTemplate\n fieldPathId={fieldPathId}\n description={uiOptions.description || schema.description}\n schema={schema}\n uiSchema={uiSchema}\n registry={registry}\n />\n <div key={`array-item-list-${fieldPathId.$id}`}>\n <div className='row array-item-list'>\n {!showOptionalDataControlInTitle ? optionalDataControl : undefined}\n {items.map(({ key, uiSchema: itemUiSchema = {}, ...props }: ArrayFieldItemTemplateType<T, S, F>) => {\n // Merge in the semantic props from the ArrayFieldTemplate into each of the items\n const mergedUiSchema = {\n ...itemUiSchema,\n [UI_OPTIONS_KEY]: {\n ...itemUiSchema[UI_OPTIONS_KEY],\n semantic,\n },\n };\n return <ArrayFieldItemTemplate key={key} {...props} uiSchema={mergedUiSchema} />;\n })}\n </div>\n {canAdd && (\n <div\n style={{\n marginTop: '1rem',\n position: 'relative',\n textAlign: 'right',\n }}\n >\n <AddButton\n id={buttonId(fieldPathId, 'add')}\n className='rjsf-array-item-add'\n onClick={onAddClick}\n disabled={disabled || readonly}\n uiSchema={uiSchema}\n registry={registry}\n />\n </div>\n )}\n </div>\n </div>\n );\n}\n", "import { ChangeEvent } from 'react';\nimport { Form } from 'semantic-ui-react';\nimport { getSemanticProps } from '../util';\nimport {\n ariaDescribedByIds,\n BaseInputTemplateProps,\n examplesId,\n getInputProps,\n labelValue,\n FormContextType,\n RJSFSchema,\n StrictRJSFSchema,\n} from '@rjsf/utils';\n\n/** The `BaseInputTemplate` is the template to use to render the basic `<input>` component for the `core` theme.\n * It is used as the template for rendering many of the <input> based widgets that differ by `type` and callbacks only.\n * It can be customized/overridden for other themes or individual implementations as needed.\n *\n * @param props - The `WidgetProps` for this template\n */\nexport default function BaseInputTemplate<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(props: BaseInputTemplateProps<T, S, F>) {\n const {\n id,\n placeholder,\n label,\n hideLabel,\n value,\n required,\n readonly,\n disabled,\n onChange,\n onChangeOverride,\n onBlur,\n onFocus,\n autofocus,\n options,\n schema,\n uiSchema,\n registry,\n type,\n rawErrors = [],\n } = props;\n const inputProps = getInputProps<T, S, F>(schema, type, options);\n const semanticProps = getSemanticProps<T, S, F>({\n uiSchema,\n formContext: registry.formContext,\n options,\n });\n const _onChange = ({ target: { value } }: ChangeEvent<HTMLInputElement>) =>\n onChange(value === '' ? options.emptyValue : value);\n const _onBlur = () => onBlur && onBlur(id, value);\n const _onFocus = () => onFocus && onFocus(id, value);\n\n return (\n <>\n <Form.Input\n key={id}\n id={id}\n name={id}\n placeholder={placeholder}\n {...inputProps}\n label={labelValue(label || undefined, hideLabel, false)}\n required={required}\n autoFocus={autofocus}\n disabled={disabled || readonly}\n list={schema.examples ? examplesId(id) : undefined}\n {...semanticProps}\n value={value || value === 0 ? value : ''}\n error={rawErrors.length > 0}\n onChange={onChangeOverride || _onChange}\n onBlur={_onBlur}\n onFocus={_onFocus}\n aria-describedby={ariaDescribedByIds(id, !!schema.examples)}\n />\n {Array.isArray(schema.examples) && (\n <datalist id={examplesId(id)}>\n {(schema.examples as string[])\n .concat(schema.default && !schema.examples.includes(schema.default) ? ([schema.default] as string[]) : [])\n .map((example) => {\n return <option key={example} value={example} />;\n })}\n </datalist>\n )}\n </>\n );\n}\n", "import { DescriptionFieldProps, FormContextType, RJSFSchema, StrictRJSFSchema } from '@rjsf/utils';\nimport { RichDescription } from '@rjsf/core';\n\n/** The `DescriptionField` is the template to use to render the description of a field\n *\n * @param props - The `DescriptionFieldProps` for this component\n */\nexport default function DescriptionField<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(props: DescriptionFieldProps<T, S, F>) {\n const { id, description, registry, uiSchema } = props;\n if (!description) {\n return null;\n }\n return (\n <p id={id} className='sui-description'>\n <RichDescription description={description} registry={registry} uiSchema={uiSchema} />\n </p>\n );\n}\n", "import { Message } from 'semantic-ui-react';\nimport { ErrorListProps, FormContextType, RJSFSchema, StrictRJSFSchema, TranslatableString } from '@rjsf/utils';\n\n/** The `ErrorList` component is the template that renders the all the errors associated with the fields in the `Form`\n *\n * @param props - The `ErrorListProps` for this component\n */\nexport default function ErrorList<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>({\n errors,\n registry,\n}: ErrorListProps<T, S, F>) {\n const { translateString } = registry;\n return (\n <Message negative>\n <Message.Header>{translateString(TranslatableString.ErrorsLabel)}</Message.Header>\n <Message.List>\n {errors.map((error, index) => (\n <Message.Item key={`error-${index}`}>{error.stack}</Message.Item>\n ))}\n </Message.List>\n </Message>\n );\n}\n", "import { Button, ButtonProps } from 'semantic-ui-react';\nimport { FormContextType, IconButtonProps, RJSFSchema, StrictRJSFSchema, TranslatableString } from '@rjsf/utils';\n\nexport type SemanticIconButtonProps<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n> = IconButtonProps<T, S, F> & Omit<ButtonProps, 'onChange'>;\n\nexport default function IconButton<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>(\n props: SemanticIconButtonProps<T, S, F>,\n) {\n const { icon, iconType, color, className, uiSchema, registry, ...otherProps } = props;\n return (\n <Button\n icon={icon}\n size={iconType as ButtonProps['size']}\n color={color as ButtonProps['color']}\n className={className}\n {...otherProps}\n />\n );\n}\n\nexport function CopyButton<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>(\n props: SemanticIconButtonProps<T, S, F>,\n) {\n const {\n registry: { translateString },\n } = props;\n return <IconButton title={translateString(TranslatableString.CopyButton)} {...props} icon='copy' />;\n}\n\nexport function MoveDownButton<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>(\n props: SemanticIconButtonProps<T, S, F>,\n) {\n const {\n registry: { translateString },\n } = props;\n return <IconButton title={translateString(TranslatableString.MoveDownButton)} {...props} icon='angle down' />;\n}\n\nexport function MoveUpButton<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>(\n props: SemanticIconButtonProps<T, S, F>,\n) {\n const {\n registry: { translateString },\n } = props;\n return <IconButton title={translateString(TranslatableString.MoveUpButton)} {...props} icon='angle up' />;\n}\n\nexport function RemoveButton<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>(\n props: SemanticIconButtonProps<T, S, F>,\n) {\n const {\n registry: { translateString },\n } = props;\n return <IconButton title={translateString(TranslatableString.RemoveButton)} {...props} icon='trash' />;\n}\n", "import { errorId, FieldErrorProps, FormContextType, RJSFSchema, StrictRJSFSchema } from '@rjsf/utils';\nimport uniqueId from 'lodash/uniqueId';\nimport { Label, List } from 'semantic-ui-react';\n\nimport { getSemanticErrorProps } from '../util';\n\nconst DEFAULT_OPTIONS = {\n options: {\n pointing: 'above',\n size: 'small',\n },\n};\n\n/** The `FieldErrorTemplate` component renders the errors local to the particular field\n *\n * @param props - The `FieldErrorProps` for the errors being rendered\n */\nexport default function FieldErrorTemplate<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>({ errors, fieldPathId, uiSchema, registry }: FieldErrorProps<T, S, F>) {\n const { formContext } = registry;\n const options = getSemanticErrorProps<T, S, F>({\n formContext,\n uiSchema,\n defaultProps: DEFAULT_OPTIONS,\n });\n const { pointing, size } = options;\n if (errors && errors.length > 0) {\n const id = errorId(fieldPathId);\n return (\n <Label id={id} color='red' pointing={pointing || 'above'} size={size || 'small'} basic>\n <List bulleted>\n {errors.map((error) => (\n <List.Item key={uniqueId('field-error-')}>{error}</List.Item>\n ))}\n </List>\n </Label>\n );\n }\n return null;\n}\n", "import { Message } from 'semantic-ui-react';\nimport { FieldHelpProps, FormContextType, RJSFSchema, StrictRJSFSchema, helpId } from '@rjsf/utils';\n\n/** The `FieldHelpTemplate` component renders any help desired for a field\n *\n * @param props - The `FieldHelpProps` to be rendered\n */\nexport default function FieldHelpTemplate<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(props: FieldHelpProps<T, S, F>) {\n const { fieldPathId, help } = props;\n if (help) {\n const id = helpId(fieldPathId);\n return <Message size='mini' info id={id} content={help} />;\n }\n return null;\n}\n", "import {\n FieldTemplateProps,\n FormContextType,\n RJSFSchema,\n StrictRJSFSchema,\n getTemplate,\n getUiOptions,\n} from '@rjsf/utils';\nimport { Form } from 'semantic-ui-react';\nimport { getSemanticProps, MaybeWrap } from '../util';\n\n/** The `FieldTemplate` component is the template used by `SchemaField` to render any field. It renders the field\n * content, (label, description, children, errors and help) inside of a `WrapIfAdditional` component.\n *\n * @param props - The `FieldTemplateProps` for this component\n */\nexport default function FieldTemplate<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(props: FieldTemplateProps<T, S, F>) {\n const {\n id,\n children,\n classNames,\n style,\n displayLabel,\n label,\n errors,\n help,\n hidden,\n description,\n rawDescription,\n registry,\n schema,\n uiSchema,\n ...otherProps\n } = props;\n const semanticProps = getSemanticProps<T, S, F>({\n ...otherProps,\n formContext: registry.formContext,\n });\n const { wrapLabel, wrapContent } = semanticProps;\n const uiOptions = getUiOptions<T, S, F>(uiSchema);\n const WrapIfAdditionalTemplate = getTemplate<'WrapIfAdditionalTemplate', T, S, F>(\n 'WrapIfAdditionalTemplate',\n registry,\n uiOptions,\n );\n\n if (hidden) {\n return <div style={{ display: 'none' }}>{children}</div>;\n }\n\n return (\n <WrapIfAdditionalTemplate\n classNames={classNames}\n style={style}\n id={id}\n label={label}\n registry={registry}\n schema={schema}\n uiSchema={uiSchema}\n {...otherProps}\n >\n <Form.Group key={id} widths='equal' grouped>\n <MaybeWrap wrap={wrapContent} className='sui-field-content'>\n {children}\n {displayLabel && rawDescription && (\n <MaybeWrap wrap={wrapLabel} className='sui-field-label'>\n {description}\n </MaybeWrap>\n )}\n {help}\n {errors}\n </MaybeWrap>\n </Form.Group>\n </WrapIfAdditionalTemplate>\n );\n}\n", "import { Grid } from 'semantic-ui-react';\nimport { GridTemplateProps } from '@rjsf/utils';\n\n/** Renders a `GridTemplate` for semantic-ui, which is expecting the column sizing information coming in via the\n * extra props provided by the caller, which are spread directly on the `Flex`.\n *\n * @param props - The GridTemplateProps, including the extra props containing the semantic-ui grid positioning details\n */\nexport default function GridTemplate(props: GridTemplateProps) {\n const { children, column, ...rest } = props;\n if (column) {\n return <Grid.Column {...rest}>{children}</Grid.Column>;\n }\n return <Grid {...rest}>{children}</Grid>;\n}\n", "import { FormContextType, MultiSchemaFieldTemplateProps, RJSFSchema, StrictRJSFSchema } from '@rjsf/utils';\n\nexport default function MultiSchemaFieldTemplate<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(props: MultiSchemaFieldTemplateProps<T, S, F>) {\n const { selector, optionSchemaField } = props;\n\n return (\n <div>\n <div>{selector}</div>\n {optionSchemaField}\n </div>\n );\n}\n", "import { Grid } from 'semantic-ui-react';\nimport {\n FormContextType,\n ObjectFieldTemplateProps,\n RJSFSchema,\n StrictRJSFSchema,\n canExpand,\n descriptionId,\n getTemplate,\n getUiOptions,\n titleId,\n buttonId,\n} from '@rjsf/utils';\n\n/** The `ObjectFieldTemplate` is the template to use to render all the inner properties of an object along with the\n * title and description if available. If the object is expandable, then an `AddButton` is also rendered after all\n * the properties.\n *\n * @param props - The `ObjectFieldTemplateProps` for this component\n */\nexport default function ObjectFieldTemplate<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(props: ObjectFieldTemplateProps<T, S, F>) {\n const {\n description,\n optionalDataControl,\n onAddClick,\n title,\n properties,\n disabled,\n readonly,\n required,\n uiSchema,\n schema,\n formData,\n fieldPathId,\n registry,\n } = props;\n const uiOptions = getUiOptions<T, S, F>(uiSchema);\n const TitleFieldTemplate = getTemplate<'TitleFieldTemplate', T, S, F>('TitleFieldTemplate', registry, uiOptions);\n const DescriptionFieldTemplate = getTemplate<'DescriptionFieldTemplate', T, S, F>(\n 'DescriptionFieldTemplate',\n registry,\n uiOptions,\n );\n const showOptionalDataControlInTitle = !readonly && !disabled;\n // Button templates are not overridden in the uiSchema\n const {\n ButtonTemplates: { AddButton },\n } = registry.templates;\n return (\n <>\n {title && (\n <TitleFieldTemplate\n id={titleId(fieldPathId)}\n title={title}\n required={required}\n schema={schema}\n uiSchema={uiSchema}\n registry={registry}\n optionalDataControl={showOptionalDataControlInTitle ? optionalDataControl : undefined}\n />\n )}\n {description && (\n <DescriptionFieldTemplate\n id={descriptionId(fieldPathId)}\n description={description}\n schema={schema}\n uiSchema={uiSchema}\n registry={registry}\n />\n )}\n {!showOptionalDataControlInTitle ? optionalDataControl : undefined}\n {properties.map((prop) => prop.content)}\n {canExpand<T, S, F>(schema, uiSchema, formData) && (\n <Grid.Column width={16} verticalAlign='middle'>\n <Grid.Row>\n <div\n style={{\n marginTop: '1rem',\n position: 'relative',\n textAlign: 'right',\n }}\n >\n <AddButton\n id={buttonId(fieldPathId, 'add')}\n className='rjsf-object-property-expand'\n onClick={onAddClick(schema)}\n disabled={disabled || readonly}\n uiSchema={uiSchema}\n registry={registry}\n />\n </div>\n </Grid.Row>\n </Grid.Column>\n )}\n </>\n );\n}\n", "import { FormContextType, OptionalDataControlsTemplateProps, RJSFSchema, StrictRJSFSchema } from '@rjsf/utils';\n\nimport { RemoveButton } from '../IconButton';\nimport AddButton from '../AddButton';\n\n/** The OptionalDataControlsTemplate renders one of three different states. If\n * there is an `onAddClick()` function, it renders the \"Add\" button. If there is\n * an `onRemoveClick()` function, it renders the \"Remove\" button. Otherwise it\n * renders the \"No data found\" section. All of them use the `label` as either\n * the `title` of buttons or simply outputting it.\n *\n * @param props - The `OptionalDataControlsTemplateProps` for the template\n */\nexport default function OptionalDataControlsTemplate<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(props: OptionalDataControlsTemplateProps<T, S, F>) {\n const { id, registry, label, onAddClick, onRemoveClick } = props;\n if (onAddClick) {\n return (\n <AddButton\n id={id}\n registry={registry}\n className='rjsf-add-optional-data'\n onClick={onAddClick}\n title={label}\n size='mini'\n />\n );\n } else if (onRemoveClick) {\n return (\n <RemoveButton\n id={id}\n registry={registry}\n className='rjsf-remove-optional-data'\n onClick={onRemoveClick}\n title={label}\n size='mini'\n />\n );\n }\n return <em id={id}>{label}</em>;\n}\n", "import { Button } from 'semantic-ui-react';\nimport { getSubmitButtonOptions, FormContextType, RJSFSchema, StrictRJSFSchema, SubmitButtonProps } from '@rjsf/utils';\n\n/** The `SubmitButton` renders a button that represent the `Submit` action on a form\n */\nexport default function SubmitButton<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>({ uiSchema }: SubmitButtonProps<T, S, F>) {\n const { submitText, norender, props: submitButtonProps = {} } = getSubmitButtonOptions<T, S, F>(uiSchema);\n if (norender) {\n return null;\n }\n return (\n <Button type='submit' primary {...submitButtonProps}>\n {submitText}\n </Button>\n );\n}\n", "import { FormContextType, TitleFieldProps, RJSFSchema, StrictRJSFSchema } from '@rjsf/utils';\nimport { Grid, Header } from 'semantic-ui-react';\n\nimport { getSemanticProps } from '../util';\n\nconst DEFAULT_OPTIONS = {\n inverted: false,\n dividing: true,\n};\n\n/** The `TitleField` is the template to use to render the title of a field\n *\n * @param props - The `TitleFieldProps` for this component\n */\nexport default function TitleField<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>({\n id,\n title,\n uiSchema,\n optionalDataControl,\n}: TitleFieldProps<T, S, F>) {\n const semanticProps = getSemanticProps<T, S, F>({\n uiSchema,\n defaultSchemaProps: DEFAULT_OPTIONS,\n });\n let heading = title ? (\n <Header id={id} {...semanticProps} as='h5'>\n {title}\n </Header>\n ) : null;\n if (optionalDataControl) {\n heading = (\n <Grid colums={2} relaxed>\n <Grid.Column width={14} style={{ paddingRight: 0 }}>\n {heading}\n </Grid.Column>\n <Grid.Column width={2}>{optionalDataControl}</Grid.Column>\n </Grid>\n );\n }\n\n return heading;\n}\n", "import { FocusEvent } from 'react';\nimport {\n ADDITIONAL_PROPERTY_FLAG,\n buttonId,\n FormContextType,\n RJSFSchema,\n StrictRJSFSchema,\n TranslatableString,\n WrapIfAdditionalTemplateProps,\n} from '@rjsf/utils';\nimport { Form, Grid } from 'semantic-ui-react';\n\n/** The `WrapIfAdditional` component is used by the `FieldTemplate` to rename, or remove properties that are\n * part of an `additionalProperties` part of a schema.\n *\n * @param props - The `WrapIfAdditionalProps` for this component\n */\nexport default function WrapIfAdditionalTemplate<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(props: WrapIfAdditionalTemplateProps<T, S, F>) {\n const {\n children,\n classNames,\n style,\n disabled,\n id,\n label,\n onDropPropertyClick,\n onKeyChange,\n readonly,\n required,\n schema,\n uiSchema,\n registry,\n } = props;\n const { templates, translateString } = registry;\n // Button templates are not overridden in the uiSchema\n const { RemoveButton } = templates.ButtonTemplates;\n const keyLabel = translateString(TranslatableString.KeyLabel, [label]);\n const { readonlyAsDisabled = true, wrapperStyle } = registry.formContext;\n\n const additional = ADDITIONAL_PROPERTY_FLAG in schema;\n\n if (!additional) {\n return (\n <div className={classNames} style={style}>\n {children}\n </div>\n );\n }\n\n const handleBlur = ({ target }: FocusEvent<HTMLInputElement>) => onKeyChange(target.value);\n\n return (\n <div className={classNames} style={style} key={`${id}-key`}>\n <Grid columns='equal'>\n <Grid.Row>\n <Grid.Column className='form-additional'>\n <Form.Group widths='equal' grouped>\n <Form.Input\n className='form-group'\n hasFeedback\n fluid\n htmlFor={`${id}`}\n label={keyLabel}\n required={required}\n defaultValue={label}\n disabled={disabled || (readonlyAsDisabled && readonly)}\n id={`${id}`}\n name={`${id}`}\n onBlur={!readonly ? handleBlur : undefined}\n style={wrapperStyle}\n type='text'\n ></Form.Input>\n </Form.Group>\n </Grid.Column>\n <Grid.Column className='form-additional' verticalAlign='middle'>\n {children}\n </Grid.Column>\n <Grid.Column>\n <RemoveButton\n id={buttonId(id, 'remove')}\n iconType='mini'\n className='rjsf-object-property-remove'\n disabled={disabled || readonly}\n onClick={onDropPropertyClick(label)}\n uiSchema={uiSchema}\n registry={registry}\n />\n </Grid.Column>\n </Grid.Row>\n </Grid>\n </div>\n );\n}\n", "import { FormContextType, RJSFSchema, StrictRJSFSchema, TemplatesType } from '@rjsf/utils';\n\nimport AddButton from '../AddButton';\nimport ArrayFieldItemTemplate from '../ArrayFieldItemTemplate';\nimport ArrayFieldTemplate from '../ArrayFieldTemplate';\nimport BaseInputTemplate from '../BaseInputTemplate';\nimport DescriptionField from '../DescriptionField';\nimport ErrorList from '../ErrorList';\nimport { CopyButton, MoveDownButton, MoveUpButton, RemoveButton } from '../IconButton';\nimport FieldErrorTemplate from '../FieldErrorTemplate';\nimport FieldHelpTemplate from '../FieldHelpTemplate';\nimport FieldTemplate from '../FieldTemplate';\nimport GridTemplate from '../GridTemplate';\nimport MultiSchemaFieldTemplate from '../MultiSchemaFieldTemplate';\nimport ObjectFieldTemplate from '../ObjectFieldTemplate';\nimport OptionalDataControlsTemplate from '../OptionalDataControlsTemplate';\nimport SubmitButton from '../SubmitButton';\nimport TitleField from '../TitleField';\nimport WrapIfAdditionalTemplate from '../WrapIfAdditionalTemplate';\n\nexport function generateTemplates<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(): Partial<TemplatesType<T, S, F>> {\n return {\n ArrayFieldItemTemplate,\n ArrayFieldTemplate,\n BaseInputTemplate,\n ButtonTemplates: {\n AddButton,\n CopyButton,\n MoveDownButton,\n MoveUpButton,\n RemoveButton,\n SubmitButton,\n },\n DescriptionFieldTemplate: DescriptionField,\n ErrorListTemplate: ErrorList,\n FieldErrorTemplate,\n FieldHelpTemplate,\n FieldTemplate,\n GridTemplate,\n MultiSchemaFieldTemplate,\n ObjectFieldTemplate,\n OptionalDataControlsTemplate,\n TitleFieldTemplate: TitleField,\n WrapIfAdditionalTemplate,\n };\n}\n\nexport default generateTemplates();\n", "import { FormEvent } from 'react';\nimport {\n ariaDescribedByIds,\n descriptionId,\n getTemplate,\n labelValue,\n schemaRequiresTrueValue,\n FormContextType,\n RJSFSchema,\n StrictRJSFSchema,\n WidgetProps,\n} from '@rjsf/utils';\nimport { Form, CheckboxProps } from 'semantic-ui-react';\nimport { getSemanticProps } from '../util';\n\n/** The `CheckBoxWidget` is a widget for rendering boolean properties.\n * It is typically used to represent a boolean.\n *\n * @param props - The `WidgetProps` for this component\n */\nexport default function CheckboxWidget<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(props: WidgetProps<T, S, F>) {\n const {\n id,\n value,\n disabled,\n readonly,\n label = '',\n hideLabel,\n autofocus,\n onChange,\n onBlur,\n options,\n onFocus,\n schema,\n uiSchema,\n rawErrors = [],\n registry,\n } = props;\n const semanticProps = getSemanticProps<T, S, F>({\n options,\n formContext: registry.formContext,\n uiSchema,\n defaultSchemaProps: {\n inverted: 'false',\n },\n });\n const DescriptionFieldTemplate = getTemplate<'DescriptionFieldTemplate', T, S, F>(\n 'DescriptionFieldTemplate',\n registry,\n options,\n );\n // Because an unchecked checkbox will cause html5 validation to fail, only add\n // the \"required\" attribute if the field value must be \"true\", due to the\n // \"const\" or \"enum\" keywords\n const required = schemaRequiresTrueValue<S>(schema);\n const checked = value == 'true' || value == true;\n const _onChange = (_: FormEvent<HTMLInputElement>, data: CheckboxProps) => onChange && onChange(data.checked);\n const _onBlur: React.FocusEventHandler<HTMLInputElement> = () => onBlur && onBlur(id, value);\n const _onFocus: React.FocusEventHandler<HTMLInputElement> = () => onFocus && onFocus(id, value);\n const description = options.description ?? schema.description;\n\n return (\n <>\n {!hideLabel && description && (\n <DescriptionFieldTemplate\n id={descriptionId(id)}\n description={description}\n schema={schema}\n uiSchema={uiSchema}\n registry={registry}\n />\n )}\n <Form.Checkbox\n id={id}\n name={id}\n disabled={disabled || readonly}\n autoFocus={autofocus}\n {...semanticProps}\n checked={typeof value === 'undefined' ? false : checked}\n error={rawErrors.length > 0}\n onChange={_onChange}\n onBlur={_onBlur}\n onFocus={_onFocus}\n required={required}\n label={labelValue(label, hideLabel, false)}\n aria-describedby={ariaDescribedByIds(id)}\n />\n </>\n );\n}\n", "import { ChangeEvent } from 'react';\nimport { Form } from 'semantic-ui-react';\nimport {\n ariaDescribedByIds,\n enumOptionsDeselectValue,\n enumOptionsIsSelected,\n enumOptionsSelectValue,\n getTemplate,\n optionId,\n titleId,\n FormContextType,\n RJSFSchema,\n StrictRJSFSchema,\n WidgetProps,\n} from '@rjsf/utils';\nimport { getSemanticProps } from '../util';\n\n/** The `CheckboxesWidget` is a widget for rendering checkbox groups.\n * It is typically used to represent an array of enums.\n *\n * @param props - The `WidgetProps` for this component\n */\nexport default function CheckboxesWidget<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(props: WidgetProps<T, S, F>) {\n const {\n id,\n disabled,\n options,\n value,\n autofocus,\n readonly,\n label,\n hideLabel,\n onChange,\n onBlur,\n onFocus,\n schema,\n uiSchema,\n rawErrors = [],\n registry,\n } = props;\n const TitleFieldTemplate = getTemplate<'TitleFieldTemplate', T, S, F>('TitleFieldTemplate', registry, options);\n const { enumOptions, enumDisabled, inline } = options;\n const checkboxesValues = Array.isArray(value) ? value : [value];\n const semanticProps = getSemanticProps<T, S, F>({\n options,\n formContext: registry.formContext,\n uiSchema,\n defaultSchemaProps: {\n inverted: 'false',\n },\n });\n const _onChange =\n (index: number) =>\n ({ target: { checked } }: ChangeEvent<HTMLInputElement>) => {\n // eslint-disable-next-line no-shadow\n if (checked) {\n onChange(enumOptionsSelectValue<S>(index, checkboxesValues, enumOptions));\n } else {\n onChange(enumOptionsDeselectValue<S>(index, checkboxesValues, enumOptions));\n }\n };\n\n const _onBlur = () => onBlur(id, value);\n const _onFocus = () => onFocus(id, value);\n const inlineOption = inline ? { inline: true } : { grouped: true };\n return (\n <>\n {!hideLabel && !!label && (\n <TitleFieldTemplate id={titleId(id)} title={label} schema={schema} uiSchema={uiSchema} registry={registry} />\n )}\n <Form.Group id={id} name={id} {...inlineOption}>\n {Array.isArray(enumOptions) &&\n enumOptions.map((option, index) => {\n const checked = enumOptionsIsSelected<S>(option.value, checkboxesValues);\n const itemDisabled = Array.isArray(enumDisabled) && enumDisabled.indexOf(option.value) !== -1;\n return (\n <Form.Checkbox\n id={optionId(id, index)}\n name={id}\n key={index}\n label={option.label}\n {...semanticProps}\n checked={checked}\n error={rawErrors.length > 0}\n disabled={disabled || itemDisabled || readonly}\n autoFocus={autofocus && index === 0}\n onChange={_onChange(index)}\n onBlur={_onBlur}\n onFocus={_onFocus}\n aria-describedby={ariaDescribedByIds(id)}\n />\n );\n })}\n </Form.Group>\n </>\n );\n}\n", "import { FormEvent } from 'react';\nimport {\n ariaDescribedByIds,\n enumOptionsIsSelected,\n enumOptionsValueForIndex,\n optionId,\n FormContextType,\n RJSFSchema,\n StrictRJSFSchema,\n WidgetProps,\n} from '@rjsf/utils';\nimport { CheckboxProps, Form, Radio } from 'semantic-ui-react';\nimport { getSemanticProps } from '../util';\n\n/** The `RadioWidget` is a widget for rendering a radio group.\n * It is typically used with a string property constrained with enum options.\n *\n * @param props - The `WidgetProps` for this component\n */\nexport default function RadioWidget<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>(\n props: WidgetProps<T, S, F>,\n) {\n const {\n id,\n value,\n required,\n disabled,\n readonly,\n onChange,\n onBlur,\n onFocus,\n options,\n registry,\n uiSchema,\n rawErrors = [],\n } = props;\n const { enumOptions, enumDisabled, emptyValue } = options;\n const semanticProps = getSemanticProps<T, S, F>({\n formContext: registry.formContext,\n options,\n uiSchema,\n });\n const _onChange = (_: FormEvent<HTMLInputElement>, { value: eventValue }: CheckboxProps) => {\n return onChange(enumOptionsValueForIndex<S>(eventValue!, enumOptions, emptyValue));\n };\n\n const _onBlur = () => onBlur(id, value);\n const _onFocus = () => onFocus(id, value);\n const inlineOption = options.inline ? { inline: true } : { grouped: true };\n return (\n <Form.Group {...inlineOption}>\n {Array.isArray(enumOptions) &&\n enumOptions.map((option, index) => {\n const checked = enumOptionsIsSelected<S>(option.value, value);\n const itemDisabled = Array.isArray(enumDisabled) && enumDisabled.indexOf(option.value) !== -1;\n return (\n <Form.Field\n required={required}\n control={Radio}\n id={optionId(id, index)}\n name={id}\n {...semanticProps}\n onFocus={_onFocus}\n onBlur={_onBlur}\n onChange={_onChange}\n label={option.label}\n value={String(index)}\n error={rawErrors.length > 0}\n key={index}\n checked={checked}\n disabled={disabled || itemDisabled || readonly}\n aria-describedby={ariaDescribedByIds(id)}\n />\n );\n })}\n </Form.Group>\n );\n}\n", "import { ChangeEvent } from 'react';\nimport { Input } from 'semantic-ui-react';\nimport { ariaDescribedByIds, FormContextType, RJSFSchema, StrictRJSFSchema, WidgetProps, rangeSpec } from '@rjsf/utils';\nimport { getSemanticProps } from '../util';\n\n/** The `RangeWidget` component uses the `BaseInputTemplate` changing the type to `range` and wrapping the result\n * in a div, with the value along side it.\n *\n * @param props - The `WidgetProps` for this component\n */\nexport default function RangeWidget<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>(\n props: WidgetProps<T, S, F>,\n) {\n const {\n id,\n value,\n required,\n readonly,\n disabled,\n onChange,\n onBlur,\n onFocus,\n options,\n schema,\n uiSchema,\n registry,\n rawErrors = [],\n } = props;\n const semanticProps = getSemanticProps<T, S, F>({\n formContext: registry.formContext,\n options,\n uiSchema,\n defaultSchemaProps: {\n fluid: true,\n },\n });\n\n // eslint-disable-next-line no-shadow\n const _onChange = ({ target: { value } }: ChangeEvent<HTMLInputElement>) =>\n onChange && onChange(value === '' ? options.emptyValue : value);\n const _onBlur = () => onBlur && onBlur(id, value);\n const _onFocus = () => onFocus && onFocus(id, value);\n\n return (\n <>\n <Input\n id={id}\n key={id}\n name={id}\n type='range'\n required={required}\n disabled={disabled || readonly}\n {...rangeSpec<S>(schema)}\n {...semanticProps}\n value={value || ''}\n error={rawErrors.length > 0}\n onChange={_onChange}\n onBlur={_onBlur}\n onFocus={_onFocus}\n aria-describedby={ariaDescribedByIds(id)}\n />\n <span>{value}</span>\n </>\n );\n}\n", "import { FocusEvent, SyntheticEvent } from 'react';\nimport {\n ariaDescribedByIds,\n enumOptionsIndexForValue,\n enumOptionsValueForIndex,\n labelValue,\n EnumOptionsType,\n FormContextType,\n RJSFSchema,\n StrictRJSFSchema,\n WidgetProps,\n UIOptionsType,\n} from '@rjsf/utils';\nimport map from 'lodash/map';\nimport { Form, DropdownProps, DropdownItemProps } from 'semantic-ui-react';\nimport { getSemanticProps } from '../util';\n\n/**\n * Returns and creates an array format required for semantic drop down\n * @param {array} enumOptions - array of items for the dropdown\n * @param {array} enumDisabled - array of enum option values to disable\n * @param {boolean} showPlaceholderOption - whether to show a placeholder option\n * @param {string} placeholder - placeholder option label\n * @returns {*}\n */\nfunction createDefaultValueOptionsForDropDown<S extends StrictRJSFSchema = RJSFSchema>(\n enumOptions?: EnumOptionsType<S>[],\n enumDisabled?: UIOptionsType['enumDisabled'],\n showPlaceholderOption?: boolean,\n placeholder?: string,\n) {\n const disabledOptions = enumDisabled || [];\n const options: DropdownItemProps[] = map(enumOptions, ({ label, value }, index) => ({\n disabled: disabledOptions.indexOf(value) !== -1,\n key: label,\n text: label,\n value: String(index),\n }));\n if (showPlaceholderOption) {\n options.unshift({ value: '', text: placeholder || '' });\n }\n return options;\n}\n\n/** The `SelectWidget` is a widget for rendering dropdowns.\n * It is typically used with string properties constrained with enum options.\n *\n * @param props - The `WidgetProps` for this component\n */\nexport default function SelectWidget<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>(\n props: WidgetProps<T, S, F>,\n) {\n const {\n uiSchema,\n registry,\n id,\n options,\n label,\n hideLabel,\n required,\n disabled,\n readonly,\n value,\n multiple,\n placeholder,\n autofocus,\n onChange,\n onBlur,\n onFocus,\n rawErrors = [],\n schema,\n } = props;\n const semanticProps = getSemanticProps<T, S, F>({\n uiSchema,\n formContext: registry.formContext,\n options,\n defaultSchemaProps: {\n inverted: 'false',\n selection: true,\n fluid: true,\n scrolling: true,\n upward: false,\n },\n });\n const { enumDisabled, enumOptions, emptyValue: optEmptyVal } = options;\n const emptyValue = multiple ? [] : '';\n const showPlaceholderOption = !multiple && schema.default === undefined;\n const dropdownOptions = createDefaultValueOptionsForDropDown<S>(\n enumOptions,\n enumDisabled,\n showPlaceholderOption,\n placeholder,\n );\n const _onChange = (_: SyntheticEvent<HTMLElement>, { value }: DropdownProps) =>\n onChange(enumOptionsValueForIndex<S>(value as string[], enumOptions, optEmptyVal));\n // eslint-disable-next-line no-shadow\n const _onBlur = (_: FocusEvent<HTMLElement>, { target }: DropdownProps) =>\n onBlur(id, enumOptionsValueForIndex<S>(target && target.value, enumOptions, optEmptyVal));\n const _onFocus = (_: FocusEvent<HTMLElement>, { target }: DropdownProps) =>\n onFocus(id, enumOptionsValueForIndex<S>(target && target.value, enumOptions, optEmptyVal));\n const selectedIndexes = enumOptionsIndexForValue<S>(value, enumOptions, multiple);\n\n return (\n <Form.Dropdown\n key={id}\n id={id}\n name={id}\n label={labelValue(label || undefined, hideLabel, false)}\n multiple={typeof multiple === 'undefined' ? false : multiple}\n value={typeof value === 'undefined' ? emptyValue : selectedIndexes}\n error={rawErrors.length > 0}\n disabled={disabled}\n placeholder={placeholder}\n {...semanticProps}\n required={required}\n autoFocus={autofocus}\n readOnly={readonly}\n options={dropdownOptions}\n onChange={_onChange}\n onBlur={_onBlur}\n onFocus={_onFocus}\n aria-describedby={ariaDescribedByIds(id)}\n />\n );\n}\n", "import { ChangeEvent } from 'react';\nimport {\n ariaDescribedByIds,\n labelValue,\n FormContextType,\n RJSFSchema,\n StrictRJSFSchema,\n WidgetProps,\n} from '@rjsf/utils';\nimport { Form } from 'semantic-ui-react';\nimport { getSemanticProps } from '../util';\n\n/** The `TextareaWidget` is a widget for rendering input fields as textarea.\n *\n * @param props - The `WidgetProps` for this component\n */\nexport default function TextareaWidget<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(props: WidgetProps<T, S, F>) {\n const {\n id,\n placeholder,\n value,\n required,\n disabled,\n autofocus,\n label,\n hideLabel,\n readonly,\n onBlur,\n onFocus,\n onChange,\n options,\n registry,\n rawErrors = [],\n } = props;\n const semanticProps = getSemanticProps<T, S, F>({\n formContext: registry.formContext,\n options,\n defaultSchemaProps: { inverted: 'false' },\n });\n // eslint-disable-next-line no-shadow\n const _onChange = ({ target: { value } }: ChangeEvent<HTMLTextAreaElement>) =>\n onChange && onChange(value === '' ? options.emptyValue : value);\n const _onBlur = () => onBlur && onBlur(id, value);\n const _onFocus = () => onFocus && onFocus(id, value);\n return (\n <Form.TextArea\n id={id}\n key={id}\n name={id}\n label={labelValue(label || undefined, hideLabel, false)}\n placeholder={placeholder}\n autoFocus={autofocus}\n required={required}\n disabled={disabled || readonly}\n {...semanticProps}\n value={value || ''}\n error={rawErrors.length > 0}\n rows={options.rows || 5}\n onChange={_onChange}\n onBlur={_onBlur}\n onFocus={_onFocus}\n aria-describedby={ariaDescribedByIds(id)}\n />\n );\n}\n", "import { FormContextType, RegistryWidgetsType, RJSFSchema, StrictRJSFSchema } from '@rjsf/utils';\n\nimport CheckboxWidget from '../CheckboxWidget/CheckboxWidget';\nimport CheckboxesWidget from '../CheckboxesWidget/CheckboxesWidget';\nimport RadioWidget from '../RadioWidget/RadioWidget';\nimport RangeWidget from '../RangeWidget/RangeWidget';\nimport SelectWidget from '../SelectWidget/SelectWidget';\nimport TextareaWidget from '../TextareaWidget/TextareaWidget';\n\nexport function generateWidgets<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(): RegistryWidgetsType<T, S, F> {\n return {\n CheckboxWidget,\n CheckboxesWidget,\n RadioWidget,\n RangeWidget,\n SelectWidget,\n TextareaWidget,\n };\n}\n\nexport default generateWidgets();\n"],
5
- "mappings": "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",
6
- "names": ["import_core", "import_semantic_ui_react", "import_utils", "import_semantic_ui_react", "import_utils", "import_jsx_runtime", "import_jsx_runtime", "import_utils", "import_jsx_runtime", "ArrayFieldItemTemplate", "AddButton", "props", "import_semantic_ui_react", "import_utils", "import_jsx_runtime", "value", "import_jsx_runtime", "import_semantic_ui_react", "import_utils", "import_jsx_runtime", "import_semantic_ui_react", "import_utils", "import_jsx_runtime", "import_utils", "import_semantic_ui_react", "import_jsx_runtime", "uniqueId", "import_semantic_ui_react", "import_utils", "import_jsx_runtime", "import_utils", "import_semantic_ui_react", "import_jsx_runtime", "WrapIfAdditionalTemplate", "import_semantic_ui_react", "import_jsx_runtime", "import_jsx_runtime", "import_semantic_ui_react", "import_utils", "import_jsx_runtime", "AddButton", "import_jsx_runtime", "import_semantic_ui_react", "import_utils", "import_jsx_runtime", "import_semantic_ui_react", "import_jsx_runtime", "DEFAULT_OPTIONS", "import_utils", "import_semantic_ui_react", "import_jsx_runtime", "RemoveButton", "import_utils", "import_semantic_ui_react", "import_jsx_runtime", "import_semantic_ui_react", "import_utils", "import_jsx_runtime", "import_utils", "import_semantic_ui_react", "import_jsx_runtime", "import_semantic_ui_react", "import_utils", "import_jsx_runtime", "value", "import_utils", "import_semantic_ui_react", "import_jsx_runtime", "map", "value", "import_utils", "import_semantic_ui_react", "import_jsx_runtime", "value", "SuiForm"]
4
+ "sourcesContent": ["/**\n * @deprecated - This theme will be deleted in a future release of RJSF once we upgrade to React 19\n */\nimport SemanticUIForm from './SemanticUIForm/SemanticUIForm';\n\nexport { default as Templates, generateTemplates } from './Templates';\nexport { default as Form, generateForm } from './SemanticUIForm';\nexport { default as Theme, generateTheme } from './Theme';\nexport { default as Widgets, generateWidgets } from './Widgets';\n\nexport default SemanticUIForm;\n", "import { ComponentType } from 'react';\nimport { withTheme, FormProps } from '@rjsf/core';\nimport { FormContextType, RJSFSchema, StrictRJSFSchema } from '@rjsf/utils';\n\nimport { generateTheme } from '../Theme';\n\nexport function generateForm<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(): ComponentType<FormProps<T, S, F>> {\n return withTheme<T, S, F>(generateTheme<T, S, F>());\n}\n\nexport default generateForm();\n", "import { FormContextType, RJSFSchema, StrictRJSFSchema } from '@rjsf/utils';\nimport { ThemeProps } from '@rjsf/core';\nimport { Form as SuiForm } from 'semantic-ui-react';\n\nimport { generateTemplates } from '../Templates';\nimport { generateWidgets } from '../Widgets';\n\nexport function generateTheme<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(): ThemeProps<T, S, F> {\n return {\n templates: generateTemplates<T, S, F>(),\n widgets: generateWidgets<T, S, F>(),\n _internalFormWrapper: SuiForm,\n };\n}\n\nexport default generateTheme();\n", "import { Button, Icon, ButtonProps } from 'semantic-ui-react';\nimport { FormContextType, RJSFSchema, StrictRJSFSchema, TranslatableString } from '@rjsf/utils';\n\nimport { SemanticIconButtonProps } from '../IconButton';\n\n/** The `AddButton` renders a button that represent the `Add` action on a form\n */\nexport default function AddButton<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>({\n uiSchema,\n registry,\n color,\n ...props\n}: SemanticIconButtonProps<T, S, F>) {\n const { translateString } = registry;\n return (\n <Button\n title={translateString(TranslatableString.AddItemButton)}\n color={color as ButtonProps['color']}\n size='tiny'\n {...props}\n icon\n >\n <Icon name='plus' />\n </Button>\n );\n}\n", "import {\n ArrayFieldItemTemplateProps,\n FormContextType,\n RJSFSchema,\n StrictRJSFSchema,\n getUiOptions,\n getTemplate,\n} from '@rjsf/utils';\nimport { Button, Grid, Segment } from 'semantic-ui-react';\n\nimport { getSemanticProps, MaybeWrap } from '../util';\n\nconst gridStyle = (vertical: boolean) => ({\n display: 'grid',\n gridTemplateColumns: `1fr ${vertical ? 65 : 150}px`,\n});\n\n/** The `ArrayFieldItemTemplate` component is the template used to render an items of an array.\n *\n * @param props - The `ArrayFieldItemTemplateProps` props for the component\n */\nexport default function ArrayFieldItemTemplate<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(props: ArrayFieldItemTemplateProps<T, S, F>) {\n const { children, buttonsProps, hasToolbar, uiSchema, registry, parentUiSchema } = props;\n const uiOptions = getUiOptions<T, S, F>(uiSchema);\n const ArrayFieldItemButtonsTemplate = getTemplate<'ArrayFieldItemButtonsTemplate', T, S, F>(\n 'ArrayFieldItemButtonsTemplate',\n registry,\n uiOptions,\n );\n const semanticProps = getSemanticProps<T, S, F>({\n uiSchema: parentUiSchema,\n formContext: registry.formContext,\n defaultSchemaProps: { horizontalButtons: true, wrapItem: false },\n });\n const { horizontalButtons = true, wrapItem = false } = semanticProps;\n return (\n <div className='rjsf-array-item'>\n <MaybeWrap wrap={wrapItem} component={Segment}>\n <Grid style={{ ...gridStyle(!horizontalButtons), alignItems: 'center' }}>\n <Grid.Column width={16} verticalAlign='middle'>\n {children}\n </Grid.Column>\n {hasToolbar && (\n <Grid.Column>\n <Button.Group size='mini' vertical={!horizontalButtons}>\n <ArrayFieldItemButtonsTemplate {...buttonsProps} />\n </Button.Group>\n </Grid.Column>\n )}\n </Grid>\n </MaybeWrap>\n </div>\n );\n}\n", "import { ElementType } from 'react';\nimport {\n UiSchema,\n GenericObjectType,\n getUiOptions,\n FormContextType,\n RJSFSchema,\n StrictRJSFSchema,\n UIOptionsType,\n} from '@rjsf/utils';\n\nexport type SemanticPropsTypes<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any> = {\n formContext?: F;\n uiSchema?: UiSchema<T, S, F>;\n options?: UIOptionsType<T, S, F>;\n defaultSchemaProps?: GenericObjectType;\n defaultContextProps?: GenericObjectType;\n};\n\nexport type SemanticErrorPropsType<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n> = {\n formContext?: F;\n uiSchema?: UiSchema<T, S, F>;\n options?: UIOptionsType<T, S, F>;\n defaultProps?: GenericObjectType;\n};\n\nexport type WrapProps = GenericObjectType & {\n wrap: boolean;\n component?: ElementType;\n};\n\n/**\n * Extract props meant for semantic UI components from props that are\n * passed to Widgets, Templates and Fields.\n * @param {Object} params\n * @param {Object?} params.formContext\n * @param {Object?} params.uiSchema\n * @param {Object?} params.options\n * @param {Object?} params.defaultSchemaProps\n * @param {Object?} params.defaultContextProps\n * @returns {any}\n */\nexport function getSemanticProps<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>({\n formContext = {} as F,\n uiSchema = {},\n options = {},\n defaultSchemaProps = { fluid: true, inverted: false },\n defaultContextProps = {},\n}: SemanticPropsTypes<T, S, F>) {\n const formContextProps = formContext.semantic;\n const schemaProps = getUiOptions<T, S, F>(uiSchema).semantic;\n const optionProps = options.semantic;\n // formContext props should overide other props\n return Object.assign(\n {},\n { ...defaultSchemaProps },\n { ...defaultContextProps },\n schemaProps,\n optionProps,\n formContextProps,\n );\n}\n\n/**\n * Extract error props meant for semantic UI components from props that are\n * passed to Widgets, Templates and Fields.\n * @param {Object} params\n * @param {Object?} params.formContext\n * @param {Object?} params.uiSchema\n * @param {Object?} params.defaultProps\n * @returns {any}\n */\nexport function getSemanticErrorProps<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>({\n formContext = {} as F,\n uiSchema = {},\n options = {},\n defaultProps = { size: 'small', pointing: 'above' },\n}: SemanticErrorPropsType<T, S, F>) {\n const formContextProps = formContext.semantic && formContext.semantic.errorOptions;\n const semanticOptions: GenericObjectType = getUiOptions<T, S, F>(uiSchema).semantic as GenericObjectType;\n const schemaProps = semanticOptions && semanticOptions.errorOptions;\n const optionProps = options.semantic && (options.semantic as GenericObjectType).errorOptions;\n\n return Object.assign({}, { ...defaultProps }, schemaProps, optionProps, formContextProps);\n}\n\n/**\n * Combine multiple strings containing class names into a single string,\n * removing duplicates. E.g.\n * cleanClassNames('bar', 'baz bar', 'x y ', undefined)\n * // 'bar baz x y'\n * @param {Array} classNameArr\n * @param {Array} omit\n * @returns {string}\n */\nexport function cleanClassNames(classNameArr: Array<string | undefined>, omit: string[] = []) {\n // Split each arg on whitespace, and add it to an array. Skip false-y args\n // like \"\" and undefined.\n const classList = classNameArr\n .filter(Boolean)\n .reduce<string[]>((previous, current) => previous.concat(current!.trim().split(/\\s+/)), []);\n\n // Remove any class names from omit, and make the rest unique before\n // returning them as a string\n return [...new Set(classList.filter((cn) => !omit.includes(cn)))].join(' ');\n}\n\n/**\n *\n * @param {boolean} wrap\n * @param Component\n * @param {Object} props\n * @returns {*}\n * @constructor\n */\nexport function MaybeWrap({ wrap, component: Component = 'div', ...props }: WrapProps) {\n return wrap ? <Component {...props} /> : props.children;\n}\n", "import {\n getTemplate,\n getUiOptions,\n isFixedItems,\n ArrayFieldTemplateProps,\n FormContextType,\n RJSFSchema,\n StrictRJSFSchema,\n buttonId,\n} from '@rjsf/utils';\n\nimport { cleanClassNames } from '../util';\n\n/** The `ArrayFieldTemplate` component is the template used to render all items in an array.\n *\n * @param props - The `ArrayFieldTemplateProps` props for the component\n */\nexport default function ArrayFieldTemplate<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(props: ArrayFieldTemplateProps<T, S, F>) {\n const {\n uiSchema,\n fieldPathId,\n canAdd,\n className,\n // classNames, This is not part of the type, so it is likely never passed in\n disabled,\n items,\n optionalDataControl,\n onAddClick,\n // options, This is not part of the type, so it is likely never passed in\n readonly,\n required,\n schema,\n title,\n registry,\n } = props;\n const uiOptions = getUiOptions<T, S, F>(uiSchema);\n const ArrayFieldDescriptionTemplate = getTemplate<'ArrayFieldDescriptionTemplate', T, S, F>(\n 'ArrayFieldDescriptionTemplate',\n registry,\n uiOptions,\n );\n const ArrayFieldTitleTemplate = getTemplate<'ArrayFieldTitleTemplate', T, S, F>(\n 'ArrayFieldTitleTemplate',\n registry,\n uiOptions,\n );\n const showOptionalDataControlInTitle = !readonly && !disabled;\n // Button templates are not overridden in the uiSchema\n const {\n ButtonTemplates: { AddButton },\n } = registry.templates;\n return (\n <div className={cleanClassNames([className, isFixedItems<S>(schema) ? '' : 'sortable-form-fields'])}>\n <ArrayFieldTitleTemplate\n fieldPathId={fieldPathId}\n title={uiOptions.title || title}\n schema={schema}\n uiSchema={uiSchema}\n required={required}\n registry={registry}\n optionalDataControl={showOptionalDataControlInTitle ? optionalDataControl : undefined}\n />\n <ArrayFieldDescriptionTemplate\n fieldPathId={fieldPathId}\n description={uiOptions.description || schema.description}\n schema={schema}\n uiSchema={uiSchema}\n registry={registry}\n />\n <div key={`array-item-list-${fieldPathId.$id}`}>\n <div className='row array-item-list'>\n {!showOptionalDataControlInTitle ? optionalDataControl : undefined}\n {items}\n </div>\n {canAdd && (\n <div\n style={{\n marginTop: '1rem',\n position: 'relative',\n textAlign: 'right',\n }}\n >\n <AddButton\n id={buttonId(fieldPathId, 'add')}\n className='rjsf-array-item-add'\n onClick={onAddClick}\n disabled={disabled || readonly}\n uiSchema={uiSchema}\n registry={registry}\n />\n </div>\n )}\n </div>\n </div>\n );\n}\n", "import { ChangeEvent } from 'react';\nimport { Form } from 'semantic-ui-react';\nimport { getSemanticProps } from '../util';\nimport {\n ariaDescribedByIds,\n BaseInputTemplateProps,\n examplesId,\n getInputProps,\n labelValue,\n FormContextType,\n RJSFSchema,\n StrictRJSFSchema,\n} from '@rjsf/utils';\n\n/** The `BaseInputTemplate` is the template to use to render the basic `<input>` component for the `core` theme.\n * It is used as the template for rendering many of the <input> based widgets that differ by `type` and callbacks only.\n * It can be customized/overridden for other themes or individual implementations as needed.\n *\n * @param props - The `WidgetProps` for this template\n */\nexport default function BaseInputTemplate<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(props: BaseInputTemplateProps<T, S, F>) {\n const {\n id,\n htmlName,\n placeholder,\n label,\n hideLabel,\n value,\n required,\n readonly,\n disabled,\n onChange,\n onChangeOverride,\n onBlur,\n onFocus,\n autofocus,\n options,\n schema,\n uiSchema,\n registry,\n type,\n rawErrors = [],\n } = props;\n const inputProps = getInputProps<T, S, F>(schema, type, options);\n const semanticProps = getSemanticProps<T, S, F>({\n uiSchema,\n formContext: registry.formContext,\n options,\n });\n const _onChange = ({ target: { value } }: ChangeEvent<HTMLInputElement>) =>\n onChange(value === '' ? options.emptyValue : value);\n const _onBlur = () => onBlur && onBlur(id, value);\n const _onFocus = () => onFocus && onFocus(id, value);\n\n return (\n <>\n <Form.Input\n key={id}\n id={id}\n name={htmlName || id}\n placeholder={placeholder}\n {...inputProps}\n label={labelValue(label || undefined, hideLabel, false)}\n required={required}\n autoFocus={autofocus}\n disabled={disabled || readonly}\n list={schema.examples ? examplesId(id) : undefined}\n {...semanticProps}\n value={value || value === 0 ? value : ''}\n error={rawErrors.length > 0}\n onChange={onChangeOverride || _onChange}\n onBlur={_onBlur}\n onFocus={_onFocus}\n aria-describedby={ariaDescribedByIds(id, !!schema.examples)}\n />\n {Array.isArray(schema.examples) && (\n <datalist id={examplesId(id)}>\n {(schema.examples as string[])\n .concat(schema.default && !schema.examples.includes(schema.default) ? ([schema.default] as string[]) : [])\n .map((example) => {\n return <option key={example} value={example} />;\n })}\n </datalist>\n )}\n </>\n );\n}\n", "import { DescriptionFieldProps, FormContextType, RJSFSchema, StrictRJSFSchema } from '@rjsf/utils';\nimport { RichDescription } from '@rjsf/core';\n\n/** The `DescriptionField` is the template to use to render the description of a field\n *\n * @param props - The `DescriptionFieldProps` for this component\n */\nexport default function DescriptionField<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(props: DescriptionFieldProps<T, S, F>) {\n const { id, description, registry, uiSchema } = props;\n if (!description) {\n return null;\n }\n return (\n <p id={id} className='sui-description'>\n <RichDescription description={description} registry={registry} uiSchema={uiSchema} />\n </p>\n );\n}\n", "import { Message } from 'semantic-ui-react';\nimport { ErrorListProps, FormContextType, RJSFSchema, StrictRJSFSchema, TranslatableString } from '@rjsf/utils';\n\n/** The `ErrorList` component is the template that renders the all the errors associated with the fields in the `Form`\n *\n * @param props - The `ErrorListProps` for this component\n */\nexport default function ErrorList<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>({\n errors,\n registry,\n}: ErrorListProps<T, S, F>) {\n const { translateString } = registry;\n return (\n <Message negative>\n <Message.Header>{translateString(TranslatableString.ErrorsLabel)}</Message.Header>\n <Message.List>\n {errors.map((error, index) => (\n <Message.Item key={`error-${index}`}>{error.stack}</Message.Item>\n ))}\n </Message.List>\n </Message>\n );\n}\n", "import { Button, ButtonProps } from 'semantic-ui-react';\nimport { FormContextType, IconButtonProps, RJSFSchema, StrictRJSFSchema, TranslatableString } from '@rjsf/utils';\n\nexport type SemanticIconButtonProps<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n> = IconButtonProps<T, S, F> & Omit<ButtonProps, 'onChange'>;\n\nexport default function IconButton<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>(\n props: SemanticIconButtonProps<T, S, F>,\n) {\n const { icon, iconType, color, className, uiSchema, registry, ...otherProps } = props;\n return (\n <Button\n icon={icon}\n size={iconType as ButtonProps['size']}\n color={color as ButtonProps['color']}\n className={className}\n {...otherProps}\n />\n );\n}\n\nexport function CopyButton<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>(\n props: SemanticIconButtonProps<T, S, F>,\n) {\n const {\n registry: { translateString },\n } = props;\n return <IconButton title={translateString(TranslatableString.CopyButton)} {...props} icon='copy' />;\n}\n\nexport function MoveDownButton<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>(\n props: SemanticIconButtonProps<T, S, F>,\n) {\n const {\n registry: { translateString },\n } = props;\n return <IconButton title={translateString(TranslatableString.MoveDownButton)} {...props} icon='angle down' />;\n}\n\nexport function MoveUpButton<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>(\n props: SemanticIconButtonProps<T, S, F>,\n) {\n const {\n registry: { translateString },\n } = props;\n return <IconButton title={translateString(TranslatableString.MoveUpButton)} {...props} icon='angle up' />;\n}\n\nexport function RemoveButton<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>(\n props: SemanticIconButtonProps<T, S, F>,\n) {\n const {\n registry: { translateString },\n } = props;\n return <IconButton title={translateString(TranslatableString.RemoveButton)} {...props} icon='trash' />;\n}\n", "import { errorId, FieldErrorProps, FormContextType, RJSFSchema, StrictRJSFSchema } from '@rjsf/utils';\nimport uniqueId from 'lodash/uniqueId';\nimport { Label, List } from 'semantic-ui-react';\n\nimport { getSemanticErrorProps } from '../util';\n\nconst DEFAULT_OPTIONS = {\n options: {\n pointing: 'above',\n size: 'small',\n },\n};\n\n/** The `FieldErrorTemplate` component renders the errors local to the particular field\n *\n * @param props - The `FieldErrorProps` for the errors being rendered\n */\nexport default function FieldErrorTemplate<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>({ errors, fieldPathId, uiSchema, registry }: FieldErrorProps<T, S, F>) {\n const { formContext } = registry;\n const options = getSemanticErrorProps<T, S, F>({\n formContext,\n uiSchema,\n defaultProps: DEFAULT_OPTIONS,\n });\n const { pointing, size } = options;\n if (errors && errors.length > 0) {\n const id = errorId(fieldPathId);\n return (\n <Label id={id} color='red' pointing={pointing || 'above'} size={size || 'small'} basic>\n <List bulleted>\n {errors.map((error) => (\n <List.Item key={uniqueId('field-error-')}>{error}</List.Item>\n ))}\n </List>\n </Label>\n );\n }\n return null;\n}\n", "import { Message } from 'semantic-ui-react';\nimport { FieldHelpProps, FormContextType, RJSFSchema, StrictRJSFSchema, helpId } from '@rjsf/utils';\n\n/** The `FieldHelpTemplate` component renders any help desired for a field\n *\n * @param props - The `FieldHelpProps` to be rendered\n */\nexport default function FieldHelpTemplate<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(props: FieldHelpProps<T, S, F>) {\n const { fieldPathId, help } = props;\n if (help) {\n const id = helpId(fieldPathId);\n return <Message size='mini' info id={id} content={help} />;\n }\n return null;\n}\n", "import {\n FieldTemplateProps,\n FormContextType,\n RJSFSchema,\n StrictRJSFSchema,\n getTemplate,\n getUiOptions,\n} from '@rjsf/utils';\nimport { Form } from 'semantic-ui-react';\nimport { getSemanticProps, MaybeWrap } from '../util';\n\n/** The `FieldTemplate` component is the template used by `SchemaField` to render any field. It renders the field\n * content, (label, description, children, errors and help) inside of a `WrapIfAdditional` component.\n *\n * @param props - The `FieldTemplateProps` for this component\n */\nexport default function FieldTemplate<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(props: FieldTemplateProps<T, S, F>) {\n const {\n id,\n children,\n classNames,\n style,\n displayLabel,\n label,\n errors,\n help,\n hidden,\n description,\n rawDescription,\n registry,\n schema,\n uiSchema,\n ...otherProps\n } = props;\n const semanticProps = getSemanticProps<T, S, F>({\n ...otherProps,\n formContext: registry.formContext,\n });\n const { wrapLabel, wrapContent } = semanticProps;\n const uiOptions = getUiOptions<T, S, F>(uiSchema);\n const WrapIfAdditionalTemplate = getTemplate<'WrapIfAdditionalTemplate', T, S, F>(\n 'WrapIfAdditionalTemplate',\n registry,\n uiOptions,\n );\n\n if (hidden) {\n return <div style={{ display: 'none' }}>{children}</div>;\n }\n\n return (\n <WrapIfAdditionalTemplate\n classNames={classNames}\n style={style}\n id={id}\n label={label}\n registry={registry}\n schema={schema}\n uiSchema={uiSchema}\n {...otherProps}\n >\n <Form.Group key={id} widths='equal' grouped>\n <MaybeWrap wrap={wrapContent} className='sui-field-content'>\n {children}\n {displayLabel && rawDescription && (\n <MaybeWrap wrap={wrapLabel} className='sui-field-label'>\n {description}\n </MaybeWrap>\n )}\n {help}\n {errors}\n </MaybeWrap>\n </Form.Group>\n </WrapIfAdditionalTemplate>\n );\n}\n", "import { Grid } from 'semantic-ui-react';\nimport { GridTemplateProps } from '@rjsf/utils';\n\n/** Renders a `GridTemplate` for semantic-ui, which is expecting the column sizing information coming in via the\n * extra props provided by the caller, which are spread directly on the `Flex`.\n *\n * @param props - The GridTemplateProps, including the extra props containing the semantic-ui grid positioning details\n */\nexport default function GridTemplate(props: GridTemplateProps) {\n const { children, column, ...rest } = props;\n if (column) {\n return <Grid.Column {...rest}>{children}</Grid.Column>;\n }\n return <Grid {...rest}>{children}</Grid>;\n}\n", "import { FormContextType, MultiSchemaFieldTemplateProps, RJSFSchema, StrictRJSFSchema } from '@rjsf/utils';\n\nexport default function MultiSchemaFieldTemplate<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(props: MultiSchemaFieldTemplateProps<T, S, F>) {\n const { selector, optionSchemaField } = props;\n\n return (\n <div>\n <div>{selector}</div>\n {optionSchemaField}\n </div>\n );\n}\n", "import { Grid } from 'semantic-ui-react';\nimport {\n FormContextType,\n ObjectFieldTemplateProps,\n RJSFSchema,\n StrictRJSFSchema,\n canExpand,\n descriptionId,\n getTemplate,\n getUiOptions,\n titleId,\n buttonId,\n} from '@rjsf/utils';\n\n/** The `ObjectFieldTemplate` is the template to use to render all the inner properties of an object along with the\n * title and description if available. If the object is expandable, then an `AddButton` is also rendered after all\n * the properties.\n *\n * @param props - The `ObjectFieldTemplateProps` for this component\n */\nexport default function ObjectFieldTemplate<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(props: ObjectFieldTemplateProps<T, S, F>) {\n const {\n description,\n optionalDataControl,\n onAddProperty,\n title,\n properties,\n disabled,\n readonly,\n required,\n uiSchema,\n schema,\n formData,\n fieldPathId,\n registry,\n } = props;\n const uiOptions = getUiOptions<T, S, F>(uiSchema);\n const TitleFieldTemplate = getTemplate<'TitleFieldTemplate', T, S, F>('TitleFieldTemplate', registry, uiOptions);\n const DescriptionFieldTemplate = getTemplate<'DescriptionFieldTemplate', T, S, F>(\n 'DescriptionFieldTemplate',\n registry,\n uiOptions,\n );\n const showOptionalDataControlInTitle = !readonly && !disabled;\n // Button templates are not overridden in the uiSchema\n const {\n ButtonTemplates: { AddButton },\n } = registry.templates;\n return (\n <>\n {title && (\n <TitleFieldTemplate\n id={titleId(fieldPathId)}\n title={title}\n required={required}\n schema={schema}\n uiSchema={uiSchema}\n registry={registry}\n optionalDataControl={showOptionalDataControlInTitle ? optionalDataControl : undefined}\n />\n )}\n {description && (\n <DescriptionFieldTemplate\n id={descriptionId(fieldPathId)}\n description={description}\n schema={schema}\n uiSchema={uiSchema}\n registry={registry}\n />\n )}\n {!showOptionalDataControlInTitle ? optionalDataControl : undefined}\n {properties.map((prop) => prop.content)}\n {canExpand<T, S, F>(schema, uiSchema, formData) && (\n <Grid.Column width={16} verticalAlign='middle'>\n <Grid.Row>\n <div\n style={{\n marginTop: '1rem',\n position: 'relative',\n textAlign: 'right',\n }}\n >\n <AddButton\n id={buttonId(fieldPathId, 'add')}\n className='rjsf-object-property-expand'\n onClick={onAddProperty}\n disabled={disabled || readonly}\n uiSchema={uiSchema}\n registry={registry}\n />\n </div>\n </Grid.Row>\n </Grid.Column>\n )}\n </>\n );\n}\n", "import { FormContextType, OptionalDataControlsTemplateProps, RJSFSchema, StrictRJSFSchema } from '@rjsf/utils';\n\nimport { RemoveButton } from '../IconButton';\nimport AddButton from '../AddButton';\n\n/** The OptionalDataControlsTemplate renders one of three different states. If\n * there is an `onAddClick()` function, it renders the \"Add\" button. If there is\n * an `onRemoveClick()` function, it renders the \"Remove\" button. Otherwise it\n * renders the \"No data found\" section. All of them use the `label` as either\n * the `title` of buttons or simply outputting it.\n *\n * @param props - The `OptionalDataControlsTemplateProps` for the template\n */\nexport default function OptionalDataControlsTemplate<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(props: OptionalDataControlsTemplateProps<T, S, F>) {\n const { id, registry, label, onAddClick, onRemoveClick } = props;\n if (onAddClick) {\n return (\n <AddButton\n id={id}\n registry={registry}\n className='rjsf-add-optional-data'\n onClick={onAddClick}\n title={label}\n size='mini'\n />\n );\n } else if (onRemoveClick) {\n return (\n <RemoveButton\n id={id}\n registry={registry}\n className='rjsf-remove-optional-data'\n onClick={onRemoveClick}\n title={label}\n size='mini'\n />\n );\n }\n return <em id={id}>{label}</em>;\n}\n", "import { Button } from 'semantic-ui-react';\nimport { getSubmitButtonOptions, FormContextType, RJSFSchema, StrictRJSFSchema, SubmitButtonProps } from '@rjsf/utils';\n\n/** The `SubmitButton` renders a button that represent the `Submit` action on a form\n */\nexport default function SubmitButton<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>({ uiSchema }: SubmitButtonProps<T, S, F>) {\n const { submitText, norender, props: submitButtonProps = {} } = getSubmitButtonOptions<T, S, F>(uiSchema);\n if (norender) {\n return null;\n }\n return (\n <Button type='submit' primary {...submitButtonProps}>\n {submitText}\n </Button>\n );\n}\n", "import { FormContextType, TitleFieldProps, RJSFSchema, StrictRJSFSchema } from '@rjsf/utils';\nimport { Grid, Header } from 'semantic-ui-react';\n\nimport { getSemanticProps } from '../util';\n\nconst DEFAULT_OPTIONS = {\n inverted: false,\n dividing: true,\n};\n\n/** The `TitleField` is the template to use to render the title of a field\n *\n * @param props - The `TitleFieldProps` for this component\n */\nexport default function TitleField<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>({\n id,\n title,\n uiSchema,\n optionalDataControl,\n}: TitleFieldProps<T, S, F>) {\n const semanticProps = getSemanticProps<T, S, F>({\n uiSchema,\n defaultSchemaProps: DEFAULT_OPTIONS,\n });\n let heading = title ? (\n <Header id={id} {...semanticProps} as='h5'>\n {title}\n </Header>\n ) : null;\n if (optionalDataControl) {\n heading = (\n <Grid colums={2} relaxed>\n <Grid.Column width={14} style={{ paddingRight: 0 }}>\n {heading}\n </Grid.Column>\n <Grid.Column width={2}>{optionalDataControl}</Grid.Column>\n </Grid>\n );\n }\n\n return heading;\n}\n", "import {\n ADDITIONAL_PROPERTY_FLAG,\n buttonId,\n FormContextType,\n RJSFSchema,\n StrictRJSFSchema,\n TranslatableString,\n WrapIfAdditionalTemplateProps,\n} from '@rjsf/utils';\nimport { Form, Grid } from 'semantic-ui-react';\n\n/** The `WrapIfAdditional` component is used by the `FieldTemplate` to rename, or remove properties that are\n * part of an `additionalProperties` part of a schema.\n *\n * @param props - The `WrapIfAdditionalProps` for this component\n */\nexport default function WrapIfAdditionalTemplate<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(props: WrapIfAdditionalTemplateProps<T, S, F>) {\n const {\n children,\n classNames,\n style,\n disabled,\n id,\n label,\n onKeyRenameBlur,\n onRemoveProperty,\n readonly,\n required,\n schema,\n uiSchema,\n registry,\n } = props;\n const { templates, translateString } = registry;\n // Button templates are not overridden in the uiSchema\n const { RemoveButton } = templates.ButtonTemplates;\n const keyLabel = translateString(TranslatableString.KeyLabel, [label]);\n const { readonlyAsDisabled = true, wrapperStyle } = registry.formContext;\n\n const additional = ADDITIONAL_PROPERTY_FLAG in schema;\n\n if (!additional) {\n return (\n <div className={classNames} style={style}>\n {children}\n </div>\n );\n }\n\n return (\n <div className={classNames} style={style} key={`${id}-key`}>\n <Grid columns='equal'>\n <Grid.Row>\n <Grid.Column className='form-additional'>\n <Form.Group widths='equal' grouped>\n <Form.Input\n className='form-group'\n hasFeedback\n fluid\n htmlFor={`${id}`}\n label={keyLabel}\n required={required}\n defaultValue={label}\n disabled={disabled || (readonlyAsDisabled && readonly)}\n id={`${id}`}\n name={`${id}`}\n onBlur={!readonly ? onKeyRenameBlur : undefined}\n style={wrapperStyle}\n type='text'\n ></Form.Input>\n </Form.Group>\n </Grid.Column>\n <Grid.Column className='form-additional' verticalAlign='middle'>\n {children}\n </Grid.Column>\n <Grid.Column>\n <RemoveButton\n id={buttonId(id, 'remove')}\n iconType='mini'\n className='rjsf-object-property-remove'\n disabled={disabled || readonly}\n onClick={onRemoveProperty}\n uiSchema={uiSchema}\n registry={registry}\n />\n </Grid.Column>\n </Grid.Row>\n </Grid>\n </div>\n );\n}\n", "import { FormContextType, RJSFSchema, StrictRJSFSchema, TemplatesType } from '@rjsf/utils';\n\nimport AddButton from '../AddButton';\nimport ArrayFieldItemTemplate from '../ArrayFieldItemTemplate';\nimport ArrayFieldTemplate from '../ArrayFieldTemplate';\nimport BaseInputTemplate from '../BaseInputTemplate';\nimport DescriptionField from '../DescriptionField';\nimport ErrorList from '../ErrorList';\nimport { CopyButton, MoveDownButton, MoveUpButton, RemoveButton } from '../IconButton';\nimport FieldErrorTemplate from '../FieldErrorTemplate';\nimport FieldHelpTemplate from '../FieldHelpTemplate';\nimport FieldTemplate from '../FieldTemplate';\nimport GridTemplate from '../GridTemplate';\nimport MultiSchemaFieldTemplate from '../MultiSchemaFieldTemplate';\nimport ObjectFieldTemplate from '../ObjectFieldTemplate';\nimport OptionalDataControlsTemplate from '../OptionalDataControlsTemplate';\nimport SubmitButton from '../SubmitButton';\nimport TitleField from '../TitleField';\nimport WrapIfAdditionalTemplate from '../WrapIfAdditionalTemplate';\n\nexport function generateTemplates<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(): Partial<TemplatesType<T, S, F>> {\n return {\n ArrayFieldItemTemplate,\n ArrayFieldTemplate,\n BaseInputTemplate,\n ButtonTemplates: {\n AddButton,\n CopyButton,\n MoveDownButton,\n MoveUpButton,\n RemoveButton,\n SubmitButton,\n },\n DescriptionFieldTemplate: DescriptionField,\n ErrorListTemplate: ErrorList,\n FieldErrorTemplate,\n FieldHelpTemplate,\n FieldTemplate,\n GridTemplate,\n MultiSchemaFieldTemplate,\n ObjectFieldTemplate,\n OptionalDataControlsTemplate,\n TitleFieldTemplate: TitleField,\n WrapIfAdditionalTemplate,\n };\n}\n\nexport default generateTemplates();\n", "import { FormEvent } from 'react';\nimport {\n ariaDescribedByIds,\n descriptionId,\n getTemplate,\n labelValue,\n schemaRequiresTrueValue,\n FormContextType,\n RJSFSchema,\n StrictRJSFSchema,\n WidgetProps,\n} from '@rjsf/utils';\nimport { Form, CheckboxProps } from 'semantic-ui-react';\nimport { getSemanticProps } from '../util';\n\n/** The `CheckBoxWidget` is a widget for rendering boolean properties.\n * It is typically used to represent a boolean.\n *\n * @param props - The `WidgetProps` for this component\n */\nexport default function CheckboxWidget<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(props: WidgetProps<T, S, F>) {\n const {\n id,\n htmlName,\n value,\n disabled,\n readonly,\n label = '',\n hideLabel,\n autofocus,\n onChange,\n onBlur,\n options,\n onFocus,\n schema,\n uiSchema,\n rawErrors = [],\n registry,\n } = props;\n const semanticProps = getSemanticProps<T, S, F>({\n options,\n formContext: registry.formContext,\n uiSchema,\n defaultSchemaProps: {\n inverted: 'false',\n },\n });\n const DescriptionFieldTemplate = getTemplate<'DescriptionFieldTemplate', T, S, F>(\n 'DescriptionFieldTemplate',\n registry,\n options,\n );\n // Because an unchecked checkbox will cause html5 validation to fail, only add\n // the \"required\" attribute if the field value must be \"true\", due to the\n // \"const\" or \"enum\" keywords\n const required = schemaRequiresTrueValue<S>(schema);\n const checked = value == 'true' || value == true;\n const _onChange = (_: FormEvent<HTMLInputElement>, data: CheckboxProps) => onChange && onChange(data.checked);\n const _onBlur: React.FocusEventHandler<HTMLInputElement> = () => onBlur && onBlur(id, value);\n const _onFocus: React.FocusEventHandler<HTMLInputElement> = () => onFocus && onFocus(id, value);\n const description = options.description ?? schema.description;\n\n return (\n <>\n {!hideLabel && description && (\n <DescriptionFieldTemplate\n id={descriptionId(id)}\n description={description}\n schema={schema}\n uiSchema={uiSchema}\n registry={registry}\n />\n )}\n <Form.Checkbox\n id={id}\n name={htmlName || id}\n disabled={disabled || readonly}\n autoFocus={autofocus}\n {...semanticProps}\n checked={typeof value === 'undefined' ? false : checked}\n error={rawErrors.length > 0}\n onChange={_onChange}\n onBlur={_onBlur}\n onFocus={_onFocus}\n required={required}\n label={labelValue(label, hideLabel, false)}\n aria-describedby={ariaDescribedByIds(id)}\n />\n </>\n );\n}\n", "import { ChangeEvent } from 'react';\nimport { Form } from 'semantic-ui-react';\nimport {\n ariaDescribedByIds,\n enumOptionsDeselectValue,\n enumOptionsIsSelected,\n enumOptionsSelectValue,\n getTemplate,\n optionId,\n titleId,\n FormContextType,\n RJSFSchema,\n StrictRJSFSchema,\n WidgetProps,\n} from '@rjsf/utils';\nimport { getSemanticProps } from '../util';\n\n/** The `CheckboxesWidget` is a widget for rendering checkbox groups.\n * It is typically used to represent an array of enums.\n *\n * @param props - The `WidgetProps` for this component\n */\nexport default function CheckboxesWidget<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(props: WidgetProps<T, S, F>) {\n const {\n id,\n htmlName,\n disabled,\n options,\n value,\n autofocus,\n readonly,\n label,\n hideLabel,\n onChange,\n onBlur,\n onFocus,\n schema,\n uiSchema,\n rawErrors = [],\n registry,\n } = props;\n const TitleFieldTemplate = getTemplate<'TitleFieldTemplate', T, S, F>('TitleFieldTemplate', registry, options);\n const { enumOptions, enumDisabled, inline } = options;\n const checkboxesValues = Array.isArray(value) ? value : [value];\n const semanticProps = getSemanticProps<T, S, F>({\n options,\n formContext: registry.formContext,\n uiSchema,\n defaultSchemaProps: {\n inverted: 'false',\n },\n });\n const _onChange =\n (index: number) =>\n ({ target: { checked } }: ChangeEvent<HTMLInputElement>) => {\n // eslint-disable-next-line no-shadow\n if (checked) {\n onChange(enumOptionsSelectValue<S>(index, checkboxesValues, enumOptions));\n } else {\n onChange(enumOptionsDeselectValue<S>(index, checkboxesValues, enumOptions));\n }\n };\n\n const _onBlur = () => onBlur(id, value);\n const _onFocus = () => onFocus(id, value);\n const inlineOption = inline ? { inline: true } : { grouped: true };\n return (\n <>\n {!hideLabel && !!label && (\n <TitleFieldTemplate id={titleId(id)} title={label} schema={schema} uiSchema={uiSchema} registry={registry} />\n )}\n <Form.Group id={id} name={htmlName || id} {...inlineOption}>\n {Array.isArray(enumOptions) &&\n enumOptions.map((option, index) => {\n const checked = enumOptionsIsSelected<S>(option.value, checkboxesValues);\n const itemDisabled = Array.isArray(enumDisabled) && enumDisabled.indexOf(option.value) !== -1;\n return (\n <Form.Checkbox\n id={optionId(id, index)}\n name={htmlName || id}\n key={index}\n label={option.label}\n {...semanticProps}\n checked={checked}\n error={rawErrors.length > 0}\n disabled={disabled || itemDisabled || readonly}\n autoFocus={autofocus && index === 0}\n onChange={_onChange(index)}\n onBlur={_onBlur}\n onFocus={_onFocus}\n aria-describedby={ariaDescribedByIds(id)}\n />\n );\n })}\n </Form.Group>\n </>\n );\n}\n", "import { FormEvent } from 'react';\nimport {\n ariaDescribedByIds,\n enumOptionsIsSelected,\n enumOptionsValueForIndex,\n optionId,\n FormContextType,\n RJSFSchema,\n StrictRJSFSchema,\n WidgetProps,\n} from '@rjsf/utils';\nimport { CheckboxProps, Form, Radio } from 'semantic-ui-react';\nimport { getSemanticProps } from '../util';\n\n/** The `RadioWidget` is a widget for rendering a radio group.\n * It is typically used with a string property constrained with enum options.\n *\n * @param props - The `WidgetProps` for this component\n */\nexport default function RadioWidget<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>(\n props: WidgetProps<T, S, F>,\n) {\n const {\n id,\n htmlName,\n value,\n required,\n disabled,\n readonly,\n onChange,\n onBlur,\n onFocus,\n options,\n registry,\n uiSchema,\n rawErrors = [],\n } = props;\n const { enumOptions, enumDisabled, emptyValue } = options;\n const semanticProps = getSemanticProps<T, S, F>({\n formContext: registry.formContext,\n options,\n uiSchema,\n });\n const _onChange = (_: FormEvent<HTMLInputElement>, { value: eventValue }: CheckboxProps) => {\n return onChange(enumOptionsValueForIndex<S>(eventValue!, enumOptions, emptyValue));\n };\n\n const _onBlur = () => onBlur(id, value);\n const _onFocus = () => onFocus(id, value);\n const inlineOption = options.inline ? { inline: true } : { grouped: true };\n return (\n <Form.Group {...inlineOption}>\n {Array.isArray(enumOptions) &&\n enumOptions.map((option, index) => {\n const checked = enumOptionsIsSelected<S>(option.value, value);\n const itemDisabled = Array.isArray(enumDisabled) && enumDisabled.indexOf(option.value) !== -1;\n return (\n <Form.Field\n required={required}\n control={Radio}\n id={optionId(id, index)}\n name={htmlName || id}\n {...semanticProps}\n onFocus={_onFocus}\n onBlur={_onBlur}\n onChange={_onChange}\n label={option.label}\n value={String(index)}\n error={rawErrors.length > 0}\n key={index}\n checked={checked}\n disabled={disabled || itemDisabled || readonly}\n aria-describedby={ariaDescribedByIds(id)}\n />\n );\n })}\n </Form.Group>\n );\n}\n", "import { ChangeEvent } from 'react';\nimport { Input } from 'semantic-ui-react';\nimport { ariaDescribedByIds, FormContextType, RJSFSchema, StrictRJSFSchema, WidgetProps, rangeSpec } from '@rjsf/utils';\nimport { getSemanticProps } from '../util';\n\n/** The `RangeWidget` component uses the `BaseInputTemplate` changing the type to `range` and wrapping the result\n * in a div, with the value along side it.\n *\n * @param props - The `WidgetProps` for this component\n */\nexport default function RangeWidget<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>(\n props: WidgetProps<T, S, F>,\n) {\n const {\n id,\n value,\n required,\n readonly,\n disabled,\n onChange,\n onBlur,\n onFocus,\n options,\n schema,\n uiSchema,\n registry,\n rawErrors = [],\n } = props;\n const semanticProps = getSemanticProps<T, S, F>({\n formContext: registry.formContext,\n options,\n uiSchema,\n defaultSchemaProps: {\n fluid: true,\n },\n });\n\n // eslint-disable-next-line no-shadow\n const _onChange = ({ target: { value } }: ChangeEvent<HTMLInputElement>) =>\n onChange && onChange(value === '' ? options.emptyValue : value);\n const _onBlur = () => onBlur && onBlur(id, value);\n const _onFocus = () => onFocus && onFocus(id, value);\n\n return (\n <>\n <Input\n id={id}\n key={id}\n name={id}\n type='range'\n required={required}\n disabled={disabled || readonly}\n {...rangeSpec<S>(schema)}\n {...semanticProps}\n value={value || ''}\n error={rawErrors.length > 0}\n onChange={_onChange}\n onBlur={_onBlur}\n onFocus={_onFocus}\n aria-describedby={ariaDescribedByIds(id)}\n />\n <span>{value}</span>\n </>\n );\n}\n", "import { FocusEvent, SyntheticEvent } from 'react';\nimport {\n ariaDescribedByIds,\n enumOptionsIndexForValue,\n enumOptionsValueForIndex,\n labelValue,\n EnumOptionsType,\n FormContextType,\n RJSFSchema,\n StrictRJSFSchema,\n WidgetProps,\n UIOptionsType,\n} from '@rjsf/utils';\nimport map from 'lodash/map';\nimport { Form, DropdownProps, DropdownItemProps } from 'semantic-ui-react';\nimport { getSemanticProps } from '../util';\n\n/**\n * Returns and creates an array format required for semantic drop down\n * @param {array} enumOptions - array of items for the dropdown\n * @param {array} enumDisabled - array of enum option values to disable\n * @param {boolean} showPlaceholderOption - whether to show a placeholder option\n * @param {string} placeholder - placeholder option label\n * @returns {*}\n */\nfunction createDefaultValueOptionsForDropDown<S extends StrictRJSFSchema = RJSFSchema>(\n enumOptions?: EnumOptionsType<S>[],\n enumDisabled?: UIOptionsType['enumDisabled'],\n showPlaceholderOption?: boolean,\n placeholder?: string,\n) {\n const disabledOptions = enumDisabled || [];\n const options: DropdownItemProps[] = map(enumOptions, ({ label, value }, index) => ({\n disabled: disabledOptions.indexOf(value) !== -1,\n key: label,\n text: label,\n value: String(index),\n }));\n if (showPlaceholderOption) {\n options.unshift({ value: '', text: placeholder || '' });\n }\n return options;\n}\n\n/** The `SelectWidget` is a widget for rendering dropdowns.\n * It is typically used with string properties constrained with enum options.\n *\n * @param props - The `WidgetProps` for this component\n */\nexport default function SelectWidget<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>(\n props: WidgetProps<T, S, F>,\n) {\n const {\n uiSchema,\n registry,\n id,\n htmlName,\n options,\n label,\n hideLabel,\n required,\n disabled,\n readonly,\n value,\n multiple,\n placeholder,\n autofocus,\n onChange,\n onBlur,\n onFocus,\n rawErrors = [],\n schema,\n } = props;\n const semanticProps = getSemanticProps<T, S, F>({\n uiSchema,\n formContext: registry.formContext,\n options,\n defaultSchemaProps: {\n inverted: 'false',\n selection: true,\n fluid: true,\n scrolling: true,\n upward: false,\n },\n });\n const { enumDisabled, enumOptions, emptyValue: optEmptyVal } = options;\n const emptyValue = multiple ? [] : '';\n const showPlaceholderOption = !multiple && schema.default === undefined;\n const dropdownOptions = createDefaultValueOptionsForDropDown<S>(\n enumOptions,\n enumDisabled,\n showPlaceholderOption,\n placeholder,\n );\n const _onChange = (_: SyntheticEvent<HTMLElement>, { value }: DropdownProps) =>\n onChange(enumOptionsValueForIndex<S>(value as string[], enumOptions, optEmptyVal));\n // eslint-disable-next-line no-shadow\n const _onBlur = (_: FocusEvent<HTMLElement>, { target }: DropdownProps) =>\n onBlur(id, enumOptionsValueForIndex<S>(target && target.value, enumOptions, optEmptyVal));\n const _onFocus = (_: FocusEvent<HTMLElement>, { target }: DropdownProps) =>\n onFocus(id, enumOptionsValueForIndex<S>(target && target.value, enumOptions, optEmptyVal));\n const selectedIndexes = enumOptionsIndexForValue<S>(value, enumOptions, multiple);\n\n return (\n <Form.Dropdown\n key={id}\n id={id}\n name={htmlName || id}\n label={labelValue(label || undefined, hideLabel, false)}\n multiple={typeof multiple === 'undefined' ? false : multiple}\n value={typeof value === 'undefined' ? emptyValue : selectedIndexes}\n error={rawErrors.length > 0}\n disabled={disabled}\n placeholder={placeholder}\n {...semanticProps}\n required={required}\n autoFocus={autofocus}\n readOnly={readonly}\n options={dropdownOptions}\n onChange={_onChange}\n onBlur={_onBlur}\n onFocus={_onFocus}\n aria-describedby={ariaDescribedByIds(id)}\n />\n );\n}\n", "import { ChangeEvent } from 'react';\nimport {\n ariaDescribedByIds,\n labelValue,\n FormContextType,\n RJSFSchema,\n StrictRJSFSchema,\n WidgetProps,\n} from '@rjsf/utils';\nimport { Form } from 'semantic-ui-react';\nimport { getSemanticProps } from '../util';\n\n/** The `TextareaWidget` is a widget for rendering input fields as textarea.\n *\n * @param props - The `WidgetProps` for this component\n */\nexport default function TextareaWidget<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(props: WidgetProps<T, S, F>) {\n const {\n id,\n htmlName,\n placeholder,\n value,\n required,\n disabled,\n autofocus,\n label,\n hideLabel,\n readonly,\n onBlur,\n onFocus,\n onChange,\n options,\n registry,\n rawErrors = [],\n } = props;\n const semanticProps = getSemanticProps<T, S, F>({\n formContext: registry.formContext,\n options,\n defaultSchemaProps: { inverted: 'false' },\n });\n // eslint-disable-next-line no-shadow\n const _onChange = ({ target: { value } }: ChangeEvent<HTMLTextAreaElement>) =>\n onChange && onChange(value === '' ? options.emptyValue : value);\n const _onBlur = () => onBlur && onBlur(id, value);\n const _onFocus = () => onFocus && onFocus(id, value);\n return (\n <Form.TextArea\n id={id}\n key={id}\n name={htmlName || id}\n label={labelValue(label || undefined, hideLabel, false)}\n placeholder={placeholder}\n autoFocus={autofocus}\n required={required}\n disabled={disabled || readonly}\n {...semanticProps}\n value={value || ''}\n error={rawErrors.length > 0}\n rows={options.rows || 5}\n onChange={_onChange}\n onBlur={_onBlur}\n onFocus={_onFocus}\n aria-describedby={ariaDescribedByIds(id)}\n />\n );\n}\n", "import { FormContextType, RegistryWidgetsType, RJSFSchema, StrictRJSFSchema } from '@rjsf/utils';\n\nimport CheckboxWidget from '../CheckboxWidget/CheckboxWidget';\nimport CheckboxesWidget from '../CheckboxesWidget/CheckboxesWidget';\nimport RadioWidget from '../RadioWidget/RadioWidget';\nimport RangeWidget from '../RangeWidget/RangeWidget';\nimport SelectWidget from '../SelectWidget/SelectWidget';\nimport TextareaWidget from '../TextareaWidget/TextareaWidget';\n\nexport function generateWidgets<\n T = any,\n S extends StrictRJSFSchema = RJSFSchema,\n F extends FormContextType = any,\n>(): RegistryWidgetsType<T, S, F> {\n return {\n CheckboxWidget,\n CheckboxesWidget,\n RadioWidget,\n RangeWidget,\n SelectWidget,\n TextareaWidget,\n };\n}\n\nexport default generateWidgets();\n"],
5
+ "mappings": "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",
6
+ "names": ["import_core", "import_semantic_ui_react", "import_utils", "import_semantic_ui_react", "import_utils", "import_jsx_runtime", "import_jsx_runtime", "import_utils", "import_jsx_runtime", "AddButton", "import_semantic_ui_react", "import_utils", "import_jsx_runtime", "value", "import_jsx_runtime", "import_semantic_ui_react", "import_utils", "import_jsx_runtime", "import_semantic_ui_react", "import_utils", "import_jsx_runtime", "import_utils", "import_semantic_ui_react", "import_jsx_runtime", "uniqueId", "import_semantic_ui_react", "import_utils", "import_jsx_runtime", "import_utils", "import_semantic_ui_react", "import_jsx_runtime", "WrapIfAdditionalTemplate", "import_semantic_ui_react", "import_jsx_runtime", "import_jsx_runtime", "import_semantic_ui_react", "import_utils", "import_jsx_runtime", "AddButton", "import_jsx_runtime", "import_semantic_ui_react", "import_utils", "import_jsx_runtime", "import_semantic_ui_react", "import_jsx_runtime", "DEFAULT_OPTIONS", "import_utils", "import_semantic_ui_react", "import_jsx_runtime", "RemoveButton", "import_utils", "import_semantic_ui_react", "import_jsx_runtime", "import_semantic_ui_react", "import_utils", "import_jsx_runtime", "import_utils", "import_semantic_ui_react", "import_jsx_runtime", "import_semantic_ui_react", "import_utils", "import_jsx_runtime", "value", "import_utils", "import_semantic_ui_react", "import_jsx_runtime", "map", "value", "import_utils", "import_semantic_ui_react", "import_jsx_runtime", "value", "SuiForm"]
7
7
  }