-
Notifications
You must be signed in to change notification settings - Fork 661
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into add-reference-to-new-slides-created-by-tab…
…le-auto-paging
- Loading branch information
Showing
32 changed files
with
10,305 additions
and
5,942 deletions.
There are no files selected for viewing
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,34 @@ | ||
/** | ||
* @see https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/docs/rules/naming-convention.md | ||
*/ | ||
|
||
module.exports = { | ||
env: { | ||
browser: true, | ||
es2021: true, | ||
node: true, | ||
}, | ||
extends: [ | ||
"plugin:react/recommended", | ||
"standard-with-typescript", | ||
"plugin:@typescript-eslint/recommended", | ||
], | ||
overrides: [], | ||
parserOptions: { | ||
ecmaVersion: "latest", | ||
sourceType: "module", | ||
project: ["./tsconfig.json"], | ||
}, | ||
plugins: ["react", "@typescript-eslint"], | ||
ignorePatterns: [".eslintrc.js"], | ||
rules: { | ||
"@typescript-eslint/indent": ["error", "tab"], | ||
"@typescript-eslint/strict-boolean-expressions": 0, | ||
"comma-dangle": ["error", "only-multiline"], | ||
"no-lone-blocks": 0, | ||
"no-tabs": ["error", { allowIndentationTabs: true }], | ||
indent: ["error", "tab", { "SwitchCase": 1, "ImportDeclaration": 1 }], | ||
quotes: ["error", "single"], | ||
semi: ["error", "never"], | ||
}, | ||
}; |
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 |
---|---|---|
@@ -1,48 +1,41 @@ | ||
--- | ||
name: User Template | ||
about: Used for general issues, questions, etc. | ||
title: "[QUESTION]" | ||
about: Used for general issues, feature requests, etc. | ||
title: "[BUG|FEATURE]" | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
Thank you for reporting an issue, suggesting an enhancement, or asking a question. | ||
|
||
We appreciate your feedback - to help the team understand your needs please complete the following template to ensure we have the details to help. | ||
|
||
**Please check out the [Docs](https://gitbrent.github.io/PptxGenJS/) to see if your question is already addressed there.** | ||
### Submission Guidelines | ||
|
||
- **If you are not using the latest release, please update and see if the issue is resolved before submitting an issue** | ||
- General questions or high-level topics should be posted in [Discussions](https://github.com/gitbrent/PptxGenJS/discussions) | ||
- Please browse the online [Documentation](https://gitbrent.github.io/PptxGenJS/) to see if your question is already addressed there | ||
|
||
### Issue Category | ||
|
||
### Category | ||
- [ ] Enhancement | ||
- [ ] Bug | ||
- [ ] Question | ||
- [ ] Documentation gap/issue | ||
|
||
### Version | ||
|
||
Please specify what version of the library you are using: [ ] | ||
### Product Versions | ||
|
||
Please specify what version(s) of PowerPoint you are targeting: [ ] | ||
- Please specify what version of the library you are using......: [ ] | ||
- Please specify what version(s) of PowerPoint you are targeting: [ ] | ||
- Please specify what web browser you are using.................: [ ] | ||
|
||
Please specify what web browser you are using: [ ] | ||
|
||
**If you are not using the latest release, please update and see if the issue is resolved before submitting an issue.** | ||
|
||
### Expected / Desired Behavior / Question | ||
*If you are reporting an issue please describe the expected behavior. If you are suggesting an enhancement please describe thoroughly the enhancement, how it can be achieved, and expected benefit. If you are asking a question, ask away!* | ||
### Desired Behavior | ||
<!--- If you are reporting an issue please describe the expected behavior. --> | ||
<!--- If you are suggesting an enhancement please describe thoroughly the enhancement, how it can be achieved, and expected benefit. --> | ||
|
||
### Observed Behavior | ||
*If you are reporting an issue please describe the behavior you expected to occur when performing the action. If you are making a suggestion or asking a question delete this section.* | ||
<!--- If you are reporting an issue please describe the behavior you expected to occur when performing the action. --> | ||
<!--- If you are making a suggestion or asking a question delete this section. --> | ||
|
||
### Steps to Reproduce | ||
*If you are reporting an issue please describe the steps to reproduce the bug in sufficient detail to allow testing. If you are making a suggestion or asking a question delete this section.* | ||
|
||
### Submission Guidelines | ||
*Delete this section after reading* | ||
* All suggestions, questions and issues are welcome, please let us know what's on your mind. | ||
* Remember to include sufficient details and context. | ||
* Please check back occasionally on your issue as we may have follow up questions. | ||
* If you have multiple suggestions, questions, or bugs please submit them in separate issues so we can track resolution. | ||
|
||
Thank you for your feedback! | ||
<!--- If you are reporting an issue please describe the steps to reproduce the bug in sufficient detail to allow testing. --> | ||
<!--- If you are making a suggestion or asking a question delete this section. --> |
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,39 @@ | ||
# Submission Guidelines | ||
|
||
- Only modify the `src/*.ts` files (do not submit `dist` or `src/bld` files) | ||
- New and updated properties must be added to `src/core-interfaces.ts` and `types/index.d.ts` | ||
- New and updated features must be included in the corresponding `demos/modules/*.mjs` file | ||
- Review previously accepted changes for examples on what to provide | ||
|
||
## Change Summary | ||
<!--- Required: Provide a general summary of your changes --> | ||
|
||
## Change Description | ||
<!--- Optional: Describe your changes in detail if complex or summary is not sufficiently detailed --> | ||
<!--- Optional: Describe any new npm libraries needed --> | ||
|
||
## Change Type | ||
|
||
- [ ] Bug fix | ||
- [ ] New feature | ||
- [ ] Documentation update | ||
|
||
## Related Issue | ||
<!--- Optional: If this change is targeted towards an existing Issue --> | ||
|
||
## Motivation and Context | ||
<!--- Required: Why is this change required? What does it add or what problem does it solve? --> | ||
|
||
## Checklist before requesting a review | ||
|
||
- [ ] If it is a core feature, I have added new code under `/demos/modules/` | ||
- [ ] My code follows the style guidelines of this project | ||
- [ ] My changes generate no new eslint warnings | ||
- [ ] I have performed a self-review of my code | ||
- [ ] I have commented my code, particularly in hard-to-understand areas | ||
- [ ] I have included code/tests that prove my fix is effective or that my feature works | ||
- [ ] I have used the "Run All Demos" feature on the [browser demo](/demos/browser/index.html) and no errors were found | ||
|
||
## Screenshots / Sample Code (if appropriate) | ||
|
||
Thanks for your contribution! |
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 |
---|---|---|
|
@@ -14,3 +14,4 @@ demo | |
.docusaurus | ||
build | ||
docs | ||
static |
This file was deleted.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.