@supernova-studio/model 1.87.2 → 1.87.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +4 -3
- package/dist/index.d.ts +4 -3
- package/dist/index.js +27 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +26 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4575,9 +4575,31 @@ var PageRedirect = z120.object({
|
|
|
4575
4575
|
designSystemId: z120.string()
|
|
4576
4576
|
});
|
|
4577
4577
|
|
|
4578
|
-
// src/dsm/documentation/
|
|
4578
|
+
// src/dsm/documentation/configuration.ts
|
|
4579
4579
|
import { z as z121 } from "zod";
|
|
4580
|
-
var
|
|
4580
|
+
var defaultDocsRenderCodePackageJson = `{
|
|
4581
|
+
"name": "supernova-live-react",
|
|
4582
|
+
"version": "1.0.0",
|
|
4583
|
+
"description": "Live React Code Packager",
|
|
4584
|
+
"keywords": ["react", "supernova"],
|
|
4585
|
+
"main": "src/index.js",
|
|
4586
|
+
"dependencies": {
|
|
4587
|
+
"react-dom": "latest",
|
|
4588
|
+
"react": "latest"
|
|
4589
|
+
},
|
|
4590
|
+
"devDependencies": {
|
|
4591
|
+
"@babel/runtime": "7.13.8",
|
|
4592
|
+
"typescript": "4.1.3"
|
|
4593
|
+
},
|
|
4594
|
+
"scripts": {
|
|
4595
|
+
"start": "react-scripts start",
|
|
4596
|
+
"build": "react-scripts build",
|
|
4597
|
+
"test": "react-scripts test --env=jsdom",
|
|
4598
|
+
"eject": "react-scripts eject"
|
|
4599
|
+
},
|
|
4600
|
+
"browserslist": [">0.2%", "not dead", "not ie <= 11", "not op_mini all"]
|
|
4601
|
+
}`;
|
|
4602
|
+
var DocumentationConfiguration = z121.object({
|
|
4581
4603
|
// Basic
|
|
4582
4604
|
designSystemVersionId: z121.string(),
|
|
4583
4605
|
createdAt: z121.coerce.date(),
|
|
@@ -7061,6 +7083,7 @@ export {
|
|
|
7061
7083
|
DimensionValue,
|
|
7062
7084
|
DocumentationComment,
|
|
7063
7085
|
DocumentationCommentThread,
|
|
7086
|
+
DocumentationConfiguration,
|
|
7064
7087
|
DocumentationGroupBehavior,
|
|
7065
7088
|
DocumentationGroupV1,
|
|
7066
7089
|
DocumentationItemConfigurationV1,
|
|
@@ -7092,7 +7115,6 @@ export {
|
|
|
7092
7115
|
DocumentationPageSnapshot,
|
|
7093
7116
|
DocumentationPageV1,
|
|
7094
7117
|
DocumentationPageV2,
|
|
7095
|
-
DocumentationSettings,
|
|
7096
7118
|
DocumentationThreadDump,
|
|
7097
7119
|
DurationTokenData,
|
|
7098
7120
|
DurationUnit,
|
|
@@ -7689,6 +7711,7 @@ export {
|
|
|
7689
7711
|
castStringToDimensionValue,
|
|
7690
7712
|
chunkedArray,
|
|
7691
7713
|
convertTokenTypedData,
|
|
7714
|
+
defaultDocsRenderCodePackageJson,
|
|
7692
7715
|
defaultDocumentationItemConfigurationV1,
|
|
7693
7716
|
defaultDocumentationItemConfigurationV2,
|
|
7694
7717
|
defaultDocumentationItemHeaderV1,
|