ariadne_view_components 0.0.42-x64-mingw-ucrt → 0.0.43-x64-mingw-ucrt

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: 29f3e77527446b65bd2b9866b612b140ddce2f335c8eccd6018c94e28837fb46
4
- data.tar.gz: 5e8f8b4adad2bb12716390870a326bdd37b5e0a5a9f07f27c216948237058193
3
+ metadata.gz: d93b42d5b6f760979e0f0f07fb115b93a0ad3151e2e59eb1512eb7a760c2eb01
4
+ data.tar.gz: '09ca8ad3cc335cdd759166eaa87405787ae1c2abe275ba9f824c50cd279ab7d2'
5
5
  SHA512:
6
- metadata.gz: 32b4e5aeb8251ee6f765c39009550b3c9acfcde373d15182f910057751953484adcb9f743443171f1299feb5901669b541c9962b5ddf0a0566dcf8222161db34
7
- data.tar.gz: a8eaf0ca4c5e893fad166adac6fbabeadc4277c315b7172f88524479c5362470a6cb104261f265faef5e05da55f03aec7e2c8450c93c56794efb6a85264cabdb
6
+ metadata.gz: 2f824ad6b047369813adf0fab05945b496642ac66a5e256a68907828b16692188c54d77d57759379fe65a95e69374d1481e0d6abcef8dedc5ce5167e6e67daf1
7
+ data.tar.gz: 5a3a972617f8a0530bea3e0b31055bba820a258ce45ac273ba6d39f408d7dbb5b3a9484d05818e2ae201a0a2ae827a00defcf8eb4f63f22183b737ca01f2296c
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';