@mathstack/app-kit 0.0.1-beta.0
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/LICENSE +21 -0
- package/README.md +31 -0
- package/baseline-styles/_css-reset.scss +118 -0
- package/baseline-styles/_grid.scss +4 -0
- package/baseline-styles/_index.scss +6 -0
- package/baseline-styles/_sass-utils.scss +23 -0
- package/baseline-styles/_themes.scss +19 -0
- package/baseline-styles/_typography.scss +232 -0
- package/baseline-styles/_webkit-scrollbar.scss +22 -0
- package/baseline-styles/theming/_colors.scss +46 -0
- package/baseline-styles/theming/_index.scss +2 -0
- package/baseline-styles/theming/_typography.scss +32 -0
- package/fesm2022/mathstack-app-kit.mjs +846 -0
- package/fesm2022/mathstack-app-kit.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/assets/assets-resource.d.ts +11 -0
- package/lib/assets/assets-service.d.ts +35 -0
- package/lib/assets/index.d.ts +1 -0
- package/lib/content-parsing/index.d.ts +2 -0
- package/lib/content-parsing/markdown-parser.d.ts +54 -0
- package/lib/content-parsing/shiki-highlighter.d.ts +77 -0
- package/lib/core/utilities/deep-merge.d.ts +1 -0
- package/lib/core/utilities/index.d.ts +2 -0
- package/lib/core/utilities/safe-assign.d.ts +18 -0
- package/lib/documentation-display/active-heading-tracker.d.ts +14 -0
- package/lib/documentation-display/document-index/document-index.component.d.ts +17 -0
- package/lib/documentation-display/documentation-config-parser.d.ts +41 -0
- package/lib/documentation-display/documentation-content-service.d.ts +50 -0
- package/lib/documentation-display/documentation-display.component.d.ts +39 -0
- package/lib/documentation-display/index.d.ts +6 -0
- package/lib/documentation-display/navigation-siblings/navigation-siblings.component.d.ts +18 -0
- package/lib/ng-utilities/index.d.ts +2 -0
- package/lib/ng-utilities/ng-on-changes.d.ts +22 -0
- package/lib/ng-utilities/run-ng-change-detection-then.d.ts +22 -0
- package/package.json +46 -0
- package/public-api.d.ts +6 -0
package/package.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mathstack/app-kit",
|
|
3
|
+
"license": "MIT",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": ">=19.0.0 <21.0.0",
|
|
6
|
+
"@angular/core": ">=19.0.0 <21.0.0",
|
|
7
|
+
"hast-util-from-parse5": "^8.0.1",
|
|
8
|
+
"html-entities": "^2.5.2",
|
|
9
|
+
"lodash-es": "^4.17.21",
|
|
10
|
+
"parse5": "^7.1.2",
|
|
11
|
+
"rehype": "^13.0.1",
|
|
12
|
+
"rehype-autolink-headings": "^7.1.0",
|
|
13
|
+
"rehype-raw": "^7.0.0",
|
|
14
|
+
"rehype-slug": "^6.0.0",
|
|
15
|
+
"rehype-stringify": "^10.0.0",
|
|
16
|
+
"remark-gfm": "^4.0.0",
|
|
17
|
+
"remark-parse": "^11.0.0",
|
|
18
|
+
"remark-rehype": "^11.1.1",
|
|
19
|
+
"rxjs": "^7.5.0",
|
|
20
|
+
"shiki": "^1.14.1",
|
|
21
|
+
"unified": "^11.0.5",
|
|
22
|
+
"yaml": "^2.1.1"
|
|
23
|
+
},
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"tslib": "^2.3.0"
|
|
26
|
+
},
|
|
27
|
+
"exports": {
|
|
28
|
+
".": {
|
|
29
|
+
"sass": "./baseline-styles/_index.scss",
|
|
30
|
+
"types": "./index.d.ts",
|
|
31
|
+
"default": "./fesm2022/mathstack-app-kit.mjs"
|
|
32
|
+
},
|
|
33
|
+
"./package.json": {
|
|
34
|
+
"default": "./package.json"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"sideEffects": false,
|
|
38
|
+
"repository": {
|
|
39
|
+
"type": "git",
|
|
40
|
+
"url": "https://github.com/mathematica-pub/frontend-shared-packages.git",
|
|
41
|
+
"directory": "libs/app-kit"
|
|
42
|
+
},
|
|
43
|
+
"module": "fesm2022/mathstack-app-kit.mjs",
|
|
44
|
+
"typings": "index.d.ts",
|
|
45
|
+
"version": "0.0.1-beta.0"
|
|
46
|
+
}
|
package/public-api.d.ts
ADDED