ariadne_view_components 0.0.41 → 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: e36d0c4cb146472884889016baa1a39aec78eddfc4bea1e88d5c0b0bb6b2736e
4
- data.tar.gz: ae1cb63d407276c5a8b5ca0b3c2770d2f97c1606ee4220ed4079ee42ef765084
3
+ metadata.gz: 7868b2110bafa1d9462757ee6acdb31958417c476812103a1697735d8a0c56bf
4
+ data.tar.gz: c8b0a880b73cabb2f628d74e4ffcea2c14772c2b2d6cad6aa01f0b9c4b38d2d0
5
5
  SHA512:
6
- metadata.gz: a482546ffb951e15b85c029e16fb24ed7e40041a56bbbfee4a04087d560da170b33384a584b12443a49fdda92e43519dd79cccb5b29eef7678887ac51769a05a
7
- data.tar.gz: e80250a66c743fcddea75c55034e354f2aebca50d0227813701ebfea71b2bf6fd9ee66071e8f4b1bc3211aa48a100c9e0a56afc53352ec357f1d566fd04212e7
6
+ metadata.gz: 3b1ab202428e9f2c0739e8819d967f19c0230690e7193e075aae6eb785fccd11c541e71ad9ff2fd57c4463eda122f75151f06ca757883a3e597edf2990b391c1
7
+ data.tar.gz: 10585a54a56048625cf96d446c68a03fea262f7f52856bf55b66bf2180cdd40ccd403600cd6d20a8360439150519fd284988492bcdddb6e4e5450334eef83bca
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';