@overmap-ai/core 1.0.53-component-asset-renames.3 → 1.0.53-component-asset-renames.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/forms/builder/constants.d.ts +1 -1
- package/dist/forms/builder/hooks.d.ts +1 -1
- package/dist/overmap-core.js +3 -3
- package/dist/overmap-core.js.map +1 -1
- package/dist/overmap-core.umd.cjs +3 -3
- package/dist/overmap-core.umd.cjs.map +1 -1
- package/dist/store/slices/assetSlice.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { FieldSection } from "../fields";
|
|
2
2
|
export declare const formId = "form-builder";
|
|
3
|
-
export declare const fieldsToChoose: (("string" | "text")[] | ("select" | "multi-select" | "upload")[] | ("number" | "boolean" | "date" | "multi-string")[])[];
|
|
3
|
+
export declare const fieldsToChoose: (("string" | "text")[] | ("select" | "multi-select" | "upload" | "qr")[] | ("number" | "boolean" | "date" | "multi-string")[])[];
|
|
4
4
|
export declare const indexOfLastFieldGroup: number;
|
|
5
5
|
export declare const CompleteFieldTypeToClsMapping: {
|
|
6
6
|
section: typeof FieldSection;
|
|
@@ -2,6 +2,6 @@ import { FieldTypeIdentifier } from "../typings";
|
|
|
2
2
|
export declare const useFieldTypeItems: (onSelect?: (type: Exclude<FieldTypeIdentifier, "section">) => void) => {
|
|
3
3
|
children: string;
|
|
4
4
|
leftSlot: import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
value: "string" | "number" | "boolean" | "select" | "text" | "date" | "multi-string" | "multi-select" | "upload";
|
|
5
|
+
value: "string" | "number" | "boolean" | "select" | "text" | "date" | "multi-string" | "multi-select" | "upload" | "qr";
|
|
6
6
|
onSelect: () => void;
|
|
7
7
|
}[][];
|
package/dist/overmap-core.js
CHANGED
|
@@ -1883,7 +1883,7 @@ const selectAttachmentsOfAsset = restructureCreateSelectorWithArgs(
|
|
|
1883
1883
|
}
|
|
1884
1884
|
)
|
|
1885
1885
|
);
|
|
1886
|
-
const
|
|
1886
|
+
const selectAttachmentsOfAssetByType = restructureCreateSelectorWithArgs(
|
|
1887
1887
|
createSelector(
|
|
1888
1888
|
[selectAssetAttachments, (_state, assetId) => assetId],
|
|
1889
1889
|
(attachments, assetId) => {
|
|
@@ -15657,7 +15657,7 @@ const styles = {
|
|
|
15657
15657
|
const formId = "form-builder";
|
|
15658
15658
|
const fieldsToChoose = [
|
|
15659
15659
|
["string", "text"],
|
|
15660
|
-
["select", "multi-select", "upload"],
|
|
15660
|
+
["select", "multi-select", "upload", "qr"],
|
|
15661
15661
|
["boolean", "date", "number", "multi-string"]
|
|
15662
15662
|
];
|
|
15663
15663
|
const CompleteFieldTypeToClsMapping = {
|
|
@@ -17008,9 +17008,9 @@ export {
|
|
|
17008
17008
|
selectAssetsMapping,
|
|
17009
17009
|
selectAssetsOfAssetType,
|
|
17010
17010
|
selectAttachmentsOfAsset,
|
|
17011
|
+
selectAttachmentsOfAssetByType,
|
|
17011
17012
|
selectAttachmentsOfAssetType,
|
|
17012
17013
|
selectAttachmentsOfAssetTypeByType,
|
|
17013
|
-
selectAttachmentsOfAssetsByType,
|
|
17014
17014
|
selectAttachmentsOfDocument,
|
|
17015
17015
|
selectAttachmentsOfDocumentByType,
|
|
17016
17016
|
selectAttachmentsOfFormRevision,
|