ariadne_view_components 0.0.42-arm64-darwin → 0.0.43-arm64-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: a92c183b82ac12f7953972964d7c503bae91713668839fbbf8a3c75f4407f476
4
- data.tar.gz: 7bc44a945e4c7e3249003df12ec2004448d0692677cd950949193e6458c57905
3
+ metadata.gz: d609badc3c23a714bd0ba1f1a7c0fa69563a2b88fad981ae9eac0af51a8f65dc
4
+ data.tar.gz: 6514e40b7562f98644c741a80f27ae4c608965605fbc3f06e5a45877837c04d6
5
5
  SHA512:
6
- metadata.gz: c10697845ff97c3a727ae0c46182eda7d32583645034b1617cdd32518dc705dc8351e8cff2cc75dec939447157c5dd33f060e6a9c04ad4e43186452b130e57a4
7
- data.tar.gz: 4ca1900b63a7217eab67458f55776e5db808ccd36a35c6049aea1c96b6c6ea0d78166daab08b63682bec879f3edf96a5b35ba9428a79874194ddfa3466b23f91
6
+ metadata.gz: 3f46a8355ba9579567bef51e65974c3d476ceb32e53129325d06e06dac67fdcfbb701ff4a4d5a95c8ebecb82b22155ca4efcf1beb81510b48664d41f1b636203
7
+ data.tar.gz: c87c014fbe741d73fc592b57a9c28287c392387fece56256c38a10c34ae9ca39ff1581b3cbb2d82493dc1effb027ca11bccb041bb72094cde8a51ca7a214fd0d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
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
+
3
11
  ## [v0.0.41](https://github.com/yettoapp/ariadne/tree/v0.0.41) (2023-05-01)
4
12
 
5
13
  [Full Changelog](https://github.com/yettoapp/ariadne/compare/v0.0.40...v0.0.41)
@@ -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';