@nextsparkjs/core 0.1.0-beta.181 → 0.1.0-beta.183

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 (41) hide show
  1. package/dist/components/api/keys/CreateApiKeyDialog.d.ts.map +1 -1
  2. package/dist/components/api/keys/CreateApiKeyDialog.js +20 -4
  3. package/dist/components/devtools/api-explorer/ApiEndpointsSidebar.d.ts.map +1 -1
  4. package/dist/components/devtools/api-explorer/ApiEndpointsSidebar.js +4 -1
  5. package/dist/components/devtools/api-explorer/ApiExplorer.d.ts.map +1 -1
  6. package/dist/components/devtools/api-explorer/ApiExplorer.js +92 -48
  7. package/dist/components/devtools/api-explorer/ApiRequestPanel.d.ts.map +1 -1
  8. package/dist/components/devtools/api-explorer/ApiRequestPanel.js +36 -6
  9. package/dist/components/devtools/api-explorer/JsonViewer.d.ts.map +1 -1
  10. package/dist/components/devtools/api-explorer/JsonViewer.js +13 -8
  11. package/dist/components/devtools/api-explorer/PanelDivider.d.ts +26 -0
  12. package/dist/components/devtools/api-explorer/PanelDivider.d.ts.map +1 -0
  13. package/dist/components/devtools/api-explorer/PanelDivider.js +102 -0
  14. package/dist/components/devtools/api-explorer/PresetsTab.d.ts.map +1 -1
  15. package/dist/components/devtools/api-explorer/PresetsTab.js +35 -2
  16. package/dist/components/devtools/api-explorer/preset-placeholders.d.ts +52 -0
  17. package/dist/components/devtools/api-explorer/preset-placeholders.d.ts.map +1 -0
  18. package/dist/components/devtools/api-explorer/preset-placeholders.js +62 -0
  19. package/dist/lib/api/keys.d.ts +15 -0
  20. package/dist/lib/api/keys.d.ts.map +1 -1
  21. package/dist/lib/api/keys.js +15 -1
  22. package/dist/lib/config/app.config.d.ts.map +1 -1
  23. package/dist/lib/config/app.config.js +7 -0
  24. package/dist/lib/config/config-types.d.ts +12 -0
  25. package/dist/lib/config/config-types.d.ts.map +1 -1
  26. package/dist/lib/selectors/core-selectors.d.ts +3 -0
  27. package/dist/lib/selectors/core-selectors.d.ts.map +1 -1
  28. package/dist/lib/selectors/domains/devtools.selectors.d.ts +3 -0
  29. package/dist/lib/selectors/domains/devtools.selectors.d.ts.map +1 -1
  30. package/dist/lib/selectors/domains/devtools.selectors.js +5 -2
  31. package/dist/lib/selectors/selectors.d.ts +6 -0
  32. package/dist/lib/selectors/selectors.d.ts.map +1 -1
  33. package/dist/styles/classes.json +10 -5
  34. package/dist/styles/ui.css +1 -1
  35. package/dist/templates/app/devtools/api/layout.tsx +11 -32
  36. package/dist/templates/app/devtools/layout.tsx +3 -1
  37. package/dist/types/api-presets.d.ts +19 -1
  38. package/dist/types/api-presets.d.ts.map +1 -1
  39. package/package.json +2 -2
  40. package/templates/app/devtools/api/layout.tsx +11 -32
  41. package/templates/app/devtools/layout.tsx +3 -1
