orbiq-neural-ui-kit 1.2.75 → 1.2.76

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.
@@ -16098,50 +16098,23 @@ class NeuralAuthShellComponent {
16098
16098
  ...(ngDevMode ? [{ debugName: "logoIcon" }] : /* istanbul ignore next */ []));
16099
16099
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.4", ngImport: i0, type: NeuralAuthShellComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
16100
16100
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.1.4", type: NeuralAuthShellComponent, isStandalone: true, selector: "neural-auth-shell", inputs: { title: { classPropertyName: "title", publicName: "title", isSignal: true, isRequired: false, transformFunction: null }, subtitlePrefix: { classPropertyName: "subtitlePrefix", publicName: "subtitlePrefix", isSignal: true, isRequired: false, transformFunction: null }, subtitleLinkText: { classPropertyName: "subtitleLinkText", publicName: "subtitleLinkText", isSignal: true, isRequired: false, transformFunction: null }, subtitleLinkHref: { classPropertyName: "subtitleLinkHref", publicName: "subtitleLinkHref", isSignal: true, isRequired: false, transformFunction: null }, logoIcon: { classPropertyName: "logoIcon", publicName: "logoIcon", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
16101
- <div data-slot="auth-shell" class="min-h-screen flex bg-surface-base font-sans">
16102
- <!-- Branding / Image Side (Left) -->
16103
- <div class="hidden lg:flex lg:w-1/2 xl:w-7/12 relative bg-surface-gray-2 dark:bg-surface-gray-8 items-center justify-center overflow-hidden">
16104
- <!-- Dynamic Background Gradient -->
16105
- <div class="absolute inset-0 bg-gradient-to-br from-primary/10 to-primary/5 dark:from-primary/20 dark:to-primary/5"></div>
16101
+ <div data-slot="auth-shell" class="min-h-screen flex items-center justify-center bg-white dark:bg-surface-gray-8 font-sans py-12 px-4 sm:px-6 lg:px-8">
16102
+ <div class="w-full max-w-[360px]">
16103
+ @if (logoIcon()) {
16104
+ <div class="mb-8 flex items-center justify-center size-12 rounded-lg bg-gray-900 dark:bg-black shadow-sm">
16105
+ <neural-icon [name]="logoIcon()" class="size-6 text-white"></neural-icon>
16106
+ </div>
16107
+ }
16106
16108
 
