@homebound/beam 2.379.1 → 2.380.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4834,7 +4834,10 @@ var Icons = {
|
|
|
4834
4834
|
// src/components/PresentationContext.tsx
|
|
4835
4835
|
import { createContext, useContext as useContext2, useMemo as useMemo2 } from "react";
|
|
4836
4836
|
import { jsx as jsx4 } from "@emotion/react/jsx-runtime";
|
|
4837
|
-
var PresentationContext = createContext({
|
|
4837
|
+
var PresentationContext = createContext({
|
|
4838
|
+
// Required fields should always show asterisk
|
|
4839
|
+
fieldProps: { labelSuffix: { required: "*" } }
|
|
4840
|
+
});
|
|
4838
4841
|
function PresentationProvider(props) {
|
|
4839
4842
|
const { children, ...presentationProps } = props;
|
|
4840
4843
|
const existingContext = usePresentationContext();
|