ariadne_view_components 0.0.42-x86_64-darwin → 0.0.43-x86_64-darwin

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: 355980e8f1d195fe8722d59a5c4321d7e4fa7fa73e00923564adbbb9e8323abb
4
- data.tar.gz: 4eb39568798cebd8f034410fa9941c8fb759159aeae5bf60a72af87af2ace3d6
3
+ metadata.gz: bd26491856c325f9f4371fc47d5cc55ffd51f74cdcafd2ba0988b35c56640307
4
+ data.tar.gz: 9c045e8a4fb33abec490677c41d8e48629b8560e19d41a29f94dba0d4bd4f6b0
5
5
  SHA512:
6
- metadata.gz: e69c9e58374fe40a1a5df041e65ec55488edeb1a24682d5239fa41b9770d73cc6c87692f76826f01192fd31d467648a2de576774230a9332a87dcada595509ac
7
- data.tar.gz: 64d41aee3c9ed992c1887748af073c69f8e5169194c1074720ebde39f133fd2e7aad1180e784dd1956f3d360661f15f9ebddc3f63944b006e61a1dee5748803d
6
+ metadata.gz: 144d7fd9272f0c39304310071c14078264a8be2809a2d634966589ec69bb63a113edf49e3855a89e0f14fdd699a634398603862acc7042fed2b1730cd4d3fe67
7
+ data.tar.gz: 878b8839e33b94ce1de60f09939956d16f4beb25db7be06972eb76d86b3c5f6d0d630b8425f11220ba776dbc0bde574179d9cbaaebd9af56e802b007b31fcb09
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';