Merge remote-tracking branch 'origin/v19' into v19

This commit is contained in:
Çetin
2025-01-07 17:29:57 +03:00

View File

@@ -45,7 +45,7 @@ declare type SurfacesType = {
<div class="flex flex-col gap-4"> <div class="flex flex-col gap-4">
<div> <div>
<span class="text-sm text-muted-color font-semibold">Primary</span> <span class="text-sm text-muted-color font-semibold">Primary</span>
<div class="pt-2 flex gap-2 flex-wrap justify-between"> <div class="pt-2 flex gap-2 flex-wrap justify-start">
@for (primaryColor of primaryColors(); track primaryColor.name) { @for (primaryColor of primaryColors(); track primaryColor.name) {
<button <button
type="button" type="button"
@@ -62,7 +62,7 @@ declare type SurfacesType = {
</div> </div>
<div> <div>
<span class="text-sm text-muted-color font-semibold">Surface</span> <span class="text-sm text-muted-color font-semibold">Surface</span>
<div class="pt-2 flex gap-2 flex-wrap justify-between"> <div class="pt-2 flex gap-2 flex-wrap justify-start">
@for (surface of surfaces; track surface.name) { @for (surface of surfaces; track surface.name) {
<button <button
type="button" type="button"
@@ -88,7 +88,7 @@ declare type SurfacesType = {
</div> </div>
`, `,
host: { host: {
class: 'hidden absolute top-[3.25rem] right-0 w-64 p-4 bg-surface-0 dark:bg-surface-900 border border-surface rounded-border origin-top shadow-[0px_3px_5px_rgba(0,0,0,0.02),0px_0px_2px_rgba(0,0,0,0.05),0px_1px_4px_rgba(0,0,0,0.08)]' class: 'hidden absolute top-[3.25rem] right-0 w-72 p-4 bg-surface-0 dark:bg-surface-900 border border-surface rounded-border origin-top shadow-[0px_3px_5px_rgba(0,0,0,0.02),0px_0px_2px_rgba(0,0,0,0.05),0px_1px_4px_rgba(0,0,0,0.08)]'
} }
}) })
export class AppConfigurator { export class AppConfigurator {