@@ -0,0 +1,52 @@
1
+ /**
2
+ * Placeholders a preset payload can carry, resolved when the preset is APPLIED.
3
+ *
4
+ * A write preset is usually single-use: it creates something with an email, a reference or a
5
+ * slug that cannot be reused, so the second press either replays the first or is refused, and
6
+ * whoever is testing has to hand-edit the values before every run.
7
+ *
8
+ * Some presets need the opposite, though: one proving an idempotent replay has to send the value
9
+ * the previous request sent, and one proving that a reference cannot be reused across two buyers
10
+ * has to reuse it. Resolve a token per REQUEST and those stop testing anything while still
11
+ * answering 200, which reads as a pass.
12
+ *
13
+ * So there are two kinds of token, and which one a preset wants depends on what it is proving:
14
+ *
15
+ * - `{{UNIQUE}}` is fresh on every apply. This is the default for a preset that creates
16
+ * something: press play, get values nobody has used, press play again, get another set. Two
17
+ * people testing at the same time never collide with each other either.
18
+ * - `{{RUN}}` is stable until someone starts a new run, and shared by every preset of the
19
+ * endpoint. This is for the rarer case where two DIFFERENT presets have to meet on the same
20
+ * value — a reference one preset creates and another tries to reuse.
21
+ *
22
+ * Resolution happens when the preset is APPLIED, not when the request is sent, and that is what
23
+ * lets a single preset prove an idempotent replay even with `{{UNIQUE}}`: apply once, then send
24
+ * twice. The second send reuses the body already in the editor, which is exactly what a retried
25
+ * webhook does.
26
+ *
27
+ * Every token resolves once per apply, so an email and a reference in the same payload agree
28
+ * with each other.
29
+ */
30
+ /** Token → value for a single apply. Built once so every occurrence resolves identically. */
31
+ export interface PresetPlaceholderValues {
32
+ UNIQUE: string;
33
+ RUN: string;
34
+ TIMESTAMP: string;
35
+ UUID: string;
36
+ FIRST_TEAM_ID: string;
37
+ }
38
+ export declare const PRESET_RUN_TOKEN_KEY = "devtools.presetRunToken";
39
+ /** The current run token, minting one on first use. Survives reloads: a run outlives a refresh. */
40
+ export declare function readPresetRunToken(): string;
41
+ /** Starts a new run. Presets applied from here on get values nothing has used before. */
42
+ export declare function regeneratePresetRunToken(): string;
43
+ export declare function createPresetPlaceholderValues(): PresetPlaceholderValues;
44
+ /**
45
+ * Replaces every known token inside a preset value, walking strings, arrays and objects.
46
+ *
47
+ * An unknown token is left exactly as written rather than blanked: a preset that names something
48
+ * this version does not provide should show that in the editor, where it can be read and fixed,
49
+ * instead of silently sending an empty string that the endpoint then rejects for the wrong reason.
50
+ */
51
+ export declare function resolvePresetPlaceholders<T>(value: T, values?: PresetPlaceholderValues): T;
52
+ //# sourceMappingURL=preset-placeholders.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"preset-placeholders.d.ts","sourceRoot":"","sources":["../../../../src/components/devtools/api-explorer/preset-placeholders.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AAEH,6FAA6F;AAC7F,MAAM,WAAW,uBAAuB;IACtC,MAAM,EAAE,MAAM,CAAA;IACd,GAAG,EAAE,MAAM,CAAA;IACX,SAAS,EAAE,MAAM,CAAA;IACjB,IAAI,EAAE,MAAM,CAAA;IACZ,aAAa,EAAE,MAAM,CAAA;CACtB;AAED,eAAO,MAAM,oBAAoB,4BAA4B,CAAA;AAgB7D,mGAAmG;AACnG,wBAAgB,kBAAkB,IAAI,MAAM,CAO3C;AAED,yFAAyF;AACzF,wBAAgB,wBAAwB,IAAI,MAAM,CAMjD;AAOD,wBAAgB,6BAA6B,IAAI,uBAAuB,CASvE;AAED;;;;;;GAMG;AACH,wBAAgB,yBAAyB,CAAC,CAAC,EACzC,KAAK,EAAE,CAAC,EACR,MAAM,GAAE,uBAAyD,GAChE,CAAC,CAkBH"}
@@ -0,0 +1,62 @@
1
+ const PRESET_RUN_TOKEN_KEY = "devtools.presetRunToken";
2
+ const PLACEHOLDER_PATTERN = /\{\{([A-Z_]+)\}\}/g;
3
+ function mintToken() {
4
+ const random = Math.floor(Math.random() * 36 ** 4).toString(36).padStart(4, "0");
5
+ return `${Date.now().toString(36)}${random}`;
6
+ }
7
+ function readPresetRunToken() {
8
+ if (typeof window === "undefined") return "run";
9
+ const stored = window.localStorage.getItem(PRESET_RUN_TOKEN_KEY);
10
+ if (stored) return stored;
11
+ const minted = mintToken();
12
+ window.localStorage.setItem(PRESET_RUN_TOKEN_KEY, minted);
13
+ return minted;
14
+ }
15
+ function regeneratePresetRunToken() {
16
+ const minted = mintToken();
17
+ if (typeof window !== "undefined") {
18
+ window.localStorage.setItem(PRESET_RUN_TOKEN_KEY, minted);
19
+ }
20
+ return minted;
21
+ }
22
+ function readFirstTeamId() {
23
+ if (typeof window === "undefined") return "";
24
+ return window.localStorage.getItem("firstTeamId") || window.localStorage.getItem("activeTeamId") || "";
25
+ }
26
+ function createPresetPlaceholderValues() {
27
+ return {
28
+ // Minted here, so every apply gets its own — that is the whole point of this one.
29
+ UNIQUE: mintToken(),
30
+ RUN: readPresetRunToken(),
31
+ TIMESTAMP: String(Date.now()),
32
+ UUID: typeof crypto !== "undefined" && crypto.randomUUID ? crypto.randomUUID() : mintToken(),
33
+ FIRST_TEAM_ID: readFirstTeamId()
34
+ };
35
+ }
36
+ function resolvePresetPlaceholders(value, values = createPresetPlaceholderValues()) {
37
+ if (typeof value === "string") {
38
+ return value.replace(
39
+ PLACEHOLDER_PATTERN,
40
+ (whole, token) => token in values ? values[token] : whole
41
+ );
42
+ }
43
+ if (Array.isArray(value)) {
44
+ return value.map((item) => resolvePresetPlaceholders(item, values));
45
+ }
46
+ if (value && typeof value === "object") {
47
+ return Object.fromEntries(
48
+ Object.entries(value).map(([key, item]) => [
49
+ key,
50
+ resolvePresetPlaceholders(item, values)
51
+ ])
52
+ );
53
+ }
54
+ return value;
55
+ }
56
+ export {
57
+ PRESET_RUN_TOKEN_KEY,
58
+ createPresetPlaceholderValues,
59
+ readPresetRunToken,
60
+ regeneratePresetRunToken,
61
+ resolvePresetPlaceholders
62
+ };
@@ -53,6 +53,21 @@ export declare const API_SCOPES: {
53
53
  readonly '*': "Acceso completo (solo superadmin)";
54
54
  };
