@d1vij/jassm 0.1.12 → 0.1.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/index.js +6 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -318,6 +318,9 @@ var BaseElements = {
|
|
|
318
318
|
tr: TableRow,
|
|
319
319
|
td: TableData
|
|
320
320
|
};
|
|
321
|
+
// src/components/Loader.tsx
|
|
322
|
+
import { Suspense } from "react";
|
|
323
|
+
|
|
321
324
|
// src/lib/generateElements.ts
|
|
322
325
|
function generateElementsFrom(elements, baseElements = true) {
|
|
323
326
|
if (baseElements) {
|
|
@@ -380,6 +383,8 @@ class CoalescedRegistry extends AbstractRegistry {
|
|
|
380
383
|
this.exports = Object.assign({}, ...registries.map((r) => r.getExports()));
|
|
381
384
|
}
|
|
382
385
|
}
|
|
386
|
+
// src/components/Loader.tsx
|
|
387
|
+
import { jsx as jsx14 } from "react/jsx-runtime";
|
|
383
388
|
export {
|
|
384
389
|
useStyles,
|
|
385
390
|
generateRegistries,
|
|
@@ -387,7 +392,7 @@ export {
|
|
|
387
392
|
StyleContext,
|
|
388
393
|
StyleClassesList,
|
|
389
394
|
Registry,
|
|
390
|
-
|
|
395
|
+
MDXFromComponent,
|
|
391
396
|
CoalescedRegistry,
|
|
392
397
|
BaseElements,
|
|
393
398
|
BaseElementTags
|
package/package.json
CHANGED