@almadar/ui 5.122.11 → 5.122.13
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 +206 -10
- package/dist/avl/index.js +177 -10
- package/dist/components/index.cjs +212 -12
- package/dist/components/index.d.cts +17 -8
- package/dist/components/index.d.ts +17 -8
- package/dist/components/index.js +183 -13
- package/dist/providers/index.cjs +206 -10
- package/dist/providers/index.js +177 -10
- package/dist/runtime/index.cjs +206 -10
- package/dist/runtime/index.js +177 -10
- package/package.json +1 -1
|
@@ -33,6 +33,35 @@ var langDiff = require('react-syntax-highlighter/dist/esm/languages/prism/diff.j
|
|
|
33
33
|
var langToml = require('react-syntax-highlighter/dist/esm/languages/prism/toml.js');
|
|
34
34
|
var langGo = require('react-syntax-highlighter/dist/esm/languages/prism/go.js');
|
|
35
35
|
var langGraphql = require('react-syntax-highlighter/dist/esm/languages/prism/graphql.js');
|
|
36
|
+
var langClojure = require('react-syntax-highlighter/dist/esm/languages/prism/clojure.js');
|
|
37
|
+
var langHaskell = require('react-syntax-highlighter/dist/esm/languages/prism/haskell.js');
|
|
38
|
+
var langLisp = require('react-syntax-highlighter/dist/esm/languages/prism/lisp.js');
|
|
39
|
+
var langScheme = require('react-syntax-highlighter/dist/esm/languages/prism/scheme.js');
|
|
40
|
+
var langScala = require('react-syntax-highlighter/dist/esm/languages/prism/scala.js');
|
|
41
|
+
var langElixir = require('react-syntax-highlighter/dist/esm/languages/prism/elixir.js');
|
|
42
|
+
var langErlang = require('react-syntax-highlighter/dist/esm/languages/prism/erlang.js');
|
|
43
|
+
var langElm = require('react-syntax-highlighter/dist/esm/languages/prism/elm.js');
|
|
44
|
+
var langFsharp = require('react-syntax-highlighter/dist/esm/languages/prism/fsharp.js');
|
|
45
|
+
var langOcaml = require('react-syntax-highlighter/dist/esm/languages/prism/ocaml.js');
|
|
46
|
+
var langJava = require('react-syntax-highlighter/dist/esm/languages/prism/java.js');
|
|
47
|
+
var langC = require('react-syntax-highlighter/dist/esm/languages/prism/c.js');
|
|
48
|
+
var langCpp = require('react-syntax-highlighter/dist/esm/languages/prism/cpp.js');
|
|
49
|
+
var langCsharp = require('react-syntax-highlighter/dist/esm/languages/prism/csharp.js');
|
|
50
|
+
var langObjectivec = require('react-syntax-highlighter/dist/esm/languages/prism/objectivec.js');
|
|
51
|
+
var langPhp = require('react-syntax-highlighter/dist/esm/languages/prism/php.js');
|
|
52
|
+
var langRuby = require('react-syntax-highlighter/dist/esm/languages/prism/ruby.js');
|
|
53
|
+
var langSwift = require('react-syntax-highlighter/dist/esm/languages/prism/swift.js');
|
|
54
|
+
var langKotlin = require('react-syntax-highlighter/dist/esm/languages/prism/kotlin.js');
|
|
55
|
+
var langLua = require('react-syntax-highlighter/dist/esm/languages/prism/lua.js');
|
|
56
|
+
var langR = require('react-syntax-highlighter/dist/esm/languages/prism/r.js');
|
|
57
|
+
var langDart = require('react-syntax-highlighter/dist/esm/languages/prism/dart.js');
|
|
58
|
+
var langJulia = require('react-syntax-highlighter/dist/esm/languages/prism/julia.js');
|
|
59
|
+
var langFortran = require('react-syntax-highlighter/dist/esm/languages/prism/fortran.js');
|
|
60
|
+
var langPerl = require('react-syntax-highlighter/dist/esm/languages/prism/perl.js');
|
|
61
|
+
var langPowershell = require('react-syntax-highlighter/dist/esm/languages/prism/powershell.js');
|
|
62
|
+
var langMakefile = require('react-syntax-highlighter/dist/esm/languages/prism/makefile.js');
|
|
63
|
+
var langNginx = require('react-syntax-highlighter/dist/esm/languages/prism/nginx.js');
|
|
64
|
+
var langIni = require('react-syntax-highlighter/dist/esm/languages/prism/ini.js');
|
|
36
65
|
var ReactMarkdown = require('react-markdown');
|
|
37
66
|
var remarkGfm = require('remark-gfm');
|
|
38
67
|
var remarkMath = require('remark-math');
|
|
@@ -87,6 +116,35 @@ var langDiff__default = /*#__PURE__*/_interopDefault(langDiff);
|
|
|
87
116
|
var langToml__default = /*#__PURE__*/_interopDefault(langToml);
|
|
88
117
|
var langGo__default = /*#__PURE__*/_interopDefault(langGo);
|
|
89
118
|
var langGraphql__default = /*#__PURE__*/_interopDefault(langGraphql);
|
|
119
|
+
var langClojure__default = /*#__PURE__*/_interopDefault(langClojure);
|
|
120
|
+
var langHaskell__default = /*#__PURE__*/_interopDefault(langHaskell);
|
|
121
|
+
var langLisp__default = /*#__PURE__*/_interopDefault(langLisp);
|
|
122
|
+
var langScheme__default = /*#__PURE__*/_interopDefault(langScheme);
|
|
123
|
+
var langScala__default = /*#__PURE__*/_interopDefault(langScala);
|
|
124
|
+
var langElixir__default = /*#__PURE__*/_interopDefault(langElixir);
|
|
125
|
+
var langErlang__default = /*#__PURE__*/_interopDefault(langErlang);
|
|
126
|
+
var langElm__default = /*#__PURE__*/_interopDefault(langElm);
|
|
127
|
+
var langFsharp__default = /*#__PURE__*/_interopDefault(langFsharp);
|
|
128
|
+
var langOcaml__default = /*#__PURE__*/_interopDefault(langOcaml);
|
|
129
|
+
var langJava__default = /*#__PURE__*/_interopDefault(langJava);
|
|
130
|
+
var langC__default = /*#__PURE__*/_interopDefault(langC);
|
|
131
|
+
var langCpp__default = /*#__PURE__*/_interopDefault(langCpp);
|
|
132
|
+
var langCsharp__default = /*#__PURE__*/_interopDefault(langCsharp);
|
|
133
|
+
var langObjectivec__default = /*#__PURE__*/_interopDefault(langObjectivec);
|
|
134
|
+
var langPhp__default = /*#__PURE__*/_interopDefault(langPhp);
|
|
135
|
+
var langRuby__default = /*#__PURE__*/_interopDefault(langRuby);
|
|
136
|
+
var langSwift__default = /*#__PURE__*/_interopDefault(langSwift);
|
|
137
|
+
var langKotlin__default = /*#__PURE__*/_interopDefault(langKotlin);
|
|
138
|
+
var langLua__default = /*#__PURE__*/_interopDefault(langLua);
|
|
139
|
+
var langR__default = /*#__PURE__*/_interopDefault(langR);
|
|
140
|
+
var langDart__default = /*#__PURE__*/_interopDefault(langDart);
|
|
141
|
+
var langJulia__default = /*#__PURE__*/_interopDefault(langJulia);
|
|
142
|
+
var langFortran__default = /*#__PURE__*/_interopDefault(langFortran);
|
|
143
|
+
var langPerl__default = /*#__PURE__*/_interopDefault(langPerl);
|
|
144
|
+
var langPowershell__default = /*#__PURE__*/_interopDefault(langPowershell);
|
|
145
|
+
var langMakefile__default = /*#__PURE__*/_interopDefault(langMakefile);
|
|
146
|
+
var langNginx__default = /*#__PURE__*/_interopDefault(langNginx);
|
|
147
|
+
var langIni__default = /*#__PURE__*/_interopDefault(langIni);
|
|
90
148
|
var ReactMarkdown__default = /*#__PURE__*/_interopDefault(ReactMarkdown);
|
|
91
149
|
var remarkGfm__default = /*#__PURE__*/_interopDefault(remarkGfm);
|
|
92
150
|
var remarkMath__default = /*#__PURE__*/_interopDefault(remarkMath);
|
|
@@ -10023,6 +10081,22 @@ var init_EmptyState = __esm({
|
|
|
10023
10081
|
exports.EmptyState.displayName = "EmptyState";
|
|
10024
10082
|
}
|
|
10025
10083
|
});
|
|
10084
|
+
function registerCodeLanguageLoader(loader) {
|
|
10085
|
+
codeLanguageLoader = loader;
|
|
10086
|
+
}
|
|
10087
|
+
function isLanguageRegistered(lang) {
|
|
10088
|
+
return CODE_LANGUAGE_SET.has(lang) || dynamicallyLoaded.has(lang);
|
|
10089
|
+
}
|
|
10090
|
+
async function loadPrismLanguage(lang) {
|
|
10091
|
+
if (isLanguageRegistered(lang)) return;
|
|
10092
|
+
try {
|
|
10093
|
+
const grammar = codeLanguageLoader ? await codeLanguageLoader(lang) : null;
|
|
10094
|
+
if (grammar) SyntaxHighlighter__default.default.registerLanguage(lang, grammar);
|
|
10095
|
+
dynamicallyLoaded.add(lang);
|
|
10096
|
+
} catch {
|
|
10097
|
+
dynamicallyLoaded.add(lang);
|
|
10098
|
+
}
|
|
10099
|
+
}
|
|
10026
10100
|
function computeFoldRegions(code) {
|
|
10027
10101
|
const lines = code.split("\n");
|
|
10028
10102
|
const regions = [];
|
|
@@ -10058,7 +10132,8 @@ function computeFoldRegions(code) {
|
|
|
10058
10132
|
return regions.sort((a, b) => a.start - b.start);
|
|
10059
10133
|
}
|
|
10060
10134
|
function toCodeLanguage(value) {
|
|
10061
|
-
|
|
10135
|
+
if (!value) return "text";
|
|
10136
|
+
return value.toLowerCase();
|
|
10062
10137
|
}
|
|
10063
10138
|
function generateDiff(oldVal, newVal) {
|
|
10064
10139
|
const oldLines = oldVal.split("\n");
|
|
@@ -10077,7 +10152,24 @@ function generateDiff(oldVal, newVal) {
|
|
|
10077
10152
|
}
|
|
10078
10153
|
return diff;
|
|
10079
10154
|
}
|
|
10080
|
-
|
|
10155
|
+
function useLanguageReady(language) {
|
|
10156
|
+
const [ready, setReady] = React74.useState(() => isLanguageRegistered(language));
|
|
10157
|
+
React74.useEffect(() => {
|
|
10158
|
+
if (isLanguageRegistered(language)) {
|
|
10159
|
+
if (!ready) setReady(true);
|
|
10160
|
+
return;
|
|
10161
|
+
}
|
|
10162
|
+
let active = true;
|
|
10163
|
+
loadPrismLanguage(language).then(() => {
|
|
10164
|
+
if (active) setReady(true);
|
|
10165
|
+
});
|
|
10166
|
+
return () => {
|
|
10167
|
+
active = false;
|
|
10168
|
+
};
|
|
10169
|
+
}, [language]);
|
|
10170
|
+
return ready;
|
|
10171
|
+
}
|
|
10172
|
+
var dynamicallyLoaded, codeLanguageLoader, orbStyleOverrides, orbStyle, loloStyleOverrides, loloStyle, log4, CODE_LANGUAGES, CODE_LANGUAGE_SET, DIFF_STYLES, DIFF_STYLE_FALLBACK, LINE_PROPS_FN, HIDDEN_LINE_NUMBERS; exports.CodeBlock = void 0;
|
|
10081
10173
|
var init_CodeBlock = __esm({
|
|
10082
10174
|
"components/core/molecules/markdown/CodeBlock.tsx"() {
|
|
10083
10175
|
init_cn();
|
|
@@ -10116,8 +10208,62 @@ var init_CodeBlock = __esm({
|
|
|
10116
10208
|
SyntaxHighlighter__default.default.registerLanguage("toml", langToml__default.default);
|
|
10117
10209
|
SyntaxHighlighter__default.default.registerLanguage("go", langGo__default.default);
|
|
10118
10210
|
SyntaxHighlighter__default.default.registerLanguage("graphql", langGraphql__default.default);
|
|
10211
|
+
SyntaxHighlighter__default.default.registerLanguage("clojure", langClojure__default.default);
|
|
10212
|
+
SyntaxHighlighter__default.default.registerLanguage("clj", langClojure__default.default);
|
|
10213
|
+
SyntaxHighlighter__default.default.registerLanguage("edn", langClojure__default.default);
|
|
10214
|
+
SyntaxHighlighter__default.default.registerLanguage("haskell", langHaskell__default.default);
|
|
10215
|
+
SyntaxHighlighter__default.default.registerLanguage("hs", langHaskell__default.default);
|
|
10216
|
+
SyntaxHighlighter__default.default.registerLanguage("lisp", langLisp__default.default);
|
|
10217
|
+
SyntaxHighlighter__default.default.registerLanguage("scheme", langScheme__default.default);
|
|
10218
|
+
SyntaxHighlighter__default.default.registerLanguage("scala", langScala__default.default);
|
|
10219
|
+
SyntaxHighlighter__default.default.registerLanguage("elixir", langElixir__default.default);
|
|
10220
|
+
SyntaxHighlighter__default.default.registerLanguage("ex", langElixir__default.default);
|
|
10221
|
+
SyntaxHighlighter__default.default.registerLanguage("exs", langElixir__default.default);
|
|
10222
|
+
SyntaxHighlighter__default.default.registerLanguage("erlang", langErlang__default.default);
|
|
10223
|
+
SyntaxHighlighter__default.default.registerLanguage("erl", langErlang__default.default);
|
|
10224
|
+
SyntaxHighlighter__default.default.registerLanguage("elm", langElm__default.default);
|
|
10225
|
+
SyntaxHighlighter__default.default.registerLanguage("fsharp", langFsharp__default.default);
|
|
10226
|
+
SyntaxHighlighter__default.default.registerLanguage("fs", langFsharp__default.default);
|
|
10227
|
+
SyntaxHighlighter__default.default.registerLanguage("fsx", langFsharp__default.default);
|
|
10228
|
+
SyntaxHighlighter__default.default.registerLanguage("ocaml", langOcaml__default.default);
|
|
10229
|
+
SyntaxHighlighter__default.default.registerLanguage("ml", langOcaml__default.default);
|
|
10230
|
+
SyntaxHighlighter__default.default.registerLanguage("java", langJava__default.default);
|
|
10231
|
+
SyntaxHighlighter__default.default.registerLanguage("c", langC__default.default);
|
|
10232
|
+
SyntaxHighlighter__default.default.registerLanguage("cpp", langCpp__default.default);
|
|
10233
|
+
SyntaxHighlighter__default.default.registerLanguage("c++", langCpp__default.default);
|
|
10234
|
+
SyntaxHighlighter__default.default.registerLanguage("cc", langCpp__default.default);
|
|
10235
|
+
SyntaxHighlighter__default.default.registerLanguage("cxx", langCpp__default.default);
|
|
10236
|
+
SyntaxHighlighter__default.default.registerLanguage("hpp", langCpp__default.default);
|
|
10237
|
+
SyntaxHighlighter__default.default.registerLanguage("h", langCpp__default.default);
|
|
10238
|
+
SyntaxHighlighter__default.default.registerLanguage("csharp", langCsharp__default.default);
|
|
10239
|
+
SyntaxHighlighter__default.default.registerLanguage("cs", langCsharp__default.default);
|
|
10240
|
+
SyntaxHighlighter__default.default.registerLanguage("objectivec", langObjectivec__default.default);
|
|
10241
|
+
SyntaxHighlighter__default.default.registerLanguage("objc", langObjectivec__default.default);
|
|
10242
|
+
SyntaxHighlighter__default.default.registerLanguage("php", langPhp__default.default);
|
|
10243
|
+
SyntaxHighlighter__default.default.registerLanguage("ruby", langRuby__default.default);
|
|
10244
|
+
SyntaxHighlighter__default.default.registerLanguage("rb", langRuby__default.default);
|
|
10245
|
+
SyntaxHighlighter__default.default.registerLanguage("swift", langSwift__default.default);
|
|
10246
|
+
SyntaxHighlighter__default.default.registerLanguage("kotlin", langKotlin__default.default);
|
|
10247
|
+
SyntaxHighlighter__default.default.registerLanguage("kt", langKotlin__default.default);
|
|
10248
|
+
SyntaxHighlighter__default.default.registerLanguage("lua", langLua__default.default);
|
|
10249
|
+
SyntaxHighlighter__default.default.registerLanguage("r", langR__default.default);
|
|
10250
|
+
SyntaxHighlighter__default.default.registerLanguage("dart", langDart__default.default);
|
|
10251
|
+
SyntaxHighlighter__default.default.registerLanguage("julia", langJulia__default.default);
|
|
10252
|
+
SyntaxHighlighter__default.default.registerLanguage("fortran", langFortran__default.default);
|
|
10253
|
+
SyntaxHighlighter__default.default.registerLanguage("f90", langFortran__default.default);
|
|
10254
|
+
SyntaxHighlighter__default.default.registerLanguage("f95", langFortran__default.default);
|
|
10255
|
+
SyntaxHighlighter__default.default.registerLanguage("perl", langPerl__default.default);
|
|
10256
|
+
SyntaxHighlighter__default.default.registerLanguage("pl", langPerl__default.default);
|
|
10257
|
+
SyntaxHighlighter__default.default.registerLanguage("powershell", langPowershell__default.default);
|
|
10258
|
+
SyntaxHighlighter__default.default.registerLanguage("ps1", langPowershell__default.default);
|
|
10259
|
+
SyntaxHighlighter__default.default.registerLanguage("makefile", langMakefile__default.default);
|
|
10260
|
+
SyntaxHighlighter__default.default.registerLanguage("make", langMakefile__default.default);
|
|
10261
|
+
SyntaxHighlighter__default.default.registerLanguage("nginx", langNginx__default.default);
|
|
10262
|
+
SyntaxHighlighter__default.default.registerLanguage("ini", langIni__default.default);
|
|
10119
10263
|
SyntaxHighlighter__default.default.registerLanguage("orb", syntax.orbLanguage);
|
|
10120
10264
|
SyntaxHighlighter__default.default.registerLanguage("lolo", syntax.loloLanguage);
|
|
10265
|
+
dynamicallyLoaded = /* @__PURE__ */ new Set();
|
|
10266
|
+
codeLanguageLoader = null;
|
|
10121
10267
|
orbStyleOverrides = {
|
|
10122
10268
|
"orb-binding": { color: syntax.ORB_COLORS.dark.binding, fontWeight: "bold" },
|
|
10123
10269
|
"orb-effect": { color: syntax.ORB_COLORS.dark.effect, fontWeight: "bold" },
|
|
@@ -10188,6 +10334,58 @@ var init_CodeBlock = __esm({
|
|
|
10188
10334
|
"graphql",
|
|
10189
10335
|
"html",
|
|
10190
10336
|
"xml",
|
|
10337
|
+
"clojure",
|
|
10338
|
+
"clj",
|
|
10339
|
+
"edn",
|
|
10340
|
+
"haskell",
|
|
10341
|
+
"hs",
|
|
10342
|
+
"lisp",
|
|
10343
|
+
"scheme",
|
|
10344
|
+
"scala",
|
|
10345
|
+
"elixir",
|
|
10346
|
+
"ex",
|
|
10347
|
+
"exs",
|
|
10348
|
+
"erlang",
|
|
10349
|
+
"erl",
|
|
10350
|
+
"elm",
|
|
10351
|
+
"fsharp",
|
|
10352
|
+
"fs",
|
|
10353
|
+
"fsx",
|
|
10354
|
+
"ocaml",
|
|
10355
|
+
"ml",
|
|
10356
|
+
"java",
|
|
10357
|
+
"c",
|
|
10358
|
+
"cpp",
|
|
10359
|
+
"c++",
|
|
10360
|
+
"cc",
|
|
10361
|
+
"cxx",
|
|
10362
|
+
"hpp",
|
|
10363
|
+
"h",
|
|
10364
|
+
"csharp",
|
|
10365
|
+
"cs",
|
|
10366
|
+
"objectivec",
|
|
10367
|
+
"objc",
|
|
10368
|
+
"php",
|
|
10369
|
+
"ruby",
|
|
10370
|
+
"rb",
|
|
10371
|
+
"swift",
|
|
10372
|
+
"kotlin",
|
|
10373
|
+
"kt",
|
|
10374
|
+
"lua",
|
|
10375
|
+
"r",
|
|
10376
|
+
"dart",
|
|
10377
|
+
"julia",
|
|
10378
|
+
"fortran",
|
|
10379
|
+
"f90",
|
|
10380
|
+
"f95",
|
|
10381
|
+
"perl",
|
|
10382
|
+
"pl",
|
|
10383
|
+
"powershell",
|
|
10384
|
+
"ps1",
|
|
10385
|
+
"makefile",
|
|
10386
|
+
"make",
|
|
10387
|
+
"nginx",
|
|
10388
|
+
"ini",
|
|
10191
10389
|
"orb",
|
|
10192
10390
|
"lolo"
|
|
10193
10391
|
];
|
|
@@ -10233,6 +10431,7 @@ var init_CodeBlock = __esm({
|
|
|
10233
10431
|
const isOrb = language === "orb";
|
|
10234
10432
|
const isLolo = language === "lolo";
|
|
10235
10433
|
const activeStyle = isOrb ? orbStyle : isLolo ? loloStyle : dark__default.default;
|
|
10434
|
+
const languageReady = useLanguageReady(language);
|
|
10236
10435
|
const eventBus = useEventBus();
|
|
10237
10436
|
const { t } = hooks.useTranslate();
|
|
10238
10437
|
const scrollRef = React74.useRef(null);
|
|
@@ -10356,7 +10555,7 @@ var init_CodeBlock = __esm({
|
|
|
10356
10555
|
children: code
|
|
10357
10556
|
}
|
|
10358
10557
|
),
|
|
10359
|
-
[code, language, activeStyle]
|
|
10558
|
+
[code, language, activeStyle, languageReady]
|
|
10360
10559
|
);
|
|
10361
10560
|
React74.useLayoutEffect(() => {
|
|
10362
10561
|
const container = codeRef.current;
|
|
@@ -10956,10 +11155,10 @@ var init_MarkdownContent = __esm({
|
|
|
10956
11155
|
}
|
|
10957
11156
|
});
|
|
10958
11157
|
|
|
10959
|
-
//
|
|
11158
|
+
// lib/lessonSegmentUtils.ts
|
|
10960
11159
|
function parseMarkdownWithCodeBlocks(content) {
|
|
10961
11160
|
const segments = [];
|
|
10962
|
-
const codeBlockRegex = /```([\
|
|
11161
|
+
const codeBlockRegex = /```([^\n\r]*)\r?\n([\s\S]*?)```/g;
|
|
10963
11162
|
let lastIndex = 0;
|
|
10964
11163
|
let match;
|
|
10965
11164
|
while ((match = codeBlockRegex.exec(content)) !== null) {
|
|
@@ -10967,12 +11166,12 @@ function parseMarkdownWithCodeBlocks(content) {
|
|
|
10967
11166
|
if (before.trim()) {
|
|
10968
11167
|
segments.push({ type: "markdown", content: before });
|
|
10969
11168
|
}
|
|
10970
|
-
const
|
|
10971
|
-
|
|
11169
|
+
const tokens = match[1].trim().split(/\s+/).filter(Boolean);
|
|
11170
|
+
let rawLanguage = tokens[0] ?? "text";
|
|
10972
11171
|
const suffixRunnable = rawLanguage.endsWith("-runnable");
|
|
10973
|
-
const runnable =
|
|
11172
|
+
const runnable = suffixRunnable || tokens.includes("run");
|
|
10974
11173
|
const baseLanguage = suffixRunnable ? rawLanguage.slice(0, -"-runnable".length) || "text" : rawLanguage;
|
|
10975
|
-
segments.push({ type: "code", language: baseLanguage, content: match[
|
|
11174
|
+
segments.push({ type: "code", language: baseLanguage, content: match[2].trim(), runnable });
|
|
10976
11175
|
lastIndex = codeBlockRegex.lastIndex;
|
|
10977
11176
|
}
|
|
10978
11177
|
const remaining = content.slice(lastIndex);
|
|
@@ -10982,7 +11181,7 @@ function parseMarkdownWithCodeBlocks(content) {
|
|
|
10982
11181
|
return segments;
|
|
10983
11182
|
}
|
|
10984
11183
|
var init_lessonSegmentUtils = __esm({
|
|
10985
|
-
"
|
|
11184
|
+
"lib/lessonSegmentUtils.ts"() {
|
|
10986
11185
|
}
|
|
10987
11186
|
});
|
|
10988
11187
|
var BLOOM_CONFIG; exports.BloomQuizBlock = void 0;
|
|
@@ -37579,7 +37778,7 @@ var init_ReflectionBlock = __esm({
|
|
|
37579
37778
|
}
|
|
37580
37779
|
});
|
|
37581
37780
|
|
|
37582
|
-
//
|
|
37781
|
+
// lib/parseLessonSegments.ts
|
|
37583
37782
|
function extractTagContent(content, tagName) {
|
|
37584
37783
|
const closedTagRegex = new RegExp(`<${tagName}>([\\s\\S]*?)<\\/${tagName}>`, "i");
|
|
37585
37784
|
const closedMatch = content.match(closedTagRegex);
|
|
@@ -37656,7 +37855,7 @@ function parseLessonSegments(lesson) {
|
|
|
37656
37855
|
return segments;
|
|
37657
37856
|
}
|
|
37658
37857
|
var init_parseLessonSegments = __esm({
|
|
37659
|
-
"
|
|
37858
|
+
"lib/parseLessonSegments.ts"() {
|
|
37660
37859
|
init_lessonSegmentUtils();
|
|
37661
37860
|
}
|
|
37662
37861
|
});
|
|
@@ -48391,6 +48590,7 @@ exports.parseEditFocus = parseEditFocus;
|
|
|
48391
48590
|
exports.parseLessonSegments = parseLessonSegments;
|
|
48392
48591
|
exports.parseMarkdownWithCodeBlocks = parseMarkdownWithCodeBlocks;
|
|
48393
48592
|
exports.parseQueryBinding = parseQueryBinding;
|
|
48593
|
+
exports.registerCodeLanguageLoader = registerCodeLanguageLoader;
|
|
48394
48594
|
exports.resolveFieldMap = resolveFieldMap;
|
|
48395
48595
|
exports.resolveFrame = resolveFrame;
|
|
48396
48596
|
exports.resolveSheetDirection = resolveSheetDirection;
|
|
@@ -5095,20 +5095,29 @@ declare const MarkdownContent: React__default.NamedExoticComponent<MarkdownConte
|
|
|
5095
5095
|
* - Emits: UI:COPY_CODE { language, success }
|
|
5096
5096
|
*/
|
|
5097
5097
|
|
|
5098
|
+
/** A PrismLight grammar module's default export: a function that registers
|
|
5099
|
+
* token definitions on the Prism/refractor instance passed to it. */
|
|
5100
|
+
type PrismLanguageGrammar = (prism: object) => void;
|
|
5101
|
+
/** A consumer-supplied async grammar fetcher. Returns the language module
|
|
5102
|
+
* default (registered with PrismLight), or `null` if no grammar exists. */
|
|
5103
|
+
type CodeLanguageLoader = (lang: string) => Promise<PrismLanguageGrammar | null>;
|
|
5104
|
+
/** Wire up a dynamic language-grammar loader. Must be called from app source
|
|
5105
|
+
* (not a pre-bundled dependency) so the bundler can split grammars into chunks. */
|
|
5106
|
+
declare function registerCodeLanguageLoader(loader: CodeLanguageLoader | null): void;
|
|
5098
5107
|
/**
|
|
5099
5108
|
* The set of languages with a registered PrismLight grammar (above) plus the
|
|
5100
5109
|
* `.orb`/`.lolo` grammars from `@almadar/syntax`. Authoritative: an unregistered
|
|
5101
5110
|
* value renders as plain text, so this union mirrors the `registerLanguage`
|
|
5102
5111
|
* calls exactly.
|
|
5103
5112
|
*/
|
|
5104
|
-
declare const CODE_LANGUAGES: readonly ["text", "json", "javascript", "js", "typescript", "ts", "jsx", "tsx", "css", "markdown", "md", "bash", "shell", "sh", "yaml", "yml", "rust", "python", "py", "sql", "diff", "toml", "go", "graphql", "html", "xml", "orb", "lolo"];
|
|
5113
|
+
declare const CODE_LANGUAGES: readonly ["text", "json", "javascript", "js", "typescript", "ts", "jsx", "tsx", "css", "markdown", "md", "bash", "shell", "sh", "yaml", "yml", "rust", "python", "py", "sql", "diff", "toml", "go", "graphql", "html", "xml", "clojure", "clj", "edn", "haskell", "hs", "lisp", "scheme", "scala", "elixir", "ex", "exs", "erlang", "erl", "elm", "fsharp", "fs", "fsx", "ocaml", "ml", "java", "c", "cpp", "c++", "cc", "cxx", "hpp", "h", "csharp", "cs", "objectivec", "objc", "php", "ruby", "rb", "swift", "kotlin", "kt", "lua", "r", "dart", "julia", "fortran", "f90", "f95", "perl", "pl", "powershell", "ps1", "makefile", "make", "nginx", "ini", "orb", "lolo"];
|
|
5105
5114
|
type CodeLanguage = (typeof CODE_LANGUAGES)[number];
|
|
5106
5115
|
/**
|
|
5107
|
-
*
|
|
5108
|
-
*
|
|
5109
|
-
*
|
|
5116
|
+
* Normalize a fence info-string to a language id. Known languages pass through
|
|
5117
|
+
* as-is; unknown ids also pass through so they can be dynamically loaded by
|
|
5118
|
+
* `CodeBlock` (falling back to plain text if no Prism grammar exists).
|
|
5110
5119
|
*/
|
|
5111
|
-
declare function toCodeLanguage(value: string | undefined):
|
|
5120
|
+
declare function toCodeLanguage(value: string | undefined): string;
|
|
5112
5121
|
type CodeViewerMode = 'code' | 'diff';
|
|
5113
5122
|
interface DiffLine$1 {
|
|
5114
5123
|
type: 'add' | 'added' | 'remove' | 'removed' | 'context' | 'unchanged';
|
|
@@ -5129,8 +5138,8 @@ interface CodeViewerFile {
|
|
|
5129
5138
|
interface CodeBlockProps {
|
|
5130
5139
|
/** The code content to display */
|
|
5131
5140
|
code?: string;
|
|
5132
|
-
/** Programming language for syntax highlighting */
|
|
5133
|
-
language?:
|
|
5141
|
+
/** Programming language for syntax highlighting (any Prism id; loaded on demand if not pre-registered) */
|
|
5142
|
+
language?: string;
|
|
5134
5143
|
/** Show the copy button */
|
|
5135
5144
|
showCopyButton?: boolean;
|
|
5136
5145
|
/** Show the language badge */
|
|
@@ -11432,4 +11441,4 @@ interface AboutPageTemplateProps extends TemplateProps<AboutPageEntity> {
|
|
|
11432
11441
|
}
|
|
11433
11442
|
declare const AboutPageTemplate: React__default.FC<AboutPageTemplateProps>;
|
|
11434
11443
|
|
|
11435
|
-
export { ALL_PRESETS, AR_BOOK_FIELDS, type AboutPageEntity, AboutPageTemplate, type AboutPageTemplateProps, Accordion, type AccordionItem, type AccordionProps, Card as ActionCard, type CardProps as ActionCardProps, ActionPalette, type ActionPaletteProps, ActionTile, type ActionTileProps, ActivationBlock, type ActivationBlockProps, Alert, type AlertProps, type AlertVariant, type AlgorithmBar, AlgorithmCanvas, type AlgorithmCanvasProps, type AlgorithmCell, type AlgorithmPointer, AnimatedCounter, type AnimatedCounterProps, AnimatedGraphic, type AnimatedGraphicProps, AnimatedReveal, type AnimatedRevealProps, ArticleSection, type ArticleSectionProps, Aside, type AsideProps, AssetPicker, type AssetPickerProps, AtlasImage, type AtlasImageAsset, type AtlasImageProps, AtlasPanel, type AtlasPanelProps, AuthLayout, type AuthLayoutProps, Avatar, type AvatarProps, type AvatarSize, type AvatarStatus, Badge, type BadgeProps, type BadgeVariant, BehaviorView, type BehaviorViewProps, BiologyCanvas, type BiologyCanvasProps, type BiologyEdge, type BiologyNode, type BlockType, type BloomLevel, BloomQuizBlock, type BloomQuizBlockProps, BookChapterView, type BookChapterViewProps, BookCoverPage, type BookCoverPageProps, type BookFieldMap, BookNavBar, type BookNavBarProps, BookTableOfContents, type BookTableOfContentsProps, BookViewer, type BookViewerProps, Box, type BoxBg, type BoxMargin, type BoxPadding, type BoxProps, type BoxRounded, type BoxShadow, BranchingLogicBuilder, type BranchingLogicBuilderProps, type BranchingQuestion, type BranchingRule, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, CTABanner, type CTABannerBackground, type CTABannerProps, CalendarGrid, type CalendarGridProps, type CameraMode, CameraState, Canvas, Canvas2D, type Canvas2DProps, type CanvasItemShape, type CanvasItemStatus, type CanvasMode, type CanvasProps, Card$1 as Card, type CardAction, CardBody, CardContent, CardFooter, CardGrid, type CardGridGap, type CardGridProps, CardHeader, type CardProps$1 as CardProps, CardTitle, Carousel, type CarouselProps, CaseStudyCard, type CaseStudyCardProps, CaseStudyOrganism, type CaseStudyOrganismProps, Center, type CenterProps, Chart, type ChartDataPoint, ChartLegend, type ChartLegendItem, type ChartLegendProps, type ChartProps, type ChartSeries, type ChartType, ChatBar, type ChatBarProps, type ChatBarStatus, Checkbox, type CheckboxProps, type ChemistryArrow, type ChemistryAtom, type ChemistryBond, ChemistryCanvas, type ChemistryCanvasProps, ChoiceButton, type ChoiceButtonProps, Coachmark, type CoachmarkAnchor, type CoachmarkPlacement, type CoachmarkProps, CodeBlock, type CodeBlockProps, type CodeLanguage, CodeRunnerPanel, type CodeRunnerPanelProps, type CodeSimulationOutput, type CodeViewerAction, type CodeViewerFile, type CodeViewerMode, CollapsibleSection, type CollapsibleSectionProps, type Column, CommunityLinks, type CommunityLinksProps, type ConditionalContext, ConditionalWrapper, type ConditionalWrapperProps, ConfettiEffect, type ConfettiEffectProps, ConfirmDialog, type ConfirmDialogProps, type ConfirmDialogVariant, ConnectionBlock, type ConnectionBlockProps, Container, type ContainerProps, ContentRenderer, type ContentRendererProps, ContentSection, type ContentSectionBackground, type ContentSectionPadding, type ContentSectionProps, ControlButton, type ControlButtonProps, ControlGrid, type ControlGridButton, type ControlGridKind, type ControlGridProps, type CounterSize, CounterTemplate, type CounterTemplateProps, type CounterVariant, DEFAULT_LIKERT_OPTIONS, DEFAULT_MATRIX_COLUMNS, DIAMOND_TOP_Y, type DPadDirection, DashboardGrid, type DashboardGridCell, type DashboardGridProps, DashboardLayout, type DashboardLayoutProps, DataGrid, type DataGridField, type DataGridItemAction, type DataGridProps, DataList, type DataListField, type DataListItemAction, type DataListProps, DataTable, type DataTableProps, DateRangePicker, type DateRangePickerPreset, type DateRangePickerProps, DateRangeSelector, type DateRangeSelectorOption, type DateRangeSelectorProps, DayCell, type DayCellProps, type DetailField, DetailPanel, type DetailPanelProps, type DetailSection, Dialog, type DialogProps, DialogueBubble, type DialogueBubbleProps, type DiffLine$1 as DiffLine, type DiffLineType, type DiffRevision, type DisplayStateProps, Divider, type DividerOrientation, type DividerProps, DocBreadcrumb, type DocBreadcrumbItem, type DocBreadcrumbProps, DocPagination, type DocPaginationLink, type DocPaginationProps, DocSearch, type DocSearchProps, type DocSearchResult, DocSidebar, type DocSidebarItem, type DocSidebarProps, DocTOC, type DocTOCItem, type DocTOCProps, type DocumentType, DocumentViewer, type DocumentViewerProps, StateMachineView as DomStateMachineVisualizer, type DotSize, type DotState, Drawer, type DrawerPosition, type DrawerProps, type DrawerSize, DrawerSlot, type DrawerSlotProps, ELEMENT_SELECTED_EVENT, EdgeDecoration, type EdgeDecorationProps, type EdgeSide, type EdgeVariant, EditorCheckbox, type EditorCheckboxProps, type EditorMode, EditorSelect, type EditorSelectProps, EditorSlider, type EditorSliderProps, EditorTextInput, type EditorTextInputProps, EditorToolbar, type EditorToolbarProps, EmptyState, type EmptyStateProps, EntityDisplayEvents, ErrorBoundary, type ErrorBoundaryProps, ErrorState, type ErrorStateProps, FEATURE_COLORS, FEATURE_TYPES, FLOOR_HEIGHT, FacingDirection, FeatureCard, type FeatureCardProps, type FeatureDetailPageEntity, FeatureDetailPageTemplate, type FeatureDetailPageTemplateProps, type FeatureDetailSection, FeatureGrid, FeatureGridOrganism, type FeatureGridOrganismProps, type FeatureGridProps, FileTree, type FileTreeNode, type FileTreeProps, type FilterDefinition, FilterGroup, type FilterGroupProps, type FilterPayload, FilterPill, type FilterPillProps, type FilterPillSize, type FilterPillVariant, Flex, type FlexProps, FlipCard, type FlipCardProps, FlipContainer, type FlipContainerProps, type FloatingAction, FloatingActionButton, type FloatingActionButtonProps, type FooterLinkColumn, type FooterLinkItem, Form, FormActions, type FormActionsProps, FormField, type FormFieldProps, FormLayout, type FormLayoutProps, type FormProps, FormSection$1 as FormSection, FormSectionHeader, type FormSectionHeaderProps, type FormSectionProps, GameAudioToggle, type GameAudioToggleProps, GameHud, type GameHudElement, type GameHudProps, type GameHudStat, GameIcon, type GameIconProps, GameMenu, type GameMenuProps, GameShell, type GameShellProps, GenericAppTemplate, type GenericAppTemplateProps, GeometricPattern, type GeometricPatternProps, GradientDivider, type GradientDividerProps, GraphCanvas, type GraphCanvasProps, type GraphEdge, type GraphNode, type GraphSimilarity, GraphView, type GraphViewEdge, type GraphViewNode, type GraphViewProps, type GraphicAnimation, Grid, GridPicker, type GridPickerCellSize, type GridPickerProps, type GridProps, HStack, type HStackProps, Header, type HeaderProps, HealthBar, type HealthBarProps, HeroOrganism, type HeroOrganismProps, HeroSection, type HeroSectionProps, type HighlightType, IDENTITY_BOOK_FIELDS, Icon, type IconAnimation, type IconInput, IconPicker, type IconPickerProps, type IconProps, type IconSize, ImageSource, InfiniteScrollSentinel, type InfiniteScrollSentinelProps, Input, InputGroup, type InputGroupProps, type InputProps, InstallBox, type InstallBoxProps, IsometricUnit, JazariStateMachine, type JazariStateMachineProps, JsonTreeEditor, type JsonTreeEditorProps, Label, type LabelProps, type LandingPageEntity, LandingPageTemplate, type LandingPageTemplateProps, type LawReference, LawReferenceTooltip, type LawReferenceTooltipProps, LearningCanvas, type LearningCanvasProps, type LearningPhysicsBody, type LearningPhysicsConstraint, type LearningPoint, type LearningShape, type LearningShapeType, type LessonSegment, type LessonUserProgress, Lightbox, type LightboxImage, type LightboxProps, type LikertOption, LikertScale, type LikertScaleProps, LineChart, type LineChartProps, LinkAction, List, type ListItem, type ListProps, LoadingState, type LoadingStateProps, type MapMarkerData, type MapRouteData, type MapRouteWaypoint, MapView, type MapViewProps, MarkdownContent, type MarkdownContentProps, MarketingFooter, type MarketingFooterProps, MarketingStatCard, type MarketingStatCardProps, MasterDetail, MasterDetailLayout, type MasterDetailLayoutProps, type MasterDetailProps, MathCanvas, type MathCanvasProps, type MathCurve, type MathPoint, type MathVector, type MatrixColumn, MatrixQuestion, type MatrixQuestionProps, type MatrixRow, MediaGallery, type MediaGalleryProps, type MediaItem, Menu, type MenuItem, type MenuOption, type MenuProps, Meter, type MeterAction, type MeterProps, type MeterThreshold, type MeterVariant, type MixedSegment, Modal, type ModalProps, type ModalSize, ModalSlot, type ModalSlotProps, ModuleCard, type ModuleCardProps, type NavItem, Navigation, type NavigationItem, type NavigationProps, NodeSlotEditor, type NodeSlotEditorProps, NotifyListener, NumberStepper, type NumberStepperProps, type NumberStepperSize, OnboardingSpotlight, type OnboardingSpotlightProps, type OptionConstraint, OptionConstraintGroup, type OptionConstraintGroupProps, type OptionConstraintOption, StateMachineView as OrbitalStateMachineView, OrbitalVisualization, type OrbitalVisualizationProps, Overlay, type OverlayProps, type PageBreadcrumb, PageHeader, type PageHeaderProps, PageTransition, type PageTransitionProps, type PaginatePayload, Pagination, type PaginationProps, PatternTile, type PatternTileProps, type PatternVariant, PhysicsCanvas, type PhysicsCanvasProps, type PickerItem, type Platform, Point, Popover, type PopoverProps, PositionedCanvas, type PositionedCanvasProps, Presence, type PresenceAnimation, type PresenceProps, type PresenceResult, PricingCard, type PricingCardProps, PricingGrid, type PricingGridProps, PricingOrganism, type PricingOrganismProps, type PricingPageEntity, PricingPageTemplate, type PricingPageTemplateProps, ProgressBar, type ProgressBarColor, type ProgressBarProps, type ProgressBarVariant, ProgressDots, type ProgressDotsProps, type Projection, PropertyInspector, type PropertyInspectorProps, PullQuote, type PullQuoteProps, PullToRefresh, type PullToRefreshProps, type QrScanResult, QrScanner, type QrScannerProps, QuizBlock, type QuizBlockProps, Radio, type RadioProps, RangeSlider, type RangeSliderProps, type RangeSliderSize, ReflectionBlock, type ReflectionBlockProps, type RelationOption, RelationSelect, type RelationSelectProps, RepeatableFormSection, type RepeatableFormSectionProps, type RepeatableItem, ReplyTree, type ReplyTreeProps, ResolvedFrame, type RevealAnimation, type RevealTrigger, type RichBlock, RichBlockEditor, type RichBlockEditorProps, type RowAction, type RuleDefinition, type RuleOption, RuntimeDebugger, type RuntimeDebuggerProps, SHEET_COLUMNS, SPRITE_SHEET_LAYOUT, ScaledDiagram, type ScaledDiagramProps, ScoreDisplay, type ScoreDisplayProps, SearchInput, type SearchInputProps, type SearchPayload, Section, SectionHeader, type SectionHeaderProps, type SectionProps, SegmentRenderer, type SegmentRendererProps, Select, type SelectOption, type SelectOptionGroup, type SelectPayload, type SelectProps, SequenceBar, type SequenceBarProps, ServiceCatalog, type ServiceCatalogItem, type ServiceCatalogProps, ShowcaseCard, type ShowcaseCardProps, ShowcaseOrganism, type ShowcaseOrganismProps, SidePanel, type SidePanelProps, type SidePlayer, Sidebar, type SidebarItem, type SidebarProps, SignaturePad, type SignaturePadProps, SimpleGrid, type SimpleGridProps, Skeleton, type SkeletonProps, type SkeletonVariant, SlotContent, SlotContentRenderer, type SlotItemData, SocialProof, type SocialProofItem, type SocialProofProps, type SortPayload, SortableList, type SortableListProps, Spacer, type SpacerProps, type SpacerSize, Sparkline, type SparklineColor, type SparklineProps, Spinner, type SpinnerProps, Split, SplitPane, type SplitPaneProps, type SplitProps, SplitSection, type SplitSectionProps, type SpotlightStep, SpriteFrameDims, SpriteSheetUrls, Stack, type StackAlign, type StackDirection, type StackGap, type StackJustify, type StackProps, StarRating, type StarRatingPrecision, type StarRatingProps, type StarRatingSize, StatBadge, type StatBadgeProps, StatCard, type StatCardProps, type StatCardSize, StatDisplay, type StatDisplayProps, StateGraph, type StateGraphProps, type StateGraphTransition, StateJsonView, type StateJsonViewProps, StateMachineView, type StateMachineViewProps, StateNode, type StateNodeProps, StatsGrid, type StatsGridProps, StatsOrganism, type StatsOrganismProps, StatusBar, type StatusBarProps, StatusDot, type StatusDotProps, type StatusDotSize, type StatusDotStatus, StepFlow, StepFlowOrganism, type StepFlowOrganismProps, type StepFlowProps, type StepItemProps, SubagentTracePanel, type SubagentTracePanelProps, SvgBranch, type SvgBranchProps, SvgConnection, type SvgConnectionProps, SvgFlow, type SvgFlowProps, SvgGrid, type SvgGridProps, SvgLobe, type SvgLobeProps, SvgMesh, type SvgMeshProps, SvgMorph, type SvgMorphProps, SvgNode, type SvgNodeProps, SvgPulse, type SvgPulseProps, SvgRing, type SvgRingProps, SvgShield, type SvgShieldProps, SvgStack, type SvgStackProps, type SwipeAction, SwipeableRow, type SwipeableRowProps, Switch, type SwitchProps, TERRAIN_COLORS, TILE_HEIGHT, TILE_WIDTH, type TabDefinition, type TabItem, TabbedContainer, type TabbedContainerProps, TableView, type TableViewColumn, type TableViewProps, Tabs, type TabsProps, TagCloud, type TagCloudItem, type TagCloudProps, TagInput, type TagInputProps, TeamCard, type TeamCardProps, TeamOrganism, type TeamOrganismProps, type TeamUnitTraits, type TemplateProps, TerrainPalette, type TerrainPaletteProps, TextHighlight, type TextHighlightProps, Textarea, type TextareaProps, ThemeToggle, type ThemeToggleProps, type TileCoord, type TileLayout, TimeSlotCell, type TimeSlotCellProps, Timeline, type TimelineItem, type TimelineItemStatus, type TimelineProps, TimerDisplay, type TimerDisplayProps, Toast, type ToastProps, ToastSlot, type ToastSlotProps, type ToastVariant, Tooltip, type TooltipProps, type TraceDisclosureLevel, TraitFrame, type TraitFrameProps, TraitSlot, type TraitSlotProps, type TraitStateMachineDefinition, TraitStateViewer, type TraitStateViewerProps, type TraitTransition, TransitionArrow, type TransitionArrowProps, type TransitionBundle, type TrendDirection, TrendIndicator, type TrendIndicatorProps, type TrendIndicatorSize, TypewriterText, type TypewriterTextProps, Typography, type TypographyProps, type TypographyVariant, UISlotComponent, UISlotRenderer, type UISlotRendererProps, UiError, UnitAnimationState, UploadDropZone, type UploadDropZoneProps, type UsePresenceOptions, VStack, type VStackProps, type Vec2, VersionDiff, type DiffLine as VersionDiffLine, type VersionDiffProps, ViolationAlert, type ViolationAlertProps, type ViolationRecord, VoteStack, type VoteStackProps, WizardContainer, type WizardContainerProps, WizardNavigation, type WizardNavigationProps, WizardProgress, type WizardProgressProps, type WizardProgressStep, type WizardStep, boardEntity, bool, createUnitAnimationState, getCurrentFrame, getTileDimensions, inferDirection, isoToScreen, makeAsset, makeAssetMap, mapBookData, num, objAvailableActions, objAvailableEvents, objCurrentState, objIcon, objId, objMaxRules, objName, objRules, objStates, parseEditFocus, parseLessonSegments, parseMarkdownWithCodeBlocks, pendulum, projectileMotion, resolveFieldMap, resolveFrame, resolveSheetDirection, rows, screenToIso, springOscillator, str, tickAnimationState, toCodeLanguage, transitionAnimation, unitHealth, unitPosition, unitTeam, useAnchorRect, useAtlasSliceDataUrl, useCamera, useImageCache, usePresence, useUnitSpriteAtlas, vec2 };
|
|
11444
|
+
export { ALL_PRESETS, AR_BOOK_FIELDS, type AboutPageEntity, AboutPageTemplate, type AboutPageTemplateProps, Accordion, type AccordionItem, type AccordionProps, Card as ActionCard, type CardProps as ActionCardProps, ActionPalette, type ActionPaletteProps, ActionTile, type ActionTileProps, ActivationBlock, type ActivationBlockProps, Alert, type AlertProps, type AlertVariant, type AlgorithmBar, AlgorithmCanvas, type AlgorithmCanvasProps, type AlgorithmCell, type AlgorithmPointer, AnimatedCounter, type AnimatedCounterProps, AnimatedGraphic, type AnimatedGraphicProps, AnimatedReveal, type AnimatedRevealProps, ArticleSection, type ArticleSectionProps, Aside, type AsideProps, AssetPicker, type AssetPickerProps, AtlasImage, type AtlasImageAsset, type AtlasImageProps, AtlasPanel, type AtlasPanelProps, AuthLayout, type AuthLayoutProps, Avatar, type AvatarProps, type AvatarSize, type AvatarStatus, Badge, type BadgeProps, type BadgeVariant, BehaviorView, type BehaviorViewProps, BiologyCanvas, type BiologyCanvasProps, type BiologyEdge, type BiologyNode, type BlockType, type BloomLevel, BloomQuizBlock, type BloomQuizBlockProps, BookChapterView, type BookChapterViewProps, BookCoverPage, type BookCoverPageProps, type BookFieldMap, BookNavBar, type BookNavBarProps, BookTableOfContents, type BookTableOfContentsProps, BookViewer, type BookViewerProps, Box, type BoxBg, type BoxMargin, type BoxPadding, type BoxProps, type BoxRounded, type BoxShadow, BranchingLogicBuilder, type BranchingLogicBuilderProps, type BranchingQuestion, type BranchingRule, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, CTABanner, type CTABannerBackground, type CTABannerProps, CalendarGrid, type CalendarGridProps, type CameraMode, CameraState, Canvas, Canvas2D, type Canvas2DProps, type CanvasItemShape, type CanvasItemStatus, type CanvasMode, type CanvasProps, Card$1 as Card, type CardAction, CardBody, CardContent, CardFooter, CardGrid, type CardGridGap, type CardGridProps, CardHeader, type CardProps$1 as CardProps, CardTitle, Carousel, type CarouselProps, CaseStudyCard, type CaseStudyCardProps, CaseStudyOrganism, type CaseStudyOrganismProps, Center, type CenterProps, Chart, type ChartDataPoint, ChartLegend, type ChartLegendItem, type ChartLegendProps, type ChartProps, type ChartSeries, type ChartType, ChatBar, type ChatBarProps, type ChatBarStatus, Checkbox, type CheckboxProps, type ChemistryArrow, type ChemistryAtom, type ChemistryBond, ChemistryCanvas, type ChemistryCanvasProps, ChoiceButton, type ChoiceButtonProps, Coachmark, type CoachmarkAnchor, type CoachmarkPlacement, type CoachmarkProps, CodeBlock, type CodeBlockProps, type CodeLanguage, type CodeLanguageLoader, CodeRunnerPanel, type CodeRunnerPanelProps, type CodeSimulationOutput, type CodeViewerAction, type CodeViewerFile, type CodeViewerMode, CollapsibleSection, type CollapsibleSectionProps, type Column, CommunityLinks, type CommunityLinksProps, type ConditionalContext, ConditionalWrapper, type ConditionalWrapperProps, ConfettiEffect, type ConfettiEffectProps, ConfirmDialog, type ConfirmDialogProps, type ConfirmDialogVariant, ConnectionBlock, type ConnectionBlockProps, Container, type ContainerProps, ContentRenderer, type ContentRendererProps, ContentSection, type ContentSectionBackground, type ContentSectionPadding, type ContentSectionProps, ControlButton, type ControlButtonProps, ControlGrid, type ControlGridButton, type ControlGridKind, type ControlGridProps, type CounterSize, CounterTemplate, type CounterTemplateProps, type CounterVariant, DEFAULT_LIKERT_OPTIONS, DEFAULT_MATRIX_COLUMNS, DIAMOND_TOP_Y, type DPadDirection, DashboardGrid, type DashboardGridCell, type DashboardGridProps, DashboardLayout, type DashboardLayoutProps, DataGrid, type DataGridField, type DataGridItemAction, type DataGridProps, DataList, type DataListField, type DataListItemAction, type DataListProps, DataTable, type DataTableProps, DateRangePicker, type DateRangePickerPreset, type DateRangePickerProps, DateRangeSelector, type DateRangeSelectorOption, type DateRangeSelectorProps, DayCell, type DayCellProps, type DetailField, DetailPanel, type DetailPanelProps, type DetailSection, Dialog, type DialogProps, DialogueBubble, type DialogueBubbleProps, type DiffLine$1 as DiffLine, type DiffLineType, type DiffRevision, type DisplayStateProps, Divider, type DividerOrientation, type DividerProps, DocBreadcrumb, type DocBreadcrumbItem, type DocBreadcrumbProps, DocPagination, type DocPaginationLink, type DocPaginationProps, DocSearch, type DocSearchProps, type DocSearchResult, DocSidebar, type DocSidebarItem, type DocSidebarProps, DocTOC, type DocTOCItem, type DocTOCProps, type DocumentType, DocumentViewer, type DocumentViewerProps, StateMachineView as DomStateMachineVisualizer, type DotSize, type DotState, Drawer, type DrawerPosition, type DrawerProps, type DrawerSize, DrawerSlot, type DrawerSlotProps, ELEMENT_SELECTED_EVENT, EdgeDecoration, type EdgeDecorationProps, type EdgeSide, type EdgeVariant, EditorCheckbox, type EditorCheckboxProps, type EditorMode, EditorSelect, type EditorSelectProps, EditorSlider, type EditorSliderProps, EditorTextInput, type EditorTextInputProps, EditorToolbar, type EditorToolbarProps, EmptyState, type EmptyStateProps, EntityDisplayEvents, ErrorBoundary, type ErrorBoundaryProps, ErrorState, type ErrorStateProps, FEATURE_COLORS, FEATURE_TYPES, FLOOR_HEIGHT, FacingDirection, FeatureCard, type FeatureCardProps, type FeatureDetailPageEntity, FeatureDetailPageTemplate, type FeatureDetailPageTemplateProps, type FeatureDetailSection, FeatureGrid, FeatureGridOrganism, type FeatureGridOrganismProps, type FeatureGridProps, FileTree, type FileTreeNode, type FileTreeProps, type FilterDefinition, FilterGroup, type FilterGroupProps, type FilterPayload, FilterPill, type FilterPillProps, type FilterPillSize, type FilterPillVariant, Flex, type FlexProps, FlipCard, type FlipCardProps, FlipContainer, type FlipContainerProps, type FloatingAction, FloatingActionButton, type FloatingActionButtonProps, type FooterLinkColumn, type FooterLinkItem, Form, FormActions, type FormActionsProps, FormField, type FormFieldProps, FormLayout, type FormLayoutProps, type FormProps, FormSection$1 as FormSection, FormSectionHeader, type FormSectionHeaderProps, type FormSectionProps, GameAudioToggle, type GameAudioToggleProps, GameHud, type GameHudElement, type GameHudProps, type GameHudStat, GameIcon, type GameIconProps, GameMenu, type GameMenuProps, GameShell, type GameShellProps, GenericAppTemplate, type GenericAppTemplateProps, GeometricPattern, type GeometricPatternProps, GradientDivider, type GradientDividerProps, GraphCanvas, type GraphCanvasProps, type GraphEdge, type GraphNode, type GraphSimilarity, GraphView, type GraphViewEdge, type GraphViewNode, type GraphViewProps, type GraphicAnimation, Grid, GridPicker, type GridPickerCellSize, type GridPickerProps, type GridProps, HStack, type HStackProps, Header, type HeaderProps, HealthBar, type HealthBarProps, HeroOrganism, type HeroOrganismProps, HeroSection, type HeroSectionProps, type HighlightType, IDENTITY_BOOK_FIELDS, Icon, type IconAnimation, type IconInput, IconPicker, type IconPickerProps, type IconProps, type IconSize, ImageSource, InfiniteScrollSentinel, type InfiniteScrollSentinelProps, Input, InputGroup, type InputGroupProps, type InputProps, InstallBox, type InstallBoxProps, IsometricUnit, JazariStateMachine, type JazariStateMachineProps, JsonTreeEditor, type JsonTreeEditorProps, Label, type LabelProps, type LandingPageEntity, LandingPageTemplate, type LandingPageTemplateProps, type LawReference, LawReferenceTooltip, type LawReferenceTooltipProps, LearningCanvas, type LearningCanvasProps, type LearningPhysicsBody, type LearningPhysicsConstraint, type LearningPoint, type LearningShape, type LearningShapeType, type LessonSegment, type LessonUserProgress, Lightbox, type LightboxImage, type LightboxProps, type LikertOption, LikertScale, type LikertScaleProps, LineChart, type LineChartProps, LinkAction, List, type ListItem, type ListProps, LoadingState, type LoadingStateProps, type MapMarkerData, type MapRouteData, type MapRouteWaypoint, MapView, type MapViewProps, MarkdownContent, type MarkdownContentProps, MarketingFooter, type MarketingFooterProps, MarketingStatCard, type MarketingStatCardProps, MasterDetail, MasterDetailLayout, type MasterDetailLayoutProps, type MasterDetailProps, MathCanvas, type MathCanvasProps, type MathCurve, type MathPoint, type MathVector, type MatrixColumn, MatrixQuestion, type MatrixQuestionProps, type MatrixRow, MediaGallery, type MediaGalleryProps, type MediaItem, Menu, type MenuItem, type MenuOption, type MenuProps, Meter, type MeterAction, type MeterProps, type MeterThreshold, type MeterVariant, type MixedSegment, Modal, type ModalProps, type ModalSize, ModalSlot, type ModalSlotProps, ModuleCard, type ModuleCardProps, type NavItem, Navigation, type NavigationItem, type NavigationProps, NodeSlotEditor, type NodeSlotEditorProps, NotifyListener, NumberStepper, type NumberStepperProps, type NumberStepperSize, OnboardingSpotlight, type OnboardingSpotlightProps, type OptionConstraint, OptionConstraintGroup, type OptionConstraintGroupProps, type OptionConstraintOption, StateMachineView as OrbitalStateMachineView, OrbitalVisualization, type OrbitalVisualizationProps, Overlay, type OverlayProps, type PageBreadcrumb, PageHeader, type PageHeaderProps, PageTransition, type PageTransitionProps, type PaginatePayload, Pagination, type PaginationProps, PatternTile, type PatternTileProps, type PatternVariant, PhysicsCanvas, type PhysicsCanvasProps, type PickerItem, type Platform, Point, Popover, type PopoverProps, PositionedCanvas, type PositionedCanvasProps, Presence, type PresenceAnimation, type PresenceProps, type PresenceResult, PricingCard, type PricingCardProps, PricingGrid, type PricingGridProps, PricingOrganism, type PricingOrganismProps, type PricingPageEntity, PricingPageTemplate, type PricingPageTemplateProps, type PrismLanguageGrammar, ProgressBar, type ProgressBarColor, type ProgressBarProps, type ProgressBarVariant, ProgressDots, type ProgressDotsProps, type Projection, PropertyInspector, type PropertyInspectorProps, PullQuote, type PullQuoteProps, PullToRefresh, type PullToRefreshProps, type QrScanResult, QrScanner, type QrScannerProps, QuizBlock, type QuizBlockProps, Radio, type RadioProps, RangeSlider, type RangeSliderProps, type RangeSliderSize, ReflectionBlock, type ReflectionBlockProps, type RelationOption, RelationSelect, type RelationSelectProps, RepeatableFormSection, type RepeatableFormSectionProps, type RepeatableItem, ReplyTree, type ReplyTreeProps, ResolvedFrame, type RevealAnimation, type RevealTrigger, type RichBlock, RichBlockEditor, type RichBlockEditorProps, type RowAction, type RuleDefinition, type RuleOption, RuntimeDebugger, type RuntimeDebuggerProps, SHEET_COLUMNS, SPRITE_SHEET_LAYOUT, ScaledDiagram, type ScaledDiagramProps, ScoreDisplay, type ScoreDisplayProps, SearchInput, type SearchInputProps, type SearchPayload, Section, SectionHeader, type SectionHeaderProps, type SectionProps, SegmentRenderer, type SegmentRendererProps, Select, type SelectOption, type SelectOptionGroup, type SelectPayload, type SelectProps, SequenceBar, type SequenceBarProps, ServiceCatalog, type ServiceCatalogItem, type ServiceCatalogProps, ShowcaseCard, type ShowcaseCardProps, ShowcaseOrganism, type ShowcaseOrganismProps, SidePanel, type SidePanelProps, type SidePlayer, Sidebar, type SidebarItem, type SidebarProps, SignaturePad, type SignaturePadProps, SimpleGrid, type SimpleGridProps, Skeleton, type SkeletonProps, type SkeletonVariant, SlotContent, SlotContentRenderer, type SlotItemData, SocialProof, type SocialProofItem, type SocialProofProps, type SortPayload, SortableList, type SortableListProps, Spacer, type SpacerProps, type SpacerSize, Sparkline, type SparklineColor, type SparklineProps, Spinner, type SpinnerProps, Split, SplitPane, type SplitPaneProps, type SplitProps, SplitSection, type SplitSectionProps, type SpotlightStep, SpriteFrameDims, SpriteSheetUrls, Stack, type StackAlign, type StackDirection, type StackGap, type StackJustify, type StackProps, StarRating, type StarRatingPrecision, type StarRatingProps, type StarRatingSize, StatBadge, type StatBadgeProps, StatCard, type StatCardProps, type StatCardSize, StatDisplay, type StatDisplayProps, StateGraph, type StateGraphProps, type StateGraphTransition, StateJsonView, type StateJsonViewProps, StateMachineView, type StateMachineViewProps, StateNode, type StateNodeProps, StatsGrid, type StatsGridProps, StatsOrganism, type StatsOrganismProps, StatusBar, type StatusBarProps, StatusDot, type StatusDotProps, type StatusDotSize, type StatusDotStatus, StepFlow, StepFlowOrganism, type StepFlowOrganismProps, type StepFlowProps, type StepItemProps, SubagentTracePanel, type SubagentTracePanelProps, SvgBranch, type SvgBranchProps, SvgConnection, type SvgConnectionProps, SvgFlow, type SvgFlowProps, SvgGrid, type SvgGridProps, SvgLobe, type SvgLobeProps, SvgMesh, type SvgMeshProps, SvgMorph, type SvgMorphProps, SvgNode, type SvgNodeProps, SvgPulse, type SvgPulseProps, SvgRing, type SvgRingProps, SvgShield, type SvgShieldProps, SvgStack, type SvgStackProps, type SwipeAction, SwipeableRow, type SwipeableRowProps, Switch, type SwitchProps, TERRAIN_COLORS, TILE_HEIGHT, TILE_WIDTH, type TabDefinition, type TabItem, TabbedContainer, type TabbedContainerProps, TableView, type TableViewColumn, type TableViewProps, Tabs, type TabsProps, TagCloud, type TagCloudItem, type TagCloudProps, TagInput, type TagInputProps, TeamCard, type TeamCardProps, TeamOrganism, type TeamOrganismProps, type TeamUnitTraits, type TemplateProps, TerrainPalette, type TerrainPaletteProps, TextHighlight, type TextHighlightProps, Textarea, type TextareaProps, ThemeToggle, type ThemeToggleProps, type TileCoord, type TileLayout, TimeSlotCell, type TimeSlotCellProps, Timeline, type TimelineItem, type TimelineItemStatus, type TimelineProps, TimerDisplay, type TimerDisplayProps, Toast, type ToastProps, ToastSlot, type ToastSlotProps, type ToastVariant, Tooltip, type TooltipProps, type TraceDisclosureLevel, TraitFrame, type TraitFrameProps, TraitSlot, type TraitSlotProps, type TraitStateMachineDefinition, TraitStateViewer, type TraitStateViewerProps, type TraitTransition, TransitionArrow, type TransitionArrowProps, type TransitionBundle, type TrendDirection, TrendIndicator, type TrendIndicatorProps, type TrendIndicatorSize, TypewriterText, type TypewriterTextProps, Typography, type TypographyProps, type TypographyVariant, UISlotComponent, UISlotRenderer, type UISlotRendererProps, UiError, UnitAnimationState, UploadDropZone, type UploadDropZoneProps, type UsePresenceOptions, VStack, type VStackProps, type Vec2, VersionDiff, type DiffLine as VersionDiffLine, type VersionDiffProps, ViolationAlert, type ViolationAlertProps, type ViolationRecord, VoteStack, type VoteStackProps, WizardContainer, type WizardContainerProps, WizardNavigation, type WizardNavigationProps, WizardProgress, type WizardProgressProps, type WizardProgressStep, type WizardStep, boardEntity, bool, createUnitAnimationState, getCurrentFrame, getTileDimensions, inferDirection, isoToScreen, makeAsset, makeAssetMap, mapBookData, num, objAvailableActions, objAvailableEvents, objCurrentState, objIcon, objId, objMaxRules, objName, objRules, objStates, parseEditFocus, parseLessonSegments, parseMarkdownWithCodeBlocks, pendulum, projectileMotion, registerCodeLanguageLoader, resolveFieldMap, resolveFrame, resolveSheetDirection, rows, screenToIso, springOscillator, str, tickAnimationState, toCodeLanguage, transitionAnimation, unitHealth, unitPosition, unitTeam, useAnchorRect, useAtlasSliceDataUrl, useCamera, useImageCache, usePresence, useUnitSpriteAtlas, vec2 };
|
|
@@ -5095,20 +5095,29 @@ declare const MarkdownContent: React__default.NamedExoticComponent<MarkdownConte
|
|
|
5095
5095
|
* - Emits: UI:COPY_CODE { language, success }
|
|
5096
5096
|
*/
|
|
5097
5097
|
|
|
5098
|
+
/** A PrismLight grammar module's default export: a function that registers
|
|
5099
|
+
* token definitions on the Prism/refractor instance passed to it. */
|
|
5100
|
+
type PrismLanguageGrammar = (prism: object) => void;
|
|
5101
|
+
/** A consumer-supplied async grammar fetcher. Returns the language module
|
|
5102
|
+
* default (registered with PrismLight), or `null` if no grammar exists. */
|
|
5103
|
+
type CodeLanguageLoader = (lang: string) => Promise<PrismLanguageGrammar | null>;
|
|
5104
|
+
/** Wire up a dynamic language-grammar loader. Must be called from app source
|
|
5105
|
+
* (not a pre-bundled dependency) so the bundler can split grammars into chunks. */
|
|
5106
|
+
declare function registerCodeLanguageLoader(loader: CodeLanguageLoader | null): void;
|
|
5098
5107
|
/**
|
|
5099
5108
|
* The set of languages with a registered PrismLight grammar (above) plus the
|
|
5100
5109
|
* `.orb`/`.lolo` grammars from `@almadar/syntax`. Authoritative: an unregistered
|
|
5101
5110
|
* value renders as plain text, so this union mirrors the `registerLanguage`
|
|
5102
5111
|
* calls exactly.
|
|
5103
5112
|
*/
|
|
5104
|
-
declare const CODE_LANGUAGES: readonly ["text", "json", "javascript", "js", "typescript", "ts", "jsx", "tsx", "css", "markdown", "md", "bash", "shell", "sh", "yaml", "yml", "rust", "python", "py", "sql", "diff", "toml", "go", "graphql", "html", "xml", "orb", "lolo"];
|
|
5113
|
+
declare const CODE_LANGUAGES: readonly ["text", "json", "javascript", "js", "typescript", "ts", "jsx", "tsx", "css", "markdown", "md", "bash", "shell", "sh", "yaml", "yml", "rust", "python", "py", "sql", "diff", "toml", "go", "graphql", "html", "xml", "clojure", "clj", "edn", "haskell", "hs", "lisp", "scheme", "scala", "elixir", "ex", "exs", "erlang", "erl", "elm", "fsharp", "fs", "fsx", "ocaml", "ml", "java", "c", "cpp", "c++", "cc", "cxx", "hpp", "h", "csharp", "cs", "objectivec", "objc", "php", "ruby", "rb", "swift", "kotlin", "kt", "lua", "r", "dart", "julia", "fortran", "f90", "f95", "perl", "pl", "powershell", "ps1", "makefile", "make", "nginx", "ini", "orb", "lolo"];
|
|
5105
5114
|
type CodeLanguage = (typeof CODE_LANGUAGES)[number];
|
|
5106
5115
|
/**
|
|
5107
|
-
*
|
|
5108
|
-
*
|
|
5109
|
-
*
|
|
5116
|
+
* Normalize a fence info-string to a language id. Known languages pass through
|
|
5117
|
+
* as-is; unknown ids also pass through so they can be dynamically loaded by
|
|
5118
|
+
* `CodeBlock` (falling back to plain text if no Prism grammar exists).
|
|
5110
5119
|
*/
|
|
5111
|
-
declare function toCodeLanguage(value: string | undefined):
|
|
5120
|
+
declare function toCodeLanguage(value: string | undefined): string;
|
|
5112
5121
|
type CodeViewerMode = 'code' | 'diff';
|
|
5113
5122
|
interface DiffLine$1 {
|
|
5114
5123
|
type: 'add' | 'added' | 'remove' | 'removed' | 'context' | 'unchanged';
|
|
@@ -5129,8 +5138,8 @@ interface CodeViewerFile {
|
|
|
5129
5138
|
interface CodeBlockProps {
|
|
5130
5139
|
/** The code content to display */
|
|
5131
5140
|
code?: string;
|
|
5132
|
-
/** Programming language for syntax highlighting */
|
|
5133
|
-
language?:
|
|
5141
|
+
/** Programming language for syntax highlighting (any Prism id; loaded on demand if not pre-registered) */
|
|
5142
|
+
language?: string;
|
|
5134
5143
|
/** Show the copy button */
|
|
5135
5144
|
showCopyButton?: boolean;
|
|
5136
5145
|
/** Show the language badge */
|
|
@@ -11432,4 +11441,4 @@ interface AboutPageTemplateProps extends TemplateProps<AboutPageEntity> {
|
|
|
11432
11441
|
}
|
|
11433
11442
|
declare const AboutPageTemplate: React__default.FC<AboutPageTemplateProps>;
|
|
11434
11443
|
|
|
11435
|
-
export { ALL_PRESETS, AR_BOOK_FIELDS, type AboutPageEntity, AboutPageTemplate, type AboutPageTemplateProps, Accordion, type AccordionItem, type AccordionProps, Card as ActionCard, type CardProps as ActionCardProps, ActionPalette, type ActionPaletteProps, ActionTile, type ActionTileProps, ActivationBlock, type ActivationBlockProps, Alert, type AlertProps, type AlertVariant, type AlgorithmBar, AlgorithmCanvas, type AlgorithmCanvasProps, type AlgorithmCell, type AlgorithmPointer, AnimatedCounter, type AnimatedCounterProps, AnimatedGraphic, type AnimatedGraphicProps, AnimatedReveal, type AnimatedRevealProps, ArticleSection, type ArticleSectionProps, Aside, type AsideProps, AssetPicker, type AssetPickerProps, AtlasImage, type AtlasImageAsset, type AtlasImageProps, AtlasPanel, type AtlasPanelProps, AuthLayout, type AuthLayoutProps, Avatar, type AvatarProps, type AvatarSize, type AvatarStatus, Badge, type BadgeProps, type BadgeVariant, BehaviorView, type BehaviorViewProps, BiologyCanvas, type BiologyCanvasProps, type BiologyEdge, type BiologyNode, type BlockType, type BloomLevel, BloomQuizBlock, type BloomQuizBlockProps, BookChapterView, type BookChapterViewProps, BookCoverPage, type BookCoverPageProps, type BookFieldMap, BookNavBar, type BookNavBarProps, BookTableOfContents, type BookTableOfContentsProps, BookViewer, type BookViewerProps, Box, type BoxBg, type BoxMargin, type BoxPadding, type BoxProps, type BoxRounded, type BoxShadow, BranchingLogicBuilder, type BranchingLogicBuilderProps, type BranchingQuestion, type BranchingRule, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, CTABanner, type CTABannerBackground, type CTABannerProps, CalendarGrid, type CalendarGridProps, type CameraMode, CameraState, Canvas, Canvas2D, type Canvas2DProps, type CanvasItemShape, type CanvasItemStatus, type CanvasMode, type CanvasProps, Card$1 as Card, type CardAction, CardBody, CardContent, CardFooter, CardGrid, type CardGridGap, type CardGridProps, CardHeader, type CardProps$1 as CardProps, CardTitle, Carousel, type CarouselProps, CaseStudyCard, type CaseStudyCardProps, CaseStudyOrganism, type CaseStudyOrganismProps, Center, type CenterProps, Chart, type ChartDataPoint, ChartLegend, type ChartLegendItem, type ChartLegendProps, type ChartProps, type ChartSeries, type ChartType, ChatBar, type ChatBarProps, type ChatBarStatus, Checkbox, type CheckboxProps, type ChemistryArrow, type ChemistryAtom, type ChemistryBond, ChemistryCanvas, type ChemistryCanvasProps, ChoiceButton, type ChoiceButtonProps, Coachmark, type CoachmarkAnchor, type CoachmarkPlacement, type CoachmarkProps, CodeBlock, type CodeBlockProps, type CodeLanguage, CodeRunnerPanel, type CodeRunnerPanelProps, type CodeSimulationOutput, type CodeViewerAction, type CodeViewerFile, type CodeViewerMode, CollapsibleSection, type CollapsibleSectionProps, type Column, CommunityLinks, type CommunityLinksProps, type ConditionalContext, ConditionalWrapper, type ConditionalWrapperProps, ConfettiEffect, type ConfettiEffectProps, ConfirmDialog, type ConfirmDialogProps, type ConfirmDialogVariant, ConnectionBlock, type ConnectionBlockProps, Container, type ContainerProps, ContentRenderer, type ContentRendererProps, ContentSection, type ContentSectionBackground, type ContentSectionPadding, type ContentSectionProps, ControlButton, type ControlButtonProps, ControlGrid, type ControlGridButton, type ControlGridKind, type ControlGridProps, type CounterSize, CounterTemplate, type CounterTemplateProps, type CounterVariant, DEFAULT_LIKERT_OPTIONS, DEFAULT_MATRIX_COLUMNS, DIAMOND_TOP_Y, type DPadDirection, DashboardGrid, type DashboardGridCell, type DashboardGridProps, DashboardLayout, type DashboardLayoutProps, DataGrid, type DataGridField, type DataGridItemAction, type DataGridProps, DataList, type DataListField, type DataListItemAction, type DataListProps, DataTable, type DataTableProps, DateRangePicker, type DateRangePickerPreset, type DateRangePickerProps, DateRangeSelector, type DateRangeSelectorOption, type DateRangeSelectorProps, DayCell, type DayCellProps, type DetailField, DetailPanel, type DetailPanelProps, type DetailSection, Dialog, type DialogProps, DialogueBubble, type DialogueBubbleProps, type DiffLine$1 as DiffLine, type DiffLineType, type DiffRevision, type DisplayStateProps, Divider, type DividerOrientation, type DividerProps, DocBreadcrumb, type DocBreadcrumbItem, type DocBreadcrumbProps, DocPagination, type DocPaginationLink, type DocPaginationProps, DocSearch, type DocSearchProps, type DocSearchResult, DocSidebar, type DocSidebarItem, type DocSidebarProps, DocTOC, type DocTOCItem, type DocTOCProps, type DocumentType, DocumentViewer, type DocumentViewerProps, StateMachineView as DomStateMachineVisualizer, type DotSize, type DotState, Drawer, type DrawerPosition, type DrawerProps, type DrawerSize, DrawerSlot, type DrawerSlotProps, ELEMENT_SELECTED_EVENT, EdgeDecoration, type EdgeDecorationProps, type EdgeSide, type EdgeVariant, EditorCheckbox, type EditorCheckboxProps, type EditorMode, EditorSelect, type EditorSelectProps, EditorSlider, type EditorSliderProps, EditorTextInput, type EditorTextInputProps, EditorToolbar, type EditorToolbarProps, EmptyState, type EmptyStateProps, EntityDisplayEvents, ErrorBoundary, type ErrorBoundaryProps, ErrorState, type ErrorStateProps, FEATURE_COLORS, FEATURE_TYPES, FLOOR_HEIGHT, FacingDirection, FeatureCard, type FeatureCardProps, type FeatureDetailPageEntity, FeatureDetailPageTemplate, type FeatureDetailPageTemplateProps, type FeatureDetailSection, FeatureGrid, FeatureGridOrganism, type FeatureGridOrganismProps, type FeatureGridProps, FileTree, type FileTreeNode, type FileTreeProps, type FilterDefinition, FilterGroup, type FilterGroupProps, type FilterPayload, FilterPill, type FilterPillProps, type FilterPillSize, type FilterPillVariant, Flex, type FlexProps, FlipCard, type FlipCardProps, FlipContainer, type FlipContainerProps, type FloatingAction, FloatingActionButton, type FloatingActionButtonProps, type FooterLinkColumn, type FooterLinkItem, Form, FormActions, type FormActionsProps, FormField, type FormFieldProps, FormLayout, type FormLayoutProps, type FormProps, FormSection$1 as FormSection, FormSectionHeader, type FormSectionHeaderProps, type FormSectionProps, GameAudioToggle, type GameAudioToggleProps, GameHud, type GameHudElement, type GameHudProps, type GameHudStat, GameIcon, type GameIconProps, GameMenu, type GameMenuProps, GameShell, type GameShellProps, GenericAppTemplate, type GenericAppTemplateProps, GeometricPattern, type GeometricPatternProps, GradientDivider, type GradientDividerProps, GraphCanvas, type GraphCanvasProps, type GraphEdge, type GraphNode, type GraphSimilarity, GraphView, type GraphViewEdge, type GraphViewNode, type GraphViewProps, type GraphicAnimation, Grid, GridPicker, type GridPickerCellSize, type GridPickerProps, type GridProps, HStack, type HStackProps, Header, type HeaderProps, HealthBar, type HealthBarProps, HeroOrganism, type HeroOrganismProps, HeroSection, type HeroSectionProps, type HighlightType, IDENTITY_BOOK_FIELDS, Icon, type IconAnimation, type IconInput, IconPicker, type IconPickerProps, type IconProps, type IconSize, ImageSource, InfiniteScrollSentinel, type InfiniteScrollSentinelProps, Input, InputGroup, type InputGroupProps, type InputProps, InstallBox, type InstallBoxProps, IsometricUnit, JazariStateMachine, type JazariStateMachineProps, JsonTreeEditor, type JsonTreeEditorProps, Label, type LabelProps, type LandingPageEntity, LandingPageTemplate, type LandingPageTemplateProps, type LawReference, LawReferenceTooltip, type LawReferenceTooltipProps, LearningCanvas, type LearningCanvasProps, type LearningPhysicsBody, type LearningPhysicsConstraint, type LearningPoint, type LearningShape, type LearningShapeType, type LessonSegment, type LessonUserProgress, Lightbox, type LightboxImage, type LightboxProps, type LikertOption, LikertScale, type LikertScaleProps, LineChart, type LineChartProps, LinkAction, List, type ListItem, type ListProps, LoadingState, type LoadingStateProps, type MapMarkerData, type MapRouteData, type MapRouteWaypoint, MapView, type MapViewProps, MarkdownContent, type MarkdownContentProps, MarketingFooter, type MarketingFooterProps, MarketingStatCard, type MarketingStatCardProps, MasterDetail, MasterDetailLayout, type MasterDetailLayoutProps, type MasterDetailProps, MathCanvas, type MathCanvasProps, type MathCurve, type MathPoint, type MathVector, type MatrixColumn, MatrixQuestion, type MatrixQuestionProps, type MatrixRow, MediaGallery, type MediaGalleryProps, type MediaItem, Menu, type MenuItem, type MenuOption, type MenuProps, Meter, type MeterAction, type MeterProps, type MeterThreshold, type MeterVariant, type MixedSegment, Modal, type ModalProps, type ModalSize, ModalSlot, type ModalSlotProps, ModuleCard, type ModuleCardProps, type NavItem, Navigation, type NavigationItem, type NavigationProps, NodeSlotEditor, type NodeSlotEditorProps, NotifyListener, NumberStepper, type NumberStepperProps, type NumberStepperSize, OnboardingSpotlight, type OnboardingSpotlightProps, type OptionConstraint, OptionConstraintGroup, type OptionConstraintGroupProps, type OptionConstraintOption, StateMachineView as OrbitalStateMachineView, OrbitalVisualization, type OrbitalVisualizationProps, Overlay, type OverlayProps, type PageBreadcrumb, PageHeader, type PageHeaderProps, PageTransition, type PageTransitionProps, type PaginatePayload, Pagination, type PaginationProps, PatternTile, type PatternTileProps, type PatternVariant, PhysicsCanvas, type PhysicsCanvasProps, type PickerItem, type Platform, Point, Popover, type PopoverProps, PositionedCanvas, type PositionedCanvasProps, Presence, type PresenceAnimation, type PresenceProps, type PresenceResult, PricingCard, type PricingCardProps, PricingGrid, type PricingGridProps, PricingOrganism, type PricingOrganismProps, type PricingPageEntity, PricingPageTemplate, type PricingPageTemplateProps, ProgressBar, type ProgressBarColor, type ProgressBarProps, type ProgressBarVariant, ProgressDots, type ProgressDotsProps, type Projection, PropertyInspector, type PropertyInspectorProps, PullQuote, type PullQuoteProps, PullToRefresh, type PullToRefreshProps, type QrScanResult, QrScanner, type QrScannerProps, QuizBlock, type QuizBlockProps, Radio, type RadioProps, RangeSlider, type RangeSliderProps, type RangeSliderSize, ReflectionBlock, type ReflectionBlockProps, type RelationOption, RelationSelect, type RelationSelectProps, RepeatableFormSection, type RepeatableFormSectionProps, type RepeatableItem, ReplyTree, type ReplyTreeProps, ResolvedFrame, type RevealAnimation, type RevealTrigger, type RichBlock, RichBlockEditor, type RichBlockEditorProps, type RowAction, type RuleDefinition, type RuleOption, RuntimeDebugger, type RuntimeDebuggerProps, SHEET_COLUMNS, SPRITE_SHEET_LAYOUT, ScaledDiagram, type ScaledDiagramProps, ScoreDisplay, type ScoreDisplayProps, SearchInput, type SearchInputProps, type SearchPayload, Section, SectionHeader, type SectionHeaderProps, type SectionProps, SegmentRenderer, type SegmentRendererProps, Select, type SelectOption, type SelectOptionGroup, type SelectPayload, type SelectProps, SequenceBar, type SequenceBarProps, ServiceCatalog, type ServiceCatalogItem, type ServiceCatalogProps, ShowcaseCard, type ShowcaseCardProps, ShowcaseOrganism, type ShowcaseOrganismProps, SidePanel, type SidePanelProps, type SidePlayer, Sidebar, type SidebarItem, type SidebarProps, SignaturePad, type SignaturePadProps, SimpleGrid, type SimpleGridProps, Skeleton, type SkeletonProps, type SkeletonVariant, SlotContent, SlotContentRenderer, type SlotItemData, SocialProof, type SocialProofItem, type SocialProofProps, type SortPayload, SortableList, type SortableListProps, Spacer, type SpacerProps, type SpacerSize, Sparkline, type SparklineColor, type SparklineProps, Spinner, type SpinnerProps, Split, SplitPane, type SplitPaneProps, type SplitProps, SplitSection, type SplitSectionProps, type SpotlightStep, SpriteFrameDims, SpriteSheetUrls, Stack, type StackAlign, type StackDirection, type StackGap, type StackJustify, type StackProps, StarRating, type StarRatingPrecision, type StarRatingProps, type StarRatingSize, StatBadge, type StatBadgeProps, StatCard, type StatCardProps, type StatCardSize, StatDisplay, type StatDisplayProps, StateGraph, type StateGraphProps, type StateGraphTransition, StateJsonView, type StateJsonViewProps, StateMachineView, type StateMachineViewProps, StateNode, type StateNodeProps, StatsGrid, type StatsGridProps, StatsOrganism, type StatsOrganismProps, StatusBar, type StatusBarProps, StatusDot, type StatusDotProps, type StatusDotSize, type StatusDotStatus, StepFlow, StepFlowOrganism, type StepFlowOrganismProps, type StepFlowProps, type StepItemProps, SubagentTracePanel, type SubagentTracePanelProps, SvgBranch, type SvgBranchProps, SvgConnection, type SvgConnectionProps, SvgFlow, type SvgFlowProps, SvgGrid, type SvgGridProps, SvgLobe, type SvgLobeProps, SvgMesh, type SvgMeshProps, SvgMorph, type SvgMorphProps, SvgNode, type SvgNodeProps, SvgPulse, type SvgPulseProps, SvgRing, type SvgRingProps, SvgShield, type SvgShieldProps, SvgStack, type SvgStackProps, type SwipeAction, SwipeableRow, type SwipeableRowProps, Switch, type SwitchProps, TERRAIN_COLORS, TILE_HEIGHT, TILE_WIDTH, type TabDefinition, type TabItem, TabbedContainer, type TabbedContainerProps, TableView, type TableViewColumn, type TableViewProps, Tabs, type TabsProps, TagCloud, type TagCloudItem, type TagCloudProps, TagInput, type TagInputProps, TeamCard, type TeamCardProps, TeamOrganism, type TeamOrganismProps, type TeamUnitTraits, type TemplateProps, TerrainPalette, type TerrainPaletteProps, TextHighlight, type TextHighlightProps, Textarea, type TextareaProps, ThemeToggle, type ThemeToggleProps, type TileCoord, type TileLayout, TimeSlotCell, type TimeSlotCellProps, Timeline, type TimelineItem, type TimelineItemStatus, type TimelineProps, TimerDisplay, type TimerDisplayProps, Toast, type ToastProps, ToastSlot, type ToastSlotProps, type ToastVariant, Tooltip, type TooltipProps, type TraceDisclosureLevel, TraitFrame, type TraitFrameProps, TraitSlot, type TraitSlotProps, type TraitStateMachineDefinition, TraitStateViewer, type TraitStateViewerProps, type TraitTransition, TransitionArrow, type TransitionArrowProps, type TransitionBundle, type TrendDirection, TrendIndicator, type TrendIndicatorProps, type TrendIndicatorSize, TypewriterText, type TypewriterTextProps, Typography, type TypographyProps, type TypographyVariant, UISlotComponent, UISlotRenderer, type UISlotRendererProps, UiError, UnitAnimationState, UploadDropZone, type UploadDropZoneProps, type UsePresenceOptions, VStack, type VStackProps, type Vec2, VersionDiff, type DiffLine as VersionDiffLine, type VersionDiffProps, ViolationAlert, type ViolationAlertProps, type ViolationRecord, VoteStack, type VoteStackProps, WizardContainer, type WizardContainerProps, WizardNavigation, type WizardNavigationProps, WizardProgress, type WizardProgressProps, type WizardProgressStep, type WizardStep, boardEntity, bool, createUnitAnimationState, getCurrentFrame, getTileDimensions, inferDirection, isoToScreen, makeAsset, makeAssetMap, mapBookData, num, objAvailableActions, objAvailableEvents, objCurrentState, objIcon, objId, objMaxRules, objName, objRules, objStates, parseEditFocus, parseLessonSegments, parseMarkdownWithCodeBlocks, pendulum, projectileMotion, resolveFieldMap, resolveFrame, resolveSheetDirection, rows, screenToIso, springOscillator, str, tickAnimationState, toCodeLanguage, transitionAnimation, unitHealth, unitPosition, unitTeam, useAnchorRect, useAtlasSliceDataUrl, useCamera, useImageCache, usePresence, useUnitSpriteAtlas, vec2 };
|
|
11444
|
+
export { ALL_PRESETS, AR_BOOK_FIELDS, type AboutPageEntity, AboutPageTemplate, type AboutPageTemplateProps, Accordion, type AccordionItem, type AccordionProps, Card as ActionCard, type CardProps as ActionCardProps, ActionPalette, type ActionPaletteProps, ActionTile, type ActionTileProps, ActivationBlock, type ActivationBlockProps, Alert, type AlertProps, type AlertVariant, type AlgorithmBar, AlgorithmCanvas, type AlgorithmCanvasProps, type AlgorithmCell, type AlgorithmPointer, AnimatedCounter, type AnimatedCounterProps, AnimatedGraphic, type AnimatedGraphicProps, AnimatedReveal, type AnimatedRevealProps, ArticleSection, type ArticleSectionProps, Aside, type AsideProps, AssetPicker, type AssetPickerProps, AtlasImage, type AtlasImageAsset, type AtlasImageProps, AtlasPanel, type AtlasPanelProps, AuthLayout, type AuthLayoutProps, Avatar, type AvatarProps, type AvatarSize, type AvatarStatus, Badge, type BadgeProps, type BadgeVariant, BehaviorView, type BehaviorViewProps, BiologyCanvas, type BiologyCanvasProps, type BiologyEdge, type BiologyNode, type BlockType, type BloomLevel, BloomQuizBlock, type BloomQuizBlockProps, BookChapterView, type BookChapterViewProps, BookCoverPage, type BookCoverPageProps, type BookFieldMap, BookNavBar, type BookNavBarProps, BookTableOfContents, type BookTableOfContentsProps, BookViewer, type BookViewerProps, Box, type BoxBg, type BoxMargin, type BoxPadding, type BoxProps, type BoxRounded, type BoxShadow, BranchingLogicBuilder, type BranchingLogicBuilderProps, type BranchingQuestion, type BranchingRule, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, CTABanner, type CTABannerBackground, type CTABannerProps, CalendarGrid, type CalendarGridProps, type CameraMode, CameraState, Canvas, Canvas2D, type Canvas2DProps, type CanvasItemShape, type CanvasItemStatus, type CanvasMode, type CanvasProps, Card$1 as Card, type CardAction, CardBody, CardContent, CardFooter, CardGrid, type CardGridGap, type CardGridProps, CardHeader, type CardProps$1 as CardProps, CardTitle, Carousel, type CarouselProps, CaseStudyCard, type CaseStudyCardProps, CaseStudyOrganism, type CaseStudyOrganismProps, Center, type CenterProps, Chart, type ChartDataPoint, ChartLegend, type ChartLegendItem, type ChartLegendProps, type ChartProps, type ChartSeries, type ChartType, ChatBar, type ChatBarProps, type ChatBarStatus, Checkbox, type CheckboxProps, type ChemistryArrow, type ChemistryAtom, type ChemistryBond, ChemistryCanvas, type ChemistryCanvasProps, ChoiceButton, type ChoiceButtonProps, Coachmark, type CoachmarkAnchor, type CoachmarkPlacement, type CoachmarkProps, CodeBlock, type CodeBlockProps, type CodeLanguage, type CodeLanguageLoader, CodeRunnerPanel, type CodeRunnerPanelProps, type CodeSimulationOutput, type CodeViewerAction, type CodeViewerFile, type CodeViewerMode, CollapsibleSection, type CollapsibleSectionProps, type Column, CommunityLinks, type CommunityLinksProps, type ConditionalContext, ConditionalWrapper, type ConditionalWrapperProps, ConfettiEffect, type ConfettiEffectProps, ConfirmDialog, type ConfirmDialogProps, type ConfirmDialogVariant, ConnectionBlock, type ConnectionBlockProps, Container, type ContainerProps, ContentRenderer, type ContentRendererProps, ContentSection, type ContentSectionBackground, type ContentSectionPadding, type ContentSectionProps, ControlButton, type ControlButtonProps, ControlGrid, type ControlGridButton, type ControlGridKind, type ControlGridProps, type CounterSize, CounterTemplate, type CounterTemplateProps, type CounterVariant, DEFAULT_LIKERT_OPTIONS, DEFAULT_MATRIX_COLUMNS, DIAMOND_TOP_Y, type DPadDirection, DashboardGrid, type DashboardGridCell, type DashboardGridProps, DashboardLayout, type DashboardLayoutProps, DataGrid, type DataGridField, type DataGridItemAction, type DataGridProps, DataList, type DataListField, type DataListItemAction, type DataListProps, DataTable, type DataTableProps, DateRangePicker, type DateRangePickerPreset, type DateRangePickerProps, DateRangeSelector, type DateRangeSelectorOption, type DateRangeSelectorProps, DayCell, type DayCellProps, type DetailField, DetailPanel, type DetailPanelProps, type DetailSection, Dialog, type DialogProps, DialogueBubble, type DialogueBubbleProps, type DiffLine$1 as DiffLine, type DiffLineType, type DiffRevision, type DisplayStateProps, Divider, type DividerOrientation, type DividerProps, DocBreadcrumb, type DocBreadcrumbItem, type DocBreadcrumbProps, DocPagination, type DocPaginationLink, type DocPaginationProps, DocSearch, type DocSearchProps, type DocSearchResult, DocSidebar, type DocSidebarItem, type DocSidebarProps, DocTOC, type DocTOCItem, type DocTOCProps, type DocumentType, DocumentViewer, type DocumentViewerProps, StateMachineView as DomStateMachineVisualizer, type DotSize, type DotState, Drawer, type DrawerPosition, type DrawerProps, type DrawerSize, DrawerSlot, type DrawerSlotProps, ELEMENT_SELECTED_EVENT, EdgeDecoration, type EdgeDecorationProps, type EdgeSide, type EdgeVariant, EditorCheckbox, type EditorCheckboxProps, type EditorMode, EditorSelect, type EditorSelectProps, EditorSlider, type EditorSliderProps, EditorTextInput, type EditorTextInputProps, EditorToolbar, type EditorToolbarProps, EmptyState, type EmptyStateProps, EntityDisplayEvents, ErrorBoundary, type ErrorBoundaryProps, ErrorState, type ErrorStateProps, FEATURE_COLORS, FEATURE_TYPES, FLOOR_HEIGHT, FacingDirection, FeatureCard, type FeatureCardProps, type FeatureDetailPageEntity, FeatureDetailPageTemplate, type FeatureDetailPageTemplateProps, type FeatureDetailSection, FeatureGrid, FeatureGridOrganism, type FeatureGridOrganismProps, type FeatureGridProps, FileTree, type FileTreeNode, type FileTreeProps, type FilterDefinition, FilterGroup, type FilterGroupProps, type FilterPayload, FilterPill, type FilterPillProps, type FilterPillSize, type FilterPillVariant, Flex, type FlexProps, FlipCard, type FlipCardProps, FlipContainer, type FlipContainerProps, type FloatingAction, FloatingActionButton, type FloatingActionButtonProps, type FooterLinkColumn, type FooterLinkItem, Form, FormActions, type FormActionsProps, FormField, type FormFieldProps, FormLayout, type FormLayoutProps, type FormProps, FormSection$1 as FormSection, FormSectionHeader, type FormSectionHeaderProps, type FormSectionProps, GameAudioToggle, type GameAudioToggleProps, GameHud, type GameHudElement, type GameHudProps, type GameHudStat, GameIcon, type GameIconProps, GameMenu, type GameMenuProps, GameShell, type GameShellProps, GenericAppTemplate, type GenericAppTemplateProps, GeometricPattern, type GeometricPatternProps, GradientDivider, type GradientDividerProps, GraphCanvas, type GraphCanvasProps, type GraphEdge, type GraphNode, type GraphSimilarity, GraphView, type GraphViewEdge, type GraphViewNode, type GraphViewProps, type GraphicAnimation, Grid, GridPicker, type GridPickerCellSize, type GridPickerProps, type GridProps, HStack, type HStackProps, Header, type HeaderProps, HealthBar, type HealthBarProps, HeroOrganism, type HeroOrganismProps, HeroSection, type HeroSectionProps, type HighlightType, IDENTITY_BOOK_FIELDS, Icon, type IconAnimation, type IconInput, IconPicker, type IconPickerProps, type IconProps, type IconSize, ImageSource, InfiniteScrollSentinel, type InfiniteScrollSentinelProps, Input, InputGroup, type InputGroupProps, type InputProps, InstallBox, type InstallBoxProps, IsometricUnit, JazariStateMachine, type JazariStateMachineProps, JsonTreeEditor, type JsonTreeEditorProps, Label, type LabelProps, type LandingPageEntity, LandingPageTemplate, type LandingPageTemplateProps, type LawReference, LawReferenceTooltip, type LawReferenceTooltipProps, LearningCanvas, type LearningCanvasProps, type LearningPhysicsBody, type LearningPhysicsConstraint, type LearningPoint, type LearningShape, type LearningShapeType, type LessonSegment, type LessonUserProgress, Lightbox, type LightboxImage, type LightboxProps, type LikertOption, LikertScale, type LikertScaleProps, LineChart, type LineChartProps, LinkAction, List, type ListItem, type ListProps, LoadingState, type LoadingStateProps, type MapMarkerData, type MapRouteData, type MapRouteWaypoint, MapView, type MapViewProps, MarkdownContent, type MarkdownContentProps, MarketingFooter, type MarketingFooterProps, MarketingStatCard, type MarketingStatCardProps, MasterDetail, MasterDetailLayout, type MasterDetailLayoutProps, type MasterDetailProps, MathCanvas, type MathCanvasProps, type MathCurve, type MathPoint, type MathVector, type MatrixColumn, MatrixQuestion, type MatrixQuestionProps, type MatrixRow, MediaGallery, type MediaGalleryProps, type MediaItem, Menu, type MenuItem, type MenuOption, type MenuProps, Meter, type MeterAction, type MeterProps, type MeterThreshold, type MeterVariant, type MixedSegment, Modal, type ModalProps, type ModalSize, ModalSlot, type ModalSlotProps, ModuleCard, type ModuleCardProps, type NavItem, Navigation, type NavigationItem, type NavigationProps, NodeSlotEditor, type NodeSlotEditorProps, NotifyListener, NumberStepper, type NumberStepperProps, type NumberStepperSize, OnboardingSpotlight, type OnboardingSpotlightProps, type OptionConstraint, OptionConstraintGroup, type OptionConstraintGroupProps, type OptionConstraintOption, StateMachineView as OrbitalStateMachineView, OrbitalVisualization, type OrbitalVisualizationProps, Overlay, type OverlayProps, type PageBreadcrumb, PageHeader, type PageHeaderProps, PageTransition, type PageTransitionProps, type PaginatePayload, Pagination, type PaginationProps, PatternTile, type PatternTileProps, type PatternVariant, PhysicsCanvas, type PhysicsCanvasProps, type PickerItem, type Platform, Point, Popover, type PopoverProps, PositionedCanvas, type PositionedCanvasProps, Presence, type PresenceAnimation, type PresenceProps, type PresenceResult, PricingCard, type PricingCardProps, PricingGrid, type PricingGridProps, PricingOrganism, type PricingOrganismProps, type PricingPageEntity, PricingPageTemplate, type PricingPageTemplateProps, type PrismLanguageGrammar, ProgressBar, type ProgressBarColor, type ProgressBarProps, type ProgressBarVariant, ProgressDots, type ProgressDotsProps, type Projection, PropertyInspector, type PropertyInspectorProps, PullQuote, type PullQuoteProps, PullToRefresh, type PullToRefreshProps, type QrScanResult, QrScanner, type QrScannerProps, QuizBlock, type QuizBlockProps, Radio, type RadioProps, RangeSlider, type RangeSliderProps, type RangeSliderSize, ReflectionBlock, type ReflectionBlockProps, type RelationOption, RelationSelect, type RelationSelectProps, RepeatableFormSection, type RepeatableFormSectionProps, type RepeatableItem, ReplyTree, type ReplyTreeProps, ResolvedFrame, type RevealAnimation, type RevealTrigger, type RichBlock, RichBlockEditor, type RichBlockEditorProps, type RowAction, type RuleDefinition, type RuleOption, RuntimeDebugger, type RuntimeDebuggerProps, SHEET_COLUMNS, SPRITE_SHEET_LAYOUT, ScaledDiagram, type ScaledDiagramProps, ScoreDisplay, type ScoreDisplayProps, SearchInput, type SearchInputProps, type SearchPayload, Section, SectionHeader, type SectionHeaderProps, type SectionProps, SegmentRenderer, type SegmentRendererProps, Select, type SelectOption, type SelectOptionGroup, type SelectPayload, type SelectProps, SequenceBar, type SequenceBarProps, ServiceCatalog, type ServiceCatalogItem, type ServiceCatalogProps, ShowcaseCard, type ShowcaseCardProps, ShowcaseOrganism, type ShowcaseOrganismProps, SidePanel, type SidePanelProps, type SidePlayer, Sidebar, type SidebarItem, type SidebarProps, SignaturePad, type SignaturePadProps, SimpleGrid, type SimpleGridProps, Skeleton, type SkeletonProps, type SkeletonVariant, SlotContent, SlotContentRenderer, type SlotItemData, SocialProof, type SocialProofItem, type SocialProofProps, type SortPayload, SortableList, type SortableListProps, Spacer, type SpacerProps, type SpacerSize, Sparkline, type SparklineColor, type SparklineProps, Spinner, type SpinnerProps, Split, SplitPane, type SplitPaneProps, type SplitProps, SplitSection, type SplitSectionProps, type SpotlightStep, SpriteFrameDims, SpriteSheetUrls, Stack, type StackAlign, type StackDirection, type StackGap, type StackJustify, type StackProps, StarRating, type StarRatingPrecision, type StarRatingProps, type StarRatingSize, StatBadge, type StatBadgeProps, StatCard, type StatCardProps, type StatCardSize, StatDisplay, type StatDisplayProps, StateGraph, type StateGraphProps, type StateGraphTransition, StateJsonView, type StateJsonViewProps, StateMachineView, type StateMachineViewProps, StateNode, type StateNodeProps, StatsGrid, type StatsGridProps, StatsOrganism, type StatsOrganismProps, StatusBar, type StatusBarProps, StatusDot, type StatusDotProps, type StatusDotSize, type StatusDotStatus, StepFlow, StepFlowOrganism, type StepFlowOrganismProps, type StepFlowProps, type StepItemProps, SubagentTracePanel, type SubagentTracePanelProps, SvgBranch, type SvgBranchProps, SvgConnection, type SvgConnectionProps, SvgFlow, type SvgFlowProps, SvgGrid, type SvgGridProps, SvgLobe, type SvgLobeProps, SvgMesh, type SvgMeshProps, SvgMorph, type SvgMorphProps, SvgNode, type SvgNodeProps, SvgPulse, type SvgPulseProps, SvgRing, type SvgRingProps, SvgShield, type SvgShieldProps, SvgStack, type SvgStackProps, type SwipeAction, SwipeableRow, type SwipeableRowProps, Switch, type SwitchProps, TERRAIN_COLORS, TILE_HEIGHT, TILE_WIDTH, type TabDefinition, type TabItem, TabbedContainer, type TabbedContainerProps, TableView, type TableViewColumn, type TableViewProps, Tabs, type TabsProps, TagCloud, type TagCloudItem, type TagCloudProps, TagInput, type TagInputProps, TeamCard, type TeamCardProps, TeamOrganism, type TeamOrganismProps, type TeamUnitTraits, type TemplateProps, TerrainPalette, type TerrainPaletteProps, TextHighlight, type TextHighlightProps, Textarea, type TextareaProps, ThemeToggle, type ThemeToggleProps, type TileCoord, type TileLayout, TimeSlotCell, type TimeSlotCellProps, Timeline, type TimelineItem, type TimelineItemStatus, type TimelineProps, TimerDisplay, type TimerDisplayProps, Toast, type ToastProps, ToastSlot, type ToastSlotProps, type ToastVariant, Tooltip, type TooltipProps, type TraceDisclosureLevel, TraitFrame, type TraitFrameProps, TraitSlot, type TraitSlotProps, type TraitStateMachineDefinition, TraitStateViewer, type TraitStateViewerProps, type TraitTransition, TransitionArrow, type TransitionArrowProps, type TransitionBundle, type TrendDirection, TrendIndicator, type TrendIndicatorProps, type TrendIndicatorSize, TypewriterText, type TypewriterTextProps, Typography, type TypographyProps, type TypographyVariant, UISlotComponent, UISlotRenderer, type UISlotRendererProps, UiError, UnitAnimationState, UploadDropZone, type UploadDropZoneProps, type UsePresenceOptions, VStack, type VStackProps, type Vec2, VersionDiff, type DiffLine as VersionDiffLine, type VersionDiffProps, ViolationAlert, type ViolationAlertProps, type ViolationRecord, VoteStack, type VoteStackProps, WizardContainer, type WizardContainerProps, WizardNavigation, type WizardNavigationProps, WizardProgress, type WizardProgressProps, type WizardProgressStep, type WizardStep, boardEntity, bool, createUnitAnimationState, getCurrentFrame, getTileDimensions, inferDirection, isoToScreen, makeAsset, makeAssetMap, mapBookData, num, objAvailableActions, objAvailableEvents, objCurrentState, objIcon, objId, objMaxRules, objName, objRules, objStates, parseEditFocus, parseLessonSegments, parseMarkdownWithCodeBlocks, pendulum, projectileMotion, registerCodeLanguageLoader, resolveFieldMap, resolveFrame, resolveSheetDirection, rows, screenToIso, springOscillator, str, tickAnimationState, toCodeLanguage, transitionAnimation, unitHealth, unitPosition, unitTeam, useAnchorRect, useAtlasSliceDataUrl, useCamera, useImageCache, usePresence, useUnitSpriteAtlas, vec2 };
|