ariadne_view_components 0.0.42-aarch64-linux → 0.0.43-aarch64-linux

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 53180f9bcbb9406805b7696050c6f44922bad88ec7a60a132464000cc309f9bf
4
- data.tar.gz: 32d8c1f6187fd041dd87166c5253eb6ef192fee6bdc21a578c4d24029740d3f9
3
+ metadata.gz: 5041fcbbf1ce8d12fe88589a7144d3085df3d45dc384b4e067ce0a03a359f5c4
4
+ data.tar.gz: 5a5e50a6cacaf93d7c54725df39e5994013b2dcb121d554761550f284ad9aaea
5
5
  SHA512:
6
- metadata.gz: a4e1ae819ce2cd99193a2c1d523051e3f9fad58bd9ffdc4dae9f31e439d4aff92ac859922c5737ebfb06e5f4b042913950e311dd316205c9699012d38e8738d2
7
- data.tar.gz: 528f0b3226381a47c54347c16de16a78df2f14b2bc2a3eee0edd7f10567e17828796dc5aca6ad722d30dc0659c15ae540b866d2762361945ef53c06c11ad362f
6
+ metadata.gz: b24f3f1227ab67dbac093536b97125d0ae7d0d6798c48e0ac6583a19423fb3e6cb24748d31fe074a145490cefd957fc46dcc332bbef45cdf8f4faf233f081adb
7
+ data.tar.gz: 91d6d6fe4962d758dd55e96902a6166113784df3e7a4fcf78961dd8b09310eacd8eabb9e2053a3087315778d726ceb19b9754e3f07e4fd055620a23f7f9ac517
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';