Skip to content

Commit cd49988

Browse files
committed
v0.1.0
1 parent 28f0d65 commit cd49988

File tree

53 files changed

+365
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+365
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11

22
.idea
33
node_modules
4-
/dist

dist/async_block_controller.d.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import { Controller } from "stimulus";
2+
export declare class AsyncBlockController extends Controller {
3+
static targets: string[];
4+
static values: {
5+
endpoint: StringConstructor;
6+
};
7+
readonly replaceTarget: HTMLElement;
8+
readonly hasReplaceTarget: boolean;
9+
readonly endpointValue: string;
10+
connect(): void;
11+
loadContent(): void;
12+
}
13+
//# sourceMappingURL=async_block_controller.d.ts.map

dist/async_block_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.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import { Controller } from "stimulus";
2+
export declare class AutoSubmitFormController extends Controller {
3+
private boundHandler;
4+
connect(): void;
5+
disconnect(): void;
6+
private handler;
7+
}
8+
//# sourceMappingURL=auto_submit_form_controller.d.ts.map

dist/auto_submit_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/autosize_controller.d.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { Controller } from "stimulus";
2+
export declare class AutosizeController extends Controller {
3+
private boundHandler;
4+
observe: () => void;
5+
unobserve: () => void;
6+
connect(): void;
7+
windowResize(): void;
8+
private handler;
9+
private autosize;
10+
}
11+
//# sourceMappingURL=autosize_controller.d.ts.map

dist/autosize_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/char_count_controller.d.ts

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import { Controller } from "stimulus";
2+
export declare class CharCountController extends Controller {
3+
static targets: string[];
4+
static values: {
5+
min: NumberConstructor;
6+
max: NumberConstructor;
7+
};
8+
static classes: string[];
9+
readonly inputTarget: HTMLInputElement | HTMLTextAreaElement;
10+
readonly outputTarget: HTMLElement;
11+
minValue: number;
12+
hasMinValue: boolean;
13+
maxValue: number;
14+
hasMaxValue: boolean;
15+
errorClass: string;
16+
hasErrorClass: boolean;
17+
boundHandler: () => void;
18+
connect(): void;
19+
disconnect(): void;
20+
updateCharCount(): void;
21+
isValidCount(count: number): boolean;
22+
}
23+
//# sourceMappingURL=char_count_controller.d.ts.map

dist/char_count_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/clipboard_controller.d.ts

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import { Controller } from "stimulus";
2+
export declare class ClipboardController extends Controller {
3+
static targets: string[];
4+
static values: {
5+
removeUnused: BooleanConstructor;
6+
};
7+
readonly sourceTarget: HTMLElement;
8+
readonly copyTarget: HTMLElement;
9+
readonly hasCopyTarget: boolean;
10+
readonly fallbackTarget: HTMLElement;
11+
readonly hasFallbackTarget: boolean;
12+
readonly hasRemoveUnusedValue: boolean;
13+
readonly removeUnusedValue: boolean;
14+
supported: boolean;
15+
connect(): void;
16+
select(event: MouseEvent): void;
17+
copy(event: ClipboardEvent): void;
18+
}
19+
//# sourceMappingURL=clipboard_controller.d.ts.map

0 commit comments

Comments
 (0)