create license management

This commit is contained in:
2026-04-06 13:31:30 +03:30
parent 44097fe1ac
commit de1a046485
46 changed files with 819 additions and 366 deletions
@@ -8,6 +8,10 @@
<div class="w-full">
<div #wrapper [attr.data-disable]="disabled" [attr.data-name]="name" class="w-full">
<input pInputText data-input [attr.placeholder]="placeholder" [name]="name" class="w-full" />
@if (hint) {
<small [attr.id]="name + '-help'">{{ hint }}</small>
}
</div>
<div class="flat"></div>
</div>
@@ -31,6 +31,7 @@ export class UikitFlatpickrJalaliComponent implements OnInit {
@Input() options: Partial<BaseOptions> = {};
@Input() showLabel: boolean = true;
@Input() showErrors: boolean = true;
@Input() hint?: string;
@Output() valueChange = new EventEmitter<string>();