@bagelink/vue 0.0.435 → 0.0.439
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/components/TableSchema.vue.d.ts +26 -0
- package/dist/components/TableSchema.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/SelectInput.vue.d.ts +5 -0
- package/dist/components/form/inputs/SelectInput.vue.d.ts.map +1 -1
- package/dist/index.cjs +54 -29
- package/dist/index.mjs +54 -29
- package/dist/style.css +151 -110
- package/package.json +1 -1
- package/src/components/TableSchema.vue +16 -4
- package/src/components/form/inputs/SelectInput.vue +23 -14
- package/src/styles/bagel.css +60 -8
- package/src/styles/modal.css +74 -75
- package/src/styles/scrollbar.css +1 -2
package/src/styles/modal.css
CHANGED
|
@@ -1,118 +1,117 @@
|
|
|
1
1
|
.bg-dark {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
2
|
+
position: fixed;
|
|
3
|
+
top: 0;
|
|
4
|
+
right: 0;
|
|
5
|
+
left: 0;
|
|
6
|
+
bottom: 0;
|
|
7
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
8
|
+
z-index: 999;
|
|
9
|
+
pointer-events: none;
|
|
10
|
+
opacity: 0;
|
|
11
|
+
transition: all ease-in-out 0.3s;
|
|
12
|
+
max-height: 100vh;
|
|
13
|
+
overflow: scroll;
|
|
14
|
+
margin: 0 auto;
|
|
15
|
+
width: 100%;
|
|
16
|
+
display: grid;
|
|
17
|
+
align-items: center;
|
|
18
|
+
overflow-x: hidden;
|
|
18
19
|
}
|
|
19
20
|
|
|
21
|
+
|
|
20
22
|
.bg-lignt {
|
|
21
|
-
|
|
23
|
+
background-color: var(--bgl-white);
|
|
22
24
|
}
|
|
23
25
|
|
|
24
26
|
.modal {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
27
|
+
width: 96%;
|
|
28
|
+
max-width: 720px;
|
|
29
|
+
/* transform: scale(0.5); */
|
|
30
|
+
/* opacity: 0; */
|
|
31
|
+
transition: all ease-in-out 0.18s;
|
|
32
|
+
margin-left: auto;
|
|
33
|
+
margin-right: auto;
|
|
34
|
+
height: fit-content;
|
|
33
35
|
}
|
|
34
36
|
|
|
35
37
|
.small-modal .modal {
|
|
36
|
-
|
|
37
|
-
|
|
38
|
+
max-width: 300px;
|
|
39
|
+
text-align: center;
|
|
38
40
|
}
|
|
39
41
|
|
|
40
42
|
.tool-bar {
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
43
|
+
margin: -2rem -1rem 1rem;
|
|
44
|
+
display: flex;
|
|
45
|
+
justify-content: space-between;
|
|
46
|
+
position: -webkit-sticky;
|
|
47
|
+
position: sticky;
|
|
48
|
+
padding-top: 1rem;
|
|
49
|
+
top: 0rem;
|
|
50
|
+
z-index: 3;
|
|
51
|
+
background: var(--bgl-white);
|
|
50
52
|
}
|
|
51
53
|
|
|
52
54
|
.modal-size {
|
|
53
|
-
|
|
55
|
+
cursor: pointer;
|
|
54
56
|
}
|
|
55
57
|
|
|
56
58
|
.is-side .modal {
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
margin-inline-end: 20px;
|
|
69
|
-
min-height: calc(100vh - 40px);
|
|
70
|
-
transform: translateX(100%);
|
|
59
|
+
inset-inline-end: -1720px;
|
|
60
|
+
transform: scale(1);
|
|
61
|
+
opacity: 1;
|
|
62
|
+
max-width: 600px;
|
|
63
|
+
width: 90%;
|
|
64
|
+
margin-top: 20px;
|
|
65
|
+
margin-bottom: 20px;
|
|
66
|
+
margin-inline-start: auto;
|
|
67
|
+
margin-inline-end: 20px;
|
|
68
|
+
min-height: calc(100vh - 40px);
|
|
69
|
+
transform: translateX(100%);
|
|
71
70
|
}
|
|
72
71
|
|
|
73
72
|
.is-active .modal {
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
73
|
+
transform: scale(1);
|
|
74
|
+
opacity: 1;
|
|
75
|
+
box-shadow: 6px 6px 20px 20px #0000001c;
|
|
77
76
|
}
|
|
78
77
|
|
|
79
78
|
.bg-lignt .modal {
|
|
80
|
-
|
|
81
|
-
|
|
79
|
+
transform: scale(1);
|
|
80
|
+
border: 1px solid var(--border-color);
|
|
82
81
|
}
|
|
83
82
|
|
|
84
83
|
.bg-lignt.is-active .modal {
|
|
85
|
-
|
|
84
|
+
box-shadow: none;
|
|
86
85
|
}
|
|
87
86
|
|
|
88
87
|
.is-active.is-side .modal {
|
|
89
|
-
|
|
90
|
-
|
|
88
|
+
inset-inline-end: 0px;
|
|
89
|
+
transform: translateX(0%);
|
|
91
90
|
}
|
|
92
91
|
|
|
93
92
|
.bg-dark.is-active {
|
|
94
|
-
|
|
95
|
-
|
|
93
|
+
opacity: 1;
|
|
94
|
+
pointer-events: all;
|
|
96
95
|
}
|
|
97
96
|
|
|
98
97
|
.is-side.bg-dark.is-active {
|
|
99
|
-
|
|
100
|
-
|
|
98
|
+
opacity: 1;
|
|
99
|
+
align-items: stretch;
|
|
101
100
|
}
|
|
102
101
|
|
|
103
102
|
.is-side.is-active .modal {
|
|
104
|
-
|
|
103
|
+
pointer-events: all;
|
|
105
104
|
}
|
|
106
105
|
|
|
107
106
|
@media screen and (max-width: 910px) {
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
}
|
|
107
|
+
.tool-bar {
|
|
108
|
+
margin: -1rem 0rem 1rem;
|
|
109
|
+
padding-bottom: 1rem;
|
|
110
|
+
align-items: center;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.is-active.is-side .modal {
|
|
114
|
+
margin-inline-end: 5%;
|
|
115
|
+
margin-inline-start: 5%;
|
|
116
|
+
}
|
|
117
|
+
}
|
package/src/styles/scrollbar.css
CHANGED