3 Commits

8 changed files with 1736 additions and 1628 deletions

View File

@@ -2,6 +2,17 @@
"@git.zone/tswatch": {
"preset": "element"
},
"@git.zone/tsbundle": {
"bundles": [
{
"from": "./ts_web/index.ts",
"to": "./dist_bundle/bundle.js",
"outputMode": "bundle",
"bundler": "esbuild",
"production": true
}
]
},
"@git.zone/cli": {
"projectType": "wcc",
"module": {

View File

@@ -1,5 +1,12 @@
# Changelog
## 2026-04-02 - 2.9.1 - fix(build)
migrate build configuration to .smartconfig and update toolchain dependencies
- replace npmextra.json with .smartconfig.json and add tsbundle bundle configuration
- simplify the build script to use the centralized tsbundle configuration
- update build and UI package dependencies and switch TypeScript to explicit node types
## 2026-03-19 - 2.9.0 - feat(app-store-view)
add app details action to store cards

21
license Normal file
View File

@@ -0,0 +1,21 @@
MIT License
Copyright (c) 2024 Task Venture Capital GmbH
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -1,6 +1,6 @@
{
"name": "@serve.zone/catalog",
"version": "2.9.0",
"version": "2.9.1",
"private": false,
"description": "UI component catalog for serve.zone",
"main": "dist_ts_web/index.js",
@@ -8,35 +8,34 @@
"type": "module",
"scripts": {
"test": "tstest test/",
"build": "tsbuild tsfolders --allowimplicitany && tsbundle element --production",
"build": "tsbuild tsfolders --allowimplicitany && tsbundle",
"watch": "tswatch"
},
"author": "Lossless GmbH",
"license": "MIT",
"dependencies": {
"@design.estate/dees-catalog": "^3.43.0",
"@design.estate/dees-domtools": "^2.3.8",
"@design.estate/dees-element": "^2.1.6",
"@design.estate/dees-catalog": "^3.49.2",
"@design.estate/dees-domtools": "^2.5.4",
"@design.estate/dees-element": "^2.2.4",
"@design.estate/dees-wcctools": "^3.8.0"
},
"devDependencies": {
"@git.zone/tsbuild": "^4.1.2",
"@git.zone/tsbundle": "^2.8.3",
"@git.zone/tsrun": "^2.0.1",
"@git.zone/tstest": "^3.1.8",
"@git.zone/tswatch": "^3.1.0",
"@push.rocks/projectinfo": "^5.0.2",
"@types/node": "^25.3.0"
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsbundle": "^2.10.0",
"@git.zone/tsrun": "^2.0.2",
"@git.zone/tstest": "^3.6.3",
"@git.zone/tswatch": "^3.3.2",
"@push.rocks/projectinfo": "^5.1.0",
"@types/node": "^25.5.0"
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"npmextra.json",
".smartconfig.json",
"readme.md"
],
"browserslist": [

3229
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/catalog',
version: '2.9.0',
version: '2.9.1',
description: 'UI component catalog for serve.zone'
}

View File

@@ -55,12 +55,21 @@ export interface IRouteSecurity {
rateLimit?: { enabled: boolean; maxRequests: number; window: number };
}
export interface IRouteMetadata {
securityProfileRef?: string;
networkTargetRef?: string;
securityProfileName?: string;
networkTargetName?: string;
lastResolvedAt?: number;
}
export interface IRouteConfig {
id?: string;
match: IRouteMatch;
action: IRouteAction;
security?: IRouteSecurity;
headers?: { request?: Record<string, string>; response?: Record<string, string> };
metadata?: IRouteMetadata;
name?: string;
description?: string;
priority?: number;
@@ -127,6 +136,10 @@ export class SzRouteCard extends DeesElement {
rateLimit: { enabled: true, maxRequests: 100, window: 60 },
maxConnections: 1000,
},
metadata: {
securityProfileName: 'STANDARD',
networkTargetName: 'LOSSLESS_INFRA',
},
} satisfies IRouteConfig}
></sz-route-card>
</div>
@@ -296,6 +309,21 @@ export class SzRouteCard extends DeesElement {
border-left-color: ${cssManager.bdTheme('#f59e0b', '#f59e0b')};
}
.section.linked {
border-left-color: ${cssManager.bdTheme('#8b5cf6', '#8b5cf6')};
}
.linked-name {
display: inline-flex;
padding: 1px 6px;
border-radius: 3px;
font-size: 12px;
font-weight: 600;
font-family: monospace;
background: ${cssManager.bdTheme('#ede9fe', 'rgba(139, 92, 246, 0.15)')};
color: ${cssManager.bdTheme('#6d28d9', '#a78bfa')};
}
.section-label {
font-size: 10px;
font-weight: 600;
@@ -624,6 +652,9 @@ export class SzRouteCard extends DeesElement {
`
: ''}
<!-- Linked References Section -->
${this.renderLinked()}
<!-- Feature Icons Row -->
${this.renderFeatures()}
</div>
@@ -638,12 +669,43 @@ export class SzRouteCard extends DeesElement {
)}`;
}
private renderLinked(): TemplateResult {
const meta = this.route?.metadata;
if (!meta) return html``;
const hasProfile = !!meta.securityProfileName;
const hasTarget = !!meta.networkTargetName;
if (!hasProfile && !hasTarget) return html``;
return html`
<div class="section linked">
<div class="section-label">Linked</div>
${hasProfile
? html`
<div class="field-row">
<span class="field-key">Profile</span>
<span class="field-value"><span class="linked-name">${meta.securityProfileName}</span></span>
</div>
`
: ''}
${hasTarget
? html`
<div class="field-row">
<span class="field-key">Target</span>
<span class="field-value"><span class="linked-name">${meta.networkTargetName}</span></span>
</div>
`
: ''}
</div>
`;
}
private renderFeatures(): TemplateResult {
if (!this.route) return html``;
const features: TemplateResult[] = [];
const action = this.route.action;
const security = this.route.security;
const headers = this.route.headers;
const meta = this.route.metadata;
if (action.tls) {
features.push(html`<span class="feature"><span class="feature-icon">&#x1f512;</span>TLS</span>`);
@@ -660,6 +722,9 @@ export class SzRouteCard extends DeesElement {
if (headers) {
features.push(html`<span class="feature"><span class="feature-icon">&#x2699;</span>Headers</span>`);
}
if (meta?.securityProfileName || meta?.networkTargetName) {
features.push(html`<span class="feature"><span class="feature-icon">&#x1f517;</span>Linked</span>`);
}
if (features.length === 0) return html``;
return html`<div class="features-row">${features}</div>`;

View File

@@ -5,7 +5,7 @@
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true
"types": ["node"]
},
"exclude": [
"dist_*/**/*.d.ts"