@saasicat/ui-vue 0.7.0 → 0.8.0
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.
- package/dist/{chunk-A3W2N26K.js → chunk-7N3CJTOA.js} +7 -227
- package/dist/{chunk-X5SQ5HMB.js → chunk-TBLXKSTR.js} +0 -137
- package/dist/{chunk-QZOSDCNP.js → chunk-TY2WYKME.js} +1 -1
- package/dist/client/index.cjs +112 -467
- package/dist/client/index.d.cts +4 -62
- package/dist/client/index.d.ts +4 -62
- package/dist/client/index.js +2 -6
- package/dist/index.cjs +204 -583
- package/dist/index.d.cts +10 -55
- package/dist/index.d.ts +10 -55
- package/dist/index.js +74 -101
- package/dist/{messages-7b0P8W75.d.ts → messages-BIYw32u1.d.cts} +0 -67
- package/dist/{messages-7b0P8W75.d.cts → messages-BIYw32u1.d.ts} +0 -67
- package/dist/quasar/index.cjs +0 -136
- package/dist/quasar/index.d.cts +2 -2
- package/dist/quasar/index.d.ts +2 -2
- package/dist/quasar/index.js +2 -2
- package/dist/{use-super-admin-i18n-B3v3-SWZ.d.ts → use-super-admin-i18n-CWNu_W3u.d.ts} +1 -1
- package/dist/{use-super-admin-i18n-DMktRVEt.d.cts → use-super-admin-i18n-DL_qI1BY.d.cts} +1 -1
- package/package.json +2 -2
- package/src/client/i18n/messages/nav.ts +0 -2
- package/src/client/i18n/messages/plan-versions.ts +0 -143
- package/src/client/index.ts +0 -2
- package/src/client/nav-builder.ts +9 -4
- package/src/index.ts +0 -1
- package/src/pages-standard/AdminLayout.vue +1 -1
- package/src/pages-standard/plan-versions/PlanVersionsDiff.vue +1 -1
- package/src/pages-standard/plan-versions/PlanVersionsTimeline.vue +1 -1
- package/src/pages-standard/plan-versions/catalog-history.types.ts +37 -0
- package/src/pages-standard/plan-versions/format.ts +2 -38
- package/src/client/plan-versions-catalog.ts +0 -380
- package/src/pages-standard/PlanVersionsPage.vue +0 -220
- package/src/pages-standard/plan-versions/PlanVersionHeader.vue +0 -309
- package/src/pages-standard/plan-versions/PlanVersionStatusBadge.vue +0 -48
- package/src/pages-standard/plan-versions/PlanVersionsAudit.vue +0 -326
- package/src/pages-standard/plan-versions/PlanVersionsKpi.vue +0 -65
- package/src/pages-standard/plan-versions/PlanVersionsList.vue +0 -315
- package/src/pages-standard/plan-versions/PlanVersionsMatrix.vue +0 -261
- package/src/pages-standard/plan-versions/types.ts +0 -33
- package/src/vue/use-plan-versions.ts +0 -83
package/dist/client/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { H as HttpClient, K as KvStore, S as SaLocale } from '../messages-
|
|
2
|
-
export { d as ActionDefNotInManifestError, A as ActionHandler, c as ActionRegistry, D as DEFAULT_SA_LOCALE, e as HttpResponse, M as MessageTree, f as MissingHandlerError, P as PartialMessages, R as ResolvedAction, g as SA_INTL_LOCALES, h as SA_LOCALES, i as SA_MESSAGES, a as SaMessages, b as SaMessagesOverrides, T as TranslationOf, j as defaultHttpClient, k as defaultKvStore, l as defineMessages, m as mergeMessages, r as resolveMessages } from '../messages-
|
|
3
|
-
import { PublicBootResponse, AdminManifest, StandardPageKey, TenantColumnDef
|
|
1
|
+
import { H as HttpClient, K as KvStore, S as SaLocale } from '../messages-BIYw32u1.cjs';
|
|
2
|
+
export { d as ActionDefNotInManifestError, A as ActionHandler, c as ActionRegistry, D as DEFAULT_SA_LOCALE, e as HttpResponse, M as MessageTree, f as MissingHandlerError, P as PartialMessages, R as ResolvedAction, g as SA_INTL_LOCALES, h as SA_LOCALES, i as SA_MESSAGES, a as SaMessages, b as SaMessagesOverrides, T as TranslationOf, j as defaultHttpClient, k as defaultKvStore, l as defineMessages, m as mergeMessages, r as resolveMessages } from '../messages-BIYw32u1.cjs';
|
|
3
|
+
import { PublicBootResponse, AdminManifest, StandardPageKey, TenantColumnDef } from '@saasicat/types';
|
|
4
4
|
|
|
5
5
|
declare const ADMIN_UI_VERSION = "1.2.0";
|
|
6
6
|
|
|
@@ -247,64 +247,6 @@ declare class BatchColumnFetcher {
|
|
|
247
247
|
private buildUrl;
|
|
248
248
|
}
|
|
249
249
|
|
|
250
|
-
type SnapshotKind = 'drafts' | 'active' | 'historical';
|
|
251
|
-
interface CatalogSnapshot<P extends PlanVersionRow = PlanVersionRow> {
|
|
252
|
-
id: string;
|
|
253
|
-
kind: SnapshotKind;
|
|
254
|
-
status: 'DRAFT' | 'ACTIVE' | 'ARCHIVED';
|
|
255
|
-
label: string;
|
|
256
|
-
title: string;
|
|
257
|
-
description: string;
|
|
258
|
-
asOf: string | null;
|
|
259
|
-
createdAt: string | null;
|
|
260
|
-
publishedAt: string | null;
|
|
261
|
-
authorEmail: string | null;
|
|
262
|
-
plans: ResolvedPlan<P>[];
|
|
263
|
-
/** Number of open drafts for the `drafts` snapshot, otherwise 0. */
|
|
264
|
-
draftCount: number;
|
|
265
|
-
/** Number of entities in this snapshot whose publication flagged at least
|
|
266
|
-
* one regression (`nonRegressive === false`). */
|
|
267
|
-
regressionCount: number;
|
|
268
|
-
}
|
|
269
|
-
interface ResolvedPlan<P extends PlanVersionRow = PlanVersionRow> {
|
|
270
|
-
/** Which PlanVersionRow was selected to represent this slot. */
|
|
271
|
-
source: P;
|
|
272
|
-
/** Live predecessor (only set when `source` is a DRAFT; otherwise null). */
|
|
273
|
-
liveBase: P | null;
|
|
274
|
-
isDraft: boolean;
|
|
275
|
-
planId: string;
|
|
276
|
-
features: string[];
|
|
277
|
-
/** Quota map (from `source.quotas` or legacy fields; empty if none). */
|
|
278
|
-
quotas: Record<string, number>;
|
|
279
|
-
monthlyNet: number;
|
|
280
|
-
yearlyNet: number;
|
|
281
|
-
marketed: boolean;
|
|
282
|
-
version: number;
|
|
283
|
-
/** @deprecated Read from `quotas['users']`. */
|
|
284
|
-
maxUsers?: number;
|
|
285
|
-
/** @deprecated Legacy field; read from `quotas['vehicles']`. */
|
|
286
|
-
maxVehicles?: number;
|
|
287
|
-
/** @deprecated Read from `quotas['storageGb']`. */
|
|
288
|
-
maxStorageGb?: number;
|
|
289
|
-
}
|
|
290
|
-
interface RawCatalogData<P extends PlanVersionRow = PlanVersionRow> {
|
|
291
|
-
planVersions: P[];
|
|
292
|
-
}
|
|
293
|
-
interface BuildSnapshotsOptions {
|
|
294
|
-
/**
|
|
295
|
-
* App-specific plan order, e.g. `['BASIC', 'STANDARD',
|
|
296
|
-
* 'PROFESSIONAL', 'BUSINESS', 'ENTERPRISE']`. Plan IDs outside the list
|
|
297
|
-
* end up sorted alphabetically at the back.
|
|
298
|
-
*/
|
|
299
|
-
planSortOrder?: readonly string[];
|
|
300
|
-
/** UI locale for the generated snapshot labels/titles/descriptions. */
|
|
301
|
-
locale?: SaLocale;
|
|
302
|
-
}
|
|
303
|
-
declare function buildSnapshots<P extends PlanVersionRow>(data: RawCatalogData<P>, options?: BuildSnapshotsOptions): CatalogSnapshot<P>[];
|
|
304
|
-
declare function listOpenDrafts<P extends PlanVersionRow>(data: RawCatalogData<P>): {
|
|
305
|
-
plans: P[];
|
|
306
|
-
};
|
|
307
|
-
|
|
308
250
|
type MessageParams = Record<string, string | number>;
|
|
309
251
|
declare function formatMessage(template: string, params: MessageParams): string;
|
|
310
252
|
|
|
@@ -318,4 +260,4 @@ declare function formatMessage(template: string, params: MessageParams): string;
|
|
|
318
260
|
*/
|
|
319
261
|
declare function formatCurrency(amount: number | string | null | undefined, locale?: SaLocale, currency?: string): string;
|
|
320
262
|
|
|
321
|
-
export { ADMIN_UI_VERSION, type BatchColumnData, BatchColumnDriftError, BatchColumnFetcher, type BatchColumnFetcherOptions, type BatchColumnRow, type BatchColumnValue, BootLoadError, BootLoader, type BootLoaderOptions, type BuildRouteEntry, type
|
|
263
|
+
export { ADMIN_UI_VERSION, type BatchColumnData, BatchColumnDriftError, BatchColumnFetcher, type BatchColumnFetcherOptions, type BatchColumnRow, type BatchColumnValue, BootLoadError, BootLoader, type BootLoaderOptions, type BuildRouteEntry, type CachedManifestEntry, DEFAULT_STANDARD_PAGE_ROUTES, HttpClient, HttpJsonError, KvStore, ManifestLoadError, ManifestLoader, type ManifestLoaderOptions, type MessageParams, type NavBuilderOptions, type ParamStyle, SaLocale, type SidebarItem, type SidebarSection, buildRoutes, buildSidebar, defaultSectionOrder, formatCurrency, formatMessage, getJson, postJson, resolveExtension, trimTrailingSlashes };
|
package/dist/client/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { H as HttpClient, K as KvStore, S as SaLocale } from '../messages-
|
|
2
|
-
export { d as ActionDefNotInManifestError, A as ActionHandler, c as ActionRegistry, D as DEFAULT_SA_LOCALE, e as HttpResponse, M as MessageTree, f as MissingHandlerError, P as PartialMessages, R as ResolvedAction, g as SA_INTL_LOCALES, h as SA_LOCALES, i as SA_MESSAGES, a as SaMessages, b as SaMessagesOverrides, T as TranslationOf, j as defaultHttpClient, k as defaultKvStore, l as defineMessages, m as mergeMessages, r as resolveMessages } from '../messages-
|
|
3
|
-
import { PublicBootResponse, AdminManifest, StandardPageKey, TenantColumnDef
|
|
1
|
+
import { H as HttpClient, K as KvStore, S as SaLocale } from '../messages-BIYw32u1.js';
|
|
2
|
+
export { d as ActionDefNotInManifestError, A as ActionHandler, c as ActionRegistry, D as DEFAULT_SA_LOCALE, e as HttpResponse, M as MessageTree, f as MissingHandlerError, P as PartialMessages, R as ResolvedAction, g as SA_INTL_LOCALES, h as SA_LOCALES, i as SA_MESSAGES, a as SaMessages, b as SaMessagesOverrides, T as TranslationOf, j as defaultHttpClient, k as defaultKvStore, l as defineMessages, m as mergeMessages, r as resolveMessages } from '../messages-BIYw32u1.js';
|
|
3
|
+
import { PublicBootResponse, AdminManifest, StandardPageKey, TenantColumnDef } from '@saasicat/types';
|
|
4
4
|
|
|
5
5
|
declare const ADMIN_UI_VERSION = "1.2.0";
|
|
6
6
|
|
|
@@ -247,64 +247,6 @@ declare class BatchColumnFetcher {
|
|
|
247
247
|
private buildUrl;
|
|
248
248
|
}
|
|
249
249
|
|
|
250
|
-
type SnapshotKind = 'drafts' | 'active' | 'historical';
|
|
251
|
-
interface CatalogSnapshot<P extends PlanVersionRow = PlanVersionRow> {
|
|
252
|
-
id: string;
|
|
253
|
-
kind: SnapshotKind;
|
|
254
|
-
status: 'DRAFT' | 'ACTIVE' | 'ARCHIVED';
|
|
255
|
-
label: string;
|
|
256
|
-
title: string;
|
|
257
|
-
description: string;
|
|
258
|
-
asOf: string | null;
|
|
259
|
-
createdAt: string | null;
|
|
260
|
-
publishedAt: string | null;
|
|
261
|
-
authorEmail: string | null;
|
|
262
|
-
plans: ResolvedPlan<P>[];
|
|
263
|
-
/** Number of open drafts for the `drafts` snapshot, otherwise 0. */
|
|
264
|
-
draftCount: number;
|
|
265
|
-
/** Number of entities in this snapshot whose publication flagged at least
|
|
266
|
-
* one regression (`nonRegressive === false`). */
|
|
267
|
-
regressionCount: number;
|
|
268
|
-
}
|
|
269
|
-
interface ResolvedPlan<P extends PlanVersionRow = PlanVersionRow> {
|
|
270
|
-
/** Which PlanVersionRow was selected to represent this slot. */
|
|
271
|
-
source: P;
|
|
272
|
-
/** Live predecessor (only set when `source` is a DRAFT; otherwise null). */
|
|
273
|
-
liveBase: P | null;
|
|
274
|
-
isDraft: boolean;
|
|
275
|
-
planId: string;
|
|
276
|
-
features: string[];
|
|
277
|
-
/** Quota map (from `source.quotas` or legacy fields; empty if none). */
|
|
278
|
-
quotas: Record<string, number>;
|
|
279
|
-
monthlyNet: number;
|
|
280
|
-
yearlyNet: number;
|
|
281
|
-
marketed: boolean;
|
|
282
|
-
version: number;
|
|
283
|
-
/** @deprecated Read from `quotas['users']`. */
|
|
284
|
-
maxUsers?: number;
|
|
285
|
-
/** @deprecated Legacy field; read from `quotas['vehicles']`. */
|
|
286
|
-
maxVehicles?: number;
|
|
287
|
-
/** @deprecated Read from `quotas['storageGb']`. */
|
|
288
|
-
maxStorageGb?: number;
|
|
289
|
-
}
|
|
290
|
-
interface RawCatalogData<P extends PlanVersionRow = PlanVersionRow> {
|
|
291
|
-
planVersions: P[];
|
|
292
|
-
}
|
|
293
|
-
interface BuildSnapshotsOptions {
|
|
294
|
-
/**
|
|
295
|
-
* App-specific plan order, e.g. `['BASIC', 'STANDARD',
|
|
296
|
-
* 'PROFESSIONAL', 'BUSINESS', 'ENTERPRISE']`. Plan IDs outside the list
|
|
297
|
-
* end up sorted alphabetically at the back.
|
|
298
|
-
*/
|
|
299
|
-
planSortOrder?: readonly string[];
|
|
300
|
-
/** UI locale for the generated snapshot labels/titles/descriptions. */
|
|
301
|
-
locale?: SaLocale;
|
|
302
|
-
}
|
|
303
|
-
declare function buildSnapshots<P extends PlanVersionRow>(data: RawCatalogData<P>, options?: BuildSnapshotsOptions): CatalogSnapshot<P>[];
|
|
304
|
-
declare function listOpenDrafts<P extends PlanVersionRow>(data: RawCatalogData<P>): {
|
|
305
|
-
plans: P[];
|
|
306
|
-
};
|
|
307
|
-
|
|
308
250
|
type MessageParams = Record<string, string | number>;
|
|
309
251
|
declare function formatMessage(template: string, params: MessageParams): string;
|
|
310
252
|
|
|
@@ -318,4 +260,4 @@ declare function formatMessage(template: string, params: MessageParams): string;
|
|
|
318
260
|
*/
|
|
319
261
|
declare function formatCurrency(amount: number | string | null | undefined, locale?: SaLocale, currency?: string): string;
|
|
320
262
|
|
|
321
|
-
export { ADMIN_UI_VERSION, type BatchColumnData, BatchColumnDriftError, BatchColumnFetcher, type BatchColumnFetcherOptions, type BatchColumnRow, type BatchColumnValue, BootLoadError, BootLoader, type BootLoaderOptions, type BuildRouteEntry, type
|
|
263
|
+
export { ADMIN_UI_VERSION, type BatchColumnData, BatchColumnDriftError, BatchColumnFetcher, type BatchColumnFetcherOptions, type BatchColumnRow, type BatchColumnValue, BootLoadError, BootLoader, type BootLoaderOptions, type BuildRouteEntry, type CachedManifestEntry, DEFAULT_STANDARD_PAGE_ROUTES, HttpClient, HttpJsonError, KvStore, ManifestLoadError, ManifestLoader, type ManifestLoaderOptions, type MessageParams, type NavBuilderOptions, type ParamStyle, SaLocale, type SidebarItem, type SidebarSection, buildRoutes, buildSidebar, defaultSectionOrder, formatCurrency, formatMessage, getJson, postJson, resolveExtension, trimTrailingSlashes };
|
package/dist/client/index.js
CHANGED
|
@@ -13,14 +13,12 @@ import {
|
|
|
13
13
|
MissingHandlerError,
|
|
14
14
|
buildRoutes,
|
|
15
15
|
buildSidebar,
|
|
16
|
-
buildSnapshots,
|
|
17
16
|
defaultSectionOrder,
|
|
18
17
|
getJson,
|
|
19
|
-
listOpenDrafts,
|
|
20
18
|
postJson,
|
|
21
19
|
resolveExtension,
|
|
22
20
|
trimTrailingSlashes
|
|
23
|
-
} from "../chunk-
|
|
21
|
+
} from "../chunk-7N3CJTOA.js";
|
|
24
22
|
import {
|
|
25
23
|
DEFAULT_SA_LOCALE,
|
|
26
24
|
SA_INTL_LOCALES,
|
|
@@ -33,7 +31,7 @@ import {
|
|
|
33
31
|
formatMessage,
|
|
34
32
|
mergeMessages,
|
|
35
33
|
resolveMessages
|
|
36
|
-
} from "../chunk-
|
|
34
|
+
} from "../chunk-TBLXKSTR.js";
|
|
37
35
|
export {
|
|
38
36
|
ADMIN_UI_VERSION,
|
|
39
37
|
ActionDefNotInManifestError,
|
|
@@ -53,7 +51,6 @@ export {
|
|
|
53
51
|
SA_MESSAGES,
|
|
54
52
|
buildRoutes,
|
|
55
53
|
buildSidebar,
|
|
56
|
-
buildSnapshots,
|
|
57
54
|
defaultHttpClient,
|
|
58
55
|
defaultKvStore,
|
|
59
56
|
defaultSectionOrder,
|
|
@@ -61,7 +58,6 @@ export {
|
|
|
61
58
|
formatCurrency,
|
|
62
59
|
formatMessage,
|
|
63
60
|
getJson,
|
|
64
|
-
listOpenDrafts,
|
|
65
61
|
mergeMessages,
|
|
66
62
|
postJson,
|
|
67
63
|
resolveExtension,
|