Skip to content

Commit 3058ebf

Browse files
committed
NestedFormController
1 parent c6eef27 commit 3058ebf

37 files changed

+288
-28
lines changed

dist/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export { EnableInputsController } from "./enable_inputs_controller";
1313
export { FallbackImageController } from "./fallback_image_controller";
1414
export { LazyBlockController } from "./lazy_block_controller";
1515
export { LimitedSelectionCheckboxesController } from "./limited_selection_checkboxes_controller";
16+
export { NestedFormController } from "./nested_form_controller";
1617
export { PasswordConfirmController } from "./password_confirm_controller";
1718
export { PasswordPeekController } from "./password_peek_controller";
1819
export { ResponsiveIframeBodyController, ResponsiveIframeWrapperController } from "./responsive_iframe_controller";

dist/index.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/nested_form_controller.d.ts

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import { BaseController } from "./base_controller";
2+
export declare class NestedFormController extends BaseController {
3+
static targets: string[];
4+
static values: {
5+
insertMode: StringConstructor;
6+
wrapperClass: StringConstructor;
7+
};
8+
readonly targetTarget: HTMLElement;
9+
readonly templateTarget: HTMLTemplateElement | HTMLScriptElement;
10+
readonly wrapperClassValue: string;
11+
readonly hasWrapperSelectorValue: boolean;
12+
readonly insertModeValue: InsertPosition;
13+
readonly hasInsertModeValue: boolean;
14+
get wrapperClass(): string;
15+
get insertMode(): InsertPosition;
16+
connect(): void;
17+
add(event?: Event): void;
18+
remove(event: Event): void;
19+
generateID(): string;
20+
private checkStructure;
21+
}
22+
//# sourceMappingURL=nested_form_controller.d.ts.map

dist/nested_form_controller.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/stimulus-library.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/stimulus-library.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/stimulus-library.modern.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/stimulus-library.modern.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/stimulus-library.module.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/stimulus-library.module.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)