55
55
  export type ApiScope = keyof typeof API_SCOPES;
56
+ /**
57
+ * Every scope this deployment understands: the ones core enforces, plus the ones the app declared
58
+ * in `api.scopes`.
59
+ *
60
+ * A function and not a const because the app's config is merged at load time — and because the
61
+ * ONLY correct answer to "is this scope valid?" is one that includes the app's own. Validating
62
+ * against core's list alone let an app guard a route with a scope no key could ever carry, which
63
+ * does not fail loudly: it quietly makes the wildcard the only key that works.
64
+ *
65
+ * Core's entries win a name collision. An app extends the vocabulary; it does not redefine what
66
+ * `admin:api-keys` means.
67
+ */
68
+ export declare function getApiScopes(): Record<string, string>;
69
+ /** The scopes an app added, for a UI that wants to group them apart from core's. */
70
+ export declare function getAppApiScopes(): Record<string, string>;
56
71
  /**
57
72
  * Categorías de scopes para organización en UI
58
73
  */
@@ -1 +1 @@
1
- {"version":3,"file":"keys.d.ts","sourceRoot":"","sources":["../../../src/lib/api/keys.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,qBAAa,aAAa;IACxB;;;OAGG;WACU,cAAc,IAAI,OAAO,CAAC;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC;IAyBrF;;OAEG;IACH,MAAM,CAAC,iBAAiB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO;IAM9C;;OAEG;IACH,MAAM,CAAC,aAAa,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM;IAKzC;;OAEG;WACU,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;IAQlD;;OAEG;IACH,MAAM,CAAC,cAAc,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG;QAAE,KAAK,EAAE,OAAO,CAAC;QAAC,aAAa,EAAE,MAAM,EAAE,CAAA;KAAE;IAUpF;;OAEG;IACH,MAAM,CAAC,cAAc,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,MAAM;CAchD;AAED;;GAEG;AACH,eAAO,MAAM,UAAU;;;;;;;;;;;;;CAsBb,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,MAAM,OAAO,UAAU,CAAC;AAE/C;;GAEG;AACH,eAAO,MAAM,gBAAgB;;;;yBAIgC,QAAQ,EAAE;;;;;yBAKV,QAAQ,EAAE;;;;;yBAKtB,QAAQ,EAAE;;;;;yBAKtC,QAAQ,EAAE;;CAErB,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,cAAc;;;;CAIjB,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CASd,CAAC;AAEX;;GAEG;AACH,wBAAgB,qBAAqB,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG;IAAE,QAAQ,EAAE,MAAM,CAAC;IAAC,QAAQ,EAAE,MAAM,CAAA;CAAE,CAmB9F"}
1
+ {"version":3,"file":"keys.d.ts","sourceRoot":"","sources":["../../../src/lib/api/keys.ts"],"names":[],"mappings":"AAEA;;GAEG;AACH,qBAAa,aAAa;IACxB;;;OAGG;WACU,cAAc,IAAI,OAAO,CAAC;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC;IAyBrF;;OAEG;IACH,MAAM,CAAC,iBAAiB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO;IAM9C;;OAEG;IACH,MAAM,CAAC,aAAa,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM;IAKzC;;OAEG;WACU,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;IAQlD;;OAEG;IACH,MAAM,CAAC,cAAc,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG;QAAE,KAAK,EAAE,OAAO,CAAC;QAAC,aAAa,EAAE,MAAM,EAAE,CAAA;KAAE;IAUpF;;OAEG;IACH,MAAM,CAAC,cAAc,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,MAAM;CAchD;AAED;;GAEG;AACH,eAAO,MAAM,UAAU;;;;;;;;;;;;;CAsBb,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,MAAM,OAAO,UAAU,CAAC;AAE/C;;;;;;;;;;;GAWG;AACH,wBAAgB,YAAY,IAAI,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAGrD;AAED,oFAAoF;AACpF,wBAAgB,eAAe,IAAI,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAIxD;AAED;;GAEG;AACH,eAAO,MAAM,gBAAgB;;;;yBAIgC,QAAQ,EAAE;;;;;yBAKV,QAAQ,EAAE;;;;;yBAKtB,QAAQ,EAAE;;;;;yBAKtC,QAAQ,EAAE;;CAErB,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,cAAc;;;;CAIjB,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CASd,CAAC;AAEX;;GAEG;AACH,wBAAgB,qBAAqB,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG;IAAE,QAAQ,EAAE,MAAM,CAAC;IAAC,QAAQ,EAAE,MAAM,CAAA;CAAE,CAmB9F"}
@@ -1,3 +1,4 @@
1
+ import { API_CONFIG } from "../config/config-sync.js";
1
2
  class ApiKeyManager {
2
3
  /**
3
4
  * Genera una nueva API key con formato seguro
@@ -44,7 +45,7 @@ class ApiKeyManager {
44
45
  * Valida que los scopes sean válidos
45
46
  */
46
47
  static validateScopes(scopes) {
47
- const validScopes = Object.keys(API_SCOPES);
48
+ const validScopes = Object.keys(getApiScopes());
48
49
  const invalidScopes = scopes.filter((scope) => !validScopes.includes(scope));
49
50
  return {
50
51
  valid: invalidScopes.length === 0,
@@ -86,6 +87,17 @@ const API_SCOPES = {
86
87
  // Comodín (solo para superadmins)
87
88
  "*": "Acceso completo (solo superadmin)"
88
89
  };
90
+ function getApiScopes() {
91
+ var _a;
92
+ const appScopes = ((_a = API_CONFIG) == null ? void 0 : _a.scopes) ?? {};
93
+ return { ...appScopes, ...API_SCOPES };
94
+ }
95
+ function getAppApiScopes() {
96
+ var _a;
97
+ const appScopes = ((_a = API_CONFIG) == null ? void 0 : _a.scopes) ?? {};
98
+ const coreNames = Object.keys(API_SCOPES);
99
+ return Object.fromEntries(Object.entries(appScopes).filter(([name]) => !coreNames.includes(name)));
100
+ }
89
101
  const SCOPE_CATEGORIES = {
90
102
  users: {
91
103
  name: "Usuarios",
@@ -151,5 +163,7 @@ export {
151
163
  ApiKeyManager,
152
164
  RATE_LIMITS,
153
165
  SCOPE_CATEGORIES,
166
+ getApiScopes,
167
+ getAppApiScopes,
154
168
  getRateLimitForScopes
155
169
  };
@@ -1 +1 @@
1
- {"version":3,"file":"app.config.d.ts","sourceRoot":"","sources":["../../../src/lib/config/app.config.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAMxC,eAAO,MAAM,kBAAkB,EAAE,SA4ehC,CAAA"}
1
+ {"version":3,"file":"app.config.d.ts","sourceRoot":"","sources":["../../../src/lib/config/app.config.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAMxC,eAAO,MAAM,kBAAkB,EAAE,SAmfhC,CAAA"}
@@ -207,6 +207,13 @@ const DEFAULT_APP_CONFIG = {
207
207
  // API CONFIGURATION
208
208
  // =============================================================================
209
209
  api: {
210
+ /**
211
+ * Extra scopes THIS app enforces, beyond the ones core ships (`API_SCOPES`). A theme adds its
212
+ * own here so `ApiKeyManager.validateScopes` accepts them and the key-creation UI offers them:
213
+ * a route that guards itself with `integrations:write` needs that scope to be mintable, or the
214
+ * only key its own gate accepts is a wildcard.
215
+ */
216
+ scopes: {},
210
217
  cors: {
211
218
  /**
212
219
  * Allowed origins for CORS
@@ -38,6 +38,18 @@ export interface FeaturesConfig {
38
38
  enableAPIAccess: boolean;
39
39
  }
40
40
  export interface ApiConfig {
41
+ /**
42
+ * Extra API-key scopes this app understands, as `scope: human description`.
43
+ *
44
+ * Core ships the scopes core itself enforces (see `API_SCOPES`). An app that guards its own
45
+ * routes with its own scope has to be able to REGISTER that scope, or it ends up in the one
46
+ * place worth avoiding: a gate that demands `something:write` while the key system refuses to
47
+ * mint it, so the only key that satisfies the gate is a wildcard — the broadest possible
48
+ * credential, handed out because the narrow one was unavailable.
49
+ *
50
+ * Additive only: an app can add scopes, never remove or redefine core's.
51
+ */
52
+ scopes?: Record<string, string>;
41
53
  cors: {
42
54
  allowedOrigins: {
43
55
  development: string[];
@@ -1 +1 @@
1
- {"version":3,"file":"config-types.d.ts","sourceRoot":"","sources":["../../../src/lib/config/config-types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"config-types.d.ts","sourceRoot":"","sources":["../../../src/lib/config/config-types.ts"],"names":[],"mappings":"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"}
@@ -1340,6 +1340,7 @@ export declare const CORE_SELECTORS: {
1340
1340
  readonly container: "devtools-api-explorer";
1341
1341
  readonly mobileToggle: "devtools-api-explorer-mobile-toggle";
1342
1342
  readonly docsBtn: "devtools-api-explorer-docs-btn";
1343
+ readonly panelDivider: "devtools-api-explorer-panel-divider";
1343
1344
  readonly sidebar: {
1344
1345
  readonly container: "devtools-api-sidebar";
1345
1346
  readonly collapsed: "devtools-api-sidebar-collapsed";
@@ -1377,6 +1378,7 @@ export declare const CORE_SELECTORS: {
1377
1378
  readonly tabHeaders: "devtools-api-request-tab-headers";
1378
1379
  readonly tabBody: "devtools-api-request-tab-body";
1379
1380
  readonly tabPresets: "devtools-api-request-tab-presets";
1381
+ readonly toggleSession: "devtools-api-request-toggle-session";
1380
1382
  };
1381
1383
  readonly response: {
1382
1384
  readonly panel: "devtools-api-response-panel";
@@ -1396,6 +1398,7 @@ export declare const CORE_SELECTORS: {
1396
1398
  readonly card: "devtools-api-presets-card-{id}";
1397
1399
  readonly viewBtn: "devtools-api-presets-view-{id}";
1398
1400
  readonly applyBtn: "devtools-api-presets-apply-{id}";
1401
+ readonly regenerateRunToken: "devtools-api-presets-regenerate-run-token";
1399
1402
  };
1400
1403
  };
1401
1404
  };
@@ -1 +1 @@
1
- {"version":3,"file":"core-selectors.d.ts","sourceRoot":"","sources":["../../../src/lib/selectors/core-selectors.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;GAsBG;AAiBH;;;;;;;;;;;;;;;;;GAiBG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAejB,CAAA;AAEV;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG,OAAO,cAAc,CAAA;AAGrD,cAAc,WAAW,CAAA"}
1
+ {"version":3,"file":"core-selectors.d.ts","sourceRoot":"","sources":["../../../src/lib/selectors/core-selectors.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;GAsBG;AAiBH;;;;;;;;;;;;;;;;;GAiBG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAejB,CAAA;AAEV;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG,OAAO,cAAc,CAAA;AAGrD,cAAc,WAAW,CAAA"}
@@ -184,6 +184,7 @@ export declare const DEVTOOLS_SELECTORS: {
184
184
  readonly container: "devtools-api-explorer";
185
185
  readonly mobileToggle: "devtools-api-explorer-mobile-toggle";
186
186
  readonly docsBtn: "devtools-api-explorer-docs-btn";
187
+ readonly panelDivider: "devtools-api-explorer-panel-divider";
187
188
  readonly sidebar: {
188
189
  readonly container: "devtools-api-sidebar";
189
190
  readonly collapsed: "devtools-api-sidebar-collapsed";
@@ -221,6 +222,7 @@ export declare const DEVTOOLS_SELECTORS: {
221
222
  readonly tabHeaders: "devtools-api-request-tab-headers";
222
223
  readonly tabBody: "devtools-api-request-tab-body";
223
224
  readonly tabPresets: "devtools-api-request-tab-presets";
225
+ readonly toggleSession: "devtools-api-request-toggle-session";
224
226
  };
225
227
  readonly response: {
226
228
  readonly panel: "devtools-api-response-panel";
@@ -240,6 +242,7 @@ export declare const DEVTOOLS_SELECTORS: {
240
242
  readonly card: "devtools-api-presets-card-{id}";
241
243
  readonly viewBtn: "devtools-api-presets-view-{id}";
242
244
  readonly applyBtn: "devtools-api-presets-apply-{id}";
245
+ readonly regenerateRunToken: "devtools-api-presets-regenerate-run-token";
243
246
  };
244
247
  };
245
248
  };
@@ -1 +1 @@
1
- {"version":3,"file":"devtools.selectors.d.ts","sourceRoot":"","sources":["../../../../src/lib/selectors/domains/devtools.selectors.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAmJ7B;;;;;;;;;;;;;;;;;;;;;;OAsBG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqEK,CAAA;AAEV,MAAM,MAAM,qBAAqB,GAAG,OAAO,kBAAkB,CAAA"}
1
+ {"version":3,"file":"devtools.selectors.d.ts","sourceRoot":"","sources":["../../../../src/lib/selectors/domains/devtools.selectors.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAmJ7B;;;;;;;;;;;;;;;;;;;;;;OAsBG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwEK,CAAA;AAEV,MAAM,MAAM,qBAAqB,GAAG,OAAO,kBAAkB,CAAA"}
@@ -172,6 +172,7 @@ const DEVTOOLS_SELECTORS = {
172
172
  container: "devtools-api-explorer",
173
173
  mobileToggle: "devtools-api-explorer-mobile-toggle",
174
174
  docsBtn: "devtools-api-explorer-docs-btn",
175
+ panelDivider: "devtools-api-explorer-panel-divider",
175
176
  // Sidebar - endpoint navigation
176
177
  sidebar: {
177
178
  container: "devtools-api-sidebar",
@@ -212,7 +213,8 @@ const DEVTOOLS_SELECTORS = {
212
213
  tabParams: "devtools-api-request-tab-params",
213
214
  tabHeaders: "devtools-api-request-tab-headers",
214
215
  tabBody: "devtools-api-request-tab-body",
215
- tabPresets: "devtools-api-request-tab-presets"
216
+ tabPresets: "devtools-api-request-tab-presets",
217
+ toggleSession: "devtools-api-request-toggle-session"
216
218
  },
217
219
  // Response panel
218
220
  response: {
@@ -233,7 +235,8 @@ const DEVTOOLS_SELECTORS = {
233
235
  empty: "devtools-api-presets-empty",
234
236
  card: "devtools-api-presets-card-{id}",
235
237
  viewBtn: "devtools-api-presets-view-{id}",
236
- applyBtn: "devtools-api-presets-apply-{id}"
238
+ applyBtn: "devtools-api-presets-apply-{id}",
239
+ regenerateRunToken: "devtools-api-presets-regenerate-run-token"
237
240
  }
238
241
  }
239
242
  };
@@ -1339,6 +1339,7 @@ export declare const SELECTORS: {
1339
1339
  readonly container: "devtools-api-explorer";
1340
1340
  readonly mobileToggle: "devtools-api-explorer-mobile-toggle";
1341
1341
  readonly docsBtn: "devtools-api-explorer-docs-btn";
1342
+ readonly panelDivider: "devtools-api-explorer-panel-divider";
1342
1343
  readonly sidebar: {
1343
1344
  readonly container: "devtools-api-sidebar";
1344
1345
  readonly collapsed: "devtools-api-sidebar-collapsed";
@@ -1376,6 +1377,7 @@ export declare const SELECTORS: {
1376
1377
  readonly tabHeaders: "devtools-api-request-tab-headers";
1377
1378
  readonly tabBody: "devtools-api-request-tab-body";
1378
1379
  readonly tabPresets: "devtools-api-request-tab-presets";
1380
+ readonly toggleSession: "devtools-api-request-toggle-session";
1379
1381
  };
1380
1382
  readonly response: {
1381
1383
  readonly panel: "devtools-api-response-panel";
@@ -1395,6 +1397,7 @@ export declare const SELECTORS: {
1395
1397
  readonly card: "devtools-api-presets-card-{id}";
1396
1398
  readonly viewBtn: "devtools-api-presets-view-{id}";
1397
1399
  readonly applyBtn: "devtools-api-presets-apply-{id}";
1400
+ readonly regenerateRunToken: "devtools-api-presets-regenerate-run-token";
1398
1401
  };
1399
1402
  };
1400
1403
  };
@@ -2920,6 +2923,7 @@ declare const _default: {
2920
2923
  readonly container: "devtools-api-explorer";
2921
2924
  readonly mobileToggle: "devtools-api-explorer-mobile-toggle";
2922
2925
  readonly docsBtn: "devtools-api-explorer-docs-btn";
2926
+ readonly panelDivider: "devtools-api-explorer-panel-divider";
2923
2927
  readonly sidebar: {
2924
2928
  readonly container: "devtools-api-sidebar";
2925
2929
  readonly collapsed: "devtools-api-sidebar-collapsed";
@@ -2957,6 +2961,7 @@ declare const _default: {
2957
2961
  readonly tabHeaders: "devtools-api-request-tab-headers";
2958
2962
  readonly tabBody: "devtools-api-request-tab-body";
2959
2963
  readonly tabPresets: "devtools-api-request-tab-presets";
2964
+ readonly toggleSession: "devtools-api-request-toggle-session";
2960
2965
  };
2961
2966
  readonly response: {
2962
2967
  readonly panel: "devtools-api-response-panel";
@@ -2976,6 +2981,7 @@ declare const _default: {
2976
2981
  readonly card: "devtools-api-presets-card-{id}";
2977
2982
  readonly viewBtn: "devtools-api-presets-view-{id}";
2978
2983
  readonly applyBtn: "devtools-api-presets-apply-{id}";
2984
+ readonly regenerateRunToken: "devtools-api-presets-regenerate-run-token";
2979
2985
  };
2980
2986
  };
2981
2987
  };
@@ -1 +1 @@
1
- {"version":3,"file":"selectors.d.ts","sourceRoot":"","sources":["../../../src/lib/selectors/selectors.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AAGH,OAAO,EAAkB,KAAK,iBAAiB,EAAE,MAAM,kBAAkB,CAAA;AAWzE;;GAEG;AACH,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAoB,CAAA;AAE1C;;;GAGG;AACH,eAAO,MAAM,GAAG,oFAAc,CAAA;AAE9B;;GAEG;AACH,eAAO,MAAM,CAAC,oFAAY,CAAA;AAE1B;;GAEG;AACH,eAAO,MAAM,MAAM,gGAAiB,CAAA;AAEpC;;GAEG;AACH,eAAO,MAAM,UAAU,oFAAqB,CAAA;AAE5C;;GAEG;AACH,eAAO,MAAM,eAAe,sEAA0B,CAAA;AAMtD;;GAEG;AACH,MAAM,MAAM,aAAa,GAAG,iBAAiB,CAAA;AAE7C;;GAEG;AACH,YAAY,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAA;AAEtD;;GAEG;AACH,KAAK,QAAQ,CAAC,CAAC,EAAE,CAAC,SAAS,MAAM,CAAC,IAAI,CAAC,SAAS,MAAM,GAClD,CAAC,CAAC,CAAC,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAClC,CAAC,CAAC,CAAC,CAAC,SAAS,SAAS,CAAC,OAAO,CAAC,GAC7B,CAAC,GACD,GAAG,CAAC,IAAI,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,GACtC,CAAC,GACH,KAAK,CAAA;AAET,KAAK,IAAI,CAAC,CAAC,IAAI,QAAQ,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAA;AAEnC;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG,IAAI,CAAC,aAAa,CAAC,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAM9C,wBAOC"}
1
+ {"version":3,"file":"selectors.d.ts","sourceRoot":"","sources":["../../../src/lib/selectors/selectors.ts"],"names":[],"mappings":"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"}
@@ -1,6 +1,6 @@
1
1
  {
2
- "generated": "2026-07-27T13:54:08.680Z",
3
- "totalClasses": 1082,
2
+ "generated": "2026-07-30T19:45:58.111Z",
3
+ "totalClasses": 1087,
4
4
  "classes": [
5
5
  "!text-2xl",
6
6
  "''",
@@ -137,6 +137,7 @@
137
137
  "bg-black/80",
138
138
  "bg-blue-50",
139
139
  "bg-border",
140
+ "bg-border/40",
140
141
  "bg-card",
141
142
  "bg-destructive",
142
143
  "bg-destructive/10",
@@ -144,6 +145,7 @@
144
145
  "bg-emerald-100",
145
146
  "bg-emerald-50",
146
147
  "bg-foreground",
148
+ "bg-foreground/25",
147
149
  "bg-gradient-to-b",
148
150
  "bg-gradient-to-br",
149
151
  "bg-gray-100",
@@ -154,6 +156,7 @@
154
156
  "bg-muted/10",
155
157
  "bg-muted/20",
156
158
  "bg-muted/30",
159
+ "bg-muted/40",
157
160
  "bg-muted/50",
158
161
  "bg-neutral-950",
159
162
  "bg-popover",
@@ -228,6 +231,7 @@
228
231
  "column",
229
232
  "columns",
230
233
  "container",
234
+ "cursor-col-resize",
231
235
  "cursor-default",
232
236
  "cursor-grab",
233
237
  "cursor-help",
@@ -362,6 +366,7 @@
362
366
  "flex-row",
363
367
  "flex-shrink-0",
364
368
  "flex-wrap",
369
+ "focus-visible:bg-primary/60",
365
370
  "focus-visible:outline-none",
366
371
  "focus-visible:ring-0",
367
372
  "focus-visible:ring-1",
@@ -451,7 +456,6 @@
451
456
  "h-[90vh]",
452
457
  "h-[calc(100%-5rem)]",
453
458
  "h-[calc(100vh-12rem)]",
454
- "h-[calc(100vh-4rem)]",
455
459
  "h-auto",
456
460
  "h-full",
457
461
  "h-px",
@@ -481,6 +485,7 @@
481
485
  "hover:bg-primary",
482
486
  "hover:bg-primary-foreground/20",
483
487
  "hover:bg-primary/20",
488
+ "hover:bg-primary/60",
484
489
  "hover:bg-purple-50",
485
490
  "hover:bg-purple-700",
486
491
  "hover:bg-red-50",
@@ -539,13 +544,11 @@
539
544
  "left-[50%]",
540
545
  "lg:block",
541
546
  "lg:border-b-0",
542
- "lg:border-r",
543
547
  "lg:col-span-2",
544
548
  "lg:col-span-3",
545
549
  "lg:col-span-9",
546
550
  "lg:flex",
547
551
  "lg:flex-1",
548
- "lg:flex-[1.2]",
549
552
  "lg:flex-row",
550
553
  "lg:grid-cols-12",
551
554
  "lg:grid-cols-2",
@@ -1014,6 +1017,8 @@
1014
1017
  "uppercase",
1015
1018
  "variant:",
1016
1019
  "visible",
1020
+ "w-0.5",
1021
+ "w-1.5",
1017
1022
  "w-1/2",
1018
1023
  "w-1/3",
1019
1024
  "w-1/4",