@almadar/ui 5.21.9 → 5.21.11
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/avl/index.cjs +159 -793
- package/dist/avl/index.js +7 -641
- package/dist/components/game/organisms/three/index.cjs +2 -488
- package/dist/components/game/organisms/three/index.js +1 -487
- package/dist/components/index.cjs +175 -2482
- package/dist/components/index.js +30 -2290
- package/dist/docs/index.cjs +2 -1
- package/dist/docs/index.js +2 -1
- package/dist/hooks/index.cjs +2 -1
- package/dist/hooks/index.js +2 -1
- package/dist/locales/index.cjs +6 -3
- package/dist/locales/index.js +6 -3
- package/dist/providers/index.cjs +144 -762
- package/dist/providers/index.js +4 -622
- package/dist/runtime/index.cjs +583 -1204
- package/dist/runtime/index.js +444 -1065
- package/locales/ar.json +2 -1
- package/locales/en.json +2 -1
- package/locales/sl.json +2 -1
- package/package.json +1 -1
package/dist/providers/index.js
CHANGED
|
@@ -11,6 +11,7 @@ import * as PhosphorIcons from '@phosphor-icons/react';
|
|
|
11
11
|
import * as TablerIcons from '@tabler/icons-react';
|
|
12
12
|
import * as FaIcons from 'react-icons/fa';
|
|
13
13
|
import { createPortal } from 'react-dom';
|
|
14
|
+
import { useTranslate } from '@almadar/ui/hooks';
|
|
14
15
|
import { evaluate, createMinimalContext } from '@almadar/evaluator';
|
|
15
16
|
import { useUISlots } from '@almadar/ui/context';
|
|
16
17
|
import { Link, Outlet, useLocation } from 'react-router-dom';
|
|
@@ -1908,503 +1909,6 @@ var init_Overlay = __esm({
|
|
|
1908
1909
|
};
|
|
1909
1910
|
}
|
|
1910
1911
|
});
|
|
1911
|
-
|
|
1912
|
-
// locales/en.json
|
|
1913
|
-
var en_default;
|
|
1914
|
-
var init_en = __esm({
|
|
1915
|
-
"locales/en.json"() {
|
|
1916
|
-
en_default = {
|
|
1917
|
-
$meta: {
|
|
1918
|
-
locale: "en",
|
|
1919
|
-
direction: "ltr"
|
|
1920
|
-
},
|
|
1921
|
-
"common.save": "Save",
|
|
1922
|
-
"common.cancel": "Cancel",
|
|
1923
|
-
"common.delete": "Delete",
|
|
1924
|
-
"common.close": "Close",
|
|
1925
|
-
"common.confirm": "Are you sure?",
|
|
1926
|
-
"common.create": "Create",
|
|
1927
|
-
"common.edit": "Edit",
|
|
1928
|
-
"common.view": "View",
|
|
1929
|
-
"common.add": "Add",
|
|
1930
|
-
"common.remove": "Remove",
|
|
1931
|
-
"common.search": "Search...",
|
|
1932
|
-
"common.filter": "Filter",
|
|
1933
|
-
"common.actions": "Actions",
|
|
1934
|
-
"common.yes": "Yes",
|
|
1935
|
-
"common.no": "No",
|
|
1936
|
-
"common.selected": "selected",
|
|
1937
|
-
"common.ok": "OK",
|
|
1938
|
-
"common.done": "Done",
|
|
1939
|
-
"common.apply": "Apply",
|
|
1940
|
-
"common.reset": "Reset",
|
|
1941
|
-
"common.refresh": "Refresh",
|
|
1942
|
-
"common.export": "Export",
|
|
1943
|
-
"common.import": "Import",
|
|
1944
|
-
"common.copy": "Copy",
|
|
1945
|
-
"common.settings": "Settings",
|
|
1946
|
-
"nav.previous": "Previous",
|
|
1947
|
-
"nav.next": "Next",
|
|
1948
|
-
"nav.back": "Back",
|
|
1949
|
-
"nav.home": "Home",
|
|
1950
|
-
"form.submit": "Submit",
|
|
1951
|
-
"form.saving": "Saving...",
|
|
1952
|
-
"form.required": "This field is required",
|
|
1953
|
-
"form.invalidEmail": "Enter a valid email address",
|
|
1954
|
-
"form.selectPlaceholder": "Select {{label}}...",
|
|
1955
|
-
"form.searchPlaceholder": "Search {{entity}}...",
|
|
1956
|
-
"table.empty.title": "No items found",
|
|
1957
|
-
"table.empty.description": "No items to display.",
|
|
1958
|
-
"table.search.placeholder": "Search...",
|
|
1959
|
-
"table.pagination.showing": "Showing {{start}} to {{end}} of {{total}} results",
|
|
1960
|
-
"table.pagination.page": "Page {{page}} of {{totalPages}}",
|
|
1961
|
-
"table.bulk.selected": "{{count}} selected",
|
|
1962
|
-
"table.loading": "Loading...",
|
|
1963
|
-
"status.loading": "Loading...",
|
|
1964
|
-
"status.scheduled": "Scheduled",
|
|
1965
|
-
"status.inProgress": "In Progress",
|
|
1966
|
-
"status.completed": "Completed",
|
|
1967
|
-
"status.cancelled": "Cancelled",
|
|
1968
|
-
"status.pending": "Pending",
|
|
1969
|
-
"status.active": "Active",
|
|
1970
|
-
"status.inactive": "Inactive",
|
|
1971
|
-
"status.draft": "Draft",
|
|
1972
|
-
"status.archived": "Archived",
|
|
1973
|
-
"error.generic": "Something went wrong",
|
|
1974
|
-
"error.retry": "Try again",
|
|
1975
|
-
"error.notFound": "Not found",
|
|
1976
|
-
"error.loadFailed": "Failed to load: {{message}}",
|
|
1977
|
-
"error.configMissing": "Configuration not found for: {{id}}",
|
|
1978
|
-
"common.loading": "Loading...",
|
|
1979
|
-
"common.showMore": "Show More",
|
|
1980
|
-
"common.showLess": "Show Less",
|
|
1981
|
-
"common.noResults": "No results found",
|
|
1982
|
-
"common.saveChanges": "Save Changes",
|
|
1983
|
-
"common.retry": "Retry",
|
|
1984
|
-
"common.open": "Open",
|
|
1985
|
-
"common.back": "Back",
|
|
1986
|
-
"empty.noItems": "No items",
|
|
1987
|
-
"empty.noData": "No data available",
|
|
1988
|
-
"empty.noItemsYet": "No items yet",
|
|
1989
|
-
"empty.noItemsAdded": "No items added yet",
|
|
1990
|
-
"empty.noOptionsFound": "No options found",
|
|
1991
|
-
"list.addItemPlaceholder": "Add new item...",
|
|
1992
|
-
"error.occurred": "An error occurred",
|
|
1993
|
-
"error.failedToLoad": "Failed to load data",
|
|
1994
|
-
"wizard.back": "Back",
|
|
1995
|
-
"wizard.next": "Next",
|
|
1996
|
-
"wizard.complete": "Complete",
|
|
1997
|
-
"wizard.stepOf": "Step {{current}} of {{total}}",
|
|
1998
|
-
"pagination.previous": "Previous",
|
|
1999
|
-
"pagination.next": "Next",
|
|
2000
|
-
"pagination.total": "Total:",
|
|
2001
|
-
"pagination.show": "Show:",
|
|
2002
|
-
"pagination.goTo": "Go to:",
|
|
2003
|
-
"pagination.go": "Go",
|
|
2004
|
-
"auth.signIn": "Sign in",
|
|
2005
|
-
"auth.signOut": "Sign out",
|
|
2006
|
-
"dialog.confirm": "Confirm",
|
|
2007
|
-
"dialog.cancel": "Cancel",
|
|
2008
|
-
"dialog.loading": "Loading...",
|
|
2009
|
-
"dialog.delete.title": "Delete {{item}}?",
|
|
2010
|
-
"dialog.delete.message": "This action cannot be undone.",
|
|
2011
|
-
"trait.availableActions": "Available Actions",
|
|
2012
|
-
"trait.transitions": "Transitions",
|
|
2013
|
-
"trait.availableNow": "Available now",
|
|
2014
|
-
"book.startReading": "Start Reading",
|
|
2015
|
-
"book.tableOfContents": "Table of Contents",
|
|
2016
|
-
"book.partNumber": "Part {{number}}",
|
|
2017
|
-
"book.print": "Print",
|
|
2018
|
-
"book.previousPage": "Previous page",
|
|
2019
|
-
"book.nextPage": "Next page",
|
|
2020
|
-
"quiz.showAnswer": "Show answer",
|
|
2021
|
-
"quiz.hideAnswer": "Hide answer",
|
|
2022
|
-
"aria.closeModal": "Close modal",
|
|
2023
|
-
"aria.closeToast": "Dismiss toast",
|
|
2024
|
-
"aria.closeAlert": "Dismiss alert",
|
|
2025
|
-
"aria.removeFilter": "Remove filter",
|
|
2026
|
-
"aria.closeDrawer": "Close drawer",
|
|
2027
|
-
"aria.closePanel": "Close panel",
|
|
2028
|
-
"aria.previousImage": "Previous image",
|
|
2029
|
-
"aria.nextImage": "Next image",
|
|
2030
|
-
"aria.dismiss": "Dismiss",
|
|
2031
|
-
"aria.previousSlide": "Previous slide",
|
|
2032
|
-
"aria.nextSlide": "Next slide",
|
|
2033
|
-
"aria.previousDays": "Previous days",
|
|
2034
|
-
"aria.nextDays": "Next days",
|
|
2035
|
-
"aria.decrease": "Decrease",
|
|
2036
|
-
"aria.increase": "Increase",
|
|
2037
|
-
"aria.breadcrumb": "Breadcrumb",
|
|
2038
|
-
"aria.tableOfContents": "Table of contents",
|
|
2039
|
-
"aria.docsSidebar": "Documentation sidebar",
|
|
2040
|
-
"aria.selectAllRows": "Select all rows",
|
|
2041
|
-
"aria.selectAll": "Select all",
|
|
2042
|
-
"aria.upvote": "Upvote",
|
|
2043
|
-
"aria.downvote": "Downvote",
|
|
2044
|
-
"aria.qrScanner": "QR scanner",
|
|
2045
|
-
"aria.mockScanDev": "Mock scan (dev)",
|
|
2046
|
-
"aria.openMenu": "Open menu",
|
|
2047
|
-
"aria.closeMenu": "Close menu",
|
|
2048
|
-
"aria.openSidebar": "Open sidebar",
|
|
2049
|
-
"sidebar.expand": "Expand sidebar",
|
|
2050
|
-
"sidebar.collapse": "Collapse sidebar",
|
|
2051
|
-
"sidebar.close": "Close sidebar",
|
|
2052
|
-
"loading.items": "Loading items...",
|
|
2053
|
-
"card.imageAlt": "Image",
|
|
2054
|
-
"canvas.emptyMessage": "No content",
|
|
2055
|
-
"canvas.errorTitle": "Canvas error",
|
|
2056
|
-
"book.noData": "No data",
|
|
2057
|
-
"common.notifications": "Notifications",
|
|
2058
|
-
"common.remaining": "{{count}} remaining",
|
|
2059
|
-
"error.somethingWentWrong": "Something went wrong",
|
|
2060
|
-
"error.loadingItems": "Loading items...",
|
|
2061
|
-
"error.noItemsFound": "No items found",
|
|
2062
|
-
"debug.noEntityData": "No entity data",
|
|
2063
|
-
"debug.noEntities": "No entities",
|
|
2064
|
-
"debug.noTicks": "No ticks registered",
|
|
2065
|
-
"debug.noActiveTraits": "No active traits",
|
|
2066
|
-
"debug.noGuardEvaluations": "No guard evaluations",
|
|
2067
|
-
"debug.noBridgeData": "No bridge data",
|
|
2068
|
-
"debug.status": "Status",
|
|
2069
|
-
"debug.eventsForwarded": "Events Forwarded (Client \u2192 Server)",
|
|
2070
|
-
"debug.eventsReceived": "Events Received (Server \u2192 Client)",
|
|
2071
|
-
"debug.lastHeartbeat": "Last Heartbeat",
|
|
2072
|
-
"debug.noEventsYet": "No events yet",
|
|
2073
|
-
"debug.noTransitionsRecorded": "No transitions recorded",
|
|
2074
|
-
"debug.noVerificationChecks": "No verification checks yet",
|
|
2075
|
-
"display.chartError": "Chart error",
|
|
2076
|
-
"display.codeViewerError": "Code viewer error",
|
|
2077
|
-
"display.noCode": "No code",
|
|
2078
|
-
"display.documentError": "Document error",
|
|
2079
|
-
"display.noDocument": "No document",
|
|
2080
|
-
"display.graphError": "Graph error",
|
|
2081
|
-
"display.noGraphData": "No graph data",
|
|
2082
|
-
"display.galleryError": "Gallery error",
|
|
2083
|
-
"display.noMedia": "No media",
|
|
2084
|
-
"display.meterError": "Meter error",
|
|
2085
|
-
"display.signaturePadError": "Signature pad error",
|
|
2086
|
-
"display.timelineError": "Timeline error",
|
|
2087
|
-
"display.noEvents": "No events",
|
|
2088
|
-
"template.features": "Features",
|
|
2089
|
-
"template.howItWorks": "How It Works",
|
|
2090
|
-
"template.showcase": "Showcase",
|
|
2091
|
-
"template.faq": "Frequently Asked Questions",
|
|
2092
|
-
"template.ourTeam": "Our Team",
|
|
2093
|
-
"template.caseStudies": "Case Studies",
|
|
2094
|
-
"richBlockEditor.toolbar.text": "Text",
|
|
2095
|
-
"richBlockEditor.toolbar.h1": "H1",
|
|
2096
|
-
"richBlockEditor.toolbar.h2": "H2",
|
|
2097
|
-
"richBlockEditor.toolbar.h3": "H3",
|
|
2098
|
-
"richBlockEditor.toolbar.bulletList": "Bullet list",
|
|
2099
|
-
"richBlockEditor.toolbar.numbered": "Numbered",
|
|
2100
|
-
"richBlockEditor.toolbar.quote": "Quote",
|
|
2101
|
-
"richBlockEditor.toolbar.code": "Code",
|
|
2102
|
-
"richBlockEditor.toolbar.divider": "Divider",
|
|
2103
|
-
"richBlockEditor.toolbar.image": "Image",
|
|
2104
|
-
"richBlockEditor.blockType.paragraph": "Text",
|
|
2105
|
-
"richBlockEditor.blockType.heading1": "Heading 1",
|
|
2106
|
-
"richBlockEditor.blockType.heading2": "Heading 2",
|
|
2107
|
-
"richBlockEditor.blockType.heading3": "Heading 3",
|
|
2108
|
-
"richBlockEditor.blockType.bulletList": "Bullet list",
|
|
2109
|
-
"richBlockEditor.blockType.numberedList": "Numbered list",
|
|
2110
|
-
"richBlockEditor.blockType.quote": "Quote",
|
|
2111
|
-
"richBlockEditor.blockType.code": "Code",
|
|
2112
|
-
"richBlockEditor.blockType.divider": "Divider",
|
|
2113
|
-
"richBlockEditor.blockType.image": "Image",
|
|
2114
|
-
"richBlockEditor.blockActions": "Block actions",
|
|
2115
|
-
"richBlockEditor.duplicate": "Duplicate",
|
|
2116
|
-
"richBlockEditor.turnInto": "Turn into",
|
|
2117
|
-
"richBlockEditor.placeholder.heading1": "Heading 1",
|
|
2118
|
-
"richBlockEditor.placeholder.heading2": "Heading 2",
|
|
2119
|
-
"richBlockEditor.placeholder.heading3": "Heading 3",
|
|
2120
|
-
"richBlockEditor.placeholder.quote": "Quote",
|
|
2121
|
-
"richBlockEditor.placeholder.code": "Enter code",
|
|
2122
|
-
"richBlockEditor.placeholder.paragraph": "Start writing...",
|
|
2123
|
-
"richBlockEditor.placeholder.listItem": "List item",
|
|
2124
|
-
"richBlockEditor.placeholder.caption": "Caption (optional)",
|
|
2125
|
-
"richBlockEditor.aria.heading1Block": "Heading 1 block",
|
|
2126
|
-
"richBlockEditor.aria.heading2Block": "Heading 2 block",
|
|
2127
|
-
"richBlockEditor.aria.heading3Block": "Heading 3 block",
|
|
2128
|
-
"richBlockEditor.aria.quoteBlock": "Quote block",
|
|
2129
|
-
"richBlockEditor.aria.codeBlock": "Code block",
|
|
2130
|
-
"richBlockEditor.aria.codeLanguage": "Code language",
|
|
2131
|
-
"richBlockEditor.aria.imageUrl": "Image URL",
|
|
2132
|
-
"richBlockEditor.aria.imageCaption": "Image caption",
|
|
2133
|
-
"richBlockEditor.aria.listItem": "List item",
|
|
2134
|
-
"richBlockEditor.aria.removeListItem": "Remove list item",
|
|
2135
|
-
"richBlockEditor.aria.paragraphBlock": "Paragraph block",
|
|
2136
|
-
"richBlockEditor.embeddedImage": "Embedded image",
|
|
2137
|
-
"richBlockEditor.noImageUrl": "No image URL set",
|
|
2138
|
-
"richBlockEditor.addItem": "Add item",
|
|
2139
|
-
"richBlockEditor.insertParagraphBelow": "Insert paragraph below",
|
|
2140
|
-
"richBlockEditor.editorToolbar": "Block editor toolbar",
|
|
2141
|
-
"richBlockEditor.insertEntry": "Insert {{label}}",
|
|
2142
|
-
"versionDiff.compare": "Compare",
|
|
2143
|
-
"versionDiff.to": "to",
|
|
2144
|
-
"versionDiff.beforeRevision": "Before revision",
|
|
2145
|
-
"versionDiff.afterRevision": "After revision",
|
|
2146
|
-
"versionDiff.switchToInline": "Switch to inline view",
|
|
2147
|
-
"versionDiff.switchToSideBySide": "Switch to side-by-side view",
|
|
2148
|
-
"versionDiff.revert": "Revert",
|
|
2149
|
-
"versionDiff.byAuthor": " by {{author}}",
|
|
2150
|
-
"violationAlert.actionType.measure": "Corrective Measure",
|
|
2151
|
-
"violationAlert.actionType.admin": "Administrative Action",
|
|
2152
|
-
"violationAlert.actionType.penalty": "Penalty Proceedings",
|
|
2153
|
-
"violationAlert.fallbackMessage": "Violation",
|
|
2154
|
-
"violationAlert.adminLabel": "Admin:",
|
|
2155
|
-
"violationAlert.penaltyLabel": "Penalty:",
|
|
2156
|
-
"violationAlert.goToField": "Go to field",
|
|
2157
|
-
"branchingLogic.title": "Branching logic",
|
|
2158
|
-
"branchingLogic.if": "If",
|
|
2159
|
-
"branchingLogic.goTo": "go to",
|
|
2160
|
-
"branchingLogic.rules": "Rules",
|
|
2161
|
-
"branchingLogic.logicGraph": "Logic graph",
|
|
2162
|
-
"branchingLogic.addRule": "Add rule",
|
|
2163
|
-
"branchingLogic.deleteRule": "Delete rule",
|
|
2164
|
-
"branchingLogic.endOfSurvey": "End of survey",
|
|
2165
|
-
"branchingLogic.brokenReference": "Broken reference",
|
|
2166
|
-
"branchingLogic.selectQuestion": "Select question",
|
|
2167
|
-
"branchingLogic.selectTarget": "Select target",
|
|
2168
|
-
"branchingLogic.selectValue": "Select value",
|
|
2169
|
-
"branchingLogic.addValue": "Add value",
|
|
2170
|
-
"branchingLogic.value": "Value",
|
|
2171
|
-
"branchingLogic.typeValuePressEnter": "Type value, press Enter",
|
|
2172
|
-
"branchingLogic.operatorEquals": "equals",
|
|
2173
|
-
"branchingLogic.operatorNotEquals": "does not equal",
|
|
2174
|
-
"branchingLogic.operatorContains": "contains",
|
|
2175
|
-
"branchingLogic.operatorIn": "is one of",
|
|
2176
|
-
"branchingLogic.graphAriaLabel": "Branching logic graph",
|
|
2177
|
-
"branchingLogic.ruleCountOne": "{{count}} rule",
|
|
2178
|
-
"branchingLogic.ruleCountOther": "{{count}} rules",
|
|
2179
|
-
"branchingLogic.brokenCount": "{{count}} broken",
|
|
2180
|
-
"branchingLogic.emptyNoQuestions": "Add questions before building branching rules.",
|
|
2181
|
-
"branchingLogic.emptyNoRules": "No rules yet. Add a rule to define branching logic.",
|
|
2182
|
-
"filterGroup.filters": "Filters",
|
|
2183
|
-
"filterGroup.all": "All",
|
|
2184
|
-
"filterGroup.clear": "Clear",
|
|
2185
|
-
"filterGroup.clearAll": "Clear all",
|
|
2186
|
-
"filterGroup.from": "From",
|
|
2187
|
-
"filterGroup.to": "To",
|
|
2188
|
-
"filterGroup.allOf": "All {{label}}",
|
|
2189
|
-
"filterGroup.activeCount": "{{count}} active",
|
|
2190
|
-
"debug.guardEvaluationsHint": "Guard evaluations will appear when transitions or ticks with guards execute",
|
|
2191
|
-
"debug.expression": "Expression",
|
|
2192
|
-
"debug.inputs": "Inputs",
|
|
2193
|
-
"debug.trait": "Trait",
|
|
2194
|
-
"debug.filterAll": "All",
|
|
2195
|
-
"debug.filterPassed": "Passed",
|
|
2196
|
-
"debug.filterFailed": "Failed",
|
|
2197
|
-
"debug.traitsInitHint": "Traits will appear when the state machine initializes",
|
|
2198
|
-
"debug.traitsMountHint": "Traits will appear when components using them are mounted",
|
|
2199
|
-
"debug.activeStates": "Active States",
|
|
2200
|
-
"debug.availableEvents": "Available Events",
|
|
2201
|
-
"debug.noTransitionsFromState": "No transitions from current state",
|
|
2202
|
-
"debug.guarded": "guarded",
|
|
2203
|
-
"debug.otherEvents": "Other Events (not available from current state)",
|
|
2204
|
-
"debug.recentTransitions": "Recent Transitions",
|
|
2205
|
-
"debug.transitionsCount": "{{count}} transitions",
|
|
2206
|
-
"debug.states": "States",
|
|
2207
|
-
"debug.transitions": "Transitions",
|
|
2208
|
-
"debug.guards": "Guards",
|
|
2209
|
-
"debug.debugModeHint": "Debug mode may not be enabled",
|
|
2210
|
-
"debug.entitiesSpawnHint": "Entities will appear when spawned",
|
|
2211
|
-
"debug.singleton": "Singleton",
|
|
2212
|
-
"debug.singletonsCount": "Singletons ({{count}})",
|
|
2213
|
-
"debug.runtimeCount": "Runtime ({{count}})",
|
|
2214
|
-
"debug.moreEntities": "+{{count}} more entities",
|
|
2215
|
-
"debug.persistent": "Persistent",
|
|
2216
|
-
"debug.loadedCount": "{{count}} loaded",
|
|
2217
|
-
"debug.notLoaded": "not loaded",
|
|
2218
|
-
"debug.eventsExecuteHint": "Events will appear as traits, ticks, and other systems execute",
|
|
2219
|
-
"debug.allCount": "All ({{count}})",
|
|
2220
|
-
"debug.autoScroll": "Auto-scroll",
|
|
2221
|
-
"debug.transitionsProcessHint": "Transitions will appear as the state machine processes events",
|
|
2222
|
-
"debug.transitionsRecorded": "{{count}} transitions recorded",
|
|
2223
|
-
"debug.guardLabel": "guard:",
|
|
2224
|
-
"debug.effectsCount": "{{count}} effects",
|
|
2225
|
-
"debug.bridgeInitHint": "The ServerBridge has not been initialized. Bridge health will appear once the runtime connects to the server.",
|
|
2226
|
-
"debug.never": "Never",
|
|
2227
|
-
"debug.connected": "Connected",
|
|
2228
|
-
"debug.disconnected": "Disconnected",
|
|
2229
|
-
"debug.lastError": "Last Error",
|
|
2230
|
-
"debug.totalEventsProcessed": "{{count}} total events processed",
|
|
2231
|
-
"debug.server": "server",
|
|
2232
|
-
"debug.clientEffectsCount": "{{count}} clientEffects",
|
|
2233
|
-
"debug.emitLabel": "emit:",
|
|
2234
|
-
"debug.rowsCount": "{{count}} rows",
|
|
2235
|
-
"debug.serverResponse": "server response",
|
|
2236
|
-
"debug.collapseVerificationTimeline": "Collapse verification timeline",
|
|
2237
|
-
"debug.expandVerificationTimeline": "Expand verification timeline",
|
|
2238
|
-
"debug.failCount": "{{count}} fail",
|
|
2239
|
-
"debug.ok": "OK",
|
|
2240
|
-
"debug.localCount": "{{count}} local",
|
|
2241
|
-
"debug.serverCount": "{{count}} server",
|
|
2242
|
-
"debug.waitingForTransitions": "Waiting for transitions...",
|
|
2243
|
-
"debug.tabDispatch": "Dispatch",
|
|
2244
|
-
"debug.tabVerify": "Verify",
|
|
2245
|
-
"debug.tabVerifyAlert": "Verify (!)",
|
|
2246
|
-
"debug.tabTimeline": "Timeline",
|
|
2247
|
-
"debug.tabBridge": "Bridge",
|
|
2248
|
-
"debug.tabTraits": "Traits",
|
|
2249
|
-
"debug.tabTicks": "Ticks",
|
|
2250
|
-
"debug.tabEntities": "Entities",
|
|
2251
|
-
"debug.tabEvents": "Events",
|
|
2252
|
-
"debug.tabGuards": "Guards",
|
|
2253
|
-
"debug.debugger": "Debugger",
|
|
2254
|
-
"debug.failedCount": "{{count}} failed",
|
|
2255
|
-
"debug.traitsCount": "{{count}} traits",
|
|
2256
|
-
"debug.idle": "Idle",
|
|
2257
|
-
"debug.openDebugger": "Open Debugger (`)",
|
|
2258
|
-
"debug.kflowVerifier": "KFlow Verifier",
|
|
2259
|
-
"debug.allPassing": "All passing",
|
|
2260
|
-
"debug.runtime": "Runtime",
|
|
2261
|
-
"debug.close": "Close (`)",
|
|
2262
|
-
"debug.toggleHint": "Press ` to toggle | window.__orbitalVerification for automation",
|
|
2263
|
-
"replyTree.expandReplies": "Expand replies",
|
|
2264
|
-
"replyTree.collapseReplies": "Collapse replies",
|
|
2265
|
-
"replyTree.voteOnReplyBy": "Vote on reply by {{author}}",
|
|
2266
|
-
"replyTree.replyTo": "Reply to {{author}}",
|
|
2267
|
-
"replyTree.replyToPlaceholder": "Reply to {{author}}\u2026",
|
|
2268
|
-
"replyTree.reply": "Reply",
|
|
2269
|
-
"replyTree.flagReplyBy": "Flag reply by {{author}}",
|
|
2270
|
-
"replyTree.flag": "Flag",
|
|
2271
|
-
"replyTree.send": "Send",
|
|
2272
|
-
"replyTree.continueThread": "Continue thread",
|
|
2273
|
-
"replyTree.noRepliesYet": "No replies yet.",
|
|
2274
|
-
"signaturePad.label": "Signature",
|
|
2275
|
-
"signaturePad.helperText": "Draw your signature above",
|
|
2276
|
-
"signaturePad.clear": "Clear",
|
|
2277
|
-
"signaturePad.confirm": "Confirm",
|
|
2278
|
-
"qrScanner.cameraUnavailable": "Camera unavailable",
|
|
2279
|
-
"qrScanner.paused": "Paused",
|
|
2280
|
-
"qrScanner.resumeScanning": "Resume scanning",
|
|
2281
|
-
"qrScanner.pauseScanning": "Pause scanning",
|
|
2282
|
-
"qrScanner.switchToFrontCamera": "Switch to front camera",
|
|
2283
|
-
"qrScanner.switchToRearCamera": "Switch to rear camera",
|
|
2284
|
-
"qrScanner.mockScan": "Mock Scan",
|
|
2285
|
-
"docSearch.placeholder": "Search documentation...",
|
|
2286
|
-
"stateMachine.loading": "Loading state machine\u2026",
|
|
2287
|
-
"stateMachine.noStateMachine": "No state machine to visualize",
|
|
2288
|
-
"avl.trigger": "Trigger",
|
|
2289
|
-
"avl.guard": "Guard",
|
|
2290
|
-
"avl.effects": "Effects",
|
|
2291
|
-
"avl.props": "Props",
|
|
2292
|
-
"avl.entity": "Entity",
|
|
2293
|
-
"avl.traits": "Traits",
|
|
2294
|
-
"avl.transition": "Transition",
|
|
2295
|
-
"avl.onEntity": "on {{entity}}",
|
|
2296
|
-
"avl.linkedTo": "linked to {{entity}}",
|
|
2297
|
-
"avl.pressEscToZoomOut": "Press Esc to zoom out",
|
|
2298
|
-
"avl.zoomIn": "Zoom in",
|
|
2299
|
-
"avl.zoomOut": "Zoom out",
|
|
2300
|
-
"avl.orbitalLabel": "Orbital: {{name}}",
|
|
2301
|
-
"avl.orbitalLabelHighlighted": "Orbital: {{name}} (highlighted)",
|
|
2302
|
-
"avl.noTraitData": "No trait data",
|
|
2303
|
-
"avl.computingLayout": "Computing layout...",
|
|
2304
|
-
"avl.noStateMachine": "No state machine",
|
|
2305
|
-
"avl.listensFor": "listens for {{event}}",
|
|
2306
|
-
"avl.emits": "emits {{event}}",
|
|
2307
|
-
"avl.pageLayout": "Page Layout",
|
|
2308
|
-
"avl.overlaySuffix": "(overlay)",
|
|
2309
|
-
"orbPreview.previewBadge": "Preview",
|
|
2310
|
-
"orbPreview.doubleClickToOpen": "Double-click to open",
|
|
2311
|
-
"orbPreview.dropToAddAndOpen": "Drop to add and open",
|
|
2312
|
-
"orbPreview.dispatching": "Coordinator is dispatching to this orbital",
|
|
2313
|
-
"orbPreview.noPreview": "No preview available",
|
|
2314
|
-
"orbPreview.screensCount": "{{count}} screens",
|
|
2315
|
-
"detailView.noTransitionData": "No transition data",
|
|
2316
|
-
"orbInspector.required": "req",
|
|
2317
|
-
"orbInspector.addField": "Add Field",
|
|
2318
|
-
"orbInspector.serviceMode": "Service Mode",
|
|
2319
|
-
"orbInspector.standalone": "Standalone",
|
|
2320
|
-
"orbInspector.embedded": "Embedded",
|
|
2321
|
-
"orbInspector.rendersOwnUi": "Renders its own UI",
|
|
2322
|
-
"orbInspector.headless": "Headless, wired to other behaviors",
|
|
2323
|
-
"orbInspector.addEffect": "Add Effect",
|
|
2324
|
-
"orbInspector.guardExpression": "Guard expression",
|
|
2325
|
-
"orbInspector.selectPatternForStyles": "Select a pattern to view its style tokens.",
|
|
2326
|
-
"orbInspector.tokens": "Tokens",
|
|
2327
|
-
"orbInspector.noTokenContract": "No token contract declared for this pattern.",
|
|
2328
|
-
"orbInspector.variant": "Variant",
|
|
2329
|
-
"orbInspector.size": "Size",
|
|
2330
|
-
"orbInspector.statesCount": "{{count}} states",
|
|
2331
|
-
"orbInspector.onEntity": " on {{entity}}",
|
|
2332
|
-
"orbInspector.projectThemeTokens": "Project theme tokens",
|
|
2333
|
-
"orbInspector.tokenGroup.colors": "Colors",
|
|
2334
|
-
"orbInspector.tokenGroup.radii": "Radii",
|
|
2335
|
-
"orbInspector.tokenGroup.spacing": "Spacing",
|
|
2336
|
-
"orbInspector.tokenGroup.shadows": "Shadows",
|
|
2337
|
-
"orbInspector.tab.inspector": "Inspector",
|
|
2338
|
-
"orbInspector.tab.styles": "Styles",
|
|
2339
|
-
"orbInspector.tab.code": "Code",
|
|
2340
|
-
"canvas.goBackToOverview": "Go back to overview",
|
|
2341
|
-
"canvas.overview": "Overview",
|
|
2342
|
-
"canvas.expanded": "Expanded",
|
|
2343
|
-
"canvas.modulesCount": "{{count}} modules",
|
|
2344
|
-
"canvas.screensCount": "{{count}} screens",
|
|
2345
|
-
"canvas.switchToView": "Switch to {{label}} view",
|
|
2346
|
-
"lawReference.viewFullText": "View full law text",
|
|
2347
|
-
"statCard.defaultLabel": "Stat",
|
|
2348
|
-
"statCard.vsLastPeriod": "vs last period",
|
|
2349
|
-
"mediaGallery.upload": "Upload",
|
|
2350
|
-
"mediaGallery.noMediaDescription": "No media items to display.",
|
|
2351
|
-
"pagination.jumpPlaceholder": "Page",
|
|
2352
|
-
"table.selectRow": "Select row {{id}}",
|
|
2353
|
-
"card.selectItem": "Select {{item}}",
|
|
2354
|
-
"card.itemFallback": "item",
|
|
2355
|
-
"fileTree.noFiles": "No files",
|
|
2356
|
-
"masterDetail.selectItem": "Select an item to view details",
|
|
2357
|
-
"empty.createFirst": "Create your first item to get started.",
|
|
2358
|
-
"upload.dropOrBrowse": "Drop files here or click to browse",
|
|
2359
|
-
"upload.dropFilesHere": "Drop files here",
|
|
2360
|
-
"upload.accepted": "Accepted: {{accept}}",
|
|
2361
|
-
"upload.maxSize": "Max size: {{size}}",
|
|
2362
|
-
"upload.maxFiles": "Up to {{count}} files",
|
|
2363
|
-
"upload.error.maxFiles": "Maximum {{count}} files allowed",
|
|
2364
|
-
"upload.error.invalidType": "Invalid file type: {{name}}",
|
|
2365
|
-
"upload.error.tooLarge": "File too large: {{name}} (max {{size}})",
|
|
2366
|
-
"optionConstraint.requiredOne": "Required, pick 1",
|
|
2367
|
-
"optionConstraint.optionalOne": "Optional, pick up to 1",
|
|
2368
|
-
"optionConstraint.pickExactly": "Pick exactly {{count}}",
|
|
2369
|
-
"optionConstraint.pickRange": "Pick {{min}}-{{max}}",
|
|
2370
|
-
"optionConstraint.pickAtLeast": "Pick at least {{count}}",
|
|
2371
|
-
"optionConstraint.pickUpTo": "Pick up to {{count}}",
|
|
2372
|
-
"optionConstraint.optional": "Optional",
|
|
2373
|
-
"optionConstraint.outOfStock": "Out of stock",
|
|
2374
|
-
"optionConstraint.error.pickOne": "Pick 1 option",
|
|
2375
|
-
"optionConstraint.error.pickOnlyOne": "Pick only 1 option",
|
|
2376
|
-
"optionConstraint.error.pickMore": "Pick at least {{count}} more",
|
|
2377
|
-
"optionConstraint.error.removeOptions": "Remove {{count}} options",
|
|
2378
|
-
"stateMachine.pinned": "Pinned",
|
|
2379
|
-
"stateMachine.eventCount": "{{count}} events",
|
|
2380
|
-
"stateMachine.externalEffects": "External Effects",
|
|
2381
|
-
"stateMachine.legend.initial": "Initial",
|
|
2382
|
-
"stateMachine.legend.final": "Final",
|
|
2383
|
-
"stateMachine.legend.state": "State",
|
|
2384
|
-
"stateMachine.legend.multiEvent": "Multi-event"
|
|
2385
|
-
};
|
|
2386
|
-
}
|
|
2387
|
-
});
|
|
2388
|
-
function useTranslate() {
|
|
2389
|
-
return useContext(I18nContext);
|
|
2390
|
-
}
|
|
2391
|
-
var _meta, coreMessages, coreLocale, I18nContext;
|
|
2392
|
-
var init_useTranslate = __esm({
|
|
2393
|
-
"hooks/useTranslate.ts"() {
|
|
2394
|
-
"use client";
|
|
2395
|
-
init_en();
|
|
2396
|
-
({ $meta: _meta, ...coreMessages } = en_default);
|
|
2397
|
-
coreLocale = coreMessages;
|
|
2398
|
-
I18nContext = createContext({
|
|
2399
|
-
locale: "en",
|
|
2400
|
-
direction: "ltr",
|
|
2401
|
-
t: (key) => coreLocale[key] ?? key
|
|
2402
|
-
// core locale fallback
|
|
2403
|
-
});
|
|
2404
|
-
I18nContext.displayName = "I18nContext";
|
|
2405
|
-
I18nContext.Provider;
|
|
2406
|
-
}
|
|
2407
|
-
});
|
|
2408
1912
|
var sizeClasses2, minWidthClasses, lookStyles, Modal;
|
|
2409
1913
|
var init_Modal = __esm({
|
|
2410
1914
|
"components/core/molecules/Modal.tsx"() {
|
|
@@ -2416,7 +1920,6 @@ var init_Modal = __esm({
|
|
|
2416
1920
|
init_Overlay();
|
|
2417
1921
|
init_cn();
|
|
2418
1922
|
init_useEventBus();
|
|
2419
|
-
init_useTranslate();
|
|
2420
1923
|
sizeClasses2 = {
|
|
2421
1924
|
sm: "max-w-md",
|
|
2422
1925
|
md: "max-w-2xl",
|
|
@@ -2638,7 +2141,6 @@ var init_Drawer = __esm({
|
|
|
2638
2141
|
init_Overlay();
|
|
2639
2142
|
init_cn();
|
|
2640
2143
|
init_useEventBus();
|
|
2641
|
-
init_useTranslate();
|
|
2642
2144
|
sizeWidths = {
|
|
2643
2145
|
sm: "w-full sm:w-80",
|
|
2644
2146
|
// 320px
|
|
@@ -2911,7 +2413,6 @@ var init_Toast = __esm({
|
|
|
2911
2413
|
init_Badge();
|
|
2912
2414
|
init_cn();
|
|
2913
2415
|
init_useEventBus();
|
|
2914
|
-
init_useTranslate();
|
|
2915
2416
|
variantClasses = {
|
|
2916
2417
|
success: "bg-card border-[length:var(--border-width)] border-success",
|
|
2917
2418
|
error: "bg-card border-[length:var(--border-width)] border-error",
|
|
@@ -3873,7 +3374,6 @@ var init_Input = __esm({
|
|
|
3873
3374
|
"components/core/atoms/Input.tsx"() {
|
|
3874
3375
|
init_cn();
|
|
3875
3376
|
init_Icon();
|
|
3876
|
-
init_useTranslate();
|
|
3877
3377
|
Input = React85__default.forwardRef(
|
|
3878
3378
|
({
|
|
3879
3379
|
className,
|
|
@@ -4257,7 +3757,6 @@ var init_FilterPill = __esm({
|
|
|
4257
3757
|
"components/core/atoms/FilterPill.tsx"() {
|
|
4258
3758
|
init_cn();
|
|
4259
3759
|
init_useEventBus();
|
|
4260
|
-
init_useTranslate();
|
|
4261
3760
|
init_Icon();
|
|
4262
3761
|
variantStyles5 = {
|
|
4263
3762
|
default: [
|
|
@@ -5469,7 +4968,6 @@ var init_LawReferenceTooltip = __esm({
|
|
|
5469
4968
|
init_Typography();
|
|
5470
4969
|
init_Divider();
|
|
5471
4970
|
init_cn();
|
|
5472
|
-
init_useTranslate();
|
|
5473
4971
|
positionStyles2 = {
|
|
5474
4972
|
top: "bottom-full left-1/2 -translate-x-1/2 mb-2",
|
|
5475
4973
|
bottom: "top-full left-1/2 -translate-x-1/2 mt-2",
|
|
@@ -8463,7 +7961,6 @@ var init_ErrorState = __esm({
|
|
|
8463
7961
|
init_Typography();
|
|
8464
7962
|
init_Icon();
|
|
8465
7963
|
init_useEventBus();
|
|
8466
|
-
init_useTranslate();
|
|
8467
7964
|
ErrorState = ({
|
|
8468
7965
|
title,
|
|
8469
7966
|
message,
|
|
@@ -8506,7 +8003,6 @@ var init_ErrorBoundary = __esm({
|
|
|
8506
8003
|
"use client";
|
|
8507
8004
|
init_cn();
|
|
8508
8005
|
init_ErrorState();
|
|
8509
|
-
init_useTranslate();
|
|
8510
8006
|
DefaultFallback = ({ error, onRetry }) => {
|
|
8511
8007
|
const { t } = useTranslate();
|
|
8512
8008
|
return /* @__PURE__ */ jsx(
|
|
@@ -8656,7 +8152,6 @@ var init_Skeleton = __esm({
|
|
|
8656
8152
|
"components/core/molecules/Skeleton.tsx"() {
|
|
8657
8153
|
"use client";
|
|
8658
8154
|
init_cn();
|
|
8659
|
-
init_useTranslate();
|
|
8660
8155
|
init_Box();
|
|
8661
8156
|
init_Stack();
|
|
8662
8157
|
init_Stack();
|
|
@@ -9689,7 +9184,6 @@ var AboutPageTemplate;
|
|
|
9689
9184
|
var init_AboutPageTemplate = __esm({
|
|
9690
9185
|
"components/marketing/templates/AboutPageTemplate.tsx"() {
|
|
9691
9186
|
init_cn();
|
|
9692
|
-
init_useTranslate();
|
|
9693
9187
|
init_Stack();
|
|
9694
9188
|
init_Box();
|
|
9695
9189
|
init_Typography();
|
|
@@ -9794,7 +9288,6 @@ var init_Alert = __esm({
|
|
|
9794
9288
|
init_Icon();
|
|
9795
9289
|
init_Typography();
|
|
9796
9290
|
init_useEventBus();
|
|
9797
|
-
init_useTranslate();
|
|
9798
9291
|
variantBorderClasses = {
|
|
9799
9292
|
info: "border-info",
|
|
9800
9293
|
success: "border-success",
|
|
@@ -10154,7 +9647,6 @@ var init_Menu = __esm({
|
|
|
10154
9647
|
init_Badge();
|
|
10155
9648
|
init_cn();
|
|
10156
9649
|
init_useEventBus();
|
|
10157
|
-
init_useTranslate();
|
|
10158
9650
|
Menu = ({
|
|
10159
9651
|
trigger,
|
|
10160
9652
|
items,
|
|
@@ -10442,7 +9934,6 @@ var init_FloatingActionButton = __esm({
|
|
|
10442
9934
|
init_Typography();
|
|
10443
9935
|
init_cn();
|
|
10444
9936
|
init_useEventBus();
|
|
10445
|
-
init_useTranslate();
|
|
10446
9937
|
FloatingActionButton = ({
|
|
10447
9938
|
action,
|
|
10448
9939
|
actionPayload,
|
|
@@ -11364,7 +10855,6 @@ var init_ActionTile = __esm({
|
|
|
11364
10855
|
"components/game/organisms/puzzles/sequencer/ActionTile.tsx"() {
|
|
11365
10856
|
init_atoms2();
|
|
11366
10857
|
init_cn();
|
|
11367
|
-
init_useTranslate();
|
|
11368
10858
|
DRAG_MIME = "application/x-almadar-slot-item";
|
|
11369
10859
|
SIZE_CONFIG = {
|
|
11370
10860
|
sm: { px: "px-2 py-1", icon: "text-lg", text: "text-xs" },
|
|
@@ -11402,7 +10892,6 @@ var init_ActionPalette = __esm({
|
|
|
11402
10892
|
"components/game/organisms/puzzles/sequencer/ActionPalette.tsx"() {
|
|
11403
10893
|
init_atoms2();
|
|
11404
10894
|
init_cn();
|
|
11405
|
-
init_useTranslate();
|
|
11406
10895
|
init_ActionTile();
|
|
11407
10896
|
ActionPalette.displayName = "ActionPalette";
|
|
11408
10897
|
}
|
|
@@ -11412,7 +10901,6 @@ var init_AuthLayout = __esm({
|
|
|
11412
10901
|
"components/core/templates/AuthLayout.tsx"() {
|
|
11413
10902
|
"use client";
|
|
11414
10903
|
init_cn();
|
|
11415
|
-
init_useTranslate();
|
|
11416
10904
|
init_Box();
|
|
11417
10905
|
init_Stack();
|
|
11418
10906
|
init_Typography();
|
|
@@ -11557,7 +11045,6 @@ var init_LoadingState = __esm({
|
|
|
11557
11045
|
init_atoms2();
|
|
11558
11046
|
init_Stack();
|
|
11559
11047
|
init_Typography();
|
|
11560
|
-
init_useTranslate();
|
|
11561
11048
|
LoadingState = ({
|
|
11562
11049
|
title,
|
|
11563
11050
|
message,
|
|
@@ -12729,7 +12216,6 @@ var init_IsometricCanvas = __esm({
|
|
|
12729
12216
|
"use client";
|
|
12730
12217
|
init_cn();
|
|
12731
12218
|
init_useEventBus();
|
|
12732
|
-
init_useTranslate();
|
|
12733
12219
|
init_Box();
|
|
12734
12220
|
init_Stack();
|
|
12735
12221
|
init_Icon();
|
|
@@ -13093,7 +12579,6 @@ var init_BattleBoard = __esm({
|
|
|
13093
12579
|
"use client";
|
|
13094
12580
|
init_cn();
|
|
13095
12581
|
init_useEventBus();
|
|
13096
|
-
init_useTranslate();
|
|
13097
12582
|
init_Box();
|
|
13098
12583
|
init_Button();
|
|
13099
12584
|
init_Typography();
|
|
@@ -13853,7 +13338,6 @@ var log7, SWIM_GUTTER, CENTER_W, BehaviorView;
|
|
|
13853
13338
|
var init_BehaviorView = __esm({
|
|
13854
13339
|
"components/avl/molecules/BehaviorView.tsx"() {
|
|
13855
13340
|
"use client";
|
|
13856
|
-
init_useTranslate();
|
|
13857
13341
|
init_AvlState();
|
|
13858
13342
|
init_AvlTransitionLane();
|
|
13859
13343
|
init_AvlSwimLane();
|
|
@@ -13968,7 +13452,6 @@ var MIN_DIAGRAM_WIDTH, ScaledDiagram;
|
|
|
13968
13452
|
var init_ScaledDiagram = __esm({
|
|
13969
13453
|
"components/core/molecules/ScaledDiagram.tsx"() {
|
|
13970
13454
|
init_Box();
|
|
13971
|
-
init_useTranslate();
|
|
13972
13455
|
init_cn();
|
|
13973
13456
|
MIN_DIAGRAM_WIDTH = 200;
|
|
13974
13457
|
ScaledDiagram = ({
|
|
@@ -14111,7 +13594,6 @@ var init_CodeBlock = __esm({
|
|
|
14111
13594
|
init_Textarea();
|
|
14112
13595
|
init_Icon();
|
|
14113
13596
|
init_useEventBus();
|
|
14114
|
-
init_useTranslate();
|
|
14115
13597
|
SyntaxHighlighter.registerLanguage("json", langJson);
|
|
14116
13598
|
SyntaxHighlighter.registerLanguage("javascript", langJavascript);
|
|
14117
13599
|
SyntaxHighlighter.registerLanguage("js", langJavascript);
|
|
@@ -14618,7 +14100,6 @@ var init_MarkdownContent = __esm({
|
|
|
14618
14100
|
init_katex_min();
|
|
14619
14101
|
init_Box();
|
|
14620
14102
|
init_CodeBlock();
|
|
14621
|
-
init_useTranslate();
|
|
14622
14103
|
init_cn();
|
|
14623
14104
|
MarkdownContent = React85__default.memo(
|
|
14624
14105
|
({ content, direction, className }) => {
|
|
@@ -14923,7 +14404,6 @@ var init_Card2 = __esm({
|
|
|
14923
14404
|
"components/core/molecules/Card.tsx"() {
|
|
14924
14405
|
"use client";
|
|
14925
14406
|
init_useEventBus();
|
|
14926
|
-
init_useTranslate();
|
|
14927
14407
|
init_useLongPress();
|
|
14928
14408
|
Card2.displayName = "Card";
|
|
14929
14409
|
}
|
|
@@ -14937,7 +14417,6 @@ var init_QuizBlock = __esm({
|
|
|
14937
14417
|
init_Button();
|
|
14938
14418
|
init_Icon();
|
|
14939
14419
|
init_Box();
|
|
14940
|
-
init_useTranslate();
|
|
14941
14420
|
init_cn();
|
|
14942
14421
|
QuizBlock = ({
|
|
14943
14422
|
question,
|
|
@@ -14980,7 +14459,6 @@ var init_StateMachineView = __esm({
|
|
|
14980
14459
|
init_Typography();
|
|
14981
14460
|
init_Button();
|
|
14982
14461
|
init_Icon();
|
|
14983
|
-
init_useTranslate();
|
|
14984
14462
|
init_useEventBus();
|
|
14985
14463
|
init_cn();
|
|
14986
14464
|
StateNode = ({ state, config }) => {
|
|
@@ -16347,7 +15825,6 @@ var init_JazariStateMachine = __esm({
|
|
|
16347
15825
|
init_StateMachineView();
|
|
16348
15826
|
init_visualizer();
|
|
16349
15827
|
init_svg_paths();
|
|
16350
|
-
init_useTranslate();
|
|
16351
15828
|
init_cn();
|
|
16352
15829
|
JAZARI_VISUALIZER_CONFIG = {
|
|
16353
15830
|
...DEFAULT_CONFIG,
|
|
@@ -16503,7 +15980,6 @@ var init_ContentRenderer = __esm({
|
|
|
16503
15980
|
init_ScaledDiagram();
|
|
16504
15981
|
init_JazariStateMachine();
|
|
16505
15982
|
init_parseContentSegments();
|
|
16506
|
-
init_useTranslate();
|
|
16507
15983
|
init_cn();
|
|
16508
15984
|
ContentRenderer = ({
|
|
16509
15985
|
content,
|
|
@@ -16597,7 +16073,6 @@ var init_BookChapterView = __esm({
|
|
|
16597
16073
|
init_ScaledDiagram();
|
|
16598
16074
|
init_ContentRenderer();
|
|
16599
16075
|
init_JazariStateMachine();
|
|
16600
|
-
init_useTranslate();
|
|
16601
16076
|
init_cn();
|
|
16602
16077
|
BookChapterView = ({
|
|
16603
16078
|
chapter,
|
|
@@ -16636,7 +16111,6 @@ var init_BookCoverPage = __esm({
|
|
|
16636
16111
|
init_Typography();
|
|
16637
16112
|
init_Button();
|
|
16638
16113
|
init_Box();
|
|
16639
|
-
init_useTranslate();
|
|
16640
16114
|
init_cn();
|
|
16641
16115
|
BookCoverPage = ({
|
|
16642
16116
|
title,
|
|
@@ -16716,7 +16190,6 @@ var init_BookNavBar = __esm({
|
|
|
16716
16190
|
init_Typography();
|
|
16717
16191
|
init_ProgressBar();
|
|
16718
16192
|
init_Box();
|
|
16719
|
-
init_useTranslate();
|
|
16720
16193
|
init_cn();
|
|
16721
16194
|
BookNavBar = ({
|
|
16722
16195
|
currentPage,
|
|
@@ -16818,7 +16291,6 @@ var init_BookTableOfContents = __esm({
|
|
|
16818
16291
|
init_Button();
|
|
16819
16292
|
init_Box();
|
|
16820
16293
|
init_Badge();
|
|
16821
|
-
init_useTranslate();
|
|
16822
16294
|
init_cn();
|
|
16823
16295
|
BookTableOfContents = ({
|
|
16824
16296
|
parts,
|
|
@@ -16878,7 +16350,6 @@ var init_EmptyState = __esm({
|
|
|
16878
16350
|
init_Stack();
|
|
16879
16351
|
init_Typography();
|
|
16880
16352
|
init_useEventBus();
|
|
16881
|
-
init_useTranslate();
|
|
16882
16353
|
ICON_NAME_ALIASES = {
|
|
16883
16354
|
check: "check-circle",
|
|
16884
16355
|
error: "x-circle",
|
|
@@ -17049,7 +16520,6 @@ var init_BookViewer = __esm({
|
|
|
17049
16520
|
init_Box();
|
|
17050
16521
|
init_Stack();
|
|
17051
16522
|
init_useEventBus();
|
|
17052
|
-
init_useTranslate();
|
|
17053
16523
|
init_cn();
|
|
17054
16524
|
init_BookCoverPage();
|
|
17055
16525
|
init_BookTableOfContents();
|
|
@@ -17481,7 +16951,6 @@ var init_BranchingLogicBuilder = __esm({
|
|
|
17481
16951
|
init_FilterPill();
|
|
17482
16952
|
init_Box();
|
|
17483
16953
|
init_useEventBus();
|
|
17484
|
-
init_useTranslate();
|
|
17485
16954
|
init_cn();
|
|
17486
16955
|
END_OF_SURVEY = "end-of-survey";
|
|
17487
16956
|
RuleRow = ({
|
|
@@ -17934,7 +17403,6 @@ var init_Breadcrumb = __esm({
|
|
|
17934
17403
|
init_Typography();
|
|
17935
17404
|
init_cn();
|
|
17936
17405
|
init_useEventBus();
|
|
17937
|
-
init_useTranslate();
|
|
17938
17406
|
Breadcrumb = ({
|
|
17939
17407
|
items,
|
|
17940
17408
|
separator = "chevron-right",
|
|
@@ -18170,7 +17638,6 @@ var init_BuilderBoard = __esm({
|
|
|
18170
17638
|
"components/game/organisms/puzzles/builder/BuilderBoard.tsx"() {
|
|
18171
17639
|
init_atoms2();
|
|
18172
17640
|
init_useEventBus();
|
|
18173
|
-
init_useTranslate();
|
|
18174
17641
|
BuilderBoard.displayName = "BuilderBoard";
|
|
18175
17642
|
}
|
|
18176
17643
|
});
|
|
@@ -18648,7 +18115,6 @@ var init_CalendarGrid = __esm({
|
|
|
18648
18115
|
init_TimeSlotCell();
|
|
18649
18116
|
init_useEventBus();
|
|
18650
18117
|
init_useSwipeGesture();
|
|
18651
|
-
init_useTranslate();
|
|
18652
18118
|
SHORT_DATE = { month: "short", day: "numeric" };
|
|
18653
18119
|
CalendarGrid.displayName = "CalendarGrid";
|
|
18654
18120
|
}
|
|
@@ -19957,7 +19423,6 @@ var init_Pagination = __esm({
|
|
|
19957
19423
|
init_Stack();
|
|
19958
19424
|
init_cn();
|
|
19959
19425
|
init_useEventBus();
|
|
19960
|
-
init_useTranslate();
|
|
19961
19426
|
Pagination = ({
|
|
19962
19427
|
currentPage,
|
|
19963
19428
|
totalPages,
|
|
@@ -20161,7 +19626,6 @@ var init_CardGrid = __esm({
|
|
|
20161
19626
|
init_cn();
|
|
20162
19627
|
init_getNestedValue();
|
|
20163
19628
|
init_useEventBus();
|
|
20164
|
-
init_useTranslate();
|
|
20165
19629
|
init_atoms2();
|
|
20166
19630
|
init_Badge();
|
|
20167
19631
|
init_Box();
|
|
@@ -20390,7 +19854,6 @@ var init_Carousel = __esm({
|
|
|
20390
19854
|
init_cn();
|
|
20391
19855
|
init_useEventBus();
|
|
20392
19856
|
init_useSwipeGesture();
|
|
20393
|
-
init_useTranslate();
|
|
20394
19857
|
init_Box();
|
|
20395
19858
|
init_Stack();
|
|
20396
19859
|
init_Button();
|
|
@@ -20627,7 +20090,6 @@ var init_CaseStudyOrganism = __esm({
|
|
|
20627
20090
|
"use client";
|
|
20628
20091
|
init_cn();
|
|
20629
20092
|
init_useEventBus();
|
|
20630
|
-
init_useTranslate();
|
|
20631
20093
|
init_Stack();
|
|
20632
20094
|
init_Typography();
|
|
20633
20095
|
init_SimpleGrid();
|
|
@@ -20832,7 +20294,6 @@ var init_Chart = __esm({
|
|
|
20832
20294
|
init_ErrorState();
|
|
20833
20295
|
init_EmptyState();
|
|
20834
20296
|
init_useEventBus();
|
|
20835
|
-
init_useTranslate();
|
|
20836
20297
|
CHART_COLORS = [
|
|
20837
20298
|
"var(--color-primary)",
|
|
20838
20299
|
"var(--color-success)",
|
|
@@ -21740,7 +21201,6 @@ var init_ClassifierBoard = __esm({
|
|
|
21740
21201
|
"components/game/organisms/puzzles/classifier/ClassifierBoard.tsx"() {
|
|
21741
21202
|
init_atoms2();
|
|
21742
21203
|
init_useEventBus();
|
|
21743
|
-
init_useTranslate();
|
|
21744
21204
|
ClassifierBoard.displayName = "ClassifierBoard";
|
|
21745
21205
|
}
|
|
21746
21206
|
});
|
|
@@ -21772,7 +21232,6 @@ var init_CodeView = __esm({
|
|
|
21772
21232
|
"components/game/organisms/puzzles/state-architect/CodeView.tsx"() {
|
|
21773
21233
|
init_atoms2();
|
|
21774
21234
|
init_cn();
|
|
21775
|
-
init_useTranslate();
|
|
21776
21235
|
CodeView.displayName = "CodeView";
|
|
21777
21236
|
}
|
|
21778
21237
|
});
|
|
@@ -21786,7 +21245,6 @@ var init_Tabs = __esm({
|
|
|
21786
21245
|
init_Box();
|
|
21787
21246
|
init_cn();
|
|
21788
21247
|
init_useEventBus();
|
|
21789
|
-
init_useTranslate();
|
|
21790
21248
|
Tabs = ({
|
|
21791
21249
|
items,
|
|
21792
21250
|
tabs,
|
|
@@ -21963,7 +21421,6 @@ var init_CodeViewer = __esm({
|
|
|
21963
21421
|
init_EmptyState();
|
|
21964
21422
|
init_Tabs();
|
|
21965
21423
|
init_useEventBus();
|
|
21966
|
-
init_useTranslate();
|
|
21967
21424
|
DIFF_STYLES = {
|
|
21968
21425
|
add: {
|
|
21969
21426
|
bg: "bg-success/10",
|
|
@@ -22335,7 +21792,6 @@ var init_ConfirmDialog = __esm({
|
|
|
22335
21792
|
init_Box();
|
|
22336
21793
|
init_Stack();
|
|
22337
21794
|
init_cn();
|
|
22338
|
-
init_useTranslate();
|
|
22339
21795
|
variantConfig = {
|
|
22340
21796
|
danger: {
|
|
22341
21797
|
icon: Trash2,
|
|
@@ -22817,7 +22273,6 @@ var init_DashboardGrid = __esm({
|
|
|
22817
22273
|
"components/core/organisms/layout/DashboardGrid.tsx"() {
|
|
22818
22274
|
init_cn();
|
|
22819
22275
|
init_Box();
|
|
22820
|
-
init_useTranslate();
|
|
22821
22276
|
gapStyles5 = {
|
|
22822
22277
|
sm: "gap-2",
|
|
22823
22278
|
md: "gap-4",
|
|
@@ -22911,7 +22366,6 @@ var init_DashboardLayout = __esm({
|
|
|
22911
22366
|
init_Icon();
|
|
22912
22367
|
init_useAuthContext();
|
|
22913
22368
|
init_useEventBus();
|
|
22914
|
-
init_useTranslate();
|
|
22915
22369
|
init_CurrentPagePathContext();
|
|
22916
22370
|
DashboardLayout = ({
|
|
22917
22371
|
appName = "{{APP_TITLE}}",
|
|
@@ -24256,7 +23710,6 @@ var init_DataGrid = __esm({
|
|
|
24256
23710
|
init_cn();
|
|
24257
23711
|
init_getNestedValue();
|
|
24258
23712
|
init_useEventBus();
|
|
24259
|
-
init_useTranslate();
|
|
24260
23713
|
init_Box();
|
|
24261
23714
|
init_Stack();
|
|
24262
23715
|
init_Typography();
|
|
@@ -24695,7 +24148,6 @@ var init_DataList = __esm({
|
|
|
24695
24148
|
init_cn();
|
|
24696
24149
|
init_getNestedValue();
|
|
24697
24150
|
init_useEventBus();
|
|
24698
|
-
init_useTranslate();
|
|
24699
24151
|
init_Box();
|
|
24700
24152
|
init_Stack();
|
|
24701
24153
|
init_Typography();
|
|
@@ -24750,7 +24202,6 @@ var init_FileTree = __esm({
|
|
|
24750
24202
|
init_Box();
|
|
24751
24203
|
init_Typography();
|
|
24752
24204
|
init_Icon();
|
|
24753
|
-
init_useTranslate();
|
|
24754
24205
|
TreeNodeItem = ({
|
|
24755
24206
|
node,
|
|
24756
24207
|
depth,
|
|
@@ -24957,7 +24408,6 @@ var init_FilterGroup = __esm({
|
|
|
24957
24408
|
init_Icon();
|
|
24958
24409
|
init_useEventBus();
|
|
24959
24410
|
init_useQuerySingleton();
|
|
24960
|
-
init_useTranslate();
|
|
24961
24411
|
resolveFilterType = (filter) => filter.filterType ?? filter.type;
|
|
24962
24412
|
lookStyles6 = {
|
|
24963
24413
|
toolbar: "",
|
|
@@ -25599,13 +25049,12 @@ var init_RelationSelect = __esm({
|
|
|
25599
25049
|
init_Spinner();
|
|
25600
25050
|
init_Typography();
|
|
25601
25051
|
init_debug();
|
|
25602
|
-
init_useTranslate();
|
|
25603
25052
|
isRelationsDebugEnabled = () => isDebugEnabled();
|
|
25604
25053
|
RelationSelect = ({
|
|
25605
25054
|
value,
|
|
25606
25055
|
onChange,
|
|
25607
25056
|
options = [],
|
|
25608
|
-
placeholder
|
|
25057
|
+
placeholder,
|
|
25609
25058
|
required = false,
|
|
25610
25059
|
disabled = false,
|
|
25611
25060
|
isLoading = false,
|
|
@@ -25617,6 +25066,7 @@ var init_RelationSelect = __esm({
|
|
|
25617
25066
|
emptyMessage
|
|
25618
25067
|
}) => {
|
|
25619
25068
|
const { t } = useTranslate();
|
|
25069
|
+
const resolvedPlaceholder = placeholder ?? t("relationSelect.selectPlaceholder");
|
|
25620
25070
|
const resolvedSearchPlaceholder = searchPlaceholder ?? t("common.search");
|
|
25621
25071
|
const resolvedEmptyMessage = emptyMessage ?? t("empty.noOptionsFound");
|
|
25622
25072
|
const [isOpen, setIsOpen] = useState(false);
|
|
@@ -25726,7 +25176,7 @@ var init_RelationSelect = __esm({
|
|
|
25726
25176
|
children: isLoading ? /* @__PURE__ */ jsxs(HStack, { gap: "xs", align: "center", children: [
|
|
25727
25177
|
/* @__PURE__ */ jsx(Spinner, { size: "sm" }),
|
|
25728
25178
|
/* @__PURE__ */ jsx(Typography, { as: "span", children: t("common.loading") })
|
|
25729
|
-
] }) : selectedOption ? selectedOption.label :
|
|
25179
|
+
] }) : selectedOption ? selectedOption.label : resolvedPlaceholder
|
|
25730
25180
|
}
|
|
25731
25181
|
),
|
|
25732
25182
|
/* @__PURE__ */ jsxs(HStack, { gap: "xs", align: "center", children: [
|
|
@@ -25823,7 +25273,6 @@ var init_SearchInput = __esm({
|
|
|
25823
25273
|
init_cn();
|
|
25824
25274
|
init_useEventBus();
|
|
25825
25275
|
init_useQuerySingleton();
|
|
25826
|
-
init_useTranslate();
|
|
25827
25276
|
SearchInput = ({
|
|
25828
25277
|
value,
|
|
25829
25278
|
onSearch,
|
|
@@ -25926,7 +25375,6 @@ var init_SidePanel = __esm({
|
|
|
25926
25375
|
init_Typography();
|
|
25927
25376
|
init_cn();
|
|
25928
25377
|
init_useEventBus();
|
|
25929
|
-
init_useTranslate();
|
|
25930
25378
|
SidePanel = ({
|
|
25931
25379
|
title,
|
|
25932
25380
|
children,
|
|
@@ -26105,7 +25553,6 @@ var init_WizardNavigation = __esm({
|
|
|
26105
25553
|
init_Icon();
|
|
26106
25554
|
init_cn();
|
|
26107
25555
|
init_useEventBus();
|
|
26108
|
-
init_useTranslate();
|
|
26109
25556
|
WizardNavigation = ({
|
|
26110
25557
|
currentStep,
|
|
26111
25558
|
totalSteps,
|
|
@@ -26193,7 +25640,6 @@ var init_RepeatableFormSection = __esm({
|
|
|
26193
25640
|
init_Card();
|
|
26194
25641
|
init_Icon();
|
|
26195
25642
|
init_useEventBus();
|
|
26196
|
-
init_useTranslate();
|
|
26197
25643
|
RepeatableFormSection = ({
|
|
26198
25644
|
sectionType,
|
|
26199
25645
|
title,
|
|
@@ -26324,7 +25770,6 @@ var actionTypeLabelKeys, actionTypeIcons, ViolationAlert;
|
|
|
26324
25770
|
var init_ViolationAlert = __esm({
|
|
26325
25771
|
"components/core/molecules/ViolationAlert.tsx"() {
|
|
26326
25772
|
init_cn();
|
|
26327
|
-
init_useTranslate();
|
|
26328
25773
|
init_Box();
|
|
26329
25774
|
init_Stack();
|
|
26330
25775
|
init_Typography();
|
|
@@ -26830,7 +26275,6 @@ var init_LineChart = __esm({
|
|
|
26830
26275
|
"use client";
|
|
26831
26276
|
init_cn();
|
|
26832
26277
|
init_atoms2();
|
|
26833
|
-
init_useTranslate();
|
|
26834
26278
|
LineChart2 = ({
|
|
26835
26279
|
data,
|
|
26836
26280
|
width = 400,
|
|
@@ -28786,7 +28230,6 @@ var init_GraphView = __esm({
|
|
|
28786
28230
|
"use client";
|
|
28787
28231
|
init_cn();
|
|
28788
28232
|
init_atoms2();
|
|
28789
|
-
init_useTranslate();
|
|
28790
28233
|
GROUP_COLORS = [
|
|
28791
28234
|
"#3b82f6",
|
|
28792
28235
|
// blue-500
|
|
@@ -29112,7 +28555,6 @@ var init_NumberStepper = __esm({
|
|
|
29112
28555
|
init_cn();
|
|
29113
28556
|
init_Icon();
|
|
29114
28557
|
init_useEventBus();
|
|
29115
|
-
init_useTranslate();
|
|
29116
28558
|
sizeStyles10 = {
|
|
29117
28559
|
sm: {
|
|
29118
28560
|
button: "w-7 h-7",
|
|
@@ -29453,7 +28895,6 @@ var init_UploadDropZone = __esm({
|
|
|
29453
28895
|
init_Icon();
|
|
29454
28896
|
init_Typography();
|
|
29455
28897
|
init_useEventBus();
|
|
29456
|
-
init_useTranslate();
|
|
29457
28898
|
UploadDropZone = ({
|
|
29458
28899
|
accept,
|
|
29459
28900
|
maxSize,
|
|
@@ -29620,7 +29061,6 @@ var init_Lightbox = __esm({
|
|
|
29620
29061
|
init_Icon();
|
|
29621
29062
|
init_cn();
|
|
29622
29063
|
init_useEventBus();
|
|
29623
|
-
init_useTranslate();
|
|
29624
29064
|
Lightbox = ({
|
|
29625
29065
|
images = [],
|
|
29626
29066
|
currentIndex = 0,
|
|
@@ -30105,7 +29545,6 @@ var init_TableView = __esm({
|
|
|
30105
29545
|
init_cn();
|
|
30106
29546
|
init_getNestedValue();
|
|
30107
29547
|
init_useEventBus();
|
|
30108
|
-
init_useTranslate();
|
|
30109
29548
|
init_Box();
|
|
30110
29549
|
init_Stack();
|
|
30111
29550
|
init_Typography();
|
|
@@ -30309,7 +29748,6 @@ var init_Meter = __esm({
|
|
|
30309
29748
|
init_LoadingState();
|
|
30310
29749
|
init_ErrorState();
|
|
30311
29750
|
init_useEventBus();
|
|
30312
|
-
init_useTranslate();
|
|
30313
29751
|
DEFAULT_THRESHOLDS = [
|
|
30314
29752
|
{ value: 30, color: "var(--color-error)" },
|
|
30315
29753
|
{ value: 70, color: "var(--color-warning)" },
|
|
@@ -32256,7 +31694,6 @@ var init_VoteStack = __esm({
|
|
|
32256
31694
|
init_cn();
|
|
32257
31695
|
init_Icon();
|
|
32258
31696
|
init_useEventBus();
|
|
32259
|
-
init_useTranslate();
|
|
32260
31697
|
sizeStyles12 = {
|
|
32261
31698
|
sm: {
|
|
32262
31699
|
button: "w-7 h-7",
|
|
@@ -32711,7 +32148,6 @@ var init_QrScanner = __esm({
|
|
|
32711
32148
|
init_atoms2();
|
|
32712
32149
|
init_Icon();
|
|
32713
32150
|
init_useEventBus();
|
|
32714
|
-
init_useTranslate();
|
|
32715
32151
|
QrScanner = ({
|
|
32716
32152
|
onScan,
|
|
32717
32153
|
scanEvent,
|
|
@@ -32938,7 +32374,6 @@ var init_OptionConstraintGroup = __esm({
|
|
|
32938
32374
|
"components/core/molecules/OptionConstraintGroup.tsx"() {
|
|
32939
32375
|
init_cn();
|
|
32940
32376
|
init_useEventBus();
|
|
32941
|
-
init_useTranslate();
|
|
32942
32377
|
init_Typography();
|
|
32943
32378
|
init_Box();
|
|
32944
32379
|
init_Label();
|
|
@@ -33894,7 +33329,6 @@ var init_RichBlockEditor = __esm({
|
|
|
33894
33329
|
init_Input();
|
|
33895
33330
|
init_Icon();
|
|
33896
33331
|
init_useEventBus();
|
|
33897
|
-
init_useTranslate();
|
|
33898
33332
|
TOOLBAR_ENTRIES = [
|
|
33899
33333
|
{ type: "paragraph", labelKey: "richBlockEditor.toolbar.text", icon: Type },
|
|
33900
33334
|
{ type: "heading-1", labelKey: "richBlockEditor.toolbar.h1", icon: Heading1 },
|
|
@@ -34085,7 +33519,6 @@ var init_ReplyTree = __esm({
|
|
|
34085
33519
|
"use client";
|
|
34086
33520
|
init_cn();
|
|
34087
33521
|
init_useEventBus();
|
|
34088
|
-
init_useTranslate();
|
|
34089
33522
|
init_atoms2();
|
|
34090
33523
|
init_VoteStack();
|
|
34091
33524
|
ReplyTreeNode = ({
|
|
@@ -34393,7 +33826,6 @@ var init_VersionDiff = __esm({
|
|
|
34393
33826
|
"use client";
|
|
34394
33827
|
init_cn();
|
|
34395
33828
|
init_useEventBus();
|
|
34396
|
-
init_useTranslate();
|
|
34397
33829
|
init_atoms2();
|
|
34398
33830
|
init_Stack();
|
|
34399
33831
|
INLINE_STYLES = {
|
|
@@ -34709,7 +34141,6 @@ var init_DocBreadcrumb = __esm({
|
|
|
34709
34141
|
init_Stack();
|
|
34710
34142
|
init_Typography();
|
|
34711
34143
|
init_Icon();
|
|
34712
|
-
init_useTranslate();
|
|
34713
34144
|
DocBreadcrumb = ({
|
|
34714
34145
|
items,
|
|
34715
34146
|
className
|
|
@@ -35138,7 +34569,6 @@ var init_DocSearch = __esm({
|
|
|
35138
34569
|
init_Typography();
|
|
35139
34570
|
init_Icon();
|
|
35140
34571
|
init_Input();
|
|
35141
|
-
init_useTranslate();
|
|
35142
34572
|
}
|
|
35143
34573
|
});
|
|
35144
34574
|
var DocSidebarCategory, DocSidebar;
|
|
@@ -35151,7 +34581,6 @@ var init_DocSidebar = __esm({
|
|
|
35151
34581
|
init_Stack();
|
|
35152
34582
|
init_Typography();
|
|
35153
34583
|
init_Icon();
|
|
35154
|
-
init_useTranslate();
|
|
35155
34584
|
DocSidebarCategory = ({ item, depth }) => {
|
|
35156
34585
|
const [expanded, setExpanded] = useState(
|
|
35157
34586
|
() => item.items?.some(function hasActive(child) {
|
|
@@ -35258,7 +34687,6 @@ var init_DocTOC = __esm({
|
|
|
35258
34687
|
init_Box();
|
|
35259
34688
|
init_Stack();
|
|
35260
34689
|
init_Typography();
|
|
35261
|
-
init_useTranslate();
|
|
35262
34690
|
DocTOC = ({
|
|
35263
34691
|
items,
|
|
35264
34692
|
activeId,
|
|
@@ -35993,7 +35421,6 @@ var init_Header = __esm({
|
|
|
35993
35421
|
init_Stack();
|
|
35994
35422
|
init_Typography();
|
|
35995
35423
|
init_cn();
|
|
35996
|
-
init_useTranslate();
|
|
35997
35424
|
lookStyles8 = {
|
|
35998
35425
|
"compact-bar": "",
|
|
35999
35426
|
hero: "py-section min-h-[200px] [&_h1]:text-display-1",
|
|
@@ -36313,7 +35740,6 @@ var init_Sidebar = __esm({
|
|
|
36313
35740
|
init_Typography();
|
|
36314
35741
|
init_cn();
|
|
36315
35742
|
init_useEventBus();
|
|
36316
|
-
init_useTranslate();
|
|
36317
35743
|
SidebarNavItem = ({ item, collapsed }) => {
|
|
36318
35744
|
const Icon3 = item.icon;
|
|
36319
35745
|
const isActive = item.active ?? item.isActive;
|
|
@@ -36567,7 +35993,6 @@ var init_WizardContainer = __esm({
|
|
|
36567
35993
|
init_Stack();
|
|
36568
35994
|
init_Icon();
|
|
36569
35995
|
init_cn();
|
|
36570
|
-
init_useTranslate();
|
|
36571
35996
|
WizardContainer = ({
|
|
36572
35997
|
steps,
|
|
36573
35998
|
currentStep: controlledStep,
|
|
@@ -37141,7 +36566,6 @@ var init_SignaturePad = __esm({
|
|
|
37141
36566
|
init_LoadingState();
|
|
37142
36567
|
init_ErrorState();
|
|
37143
36568
|
init_useEventBus();
|
|
37144
|
-
init_useTranslate();
|
|
37145
36569
|
SignaturePad = ({
|
|
37146
36570
|
label,
|
|
37147
36571
|
helperText,
|
|
@@ -37335,7 +36759,6 @@ var init_DocumentViewer = __esm({
|
|
|
37335
36759
|
init_EmptyState();
|
|
37336
36760
|
init_Tabs();
|
|
37337
36761
|
init_useEventBus();
|
|
37338
|
-
init_useTranslate();
|
|
37339
36762
|
DocumentViewer = ({
|
|
37340
36763
|
title,
|
|
37341
36764
|
src,
|
|
@@ -37540,7 +36963,6 @@ var init_GraphCanvas = __esm({
|
|
|
37540
36963
|
init_ErrorState();
|
|
37541
36964
|
init_EmptyState();
|
|
37542
36965
|
init_useEventBus();
|
|
37543
|
-
init_useTranslate();
|
|
37544
36966
|
GROUP_COLORS2 = [
|
|
37545
36967
|
"var(--color-primary)",
|
|
37546
36968
|
"var(--color-success)",
|
|
@@ -38278,7 +37700,6 @@ var init_DataTable = __esm({
|
|
|
38278
37700
|
init_molecules2();
|
|
38279
37701
|
init_Icon();
|
|
38280
37702
|
init_useEventBus();
|
|
38281
|
-
init_useTranslate();
|
|
38282
37703
|
init_types3();
|
|
38283
37704
|
lookStyles9 = {
|
|
38284
37705
|
dense: "",
|
|
@@ -38425,7 +37846,6 @@ var init_DebuggerBoard = __esm({
|
|
|
38425
37846
|
"components/game/organisms/puzzles/debugger/DebuggerBoard.tsx"() {
|
|
38426
37847
|
init_atoms2();
|
|
38427
37848
|
init_useEventBus();
|
|
38428
|
-
init_useTranslate();
|
|
38429
37849
|
DebuggerBoard.displayName = "DebuggerBoard";
|
|
38430
37850
|
}
|
|
38431
37851
|
});
|
|
@@ -38596,7 +38016,6 @@ var init_DetailPanel = __esm({
|
|
|
38596
38016
|
init_cn();
|
|
38597
38017
|
init_getNestedValue();
|
|
38598
38018
|
init_useEventBus();
|
|
38599
|
-
init_useTranslate();
|
|
38600
38019
|
ReactMarkdown2 = lazy(() => import('react-markdown'));
|
|
38601
38020
|
DetailPanel = ({
|
|
38602
38021
|
title: propTitle,
|
|
@@ -39175,7 +38594,6 @@ var init_TraitStateViewer = __esm({
|
|
|
39175
38594
|
"components/game/organisms/TraitStateViewer.tsx"() {
|
|
39176
38595
|
"use client";
|
|
39177
38596
|
init_cn();
|
|
39178
|
-
init_useTranslate();
|
|
39179
38597
|
init_Box();
|
|
39180
38598
|
init_Typography();
|
|
39181
38599
|
init_Stack();
|
|
@@ -39234,7 +38652,6 @@ var init_RuleEditor = __esm({
|
|
|
39234
38652
|
"components/game/organisms/puzzles/event-handler/RuleEditor.tsx"() {
|
|
39235
38653
|
init_atoms2();
|
|
39236
38654
|
init_cn();
|
|
39237
|
-
init_useTranslate();
|
|
39238
38655
|
RuleEditor.displayName = "RuleEditor";
|
|
39239
38656
|
}
|
|
39240
38657
|
});
|
|
@@ -39309,7 +38726,6 @@ var init_ObjectRulePanel = __esm({
|
|
|
39309
38726
|
"components/game/organisms/puzzles/event-handler/ObjectRulePanel.tsx"() {
|
|
39310
38727
|
init_atoms2();
|
|
39311
38728
|
init_cn();
|
|
39312
|
-
init_useTranslate();
|
|
39313
38729
|
init_TraitStateViewer();
|
|
39314
38730
|
init_RuleEditor();
|
|
39315
38731
|
nextRuleId = 1;
|
|
@@ -39354,7 +38770,6 @@ var init_EventLog = __esm({
|
|
|
39354
38770
|
"components/game/organisms/puzzles/event-handler/EventLog.tsx"() {
|
|
39355
38771
|
init_atoms2();
|
|
39356
38772
|
init_cn();
|
|
39357
|
-
init_useTranslate();
|
|
39358
38773
|
STATUS_STYLES = {
|
|
39359
38774
|
pending: "text-muted-foreground",
|
|
39360
38775
|
active: "text-primary animate-pulse",
|
|
@@ -39568,7 +38983,6 @@ var init_EventHandlerBoard = __esm({
|
|
|
39568
38983
|
init_atoms2();
|
|
39569
38984
|
init_cn();
|
|
39570
38985
|
init_useEventBus();
|
|
39571
|
-
init_useTranslate();
|
|
39572
38986
|
init_TraitStateViewer();
|
|
39573
38987
|
init_ObjectRulePanel();
|
|
39574
38988
|
init_EventLog();
|
|
@@ -39638,7 +39052,6 @@ var init_FeatureGridOrganism = __esm({
|
|
|
39638
39052
|
"use client";
|
|
39639
39053
|
init_cn();
|
|
39640
39054
|
init_useEventBus();
|
|
39641
|
-
init_useTranslate();
|
|
39642
39055
|
init_Stack();
|
|
39643
39056
|
init_Typography();
|
|
39644
39057
|
init_FeatureGrid();
|
|
@@ -39821,7 +39234,6 @@ var init_Form = __esm({
|
|
|
39821
39234
|
init_RelationSelect();
|
|
39822
39235
|
init_Alert();
|
|
39823
39236
|
init_useEventBus();
|
|
39824
|
-
init_useTranslate();
|
|
39825
39237
|
init_debug();
|
|
39826
39238
|
layoutStyles = {
|
|
39827
39239
|
vertical: "flex flex-col",
|
|
@@ -40981,7 +40393,6 @@ var init_HeroOrganism = __esm({
|
|
|
40981
40393
|
"use client";
|
|
40982
40394
|
init_cn();
|
|
40983
40395
|
init_useEventBus();
|
|
40984
|
-
init_useTranslate();
|
|
40985
40396
|
init_HeroSection();
|
|
40986
40397
|
init_LoadingState();
|
|
40987
40398
|
init_ErrorState();
|
|
@@ -41087,7 +40498,6 @@ var LandingPageTemplate;
|
|
|
41087
40498
|
var init_LandingPageTemplate = __esm({
|
|
41088
40499
|
"components/marketing/templates/LandingPageTemplate.tsx"() {
|
|
41089
40500
|
init_cn();
|
|
41090
|
-
init_useTranslate();
|
|
41091
40501
|
init_Stack();
|
|
41092
40502
|
init_Box();
|
|
41093
40503
|
init_Container();
|
|
@@ -41287,7 +40697,6 @@ var init_List = __esm({
|
|
|
41287
40697
|
init_cn();
|
|
41288
40698
|
init_getNestedValue();
|
|
41289
40699
|
init_useEventBus();
|
|
41290
|
-
init_useTranslate();
|
|
41291
40700
|
init_types3();
|
|
41292
40701
|
STATUS_STYLES2 = {
|
|
41293
40702
|
complete: {
|
|
@@ -41782,7 +41191,6 @@ var init_MasterDetail = __esm({
|
|
|
41782
41191
|
"components/core/organisms/MasterDetail.tsx"() {
|
|
41783
41192
|
"use client";
|
|
41784
41193
|
init_DataTable();
|
|
41785
|
-
init_useTranslate();
|
|
41786
41194
|
MasterDetail.displayName = "MasterDetail";
|
|
41787
41195
|
}
|
|
41788
41196
|
});
|
|
@@ -41791,7 +41199,6 @@ var init_MasterDetailLayout = __esm({
|
|
|
41791
41199
|
"components/core/organisms/layout/MasterDetailLayout.tsx"() {
|
|
41792
41200
|
init_cn();
|
|
41793
41201
|
init_Typography();
|
|
41794
|
-
init_useTranslate();
|
|
41795
41202
|
DefaultEmptyDetail = () => {
|
|
41796
41203
|
const { t } = useTranslate();
|
|
41797
41204
|
return /* @__PURE__ */ jsx("div", { className: "flex items-center justify-center h-full border-2 border-dashed border-border", children: /* @__PURE__ */ jsx(
|
|
@@ -41852,7 +41259,6 @@ var init_MediaGallery = __esm({
|
|
|
41852
41259
|
init_ErrorState();
|
|
41853
41260
|
init_EmptyState();
|
|
41854
41261
|
init_useEventBus();
|
|
41855
|
-
init_useTranslate();
|
|
41856
41262
|
COLUMN_CLASSES = {
|
|
41857
41263
|
2: "grid-cols-2",
|
|
41858
41264
|
3: "grid-cols-2 sm:grid-cols-3",
|
|
@@ -42253,7 +41659,6 @@ var init_NegotiatorBoard = __esm({
|
|
|
42253
41659
|
"components/game/organisms/puzzles/negotiator/NegotiatorBoard.tsx"() {
|
|
42254
41660
|
init_atoms2();
|
|
42255
41661
|
init_useEventBus();
|
|
42256
|
-
init_useTranslate();
|
|
42257
41662
|
NegotiatorBoard.displayName = "NegotiatorBoard";
|
|
42258
41663
|
}
|
|
42259
41664
|
});
|
|
@@ -42263,7 +41668,6 @@ var init_PricingOrganism = __esm({
|
|
|
42263
41668
|
"use client";
|
|
42264
41669
|
init_cn();
|
|
42265
41670
|
init_useEventBus();
|
|
42266
|
-
init_useTranslate();
|
|
42267
41671
|
init_Stack();
|
|
42268
41672
|
init_Typography();
|
|
42269
41673
|
init_PricingGrid();
|
|
@@ -42313,7 +41717,6 @@ var PricingPageTemplate;
|
|
|
42313
41717
|
var init_PricingPageTemplate = __esm({
|
|
42314
41718
|
"components/marketing/templates/PricingPageTemplate.tsx"() {
|
|
42315
41719
|
init_cn();
|
|
42316
|
-
init_useTranslate();
|
|
42317
41720
|
init_Stack();
|
|
42318
41721
|
init_Box();
|
|
42319
41722
|
init_Container();
|
|
@@ -42877,7 +42280,6 @@ var init_TraitsTab = __esm({
|
|
|
42877
42280
|
init_Typography();
|
|
42878
42281
|
init_Stack();
|
|
42879
42282
|
init_EmptyState();
|
|
42880
|
-
init_useTranslate();
|
|
42881
42283
|
TraitsTab.displayName = "TraitsTab";
|
|
42882
42284
|
}
|
|
42883
42285
|
});
|
|
@@ -42955,7 +42357,6 @@ var init_TicksTab = __esm({
|
|
|
42955
42357
|
init_Stack();
|
|
42956
42358
|
init_Card();
|
|
42957
42359
|
init_EmptyState();
|
|
42958
|
-
init_useTranslate();
|
|
42959
42360
|
TicksTab.displayName = "TicksTab";
|
|
42960
42361
|
}
|
|
42961
42362
|
});
|
|
@@ -43029,7 +42430,6 @@ var init_EntitiesTab = __esm({
|
|
|
43029
42430
|
init_Typography();
|
|
43030
42431
|
init_Stack();
|
|
43031
42432
|
init_EmptyState();
|
|
43032
|
-
init_useTranslate();
|
|
43033
42433
|
EntitiesTab.displayName = "EntitiesTab";
|
|
43034
42434
|
}
|
|
43035
42435
|
});
|
|
@@ -43146,7 +42546,6 @@ var init_EventFlowTab = __esm({
|
|
|
43146
42546
|
init_Button();
|
|
43147
42547
|
init_Checkbox();
|
|
43148
42548
|
init_EmptyState();
|
|
43149
|
-
init_useTranslate();
|
|
43150
42549
|
TYPE_BADGES = {
|
|
43151
42550
|
trait: { variant: "primary", icon: "\u{1F504}" },
|
|
43152
42551
|
tick: { variant: "warning", icon: "\u23F1\uFE0F" },
|
|
@@ -43241,7 +42640,6 @@ var init_GuardsPanel = __esm({
|
|
|
43241
42640
|
init_ButtonGroup();
|
|
43242
42641
|
init_Button();
|
|
43243
42642
|
init_EmptyState();
|
|
43244
|
-
init_useTranslate();
|
|
43245
42643
|
GuardsPanel.displayName = "GuardsPanel";
|
|
43246
42644
|
}
|
|
43247
42645
|
});
|
|
@@ -43317,7 +42715,6 @@ var init_VerificationTab = __esm({
|
|
|
43317
42715
|
init_Typography();
|
|
43318
42716
|
init_Stack();
|
|
43319
42717
|
init_EmptyState();
|
|
43320
|
-
init_useTranslate();
|
|
43321
42718
|
STATUS_CONFIG = {
|
|
43322
42719
|
pass: { variant: "success", icon: "\u2713", label: "PASS" },
|
|
43323
42720
|
fail: { variant: "danger", icon: "\u2717", label: "FAIL" },
|
|
@@ -43453,7 +42850,6 @@ var init_TransitionTimeline = __esm({
|
|
|
43453
42850
|
init_Typography();
|
|
43454
42851
|
init_EmptyState();
|
|
43455
42852
|
init_Checkbox();
|
|
43456
|
-
init_useTranslate();
|
|
43457
42853
|
EFFECT_STATUS_VARIANT = {
|
|
43458
42854
|
executed: "success",
|
|
43459
42855
|
failed: "danger",
|
|
@@ -43543,7 +42939,6 @@ var init_ServerBridgeTab = __esm({
|
|
|
43543
42939
|
init_Stack();
|
|
43544
42940
|
init_Card();
|
|
43545
42941
|
init_EmptyState();
|
|
43546
|
-
init_useTranslate();
|
|
43547
42942
|
ServerBridgeTab.displayName = "ServerBridgeTab";
|
|
43548
42943
|
}
|
|
43549
42944
|
});
|
|
@@ -43708,7 +43103,6 @@ var init_EventDispatcherTab = __esm({
|
|
|
43708
43103
|
init_Stack();
|
|
43709
43104
|
init_EmptyState();
|
|
43710
43105
|
init_useEventBus();
|
|
43711
|
-
init_useTranslate();
|
|
43712
43106
|
EventDispatcherTab.displayName = "EventDispatcherTab";
|
|
43713
43107
|
}
|
|
43714
43108
|
});
|
|
@@ -44083,7 +43477,6 @@ var init_RuntimeDebugger2 = __esm({
|
|
|
44083
43477
|
init_TransitionTimeline();
|
|
44084
43478
|
init_ServerBridgeTab();
|
|
44085
43479
|
init_EventDispatcherTab();
|
|
44086
|
-
init_useTranslate();
|
|
44087
43480
|
init_RuntimeDebugger();
|
|
44088
43481
|
RuntimeDebugger.displayName = "RuntimeDebugger";
|
|
44089
43482
|
}
|
|
@@ -44570,7 +43963,6 @@ var init_SequencerBoard = __esm({
|
|
|
44570
43963
|
init_atoms2();
|
|
44571
43964
|
init_cn();
|
|
44572
43965
|
init_useEventBus();
|
|
44573
|
-
init_useTranslate();
|
|
44574
43966
|
init_TraitStateViewer();
|
|
44575
43967
|
init_SequenceBar();
|
|
44576
43968
|
init_ActionPalette();
|
|
@@ -44589,7 +43981,6 @@ var init_ShowcaseOrganism = __esm({
|
|
|
44589
43981
|
"use client";
|
|
44590
43982
|
init_cn();
|
|
44591
43983
|
init_useEventBus();
|
|
44592
|
-
init_useTranslate();
|
|
44593
43984
|
init_Stack();
|
|
44594
43985
|
init_Typography();
|
|
44595
43986
|
init_SimpleGrid();
|
|
@@ -45148,7 +44539,6 @@ var init_SimulatorBoard = __esm({
|
|
|
45148
44539
|
"components/game/organisms/puzzles/simulator/SimulatorBoard.tsx"() {
|
|
45149
44540
|
init_atoms2();
|
|
45150
44541
|
init_useEventBus();
|
|
45151
|
-
init_useTranslate();
|
|
45152
44542
|
SimulatorBoard.displayName = "SimulatorBoard";
|
|
45153
44543
|
}
|
|
45154
44544
|
});
|
|
@@ -45253,7 +44643,6 @@ var init_StatCard = __esm({
|
|
|
45253
44643
|
init_Button();
|
|
45254
44644
|
init_Sparkline();
|
|
45255
44645
|
init_useEventBus();
|
|
45256
|
-
init_useTranslate();
|
|
45257
44646
|
init_Icon();
|
|
45258
44647
|
StatCard = ({
|
|
45259
44648
|
label: propLabel,
|
|
@@ -45609,7 +44998,6 @@ var init_VariablePanel = __esm({
|
|
|
45609
44998
|
"components/game/organisms/puzzles/state-architect/VariablePanel.tsx"() {
|
|
45610
44999
|
init_atoms2();
|
|
45611
45000
|
init_cn();
|
|
45612
|
-
init_useTranslate();
|
|
45613
45001
|
VariablePanel.displayName = "VariablePanel";
|
|
45614
45002
|
}
|
|
45615
45003
|
});
|
|
@@ -45926,7 +45314,6 @@ var init_StateArchitectBoard = __esm({
|
|
|
45926
45314
|
init_atoms2();
|
|
45927
45315
|
init_cn();
|
|
45928
45316
|
init_useEventBus();
|
|
45929
|
-
init_useTranslate();
|
|
45930
45317
|
init_TraitStateViewer();
|
|
45931
45318
|
init_StateNode();
|
|
45932
45319
|
init_TransitionArrow();
|
|
@@ -45946,7 +45333,6 @@ var init_StatsOrganism = __esm({
|
|
|
45946
45333
|
"components/marketing/organisms/StatsOrganism.tsx"() {
|
|
45947
45334
|
"use client";
|
|
45948
45335
|
init_cn();
|
|
45949
|
-
init_useTranslate();
|
|
45950
45336
|
init_StatsGrid();
|
|
45951
45337
|
init_LoadingState();
|
|
45952
45338
|
init_ErrorState();
|
|
@@ -45989,7 +45375,6 @@ var init_StepFlowOrganism = __esm({
|
|
|
45989
45375
|
"components/core/organisms/StepFlowOrganism.tsx"() {
|
|
45990
45376
|
"use client";
|
|
45991
45377
|
init_cn();
|
|
45992
|
-
init_useTranslate();
|
|
45993
45378
|
init_Stack();
|
|
45994
45379
|
init_Typography();
|
|
45995
45380
|
init_StepFlow();
|
|
@@ -46159,7 +45544,6 @@ var init_TeamOrganism = __esm({
|
|
|
46159
45544
|
"components/marketing/organisms/TeamOrganism.tsx"() {
|
|
46160
45545
|
"use client";
|
|
46161
45546
|
init_cn();
|
|
46162
|
-
init_useTranslate();
|
|
46163
45547
|
init_Stack();
|
|
46164
45548
|
init_Typography();
|
|
46165
45549
|
init_SimpleGrid();
|
|
@@ -46217,7 +45601,6 @@ var init_Timeline = __esm({
|
|
|
46217
45601
|
init_LoadingState();
|
|
46218
45602
|
init_ErrorState();
|
|
46219
45603
|
init_EmptyState();
|
|
46220
|
-
init_useTranslate();
|
|
46221
45604
|
lookStyles10 = {
|
|
46222
45605
|
"vertical-compact": "gap-1 [&>*]:py-1",
|
|
46223
45606
|
"vertical-spacious": "",
|
|
@@ -48289,7 +47672,6 @@ var init_UISlotRenderer = __esm({
|
|
|
48289
47672
|
init_Box();
|
|
48290
47673
|
init_Typography();
|
|
48291
47674
|
init_useEventBus();
|
|
48292
|
-
init_useTranslate();
|
|
48293
47675
|
init_slot_types();
|
|
48294
47676
|
init_cn();
|
|
48295
47677
|
init_ErrorBoundary();
|