diff --git a/components/MessageItem.vue b/components/MessageItem.vue new file mode 100644 index 0000000..51ca235 --- /dev/null +++ b/components/MessageItem.vue @@ -0,0 +1,293 @@ + +
+ + + + + + + diff --git a/components/TabBar.vue b/components/TabBar.vue index 0535275..675eed1 100644 --- a/components/TabBar.vue +++ b/components/TabBar.vue @@ -30,7 +30,7 @@ export default { iconText: "📋", useImg: true, icon: "/static/tabbar/tabbar-icon1.png", - activeIcon: "/static/tabbar/tabbar-icon1.png", + activeIcon: "/static/tabbar/tabbar-icon1-active.png", pagePath: "/pages/home/conversations/index", }, { @@ -38,7 +38,7 @@ export default { iconText: "📊", useImg: true, icon: "/static/tabbar/tabbar-icon2.png", - activeIcon: "/static/tabbar/tabbar-icon2.png", + activeIcon: "/static/tabbar/tabbar-icon2-active.png", pagePath: "/pages/notes/index", }, { @@ -46,7 +46,7 @@ export default { iconText: "👤", useImg: true, icon: "/static/tabbar/tabbar-icon3.png", - activeIcon: "/static/tabbar/tabbar-icon3.png", + activeIcon: "/static/tabbar/tabbar-icon3-active.png", pagePath: "/pages/my/index", }, ], diff --git a/node_modules/clipboard/.github/ISSUE_TEMPLATE/bug_report.md b/node_modules/clipboard/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..99fe3e6 --- /dev/null +++ b/node_modules/clipboard/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,57 @@ +--- +name: 🐛 Bug Report +about: Submit a bug report to help us improve +labels: 'bug, needs triage' +--- + + + +## 🐛 Bug Report + +> Fork this [JSFiddle](https://jsfiddle.net/zenorocha/5kk0eysw/) and reproduce your issue. + +(A clear and concise description of what the issue is.) + +### Have you read the [Contributing Guidelines on issues](https://github.com/zenorocha/clipboard.js/blob/master/contributing.md)? + +(Write your answer here.) + +### Expected Behaviour + + + +I thought that by going to the page '...' and pressing the button '...' then '...' would happen. + +_Tip: Try to use screenshots, gifs, videos, always remember people better understand with a visual way._ + +### Actual Behaviour + +Instead of '...', what I saw was that '...' happened instead. + +### To Reproduce + +(Write your steps such as:) + +1. Step 1... +1. Step 2... +1. Step 3... + +### Browsers Affected + +I tested on all major browsers and only IE 11 does not work. + +### Operational System + +(Place here your Operational System.) diff --git a/node_modules/clipboard/.github/ISSUE_TEMPLATE/documentation.md b/node_modules/clipboard/.github/ISSUE_TEMPLATE/documentation.md new file mode 100644 index 0000000..adbcf5c --- /dev/null +++ b/node_modules/clipboard/.github/ISSUE_TEMPLATE/documentation.md @@ -0,0 +1,13 @@ +--- +name: 📚 Documentation +about: Report an issue related to documentation +labels: 'documentation, needs triage' +--- + +## 📚 Documentation + +(A clear and concise description of what the issue is.) + +### Have you read the [Contributing Guidelines on issues](https://github.com/zenorocha/clipboard.js/blob/master/contributing.md)? + +(Write your answer here.) diff --git a/node_modules/clipboard/.github/ISSUE_TEMPLATE/proposal.md b/node_modules/clipboard/.github/ISSUE_TEMPLATE/proposal.md new file mode 100644 index 0000000..f7ce878 --- /dev/null +++ b/node_modules/clipboard/.github/ISSUE_TEMPLATE/proposal.md @@ -0,0 +1,26 @@ +--- +name: 💥 Proposal +about: Propose a non-trivial change to Clipboard.js +labels: 'proposal, needs triage' +--- + +## 💥 Proposal + +**Is your feature request related to a problem? Please describe** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Are you able to assist to bring the feature to reality?** +no | yes, I can... + +**Additional context** +Add any other context or screenshots about the feature request here. + +### Have you read the [Contributing Guidelines on issues](https://github.com/zenorocha/clipboard.js/blob/master/contributing.md)? + +(Write your answer here.) diff --git a/node_modules/clipboard/.github/PULL_REQUEST_TEMPLATE.md b/node_modules/clipboard/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..b2f50c8 --- /dev/null +++ b/node_modules/clipboard/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,35 @@ + + + + + +**What kind of change does this PR introduce?** (check at least one) + +- [ ] Bugfix +- [ ] Feature +- [ ] Code style update +- [ ] Refactor +- [ ] Build-related changes +- [ ] Other, please describe: + +**Does this PR introduce a breaking change?** (check one) + +- [ ] Yes +- [ ] No + +If yes, please describe the impact and migration path for existing applications: + +**The PR fulfills these requirements:** + +- [ ] It's submitted to the `dev` branch for v2.x (or to a previous version branch), _not_ the `master` branch +- [ ] When resolving a specific issue, it's referenced in the PR's title (e.g. `fix #xxx[,#xxx]`, where "xxx" is the issue number) +- [ ] New/updated tests are included + +If adding a **new feature**, the PR's description includes: + +- [ ] A convincing reason for adding this feature (to avoid wasting your time, it's best to open a suggestion issue first and wait for approval before working on it) + +**Other information:** diff --git a/node_modules/clipboard/.github/stale.yml b/node_modules/clipboard/.github/stale.yml new file mode 100644 index 0000000..efee0d1 --- /dev/null +++ b/node_modules/clipboard/.github/stale.yml @@ -0,0 +1,21 @@ +# Number of days of inactivity before an issue becomes stale +daysUntilStale: 60 + +# Number of days of inactivity before a stale issue is closed +daysUntilClose: 7 + +# Issues with these labels will never be considered stale +exemptLabels: + - pinned + +# Label to use when marking an issue as stale +staleLabel: stale + +# Comment to post when marking an issue as stale. Set to `false` to disable +markComment: > + This issue has been automatically marked as stale because it has not had + recent activity. It will be closed if no further activity occurs. Thank you + for your contributions. + +# Comment to post when closing a stale issue. Set to `false` to disable +closeComment: false diff --git a/node_modules/clipboard/.github/workflows/publish.yml b/node_modules/clipboard/.github/workflows/publish.yml new file mode 100644 index 0000000..e0dadfc --- /dev/null +++ b/node_modules/clipboard/.github/workflows/publish.yml @@ -0,0 +1,47 @@ +# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created +# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages + +name: publish + +on: + release: + types: [created] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + with: + node-version: 14 + - run: npm ci + - run: npm test + + publish-npm: + needs: build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + with: + node-version: 14 + registry-url: https://registry.npmjs.org/ + - run: npm ci + - run: npm publish + env: + NODE_AUTH_TOKEN: ${{secrets.npm_token}} + + publish-gpr: + needs: build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + with: + node-version: 14 + registry-url: https://npm.pkg.github.com/ + - run: npm ci + - run: npm publish + env: + NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/node_modules/clipboard/.github/workflows/test.js.yml b/node_modules/clipboard/.github/workflows/test.js.yml new file mode 100644 index 0000000..04f169a --- /dev/null +++ b/node_modules/clipboard/.github/workflows/test.js.yml @@ -0,0 +1,34 @@ +# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node +# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions + +name: build + +on: + push: + branches: [master] + pull_request: + branches: [master] + +env: + FORCE_COLOR: 2 + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [10.x, 12.x, 14.x, 15.x] + # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + # For now is not possible to target LTS verssions =/ check progress here https://github.com/actions/setup-node/issues/26 + + steps: + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v2 + with: + node-version: ${{ matrix.node-version }} + - run: npm ci + - run: npm run build --if-present + - run: npm run lint + - run: npm test diff --git a/node_modules/clipboard/.husky/pre-commit b/node_modules/clipboard/.husky/pre-commit new file mode 100755 index 0000000..d37daa0 --- /dev/null +++ b/node_modules/clipboard/.husky/pre-commit @@ -0,0 +1,4 @@ +#!/bin/sh +. "$(dirname "$0")/_/husky.sh" + +npx --no-install lint-staged diff --git a/node_modules/clipboard/demo/constructor-node.html b/node_modules/clipboard/demo/constructor-node.html new file mode 100644 index 0000000..2780ebc --- /dev/null +++ b/node_modules/clipboard/demo/constructor-node.html @@ -0,0 +1,35 @@ + + +