-
Notifications
You must be signed in to change notification settings - Fork 601
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adaptive UI Explorer - initial port (#6424)
Initial port of Color Explorer into the new Adaptive UI Explorer component
- Loading branch information
Showing
38 changed files
with
2,416 additions
and
1 deletion.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
change/@microsoft-adaptive-ui-explorer-ba5b0bf9-7335-4d14-a6ce-140f265d1674.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
tsdoc-metadata.json | ||
temp | ||
test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Tests | ||
__test__/ | ||
*.spec.* | ||
*.test.* | ||
|
||
# Source files | ||
src/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
package-lock=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
dist/* | ||
test/* | ||
src/__test__/* |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |
Oops, something went wrong.