@nextsparkjs/testing 0.1.0-beta.44 → 0.1.0-beta.45
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/index.d.ts +1 -3
- package/dist/index.js +63 -1166
- package/dist/index.js.map +1 -1
- package/dist/pom/index.d.ts +25 -27
- package/dist/pom/index.js +59 -66
- package/dist/pom/index.js.map +1 -1
- package/dist/utils/index.d.ts +3 -163
- package/dist/utils/index.js +1 -100
- package/dist/utils/index.js.map +1 -1
- package/package.json +1 -6
- package/dist/selector-factory-BivSWXbw.d.ts +0 -123
- package/dist/selectors/index.d.ts +0 -1774
- package/dist/selectors/index.js +0 -1000
- package/dist/selectors/index.js.map +0 -1
|
@@ -1,1774 +0,0 @@
|
|
|
1
|
-
import { R as Replacements, E as EntitySelectorHelpers } from '../selector-factory-BivSWXbw.js';
|
|
2
|
-
export { a as SelectorHelpers, S as SelectorObject, c as createSelectorHelpers, g as getNestedValue, r as replacePlaceholders } from '../selector-factory-BivSWXbw.js';
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* Core Selectors
|
|
6
|
-
*
|
|
7
|
-
* Single source of truth for all data-cy selectors in core components.
|
|
8
|
-
* Themes can import and extend these selectors.
|
|
9
|
-
*
|
|
10
|
-
* Naming conventions:
|
|
11
|
-
* - Static selectors: "domain-element" (e.g., "nav-main", "login-form")
|
|
12
|
-
* - Dynamic selectors: "domain-element-{placeholder}" (e.g., "{slug}-row-{id}")
|
|
13
|
-
*
|
|
14
|
-
* Placeholders:
|
|
15
|
-
* - {slug} - Entity slug (customers, tasks, pages, posts)
|
|
16
|
-
* - {id} - Record ID
|
|
17
|
-
* - {name} - Field name
|
|
18
|
-
* - {section} - Settings section name
|
|
19
|
-
* - {action} - Action name (edit, delete, view)
|
|
20
|
-
* - {value} - Filter/option value
|
|
21
|
-
* - {index} - Array index
|
|
22
|
-
* - {mode} - View mode (view, edit, create)
|
|
23
|
-
*/
|
|
24
|
-
declare const CORE_SELECTORS: {
|
|
25
|
-
readonly auth: {
|
|
26
|
-
readonly login: {
|
|
27
|
-
readonly card: "login-form-card";
|
|
28
|
-
readonly header: "login-header";
|
|
29
|
-
readonly footer: "login-footer";
|
|
30
|
-
readonly form: "login-form";
|
|
31
|
-
readonly options: "login-options";
|
|
32
|
-
readonly emailInput: "login-email-input";
|
|
33
|
-
readonly passwordInput: "login-password-input";
|
|
34
|
-
readonly emailError: "login-email-error";
|
|
35
|
-
readonly passwordError: "login-password-error";
|
|
36
|
-
readonly submit: "login-submit";
|
|
37
|
-
readonly googleSignin: "login-google-signin";
|
|
38
|
-
readonly showEmail: "login-show-email";
|
|
39
|
-
readonly hideEmail: "login-hide-email";
|
|
40
|
-
readonly forgotPassword: "login-forgot-password";
|
|
41
|
-
readonly signupLink: "login-signup-link";
|
|
42
|
-
readonly inviteBanner: "login-invite-banner";
|
|
43
|
-
readonly errorAlert: "login-error-alert";
|
|
44
|
-
readonly rememberCheckbox: "login-remember-checkbox";
|
|
45
|
-
};
|
|
46
|
-
readonly signup: {
|
|
47
|
-
readonly form: "signup-form";
|
|
48
|
-
readonly firstName: "signup-first-name";
|
|
49
|
-
readonly lastName: "signup-last-name";
|
|
50
|
-
readonly email: "signup-email";
|
|
51
|
-
readonly password: "signup-password";
|
|
52
|
-
readonly confirmPassword: "signup-confirm-password";
|
|
53
|
-
readonly submitButton: "signup-submit";
|
|
54
|
-
readonly googleButton: "signup-google";
|
|
55
|
-
readonly loginLink: "signup-login-link";
|
|
56
|
-
readonly inviteBanner: "signup-invite-banner";
|
|
57
|
-
readonly error: "signup-error";
|
|
58
|
-
};
|
|
59
|
-
readonly forgotPassword: {
|
|
60
|
-
readonly form: "forgot-password-form";
|
|
61
|
-
readonly email: "forgot-password-email";
|
|
62
|
-
readonly submitButton: "forgot-password-submit";
|
|
63
|
-
readonly backToLogin: "forgot-password-back";
|
|
64
|
-
readonly successMessage: "forgot-password-success";
|
|
65
|
-
readonly successBack: "forgot-password-success-back";
|
|
66
|
-
readonly retryButton: "forgot-password-retry";
|
|
67
|
-
readonly error: "forgot-password-error";
|
|
68
|
-
};
|
|
69
|
-
readonly resetPassword: {
|
|
70
|
-
readonly form: "reset-password-form";
|
|
71
|
-
readonly password: "reset-password-password";
|
|
72
|
-
readonly confirmPassword: "reset-password-confirm";
|
|
73
|
-
readonly submitButton: "reset-password-submit";
|
|
74
|
-
readonly error: "reset-password-error";
|
|
75
|
-
readonly success: "reset-password-success";
|
|
76
|
-
readonly loginLink: "reset-password-login-link";
|
|
77
|
-
readonly backToLogin: "reset-password-back";
|
|
78
|
-
};
|
|
79
|
-
readonly verifyEmail: {
|
|
80
|
-
readonly container: "verify-email-container";
|
|
81
|
-
readonly resendButton: "verify-email-resend";
|
|
82
|
-
readonly successMessage: "verify-email-success";
|
|
83
|
-
readonly error: "verify-email-error";
|
|
84
|
-
};
|
|
85
|
-
readonly devKeyring: {
|
|
86
|
-
readonly container: "devkeyring-container";
|
|
87
|
-
readonly trigger: "devkeyring-trigger";
|
|
88
|
-
readonly content: "devkeyring-content";
|
|
89
|
-
readonly user: "devkeyring-user-{index}";
|
|
90
|
-
};
|
|
91
|
-
};
|
|
92
|
-
readonly dashboard: {
|
|
93
|
-
readonly shell: {
|
|
94
|
-
readonly container: "dashboard-container";
|
|
95
|
-
readonly quickCreateButton: "topnav-quick-create-button";
|
|
96
|
-
readonly quickCreateDropdown: "topnav-quick-create-dropdown";
|
|
97
|
-
readonly quickCreateLink: "quick-create-{slug}-link";
|
|
98
|
-
};
|
|
99
|
-
readonly topnav: {
|
|
100
|
-
readonly sidebarToggle: "topnav-sidebar-toggle";
|
|
101
|
-
readonly header: "topnav-header";
|
|
102
|
-
readonly logo: "topnav-logo";
|
|
103
|
-
readonly searchSection: "topnav-search-section";
|
|
104
|
-
readonly actions: "topnav-actions";
|
|
105
|
-
readonly notifications: "topnav-notifications";
|
|
106
|
-
readonly help: "topnav-help";
|
|
107
|
-
readonly themeToggle: "topnav-theme-toggle";
|
|
108
|
-
readonly superadmin: "topnav-superadmin";
|
|
109
|
-
readonly devtools: "topnav-devtools";
|
|
110
|
-
readonly userMenuTrigger: "topnav-user-menu-trigger";
|
|
111
|
-
readonly userMenu: "topnav-user-menu";
|
|
112
|
-
readonly menuItem: "topnav-menu-{icon}";
|
|
113
|
-
readonly menuAction: "topnav-menu-{action}";
|
|
114
|
-
readonly userLoading: "topnav-user-loading";
|
|
115
|
-
readonly signin: "topnav-signin";
|
|
116
|
-
readonly signup: "topnav-signup";
|
|
117
|
-
readonly mobileActions: "topnav-mobile-actions";
|
|
118
|
-
readonly mobileMenuToggle: "topnav-mobile-menu-toggle";
|
|
119
|
-
readonly mobileMenu: "topnav-mobile-menu";
|
|
120
|
-
readonly mobileUserInfo: "topnav-mobile-user-info";
|
|
121
|
-
readonly mobileLinkProfile: "topnav-mobile-link-profile";
|
|
122
|
-
readonly mobileLinkSettings: "topnav-mobile-link-settings";
|
|
123
|
-
readonly mobileLinkBilling: "topnav-mobile-link-billing";
|
|
124
|
-
readonly mobileSignout: "topnav-mobile-signout";
|
|
125
|
-
readonly mobileNavSuperadmin: "topnav-mobile-nav-superadmin";
|
|
126
|
-
readonly mobileNavDevtools: "topnav-mobile-nav-devtools";
|
|
127
|
-
};
|
|
128
|
-
readonly sidebar: {
|
|
129
|
-
readonly main: "sidebar-main";
|
|
130
|
-
readonly header: "sidebar-header";
|
|
131
|
-
readonly content: "sidebar-content";
|
|
132
|
-
readonly footer: "sidebar-footer";
|
|
133
|
-
};
|
|
134
|
-
readonly navigation: {
|
|
135
|
-
readonly main: "nav-main";
|
|
136
|
-
readonly dashboardLink: "nav-link-dashboard";
|
|
137
|
-
readonly entityLink: "nav-link-entity-{slug}";
|
|
138
|
-
readonly section: "nav-section-{id}";
|
|
139
|
-
readonly sectionLabel: "nav-section-label-{id}";
|
|
140
|
-
readonly sectionItem: "nav-section-item-{sectionId}-{itemId}";
|
|
141
|
-
};
|
|
142
|
-
readonly mobile: {
|
|
143
|
-
readonly topbar: {
|
|
144
|
-
readonly header: "mobile-topbar-header";
|
|
145
|
-
readonly userProfile: "mobile-topbar-user-profile";
|
|
146
|
-
readonly notifications: "mobile-topbar-notifications";
|
|
147
|
-
readonly themeToggle: "mobile-topbar-theme-toggle";
|
|
148
|
-
};
|
|
149
|
-
readonly bottomNav: {
|
|
150
|
-
readonly nav: "mobile-bottomnav-nav";
|
|
151
|
-
readonly item: "mobile-bottomnav-item-{id}";
|
|
152
|
-
};
|
|
153
|
-
readonly moreSheet: {
|
|
154
|
-
readonly content: "mobile-more-sheet-content";
|
|
155
|
-
readonly item: "mobile-more-sheet-item-{id}";
|
|
156
|
-
readonly superadminLink: "mobile-more-sheet-superadmin-link";
|
|
157
|
-
readonly teamSwitcher: "mobile-more-sheet-team-switcher";
|
|
158
|
-
readonly signoutButton: "mobile-more-sheet-signout-button";
|
|
159
|
-
};
|
|
160
|
-
readonly quickCreateSheet: {
|
|
161
|
-
readonly content: "mobile-quick-create-sheet-content";
|
|
162
|
-
readonly item: "mobile-quick-create-sheet-item-{slug}";
|
|
163
|
-
};
|
|
164
|
-
};
|
|
165
|
-
};
|
|
166
|
-
readonly entities: {
|
|
167
|
-
readonly page: {
|
|
168
|
-
readonly container: "{slug}-page";
|
|
169
|
-
readonly title: "{slug}-title";
|
|
170
|
-
};
|
|
171
|
-
readonly list: {
|
|
172
|
-
readonly container: "{slug}-list";
|
|
173
|
-
};
|
|
174
|
-
readonly table: {
|
|
175
|
-
readonly container: "{slug}-table-container";
|
|
176
|
-
readonly element: "{slug}-table";
|
|
177
|
-
readonly search: "{slug}-search";
|
|
178
|
-
readonly addButton: "{slug}-add";
|
|
179
|
-
readonly selectionCount: "{slug}-selection-count";
|
|
180
|
-
readonly selectAll: "{slug}-select-all";
|
|
181
|
-
readonly row: "{slug}-row-{id}";
|
|
182
|
-
readonly rowSelect: "{slug}-select-{id}";
|
|
183
|
-
readonly cell: "{slug}-cell-{field}-{id}";
|
|
184
|
-
readonly rowMenu: "{slug}-menu-{id}";
|
|
185
|
-
readonly rowActionsMenu: "{slug}-actions-{id}";
|
|
186
|
-
readonly rowAction: "{slug}-menu-{action}-{id}";
|
|
187
|
-
readonly quickAction: "{slug}-quick-{action}-{id}";
|
|
188
|
-
};
|
|
189
|
-
readonly pagination: {
|
|
190
|
-
readonly container: "{slug}-pagination";
|
|
191
|
-
readonly pageSize: "{slug}-page-size";
|
|
192
|
-
readonly pageSizeOption: "{slug}-page-size-{size}";
|
|
193
|
-
readonly pageInfo: "{slug}-page-info";
|
|
194
|
-
readonly first: "{slug}-page-first";
|
|
195
|
-
readonly prev: "{slug}-page-prev";
|
|
196
|
-
readonly next: "{slug}-page-next";
|
|
197
|
-
readonly last: "{slug}-page-last";
|
|
198
|
-
};
|
|
199
|
-
readonly bulk: {
|
|
200
|
-
readonly bar: "{slug}-bulk-bar";
|
|
201
|
-
readonly count: "{slug}-bulk-count";
|
|
202
|
-
readonly selectAll: "{slug}-bulk-select-all";
|
|
203
|
-
readonly statusButton: "{slug}-bulk-status";
|
|
204
|
-
readonly deleteButton: "{slug}-bulk-delete";
|
|
205
|
-
readonly clearButton: "{slug}-bulk-clear";
|
|
206
|
-
readonly statusDialog: "{slug}-bulk-status-dialog";
|
|
207
|
-
readonly statusSelect: "{slug}-bulk-status-select";
|
|
208
|
-
readonly statusOption: "{slug}-bulk-status-option-{value}";
|
|
209
|
-
readonly statusCancel: "{slug}-bulk-status-cancel";
|
|
210
|
-
readonly statusConfirm: "{slug}-bulk-status-confirm";
|
|
211
|
-
readonly deleteDialog: "{slug}-bulk-delete-dialog";
|
|
212
|
-
readonly deleteCancel: "{slug}-bulk-delete-cancel";
|
|
213
|
-
readonly deleteConfirm: "{slug}-bulk-delete-confirm";
|
|
214
|
-
};
|
|
215
|
-
readonly header: {
|
|
216
|
-
readonly container: "{slug}-{mode}-header";
|
|
217
|
-
readonly backButton: "{slug}-back-btn";
|
|
218
|
-
readonly title: "{slug}-title";
|
|
219
|
-
readonly copyId: "{slug}-copy-id";
|
|
220
|
-
readonly editButton: "{slug}-edit-btn";
|
|
221
|
-
readonly deleteButton: "{slug}-delete-btn";
|
|
222
|
-
readonly deleteDialog: "{slug}-delete-dialog";
|
|
223
|
-
readonly deleteCancel: "{slug}-delete-cancel";
|
|
224
|
-
readonly deleteConfirm: "{slug}-delete-confirm";
|
|
225
|
-
};
|
|
226
|
-
readonly detail: {
|
|
227
|
-
readonly container: "{slug}-detail";
|
|
228
|
-
};
|
|
229
|
-
readonly form: {
|
|
230
|
-
readonly container: "{slug}-form";
|
|
231
|
-
readonly field: "{slug}-field-{name}";
|
|
232
|
-
readonly submitButton: "{slug}-form-submit";
|
|
233
|
-
readonly cancelButton: "{slug}-form-cancel";
|
|
234
|
-
};
|
|
235
|
-
readonly filter: {
|
|
236
|
-
readonly container: "{slug}-filter-{field}";
|
|
237
|
-
readonly trigger: "{slug}-filter-{field}-trigger";
|
|
238
|
-
readonly content: "{slug}-filter-{field}-content";
|
|
239
|
-
readonly option: "{slug}-filter-{field}-option-{value}";
|
|
240
|
-
readonly badge: "{slug}-filter-{field}-badge-{value}";
|
|
241
|
-
readonly removeBadge: "{slug}-filter-{field}-remove-{value}";
|
|
242
|
-
readonly clearAll: "{slug}-filter-{field}-clear-all";
|
|
243
|
-
};
|
|
244
|
-
readonly search: {
|
|
245
|
-
readonly container: "{slug}-search";
|
|
246
|
-
readonly icon: "{slug}-search-icon";
|
|
247
|
-
readonly input: "{slug}-search-input";
|
|
248
|
-
readonly clear: "{slug}-search-clear";
|
|
249
|
-
};
|
|
250
|
-
readonly confirm: {
|
|
251
|
-
readonly dialog: "{slug}-confirm-dialog";
|
|
252
|
-
readonly cancel: "{slug}-confirm-cancel";
|
|
253
|
-
readonly action: "{slug}-confirm-action";
|
|
254
|
-
};
|
|
255
|
-
readonly childEntity: {
|
|
256
|
-
readonly container: "{parentSlug}-{childName}-container";
|
|
257
|
-
readonly addButton: "{parentSlug}-{childName}-add-button";
|
|
258
|
-
};
|
|
259
|
-
};
|
|
260
|
-
readonly globalSearch: {
|
|
261
|
-
readonly modal: "search-modal";
|
|
262
|
-
readonly trigger: "search-trigger";
|
|
263
|
-
readonly input: "search-input";
|
|
264
|
-
readonly results: "search-results";
|
|
265
|
-
readonly result: "search-result";
|
|
266
|
-
};
|
|
267
|
-
readonly taxonomies: {
|
|
268
|
-
readonly list: {
|
|
269
|
-
readonly container: "taxonomies-list-table";
|
|
270
|
-
readonly createButton: "taxonomies-create-button";
|
|
271
|
-
readonly row: "taxonomy-row-{id}";
|
|
272
|
-
readonly editButton: "taxonomies-edit-{id}";
|
|
273
|
-
readonly deleteButton: "taxonomies-delete-{id}";
|
|
274
|
-
};
|
|
275
|
-
readonly form: {
|
|
276
|
-
readonly dialog: "taxonomy-form-dialog";
|
|
277
|
-
readonly nameInput: "taxonomy-name-input";
|
|
278
|
-
readonly slugInput: "taxonomy-slug-input";
|
|
279
|
-
readonly descriptionInput: "taxonomy-description-input";
|
|
280
|
-
readonly iconInput: "taxonomy-icon-input";
|
|
281
|
-
readonly colorInput: "taxonomy-color-input";
|
|
282
|
-
readonly parentSelect: "taxonomy-parent-select";
|
|
283
|
-
readonly orderInput: "taxonomy-order-input";
|
|
284
|
-
readonly saveButton: "taxonomy-save-button";
|
|
285
|
-
readonly cancelButton: "taxonomy-cancel-button";
|
|
286
|
-
};
|
|
287
|
-
readonly confirmDelete: {
|
|
288
|
-
readonly dialog: "taxonomy-delete-dialog";
|
|
289
|
-
readonly confirmButton: "taxonomy-delete-confirm";
|
|
290
|
-
readonly cancelButton: "taxonomy-delete-cancel";
|
|
291
|
-
};
|
|
292
|
-
};
|
|
293
|
-
readonly teams: {
|
|
294
|
-
readonly switcher: {
|
|
295
|
-
readonly compact: "team-switcher-compact";
|
|
296
|
-
readonly full: "team-switcher";
|
|
297
|
-
readonly dropdown: "team-switcher-dropdown";
|
|
298
|
-
readonly option: "team-option-{slug}";
|
|
299
|
-
readonly manageLink: "manage-teams-link";
|
|
300
|
-
readonly createButton: "create-team-button";
|
|
301
|
-
};
|
|
302
|
-
readonly switchModal: {
|
|
303
|
-
readonly container: "team-switch-modal";
|
|
304
|
-
};
|
|
305
|
-
readonly create: {
|
|
306
|
-
readonly dialog: "create-team-dialog";
|
|
307
|
-
readonly button: "create-team-button";
|
|
308
|
-
readonly nameInput: "team-name-input";
|
|
309
|
-
readonly slugInput: "team-slug-input";
|
|
310
|
-
readonly descriptionInput: "team-description-input";
|
|
311
|
-
readonly cancel: "cancel-create-team";
|
|
312
|
-
readonly submit: "submit-create-team";
|
|
313
|
-
};
|
|
314
|
-
readonly members: {
|
|
315
|
-
readonly section: "team-members-section";
|
|
316
|
-
readonly row: "member-row-{id}";
|
|
317
|
-
readonly actions: "member-actions-{id}";
|
|
318
|
-
readonly makeRole: "make-{role}-action";
|
|
319
|
-
readonly remove: "remove-member-action";
|
|
320
|
-
};
|
|
321
|
-
readonly invite: {
|
|
322
|
-
readonly button: "invite-member-button";
|
|
323
|
-
readonly buttonDisabled: "invite-member-button-disabled";
|
|
324
|
-
readonly dialog: "invite-member-dialog";
|
|
325
|
-
readonly emailInput: "member-email-input";
|
|
326
|
-
readonly roleSelect: "member-role-select";
|
|
327
|
-
readonly roleOption: "role-option-{role}";
|
|
328
|
-
readonly cancel: "cancel-invite-member";
|
|
329
|
-
readonly submit: "submit-invite-member";
|
|
330
|
-
};
|
|
331
|
-
readonly invitations: {
|
|
332
|
-
readonly row: "invitation-row-{id}";
|
|
333
|
-
readonly cancel: "cancel-invitation-{id}";
|
|
334
|
-
};
|
|
335
|
-
};
|
|
336
|
-
readonly blockEditor: {
|
|
337
|
-
readonly container: "builder-editor";
|
|
338
|
-
readonly titleInput: "editor-title-input";
|
|
339
|
-
readonly slugInput: "editor-slug-input";
|
|
340
|
-
readonly saveButton: "save-btn";
|
|
341
|
-
readonly statusBadge: "status-badge";
|
|
342
|
-
readonly leftSidebarToggle: "left-sidebar-toggle";
|
|
343
|
-
readonly viewModeToggle: "view-mode-toggle";
|
|
344
|
-
readonly blockPicker: {
|
|
345
|
-
readonly container: "block-picker";
|
|
346
|
-
readonly searchInput: "block-search-input";
|
|
347
|
-
readonly categoryAll: "category-all";
|
|
348
|
-
readonly category: "category-{category}";
|
|
349
|
-
readonly blockItem: "block-item-{slug}";
|
|
350
|
-
readonly addBlock: "add-block-{slug}";
|
|
351
|
-
};
|
|
352
|
-
readonly blockCanvas: {
|
|
353
|
-
readonly container: "block-preview-canvas";
|
|
354
|
-
readonly empty: "block-preview-canvas-empty";
|
|
355
|
-
};
|
|
356
|
-
readonly previewCanvas: {
|
|
357
|
-
readonly container: "block-preview-canvas";
|
|
358
|
-
readonly empty: "block-preview-canvas-empty";
|
|
359
|
-
readonly block: "preview-block-{id}";
|
|
360
|
-
readonly moveUp: "preview-block-{id}-move-up";
|
|
361
|
-
readonly moveDown: "preview-block-{id}-move-down";
|
|
362
|
-
};
|
|
363
|
-
readonly sortableBlock: {
|
|
364
|
-
readonly container: "sortable-block-{id}";
|
|
365
|
-
readonly dragHandle: "drag-handle-{id}";
|
|
366
|
-
readonly duplicate: "duplicate-block-{id}";
|
|
367
|
-
readonly remove: "remove-block-{id}";
|
|
368
|
-
readonly error: "block-error-{id}";
|
|
369
|
-
};
|
|
370
|
-
readonly settingsPanel: {
|
|
371
|
-
readonly container: "block-settings-panel";
|
|
372
|
-
readonly empty: "settings-panel-empty";
|
|
373
|
-
readonly error: "settings-panel-error";
|
|
374
|
-
readonly resetProps: "reset-block-props";
|
|
375
|
-
readonly removeBlock: "remove-block-settings";
|
|
376
|
-
readonly tabContent: "tab-content";
|
|
377
|
-
readonly tabDesign: "tab-design";
|
|
378
|
-
readonly tabAdvanced: "tab-advanced";
|
|
379
|
-
};
|
|
380
|
-
readonly pageSettings: {
|
|
381
|
-
readonly container: "page-settings-panel";
|
|
382
|
-
readonly seoTrigger: "seo-settings-trigger";
|
|
383
|
-
readonly metaTitle: "seo-meta-title";
|
|
384
|
-
readonly metaDescription: "seo-meta-description";
|
|
385
|
-
readonly metaKeywords: "seo-meta-keywords";
|
|
386
|
-
readonly ogImage: "seo-og-image";
|
|
387
|
-
readonly customFieldsTrigger: "custom-fields-trigger";
|
|
388
|
-
readonly customFieldKey: "custom-field-key-{index}";
|
|
389
|
-
readonly customFieldValue: "custom-field-value-{index}";
|
|
390
|
-
readonly customFieldRemove: "custom-field-remove-{index}";
|
|
391
|
-
readonly addCustomField: "add-custom-field";
|
|
392
|
-
};
|
|
393
|
-
readonly statusSelector: {
|
|
394
|
-
readonly trigger: "status-selector";
|
|
395
|
-
readonly option: "status-option-{value}";
|
|
396
|
-
};
|
|
397
|
-
readonly dynamicForm: {
|
|
398
|
-
readonly container: "dynamic-form";
|
|
399
|
-
readonly field: "field-{name}";
|
|
400
|
-
readonly fieldGroup: "field-group-{id}";
|
|
401
|
-
readonly arrayGroup: "array-group-{name}";
|
|
402
|
-
};
|
|
403
|
-
readonly arrayField: {
|
|
404
|
-
readonly container: "array-field-{name}";
|
|
405
|
-
readonly item: "array-field-{name}-{index}-{field}";
|
|
406
|
-
readonly moveUp: "array-field-{name}-{index}-move-up";
|
|
407
|
-
readonly moveDown: "array-field-{name}-{index}-move-down";
|
|
408
|
-
readonly remove: "array-field-{name}-{index}-remove";
|
|
409
|
-
readonly add: "array-field-{name}-add";
|
|
410
|
-
};
|
|
411
|
-
readonly entityFieldsSidebar: {
|
|
412
|
-
readonly container: "entity-fields-sidebar";
|
|
413
|
-
readonly field: "field-{name}";
|
|
414
|
-
readonly category: "category-{slug}";
|
|
415
|
-
};
|
|
416
|
-
readonly postFields: {
|
|
417
|
-
readonly excerpt: "field-excerpt";
|
|
418
|
-
readonly featuredImage: "field-featuredImage";
|
|
419
|
-
readonly featuredImageUpload: "field-featuredImage-upload";
|
|
420
|
-
readonly categories: "field-categories";
|
|
421
|
-
readonly categoryOption: "category-option-{id}";
|
|
422
|
-
readonly categoryBadge: "category-badge-{id}";
|
|
423
|
-
readonly categoryRemove: "category-remove-{id}";
|
|
424
|
-
};
|
|
425
|
-
readonly localeField: {
|
|
426
|
-
readonly select: "field-locale";
|
|
427
|
-
readonly option: "locale-option-{locale}";
|
|
428
|
-
};
|
|
429
|
-
};
|
|
430
|
-
readonly settings: {
|
|
431
|
-
readonly layout: {
|
|
432
|
-
readonly main: "settings-layout-main";
|
|
433
|
-
readonly nav: "settings-layout-nav";
|
|
434
|
-
readonly backToDashboard: "settings-layout-back-to-dashboard";
|
|
435
|
-
readonly header: "settings-layout-header";
|
|
436
|
-
readonly contentArea: "settings-layout-content-area";
|
|
437
|
-
readonly sidebar: "settings-layout-sidebar";
|
|
438
|
-
readonly pageContent: "settings-layout-page-content";
|
|
439
|
-
};
|
|
440
|
-
readonly sidebar: {
|
|
441
|
-
readonly main: "settings-sidebar-main";
|
|
442
|
-
readonly header: "settings-sidebar-header";
|
|
443
|
-
readonly navItems: "settings-sidebar-nav-items";
|
|
444
|
-
readonly navItem: "settings-sidebar-nav-{section}";
|
|
445
|
-
};
|
|
446
|
-
readonly overview: {
|
|
447
|
-
readonly container: "settings-overview";
|
|
448
|
-
readonly item: "settings-overview-{key}";
|
|
449
|
-
};
|
|
450
|
-
readonly profile: {
|
|
451
|
-
readonly container: "settings-profile";
|
|
452
|
-
readonly form: "profile-form";
|
|
453
|
-
readonly avatar: "profile-avatar";
|
|
454
|
-
readonly avatarUpload: "profile-avatar-upload";
|
|
455
|
-
readonly firstName: "profile-first-name";
|
|
456
|
-
readonly lastName: "profile-last-name";
|
|
457
|
-
readonly email: "profile-email";
|
|
458
|
-
readonly submitButton: "profile-submit";
|
|
459
|
-
readonly successMessage: "profile-success";
|
|
460
|
-
};
|
|
461
|
-
readonly password: {
|
|
462
|
-
readonly container: "settings-password";
|
|
463
|
-
readonly form: "password-form";
|
|
464
|
-
readonly currentPassword: "password-current";
|
|
465
|
-
readonly newPassword: "password-new";
|
|
466
|
-
readonly confirmPassword: "password-confirm";
|
|
467
|
-
readonly submitButton: "password-submit";
|
|
468
|
-
readonly successMessage: "password-success";
|
|
469
|
-
};
|
|
470
|
-
readonly team: {
|
|
471
|
-
readonly container: "settings-team";
|
|
472
|
-
readonly name: "team-name";
|
|
473
|
-
readonly slug: "team-slug";
|
|
474
|
-
readonly description: "team-description";
|
|
475
|
-
readonly avatar: "team-avatar";
|
|
476
|
-
readonly avatarUpload: "team-avatar-upload";
|
|
477
|
-
readonly submitButton: "team-submit";
|
|
478
|
-
readonly deleteButton: "team-delete";
|
|
479
|
-
readonly deleteDialog: "team-delete-dialog";
|
|
480
|
-
readonly deleteConfirm: "team-delete-confirm";
|
|
481
|
-
};
|
|
482
|
-
readonly members: {
|
|
483
|
-
readonly container: "settings-members";
|
|
484
|
-
readonly inviteButton: "members-invite";
|
|
485
|
-
readonly inviteDialog: "members-invite-dialog";
|
|
486
|
-
readonly inviteEmail: "members-invite-email";
|
|
487
|
-
readonly inviteRole: "members-invite-role";
|
|
488
|
-
readonly inviteSubmit: "members-invite-submit";
|
|
489
|
-
readonly memberRow: "member-row-{id}";
|
|
490
|
-
readonly memberRole: "member-role-{id}";
|
|
491
|
-
readonly memberRemove: "member-remove-{id}";
|
|
492
|
-
readonly pendingInvites: "members-pending-invites";
|
|
493
|
-
readonly pendingInvite: "pending-invite-{id}";
|
|
494
|
-
readonly cancelInvite: "cancel-invite-{id}";
|
|
495
|
-
};
|
|
496
|
-
readonly billing: {
|
|
497
|
-
readonly container: "settings-billing";
|
|
498
|
-
readonly main: "billing-main";
|
|
499
|
-
readonly header: "billing-header";
|
|
500
|
-
readonly currentPlan: "billing-current-plan";
|
|
501
|
-
readonly upgradeButton: "billing-upgrade";
|
|
502
|
-
readonly upgradePlan: "billing-upgrade-plan";
|
|
503
|
-
readonly cancelButton: "billing-cancel";
|
|
504
|
-
readonly addPayment: "billing-add-payment";
|
|
505
|
-
readonly invoicesTable: "billing-invoices";
|
|
506
|
-
readonly invoicesTableAlt: "invoices-table";
|
|
507
|
-
readonly invoiceRow: "invoice-row-{id}";
|
|
508
|
-
readonly invoicesRow: "invoices-row";
|
|
509
|
-
readonly invoiceDownload: "invoice-download-{id}";
|
|
510
|
-
readonly invoicesLoadMore: "invoices-load-more";
|
|
511
|
-
readonly invoiceStatusBadge: "invoice-status-badge";
|
|
512
|
-
readonly paymentMethod: "billing-payment-method";
|
|
513
|
-
readonly paymentMethodAlt: "payment-method";
|
|
514
|
-
readonly updatePayment: "billing-update-payment";
|
|
515
|
-
readonly usage: "billing-usage";
|
|
516
|
-
readonly usageDashboard: "usage-dashboard";
|
|
517
|
-
};
|
|
518
|
-
readonly pricing: {
|
|
519
|
-
readonly table: "pricing-table";
|
|
520
|
-
readonly settingsTable: "pricing-settings-table";
|
|
521
|
-
};
|
|
522
|
-
readonly features: {
|
|
523
|
-
readonly placeholder: "feature-placeholder-{feature}";
|
|
524
|
-
readonly content: "{feature}-content";
|
|
525
|
-
readonly placeholderUpgradeBtn: "placeholder-upgrade-btn";
|
|
526
|
-
};
|
|
527
|
-
readonly apiKeys: {
|
|
528
|
-
readonly page: "api-keys-page";
|
|
529
|
-
readonly title: "api-keys-title";
|
|
530
|
-
readonly container: "settings-api-keys";
|
|
531
|
-
readonly createButton: "api-keys-create-button";
|
|
532
|
-
readonly createDialog: "api-keys-create-dialog";
|
|
533
|
-
readonly list: "api-keys-list";
|
|
534
|
-
readonly skeleton: "api-keys-skeleton";
|
|
535
|
-
readonly empty: "api-keys-empty";
|
|
536
|
-
readonly emptyCreateButton: "api-keys-empty-create-button";
|
|
537
|
-
readonly keyName: "api-key-name";
|
|
538
|
-
readonly keyScopes: "api-key-scopes";
|
|
539
|
-
readonly scopeOption: "api-key-scope-{scope}";
|
|
540
|
-
readonly createSubmit: "api-key-create-submit";
|
|
541
|
-
readonly keyRow: "api-key-row-{id}";
|
|
542
|
-
readonly keyName_: "api-keys-name-{id}";
|
|
543
|
-
readonly keyPrefix: "api-keys-prefix-{id}";
|
|
544
|
-
readonly copyPrefix: "api-keys-copy-prefix-{id}";
|
|
545
|
-
readonly keyStatus: "api-keys-status-{id}";
|
|
546
|
-
readonly statusBadge: "api-keys-status-badge-{id}";
|
|
547
|
-
readonly menuTrigger: "api-keys-menu-trigger-{id}";
|
|
548
|
-
readonly menu: "api-keys-menu-{id}";
|
|
549
|
-
readonly viewDetails: "api-keys-view-details-{id}";
|
|
550
|
-
readonly toggle: "api-keys-toggle-{id}";
|
|
551
|
-
readonly revoke: "api-keys-revoke-{id}";
|
|
552
|
-
readonly scopes: "api-keys-scopes-{id}";
|
|
553
|
-
readonly scope: "api-keys-scope-{id}-{scope}";
|
|
554
|
-
readonly stats: "api-keys-stats-{id}";
|
|
555
|
-
readonly totalRequests: "api-keys-total-requests-{id}";
|
|
556
|
-
readonly last24h: "api-keys-last-24h-{id}";
|
|
557
|
-
readonly avgTime: "api-keys-avg-time-{id}";
|
|
558
|
-
readonly metadata: "api-keys-metadata-{id}";
|
|
559
|
-
readonly createdAt: "api-keys-created-at-{id}";
|
|
560
|
-
readonly lastUsed: "api-keys-last-used-{id}";
|
|
561
|
-
readonly expiresAt: "api-keys-expires-at-{id}";
|
|
562
|
-
readonly detailsDialog: "api-keys-details-dialog";
|
|
563
|
-
readonly detailsTitle: "api-keys-details-title";
|
|
564
|
-
readonly detailsLoading: "api-keys-details-loading";
|
|
565
|
-
readonly detailsContent: "api-keys-details-content";
|
|
566
|
-
readonly detailsBasicInfo: "api-keys-details-basic-info";
|
|
567
|
-
readonly detailsName: "api-keys-details-name";
|
|
568
|
-
readonly detailsStatus: "api-keys-details-status";
|
|
569
|
-
readonly detailsStats: "api-keys-details-stats";
|
|
570
|
-
readonly detailsTotalRequests: "api-keys-details-total-requests";
|
|
571
|
-
readonly detailsLast24h: "api-keys-details-last-24h";
|
|
572
|
-
readonly detailsLast7d: "api-keys-details-last-7d";
|
|
573
|
-
readonly detailsLast30d: "api-keys-details-last-30d";
|
|
574
|
-
readonly detailsAvgTime: "api-keys-details-avg-time";
|
|
575
|
-
readonly detailsSuccessRate: "api-keys-details-success-rate";
|
|
576
|
-
readonly keyReveal: "api-key-reveal-{id}";
|
|
577
|
-
readonly keyRevoke: "api-key-revoke-{id}";
|
|
578
|
-
readonly revokeDialog: "api-key-revoke-dialog";
|
|
579
|
-
readonly revokeConfirm: "api-key-revoke-confirm";
|
|
580
|
-
readonly newKeyDisplay: "api-key-new-display";
|
|
581
|
-
readonly copyKey: "api-key-copy";
|
|
582
|
-
readonly dialogFooter: "api-keys-dialog-footer";
|
|
583
|
-
};
|
|
584
|
-
readonly notifications: {
|
|
585
|
-
readonly container: "settings-notifications";
|
|
586
|
-
readonly emailToggle: "notifications-email";
|
|
587
|
-
readonly pushToggle: "notifications-push";
|
|
588
|
-
readonly category: "notifications-{category}";
|
|
589
|
-
readonly submitButton: "notifications-submit";
|
|
590
|
-
};
|
|
591
|
-
readonly teams: {
|
|
592
|
-
readonly main: "teams-settings-main";
|
|
593
|
-
readonly header: "teams-settings-header";
|
|
594
|
-
readonly loading: "teams-settings-loading";
|
|
595
|
-
readonly singleUser: "teams-settings-single-user";
|
|
596
|
-
readonly teamsList: "teams-settings-teams-list";
|
|
597
|
-
readonly teamDetails: "teams-settings-team-details";
|
|
598
|
-
};
|
|
599
|
-
readonly plans: {
|
|
600
|
-
readonly main: "plans-settings-main";
|
|
601
|
-
readonly header: "plans-settings-header";
|
|
602
|
-
readonly table: "plans-settings-table";
|
|
603
|
-
};
|
|
604
|
-
};
|
|
605
|
-
readonly superadmin: {
|
|
606
|
-
readonly container: "superadmin-container";
|
|
607
|
-
readonly navigation: {
|
|
608
|
-
readonly dashboard: "superadmin-nav-dashboard";
|
|
609
|
-
readonly users: "superadmin-nav-users";
|
|
610
|
-
readonly teams: "superadmin-nav-teams";
|
|
611
|
-
readonly teamRoles: "superadmin-nav-team-roles";
|
|
612
|
-
readonly docs: "superadmin-nav-docs";
|
|
613
|
-
readonly subscriptions: "superadmin-nav-subscriptions";
|
|
614
|
-
readonly analytics: "superadmin-nav-analytics";
|
|
615
|
-
readonly config: "superadmin-nav-config";
|
|
616
|
-
readonly exitToDashboard: "superadmin-sidebar-exit-to-dashboard";
|
|
617
|
-
};
|
|
618
|
-
readonly dashboard: {
|
|
619
|
-
readonly container: "superadmin-dashboard";
|
|
620
|
-
};
|
|
621
|
-
readonly users: {
|
|
622
|
-
readonly container: "superadmin-users-container";
|
|
623
|
-
readonly table: "superadmin-users-table";
|
|
624
|
-
readonly search: "superadmin-users-search";
|
|
625
|
-
readonly row: "superadmin-user-row-{id}";
|
|
626
|
-
readonly viewButton: "superadmin-user-view-{id}";
|
|
627
|
-
readonly editButton: "superadmin-user-edit-{id}";
|
|
628
|
-
readonly banButton: "superadmin-user-ban-{id}";
|
|
629
|
-
readonly deleteButton: "superadmin-user-delete-{id}";
|
|
630
|
-
readonly impersonateButton: "superadmin-user-impersonate-{id}";
|
|
631
|
-
};
|
|
632
|
-
readonly userDetail: {
|
|
633
|
-
readonly container: "superadmin-user-detail";
|
|
634
|
-
readonly email: "superadmin-user-email";
|
|
635
|
-
readonly role: "superadmin-user-role";
|
|
636
|
-
readonly status: "superadmin-user-status";
|
|
637
|
-
readonly teams: "superadmin-user-teams";
|
|
638
|
-
readonly activity: "superadmin-user-activity";
|
|
639
|
-
readonly actions: "superadmin-user-actions";
|
|
640
|
-
readonly metas: "superadmin-user-metas";
|
|
641
|
-
readonly metasTitle: "superadmin-user-metas-title";
|
|
642
|
-
readonly metasTable: "superadmin-user-metas-table";
|
|
643
|
-
readonly metasEmpty: "superadmin-user-metas-empty";
|
|
644
|
-
readonly metaRow: "superadmin-user-meta-row-{key}";
|
|
645
|
-
readonly metaKey: "superadmin-user-meta-key-{key}";
|
|
646
|
-
readonly metaValue: "superadmin-user-meta-value-{key}";
|
|
647
|
-
readonly metaType: "superadmin-user-meta-type-{key}";
|
|
648
|
-
readonly metaPublic: "superadmin-user-meta-public-{key}";
|
|
649
|
-
readonly metaSearchable: "superadmin-user-meta-searchable-{key}";
|
|
650
|
-
};
|
|
651
|
-
readonly teams: {
|
|
652
|
-
readonly container: "superadmin-teams-container";
|
|
653
|
-
readonly table: "superadmin-teams-table";
|
|
654
|
-
readonly search: "superadmin-teams-search";
|
|
655
|
-
readonly row: "superadmin-team-row-{id}";
|
|
656
|
-
readonly actionsButton: "superadmin-team-actions-{id}";
|
|
657
|
-
readonly viewButton: "superadmin-team-view-{id}";
|
|
658
|
-
readonly editButton: "superadmin-team-edit-{id}";
|
|
659
|
-
readonly deleteButton: "superadmin-team-delete-{id}";
|
|
660
|
-
};
|
|
661
|
-
readonly teamDetail: {
|
|
662
|
-
readonly container: "superadmin-team-detail";
|
|
663
|
-
readonly name: "superadmin-team-name";
|
|
664
|
-
readonly owner: "superadmin-team-owner";
|
|
665
|
-
readonly members: "superadmin-team-members";
|
|
666
|
-
readonly plan: "superadmin-team-plan";
|
|
667
|
-
readonly usage: "superadmin-team-usage";
|
|
668
|
-
};
|
|
669
|
-
readonly subscriptions: {
|
|
670
|
-
readonly container: "superadmin-subscriptions-container";
|
|
671
|
-
readonly mrr: "superadmin-subscriptions-mrr";
|
|
672
|
-
readonly planDistribution: "superadmin-subscriptions-plan-distribution";
|
|
673
|
-
readonly planCount: "superadmin-subscriptions-plan-count-{plan}";
|
|
674
|
-
readonly activeCount: "superadmin-subscriptions-active-count";
|
|
675
|
-
};
|
|
676
|
-
readonly pagination: {
|
|
677
|
-
readonly pageSize: "superadmin-page-size-select";
|
|
678
|
-
readonly first: "superadmin-pagination-first";
|
|
679
|
-
readonly prev: "superadmin-pagination-prev";
|
|
680
|
-
readonly next: "superadmin-pagination-next";
|
|
681
|
-
readonly last: "superadmin-pagination-last";
|
|
682
|
-
};
|
|
683
|
-
readonly filters: {
|
|
684
|
-
readonly search: "superadmin-search-{context}";
|
|
685
|
-
readonly dropdown: "superadmin-filter-{context}";
|
|
686
|
-
};
|
|
687
|
-
readonly permissions: {
|
|
688
|
-
readonly row: "superadmin-permission-row-{permission}";
|
|
689
|
-
};
|
|
690
|
-
readonly teamRoles: {
|
|
691
|
-
readonly backButton: "back-to-superadmin";
|
|
692
|
-
readonly roleCard: "role-card-{role}";
|
|
693
|
-
readonly permissionRow: "permission-row-{permission}";
|
|
694
|
-
};
|
|
695
|
-
readonly planFeatures: {
|
|
696
|
-
readonly featureRow: "superadmin-feature-row-{slug}";
|
|
697
|
-
readonly limitRow: "superadmin-limit-row-{slug}";
|
|
698
|
-
};
|
|
699
|
-
};
|
|
700
|
-
readonly devtools: {
|
|
701
|
-
readonly navigation: {
|
|
702
|
-
readonly sidebar: "devtools-sidebar";
|
|
703
|
-
readonly collapseToggle: "devtools-sidebar-collapse-toggle";
|
|
704
|
-
readonly navItem: "devtools-nav-{section}";
|
|
705
|
-
readonly exitToDashboard: "devtools-sidebar-exit-to-dashboard";
|
|
706
|
-
readonly goToSuperadmin: "devtools-sidebar-go-to-superadmin";
|
|
707
|
-
readonly mobileHeader: "devtools-mobile-header";
|
|
708
|
-
};
|
|
709
|
-
readonly home: {
|
|
710
|
-
readonly page: "devtools-home-page";
|
|
711
|
-
readonly styleLink: "devtools-home-style-link";
|
|
712
|
-
readonly testsLink: "devtools-home-tests-link";
|
|
713
|
-
readonly configLink: "devtools-home-config-link";
|
|
714
|
-
};
|
|
715
|
-
readonly style: {
|
|
716
|
-
readonly page: "devtools-style-page";
|
|
717
|
-
readonly tabComponents: "devtools-style-tab-components";
|
|
718
|
-
readonly tabFieldTypes: "devtools-style-tab-field-types";
|
|
719
|
-
readonly tabTheme: "devtools-style-tab-theme";
|
|
720
|
-
readonly tabGuidelines: "devtools-style-tab-guidelines";
|
|
721
|
-
readonly componentGallery: "devtools-style-component-gallery";
|
|
722
|
-
readonly fieldTypes: "devtools-style-field-types";
|
|
723
|
-
readonly themePreview: "devtools-style-theme-preview";
|
|
724
|
-
};
|
|
725
|
-
readonly config: {
|
|
726
|
-
readonly page: "devtools-config-page";
|
|
727
|
-
readonly viewer: "devtools-config-viewer";
|
|
728
|
-
readonly tabTheme: "devtools-config-tab-theme";
|
|
729
|
-
readonly tabEntities: "devtools-config-tab-entities";
|
|
730
|
-
readonly themeContent: "devtools-config-theme-content";
|
|
731
|
-
readonly entitiesContent: "devtools-config-entities-content";
|
|
732
|
-
readonly copyTheme: "devtools-config-copy-theme";
|
|
733
|
-
readonly copyEntities: "devtools-config-copy-entities";
|
|
734
|
-
};
|
|
735
|
-
readonly tests: {
|
|
736
|
-
readonly page: "devtools-tests-page";
|
|
737
|
-
readonly viewer: "devtools-tests-viewer";
|
|
738
|
-
readonly loading: "devtools-tests-loading";
|
|
739
|
-
readonly tree: "devtools-tests-tree";
|
|
740
|
-
readonly folder: "devtools-tests-folder-{name}";
|
|
741
|
-
readonly file: "devtools-tests-file-{name}";
|
|
742
|
-
readonly content: "devtools-tests-content";
|
|
743
|
-
readonly markdownContent: "devtools-tests-markdown-content";
|
|
744
|
-
readonly notFound: "devtools-tests-not-found";
|
|
745
|
-
readonly backToList: "devtools-tests-back-to-list";
|
|
746
|
-
readonly emptyState: "devtools-tests-empty-state";
|
|
747
|
-
readonly fileLoading: "devtools-tests-file-loading";
|
|
748
|
-
readonly error: "devtools-tests-error";
|
|
749
|
-
readonly dashboard: "devtools-tests-dashboard";
|
|
750
|
-
readonly dashboardButton: "devtools-tests-dashboard-button";
|
|
751
|
-
readonly dashboardStats: "devtools-tests-dashboard-stats";
|
|
752
|
-
readonly dashboardStatFeatures: "devtools-tests-dashboard-stat-features";
|
|
753
|
-
readonly dashboardStatFlows: "devtools-tests-dashboard-stat-flows";
|
|
754
|
-
readonly dashboardStatFiles: "devtools-tests-dashboard-stat-files";
|
|
755
|
-
readonly dashboardStatTags: "devtools-tests-dashboard-stat-tags";
|
|
756
|
-
readonly dashboardGaps: "devtools-tests-dashboard-gaps";
|
|
757
|
-
readonly dashboardGapItem: "devtools-tests-dashboard-gap-{slug}";
|
|
758
|
-
};
|
|
759
|
-
readonly features: {
|
|
760
|
-
readonly page: "devtools-features-page";
|
|
761
|
-
readonly viewer: "devtools-features-viewer";
|
|
762
|
-
readonly search: "devtools-features-search";
|
|
763
|
-
readonly filterAll: "devtools-features-filter-all";
|
|
764
|
-
readonly filterCategory: "devtools-features-filter-{category}";
|
|
765
|
-
readonly coverageAll: "devtools-features-coverage-all";
|
|
766
|
-
readonly coverageCovered: "devtools-features-coverage-covered";
|
|
767
|
-
readonly coverageUncovered: "devtools-features-coverage-uncovered";
|
|
768
|
-
readonly card: "devtools-features-card-{slug}";
|
|
769
|
-
readonly copyTag: "devtools-features-copy-{slug}";
|
|
770
|
-
};
|
|
771
|
-
readonly flows: {
|
|
772
|
-
readonly page: "devtools-flows-page";
|
|
773
|
-
readonly viewer: "devtools-flows-viewer";
|
|
774
|
-
readonly search: "devtools-flows-search";
|
|
775
|
-
readonly filterAll: "devtools-flows-filter-all";
|
|
776
|
-
readonly filterCategory: "devtools-flows-filter-{category}";
|
|
777
|
-
readonly coverageAll: "devtools-flows-coverage-all";
|
|
778
|
-
readonly coverageCovered: "devtools-flows-coverage-covered";
|
|
779
|
-
readonly coverageUncovered: "devtools-flows-coverage-uncovered";
|
|
780
|
-
readonly card: "devtools-flows-card-{slug}";
|
|
781
|
-
readonly copyTag: "devtools-flows-copy-{slug}";
|
|
782
|
-
};
|
|
783
|
-
readonly blocks: {
|
|
784
|
-
readonly page: "devtools-blocks-page";
|
|
785
|
-
readonly viewer: "devtools-blocks-viewer";
|
|
786
|
-
readonly search: "devtools-blocks-search";
|
|
787
|
-
readonly filterAll: "devtools-blocks-filter-all";
|
|
788
|
-
readonly filterCategory: "devtools-blocks-filter-{category}";
|
|
789
|
-
readonly coverageAll: "devtools-blocks-coverage-all";
|
|
790
|
-
readonly coverageCovered: "devtools-blocks-coverage-covered";
|
|
791
|
-
readonly coverageUncovered: "devtools-blocks-coverage-uncovered";
|
|
792
|
-
readonly card: "devtools-blocks-card-{slug}";
|
|
793
|
-
readonly copyTag: "devtools-blocks-copy-{slug}";
|
|
794
|
-
readonly viewDetails: "devtools-blocks-view-{slug}";
|
|
795
|
-
readonly detail: {
|
|
796
|
-
readonly page: "devtools-block-detail-{slug}";
|
|
797
|
-
readonly back: "devtools-block-detail-back";
|
|
798
|
-
readonly tabPreview: "devtools-block-detail-tab-preview";
|
|
799
|
-
readonly tabFields: "devtools-block-detail-tab-fields";
|
|
800
|
-
readonly tabOverview: "devtools-block-detail-tab-overview";
|
|
801
|
-
readonly preview: "devtools-block-detail-preview-{slug}";
|
|
802
|
-
readonly exampleSelector: "devtools-block-example-selector";
|
|
803
|
-
readonly exampleBtn: "devtools-block-example-btn-{index}";
|
|
804
|
-
readonly exampleName: "devtools-block-example-name";
|
|
805
|
-
readonly exampleDescription: "devtools-block-example-description";
|
|
806
|
-
};
|
|
807
|
-
};
|
|
808
|
-
readonly tags: {
|
|
809
|
-
readonly page: "devtools-tags-page";
|
|
810
|
-
readonly viewer: "devtools-tags-viewer";
|
|
811
|
-
readonly search: "devtools-tags-search";
|
|
812
|
-
readonly category: "devtools-tags-category-{category}";
|
|
813
|
-
readonly tag: "devtools-tags-tag-{tag}";
|
|
814
|
-
readonly tagLink: "devtools-tags-link-{tag}";
|
|
815
|
-
readonly filesPanel: "devtools-tags-files-panel-{tag}";
|
|
816
|
-
};
|
|
817
|
-
readonly scheduledActions: {
|
|
818
|
-
readonly page: "devtools-scheduled-actions-page";
|
|
819
|
-
readonly filterStatus: "scheduled-actions-filter-status";
|
|
820
|
-
readonly filterType: "scheduled-actions-filter-type";
|
|
821
|
-
readonly filterApply: "scheduled-actions-filter-apply";
|
|
822
|
-
readonly filterReset: "scheduled-actions-filter-reset";
|
|
823
|
-
readonly table: "scheduled-actions-table";
|
|
824
|
-
readonly row: "scheduled-actions-row-{id}";
|
|
825
|
-
readonly cellType: "scheduled-actions-cell-type";
|
|
826
|
-
readonly cellStatus: "scheduled-actions-cell-status";
|
|
827
|
-
readonly cellScheduledAt: "scheduled-actions-cell-scheduled-at";
|
|
828
|
-
readonly cellTeam: "scheduled-actions-cell-team";
|
|
829
|
-
readonly cellPayload: "scheduled-actions-cell-payload";
|
|
830
|
-
readonly cellError: "scheduled-actions-cell-error";
|
|
831
|
-
readonly statusPending: "scheduled-actions-status-pending";
|
|
832
|
-
readonly statusRunning: "scheduled-actions-status-running";
|
|
833
|
-
readonly statusCompleted: "scheduled-actions-status-completed";
|
|
834
|
-
readonly statusFailed: "scheduled-actions-status-failed";
|
|
835
|
-
readonly pagination: "scheduled-actions-pagination";
|
|
836
|
-
readonly paginationPrev: "scheduled-actions-pagination-prev";
|
|
837
|
-
readonly paginationNext: "scheduled-actions-pagination-next";
|
|
838
|
-
readonly emptyState: "scheduled-actions-empty-state";
|
|
839
|
-
};
|
|
840
|
-
};
|
|
841
|
-
readonly public: {
|
|
842
|
-
readonly navbar: {
|
|
843
|
-
readonly container: "public-navbar";
|
|
844
|
-
readonly logo: "navbar-logo";
|
|
845
|
-
readonly loginButton: "navbar-login";
|
|
846
|
-
readonly signupButton: "navbar-signup";
|
|
847
|
-
};
|
|
848
|
-
readonly footer: {
|
|
849
|
-
readonly container: "public-footer";
|
|
850
|
-
readonly logo: "footer-logo";
|
|
851
|
-
};
|
|
852
|
-
readonly page: {
|
|
853
|
-
readonly container: "public-page-{slug}";
|
|
854
|
-
readonly title: "page-title";
|
|
855
|
-
readonly content: "page-content";
|
|
856
|
-
};
|
|
857
|
-
readonly blog: {
|
|
858
|
-
readonly listContainer: "blog-list";
|
|
859
|
-
readonly postCard: "blog-post-{slug}";
|
|
860
|
-
};
|
|
861
|
-
};
|
|
862
|
-
readonly common: {
|
|
863
|
-
readonly permissionDenied: "permission-denied";
|
|
864
|
-
readonly loading: "loading-spinner";
|
|
865
|
-
readonly error: "error-message";
|
|
866
|
-
readonly toast: "toast-{type}";
|
|
867
|
-
readonly modal: {
|
|
868
|
-
readonly overlay: "modal-overlay";
|
|
869
|
-
readonly container: "modal-container";
|
|
870
|
-
readonly title: "modal-title";
|
|
871
|
-
readonly close: "modal-close";
|
|
872
|
-
readonly content: "modal-content";
|
|
873
|
-
readonly footer: "modal-footer";
|
|
874
|
-
};
|
|
875
|
-
};
|
|
876
|
-
};
|
|
877
|
-
/**
|
|
878
|
-
* Type for the CORE_SELECTORS object
|
|
879
|
-
*/
|
|
880
|
-
type CoreSelectorsType = typeof CORE_SELECTORS;
|
|
881
|
-
|
|
882
|
-
/**
|
|
883
|
-
* Main selector object - single source of truth
|
|
884
|
-
*/
|
|
885
|
-
declare const SELECTORS: {
|
|
886
|
-
readonly auth: {
|
|
887
|
-
readonly login: {
|
|
888
|
-
readonly card: "login-form-card";
|
|
889
|
-
readonly header: "login-header";
|
|
890
|
-
readonly footer: "login-footer";
|
|
891
|
-
readonly form: "login-form";
|
|
892
|
-
readonly options: "login-options";
|
|
893
|
-
readonly emailInput: "login-email-input";
|
|
894
|
-
readonly passwordInput: "login-password-input";
|
|
895
|
-
readonly emailError: "login-email-error";
|
|
896
|
-
readonly passwordError: "login-password-error";
|
|
897
|
-
readonly submit: "login-submit";
|
|
898
|
-
readonly googleSignin: "login-google-signin";
|
|
899
|
-
readonly showEmail: "login-show-email";
|
|
900
|
-
readonly hideEmail: "login-hide-email";
|
|
901
|
-
readonly forgotPassword: "login-forgot-password";
|
|
902
|
-
readonly signupLink: "login-signup-link";
|
|
903
|
-
readonly inviteBanner: "login-invite-banner";
|
|
904
|
-
readonly errorAlert: "login-error-alert";
|
|
905
|
-
readonly rememberCheckbox: "login-remember-checkbox";
|
|
906
|
-
};
|
|
907
|
-
readonly signup: {
|
|
908
|
-
readonly form: "signup-form";
|
|
909
|
-
readonly firstName: "signup-first-name";
|
|
910
|
-
readonly lastName: "signup-last-name";
|
|
911
|
-
readonly email: "signup-email";
|
|
912
|
-
readonly password: "signup-password";
|
|
913
|
-
readonly confirmPassword: "signup-confirm-password";
|
|
914
|
-
readonly submitButton: "signup-submit";
|
|
915
|
-
readonly googleButton: "signup-google";
|
|
916
|
-
readonly loginLink: "signup-login-link";
|
|
917
|
-
readonly inviteBanner: "signup-invite-banner";
|
|
918
|
-
readonly error: "signup-error";
|
|
919
|
-
};
|
|
920
|
-
readonly forgotPassword: {
|
|
921
|
-
readonly form: "forgot-password-form";
|
|
922
|
-
readonly email: "forgot-password-email";
|
|
923
|
-
readonly submitButton: "forgot-password-submit";
|
|
924
|
-
readonly backToLogin: "forgot-password-back";
|
|
925
|
-
readonly successMessage: "forgot-password-success";
|
|
926
|
-
readonly successBack: "forgot-password-success-back";
|
|
927
|
-
readonly retryButton: "forgot-password-retry";
|
|
928
|
-
readonly error: "forgot-password-error";
|
|
929
|
-
};
|
|
930
|
-
readonly resetPassword: {
|
|
931
|
-
readonly form: "reset-password-form";
|
|
932
|
-
readonly password: "reset-password-password";
|
|
933
|
-
readonly confirmPassword: "reset-password-confirm";
|
|
934
|
-
readonly submitButton: "reset-password-submit";
|
|
935
|
-
readonly error: "reset-password-error";
|
|
936
|
-
readonly success: "reset-password-success";
|
|
937
|
-
readonly loginLink: "reset-password-login-link";
|
|
938
|
-
readonly backToLogin: "reset-password-back";
|
|
939
|
-
};
|
|
940
|
-
readonly verifyEmail: {
|
|
941
|
-
readonly container: "verify-email-container";
|
|
942
|
-
readonly resendButton: "verify-email-resend";
|
|
943
|
-
readonly successMessage: "verify-email-success";
|
|
944
|
-
readonly error: "verify-email-error";
|
|
945
|
-
};
|
|
946
|
-
readonly devKeyring: {
|
|
947
|
-
readonly container: "devkeyring-container";
|
|
948
|
-
readonly trigger: "devkeyring-trigger";
|
|
949
|
-
readonly content: "devkeyring-content";
|
|
950
|
-
readonly user: "devkeyring-user-{index}";
|
|
951
|
-
};
|
|
952
|
-
};
|
|
953
|
-
readonly dashboard: {
|
|
954
|
-
readonly shell: {
|
|
955
|
-
readonly container: "dashboard-container";
|
|
956
|
-
readonly quickCreateButton: "topnav-quick-create-button";
|
|
957
|
-
readonly quickCreateDropdown: "topnav-quick-create-dropdown";
|
|
958
|
-
readonly quickCreateLink: "quick-create-{slug}-link";
|
|
959
|
-
};
|
|
960
|
-
readonly topnav: {
|
|
961
|
-
readonly sidebarToggle: "topnav-sidebar-toggle";
|
|
962
|
-
readonly header: "topnav-header";
|
|
963
|
-
readonly logo: "topnav-logo";
|
|
964
|
-
readonly searchSection: "topnav-search-section";
|
|
965
|
-
readonly actions: "topnav-actions";
|
|
966
|
-
readonly notifications: "topnav-notifications";
|
|
967
|
-
readonly help: "topnav-help";
|
|
968
|
-
readonly themeToggle: "topnav-theme-toggle";
|
|
969
|
-
readonly superadmin: "topnav-superadmin";
|
|
970
|
-
readonly devtools: "topnav-devtools";
|
|
971
|
-
readonly userMenuTrigger: "topnav-user-menu-trigger";
|
|
972
|
-
readonly userMenu: "topnav-user-menu";
|
|
973
|
-
readonly menuItem: "topnav-menu-{icon}";
|
|
974
|
-
readonly menuAction: "topnav-menu-{action}";
|
|
975
|
-
readonly userLoading: "topnav-user-loading";
|
|
976
|
-
readonly signin: "topnav-signin";
|
|
977
|
-
readonly signup: "topnav-signup";
|
|
978
|
-
readonly mobileActions: "topnav-mobile-actions";
|
|
979
|
-
readonly mobileMenuToggle: "topnav-mobile-menu-toggle";
|
|
980
|
-
readonly mobileMenu: "topnav-mobile-menu";
|
|
981
|
-
readonly mobileUserInfo: "topnav-mobile-user-info";
|
|
982
|
-
readonly mobileLinkProfile: "topnav-mobile-link-profile";
|
|
983
|
-
readonly mobileLinkSettings: "topnav-mobile-link-settings";
|
|
984
|
-
readonly mobileLinkBilling: "topnav-mobile-link-billing";
|
|
985
|
-
readonly mobileSignout: "topnav-mobile-signout";
|
|
986
|
-
readonly mobileNavSuperadmin: "topnav-mobile-nav-superadmin";
|
|
987
|
-
readonly mobileNavDevtools: "topnav-mobile-nav-devtools";
|
|
988
|
-
};
|
|
989
|
-
readonly sidebar: {
|
|
990
|
-
readonly main: "sidebar-main";
|
|
991
|
-
readonly header: "sidebar-header";
|
|
992
|
-
readonly content: "sidebar-content";
|
|
993
|
-
readonly footer: "sidebar-footer";
|
|
994
|
-
};
|
|
995
|
-
readonly navigation: {
|
|
996
|
-
readonly main: "nav-main";
|
|
997
|
-
readonly dashboardLink: "nav-link-dashboard";
|
|
998
|
-
readonly entityLink: "nav-link-entity-{slug}";
|
|
999
|
-
readonly section: "nav-section-{id}";
|
|
1000
|
-
readonly sectionLabel: "nav-section-label-{id}";
|
|
1001
|
-
readonly sectionItem: "nav-section-item-{sectionId}-{itemId}";
|
|
1002
|
-
};
|
|
1003
|
-
readonly mobile: {
|
|
1004
|
-
readonly topbar: {
|
|
1005
|
-
readonly header: "mobile-topbar-header";
|
|
1006
|
-
readonly userProfile: "mobile-topbar-user-profile";
|
|
1007
|
-
readonly notifications: "mobile-topbar-notifications";
|
|
1008
|
-
readonly themeToggle: "mobile-topbar-theme-toggle";
|
|
1009
|
-
};
|
|
1010
|
-
readonly bottomNav: {
|
|
1011
|
-
readonly nav: "mobile-bottomnav-nav";
|
|
1012
|
-
readonly item: "mobile-bottomnav-item-{id}";
|
|
1013
|
-
};
|
|
1014
|
-
readonly moreSheet: {
|
|
1015
|
-
readonly content: "mobile-more-sheet-content";
|
|
1016
|
-
readonly item: "mobile-more-sheet-item-{id}";
|
|
1017
|
-
readonly superadminLink: "mobile-more-sheet-superadmin-link";
|
|
1018
|
-
readonly teamSwitcher: "mobile-more-sheet-team-switcher";
|
|
1019
|
-
readonly signoutButton: "mobile-more-sheet-signout-button";
|
|
1020
|
-
};
|
|
1021
|
-
readonly quickCreateSheet: {
|
|
1022
|
-
readonly content: "mobile-quick-create-sheet-content";
|
|
1023
|
-
readonly item: "mobile-quick-create-sheet-item-{slug}";
|
|
1024
|
-
};
|
|
1025
|
-
};
|
|
1026
|
-
};
|
|
1027
|
-
readonly entities: {
|
|
1028
|
-
readonly page: {
|
|
1029
|
-
readonly container: "{slug}-page";
|
|
1030
|
-
readonly title: "{slug}-title";
|
|
1031
|
-
};
|
|
1032
|
-
readonly list: {
|
|
1033
|
-
readonly container: "{slug}-list";
|
|
1034
|
-
};
|
|
1035
|
-
readonly table: {
|
|
1036
|
-
readonly container: "{slug}-table-container";
|
|
1037
|
-
readonly element: "{slug}-table";
|
|
1038
|
-
readonly search: "{slug}-search";
|
|
1039
|
-
readonly addButton: "{slug}-add";
|
|
1040
|
-
readonly selectionCount: "{slug}-selection-count";
|
|
1041
|
-
readonly selectAll: "{slug}-select-all";
|
|
1042
|
-
readonly row: "{slug}-row-{id}";
|
|
1043
|
-
readonly rowSelect: "{slug}-select-{id}";
|
|
1044
|
-
readonly cell: "{slug}-cell-{field}-{id}";
|
|
1045
|
-
readonly rowMenu: "{slug}-menu-{id}";
|
|
1046
|
-
readonly rowActionsMenu: "{slug}-actions-{id}";
|
|
1047
|
-
readonly rowAction: "{slug}-menu-{action}-{id}";
|
|
1048
|
-
readonly quickAction: "{slug}-quick-{action}-{id}";
|
|
1049
|
-
};
|
|
1050
|
-
readonly pagination: {
|
|
1051
|
-
readonly container: "{slug}-pagination";
|
|
1052
|
-
readonly pageSize: "{slug}-page-size";
|
|
1053
|
-
readonly pageSizeOption: "{slug}-page-size-{size}";
|
|
1054
|
-
readonly pageInfo: "{slug}-page-info";
|
|
1055
|
-
readonly first: "{slug}-page-first";
|
|
1056
|
-
readonly prev: "{slug}-page-prev";
|
|
1057
|
-
readonly next: "{slug}-page-next";
|
|
1058
|
-
readonly last: "{slug}-page-last";
|
|
1059
|
-
};
|
|
1060
|
-
readonly bulk: {
|
|
1061
|
-
readonly bar: "{slug}-bulk-bar";
|
|
1062
|
-
readonly count: "{slug}-bulk-count";
|
|
1063
|
-
readonly selectAll: "{slug}-bulk-select-all";
|
|
1064
|
-
readonly statusButton: "{slug}-bulk-status";
|
|
1065
|
-
readonly deleteButton: "{slug}-bulk-delete";
|
|
1066
|
-
readonly clearButton: "{slug}-bulk-clear";
|
|
1067
|
-
readonly statusDialog: "{slug}-bulk-status-dialog";
|
|
1068
|
-
readonly statusSelect: "{slug}-bulk-status-select";
|
|
1069
|
-
readonly statusOption: "{slug}-bulk-status-option-{value}";
|
|
1070
|
-
readonly statusCancel: "{slug}-bulk-status-cancel";
|
|
1071
|
-
readonly statusConfirm: "{slug}-bulk-status-confirm";
|
|
1072
|
-
readonly deleteDialog: "{slug}-bulk-delete-dialog";
|
|
1073
|
-
readonly deleteCancel: "{slug}-bulk-delete-cancel";
|
|
1074
|
-
readonly deleteConfirm: "{slug}-bulk-delete-confirm";
|
|
1075
|
-
};
|
|
1076
|
-
readonly header: {
|
|
1077
|
-
readonly container: "{slug}-{mode}-header";
|
|
1078
|
-
readonly backButton: "{slug}-back-btn";
|
|
1079
|
-
readonly title: "{slug}-title";
|
|
1080
|
-
readonly copyId: "{slug}-copy-id";
|
|
1081
|
-
readonly editButton: "{slug}-edit-btn";
|
|
1082
|
-
readonly deleteButton: "{slug}-delete-btn";
|
|
1083
|
-
readonly deleteDialog: "{slug}-delete-dialog";
|
|
1084
|
-
readonly deleteCancel: "{slug}-delete-cancel";
|
|
1085
|
-
readonly deleteConfirm: "{slug}-delete-confirm";
|
|
1086
|
-
};
|
|
1087
|
-
readonly detail: {
|
|
1088
|
-
readonly container: "{slug}-detail";
|
|
1089
|
-
};
|
|
1090
|
-
readonly form: {
|
|
1091
|
-
readonly container: "{slug}-form";
|
|
1092
|
-
readonly field: "{slug}-field-{name}";
|
|
1093
|
-
readonly submitButton: "{slug}-form-submit";
|
|
1094
|
-
readonly cancelButton: "{slug}-form-cancel";
|
|
1095
|
-
};
|
|
1096
|
-
readonly filter: {
|
|
1097
|
-
readonly container: "{slug}-filter-{field}";
|
|
1098
|
-
readonly trigger: "{slug}-filter-{field}-trigger";
|
|
1099
|
-
readonly content: "{slug}-filter-{field}-content";
|
|
1100
|
-
readonly option: "{slug}-filter-{field}-option-{value}";
|
|
1101
|
-
readonly badge: "{slug}-filter-{field}-badge-{value}";
|
|
1102
|
-
readonly removeBadge: "{slug}-filter-{field}-remove-{value}";
|
|
1103
|
-
readonly clearAll: "{slug}-filter-{field}-clear-all";
|
|
1104
|
-
};
|
|
1105
|
-
readonly search: {
|
|
1106
|
-
readonly container: "{slug}-search";
|
|
1107
|
-
readonly icon: "{slug}-search-icon";
|
|
1108
|
-
readonly input: "{slug}-search-input";
|
|
1109
|
-
readonly clear: "{slug}-search-clear";
|
|
1110
|
-
};
|
|
1111
|
-
readonly confirm: {
|
|
1112
|
-
readonly dialog: "{slug}-confirm-dialog";
|
|
1113
|
-
readonly cancel: "{slug}-confirm-cancel";
|
|
1114
|
-
readonly action: "{slug}-confirm-action";
|
|
1115
|
-
};
|
|
1116
|
-
readonly childEntity: {
|
|
1117
|
-
readonly container: "{parentSlug}-{childName}-container";
|
|
1118
|
-
readonly addButton: "{parentSlug}-{childName}-add-button";
|
|
1119
|
-
};
|
|
1120
|
-
};
|
|
1121
|
-
readonly globalSearch: {
|
|
1122
|
-
readonly modal: "search-modal";
|
|
1123
|
-
readonly trigger: "search-trigger";
|
|
1124
|
-
readonly input: "search-input";
|
|
1125
|
-
readonly results: "search-results";
|
|
1126
|
-
readonly result: "search-result";
|
|
1127
|
-
};
|
|
1128
|
-
readonly taxonomies: {
|
|
1129
|
-
readonly list: {
|
|
1130
|
-
readonly container: "taxonomies-list-table";
|
|
1131
|
-
readonly createButton: "taxonomies-create-button";
|
|
1132
|
-
readonly row: "taxonomy-row-{id}";
|
|
1133
|
-
readonly editButton: "taxonomies-edit-{id}";
|
|
1134
|
-
readonly deleteButton: "taxonomies-delete-{id}";
|
|
1135
|
-
};
|
|
1136
|
-
readonly form: {
|
|
1137
|
-
readonly dialog: "taxonomy-form-dialog";
|
|
1138
|
-
readonly nameInput: "taxonomy-name-input";
|
|
1139
|
-
readonly slugInput: "taxonomy-slug-input";
|
|
1140
|
-
readonly descriptionInput: "taxonomy-description-input";
|
|
1141
|
-
readonly iconInput: "taxonomy-icon-input";
|
|
1142
|
-
readonly colorInput: "taxonomy-color-input";
|
|
1143
|
-
readonly parentSelect: "taxonomy-parent-select";
|
|
1144
|
-
readonly orderInput: "taxonomy-order-input";
|
|
1145
|
-
readonly saveButton: "taxonomy-save-button";
|
|
1146
|
-
readonly cancelButton: "taxonomy-cancel-button";
|
|
1147
|
-
};
|
|
1148
|
-
readonly confirmDelete: {
|
|
1149
|
-
readonly dialog: "taxonomy-delete-dialog";
|
|
1150
|
-
readonly confirmButton: "taxonomy-delete-confirm";
|
|
1151
|
-
readonly cancelButton: "taxonomy-delete-cancel";
|
|
1152
|
-
};
|
|
1153
|
-
};
|
|
1154
|
-
readonly teams: {
|
|
1155
|
-
readonly switcher: {
|
|
1156
|
-
readonly compact: "team-switcher-compact";
|
|
1157
|
-
readonly full: "team-switcher";
|
|
1158
|
-
readonly dropdown: "team-switcher-dropdown";
|
|
1159
|
-
readonly option: "team-option-{slug}";
|
|
1160
|
-
readonly manageLink: "manage-teams-link";
|
|
1161
|
-
readonly createButton: "create-team-button";
|
|
1162
|
-
};
|
|
1163
|
-
readonly switchModal: {
|
|
1164
|
-
readonly container: "team-switch-modal";
|
|
1165
|
-
};
|
|
1166
|
-
readonly create: {
|
|
1167
|
-
readonly dialog: "create-team-dialog";
|
|
1168
|
-
readonly button: "create-team-button";
|
|
1169
|
-
readonly nameInput: "team-name-input";
|
|
1170
|
-
readonly slugInput: "team-slug-input";
|
|
1171
|
-
readonly descriptionInput: "team-description-input";
|
|
1172
|
-
readonly cancel: "cancel-create-team";
|
|
1173
|
-
readonly submit: "submit-create-team";
|
|
1174
|
-
};
|
|
1175
|
-
readonly members: {
|
|
1176
|
-
readonly section: "team-members-section";
|
|
1177
|
-
readonly row: "member-row-{id}";
|
|
1178
|
-
readonly actions: "member-actions-{id}";
|
|
1179
|
-
readonly makeRole: "make-{role}-action";
|
|
1180
|
-
readonly remove: "remove-member-action";
|
|
1181
|
-
};
|
|
1182
|
-
readonly invite: {
|
|
1183
|
-
readonly button: "invite-member-button";
|
|
1184
|
-
readonly buttonDisabled: "invite-member-button-disabled";
|
|
1185
|
-
readonly dialog: "invite-member-dialog";
|
|
1186
|
-
readonly emailInput: "member-email-input";
|
|
1187
|
-
readonly roleSelect: "member-role-select";
|
|
1188
|
-
readonly roleOption: "role-option-{role}";
|
|
1189
|
-
readonly cancel: "cancel-invite-member";
|
|
1190
|
-
readonly submit: "submit-invite-member";
|
|
1191
|
-
};
|
|
1192
|
-
readonly invitations: {
|
|
1193
|
-
readonly row: "invitation-row-{id}";
|
|
1194
|
-
readonly cancel: "cancel-invitation-{id}";
|
|
1195
|
-
};
|
|
1196
|
-
};
|
|
1197
|
-
readonly blockEditor: {
|
|
1198
|
-
readonly container: "builder-editor";
|
|
1199
|
-
readonly titleInput: "editor-title-input";
|
|
1200
|
-
readonly slugInput: "editor-slug-input";
|
|
1201
|
-
readonly saveButton: "save-btn";
|
|
1202
|
-
readonly statusBadge: "status-badge";
|
|
1203
|
-
readonly leftSidebarToggle: "left-sidebar-toggle";
|
|
1204
|
-
readonly viewModeToggle: "view-mode-toggle";
|
|
1205
|
-
readonly blockPicker: {
|
|
1206
|
-
readonly container: "block-picker";
|
|
1207
|
-
readonly searchInput: "block-search-input";
|
|
1208
|
-
readonly categoryAll: "category-all";
|
|
1209
|
-
readonly category: "category-{category}";
|
|
1210
|
-
readonly blockItem: "block-item-{slug}";
|
|
1211
|
-
readonly addBlock: "add-block-{slug}";
|
|
1212
|
-
};
|
|
1213
|
-
readonly blockCanvas: {
|
|
1214
|
-
readonly container: "block-preview-canvas";
|
|
1215
|
-
readonly empty: "block-preview-canvas-empty";
|
|
1216
|
-
};
|
|
1217
|
-
readonly previewCanvas: {
|
|
1218
|
-
readonly container: "block-preview-canvas";
|
|
1219
|
-
readonly empty: "block-preview-canvas-empty";
|
|
1220
|
-
readonly block: "preview-block-{id}";
|
|
1221
|
-
readonly moveUp: "preview-block-{id}-move-up";
|
|
1222
|
-
readonly moveDown: "preview-block-{id}-move-down";
|
|
1223
|
-
};
|
|
1224
|
-
readonly sortableBlock: {
|
|
1225
|
-
readonly container: "sortable-block-{id}";
|
|
1226
|
-
readonly dragHandle: "drag-handle-{id}";
|
|
1227
|
-
readonly duplicate: "duplicate-block-{id}";
|
|
1228
|
-
readonly remove: "remove-block-{id}";
|
|
1229
|
-
readonly error: "block-error-{id}";
|
|
1230
|
-
};
|
|
1231
|
-
readonly settingsPanel: {
|
|
1232
|
-
readonly container: "block-settings-panel";
|
|
1233
|
-
readonly empty: "settings-panel-empty";
|
|
1234
|
-
readonly error: "settings-panel-error";
|
|
1235
|
-
readonly resetProps: "reset-block-props";
|
|
1236
|
-
readonly removeBlock: "remove-block-settings";
|
|
1237
|
-
readonly tabContent: "tab-content";
|
|
1238
|
-
readonly tabDesign: "tab-design";
|
|
1239
|
-
readonly tabAdvanced: "tab-advanced";
|
|
1240
|
-
};
|
|
1241
|
-
readonly pageSettings: {
|
|
1242
|
-
readonly container: "page-settings-panel";
|
|
1243
|
-
readonly seoTrigger: "seo-settings-trigger";
|
|
1244
|
-
readonly metaTitle: "seo-meta-title";
|
|
1245
|
-
readonly metaDescription: "seo-meta-description";
|
|
1246
|
-
readonly metaKeywords: "seo-meta-keywords";
|
|
1247
|
-
readonly ogImage: "seo-og-image";
|
|
1248
|
-
readonly customFieldsTrigger: "custom-fields-trigger";
|
|
1249
|
-
readonly customFieldKey: "custom-field-key-{index}";
|
|
1250
|
-
readonly customFieldValue: "custom-field-value-{index}";
|
|
1251
|
-
readonly customFieldRemove: "custom-field-remove-{index}";
|
|
1252
|
-
readonly addCustomField: "add-custom-field";
|
|
1253
|
-
};
|
|
1254
|
-
readonly statusSelector: {
|
|
1255
|
-
readonly trigger: "status-selector";
|
|
1256
|
-
readonly option: "status-option-{value}";
|
|
1257
|
-
};
|
|
1258
|
-
readonly dynamicForm: {
|
|
1259
|
-
readonly container: "dynamic-form";
|
|
1260
|
-
readonly field: "field-{name}";
|
|
1261
|
-
readonly fieldGroup: "field-group-{id}";
|
|
1262
|
-
readonly arrayGroup: "array-group-{name}";
|
|
1263
|
-
};
|
|
1264
|
-
readonly arrayField: {
|
|
1265
|
-
readonly container: "array-field-{name}";
|
|
1266
|
-
readonly item: "array-field-{name}-{index}-{field}";
|
|
1267
|
-
readonly moveUp: "array-field-{name}-{index}-move-up";
|
|
1268
|
-
readonly moveDown: "array-field-{name}-{index}-move-down";
|
|
1269
|
-
readonly remove: "array-field-{name}-{index}-remove";
|
|
1270
|
-
readonly add: "array-field-{name}-add";
|
|
1271
|
-
};
|
|
1272
|
-
readonly entityFieldsSidebar: {
|
|
1273
|
-
readonly container: "entity-fields-sidebar";
|
|
1274
|
-
readonly field: "field-{name}";
|
|
1275
|
-
readonly category: "category-{slug}";
|
|
1276
|
-
};
|
|
1277
|
-
readonly postFields: {
|
|
1278
|
-
readonly excerpt: "field-excerpt";
|
|
1279
|
-
readonly featuredImage: "field-featuredImage";
|
|
1280
|
-
readonly featuredImageUpload: "field-featuredImage-upload";
|
|
1281
|
-
readonly categories: "field-categories";
|
|
1282
|
-
readonly categoryOption: "category-option-{id}";
|
|
1283
|
-
readonly categoryBadge: "category-badge-{id}";
|
|
1284
|
-
readonly categoryRemove: "category-remove-{id}";
|
|
1285
|
-
};
|
|
1286
|
-
readonly localeField: {
|
|
1287
|
-
readonly select: "field-locale";
|
|
1288
|
-
readonly option: "locale-option-{locale}";
|
|
1289
|
-
};
|
|
1290
|
-
};
|
|
1291
|
-
readonly settings: {
|
|
1292
|
-
readonly layout: {
|
|
1293
|
-
readonly main: "settings-layout-main";
|
|
1294
|
-
readonly nav: "settings-layout-nav";
|
|
1295
|
-
readonly backToDashboard: "settings-layout-back-to-dashboard";
|
|
1296
|
-
readonly header: "settings-layout-header";
|
|
1297
|
-
readonly contentArea: "settings-layout-content-area";
|
|
1298
|
-
readonly sidebar: "settings-layout-sidebar";
|
|
1299
|
-
readonly pageContent: "settings-layout-page-content";
|
|
1300
|
-
};
|
|
1301
|
-
readonly sidebar: {
|
|
1302
|
-
readonly main: "settings-sidebar-main";
|
|
1303
|
-
readonly header: "settings-sidebar-header";
|
|
1304
|
-
readonly navItems: "settings-sidebar-nav-items";
|
|
1305
|
-
readonly navItem: "settings-sidebar-nav-{section}";
|
|
1306
|
-
};
|
|
1307
|
-
readonly overview: {
|
|
1308
|
-
readonly container: "settings-overview";
|
|
1309
|
-
readonly item: "settings-overview-{key}";
|
|
1310
|
-
};
|
|
1311
|
-
readonly profile: {
|
|
1312
|
-
readonly container: "settings-profile";
|
|
1313
|
-
readonly form: "profile-form";
|
|
1314
|
-
readonly avatar: "profile-avatar";
|
|
1315
|
-
readonly avatarUpload: "profile-avatar-upload";
|
|
1316
|
-
readonly firstName: "profile-first-name";
|
|
1317
|
-
readonly lastName: "profile-last-name";
|
|
1318
|
-
readonly email: "profile-email";
|
|
1319
|
-
readonly submitButton: "profile-submit";
|
|
1320
|
-
readonly successMessage: "profile-success";
|
|
1321
|
-
};
|
|
1322
|
-
readonly password: {
|
|
1323
|
-
readonly container: "settings-password";
|
|
1324
|
-
readonly form: "password-form";
|
|
1325
|
-
readonly currentPassword: "password-current";
|
|
1326
|
-
readonly newPassword: "password-new";
|
|
1327
|
-
readonly confirmPassword: "password-confirm";
|
|
1328
|
-
readonly submitButton: "password-submit";
|
|
1329
|
-
readonly successMessage: "password-success";
|
|
1330
|
-
};
|
|
1331
|
-
readonly team: {
|
|
1332
|
-
readonly container: "settings-team";
|
|
1333
|
-
readonly name: "team-name";
|
|
1334
|
-
readonly slug: "team-slug";
|
|
1335
|
-
readonly description: "team-description";
|
|
1336
|
-
readonly avatar: "team-avatar";
|
|
1337
|
-
readonly avatarUpload: "team-avatar-upload";
|
|
1338
|
-
readonly submitButton: "team-submit";
|
|
1339
|
-
readonly deleteButton: "team-delete";
|
|
1340
|
-
readonly deleteDialog: "team-delete-dialog";
|
|
1341
|
-
readonly deleteConfirm: "team-delete-confirm";
|
|
1342
|
-
};
|
|
1343
|
-
readonly members: {
|
|
1344
|
-
readonly container: "settings-members";
|
|
1345
|
-
readonly inviteButton: "members-invite";
|
|
1346
|
-
readonly inviteDialog: "members-invite-dialog";
|
|
1347
|
-
readonly inviteEmail: "members-invite-email";
|
|
1348
|
-
readonly inviteRole: "members-invite-role";
|
|
1349
|
-
readonly inviteSubmit: "members-invite-submit";
|
|
1350
|
-
readonly memberRow: "member-row-{id}";
|
|
1351
|
-
readonly memberRole: "member-role-{id}";
|
|
1352
|
-
readonly memberRemove: "member-remove-{id}";
|
|
1353
|
-
readonly pendingInvites: "members-pending-invites";
|
|
1354
|
-
readonly pendingInvite: "pending-invite-{id}";
|
|
1355
|
-
readonly cancelInvite: "cancel-invite-{id}";
|
|
1356
|
-
};
|
|
1357
|
-
readonly billing: {
|
|
1358
|
-
readonly container: "settings-billing";
|
|
1359
|
-
readonly main: "billing-main";
|
|
1360
|
-
readonly header: "billing-header";
|
|
1361
|
-
readonly currentPlan: "billing-current-plan";
|
|
1362
|
-
readonly upgradeButton: "billing-upgrade";
|
|
1363
|
-
readonly upgradePlan: "billing-upgrade-plan";
|
|
1364
|
-
readonly cancelButton: "billing-cancel";
|
|
1365
|
-
readonly addPayment: "billing-add-payment";
|
|
1366
|
-
readonly invoicesTable: "billing-invoices";
|
|
1367
|
-
readonly invoicesTableAlt: "invoices-table";
|
|
1368
|
-
readonly invoiceRow: "invoice-row-{id}";
|
|
1369
|
-
readonly invoicesRow: "invoices-row";
|
|
1370
|
-
readonly invoiceDownload: "invoice-download-{id}";
|
|
1371
|
-
readonly invoicesLoadMore: "invoices-load-more";
|
|
1372
|
-
readonly invoiceStatusBadge: "invoice-status-badge";
|
|
1373
|
-
readonly paymentMethod: "billing-payment-method";
|
|
1374
|
-
readonly paymentMethodAlt: "payment-method";
|
|
1375
|
-
readonly updatePayment: "billing-update-payment";
|
|
1376
|
-
readonly usage: "billing-usage";
|
|
1377
|
-
readonly usageDashboard: "usage-dashboard";
|
|
1378
|
-
};
|
|
1379
|
-
readonly pricing: {
|
|
1380
|
-
readonly table: "pricing-table";
|
|
1381
|
-
readonly settingsTable: "pricing-settings-table";
|
|
1382
|
-
};
|
|
1383
|
-
readonly features: {
|
|
1384
|
-
readonly placeholder: "feature-placeholder-{feature}";
|
|
1385
|
-
readonly content: "{feature}-content";
|
|
1386
|
-
readonly placeholderUpgradeBtn: "placeholder-upgrade-btn";
|
|
1387
|
-
};
|
|
1388
|
-
readonly apiKeys: {
|
|
1389
|
-
readonly page: "api-keys-page";
|
|
1390
|
-
readonly title: "api-keys-title";
|
|
1391
|
-
readonly container: "settings-api-keys";
|
|
1392
|
-
readonly createButton: "api-keys-create-button";
|
|
1393
|
-
readonly createDialog: "api-keys-create-dialog";
|
|
1394
|
-
readonly list: "api-keys-list";
|
|
1395
|
-
readonly skeleton: "api-keys-skeleton";
|
|
1396
|
-
readonly empty: "api-keys-empty";
|
|
1397
|
-
readonly emptyCreateButton: "api-keys-empty-create-button";
|
|
1398
|
-
readonly keyName: "api-key-name";
|
|
1399
|
-
readonly keyScopes: "api-key-scopes";
|
|
1400
|
-
readonly scopeOption: "api-key-scope-{scope}";
|
|
1401
|
-
readonly createSubmit: "api-key-create-submit";
|
|
1402
|
-
readonly keyRow: "api-key-row-{id}";
|
|
1403
|
-
readonly keyName_: "api-keys-name-{id}";
|
|
1404
|
-
readonly keyPrefix: "api-keys-prefix-{id}";
|
|
1405
|
-
readonly copyPrefix: "api-keys-copy-prefix-{id}";
|
|
1406
|
-
readonly keyStatus: "api-keys-status-{id}";
|
|
1407
|
-
readonly statusBadge: "api-keys-status-badge-{id}";
|
|
1408
|
-
readonly menuTrigger: "api-keys-menu-trigger-{id}";
|
|
1409
|
-
readonly menu: "api-keys-menu-{id}";
|
|
1410
|
-
readonly viewDetails: "api-keys-view-details-{id}";
|
|
1411
|
-
readonly toggle: "api-keys-toggle-{id}";
|
|
1412
|
-
readonly revoke: "api-keys-revoke-{id}";
|
|
1413
|
-
readonly scopes: "api-keys-scopes-{id}";
|
|
1414
|
-
readonly scope: "api-keys-scope-{id}-{scope}";
|
|
1415
|
-
readonly stats: "api-keys-stats-{id}";
|
|
1416
|
-
readonly totalRequests: "api-keys-total-requests-{id}";
|
|
1417
|
-
readonly last24h: "api-keys-last-24h-{id}";
|
|
1418
|
-
readonly avgTime: "api-keys-avg-time-{id}";
|
|
1419
|
-
readonly metadata: "api-keys-metadata-{id}";
|
|
1420
|
-
readonly createdAt: "api-keys-created-at-{id}";
|
|
1421
|
-
readonly lastUsed: "api-keys-last-used-{id}";
|
|
1422
|
-
readonly expiresAt: "api-keys-expires-at-{id}";
|
|
1423
|
-
readonly detailsDialog: "api-keys-details-dialog";
|
|
1424
|
-
readonly detailsTitle: "api-keys-details-title";
|
|
1425
|
-
readonly detailsLoading: "api-keys-details-loading";
|
|
1426
|
-
readonly detailsContent: "api-keys-details-content";
|
|
1427
|
-
readonly detailsBasicInfo: "api-keys-details-basic-info";
|
|
1428
|
-
readonly detailsName: "api-keys-details-name";
|
|
1429
|
-
readonly detailsStatus: "api-keys-details-status";
|
|
1430
|
-
readonly detailsStats: "api-keys-details-stats";
|
|
1431
|
-
readonly detailsTotalRequests: "api-keys-details-total-requests";
|
|
1432
|
-
readonly detailsLast24h: "api-keys-details-last-24h";
|
|
1433
|
-
readonly detailsLast7d: "api-keys-details-last-7d";
|
|
1434
|
-
readonly detailsLast30d: "api-keys-details-last-30d";
|
|
1435
|
-
readonly detailsAvgTime: "api-keys-details-avg-time";
|
|
1436
|
-
readonly detailsSuccessRate: "api-keys-details-success-rate";
|
|
1437
|
-
readonly keyReveal: "api-key-reveal-{id}";
|
|
1438
|
-
readonly keyRevoke: "api-key-revoke-{id}";
|
|
1439
|
-
readonly revokeDialog: "api-key-revoke-dialog";
|
|
1440
|
-
readonly revokeConfirm: "api-key-revoke-confirm";
|
|
1441
|
-
readonly newKeyDisplay: "api-key-new-display";
|
|
1442
|
-
readonly copyKey: "api-key-copy";
|
|
1443
|
-
readonly dialogFooter: "api-keys-dialog-footer";
|
|
1444
|
-
};
|
|
1445
|
-
readonly notifications: {
|
|
1446
|
-
readonly container: "settings-notifications";
|
|
1447
|
-
readonly emailToggle: "notifications-email";
|
|
1448
|
-
readonly pushToggle: "notifications-push";
|
|
1449
|
-
readonly category: "notifications-{category}";
|
|
1450
|
-
readonly submitButton: "notifications-submit";
|
|
1451
|
-
};
|
|
1452
|
-
readonly teams: {
|
|
1453
|
-
readonly main: "teams-settings-main";
|
|
1454
|
-
readonly header: "teams-settings-header";
|
|
1455
|
-
readonly loading: "teams-settings-loading";
|
|
1456
|
-
readonly singleUser: "teams-settings-single-user";
|
|
1457
|
-
readonly teamsList: "teams-settings-teams-list";
|
|
1458
|
-
readonly teamDetails: "teams-settings-team-details";
|
|
1459
|
-
};
|
|
1460
|
-
readonly plans: {
|
|
1461
|
-
readonly main: "plans-settings-main";
|
|
1462
|
-
readonly header: "plans-settings-header";
|
|
1463
|
-
readonly table: "plans-settings-table";
|
|
1464
|
-
};
|
|
1465
|
-
};
|
|
1466
|
-
readonly superadmin: {
|
|
1467
|
-
readonly container: "superadmin-container";
|
|
1468
|
-
readonly navigation: {
|
|
1469
|
-
readonly dashboard: "superadmin-nav-dashboard";
|
|
1470
|
-
readonly users: "superadmin-nav-users";
|
|
1471
|
-
readonly teams: "superadmin-nav-teams";
|
|
1472
|
-
readonly teamRoles: "superadmin-nav-team-roles";
|
|
1473
|
-
readonly docs: "superadmin-nav-docs";
|
|
1474
|
-
readonly subscriptions: "superadmin-nav-subscriptions";
|
|
1475
|
-
readonly analytics: "superadmin-nav-analytics";
|
|
1476
|
-
readonly config: "superadmin-nav-config";
|
|
1477
|
-
readonly exitToDashboard: "superadmin-sidebar-exit-to-dashboard";
|
|
1478
|
-
};
|
|
1479
|
-
readonly dashboard: {
|
|
1480
|
-
readonly container: "superadmin-dashboard";
|
|
1481
|
-
};
|
|
1482
|
-
readonly users: {
|
|
1483
|
-
readonly container: "superadmin-users-container";
|
|
1484
|
-
readonly table: "superadmin-users-table";
|
|
1485
|
-
readonly search: "superadmin-users-search";
|
|
1486
|
-
readonly row: "superadmin-user-row-{id}";
|
|
1487
|
-
readonly viewButton: "superadmin-user-view-{id}";
|
|
1488
|
-
readonly editButton: "superadmin-user-edit-{id}";
|
|
1489
|
-
readonly banButton: "superadmin-user-ban-{id}";
|
|
1490
|
-
readonly deleteButton: "superadmin-user-delete-{id}";
|
|
1491
|
-
readonly impersonateButton: "superadmin-user-impersonate-{id}";
|
|
1492
|
-
};
|
|
1493
|
-
readonly userDetail: {
|
|
1494
|
-
readonly container: "superadmin-user-detail";
|
|
1495
|
-
readonly email: "superadmin-user-email";
|
|
1496
|
-
readonly role: "superadmin-user-role";
|
|
1497
|
-
readonly status: "superadmin-user-status";
|
|
1498
|
-
readonly teams: "superadmin-user-teams";
|
|
1499
|
-
readonly activity: "superadmin-user-activity";
|
|
1500
|
-
readonly actions: "superadmin-user-actions";
|
|
1501
|
-
readonly metas: "superadmin-user-metas";
|
|
1502
|
-
readonly metasTitle: "superadmin-user-metas-title";
|
|
1503
|
-
readonly metasTable: "superadmin-user-metas-table";
|
|
1504
|
-
readonly metasEmpty: "superadmin-user-metas-empty";
|
|
1505
|
-
readonly metaRow: "superadmin-user-meta-row-{key}";
|
|
1506
|
-
readonly metaKey: "superadmin-user-meta-key-{key}";
|
|
1507
|
-
readonly metaValue: "superadmin-user-meta-value-{key}";
|
|
1508
|
-
readonly metaType: "superadmin-user-meta-type-{key}";
|
|
1509
|
-
readonly metaPublic: "superadmin-user-meta-public-{key}";
|
|
1510
|
-
readonly metaSearchable: "superadmin-user-meta-searchable-{key}";
|
|
1511
|
-
};
|
|
1512
|
-
readonly teams: {
|
|
1513
|
-
readonly container: "superadmin-teams-container";
|
|
1514
|
-
readonly table: "superadmin-teams-table";
|
|
1515
|
-
readonly search: "superadmin-teams-search";
|
|
1516
|
-
readonly row: "superadmin-team-row-{id}";
|
|
1517
|
-
readonly actionsButton: "superadmin-team-actions-{id}";
|
|
1518
|
-
readonly viewButton: "superadmin-team-view-{id}";
|
|
1519
|
-
readonly editButton: "superadmin-team-edit-{id}";
|
|
1520
|
-
readonly deleteButton: "superadmin-team-delete-{id}";
|
|
1521
|
-
};
|
|
1522
|
-
readonly teamDetail: {
|
|
1523
|
-
readonly container: "superadmin-team-detail";
|
|
1524
|
-
readonly name: "superadmin-team-name";
|
|
1525
|
-
readonly owner: "superadmin-team-owner";
|
|
1526
|
-
readonly members: "superadmin-team-members";
|
|
1527
|
-
readonly plan: "superadmin-team-plan";
|
|
1528
|
-
readonly usage: "superadmin-team-usage";
|
|
1529
|
-
};
|
|
1530
|
-
readonly subscriptions: {
|
|
1531
|
-
readonly container: "superadmin-subscriptions-container";
|
|
1532
|
-
readonly mrr: "superadmin-subscriptions-mrr";
|
|
1533
|
-
readonly planDistribution: "superadmin-subscriptions-plan-distribution";
|
|
1534
|
-
readonly planCount: "superadmin-subscriptions-plan-count-{plan}";
|
|
1535
|
-
readonly activeCount: "superadmin-subscriptions-active-count";
|
|
1536
|
-
};
|
|
1537
|
-
readonly pagination: {
|
|
1538
|
-
readonly pageSize: "superadmin-page-size-select";
|
|
1539
|
-
readonly first: "superadmin-pagination-first";
|
|
1540
|
-
readonly prev: "superadmin-pagination-prev";
|
|
1541
|
-
readonly next: "superadmin-pagination-next";
|
|
1542
|
-
readonly last: "superadmin-pagination-last";
|
|
1543
|
-
};
|
|
1544
|
-
readonly filters: {
|
|
1545
|
-
readonly search: "superadmin-search-{context}";
|
|
1546
|
-
readonly dropdown: "superadmin-filter-{context}";
|
|
1547
|
-
};
|
|
1548
|
-
readonly permissions: {
|
|
1549
|
-
readonly row: "superadmin-permission-row-{permission}";
|
|
1550
|
-
};
|
|
1551
|
-
readonly teamRoles: {
|
|
1552
|
-
readonly backButton: "back-to-superadmin";
|
|
1553
|
-
readonly roleCard: "role-card-{role}";
|
|
1554
|
-
readonly permissionRow: "permission-row-{permission}";
|
|
1555
|
-
};
|
|
1556
|
-
readonly planFeatures: {
|
|
1557
|
-
readonly featureRow: "superadmin-feature-row-{slug}";
|
|
1558
|
-
readonly limitRow: "superadmin-limit-row-{slug}";
|
|
1559
|
-
};
|
|
1560
|
-
};
|
|
1561
|
-
readonly devtools: {
|
|
1562
|
-
readonly navigation: {
|
|
1563
|
-
readonly sidebar: "devtools-sidebar";
|
|
1564
|
-
readonly collapseToggle: "devtools-sidebar-collapse-toggle";
|
|
1565
|
-
readonly navItem: "devtools-nav-{section}";
|
|
1566
|
-
readonly exitToDashboard: "devtools-sidebar-exit-to-dashboard";
|
|
1567
|
-
readonly goToSuperadmin: "devtools-sidebar-go-to-superadmin";
|
|
1568
|
-
readonly mobileHeader: "devtools-mobile-header";
|
|
1569
|
-
};
|
|
1570
|
-
readonly home: {
|
|
1571
|
-
readonly page: "devtools-home-page";
|
|
1572
|
-
readonly styleLink: "devtools-home-style-link";
|
|
1573
|
-
readonly testsLink: "devtools-home-tests-link";
|
|
1574
|
-
readonly configLink: "devtools-home-config-link";
|
|
1575
|
-
};
|
|
1576
|
-
readonly style: {
|
|
1577
|
-
readonly page: "devtools-style-page";
|
|
1578
|
-
readonly tabComponents: "devtools-style-tab-components";
|
|
1579
|
-
readonly tabFieldTypes: "devtools-style-tab-field-types";
|
|
1580
|
-
readonly tabTheme: "devtools-style-tab-theme";
|
|
1581
|
-
readonly tabGuidelines: "devtools-style-tab-guidelines";
|
|
1582
|
-
readonly componentGallery: "devtools-style-component-gallery";
|
|
1583
|
-
readonly fieldTypes: "devtools-style-field-types";
|
|
1584
|
-
readonly themePreview: "devtools-style-theme-preview";
|
|
1585
|
-
};
|
|
1586
|
-
readonly config: {
|
|
1587
|
-
readonly page: "devtools-config-page";
|
|
1588
|
-
readonly viewer: "devtools-config-viewer";
|
|
1589
|
-
readonly tabTheme: "devtools-config-tab-theme";
|
|
1590
|
-
readonly tabEntities: "devtools-config-tab-entities";
|
|
1591
|
-
readonly themeContent: "devtools-config-theme-content";
|
|
1592
|
-
readonly entitiesContent: "devtools-config-entities-content";
|
|
1593
|
-
readonly copyTheme: "devtools-config-copy-theme";
|
|
1594
|
-
readonly copyEntities: "devtools-config-copy-entities";
|
|
1595
|
-
};
|
|
1596
|
-
readonly tests: {
|
|
1597
|
-
readonly page: "devtools-tests-page";
|
|
1598
|
-
readonly viewer: "devtools-tests-viewer";
|
|
1599
|
-
readonly loading: "devtools-tests-loading";
|
|
1600
|
-
readonly tree: "devtools-tests-tree";
|
|
1601
|
-
readonly folder: "devtools-tests-folder-{name}";
|
|
1602
|
-
readonly file: "devtools-tests-file-{name}";
|
|
1603
|
-
readonly content: "devtools-tests-content";
|
|
1604
|
-
readonly markdownContent: "devtools-tests-markdown-content";
|
|
1605
|
-
readonly notFound: "devtools-tests-not-found";
|
|
1606
|
-
readonly backToList: "devtools-tests-back-to-list";
|
|
1607
|
-
readonly emptyState: "devtools-tests-empty-state";
|
|
1608
|
-
readonly fileLoading: "devtools-tests-file-loading";
|
|
1609
|
-
readonly error: "devtools-tests-error";
|
|
1610
|
-
readonly dashboard: "devtools-tests-dashboard";
|
|
1611
|
-
readonly dashboardButton: "devtools-tests-dashboard-button";
|
|
1612
|
-
readonly dashboardStats: "devtools-tests-dashboard-stats";
|
|
1613
|
-
readonly dashboardStatFeatures: "devtools-tests-dashboard-stat-features";
|
|
1614
|
-
readonly dashboardStatFlows: "devtools-tests-dashboard-stat-flows";
|
|
1615
|
-
readonly dashboardStatFiles: "devtools-tests-dashboard-stat-files";
|
|
1616
|
-
readonly dashboardStatTags: "devtools-tests-dashboard-stat-tags";
|
|
1617
|
-
readonly dashboardGaps: "devtools-tests-dashboard-gaps";
|
|
1618
|
-
readonly dashboardGapItem: "devtools-tests-dashboard-gap-{slug}";
|
|
1619
|
-
};
|
|
1620
|
-
readonly features: {
|
|
1621
|
-
readonly page: "devtools-features-page";
|
|
1622
|
-
readonly viewer: "devtools-features-viewer";
|
|
1623
|
-
readonly search: "devtools-features-search";
|
|
1624
|
-
readonly filterAll: "devtools-features-filter-all";
|
|
1625
|
-
readonly filterCategory: "devtools-features-filter-{category}";
|
|
1626
|
-
readonly coverageAll: "devtools-features-coverage-all";
|
|
1627
|
-
readonly coverageCovered: "devtools-features-coverage-covered";
|
|
1628
|
-
readonly coverageUncovered: "devtools-features-coverage-uncovered";
|
|
1629
|
-
readonly card: "devtools-features-card-{slug}";
|
|
1630
|
-
readonly copyTag: "devtools-features-copy-{slug}";
|
|
1631
|
-
};
|
|
1632
|
-
readonly flows: {
|
|
1633
|
-
readonly page: "devtools-flows-page";
|
|
1634
|
-
readonly viewer: "devtools-flows-viewer";
|
|
1635
|
-
readonly search: "devtools-flows-search";
|
|
1636
|
-
readonly filterAll: "devtools-flows-filter-all";
|
|
1637
|
-
readonly filterCategory: "devtools-flows-filter-{category}";
|
|
1638
|
-
readonly coverageAll: "devtools-flows-coverage-all";
|
|
1639
|
-
readonly coverageCovered: "devtools-flows-coverage-covered";
|
|
1640
|
-
readonly coverageUncovered: "devtools-flows-coverage-uncovered";
|
|
1641
|
-
readonly card: "devtools-flows-card-{slug}";
|
|
1642
|
-
readonly copyTag: "devtools-flows-copy-{slug}";
|
|
1643
|
-
};
|
|
1644
|
-
readonly blocks: {
|
|
1645
|
-
readonly page: "devtools-blocks-page";
|
|
1646
|
-
readonly viewer: "devtools-blocks-viewer";
|
|
1647
|
-
readonly search: "devtools-blocks-search";
|
|
1648
|
-
readonly filterAll: "devtools-blocks-filter-all";
|
|
1649
|
-
readonly filterCategory: "devtools-blocks-filter-{category}";
|
|
1650
|
-
readonly coverageAll: "devtools-blocks-coverage-all";
|
|
1651
|
-
readonly coverageCovered: "devtools-blocks-coverage-covered";
|
|
1652
|
-
readonly coverageUncovered: "devtools-blocks-coverage-uncovered";
|
|
1653
|
-
readonly card: "devtools-blocks-card-{slug}";
|
|
1654
|
-
readonly copyTag: "devtools-blocks-copy-{slug}";
|
|
1655
|
-
readonly viewDetails: "devtools-blocks-view-{slug}";
|
|
1656
|
-
readonly detail: {
|
|
1657
|
-
readonly page: "devtools-block-detail-{slug}";
|
|
1658
|
-
readonly back: "devtools-block-detail-back";
|
|
1659
|
-
readonly tabPreview: "devtools-block-detail-tab-preview";
|
|
1660
|
-
readonly tabFields: "devtools-block-detail-tab-fields";
|
|
1661
|
-
readonly tabOverview: "devtools-block-detail-tab-overview";
|
|
1662
|
-
readonly preview: "devtools-block-detail-preview-{slug}";
|
|
1663
|
-
readonly exampleSelector: "devtools-block-example-selector";
|
|
1664
|
-
readonly exampleBtn: "devtools-block-example-btn-{index}";
|
|
1665
|
-
readonly exampleName: "devtools-block-example-name";
|
|
1666
|
-
readonly exampleDescription: "devtools-block-example-description";
|
|
1667
|
-
};
|
|
1668
|
-
};
|
|
1669
|
-
readonly tags: {
|
|
1670
|
-
readonly page: "devtools-tags-page";
|
|
1671
|
-
readonly viewer: "devtools-tags-viewer";
|
|
1672
|
-
readonly search: "devtools-tags-search";
|
|
1673
|
-
readonly category: "devtools-tags-category-{category}";
|
|
1674
|
-
readonly tag: "devtools-tags-tag-{tag}";
|
|
1675
|
-
readonly tagLink: "devtools-tags-link-{tag}";
|
|
1676
|
-
readonly filesPanel: "devtools-tags-files-panel-{tag}";
|
|
1677
|
-
};
|
|
1678
|
-
readonly scheduledActions: {
|
|
1679
|
-
readonly page: "devtools-scheduled-actions-page";
|
|
1680
|
-
readonly filterStatus: "scheduled-actions-filter-status";
|
|
1681
|
-
readonly filterType: "scheduled-actions-filter-type";
|
|
1682
|
-
readonly filterApply: "scheduled-actions-filter-apply";
|
|
1683
|
-
readonly filterReset: "scheduled-actions-filter-reset";
|
|
1684
|
-
readonly table: "scheduled-actions-table";
|
|
1685
|
-
readonly row: "scheduled-actions-row-{id}";
|
|
1686
|
-
readonly cellType: "scheduled-actions-cell-type";
|
|
1687
|
-
readonly cellStatus: "scheduled-actions-cell-status";
|
|
1688
|
-
readonly cellScheduledAt: "scheduled-actions-cell-scheduled-at";
|
|
1689
|
-
readonly cellTeam: "scheduled-actions-cell-team";
|
|
1690
|
-
readonly cellPayload: "scheduled-actions-cell-payload";
|
|
1691
|
-
readonly cellError: "scheduled-actions-cell-error";
|
|
1692
|
-
readonly statusPending: "scheduled-actions-status-pending";
|
|
1693
|
-
readonly statusRunning: "scheduled-actions-status-running";
|
|
1694
|
-
readonly statusCompleted: "scheduled-actions-status-completed";
|
|
1695
|
-
readonly statusFailed: "scheduled-actions-status-failed";
|
|
1696
|
-
readonly pagination: "scheduled-actions-pagination";
|
|
1697
|
-
readonly paginationPrev: "scheduled-actions-pagination-prev";
|
|
1698
|
-
readonly paginationNext: "scheduled-actions-pagination-next";
|
|
1699
|
-
readonly emptyState: "scheduled-actions-empty-state";
|
|
1700
|
-
};
|
|
1701
|
-
};
|
|
1702
|
-
readonly public: {
|
|
1703
|
-
readonly navbar: {
|
|
1704
|
-
readonly container: "public-navbar";
|
|
1705
|
-
readonly logo: "navbar-logo";
|
|
1706
|
-
readonly loginButton: "navbar-login";
|
|
1707
|
-
readonly signupButton: "navbar-signup";
|
|
1708
|
-
};
|
|
1709
|
-
readonly footer: {
|
|
1710
|
-
readonly container: "public-footer";
|
|
1711
|
-
readonly logo: "footer-logo";
|
|
1712
|
-
};
|
|
1713
|
-
readonly page: {
|
|
1714
|
-
readonly container: "public-page-{slug}";
|
|
1715
|
-
readonly title: "page-title";
|
|
1716
|
-
readonly content: "page-content";
|
|
1717
|
-
};
|
|
1718
|
-
readonly blog: {
|
|
1719
|
-
readonly listContainer: "blog-list";
|
|
1720
|
-
readonly postCard: "blog-post-{slug}";
|
|
1721
|
-
};
|
|
1722
|
-
};
|
|
1723
|
-
readonly common: {
|
|
1724
|
-
readonly permissionDenied: "permission-denied";
|
|
1725
|
-
readonly loading: "loading-spinner";
|
|
1726
|
-
readonly error: "error-message";
|
|
1727
|
-
readonly toast: "toast-{type}";
|
|
1728
|
-
readonly modal: {
|
|
1729
|
-
readonly overlay: "modal-overlay";
|
|
1730
|
-
readonly container: "modal-container";
|
|
1731
|
-
readonly title: "modal-title";
|
|
1732
|
-
readonly close: "modal-close";
|
|
1733
|
-
readonly content: "modal-content";
|
|
1734
|
-
readonly footer: "modal-footer";
|
|
1735
|
-
};
|
|
1736
|
-
};
|
|
1737
|
-
};
|
|
1738
|
-
/**
|
|
1739
|
-
* Get a selector value by path with optional placeholder replacements.
|
|
1740
|
-
* @see selector-factory.ts for full documentation
|
|
1741
|
-
*/
|
|
1742
|
-
declare const sel: (path: string, replacements?: Replacements) => string;
|
|
1743
|
-
/**
|
|
1744
|
-
* Alias for sel
|
|
1745
|
-
*/
|
|
1746
|
-
declare const s: (path: string, replacements?: Replacements) => string;
|
|
1747
|
-
/**
|
|
1748
|
-
* Get selector only in dev/test environments
|
|
1749
|
-
*/
|
|
1750
|
-
declare const selDev: (path: string, replacements?: Replacements) => string | undefined;
|
|
1751
|
-
/**
|
|
1752
|
-
* Get Cypress selector string [data-cy="..."]
|
|
1753
|
-
*/
|
|
1754
|
-
declare const cySelector: (path: string, replacements?: Replacements) => string;
|
|
1755
|
-
/**
|
|
1756
|
-
* Create entity-specific selector helpers
|
|
1757
|
-
*/
|
|
1758
|
-
declare const entitySelectors: (slug: string) => EntitySelectorHelpers;
|
|
1759
|
-
/**
|
|
1760
|
-
* Type for the SELECTORS object
|
|
1761
|
-
*/
|
|
1762
|
-
type SelectorsType = CoreSelectorsType;
|
|
1763
|
-
|
|
1764
|
-
/**
|
|
1765
|
-
* Helper type to extract leaf paths from nested object
|
|
1766
|
-
*/
|
|
1767
|
-
type PathImpl<T, K extends keyof T> = K extends string ? T[K] extends Record<string, unknown> ? T[K] extends ArrayLike<unknown> ? K : `${K}.${PathImpl<T[K], keyof T[K]>}` : K : never;
|
|
1768
|
-
type Path<T> = PathImpl<T, keyof T>;
|
|
1769
|
-
/**
|
|
1770
|
-
* All valid selector paths
|
|
1771
|
-
*/
|
|
1772
|
-
type SelectorPath = Path<SelectorsType>;
|
|
1773
|
-
|
|
1774
|
-
export { CORE_SELECTORS, type CoreSelectorsType, EntitySelectorHelpers, Replacements, SELECTORS, type SelectorPath, type SelectorsType, cySelector, entitySelectors, s, sel, selDev };
|