jsegd-bpm 0.1.0 → 0.1.2
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/jsegd-bpm.js +1 -1
- package/dist/jsegd-bpm.js.map +1 -1
- package/package.json +2 -2
- package/dist/assets/workflow-C51JnySw.css +0 -72
- package/dist/jsegd-fluig.d.ts +0 -892
- package/dist/jsegd-fluig.js +0 -2
- package/dist/jsegd-fluig.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jsegd-bpm",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Biblioteca runtime para desenvolvimento EGD BPM — EGD Tecnologia",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "dist/jsegd-bpm.d.ts",
|
|
@@ -54,6 +54,6 @@
|
|
|
54
54
|
"README.md"
|
|
55
55
|
],
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"jsegd": "^1.1.
|
|
57
|
+
"jsegd": "^1.1.2"
|
|
58
58
|
}
|
|
59
59
|
}
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
:host {
|
|
2
|
-
display: inline-block;
|
|
3
|
-
position: relative;
|
|
4
|
-
font-family: Arial, sans-serif;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.dropdown {
|
|
8
|
-
position: relative;
|
|
9
|
-
display: inline-block;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.dropdown-button {
|
|
13
|
-
background-color: #fff;
|
|
14
|
-
color: #555;
|
|
15
|
-
padding: 6px 10px;
|
|
16
|
-
font-size: 14px;
|
|
17
|
-
border: 1px solid #ccc;
|
|
18
|
-
cursor: pointer;
|
|
19
|
-
border-radius: 0 5px 5px 0;
|
|
20
|
-
display: flex;
|
|
21
|
-
align-items: center;
|
|
22
|
-
gap: 5px;
|
|
23
|
-
height: 32px;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.dropdown-button:hover {
|
|
27
|
-
color: #555;
|
|
28
|
-
border-color: #adadad;
|
|
29
|
-
background-color: #e6e6e6;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.dropdown-menu {
|
|
33
|
-
display: none;
|
|
34
|
-
position: absolute;
|
|
35
|
-
top: 100%;
|
|
36
|
-
right: 0;
|
|
37
|
-
background-color: #fff;
|
|
38
|
-
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
|
|
39
|
-
min-width: 150px;
|
|
40
|
-
list-style: none;
|
|
41
|
-
padding: 0;
|
|
42
|
-
margin: 0;
|
|
43
|
-
border-radius: 0 0 2px 2px;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.dropdown-menu a {
|
|
47
|
-
display: flex;
|
|
48
|
-
gap: 10px;
|
|
49
|
-
padding: 5px;
|
|
50
|
-
box-sizing: border-box;
|
|
51
|
-
width: 100%;
|
|
52
|
-
text-decoration: none;
|
|
53
|
-
color: #333;
|
|
54
|
-
font-size: 14px;
|
|
55
|
-
justify-content: end;
|
|
56
|
-
align-items: center;
|
|
57
|
-
line-height: 1.5rem;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.dropdown-menu a:hover {
|
|
61
|
-
background-color: #f1f1f1;
|
|
62
|
-
color: #1d1b1b;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.dropdown:hover .dropdown-menu {
|
|
66
|
-
display: block;
|
|
67
|
-
z-index: 9999;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
.fs-display-none {
|
|
71
|
-
display: none !important;
|
|
72
|
-
}
|