@gemx-dev/clarity-visualize 0.8.48 → 0.8.49
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.
|
@@ -1201,24 +1201,6 @@ var sharedStyle = `iframe[data-clarity-unavailable-small], iframe[data-clarity-u
|
|
|
1201
1201
|
border-style: dashed;
|
|
1202
1202
|
border-width: 6px;
|
|
1203
1203
|
border-color: #827DFF;
|
|
1204
|
-
}
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
dialog[open] {
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
z-index: auto;
|
|
1212
|
-
}
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
dialog::backdrop {
|
|
1216
|
-
background: rgba(0, 0, 0, 0.5);
|
|
1217
|
-
}
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
dialog:not([open]) {
|
|
1221
|
-
display: none;
|
|
1222
1204
|
}`;
|
|
1223
1205
|
|
|
1224
1206
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gemx-dev/clarity-visualize",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.49",
|
|
4
4
|
"description": "Clarity visualize",
|
|
5
5
|
"author": "Microsoft Corp.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"unpkg": "build/clarity.visualize.min.js",
|
|
10
10
|
"types": "types/index.d.ts",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@gemx-dev/clarity-decode": "^0.8.
|
|
12
|
+
"@gemx-dev/clarity-decode": "^0.8.49"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@rollup/plugin-commonjs": "^24.0.0",
|
package/src/styles/shared.css
CHANGED
|
@@ -3,22 +3,4 @@ iframe[data-clarity-unavailable-small], iframe[data-clarity-unavailable], img[da
|
|
|
3
3
|
border-style: dashed;
|
|
4
4
|
border-width: 6px;
|
|
5
5
|
border-color: #827DFF;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
/* Dialog top-layer styles */
|
|
9
|
-
/* Ensure modal dialogs appear in the top-layer with proper z-index */
|
|
10
|
-
dialog[open] {
|
|
11
|
-
/* Modal dialogs shown via showModal() are automatically placed in top-layer by the browser */
|
|
12
|
-
/* This ensures proper stacking even during replay */
|
|
13
|
-
z-index: auto;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
/* Style the backdrop for modal dialogs */
|
|
17
|
-
dialog::backdrop {
|
|
18
|
-
background: rgba(0, 0, 0, 0.5);
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
/* Ensure non-modal dialogs (shown via show()) are positioned correctly */
|
|
22
|
-
dialog:not([open]) {
|
|
23
|
-
display: none;
|
|
24
6
|
}
|