qstd 0.3.34 → 0.3.35
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/dist/preset/index.cjs
CHANGED
|
@@ -222,7 +222,7 @@ var preset = {
|
|
|
222
222
|
debug: {
|
|
223
223
|
values: { type: "boolean" },
|
|
224
224
|
transform(value) {
|
|
225
|
-
if (value === true) return { border: "1px solid red" };
|
|
225
|
+
if (value === true) return { border: "1px solid red", outline: "none" };
|
|
226
226
|
if (typeof value === "string") {
|
|
227
227
|
const parts = value.trim().split(/\s+/);
|
|
228
228
|
let borderWidth = "1px", borderStyle = "solid", borderColor = "red";
|
|
@@ -256,10 +256,11 @@ var preset = {
|
|
|
256
256
|
return {
|
|
257
257
|
borderWidth,
|
|
258
258
|
borderStyle,
|
|
259
|
-
borderColor: normalizedBorderColor
|
|
259
|
+
borderColor: normalizedBorderColor,
|
|
260
|
+
outline: "none"
|
|
260
261
|
};
|
|
261
262
|
}
|
|
262
|
-
return { border: "1px solid red" };
|
|
263
|
+
return { border: "1px solid red", outline: "none" };
|
|
263
264
|
}
|
|
264
265
|
},
|
|
265
266
|
cols: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/preset/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAE5C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,QAAA,MAAM,MAAM,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/preset/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAE5C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,QAAA,MAAM,MAAM,EAAE,MA2hBb,CAAC;AAEF,eAAe,MAAM,CAAC"}
|
package/dist/preset/index.js
CHANGED
|
@@ -220,7 +220,7 @@ var preset = {
|
|
|
220
220
|
debug: {
|
|
221
221
|
values: { type: "boolean" },
|
|
222
222
|
transform(value) {
|
|
223
|
-
if (value === true) return { border: "1px solid red" };
|
|
223
|
+
if (value === true) return { border: "1px solid red", outline: "none" };
|
|
224
224
|
if (typeof value === "string") {
|
|
225
225
|
const parts = value.trim().split(/\s+/);
|
|
226
226
|
let borderWidth = "1px", borderStyle = "solid", borderColor = "red";
|
|
@@ -254,10 +254,11 @@ var preset = {
|
|
|
254
254
|
return {
|
|
255
255
|
borderWidth,
|
|
256
256
|
borderStyle,
|
|
257
|
-
borderColor: normalizedBorderColor
|
|
257
|
+
borderColor: normalizedBorderColor,
|
|
258
|
+
outline: "none"
|
|
258
259
|
};
|
|
259
260
|
}
|
|
260
|
-
return { border: "1px solid red" };
|
|
261
|
+
return { border: "1px solid red", outline: "none" };
|
|
261
262
|
}
|
|
262
263
|
},
|
|
263
264
|
cols: {
|