@gitlab/ui 43.4.0 → 43.7.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 +21 -0
- package/dist/components/base/modal/modal.js +7 -1
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/utility_classes.css +1 -1
- package/dist/utility_classes.css.map +1 -1
- package/dist/utils/constants.js +1 -2
- package/package.json +6 -9
- package/scss_to_js/scss_variables.js +15 -13
- package/scss_to_js/scss_variables.json +97 -19
- package/src/components/base/accordion/accordion_item.spec.js +4 -4
- package/src/components/base/button/button.scss +1 -1
- package/src/components/base/form/form_checkbox/form_checkbox.scss +44 -12
- package/src/components/base/form/form_input/form_input.scss +1 -1
- package/src/components/base/form/form_select/form_select.scss +1 -1
- package/src/components/base/modal/modal.stories.js +8 -0
- package/src/components/base/modal/modal.vue +12 -5
- package/src/scss/mixins.spec.scss +2 -2
- package/src/scss/run_scss_tests.spec.js +8 -0
- package/src/scss/utilities.scss +12 -0
- package/src/scss/utility-mixins/flex.scss +6 -0
- package/src/scss/variables.scss +3 -4
- package/src/utils/constants.js +2 -5
package/src/utils/constants.js
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
glThemes as glThemesVariable,
|
|
3
|
-
glIconSizes as glIconSizesVariable,
|
|
4
|
-
} from '../../scss_to_js/scss_variables'; // eslint-disable-line import/no-unresolved
|
|
1
|
+
import { glIconSizes as glIconSizesVariable } from '../../scss_to_js/scss_variables'; // eslint-disable-line import/no-unresolved
|
|
5
2
|
|
|
6
3
|
import { POSITION } from '../components/utilities/truncate/constants';
|
|
7
4
|
|
|
@@ -11,7 +8,7 @@ function appendDefaultOption(options) {
|
|
|
11
8
|
|
|
12
9
|
export const COMMA = ',';
|
|
13
10
|
|
|
14
|
-
export const glThemes =
|
|
11
|
+
export const glThemes = ['indigo', 'blue', 'light-blue', 'green', 'red', 'light-red'];
|
|
15
12
|
|
|
16
13
|
export const variantOptions = {
|
|
17
14
|
primary: 'primary',
|