@gitlab/svgs 3.149.0 → 3.150.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -6
- package/dist/file_icons/LICENSE.md +1 -1
- package/dist/file_icons/file_icons/kotlin.svg +1 -1
- package/dist/file_icons/file_icons-stacked.svg +1 -1
- package/dist/file_icons/file_icons.json +1 -1
- package/dist/file_icons/file_icons.svg +1 -1
- package/dist/file_icons/file_icons_individual.json +1 -1
- package/dist/icons-stacked.svg +1 -1
- package/dist/icons.json +3 -2
- package/dist/icons.svg +1 -1
- package/dist/icons_individual.json +5 -1
- package/dist/sprite_icons/passkey.svg +1 -0
- package/package.json +21 -36
- package/.editorconfig +0 -13
- package/.gitpod.yml +0 -3
- package/.tool-versions +0 -2
- package/CONTRIBUTING.md +0 -12
- package/Dangerfile +0 -16
- package/postcss.config.js +0 -6
- package/tailwind.config.js +0 -13
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"illustrationCount":
|
|
2
|
+
"illustrationCount": 443,
|
|
3
3
|
"illustrations": [
|
|
4
4
|
{
|
|
5
5
|
"name": "sprite_icons/abuse.svg",
|
|
@@ -1037,6 +1037,10 @@
|
|
|
1037
1037
|
"name": "sprite_icons/partner-verified.svg",
|
|
1038
1038
|
"size": 932
|
|
1039
1039
|
},
|
|
1040
|
+
{
|
|
1041
|
+
"name": "sprite_icons/passkey.svg",
|
|
1042
|
+
"size": 798
|
|
1043
|
+
},
|
|
1040
1044
|
{
|
|
1041
1045
|
"name": "sprite_icons/pause.svg",
|
|
1042
1046
|
"size": 268
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M6.385 8.158c1.784 0 3.23-1.379 3.23-3.08C9.615 3.379 8.17 2 6.385 2S3.154 3.379 3.154 5.079c0 1.7 1.446 3.079 3.23 3.079zm8.615 0a2.31 2.31 0 00-.346-1.22 2.46 2.46 0 00-.949-.883 2.612 2.612 0 00-2.557.068c-.38.23-.69.551-.896.933a2.3 2.3 0 00.153 2.433c.251.356.599.64 1.005.824v3.66L12.487 15l1.795-1.71-1.077-1.027 1.077-1.026-.89-.849c.473-.174.88-.48 1.166-.878A2.32 2.32 0 0015 8.158zm-2.513 0a.75.75 0 01-.516-.196.684.684 0 01-.216-.488.658.658 0 01.216-.489.722.722 0 01.516-.195.736.736 0 01.499.205.665.665 0 010 .958.736.736 0 01-.499.205zM9.213 9.54a4.489 4.489 0 00-1.751-.356H5.308a4.418 4.418 0 00-3.046 1.203A4.01 4.01 0 001 13.289v1.369h9.333v-3.77a3.564 3.564 0 01-1.12-1.348z"/></svg>
|
package/package.json
CHANGED
|
@@ -1,38 +1,42 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitlab/svgs",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.150.0",
|
|
4
4
|
"description": "SVG Assets for GitLab",
|
|
5
5
|
"main": "./index.js",
|
|
6
|
-
"repository":
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://gitlab.com/gitlab-org/gitlab-services/design.gitlab.com.git",
|
|
9
|
+
"directory": "packages/gitlab-svgs"
|
|
10
|
+
},
|
|
7
11
|
"author": "GitLab",
|
|
8
12
|
"private": false,
|
|
9
13
|
"license": "MIT",
|
|
14
|
+
"files": [
|
|
15
|
+
"dist",
|
|
16
|
+
"src",
|
|
17
|
+
"index.js"
|
|
18
|
+
],
|
|
10
19
|
"scripts": {
|
|
11
|
-
"svg": "
|
|
12
|
-
"dev": "
|
|
20
|
+
"svg": "make svgs",
|
|
21
|
+
"dev": "nuxt",
|
|
13
22
|
"build": "nuxt build",
|
|
14
23
|
"start": "nuxt start",
|
|
15
|
-
"
|
|
16
|
-
"
|
|
24
|
+
"prepare": "yarn run svg",
|
|
25
|
+
"generate": "nuxt generate"
|
|
17
26
|
},
|
|
18
27
|
"devDependencies": {
|
|
19
|
-
"@
|
|
20
|
-
"@gitlab/
|
|
21
|
-
"@
|
|
22
|
-
"@gitlab/ui": "^123.10.0",
|
|
23
|
-
"@nuxtjs/tailwindcss": "6.11.4",
|
|
28
|
+
"@gitlab/svgs": "*",
|
|
29
|
+
"@gitlab/ui": "*",
|
|
30
|
+
"@nuxtjs/tailwindcss": "6.14.0",
|
|
24
31
|
"dompurify": "^3.2.4",
|
|
25
|
-
"
|
|
26
|
-
"glob": "^7.1.3",
|
|
32
|
+
"glob": "^7.2.3",
|
|
27
33
|
"mkdirp": "^0.5.1",
|
|
28
34
|
"nuxt": "^2.18.1",
|
|
29
35
|
"pikaday": "1.8.0",
|
|
30
|
-
"
|
|
31
|
-
"prettier-plugin-tailwindcss": "^0.6.11",
|
|
32
|
-
"rimraf": "^2.6.2",
|
|
36
|
+
"rimraf": "^2.7.1",
|
|
33
37
|
"sass": "^1.85.1",
|
|
34
38
|
"sass-loader": "^10.5.2",
|
|
35
|
-
"svg-sprite": "^1.5.
|
|
39
|
+
"svg-sprite": "^1.5.4",
|
|
36
40
|
"svgo": "^1.3.0"
|
|
37
41
|
},
|
|
38
42
|
"resolutions": {
|
|
@@ -40,24 +44,5 @@
|
|
|
40
44
|
"sass-loader": "^10.5.2",
|
|
41
45
|
"vue": "2.7.16",
|
|
42
46
|
"vue-server-renderer": "2.7.16"
|
|
43
|
-
},
|
|
44
|
-
"release": {
|
|
45
|
-
"branches": [
|
|
46
|
-
"main"
|
|
47
|
-
],
|
|
48
|
-
"plugins": [
|
|
49
|
-
[
|
|
50
|
-
"@semantic-release/exec",
|
|
51
|
-
{
|
|
52
|
-
"analyzeCommitsCmd": "./build_scripts/analyze-commits.sh ${lastRelease.gitTag}",
|
|
53
|
-
"generateNotesCmd": "./build_scripts/generate-notes.sh ${lastRelease.gitTag} ${nextRelease.version}"
|
|
54
|
-
}
|
|
55
|
-
],
|
|
56
|
-
"@semantic-release/npm",
|
|
57
|
-
"@semantic-release/git",
|
|
58
|
-
"@semantic-release/gitlab"
|
|
59
|
-
],
|
|
60
|
-
"success": false,
|
|
61
|
-
"fail": false
|
|
62
47
|
}
|
|
63
48
|
}
|
package/.editorconfig
DELETED
package/.gitpod.yml
DELETED
package/.tool-versions
DELETED
package/CONTRIBUTING.md
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
## Developer Certificate of Origin + License
|
|
2
|
-
|
|
3
|
-
By contributing to GitLab Inc., You accept and agree to the following terms and
|
|
4
|
-
conditions for Your present and future Contributions submitted to GitLab Inc.
|
|
5
|
-
Except for the license granted herein to GitLab Inc. and recipients of software
|
|
6
|
-
distributed by GitLab Inc., You reserve all right, title, and interest in and to
|
|
7
|
-
Your Contributions. All Contributions are subject to the following DCO + License
|
|
8
|
-
terms.
|
|
9
|
-
|
|
10
|
-
[DCO + License](https://gitlab.com/gitlab-org/dco/blob/master/README.md)
|
|
11
|
-
|
|
12
|
-
_This notice should stay as the first item in the CONTRIBUTING.md file._
|
package/Dangerfile
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
require 'gitlab-dangerfiles'
|
|
4
|
-
|
|
5
|
-
Gitlab::Dangerfiles.for_project(self) do |gitlab_dangerfiles|
|
|
6
|
-
|
|
7
|
-
gitlab_dangerfiles.import_plugins
|
|
8
|
-
|
|
9
|
-
gitlab_dangerfiles.config.files_to_category = {
|
|
10
|
-
%r{\Aillustrations/} => :ux,
|
|
11
|
-
%r{\Asprite_icons/} => :ux,
|
|
12
|
-
%r{.*} => :frontend
|
|
13
|
-
}.freeze
|
|
14
|
-
|
|
15
|
-
gitlab_dangerfiles.import_dangerfiles(except: %w[changelog commit_messages])
|
|
16
|
-
end
|
package/postcss.config.js
DELETED
package/tailwind.config.js
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
const tailwindDefaults = require('@gitlab/ui/tailwind.defaults');
|
|
2
|
-
|
|
3
|
-
/** @type {import('tailwindcss').Config} */
|
|
4
|
-
module.exports = {
|
|
5
|
-
content: [
|
|
6
|
-
'./svgpreviewer/components/**/*.{vue,js}',
|
|
7
|
-
'./svgpreviewer/layouts/**/*.vue',
|
|
8
|
-
'./svgpreviewer/pages/**/*.vue',
|
|
9
|
-
// Scan GitLab UI's own assets
|
|
10
|
-
'./node_modules/@gitlab/ui/dist/**/*.js',
|
|
11
|
-
],
|
|
12
|
-
presets: [tailwindDefaults],
|
|
13
|
-
};
|