Skip to content

Commit

Permalink
Dependency updates (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
MattIPv4 authored Feb 18, 2022
1 parent 54281c9 commit a32f4b6
Show file tree
Hide file tree
Showing 7 changed files with 2,173 additions and 5,351 deletions.
5 changes: 3 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ module.exports = {
],
parserOptions: {
ecmaVersion: 2019,
sourceType: 'module',
parser: "babel-eslint"
parser: '@babel/eslint-parser',
requireConfigFile: false,
},
rules: {
'linebreak-style': ['error', 'unix'],
Expand All @@ -28,5 +28,6 @@ module.exports = {
}],
'vue/no-unused-vars': 0,
'vue/html-self-closing': 0,
'vue/multi-word-component-names': 0,
},
};
7,432 changes: 2,109 additions & 5,323 deletions package-lock.json

Large diffs are not rendered by default.

23 changes: 12 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,22 @@
},
"homepage": "https://github.com/do-community/available-images#readme",
"dependencies": {
"babel-eslint": "^10.1.0",
"do-bulma": "git+https://github.com/do-community/do-bulma.git",
"do-vue": "git+https://github.com/do-community/do-vue.git",
"node-fetch": "^2.6.1",
"vue": "^2.6.12"
"node-fetch": "^2.6.7",
"vue": "^2.6.14"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"copyfiles": "^2.4.1",
"eslint": "^7.24.0",
"eslint-plugin-vue": "^7.9.0",
"posthtml": "^0.15.2",
"posthtml-extend": "^0.6.0",
"sass": "^1.32.11",
"stylelint": "^13.13.1",
"stylelint-order": "^4.1.0",
"vue-template-compiler": "^2.6.12"
"eslint": "^8.9.0",
"eslint-plugin-vue": "^8.4.1",
"posthtml": "^0.16.5",
"posthtml-extend": "^0.6.2",
"sass": "^1.49.8",
"stylelint": "^14.5.1",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-order": "^5.0.0",
"vue-template-compiler": "^2.6.14"
}
}
7 changes: 3 additions & 4 deletions src/available-images/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
Copyright 2020 DigitalOcean
Copyright 2022 DigitalOcean
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand All @@ -16,11 +16,10 @@

<extends src="../build/base.html">
<block name="title"><title>Available Images | DigitalOcean</title></block>
<block name="head">
<block name="content">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.min.css" integrity="sha256-UzFD2WYH2U1dQpKDjjZK72VtPeWP50NoJjd26rnAdUI=" crossorigin="anonymous" />
</block>
<block name="content">

<h1>Applications</h1>
<div data-image-list="applications"></div>

Expand Down
3 changes: 2 additions & 1 deletion src/available-images/scss/style.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2020 DigitalOcean
Copyright 2022 DigitalOcean
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand All @@ -15,4 +15,5 @@ limitations under the License.
*/

$header: #0071fe;

@import "~do-bulma/src/style";
27 changes: 22 additions & 5 deletions src/available-images/templates/components/applications.vue
Original file line number Diff line number Diff line change
@@ -1,14 +1,31 @@
<!--
Copyright 2022 DigitalOcean
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->

<template>
<div>
<form autocomplete="on" @submit.prevent="">
<div class="input-container">
<label for="input_search" class="hidden">Search applications</label>
<i class="fas fa-search"></i>
<input id="input_search"
v-model="filter"
class="input"
type="text"
placeholder="Search applications..."
<input
id="input_search"
v-model="filter"
class="input"
type="text"
placeholder="Search applications..."
/>
</div>
</form>
Expand Down
27 changes: 22 additions & 5 deletions src/available-images/templates/components/distributions.vue
Original file line number Diff line number Diff line change
@@ -1,14 +1,31 @@
<!--
Copyright 2022 DigitalOcean
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->

<template>
<div>
<form autocomplete="on" @submit.prevent="">
<div class="input-container">
<label for="input_search" class="hidden">Search distributions</label>
<i class="fas fa-search"></i>
<input id="input_search"
v-model="filter"
class="input"
type="text"
placeholder="Search distributions..."
<input
id="input_search"
v-model="filter"
class="input"
type="text"
placeholder="Search distributions..."
/>
</div>
</form>
Expand Down

1 comment on commit a32f4b6

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This commit has been deployed to DigitalOcean Spaces for easy reviewing.

available-images (Build Analysis Report)

Please sign in to comment.