ariadne_view_components 0.0.41-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: a4b3049ec527b9c7923ab8b6f129aa345f444fa28e56af917fa8f3017259238a
4
- data.tar.gz: d2fa3536f1d55d34a78663b9d93d02af0754153be13ef451dcc5bb463c72343d
3
+ metadata.gz: d93b42d5b6f760979e0f0f07fb115b93a0ad3151e2e59eb1512eb7a760c2eb01
4
+ data.tar.gz: '09ca8ad3cc335cdd759166eaa87405787ae1c2abe275ba9f824c50cd279ab7d2'
5
5
  SHA512:
6
- metadata.gz: 7b5aea8f7470504e4ee2172c6d1e6bc7083d727d238f1ff7c51b835efd1c7847427ea5a726621ec529953b536f815637e5f0fd0eec5008cf04ef9578c3f2b6df
7
- data.tar.gz: 5ec5858007b488e6f5b1f0966636c746e1f2c73fc9c9e75681139dd357cd15cb856d84c250073c430ca032e968715bd6921b21821624f4050d0d7463039402f1
6
+ metadata.gz: 2f824ad6b047369813adf0fab05945b496642ac66a5e256a68907828b16692188c54d77d57759379fe65a95e69374d1481e0d6abcef8dedc5ce5167e6e67daf1
7
+ data.tar.gz: 5a3a972617f8a0530bea3e0b31055bba820a258ce45ac273ba6d39f408d7dbb5b3a9484d05818e2ae201a0a2ae827a00defcf8eb4f63f22183b737ca01f2296c
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';