Skip to content

Commit 97e7534

Browse files
bhestonjanechu
authored andcommitted
Adaptive UI Explorer - initial port (#6424)
Initial port of Color Explorer into the new Adaptive UI Explorer component
1 parent 32f1d89 commit 97e7534

38 files changed

+2416
-1
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"type": "prerelease",
3+
"comment": "Initial port of Color Explorer into the new Adaptive UI Explorer component",
4+
"packageName": "@microsoft/adaptive-ui-explorer",
5+
"email": "[email protected]",
6+
"dependentChangeType": "prerelease"
7+
}

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"private": true,
1111
"workspaces": {
1212
"packages": [
13+
"packages/tooling/adaptive-ui-explorer",
1314
"packages/utilities/*",
1415
"packages/web-components/*",
1516
"sites/fast-color-explorer",
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# don't ever lint node_modules
2+
node_modules
3+
# don't lint build output (make sure it's set to your correct build folder name)
4+
dist
5+
# don't lint coverage output
6+
coverage
7+
# don't lint www
8+
www
9+
# don't lint test files
10+
__test__
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": ["@microsoft/eslint-config-fast-dna", "prettier"],
3+
"rules": {
4+
"@typescript-eslint/no-non-null-assertion": "off"
5+
}
6+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
tsdoc-metadata.json
2+
temp
3+
test
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Tests
2+
__test__/
3+
*.spec.*
4+
*.test.*
5+
6+
# Source files
7+
src/
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
dist/*
2+
test/*
3+
src/__test__/*

packages/tooling/adaptive-ui-explorer/README.md

Whitespace-only changes.
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{
2+
"name": "@microsoft/adaptive-ui-explorer",
3+
"version": "1.0.0-alpha.1",
4+
"description": "A playground for Adaptive UI",
5+
"type": "module",
6+
"private": true,
7+
"main": "dist/esm/index.js",
8+
"types": "dist/adaptive-ui-explorer.d.ts",
9+
"unpkg": "dist/esm/index.js",
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/microsoft/fast.git",
13+
"directory": "packages/utilities/adaptive-ui"
14+
},
15+
"author": {
16+
"name": "Microsoft",
17+
"url": "https://discord.gg/FcSNfg4"
18+
},
19+
"license": "MIT",
20+
"bugs": {
21+
"url": "https://github.com/microsoft/fast/issues/new/choose"
22+
},
23+
"homepage": "https://fast.design",
24+
"scripts": {
25+
"build": "tsc -p ./tsconfig.json",
26+
"build:app": "webpack --mode=production",
27+
"clean": "node ../../../build/clean.js dist",
28+
"prepare": "yarn clean && yarn build",
29+
"prettier": "prettier --config ../../../.prettierrc --write \"**/*.ts\"",
30+
"prettier:diff": "prettier --config ../../../.prettierrc \"**/*.ts\" --list-different",
31+
"start": "webpack-dev-server"
32+
},
33+
"dependencies": {
34+
"@microsoft/adaptive-ui": "^1.0.0-alpha.2",
35+
"@microsoft/fast-colors": "^5.3.1",
36+
"@microsoft/fast-element": "^2.0.0-beta.6",
37+
"@microsoft/fast-foundation": "^3.0.0-alpha.9"
38+
},
39+
"devDependencies": {
40+
"clean-webpack-plugin": "^4.0.0",
41+
"html-webpack-plugin": "^5.5.0",
42+
"inject-body-webpack-plugin": "^1.3.0",
43+
"resolve-typescript-plugin": "^1.2.0",
44+
"ts-loader": "^9.3.0",
45+
"typescript": "^4.7.3",
46+
"webpack": "^5.73.0",
47+
"webpack-cli": "^4.9.2",
48+
"webpack-dev-server": "^4.9.2"
49+
}
50+
}

0 commit comments

Comments
 (0)