@trackunit/custom-field-components 2.16.0 → 2.16.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.cjs.js CHANGED
@@ -702,5 +702,6 @@ const CustomField = (props) => {
702
702
  setupLibraryTranslations();
703
703
 
704
704
  exports.CustomField = CustomField;
705
+ exports.StringListField = StringListField;
705
706
  exports.useCustomFieldResolver = useCustomFieldResolver;
706
707
  exports.useUnitTranslation = useUnitTranslation;
package/index.esm.js CHANGED
@@ -699,4 +699,4 @@ const CustomField = (props) => {
699
699
  */
700
700
  setupLibraryTranslations();
701
701
 
702
- export { CustomField, useCustomFieldResolver, useUnitTranslation };
702
+ export { CustomField, StringListField, useCustomFieldResolver, useUnitTranslation };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/custom-field-components",
3
- "version": "2.16.0",
3
+ "version": "2.16.3",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -10,7 +10,7 @@
10
10
  "react-select": "^5.10.2",
11
11
  "@trackunit/react-form-components": "2.6.63",
12
12
  "@trackunit/shared-utils": "1.16.45",
13
- "@trackunit/custom-field-api": "2.17.0",
13
+ "@trackunit/custom-field-api": "2.17.3",
14
14
  "@trackunit/react-components": "2.13.15",
15
15
  "@trackunit/react-modal": "2.6.63",
16
16
  "@trackunit/react-core-hooks": "1.21.55",
package/src/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from "./CustomField";
2
+ export { StringListField, type StringListFieldProps } from "./StringListField/StringListField";
2
3
  export * from "./UnitPreference";
3
4
  export * from "./useUnitTranslation";