Skip to content
This repository was archived by the owner on Mar 4, 2020. It is now read-only.

[DO NOT MERGE] Docs Version 2 #1999

Closed
wants to merge 46 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
70fa7cc
Port stardust-ui-docs into stardust-ui/react fork
Sep 23, 2019
9500504
Fix typescript issues in gulp tasks
Sep 27, 2019
f85c689
Fix race condition with font-size detection
Sep 27, 2019
fdbf820
Select correct template files for "learn" and "components"
Sep 27, 2019
823db8d
Add component schema to page context
Sep 27, 2019
23acdb4
Fix "start" task
Sep 27, 2019
c147f58
Style/content tweaks
Sep 27, 2019
cc724a3
Attempt to fix server-side rendering issue from Stardust
Sep 27, 2019
141a3ad
Switch theme for code blocks in light and dark mode
Sep 30, 2019
03c5dc8
Improve installation page
Sep 30, 2019
485e668
Improve component list page styles
Sep 30, 2019
2fe244c
Fix search keyboard navigation
Sep 30, 2019
a73d860
Move schema cache to node_modules/.component-schema-cache
Sep 30, 2019
82bf47a
Upgrade doc dependencies
Oct 1, 2019
c8806d9
Fix bad usage of <SEO /> component
Oct 1, 2019
00c0ff7
Cleanup global syntax highlighting styles
Oct 1, 2019
76d4ebc
Fix syntax highlighting theme collision between light and dark mode
Oct 1, 2019
5ea27e1
Improve page header styles on mobile
Oct 1, 2019
035415c
More page header style tweaks for mobile
Oct 1, 2019
1bac134
Prevent list items from on index page from animating on mount
Oct 1, 2019
8344e96
Categorize components
Oct 1, 2019
5399f6b
Add theme picker back to navbar
Oct 2, 2019
68b4242
Fix wording in installation steps
Oct 2, 2019
d73230f
Cleanup search logic
Oct 2, 2019
f4a1270
Make search result limit configurable
Oct 2, 2019
fb90833
Fix navbar link outlines
Oct 2, 2019
2faf947
Do not try to inject schema for /components index
Oct 2, 2019
cbdb30e
Decrease margins on home screen in mobile
Oct 2, 2019
42a0fb2
Fix home height on mobile
Oct 2, 2019
a793ad9
Fix search keyboard navigation and styling
Oct 2, 2019
f584d7e
Improve list view card styles in dark mode
Oct 2, 2019
aeac52c
Persist theme in local storage
Oct 2, 2019
5000760
Add changelog and github links to navbar
Oct 2, 2019
2170787
context may be undefined on pages in search index
Oct 2, 2019
a5fcef9
Ignore .netlify
Oct 2, 2019
793ad62
Extract global CSS from inline <style> tag to <link />
Oct 2, 2019
a70da1b
Move navbar CSS to global styles to avoid unstyled flash
Oct 2, 2019
a98ca79
Upgrade mobx and doctrine
Oct 2, 2019
8cde245
Add google analytics
Oct 2, 2019
a749c93
Update links on homepage
Oct 2, 2019
e409c2f
Fix more FOUC in navbar
Oct 2, 2019
d5169b0
Resolve @stardust-ui/accessibility from local source
Oct 2, 2019
ccf6679
Increase text spacing in articles
Oct 2, 2019
83ad297
Fix component search
Oct 2, 2019
fe4e95f
Fix ts-node conflict with gulp
Oct 2, 2019
bcffcc5
Temporarily disable eslint for examples until imports are added
Oct 3, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 1 addition & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,10 @@

coverage/
dist/
docs/src/componentInfo
docs/src/componentMenu.json
docs/src/behaviorMenu.json
docs/src/currentBundleStats.json
docs/src/exampleMenus
docs/src/exampleSources
docs/dist/
node_modules/
report.*.json
stats/
.vscode/
.netlify
101 changes: 0 additions & 101 deletions build/gulp/plugins/gulp-component-menu-behaviors.ts

This file was deleted.

76 changes: 0 additions & 76 deletions build/gulp/plugins/gulp-component-menu.ts

This file was deleted.

17 changes: 0 additions & 17 deletions build/gulp/plugins/gulp-doctoc.ts

This file was deleted.

94 changes: 0 additions & 94 deletions build/gulp/plugins/gulp-example-menu.ts

This file was deleted.

71 changes: 0 additions & 71 deletions build/gulp/plugins/gulp-example-source.ts

This file was deleted.

2 changes: 1 addition & 1 deletion build/gulp/serve.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import express from 'express'
import * as express from 'express'

import historyApiFallback from 'connect-history-api-fallback'
import { Server } from 'http'
Expand Down
Loading