16107
- <div class="relative z-10 p-12 text-center flex flex-col items-center max-w-lg">
16108
- @if (logoIcon()) {
16109
- <div class="size-16 mb-8 flex items-center justify-center rounded-2xl bg-white/50 dark:bg-black/20 backdrop-blur-md shadow-sm border border-white/40 dark:border-white/10">
16110
- <neural-icon [name]="logoIcon()" class="size-8 text-ink-base"></neural-icon>
16111
- </div>
16109
+ <h1 class="text-[28px] leading-tight font-bold tracking-tight text-ink-base mb-2">{{ title() }}</h1>
16110
+ <p class="text-base text-ink-muted mb-8">
16111
+ {{ subtitlePrefix() }}
16112
+ @if (subtitleLinkText() && subtitleLinkHref()) {
16113
+ <a [href]="subtitleLinkHref()" class="font-medium text-ink-base hover:underline transition-colors">{{ subtitleLinkText() }}</a>
16112
16114
  }
16113
- <h1 class="text-4xl font-bold tracking-tight text-ink-base mb-4">{{ title() }}</h1>
16114
- <p class="text-lg text-ink-muted">
16115
- {{ subtitlePrefix() }}
16116
- @if (subtitleLinkText() && subtitleLinkHref()) {
16117
- <a [href]="subtitleLinkHref()" class="font-semibold text-primary hover:text-primary-dark transition-colors">{{ subtitleLinkText() }}</a>
16118
- }
16119
- </p>
16120
- </div>
16121
- </div>
16122
-
16123
- <!-- Form Side (Right) -->
16124
- <div class="flex-1 flex flex-col justify-center py-12 px-4 sm:px-6 lg:px-20 xl:px-24 bg-surface-base lg:border-l border-outline-base shadow-2xl relative z-20">
16125
- <div class="mx-auto w-full max-w-sm lg:max-w-md">
16126
- <!-- Mobile Header (Visible only on small screens) -->
16127
- <div class="lg:hidden text-center mb-10 flex flex-col items-center">
16128
- @if (logoIcon()) {
16129
- <div class="size-12 mb-6 flex items-center justify-center rounded-xl bg-white dark:bg-surface-gray-8 shadow-sm border border-outline-base">
16130
- <neural-icon [name]="logoIcon()" class="size-6 text-ink-base"></neural-icon>
16131
- </div>
16132
- }
16133
- <h2 class="text-3xl font-bold tracking-tight text-ink-base">{{ title() }}</h2>
16134
- <p class="mt-2 text-sm text-ink-muted">
16135
- {{ subtitlePrefix() }}
16136
- @if (subtitleLinkText() && subtitleLinkHref()) {
16137
- <a [href]="subtitleLinkHref()" class="font-semibold text-primary hover:text-primary-dark transition-colors">{{ subtitleLinkText() }}</a>
16138
- }
16139
- </p>
16140
- </div>
16141
-
16142
- <!-- Content Projection for the form -->
16143
- <ng-content></ng-content>
16144
- </div>
16115
+ </p>
16116
+
16117
+ <ng-content></ng-content>
16145
16118
  </div>
16146
16119
  </div>
16147
16120
  `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: NeuralIconComponent, selector: "neural-icon", inputs: ["name"] }] });
@@ -16153,50 +16126,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.4", ngImpor
16153
16126
  standalone: true,
16154
16127
  imports: [CommonModule, NeuralIconComponent],
16155
16128
  template: `
16156
- <div data-slot="auth-shell" class="min-h-screen flex bg-surface-base font-sans">
16157
- <!-- Branding / Image Side (Left) -->
16158
- <div class="hidden lg:flex lg:w-1/2 xl:w-7/12 relative bg-surface-gray-2 dark:bg-surface-gray-8 items-center justify-center overflow-hidden">
16159
- <!-- Dynamic Background Gradient -->
16160
- <div class="absolute inset-0 bg-gradient-to-br from-primary/10 to-primary/5 dark:from-primary/20 dark:to-primary/5"></div>
16129
+ <div data-slot="auth-shell" class="min-h-screen flex items-center justify-center bg-white dark:bg-surface-gray-8 font-sans py-12 px-4 sm:px-6 lg:px-8">
16130
+ <div class="w-full max-w-[360px]">
16131
+ @if (logoIcon()) {
16132
+ <div class="mb-8 flex items-center justify-center size-12 rounded-lg bg-gray-900 dark:bg-black shadow-sm">
16133
+ <neural-icon [name]="logoIcon()" class="size-6 text-white"></neural-icon>
16134
+ </div>
16135
+ }
16161
16136
 
16162
- <div class="relative z-10 p-12 text-center flex flex-col items-center max-w-lg">
16163
- @if (logoIcon()) {
16164
- <div class="size-16 mb-8 flex items-center justify-center rounded-2xl bg-white/50 dark:bg-black/20 backdrop-blur-md shadow-sm border border-white/40 dark:border-white/10">
16165
- <neural-icon [name]="logoIcon()" class="size-8 text-ink-base"></neural-icon>
16166
- </div>
16137
+ <h1 class="text-[28px] leading-tight font-bold tracking-tight text-ink-base mb-2">{{ title() }}</h1>
16138
+ <p class="text-base text-ink-muted mb-8">
16139
+ {{ subtitlePrefix() }}
16140
+ @if (subtitleLinkText() && subtitleLinkHref()) {
16141
+ <a [href]="subtitleLinkHref()" class="font-medium text-ink-base hover:underline transition-colors">{{ subtitleLinkText() }}</a>
16167
16142
  }
16168
- <h1 class="text-4xl font-bold tracking-tight text-ink-base mb-4">{{ title() }}</h1>
16169
- <p class="text-lg text-ink-muted">
16170
- {{ subtitlePrefix() }}
16171
- @if (subtitleLinkText() && subtitleLinkHref()) {
16172
- <a [href]="subtitleLinkHref()" class="font-semibold text-primary hover:text-primary-dark transition-colors">{{ subtitleLinkText() }}</a>
16173
- }
16174
- </p>
16175
- </div>
16176
- </div>
16177
-
16178
- <!-- Form Side (Right) -->
16179
- <div class="flex-1 flex flex-col justify-center py-12 px-4 sm:px-6 lg:px-20 xl:px-24 bg-surface-base lg:border-l border-outline-base shadow-2xl relative z-20">
16180
- <div class="mx-auto w-full max-w-sm lg:max-w-md">
16181
- <!-- Mobile Header (Visible only on small screens) -->
16182
- <div class="lg:hidden text-center mb-10 flex flex-col items-center">
16183
- @if (logoIcon()) {
16184
- <div class="size-12 mb-6 flex items-center justify-center rounded-xl bg-white dark:bg-surface-gray-8 shadow-sm border border-outline-base">
16185
- <neural-icon [name]="logoIcon()" class="size-6 text-ink-base"></neural-icon>
16186
- </div>
16187
- }
16188
- <h2 class="text-3xl font-bold tracking-tight text-ink-base">{{ title() }}</h2>
16189
- <p class="mt-2 text-sm text-ink-muted">
16190
- {{ subtitlePrefix() }}
16191
- @if (subtitleLinkText() && subtitleLinkHref()) {
16192
- <a [href]="subtitleLinkHref()" class="font-semibold text-primary hover:text-primary-dark transition-colors">{{ subtitleLinkText() }}</a>
16193
- }
16194
- </p>
16195
- </div>
16196
-
16197
- <!-- Content Projection for the form -->
16198
- <ng-content></ng-content>
16199
- </div>
16143
+ </p>
16144
+
16145
+ <ng-content></ng-content>
16200
16146
  </div>
16201
16147
  </div>
16202
16148
  `