@blueking/ediatable 0.0.1-beta.4 → 0.0.1-beta.5

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/vue3/vue3.css CHANGED
@@ -35,6 +35,44 @@ url("data:application/vnd.ms-fontobject;base64,9AgAAEwIAAABAAIAAAAAAAIABQMAAAAAA
35
35
  .icon-plus-fill:before {
36
36
  content: "\e102";
37
37
  }
38
+ .bk-ediatable-head-column.is-required {
39
+ position: relative;
40
+ }
41
+ .bk-ediatable-head-column.is-required::after {
42
+ position: absolute;
43
+ top: 0;
44
+ margin-left: 4px;
45
+ font-size: 12px;
46
+ line-height: 40px;
47
+ color: #ea3636;
48
+ content: '*';
49
+ }
50
+ .bk-ediatable-head-column.is-right-fixed {
51
+ position: sticky;
52
+ right: 1px;
53
+ }
54
+ .bk-ediatable-head-column.is-right-fixed::before {
55
+ position: absolute;
56
+ top: 0;
57
+ left: -10px;
58
+ width: 10px;
59
+ height: 100%;
60
+ background: linear-gradient(to left, rgba(0, 0, 0, 0.12), transparent);
61
+ content: '';
62
+ }
63
+ .bk-ediatable-head-column.is-left-fixed {
64
+ position: sticky;
65
+ left: 1px;
66
+ }
67
+ .bk-ediatable-head-column.is-left-fixed::before {
68
+ position: absolute;
69
+ top: 0;
70
+ right: -10px;
71
+ width: 10px;
72
+ height: 100%;
73
+ background: linear-gradient(to right, rgba(0, 0, 0, 0.12), transparent);
74
+ content: '';
75
+ }
38
76
  .tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;white-space:normal;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1}.tippy-box[data-theme~=light]{color:#26323d;box-shadow:0 0 20px 4px rgba(154,161,177,.15),0 4px 80px -8px rgba(36,40,47,.25),0 4px 4px -2px rgba(91,94,105,.15);background-color:#fff}.tippy-box[data-theme~=light][data-placement^=top]>.tippy-arrow:before{border-top-color:#fff}.tippy-box[data-theme~=light][data-placement^=bottom]>.tippy-arrow:before{border-bottom-color:#fff}.tippy-box[data-theme~=light][data-placement^=left]>.tippy-arrow:before{border-left-color:#fff}.tippy-box[data-theme~=light][data-placement^=right]>.tippy-arrow:before{border-right-color:#fff}.tippy-box[data-theme~=light]>.tippy-backdrop{background-color:#fff}.tippy-box[data-theme~=light]>.tippy-svg-arrow{fill:#fff}.bk-ediatable {
39
77
  position: relative;
40
78
  width: 100%;
@@ -248,44 +286,6 @@ url("data:application/vnd.ms-fontobject;base64,9AgAAEwIAAABAAIAAAAAAAIABQMAAAAAA
248
286
  background: linear-gradient(to right, rgba(0, 0, 0, 0.12), transparent);
249
287
  content: '';
250
288
  }
251
- .bk-ediatable-head-column.is-required {
252
- position: relative;
253
- }
254
- .bk-ediatable-head-column.is-required::after {
255
- position: absolute;
256
- top: 0;
257
- margin-left: 4px;
258
- font-size: 12px;
259
- line-height: 40px;
260
- color: #ea3636;
261
- content: '*';
262
- }
263
- .bk-ediatable-head-column.is-right-fixed {
264
- position: sticky;
265
- right: 1px;
266
- }
267
- .bk-ediatable-head-column.is-right-fixed::before {
268
- position: absolute;
269
- top: 0;
270
- left: -10px;
271
- width: 10px;
272
- height: 100%;
273
- background: linear-gradient(to left, rgba(0, 0, 0, 0.12), transparent);
274
- content: '';
275
- }
276
- .bk-ediatable-head-column.is-left-fixed {
277
- position: sticky;
278
- left: 1px;
279
- }
280
- .bk-ediatable-head-column.is-left-fixed::before {
281
- position: absolute;
282
- top: 0;
283
- right: -10px;
284
- width: 10px;
285
- height: 100%;
286
- background: linear-gradient(to right, rgba(0, 0, 0, 0.12), transparent);
287
- content: '';
288
- }
289
289
  .bk-ediatable-operation {
290
290
  display: flex;
291
291
  height: 42px;