@gitlab/ui 137.0.1 → 137.0.3
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.
|
@@ -96,14 +96,12 @@ const componentUpdated = (el, binding, vnode) => {
|
|
|
96
96
|
// is still set for accessibility
|
|
97
97
|
setRole(trigger);
|
|
98
98
|
};
|
|
99
|
-
const updated = () => {};
|
|
100
99
|
|
|
101
100
|
/*
|
|
102
101
|
* Export our directive
|
|
103
102
|
*/
|
|
104
103
|
const VBModal = {
|
|
105
104
|
inserted: componentUpdated,
|
|
106
|
-
updated,
|
|
107
105
|
componentUpdated,
|
|
108
106
|
unbind
|
|
109
107
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitlab/ui",
|
|
3
|
-
"version": "137.0.
|
|
3
|
+
"version": "137.0.3",
|
|
4
4
|
"description": "GitLab UI Components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -131,7 +131,7 @@
|
|
|
131
131
|
"@vue/compiler-sfc": "3.5.32",
|
|
132
132
|
"@vue/server-renderer": "3.5.32",
|
|
133
133
|
"@vue/test-utils": "1.3.6",
|
|
134
|
-
"@vue/test-utils-vue3": "npm:@vue/test-utils@^2.
|
|
134
|
+
"@vue/test-utils-vue3": "npm:@vue/test-utils@^2.5.0",
|
|
135
135
|
"@vue/vue2-jest": "29.2.6",
|
|
136
136
|
"@vue/vue3-jest": "^29.2.6",
|
|
137
137
|
"@yarnpkg/lockfile": "^1.1.0",
|
|
@@ -140,17 +140,17 @@
|
|
|
140
140
|
"autoprefixer": "10.5.4",
|
|
141
141
|
"axe-playwright": "^2.2.2",
|
|
142
142
|
"babel-loader": "^9.2.1",
|
|
143
|
-
"cypress": "15.21.
|
|
143
|
+
"cypress": "15.21.1",
|
|
144
144
|
"cypress-real-events": "^1.15.0",
|
|
145
145
|
"dompurify": "^3.1.2",
|
|
146
146
|
"emoji-regex": "^10.6.0",
|
|
147
147
|
"gitlab-api-async-iterator": "^1.3.1",
|
|
148
148
|
"glob": "11.1.0",
|
|
149
149
|
"identity-obj-proxy": "^3.0.0",
|
|
150
|
-
"jest": "30.
|
|
151
|
-
"jest-circus": "30.
|
|
152
|
-
"jest-environment-jsdom": "30.
|
|
153
|
-
"jest-environment-node": "30.
|
|
150
|
+
"jest": "30.5.0",
|
|
151
|
+
"jest-circus": "30.5.0",
|
|
152
|
+
"jest-environment-jsdom": "30.5.0",
|
|
153
|
+
"jest-environment-node": "30.5.0",
|
|
154
154
|
"jest-image-snapshot": "^6.5.2",
|
|
155
155
|
"merge-cobertura": "^1.0.9",
|
|
156
156
|
"mockdate": "^3.0.5",
|
|
@@ -140,6 +140,10 @@
|
|
|
140
140
|
}
|
|
141
141
|
}
|
|
142
142
|
|
|
143
|
+
.custom-control-input:not(:disabled) ~ .custom-control-label {
|
|
144
|
+
@apply gl-text-default;
|
|
145
|
+
}
|
|
146
|
+
|
|
143
147
|
&.custom-checkbox {
|
|
144
148
|
.custom-control-input:indeterminate ~ .custom-control-label::before {
|
|
145
149
|
background-color: var(--gl-control-background-color-selected-default);
|
|
@@ -102,14 +102,11 @@ const componentUpdated = (el, binding, vnode) => {
|
|
|
102
102
|
setRole(trigger)
|
|
103
103
|
}
|
|
104
104
|
|
|
105
|
-
const updated = () => {}
|
|
106
|
-
|
|
107
105
|
/*
|
|
108
106
|
* Export our directive
|
|
109
107
|
*/
|
|
110
108
|
export const VBModal = {
|
|
111
109
|
inserted: componentUpdated,
|
|
112
|
-
updated,
|
|
113
110
|
componentUpdated,
|
|
114
111
|
unbind
|
|
115
112
|
}
|