xframelib 0.4.9 → 0.5.4

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/index.css CHANGED
@@ -29,6 +29,51 @@
29
29
  background-color: var(--bg-color-body);
30
30
  }
31
31
 
32
+ .vcp__header {
33
+ display: flex;
34
+ padding: 12px;
35
+ pointer-events: none;
36
+ }
37
+ .vcp--expandable .vcp__header {
38
+ pointer-events: auto;
39
+ cursor: pointer;
40
+ }
41
+ .vcp__header-title {
42
+ display: flex;
43
+ align-items: center;
44
+ flex: 1;
45
+ }
46
+ .vcp__header-icon {
47
+ display: flex;
48
+ align-items: center;
49
+ transition: transform 0.3s cubic-bezier(0.5, 0.25, 0, 1);
50
+ }
51
+ .vcp--expanded .vcp__header-icon {
52
+ transform-origin: center;
53
+ transform: rotate(180deg);
54
+ }
55
+ .vcp__header-icon > span {
56
+ display: flex;
57
+ height: 24px;
58
+ width: 24px;
59
+ }
60
+ .vcp__header-icon ::v-deep(svg) {
61
+ height: 100%;
62
+ width: 100%;
63
+ }
64
+ .vcp__body {
65
+ overflow: hidden;
66
+ transition: all 0.3s cubic-bezier(0.5, 0.25, 0, 1);
67
+ }
68
+ .vcp__body-content {
69
+ padding: 12px;
70
+ }
71
+
72
+ .slide-enter-from,
73
+ .slide-leave-to {
74
+ opacity: 0.25;
75
+ }
76
+
32
77
  .splitpanes {
33
78
  display: flex;
34
79
  width: 100%;
@@ -208,51 +253,6 @@
208
253
  pointer-events: none;
209
254
  }
210
255
 
211
- .vcp__header {
212
- display: flex;
213
- padding: 12px;
214
- pointer-events: none;
215
- }
216
- .vcp--expandable .vcp__header {
217
- pointer-events: auto;
218
- cursor: pointer;
219
- }
220
- .vcp__header-title {
221
- display: flex;
222
- align-items: center;
223
- flex: 1;
224
- }
225
- .vcp__header-icon {
226
- display: flex;
227
- align-items: center;
228
- transition: transform 0.3s cubic-bezier(0.5, 0.25, 0, 1);
229
- }
230
- .vcp--expanded .vcp__header-icon {
231
- transform-origin: center;
232
- transform: rotate(180deg);
233
- }
234
- .vcp__header-icon > span {
235
- display: flex;
236
- height: 24px;
237
- width: 24px;
238
- }
239
- .vcp__header-icon ::v-deep(svg) {
240
- height: 100%;
241
- width: 100%;
242
- }
243
- .vcp__body {
244
- overflow: hidden;
245
- transition: all 0.3s cubic-bezier(0.5, 0.25, 0, 1);
246
- }
247
- .vcp__body-content {
248
- padding: 12px;
249
- }
250
-
251
- .slide-enter-from,
252
- .slide-leave-to {
253
- opacity: 0.25;
254
- }
255
-
256
256
  .window {
257
257
  display: flex;
258
258
  flex-flow: column;
package/dist/index.d.ts CHANGED
@@ -8,3 +8,4 @@ export * from './utils';
8
8
  export * from './hprose';
9
9
  export * from './api';
10
10
  export * from './model';
11
+ export * from './permission';