ariadne_view_components 0.0.42 → 0.0.43

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: 037b211d1505e77bb6b39c1106719da6aea420b549bf5dfce24a144c03a19c28
4
- data.tar.gz: 443a6252fb1ded7e691e10ecacce966738d6d3fbaf8ac02be97a88127db9ffc2
3
+ metadata.gz: 7868b2110bafa1d9462757ee6acdb31958417c476812103a1697735d8a0c56bf
4
+ data.tar.gz: c8b0a880b73cabb2f628d74e4ffcea2c14772c2b2d6cad6aa01f0b9c4b38d2d0
5
5
  SHA512:
6
- metadata.gz: 10ae7c34fe29d9419dd75fb730a5348d1f13460880fa0ce081156188b4687be9ef0a8c4d3f386534c9717c4506c12fb83709d7e529adeb0009fccd9771cc48ed
7
- data.tar.gz: 2b769a2217e121b8a65f207388a3b3d2fae1b3bf2d54be93fbc6c158bebc9382558de0ada02900774479c70d088a497728d40db8d60d4996f82cd68e30dcc969
6
+ metadata.gz: 3b1ab202428e9f2c0739e8819d967f19c0230690e7193e075aae6eb785fccd11c541e71ad9ff2fd57c4463eda122f75151f06ca757883a3e597edf2990b391c1
7
+ data.tar.gz: 10585a54a56048625cf96d446c68a03fea262f7f52856bf55b66bf2180cdd40ccd403600cd6d20a8360439150519fd284988492bcdddb6e4e5450334eef83bca
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';