+7849
-2520
lines changedFilter options
+7849
-2520
lines changed Original file line number Diff line number Diff line change
@@ -2,27 +2,27 @@
2
2
"files": [
3
3
{
4
4
"path": "./dist/bootstrap-vue-icons.js",
5
-
"maxSize": "105 kB"
5
+
"maxSize": "110 kB"
6
6
},
7
7
{
8
8
"path": "./dist/bootstrap-vue-icons.min.js",
9
-
"maxSize": "100 kB"
9
+
"maxSize": "105 kB"
10
10
},
11
11
{
12
12
"path": "./dist/bootstrap-vue-icons.common.js",
13
-
"maxSize": "110 kB"
13
+
"maxSize": "120 kB"
14
14
},
15
15
{
16
16
"path": "./dist/bootstrap-vue-icons.common.min.js",
17
-
"maxSize": "105 kB"
17
+
"maxSize": "110 kB"
18
18
},
19
19
{
20
20
"path": "./dist/bootstrap-vue-icons.esm.js",
21
-
"maxSize": "110 kB"
21
+
"maxSize": "115 kB"
22
22
},
23
23
{
24
24
"path": "./dist/bootstrap-vue-icons.esm.min.js",
25
-
"maxSize": "105 kB"
25
+
"maxSize": "110 kB"
26
26
},
27
27
{
28
28
"path": "./dist/bootstrap-vue-icons.css",
@@ -42,19 +42,19 @@
42
42
},
43
43
{
44
44
"path": "./dist/bootstrap-vue.common.js",
45
-
"maxSize": "310 kB"
45
+
"maxSize": "320 kB"
46
46
},
47
47
{
48
48
"path": "./dist/bootstrap-vue.common.min.js",
49
-
"maxSize": "195 kB"
49
+
"maxSize": "200 kB"
50
50
},
51
51
{
52
52
"path": "./dist/bootstrap-vue.esm.js",
53
-
"maxSize": "310 kB"
53
+
"maxSize": "320 kB"
54
54
},
55
55
{
56
56
"path": "./dist/bootstrap-vue.esm.min.js",
57
-
"maxSize": "195 kB"
57
+
"maxSize": "200 kB"
58
58
},
59
59
{
60
60
"path": "./dist/bootstrap-vue.css",
Original file line number Diff line number Diff line change
@@ -74,7 +74,7 @@ export const bootstrapVersionMajor = bootstrapVersion.replace(majorRE, '$1')
74
74
export const bootstrapIconsVersion = parseFullVersion(devDependencies['bootstrap-icons'])
75
75
export const bootstrapIconsVersionMinor = bootstrapIconsVersion.replace(minorRE, '$1')
76
76
export const bootstrapIconsVersionMajor = bootstrapIconsVersion.replace(majorRE, '$1')
77
-
export const bootstrapIconsCount = 1000
77
+
export const bootstrapIconsCount = 1100
78
78
79
79
export const popperVersion = parseVersion(dependencies['popper.js'])
80
80
export const popperVersionMinor = popperVersion.replace(minorRE, '$1')
Original file line number Diff line number Diff line change
@@ -7,16 +7,14 @@ export const kebabCase = str => {
7
7
8
8
// Parse a fully qualified version from a string
9
9
export const parseVersion = version => {
10
-
const matches = version.match(/([0-9]+\.[0-9]+\.[0-9]+)/)
11
-
const matchesCount = matches.length
12
-
return matchesCount > 0 ? matches[matchesCount - 1] : ''
10
+
const matches = version.match(/([0-9]+\.[0-9]+\.[0-9]+)/) || []
11
+
return matches.length > 0 ? matches[0] : ''
13
12
}
14
13
15
-
// Parse a fully qualified version from a string (including alpha/beta/etc
14
+
// Parse a fully qualified version from a string (including alpha/beta/etc.)
16
15
export const parseFullVersion = version => {
17
-
const matches = version.match(/([0-9]+\.[0-9]+\.[0-9]+(?:-[a-z]+[.-]?[0-9]+))/)
18
-
const matchesCount = matches.length
19
-
return matchesCount > 0 ? matches[matchesCount - 1] : ''
16
+
const matches = version.match(/([0-9]+\.[0-9]+\.[0-9]+(-[a-z]+[.-]?[0-9]+)?)/) || []
17
+
return matches.length > 0 ? matches[0] : ''
20
18
}
21
19
22
20
export const parseUrl = value => {
Original file line number Diff line number Diff line change
@@ -99,32 +99,32 @@
99
99
"vue-functional-data-merge": "^3.1.0"
100
100
},
101
101
"devDependencies": {
102
-
"@babel/cli": "^7.10.5",
103
-
"@babel/core": "^7.11.4",
102
+
"@babel/cli": "^7.11.5",
103
+
"@babel/core": "^7.11.5",
104
104
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
105
-
"@babel/plugin-transform-runtime": "^7.11.0",
106
-
"@babel/preset-env": "^7.11.0",
107
-
"@babel/standalone": "^7.11.4",
108
-
"@nuxt/content": "^1.7.0",
105
+
"@babel/plugin-transform-runtime": "^7.11.5",
106
+
"@babel/preset-env": "^7.11.5",
107
+
"@babel/standalone": "^7.11.5",
108
+
"@nuxt/content": "^1.7.1",
109
109
"@nuxtjs/google-analytics": "^2.4.0",
110
110
"@nuxtjs/pwa": "^3.0.2",
111
111
"@nuxtjs/robots": "^2.4.2",
112
112
"@nuxtjs/sitemap": "^2.4.0",
113
113
"@testing-library/jest-dom": "^5.11.4",
114
-
"@vue/test-utils": "^1.0.4",
114
+
"@vue/test-utils": "^1.0.5",
115
115
"autoprefixer": "^9.8.6",
116
116
"babel-core": "^7.0.0-bridge.0",
117
117
"babel-eslint": "^10.1.0",
118
118
"babel-jest": "^26.3.0",
119
119
"babel-plugin-istanbul": "^6.0.0",
120
-
"bootstrap-icons": "^1.0.0-alpha5",
120
+
"bootstrap-icons": "^1.0.0",
121
121
"bundlewatch": "^0.2.7",
122
122
"clean-css-cli": "^4.3.0",
123
123
"codemirror": "^5.57.0",
124
124
"codesandbox": "^2.1.16",
125
125
"core-js": ">=2.6.5 <3.0.0",
126
126
"cross-env": "^7.0.2",
127
-
"eslint": "^7.7.0",
127
+
"eslint": "^7.8.0",
128
128
"eslint-config-prettier": "^6.11.0",
129
129
"eslint-config-standard": "^14.1.1",
130
130
"eslint-config-vue": "^2.0.2",
@@ -149,11 +149,11 @@
149
149
"marked": "^1.1.1",
150
150
"node-sass": "^4.14.1",
151
151
"nuxt": "^2.14.4",
152
-
"postcss-cli": "^7.1.1",
152
+
"postcss-cli": "^7.1.2",
153
153
"prettier": "1.14.3",
154
154
"regenerator-runtime": "^0.13.7",
155
155
"require-context": "^1.1.0",
156
-
"rollup": "^2.26.6",
156
+
"rollup": "^2.26.9",
157
157
"rollup-plugin-babel": "^4.4.0",
158
158
"rollup-plugin-commonjs": "^10.1.0",
159
159
"rollup-plugin-node-resolve": "^5.2.0",
Original file line number Diff line number Diff line change
@@ -13,6 +13,7 @@ installed by default. You do not need `bootstrap-icons` as a dependency.
13
13
- Bootstrap Icons `v1.0.0-alpha3` icons were added in BootstrapVue release `v2.8.0`.
14
14
- Bootstrap Icons `v1.0.0-alpha4` icons were added in BootstrapVue release `v2.15.0`.
15
15
- Bootstrap Icons `v1.0.0-alpha5` icons were added in BootstrapVue release `v2.16.0`.
16
+
- Bootstrap Icons `v1.0.0` icons were added in BootstrapVue release `v2.17.0`.
16
17
17
18
<div class="alert alert-info small">
18
19
<p class="mb-2">
@@ -22,20 +23,23 @@ installed by default. You do not need `bootstrap-icons` as a dependency.
22
23
</p>
23
24
<ul class="mb-0">
24
25
<li>
25
-
<strong>Alpha 3 changes:</strong> In addition to over 200 new icons, some icons have
26
-
changed names — <code>document-*</code> icons renamed <code>file-*</code>;
26
+
<strong><code>v1.0.0-alpha3</code> changes:</strong> In addition to over 200 new icons,
27
+
some icons have changed names — <code>document-*</code> icons renamed <code>file-*</code>;
27
28
<code>alert-*</code> icons renamed <code>exclamation-*</code>; <code>columns-gutters</code>
28
29
renamed <code>columns-gap</code> and <code>diamond</code> renamed <code>gem</code> (because of
29
30
new <code>diamond-*</code> shape icons).
30
31
</li>
31
32
<li>
32
-
<strong>Alpha 4 changes:</strong> In addition to over 140 new icons, some icons have changed
33
-
names — <code>arrow-up-down</code> renamed <code>arrow-down-up</code> and
34
-
<code>people-circle</code> renamed <code>person-circle</code>.
33
+
<strong><code>v1.0.0-alpha4</code> changes:</strong> In addition to over 140 new icons,
34
+
some icons have changed names — <code>arrow-up-down</code> renamed
35
+
<code>arrow-down-up</code> and <code>people-circle</code> renamed <code>person-circle</code>.
35
36
</li>
36
37
<li>
37
-
<strong>Alpha 5 changes:</strong> In addition to over 300 new icons, some icons have changed
38
-
names — <code>camera</code> renamed <code>camera2</code>.
38
+
<strong><code>v1.0.0-alpha5</code> changes:</strong> In addition to over 300 new icons,
39
+
some icons have changed names — <code>camera</code> renamed <code>camera2</code>.
40
+
</li>
41
+
<li>
42
+
<strong><code>v1.0.0</code> changes:</strong> Over 90 new icons were added and over 400 redrawn.
39
43
</li>
40
44
</ul>
41
45
</div>
You can’t perform that action at this time.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4