@chill-sharp/create-app 1.1.12 → 1.1.15

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.
Files changed (40) hide show
  1. package/README.md +12 -12
  2. package/package.json +36 -36
  3. package/template/.agents/skills/chillsharp-current-user-preferences/SKILL.md +70 -70
  4. package/template/.agents/skills/chillsharp-ui-template/SKILL.md +18 -18
  5. package/template/.editorconfig +11 -11
  6. package/template/.github/workflows/ci.yml +33 -33
  7. package/template/.github/workflows/deploy.yml +36 -36
  8. package/template/angular.json +131 -131
  9. package/template/doc/CurrentUserPreferences.md +106 -106
  10. package/template/doc/it/CurrentUserPreferences.md +106 -106
  11. package/template/gitignore +6 -6
  12. package/template/package.json +43 -43
  13. package/template/public/env.js +15 -15
  14. package/template/public/runtime-config.js +10 -10
  15. package/template/public/sw.js +8 -8
  16. package/template/src/app/app.component.spec.ts +15 -15
  17. package/template/src/app/app.component.ts +10 -10
  18. package/template/src/app/app.config.ts +22 -22
  19. package/template/src/app/app.routes.ts +14 -14
  20. package/template/src/app/core/overrides/README.md +12 -12
  21. package/template/src/app/core/overrides/register-client-overrides.ts +5 -5
  22. package/template/src/app/core/plugins/README.md +17 -17
  23. package/template/src/app/core/plugins/hello-plugin/README.md +25 -25
  24. package/template/src/app/core/plugins/hello-plugin/hello-plugin.component.ts +28 -28
  25. package/template/src/app/core/plugins/register-client-plugins.ts +16 -16
  26. package/template/src/app/core/providers/client-template.providers.ts +8 -8
  27. package/template/src/app/pages/client-home/client-home.component.ts +41 -41
  28. package/template/src/assets/branding/logo.svg +7 -7
  29. package/template/src/config/app-config.ts +17 -17
  30. package/template/src/config/runtime-config.ts +13 -13
  31. package/template/src/environments/environment.prod.ts +4 -4
  32. package/template/src/environments/environment.ts +4 -4
  33. package/template/src/index.html +22 -22
  34. package/template/src/main.ts +6 -6
  35. package/template/src/runtime-config.d.ts +10 -10
  36. package/template/src/styles.scss +116 -116
  37. package/template/tsconfig.app.json +13 -13
  38. package/template/tsconfig.json +33 -33
  39. package/template/tsconfig.spec.json +13 -13
  40. package/bin/create-chill-sharp-app.mjs +0 -60
