@gitlab/ui 100.0.0 → 101.0.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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
# [101.0.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v100.0.0...v101.0.0) (2024-10-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* Remove bootstrap peer-depenceny and use vendored version instead ([1628107](https://gitlab.com/gitlab-org/gitlab-ui/commit/1628107e3fd80e2accd7f0fe30505fd600073acc))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### BREAKING CHANGES
|
|
10
|
+
|
|
11
|
+
* In release 94.4.0 we added vendored bootstrap@4.6.2 SCSS. Now
|
|
12
|
+
@gitlab/ui stops relying on the bootstrap peer dependency and uses the
|
|
13
|
+
vendored bootstrap SCSS files instead. Unless you use JavaScript bits
|
|
14
|
+
of bootstrap, you can simply drop the bootstrap dependency.
|
|
15
|
+
|
|
1
16
|
# [100.0.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v99.1.0...v100.0.0) (2024-10-29)
|
|
2
17
|
|
|
3
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitlab/ui",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "101.0.0",
|
|
4
4
|
"description": "GitLab UI Components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -90,7 +90,6 @@
|
|
|
90
90
|
},
|
|
91
91
|
"peerDependencies": {
|
|
92
92
|
"@gitlab/svgs": "^1.116.0 || ^2.0.0 || ^3.0.0",
|
|
93
|
-
"bootstrap": ">=4.5.3 <=4.6.2",
|
|
94
93
|
"dompurify": ">=2.5.2 <3.0.0 || >=3.1.2",
|
|
95
94
|
"emoji-regex": ">=10.0.0",
|
|
96
95
|
"pikaday": "^1.8.0",
|
|
@@ -145,7 +144,6 @@
|
|
|
145
144
|
"axe-core": "^4.2.3",
|
|
146
145
|
"babel-jest": "29.0.1",
|
|
147
146
|
"babel-loader": "^8.0.5",
|
|
148
|
-
"bootstrap": "4.6.2",
|
|
149
147
|
"cypress": "13.15.1",
|
|
150
148
|
"cypress-axe": "^1.4.0",
|
|
151
149
|
"cypress-real-events": "^1.11.0",
|
package/src/scss/bootstrap.scss
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
@import 'variables';
|
|
2
|
-
@import 'bootstrap/scss/functions';
|
|
3
|
-
@import 'bootstrap/scss/variables';
|
|
4
|
-
@import 'bootstrap/scss/mixins';
|
|
5
|
-
@import 'bootstrap/scss/root';
|
|
6
|
-
@import 'bootstrap/scss/reboot';
|
|
7
|
-
@import 'bootstrap/scss/type';
|
|
8
|
-
@import 'bootstrap/scss/images';
|
|
9
|
-
@import 'bootstrap/scss/code';
|
|
10
|
-
@import 'bootstrap/scss/grid';
|
|
11
|
-
@import 'bootstrap/scss/tables';
|
|
12
|
-
@import 'bootstrap/scss/forms';
|
|
13
|
-
@import 'bootstrap/scss/buttons';
|
|
14
|
-
@import 'bootstrap/scss/transitions';
|
|
15
|
-
@import 'bootstrap/scss/dropdown';
|
|
16
|
-
@import 'bootstrap/scss/button-group';
|
|
17
|
-
@import 'bootstrap/scss/input-group';
|
|
18
|
-
@import 'bootstrap/scss/custom-forms';
|
|
19
|
-
@import 'bootstrap/scss/nav';
|
|
20
|
-
@import 'bootstrap/scss/navbar';
|
|
21
|
-
@import 'bootstrap/scss/card';
|
|
22
|
-
@import 'bootstrap/scss/breadcrumb';
|
|
23
|
-
@import 'bootstrap/scss/pagination';
|
|
24
|
-
@import 'bootstrap/scss/badge';
|
|
25
|
-
@import 'bootstrap/scss/alert';
|
|
26
|
-
@import 'bootstrap/scss/progress';
|
|
27
|
-
@import 'bootstrap/scss/media';
|
|
28
|
-
@import 'bootstrap/scss/list-group';
|
|
29
|
-
@import 'bootstrap/scss/close';
|
|
30
|
-
@import 'bootstrap/scss/modal';
|
|
31
|
-
@import 'bootstrap/scss/tooltip';
|
|
32
|
-
@import 'bootstrap/scss/popover';
|
|
33
|
-
@import 'bootstrap/scss/utilities';
|
|
34
|
-
@import 'bootstrap/scss/print';
|
|
2
|
+
@import '../vendor/bootstrap/scss/functions';
|
|
3
|
+
@import '../vendor/bootstrap/scss/variables';
|
|
4
|
+
@import '../vendor/bootstrap/scss/mixins';
|
|
5
|
+
@import '../vendor/bootstrap/scss/root';
|
|
6
|
+
@import '../vendor/bootstrap/scss/reboot';
|
|
7
|
+
@import '../vendor/bootstrap/scss/type';
|
|
8
|
+
@import '../vendor/bootstrap/scss/images';
|
|
9
|
+
@import '../vendor/bootstrap/scss/code';
|
|
10
|
+
@import '../vendor/bootstrap/scss/grid';
|
|
11
|
+
@import '../vendor/bootstrap/scss/tables';
|
|
12
|
+
@import '../vendor/bootstrap/scss/forms';
|
|
13
|
+
@import '../vendor/bootstrap/scss/buttons';
|
|
14
|
+
@import '../vendor/bootstrap/scss/transitions';
|
|
15
|
+
@import '../vendor/bootstrap/scss/dropdown';
|
|
16
|
+
@import '../vendor/bootstrap/scss/button-group';
|
|
17
|
+
@import '../vendor/bootstrap/scss/input-group';
|
|
18
|
+
@import '../vendor/bootstrap/scss/custom-forms';
|
|
19
|
+
@import '../vendor/bootstrap/scss/nav';
|
|
20
|
+
@import '../vendor/bootstrap/scss/navbar';
|
|
21
|
+
@import '../vendor/bootstrap/scss/card';
|
|
22
|
+
@import '../vendor/bootstrap/scss/breadcrumb';
|
|
23
|
+
@import '../vendor/bootstrap/scss/pagination';
|
|
24
|
+
@import '../vendor/bootstrap/scss/badge';
|
|
25
|
+
@import '../vendor/bootstrap/scss/alert';
|
|
26
|
+
@import '../vendor/bootstrap/scss/progress';
|
|
27
|
+
@import '../vendor/bootstrap/scss/media';
|
|
28
|
+
@import '../vendor/bootstrap/scss/list-group';
|
|
29
|
+
@import '../vendor/bootstrap/scss/close';
|
|
30
|
+
@import '../vendor/bootstrap/scss/modal';
|
|
31
|
+
@import '../vendor/bootstrap/scss/tooltip';
|
|
32
|
+
@import '../vendor/bootstrap/scss/popover';
|
|
33
|
+
@import '../vendor/bootstrap/scss/utilities';
|
|
34
|
+
@import '../vendor/bootstrap/scss/print';
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
// stylelint-disable scss/at-import-partial-extension-blacklist
|
|
2
|
-
|
|
3
|
-
// imports from https://github.com/bootstrap-vue/bootstrap-vue/blob/dev/src/index.scss
|
|
4
|
-
|
|
5
2
|
@import '../vendor/bootstrap-vue/src/variables.scss';
|
|
6
3
|
// Disabe Tooltip and Popover colored variants which we do not use / support.
|
|
7
4
|
$bv-enable-tooltip-variants: false;
|
|
@@ -21,4 +18,3 @@ $bv-enable-popover-variants: false;
|
|
|
21
18
|
@import '../vendor/bootstrap-vue/src/components/toast/index.scss';
|
|
22
19
|
@import '../vendor/bootstrap-vue/src/components/tooltip/index.scss';
|
|
23
20
|
|
|
24
|
-
// @import '../vendor/bootstrap-vue/src/icons/icons.scss';
|
package/src/scss/storybook.scss
CHANGED
|
@@ -7,9 +7,9 @@ $feature-button-border: true;
|
|
|
7
7
|
@import 'functions';
|
|
8
8
|
@import 'variables';
|
|
9
9
|
|
|
10
|
-
@import 'bootstrap/scss/functions';
|
|
11
|
-
@import 'bootstrap/scss/variables';
|
|
12
|
-
@import 'bootstrap/scss/mixins';
|
|
10
|
+
@import '../vendor/bootstrap/scss/functions';
|
|
11
|
+
@import '../vendor/bootstrap/scss/variables';
|
|
12
|
+
@import '../vendor/bootstrap/scss/mixins';
|
|
13
13
|
|
|
14
14
|
@import 'bootstrap_vue';
|
|
15
15
|
|