isDisabled) — disables all nested form controls and blocks submission. Use to restrict access or display read-only data.autoLoading) — when enabled, automatically locks all fields while the onSubmit handler's returned promise is pending. Re-enables fields once the promise resolves or rejects.<fieldset> internally to cascade disabled to all child form controls — consumers do not need to disable each child individually.autoLoading defaults to true in React but false in Ember. Explicitly set this prop when consistent cross-framework behavior is needed.onSubmit prevents the native form submission event by default when provided. Return a promise from onSubmit to trigger the auto-loading behavior.as prop defaults to 'form'.children for content. Ember uses {{yield}} (default block).PlumaForm (<PlumaForm>); React export is Form.