ariadne_view_components 0.0.41-x86_64-darwin → 0.0.43-x86_64-darwin

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: aa8114e6248f8fe2e34c9b22ca6320e64e3ae532addab930608f5158467f71d9
4
- data.tar.gz: '079c22f3d3db5e0a325f624a4c010905578690f9aea2bb27676b0d75c30337a1'
3
+ metadata.gz: bd26491856c325f9f4371fc47d5cc55ffd51f74cdcafd2ba0988b35c56640307
4
+ data.tar.gz: 9c045e8a4fb33abec490677c41d8e48629b8560e19d41a29f94dba0d4bd4f6b0
5
5
  SHA512:
6
- metadata.gz: 7751d1776debf8a79e9a7d02dc46f48a0c3f4f6124ccbbfb7309ed76b58ac6341f690644b688b9d7552d454e00bf51488944490bba9aba333edc4b6dbef23bde
7
- data.tar.gz: 91bf76e68698f3b0a801fa866c70b6416c985415a2b93eb1f91ed0cca02c7b6b61588ea4c75abaabb8d169dfb0a752e45fff87793928f694a0078f643ef1e9eb
6
+ metadata.gz: 144d7fd9272f0c39304310071c14078264a8be2809a2d634966589ec69bb63a113edf49e3855a89e0f14fdd699a634398603862acc7042fed2b1730cd4d3fe67
7
+ data.tar.gz: 878b8839e33b94ce1de60f09939956d16f4beb25db7be06972eb76d86b3c5f6d0d630b8425f11220ba776dbc0bde574179d9cbaaebd9af56e802b007b31fcb09
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [v0.0.42](https://github.com/yettoapp/ariadne/tree/v0.0.42) (2023-05-02)
4
+
5
+ [Full Changelog](https://github.com/yettoapp/ariadne/compare/v0.0.41...v0.0.42)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - build\(deps-dev\): bump @typescript-eslint/parser from 5.36.1 to 5.59.2 [\#297](https://github.com/yettoapp/ariadne/pull/297) ([dependabot[bot]](https://github.com/apps/dependabot))
10
+
11
+ ## [v0.0.41](https://github.com/yettoapp/ariadne/tree/v0.0.41) (2023-05-01)
12
+
13
+ [Full Changelog](https://github.com/yettoapp/ariadne/compare/v0.0.40...v0.0.41)
14
+
3
15
  ## [v0.0.40](https://github.com/yettoapp/ariadne/tree/v0.0.40) (2023-05-01)
4
16
 
5
17
  [Full Changelog](https://github.com/yettoapp/ariadne/compare/v0.0.39...v0.0.40)
@@ -0,0 +1,22 @@
1
+ import { Controller } from '@hotwired/stimulus';
2
+ import type { TemplateResult } from 'lit-html';
3
+ type HTMLFormField = HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement;
4
+ export default class AriadneFormWith extends Controller {
5
+ static targets: string[];
6
+ readonly formFieldTargets: [HTMLFormField];
7
+ connect(): void;
8
+ disconnect(): void;
9
+ onBlur: (event: Event) => void;
10
+ onSubmit: (event: Event) => void;
11
+ validateForm(): boolean;
12
+ validateField(field: HTMLFormField): boolean;
13
+ shouldValidateField(field: HTMLFormField): boolean;
14
+ refreshErrorForInvalidField(field: HTMLFormField, isValid: boolean): void;
15
+ removeExistingErrorMessage(field: HTMLFormField): void;
16
+ showErrorForInvalidField(field: HTMLFormField): void;
17
+ buildFieldErrorHtml(field: HTMLFormField): string;
18
+ get formFields(): HTMLFormField[];
19
+ get firstInvalidField(): HTMLFormField | undefined;
20
+ getRenderString: (data: TemplateResult) => string;
21
+ }
22
+ export {};
@@ -0,0 +1,2 @@
1
+ import './tab_container_component/tab-container-component';
2
+ import './time_ago_component/time-ago-component';