Skip to content

Commit

Permalink
Adaptive UI Explorer - initial port (#6424)
Browse files Browse the repository at this point in the history
Initial port of Color Explorer into the new Adaptive UI Explorer component
  • Loading branch information
bheston authored and janechu committed Jun 10, 2024
1 parent 32f1d89 commit 97e7534
Show file tree
Hide file tree
Showing 38 changed files with 2,416 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "prerelease",
"comment": "Initial port of Color Explorer into the new Adaptive UI Explorer component",
"packageName": "@microsoft/adaptive-ui-explorer",
"email": "47367562+bheston@users.noreply.github.com",
"dependentChangeType": "prerelease"
}
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"private": true,
"workspaces": {
"packages": [
"packages/tooling/adaptive-ui-explorer",
"packages/utilities/*",
"packages/web-components/*",
"sites/fast-color-explorer",
Expand Down
10 changes: 10 additions & 0 deletions packages/tooling/adaptive-ui-explorer/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# don't ever lint node_modules
node_modules
# don't lint build output (make sure it's set to your correct build folder name)
dist
# don't lint coverage output
coverage
# don't lint www
www
# don't lint test files
__test__
6 changes: 6 additions & 0 deletions packages/tooling/adaptive-ui-explorer/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": ["@microsoft/eslint-config-fast-dna", "prettier"],
"rules": {
"@typescript-eslint/no-non-null-assertion": "off"
}
}
3 changes: 3 additions & 0 deletions packages/tooling/adaptive-ui-explorer/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
tsdoc-metadata.json
temp
test
7 changes: 7 additions & 0 deletions packages/tooling/adaptive-ui-explorer/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Tests
__test__/
*.spec.*
*.test.*

# Source files
src/
1 change: 1 addition & 0 deletions packages/tooling/adaptive-ui-explorer/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package-lock=false
3 changes: 3 additions & 0 deletions packages/tooling/adaptive-ui-explorer/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
dist/*
test/*
src/__test__/*
Empty file.
50 changes: 50 additions & 0 deletions packages/tooling/adaptive-ui-explorer/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"name": "@microsoft/adaptive-ui-explorer",
"version": "1.0.0-alpha.1",
"description": "A playground for Adaptive UI",
"type": "module",
"private": true,
"main": "dist/esm/index.js",
"types": "dist/adaptive-ui-explorer.d.ts",
"unpkg": "dist/esm/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/fast.git",
"directory": "packages/utilities/adaptive-ui"
},
"author": {
"name": "Microsoft",
"url": "https://discord.gg/FcSNfg4"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/fast/issues/new/choose"
},
"homepage": "https://fast.design",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"build:app": "webpack --mode=production",
"clean": "node ../../../build/clean.js dist",
"prepare": "yarn clean && yarn build",
"prettier": "prettier --config ../../../.prettierrc --write \"**/*.ts\"",
"prettier:diff": "prettier --config ../../../.prettierrc \"**/*.ts\" --list-different",
"start": "webpack-dev-server"
},
"dependencies": {
"@microsoft/adaptive-ui": "^1.0.0-alpha.2",
"@microsoft/fast-colors": "^5.3.1",
"@microsoft/fast-element": "^2.0.0-beta.6",
"@microsoft/fast-foundation": "^3.0.0-alpha.9"
},
"devDependencies": {
"clean-webpack-plugin": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"inject-body-webpack-plugin": "^1.3.0",
"resolve-typescript-plugin": "^1.2.0",
"ts-loader": "^9.3.0",
"typescript": "^4.7.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.2"
}
}
Loading

0 comments on commit 97e7534

Please sign in to comment.