@@ -1,28 +1,28 @@
1
- import { CommonModule } from '@angular/common';
2
- import { Component, computed, inject } from '@angular/core';
3
- import { toSignal } from '@angular/core/rxjs-interop';
4
- import { ActivatedRoute } from '@angular/router';
5
- import { map } from 'rxjs';
6
-
7
- @Component({
8
- selector: 'app-hello-plugin',
9
- standalone: true,
10
- imports: [CommonModule],
11
- template: `
12
- <section class="client-template-page">
13
- <p class="eyebrow">Hello Plugin</p>
14
- <h1>Hello {{ name() }}</h1>
15
- </section>
16
- `
17
- })
18
- export class HelloPluginComponent {
19
- private readonly route = inject(ActivatedRoute);
20
- private readonly routeName = toSignal(this.route.paramMap.pipe(
21
- map((params) => params.get('name')?.trim() ?? '')
22
- ), { initialValue: '' });
23
-
24
- protected readonly name = computed(() => {
25
- const value = this.routeName();
26
- return value || 'World';
27
- });
28
- }
1
+ import { CommonModule } from '@angular/common';
2
+ import { Component, computed, inject } from '@angular/core';
3
+ import { toSignal } from '@angular/core/rxjs-interop';
4
+ import { ActivatedRoute } from '@angular/router';
5
+ import { map } from 'rxjs';
6
+
7
+ @Component({
8
+ selector: 'app-hello-plugin',
9
+ standalone: true,
10
+ imports: [CommonModule],
11
+ template: `
12
+ <section class="client-template-page">
13
+ <p class="eyebrow">Hello Plugin</p>
14
+ <h1>Hello {{ name() }}</h1>
15
+ </section>
16
+ `
17
+ })
18
+ export class HelloPluginComponent {
19
+ private readonly route = inject(ActivatedRoute);
20
+ private readonly routeName = toSignal(this.route.paramMap.pipe(
21
+ map((params) => params.get('name')?.trim() ?? '')
22
+ ), { initialValue: '' });
23
+
24
+ protected readonly name = computed(() => {
25
+ const value = this.routeName();
26
+ return value || 'World';
27
+ });
28
+ }
@@ -1,16 +1,16 @@
1
- import { Routes } from '@angular/router';
2
- import { HelloPluginComponent } from './hello-plugin/hello-plugin.component';
3
- import { ClientHomeComponent } from '../../pages/client-home/client-home.component';
4
-
5
- export function getClientFeatureRoutes(): Routes {
6
- return [
7
- {
8
- path: 'hello-plugin/:name',
9
- component: HelloPluginComponent
10
- },
11
- {
12
- path: 'client-home',
13
- component: ClientHomeComponent
14
- }
15
- ];
16
- }
1
+ import { Routes } from '@angular/router';
2
+ import { HelloPluginComponent } from './hello-plugin/hello-plugin.component';
3
+ import { ClientHomeComponent } from '../../pages/client-home/client-home.component';
4
+
5
+ export function getClientFeatureRoutes(): Routes {
6
+ return [
7
+ {
8
+ path: 'hello-plugin/:name',
9
+ component: HelloPluginComponent
10
+ },
11
+ {
12
+ path: 'client-home',
13
+ component: ClientHomeComponent
14
+ }
15
+ ];
16
+ }
@@ -1,8 +1,8 @@
1
- import { Provider } from '@angular/core';
2
- import { getClientOverrideProviders } from '../overrides/register-client-overrides';
3
-
4
- export function provideClientTemplateProviders(): Provider[] {
5
- return [
6
- ...getClientOverrideProviders()
7
- ];
8
- }
1
+ import { Provider } from '@angular/core';
2
+ import { getClientOverrideProviders } from '../overrides/register-client-overrides';
3
+
4
+ export function provideClientTemplateProviders(): Provider[] {
5
+ return [
6
+ ...getClientOverrideProviders()
7
+ ];
8
+ }
@@ -1,41 +1,41 @@
1
- import { CommonModule } from '@angular/common';
2
- import { Component } from '@angular/core';
3
- import { CLIENT_APP_CONFIG } from '../../../config/app-config';
4
- import { readClientRuntimeConfig } from '../../../config/runtime-config';
5
-
6
- @Component({
7
- selector: 'app-client-home',
8
- standalone: true,
9
- imports: [CommonModule],
10
- template: `
11
- <section class="client-template-page">
12
- <p class="eyebrow">Client Template</p>
13
- <h1>{{ appConfig.appName }}</h1>
14
- <p>
15
- This is a client-owned route that lives in the template shell instead of the shared
16
- <code>&#64;chill-sharp/ui-core</code> package.
17
- </p>
18
-
19
- <div class="client-template-grid">
20
- <article class="client-template-card">
21
- <strong>Tenant</strong>
22
- <p>{{ runtimeConfig.tenantCode }}</p>
23
- </article>
24
-
25
- <article class="client-template-card">
26
- <strong>API</strong>
27
- <p>{{ appConfig.apiBaseUrl }}</p>
28
- </article>
29
-
30
- <article class="client-template-card">
31
- <strong>Theme</strong>
32
- <p>{{ appConfig.themeName }}</p>
33
- </article>
34
- </div>
35
- </section>
36
- `
37
- })
38
- export class ClientHomeComponent {
39
- protected readonly appConfig = CLIENT_APP_CONFIG;
40
- protected readonly runtimeConfig = readClientRuntimeConfig();
41
- }
1
+ import { CommonModule } from '@angular/common';
2
+ import { Component } from '@angular/core';
3
+ import { CLIENT_APP_CONFIG } from '../../../config/app-config';
4
+ import { readClientRuntimeConfig } from '../../../config/runtime-config';
5
+
6
+ @Component({
7
+ selector: 'app-client-home',
8
+ standalone: true,
9
+ imports: [CommonModule],
10
+ template: `
11
+ <section class="client-template-page">
12
+ <p class="eyebrow">Client Template</p>
13
+ <h1>{{ appConfig.appName }}</h1>
14
+ <p>
15
+ This is a client-owned route that lives in the template shell instead of the shared
16
+ <code>&#64;chill-sharp/ui-core</code> package.
17
+ </p>
18
+
19
+ <div class="client-template-grid">
20
+ <article class="client-template-card">
21
+ <strong>Tenant</strong>
22
+ <p>{{ runtimeConfig.tenantCode }}</p>
23
+ </article>
24
+
25
+ <article class="client-template-card">
26
+ <strong>API</strong>
27
+ <p>{{ appConfig.apiBaseUrl }}</p>
28
+ </article>
29
+
30
+ <article class="client-template-card">
31
+ <strong>Theme</strong>
32
+ <p>{{ appConfig.themeName }}</p>
33
+ </article>
34
+ </div>
35
+ </section>
36
+ `
37
+ })
38
+ export class ClientHomeComponent {
39
+ protected readonly appConfig = CLIENT_APP_CONFIG;
40
+ protected readonly runtimeConfig = readClientRuntimeConfig();
41
+ }
@@ -1,7 +1,7 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 160 48" role="img" aria-labelledby="title">
2
- <title>Client Template Logo</title>
3
- <rect width="160" height="48" rx="12" fill="#13424d"/>
4
- <circle cx="28" cy="24" r="10" fill="#f5c46b"/>
5
- <path d="M52 16h54c8 0 14 6 14 14s-6 14-14 14H52z" fill="#0f6d61"/>
6
- <text x="60" y="30" font-family="Segoe UI, sans-serif" font-size="15" fill="#fffdf8">Client UI</text>
7
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 160 48" role="img" aria-labelledby="title">
2
+ <title>Client Template Logo</title>
3
+ <rect width="160" height="48" rx="12" fill="#13424d"/>
4
+ <circle cx="28" cy="24" r="10" fill="#f5c46b"/>
5
+ <path d="M52 16h54c8 0 14 6 14 14s-6 14-14 14H52z" fill="#0f6d61"/>
6
+ <text x="60" y="30" font-family="Segoe UI, sans-serif" font-size="15" fill="#fffdf8">Client UI</text>
7
+ </svg>
@@ -1,17 +1,17 @@
1
- import { environment } from '../environments/environment';
2
-
3
- export interface ClientAppConfig {
4
- appName: string;
5
- apiBaseUrl: string;
6
- tenantCode: string;
7
- themeName: string;
8
- supportEmail: string;
9
- }
10
-
11
- export const CLIENT_APP_CONFIG: ClientAppConfig = {
12
- appName: 'ChillSharp Client Template',
13
- apiBaseUrl: environment.apiBaseUrl,
14
- tenantCode: 'template-client',
15
- themeName: 'template-default',
16
- supportEmail: 'support@example.com'
17
- };
1
+ import { environment } from '../environments/environment';
2
+
3
+ export interface ClientAppConfig {
4
+ appName: string;
5
+ apiBaseUrl: string;
6
+ tenantCode: string;
7
+ themeName: string;
8
+ supportEmail: string;
9
+ }
10
+
11
+ export const CLIENT_APP_CONFIG: ClientAppConfig = {
12
+ appName: 'ChillSharp Client Template',
13
+ apiBaseUrl: environment.apiBaseUrl,
14
+ tenantCode: 'template-client',
15
+ themeName: 'template-default',
16
+ supportEmail: 'support@example.com'
17
+ };
@@ -1,13 +1,13 @@
1
- export interface ClientTemplateRuntimeConfig {
2
- tenantCode: string;
3
- featureFlags: Record<string, boolean>;
4
- }
5
-
6
- export function readClientRuntimeConfig(): ClientTemplateRuntimeConfig {
7
- const runtimeConfig = globalThis.__clientUiTemplateRuntimeConfig__;
8
-
9
- return {
10
- tenantCode: runtimeConfig?.tenantCode ?? 'template-client',
11
- featureFlags: runtimeConfig?.featureFlags ?? {}
12
- };
13
- }
1
+ export interface ClientTemplateRuntimeConfig {
2
+ tenantCode: string;
3
+ featureFlags: Record<string, boolean>;
4
+ }
5
+
6
+ export function readClientRuntimeConfig(): ClientTemplateRuntimeConfig {
7
+ const runtimeConfig = globalThis.__clientUiTemplateRuntimeConfig__;
8
+
9
+ return {
10
+ tenantCode: runtimeConfig?.tenantCode ?? 'template-client',
11
+ featureFlags: runtimeConfig?.featureFlags ?? {}
12
+ };
13
+ }
@@ -1,4 +1,4 @@
1
- export const environment = {
2
- production: true,
3
- apiBaseUrl: globalThis.CHILLSHARP_API_URL?.trim() || 'https://example.invalid/api'
4
- };
1
+ export const environment = {
2
+ production: true,
3
+ apiBaseUrl: globalThis.CHILLSHARP_API_URL?.trim() || 'https://example.invalid/api'
4
+ };
@@ -1,4 +1,4 @@
1
- export const environment = {
2
- production: false,
3
- apiBaseUrl: globalThis.CHILLSHARP_API_URL?.trim() || 'http://localhost:6002/api'
4
- };
1
+ export const environment = {
2
+ production: false,
3
+ apiBaseUrl: globalThis.CHILLSHARP_API_URL?.trim() || 'http://localhost:6002/api'
4
+ };
@@ -1,22 +1,22 @@
1
- <!doctype html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="utf-8">
5
- <title>ChillSharp UI Template</title>
6
- <base href="/">
7
- <meta name="viewport" content="width=device-width, initial-scale=1">
8
- </head>
9
- <body>
10
- <script src="env.js"></script>
11
- <script src="runtime-config.js"></script>
12
- <app-root></app-root>
13
- <script>
14
- if ('serviceWorker' in navigator) {
15
- window.addEventListener('load', () => {
16
- navigator.serviceWorker.register('/sw.js', { updateViaCache: 'none' })
17
- .catch((error) => console.error('Service worker registration failed.', error));
18
- });
19
- }
20
- </script>
21
- </body>
22
- </html>
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>ChillSharp UI Template</title>
6
+ <base href="/">
7
+ <meta name="viewport" content="width=device-width, initial-scale=1">
8
+ </head>
9
+ <body>
10
+ <script src="env.js"></script>
11
+ <script src="runtime-config.js"></script>
12
+ <app-root></app-root>
13
+ <script>
14
+ if ('serviceWorker' in navigator) {
15
+ window.addEventListener('load', () => {
16
+ navigator.serviceWorker.register('/sw.js', { updateViaCache: 'none' })
17
+ .catch((error) => console.error('Service worker registration failed.', error));
18
+ });
19
+ }
20
+ </script>
21
+ </body>
22
+ </html>
@@ -1,6 +1,6 @@
1
- import { bootstrapApplication } from '@angular/platform-browser';
2
- import { appConfig } from './app/app.config';
3
- import { AppComponent } from './app/app.component';
4
-
5
- bootstrapApplication(AppComponent, appConfig)
6
- .catch((err) => console.error(err));
1
+ import { bootstrapApplication } from '@angular/platform-browser';
2
+ import { appConfig } from './app/app.config';
3
+ import { AppComponent } from './app/app.component';
4
+
5
+ bootstrapApplication(AppComponent, appConfig)
6
+ .catch((err) => console.error(err));
@@ -1,10 +1,10 @@
1
- declare global {
2
- var CHILLSHARP_API_URL: string | undefined;
3
- var CHILLSHARP_UI_URL: string | undefined;
4
- var __clientUiTemplateRuntimeConfig__: {
5
- tenantCode?: string;
6
- featureFlags?: Record<string, boolean>;
7
- } | undefined;
8
- }
9
-
10
- export {};
1
+ declare global {
2
+ var CHILLSHARP_API_URL: string | undefined;
3
+ var CHILLSHARP_UI_URL: string | undefined;
4
+ var __clientUiTemplateRuntimeConfig__: {
5
+ tenantCode?: string;
6
+ featureFlags?: Record<string, boolean>;
7
+ } | undefined;
8
+ }
9
+
10
+ export {};
@@ -1,116 +1,116 @@
1
- @use '@chill-sharp/ui-core/styles/core-theme.scss';
2
-
3
- :root {
4
- --font-sans: "Segoe UI Variable", "Segoe UI", sans-serif;
5
- --bg-top: #f6f0e8;
6
- --bg-bottom: #dfeaea;
7
- --accent: #0f6d61;
8
- --accent-strong: #13424d;
9
- --accent-soft: rgba(15, 109, 97, 0.14);
10
- --surface-0: #fffdf8;
11
- --surface-1: rgba(255, 253, 248, 0.84);
12
- --surface-2: rgba(255, 255, 255, 0.72);
13
- --surface-3: rgba(239, 246, 246, 0.9);
14
- --text-main: #18313b;
15
- --text-muted: #64757a;
16
- --border-color: rgba(24, 49, 59, 0.13);
17
- --shadow: 0 24px 60px rgba(20, 65, 77, 0.12);
18
- --shadow-soft: 0 12px 30px rgba(20, 65, 77, 0.08);
19
- --workspace-backdrop:
20
- radial-gradient(circle at top left, rgba(15, 109, 97, 0.16), transparent 28%),
21
- radial-gradient(circle at top right, rgba(188, 146, 93, 0.14), transparent 24%),
22
- linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
23
- }
24
-
25
- body::before {
26
- content: '';
27
- position: fixed;
28
- inset: 0;
29
- pointer-events: none;
30
- background:
31
- linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
32
- linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
33
- background-size: 2rem 2rem;
34
- mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 70%);
35
- opacity: 0.28;
36
- }
37
-
38
- .client-template-page {
39
- max-width: 64rem;
40
- margin: 2.5rem auto;
41
- padding: 2rem;
42
- border-radius: 1.5rem;
43
- border: 1px solid var(--border-color);
44
- background: var(--surface-1);
45
- box-shadow: var(--shadow-soft);
46
- backdrop-filter: blur(16px);
47
- }
48
-
49
- .client-template-page h1 {
50
- margin: 0;
51
- font-size: clamp(2rem, 5vw, 3.4rem);
52
- line-height: 0.95;
53
- }
54
-
55
- .client-template-page p {
56
- color: var(--text-muted);
57
- }
58
-
59
- .client-template-grid {
60
- display: grid;
61
- grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
62
- gap: 1rem;
63
- margin-top: 1.5rem;
64
- }
65
-
66
- .client-template-card {
67
- padding: 1rem;
68
- border-radius: 1rem;
69
- background: var(--surface-2);
70
- border: 1px solid var(--border-color);
71
- }
72
-
73
- // Keep the application menu dense and list-like instead of presenting every
74
- // entry as a separate card. These selectors intentionally override the
75
- // public UI-core menu classes from the client template.
76
- .workspace-menu__tree {
77
- gap: 0.15rem;
78
- }
79
-
80
- .workspace-menu__tree-node,
81
- .workspace-menu__tree-children {
82
- gap: 0.1rem;
83
- }
84
-
85
- .workspace-menu__tree-row {
86
- gap: 0.25rem;
87
- }
88
-
89
- .workspace-menu__tree-main {
90
- border: 0;
91
- border-radius: 0.55rem;
92
- background: transparent;
93
- box-shadow: none;
94
- }
95
-
96
- .workspace-menu__tree-main.is-active {
97
- border: 0;
98
- background: var(--accent-soft);
99
- }
100
-
101
- .workspace-menu__tree-main.is-pending-expand {
102
- box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 42%, transparent);
103
- }
104
-
105
- .workspace-menu__tree-trigger {
106
- padding: 0.5rem 0.7rem;
107
- }
108
-
109
- .workspace-menu__tree-expander {
110
- width: 2.25rem;
111
- padding: 0.45rem;
112
- }
113
-
114
- .workspace-menu__tree-meta {
115
- padding: 0 0.7rem 0.5rem;
116
- }
1
+ @use '@chill-sharp/ui-core/styles/core-theme.scss';
2
+
3
+ :root {
4
+ --font-sans: "Segoe UI Variable", "Segoe UI", sans-serif;
5
+ --bg-top: #f6f0e8;
6
+ --bg-bottom: #dfeaea;
7
+ --accent: #0f6d61;
8
+ --accent-strong: #13424d;
9
+ --accent-soft: rgba(15, 109, 97, 0.14);
10
+ --surface-0: #fffdf8;
11
+ --surface-1: rgba(255, 253, 248, 0.84);
12
+ --surface-2: rgba(255, 255, 255, 0.72);
13
+ --surface-3: rgba(239, 246, 246, 0.9);
14
+ --text-main: #18313b;
15
+ --text-muted: #64757a;
16
+ --border-color: rgba(24, 49, 59, 0.13);
17
+ --shadow: 0 24px 60px rgba(20, 65, 77, 0.12);
18
+ --shadow-soft: 0 12px 30px rgba(20, 65, 77, 0.08);
19
+ --workspace-backdrop:
20
+ radial-gradient(circle at top left, rgba(15, 109, 97, 0.16), transparent 28%),
21
+ radial-gradient(circle at top right, rgba(188, 146, 93, 0.14), transparent 24%),
22
+ linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
23
+ }
24
+
25
+ body::before {
26
+ content: '';
27
+ position: fixed;
28
+ inset: 0;
29
+ pointer-events: none;
30
+ background:
31
+ linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
32
+ linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
33
+ background-size: 2rem 2rem;
34
+ mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 70%);
35
+ opacity: 0.28;
36
+ }
37
+
38
+ .client-template-page {
39
+ max-width: 64rem;
40
+ margin: 2.5rem auto;
41
+ padding: 2rem;
42
+ border-radius: 1.5rem;
43
+ border: 1px solid var(--border-color);
44
+ background: var(--surface-1);
45
+ box-shadow: var(--shadow-soft);
46
+ backdrop-filter: blur(16px);
47
+ }
48
+
49
+ .client-template-page h1 {
50
+ margin: 0;
51
+ font-size: clamp(2rem, 5vw, 3.4rem);
52
+ line-height: 0.95;
53
+ }
54
+
55
+ .client-template-page p {
56
+ color: var(--text-muted);
57
+ }
58
+
59
+ .client-template-grid {
60
+ display: grid;
61
+ grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
62
+ gap: 1rem;
63
+ margin-top: 1.5rem;
64
+ }
65
+
66
+ .client-template-card {
67
+ padding: 1rem;
68
+ border-radius: 1rem;
69
+ background: var(--surface-2);
70
+ border: 1px solid var(--border-color);
71
+ }
72
+
73
+ // Keep the application menu dense and list-like instead of presenting every
74
+ // entry as a separate card. These selectors intentionally override the
75
+ // public UI-core menu classes from the client template.
76
+ .workspace-menu__tree {
77
+ gap: 0.15rem;
78
+ }
79
+
80
+ .workspace-menu__tree-node,
81
+ .workspace-menu__tree-children {
82
+ gap: 0.1rem;
83
+ }
84
+
85
+ .workspace-menu__tree-row {
86
+ gap: 0.25rem;
87
+ }
88
+
89
+ .workspace-menu__tree-main {
90
+ border: 0;
91
+ border-radius: 0.55rem;
92
+ background: transparent;
93
+ box-shadow: none;
94
+ }
95
+
96
+ .workspace-menu__tree-main.is-active {
97
+ border: 0;
98
+ background: var(--accent-soft);
99
+ }
100
+
101
+ .workspace-menu__tree-main.is-pending-expand {
102
+ box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 42%, transparent);
103
+ }
104
+
105
+ .workspace-menu__tree-trigger {
106
+ padding: 0.5rem 0.7rem;
107
+ }
108
+
109
+ .workspace-menu__tree-expander {
110
+ width: 2.25rem;
111
+ padding: 0.45rem;
112
+ }
113
+
114
+ .workspace-menu__tree-meta {
115
+ padding: 0 0.7rem 0.5rem;
116
+ }
@@ -1,13 +1,13 @@
1
- {
2
- "extends": "./tsconfig.json",
3
- "compilerOptions": {
4
- "outDir": "./out-tsc/app",
5
- "types": []
6
- },
7
- "include": [
8
- "src/**/*.ts"
9
- ],
10
- "exclude": [
11
- "src/**/*.spec.ts"
12
- ]
13
- }
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "outDir": "./out-tsc/app",
5
+ "types": []
6
+ },
7
+ "include": [
8
+ "src/**/*.ts"
9
+ ],
10
+ "exclude": [
11
+ "src/**/*.spec.ts"
12
+ ]
13
+ }