@mathstack/app-kit 1.1.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.
Files changed (36) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +32 -0
  3. package/baseline-styles/_css-reset.scss +118 -0
  4. package/baseline-styles/_grid.scss +4 -0
  5. package/baseline-styles/_index.scss +6 -0
  6. package/baseline-styles/_sass-utils.scss +23 -0
  7. package/baseline-styles/_themes.scss +19 -0
  8. package/baseline-styles/_typography.scss +232 -0
  9. package/baseline-styles/_webkit-scrollbar.scss +22 -0
  10. package/baseline-styles/theming/_colors.scss +46 -0
  11. package/baseline-styles/theming/_index.scss +2 -0
  12. package/baseline-styles/theming/_typography.scss +32 -0
  13. package/fesm2022/mathstack-app-kit.mjs +846 -0
  14. package/fesm2022/mathstack-app-kit.mjs.map +1 -0
  15. package/index.d.ts +5 -0
  16. package/lib/assets/assets-resource.d.ts +11 -0
  17. package/lib/assets/assets-service.d.ts +35 -0
  18. package/lib/assets/index.d.ts +1 -0
  19. package/lib/content-parsing/index.d.ts +2 -0
  20. package/lib/content-parsing/markdown-parser.d.ts +54 -0
  21. package/lib/content-parsing/shiki-highlighter.d.ts +77 -0
  22. package/lib/core/utilities/deep-merge.d.ts +1 -0
  23. package/lib/core/utilities/index.d.ts +2 -0
  24. package/lib/core/utilities/safe-assign.d.ts +18 -0
  25. package/lib/documentation-display/active-heading-tracker.d.ts +14 -0
  26. package/lib/documentation-display/document-index/document-index.component.d.ts +17 -0
  27. package/lib/documentation-display/documentation-config-parser.d.ts +41 -0
  28. package/lib/documentation-display/documentation-content-service.d.ts +50 -0
  29. package/lib/documentation-display/documentation-display.component.d.ts +39 -0
  30. package/lib/documentation-display/index.d.ts +6 -0
  31. package/lib/documentation-display/navigation-siblings/navigation-siblings.component.d.ts +18 -0
  32. package/lib/ng-utilities/index.d.ts +2 -0
  33. package/lib/ng-utilities/ng-on-changes.d.ts +22 -0
  34. package/lib/ng-utilities/run-ng-change-detection-then.d.ts +22 -0
  35. package/package.json +41 -0
  36. package/public-api.d.ts +6 -0
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "@mathstack/app-kit",
3
+ "license": "MIT",
4
+ "peerDependencies": {
5
+ "@angular/common": "^19.2.2",
6
+ "@angular/core": "^19.2.2",
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
+ "version": "1.1.0",
39
+ "module": "fesm2022/mathstack-app-kit.mjs",
40
+ "typings": "index.d.ts"
41
+ }
@@ -0,0 +1,6 @@
1
+ export * from './lib/assets';
2
+ export * from './lib/content-parsing';
3
+ export * from './lib/core/utilities/index';
4
+ export * from './lib/documentation-display';
5
+ export * from './lib/ng-utilities';
6
+ export declare const STYLES_PATH = "./lib/styles/_index.scss";