ariadne_view_components 0.0.41-aarch64-linux → 0.0.43-aarch64-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: 9cba9074e7d31b82198b4237431de85c25cf1dbb5d05396a5ff110485bccf9f7
4
- data.tar.gz: bb74b8983323273814e78200937af72b985d1a3a8acb07278274e2d5421b34da
3
+ metadata.gz: 5041fcbbf1ce8d12fe88589a7144d3085df3d45dc384b4e067ce0a03a359f5c4
4
+ data.tar.gz: 5a5e50a6cacaf93d7c54725df39e5994013b2dcb121d554761550f284ad9aaea
5
5
  SHA512:
6
- metadata.gz: 29aa89e12208bb418480ccfe97eb29b97a581da05146e789d25e1a3e3d020f3b6f7358a58ca6cea031824b8d80328a55e7ced8db063b68ad71fa4df325941be5
7
- data.tar.gz: 47a8002bbae33d58fe621fd4f2b6e1a3f794aa1497f07169b89c706637cf3e8649c3eb7bd6b7710c14385f6b93aaeda0f8188ea9aa24bf5f23d7e8bb4d005677
6
+ metadata.gz: b24f3f1227ab67dbac093536b97125d0ae7d0d6798c48e0ac6583a19423fb3e6cb24748d31fe074a145490cefd957fc46dcc332bbef45cdf8f4faf233f081adb
7
+ data.tar.gz: 91d6d6fe4962d758dd55e96902a6166113784df3e7a4fcf78961dd8b09310eacd8eabb9e2053a3087315778d726ceb19b9754e3f07e4fd055620a23f7f9ac517
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';