ariadne_view_components 0.0.41-x86_64-linux → 0.0.43-x86_64-linux

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: dfdb2ea4983dfb6e6bb81468a1d3bc5773fac28c4aefdcb44bab90639760ef4f
4
- data.tar.gz: 3645899e69f666f4aa4394a50dae6cfdccce7561a9e909ba70fdf72c6303e3c0
3
+ metadata.gz: 4261f61c7046a8639c29a8704dbf2030b23b7f00ce54e0ab15d3bab66c40cbe1
4
+ data.tar.gz: 0d4e1e4f56a960eacd504bf80a85e52d512e28ed9ed24e5603858f0b9a35c332
5
5
  SHA512:
6
- metadata.gz: b0e3d8b52d13987beca92dba2f9c39763cefa31c5a4870b45f9337b07b9563f627d2fa0e13a49311f6914a7a06136546f4c18b6fd786d3b2f3794ec473a58728
7
- data.tar.gz: b9a75a376f98af7aa445a303848bdd8c930a010c00da3a8b0047dea3e5a207d844a986802502e8d23e65ac1868735d036bf8ba093e88eeeaaa4d73634ad50226
6
+ metadata.gz: 27356ca48cfc853bb8be0a26cdd6c9618450576d3d19a23e3c1f3bde923ca1067050b9ab4e6fb2a79faff5ff4e1cacc4cb4d48d364ffd7559f10570297976bc1
7
+ data.tar.gz: 49be04ae9907af51f60614a532c481f2790f5d6da8060f17b3cda04b6986e931ccaf47078a016985d115ca1b932071a0fe4a9c32662f4ac3cd7a0b96591726c1
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';