Skip to content

[Excel] (data types explorer) Add unified manifest #980

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
124 changes: 23 additions & 101 deletions Samples/excel-data-types-explorer/.gitignore
Original file line number Diff line number Diff line change
@@ -1,111 +1,33 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
# TeamsFx files
env/.env.*.user
env/.env.local
appPackage/build

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# TypeScript cache
*.tsbuildinfo
node_modules

# Optional npm cache directory
.npm
# Azure Functions artifacts
bin
obj
appsettings.json

# Optional eslint cache
.eslintcache
# ignore local.settings.json if it contains your own credentials
# local.settings.json

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
# misc
.DS_Store
.deployment
.env
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache

# Next.js build output
.next

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and *not* Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# environment
.env
# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/
# build
/dist

# DynamoDB Local files
.dynamodb/
# Azurite emulator
_storage_emulator

# TernJS port file
.tern-port
# Local data
.localConfigs
.notification.localstore.json

localhost_manifest.xml
test.rest
personal.env
personal_manifest.xml
# production
/build
1 change: 1 addition & 0 deletions Samples/excel-data-types-explorer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ Version | Date | Comments
---------| -----| --------
1.0 | 9-7-2022 | Initial release
1.1 | 10-12-2022 | Promote from Preview to GA
1.2 | 06-11-2025 | Convert to unified manifest

----------

Expand Down
156 changes: 156 additions & 0 deletions Samples/excel-data-types-explorer/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,156 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/teams/vDevPreview/MicrosoftTeams.schema.json",
"id": "ef5cf9b4-94c8-4a2e-82f0-17394d83cc7a",
"manifestVersion": "devPreview",
"version": "1.0.1",
"name": {
"short": "Data types explorer",
"full": "Data types explorer"
},
"description": {
"short": "An Office Add-in for exploring Excel data types.",
"full": "An Office Add-in for exploring Excel data types."
},
"developer": {
"name": "Contoso",
"websiteUrl": "https://www.contoso.com",
"privacyUrl": "https://www.contoso.com/privacy",
"termsOfUseUrl": "https://www.contoso.com/servicesagreement"
},
"icons": {
"outline": "assets/outline.png",
"color": "assets/color.png"
},
"accentColor": "#230201",
"localizationInfo": {
"defaultLanguageTag": "en-us",
"additionalLanguages": []
},
"authorization": {
"permissions": {
"resourceSpecific": [
{
"name": "Document.ReadWrite.User",
"type": "Delegated"
}
]
}
},
"validDomains": [
"https://localhost:3000"
],
"extensions": [
{
"requirements": {
"scopes": [
"workbook"
],
"capabilities": [
{
"name": "AddinCommands",
"minVersion": "1.1"
}
]
},
"runtimes": [
{
"requirements": {
"capabilities": [
{
"name": "AddinCommands",
"minVersion": "1.1"
}
]
},
"id": "TaskPaneRuntime",
"type": "general",
"code": {
"page": "https://localhost:3000/taskpane.html"
},
"lifetime": "short",
"actions": [
{
"id": "TaskPaneRuntimeShow",
"type": "openPage",
"pinnable": false,
"view": "dashboard"
}
]
},
{
"id": "CommandsRuntime",
"type": "general",
"code": {
"page": "https://localhost:3000/commands.html",
"script": "https://localhost:3000/commands.js"
},
"lifetime": "short",
"actions": [
{
"id": "OpenTaskPane",
"type": "openPage"
}
]
}
],
"ribbons": [
{
"contexts": [
"default"
],
"tabs": [
{
"builtInTabId": "TabHome",
"groups": [
{
"id": "msgReadGroup",
"label": "Contoso Add-in",
"icons": [
{
"size": 16,
"url": "https://localhost:3000/assets/icon-16.png"
},
{
"size": 32,
"url": "https://localhost:3000/assets/icon-32.png"
},
{
"size": 80,
"url": "https://localhost:3000/assets/icon-80.png"
}
],
"controls": [
{
"id": "TaskpaneButton",
"type": "button",
"label": "Hello world",
"icons": [
{
"size": 16,
"url": "https://localhost:3000/assets/icon-16.png"
},
{
"size": 32,
"url": "https://localhost:3000/assets/icon-32.png"
},
{
"size": 80,
"url": "https://localhost:3000/assets/icon-80.png"
}
],
"supertip": {
"title": "Hello world",
"description": "Open the Hello world add-in"
},
"actionId": "OpenTaskPane"
}
]
}
]
}
]
}
]
}
]
}
Loading