@evercam/ui 0.0.64 → 0.0.65-preview-evercam-copilot-4a99fc2fa
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/README.md +1 -1
- package/dist/attributes.json +292 -0
- package/dist/components/EActionButton.vue.d.ts +14 -0
- package/dist/components/EFadeTransition.vue.d.ts +5 -0
- package/dist/components/EFlagIcon.vue.d.ts +3 -0
- package/dist/components/EImagePlayer.vue.d.ts +100 -0
- package/dist/components/EImagesComparator.vue.d.ts +31 -0
- package/dist/components/ELayout.vue.d.ts +32 -0
- package/dist/components/ETimeline.vue.d.ts +11 -2
- package/dist/components/EToggleSwitch.vue.d.ts +3 -3
- package/dist/components/ETooltip.vue.d.ts +11 -0
- package/dist/components/EZoomSlider.vue.d.ts +3 -0
- package/dist/components/EZoomableImg.vue.d.ts +154 -0
- package/dist/components/svgIcons/Robot.vue.d.ts +3 -0
- package/dist/components/svgIcons/Tag.vue.d.ts +6 -0
- package/dist/components/svgIcons/TagPlus.vue.d.ts +6 -0
- package/dist/components/svgIcons/index.d.ts +8 -2
- package/dist/constants.d.ts +3 -1
- package/dist/index.d.ts +348 -5
- package/dist/index.mjs +9355 -2972
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +12 -10
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/styles.css +202 -0
- package/dist/tags.json +97 -2
- package/dist/types.d.ts +22 -0
- package/dist/utils.d.ts +1 -0
- package/dist/web-types.json +661 -2
- package/package.json +5 -2
package/dist/styles.css
CHANGED
|
@@ -171,6 +171,9 @@
|
|
|
171
171
|
.e-bottom-0{
|
|
172
172
|
bottom: 0px;
|
|
173
173
|
}
|
|
174
|
+
.e-bottom-10{
|
|
175
|
+
bottom: 2.5rem;
|
|
176
|
+
}
|
|
174
177
|
.e-end-0{
|
|
175
178
|
inset-inline-end: 0px;
|
|
176
179
|
}
|
|
@@ -183,12 +186,24 @@
|
|
|
183
186
|
.e-top-0{
|
|
184
187
|
top: 0px;
|
|
185
188
|
}
|
|
189
|
+
.e-z-0{
|
|
190
|
+
z-index: 0;
|
|
191
|
+
}
|
|
192
|
+
.e-z-10{
|
|
193
|
+
z-index: 10;
|
|
194
|
+
}
|
|
186
195
|
.e-z-50{
|
|
187
196
|
z-index: 50;
|
|
188
197
|
}
|
|
189
198
|
.e-z-\[-1\]{
|
|
190
199
|
z-index: -1;
|
|
191
200
|
}
|
|
201
|
+
.e-z-\[1\]{
|
|
202
|
+
z-index: 1;
|
|
203
|
+
}
|
|
204
|
+
.e-z-\[2\]{
|
|
205
|
+
z-index: 2;
|
|
206
|
+
}
|
|
192
207
|
.e-z-\[5\]{
|
|
193
208
|
z-index: 5;
|
|
194
209
|
}
|
|
@@ -3470,6 +3485,9 @@
|
|
|
3470
3485
|
.e-hidden{
|
|
3471
3486
|
display: none;
|
|
3472
3487
|
}
|
|
3488
|
+
.e-h-0{
|
|
3489
|
+
height: 0px;
|
|
3490
|
+
}
|
|
3473
3491
|
.e-h-10{
|
|
3474
3492
|
height: 2.5rem;
|
|
3475
3493
|
}
|
|
@@ -3518,6 +3536,9 @@
|
|
|
3518
3536
|
.\!e-w-full{
|
|
3519
3537
|
width: 100% !important;
|
|
3520
3538
|
}
|
|
3539
|
+
.e-w-0{
|
|
3540
|
+
width: 0px;
|
|
3541
|
+
}
|
|
3521
3542
|
.e-w-10{
|
|
3522
3543
|
width: 2.5rem;
|
|
3523
3544
|
}
|
|
@@ -3557,6 +3578,9 @@
|
|
|
3557
3578
|
.e-w-full{
|
|
3558
3579
|
width: 100%;
|
|
3559
3580
|
}
|
|
3581
|
+
.e-w-max{
|
|
3582
|
+
width: max-content;
|
|
3583
|
+
}
|
|
3560
3584
|
.e-w-px{
|
|
3561
3585
|
width: 1px;
|
|
3562
3586
|
}
|
|
@@ -3644,6 +3668,9 @@
|
|
|
3644
3668
|
.e-max-w-\[5rem\]{
|
|
3645
3669
|
max-width: 5rem;
|
|
3646
3670
|
}
|
|
3671
|
+
.e-shrink-0{
|
|
3672
|
+
flex-shrink: 0;
|
|
3673
|
+
}
|
|
3647
3674
|
.\!e-grow{
|
|
3648
3675
|
flex-grow: 1 !important;
|
|
3649
3676
|
}
|
|
@@ -3976,6 +4003,11 @@
|
|
|
3976
4003
|
.e-gap-x-1\.5{
|
|
3977
4004
|
column-gap: 0.375rem;
|
|
3978
4005
|
}
|
|
4006
|
+
.e-space-y-4 > :not([hidden]) ~ :not([hidden]){
|
|
4007
|
+
--tw-space-y-reverse: 0;
|
|
4008
|
+
margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
|
|
4009
|
+
margin-bottom: calc(1rem * var(--tw-space-y-reverse));
|
|
4010
|
+
}
|
|
3979
4011
|
.e-place-self-start{
|
|
3980
4012
|
place-self: start;
|
|
3981
4013
|
}
|
|
@@ -4023,6 +4055,17 @@
|
|
|
4023
4055
|
.e-rounded-md{
|
|
4024
4056
|
border-radius: 0.375rem;
|
|
4025
4057
|
}
|
|
4058
|
+
.e-rounded-none{
|
|
4059
|
+
border-radius: 0px;
|
|
4060
|
+
}
|
|
4061
|
+
.e-rounded-b-md{
|
|
4062
|
+
border-bottom-right-radius: 0.375rem;
|
|
4063
|
+
border-bottom-left-radius: 0.375rem;
|
|
4064
|
+
}
|
|
4065
|
+
.e-rounded-t-md{
|
|
4066
|
+
border-top-left-radius: 0.375rem;
|
|
4067
|
+
border-top-right-radius: 0.375rem;
|
|
4068
|
+
}
|
|
4026
4069
|
.e-border{
|
|
4027
4070
|
border-width: 1px;
|
|
4028
4071
|
}
|
|
@@ -4032,6 +4075,10 @@
|
|
|
4032
4075
|
.e-border-none{
|
|
4033
4076
|
border-style: none;
|
|
4034
4077
|
}
|
|
4078
|
+
.e-border-black{
|
|
4079
|
+
--tw-border-opacity: 1;
|
|
4080
|
+
border-color: rgb(0 0 0 / var(--tw-border-opacity));
|
|
4081
|
+
}
|
|
4035
4082
|
.e-border-gray-300{
|
|
4036
4083
|
--tw-border-opacity: 1;
|
|
4037
4084
|
border-color: rgb(209 213 219 / var(--tw-border-opacity));
|
|
@@ -4040,6 +4087,37 @@
|
|
|
4040
4087
|
--tw-border-opacity: 1;
|
|
4041
4088
|
border-color: rgb(55 65 81 / var(--tw-border-opacity));
|
|
4042
4089
|
}
|
|
4090
|
+
.e-border-transparent{
|
|
4091
|
+
border-color: transparent;
|
|
4092
|
+
}
|
|
4093
|
+
.e-border-b-blue-700{
|
|
4094
|
+
--tw-border-opacity: 1;
|
|
4095
|
+
border-bottom-color: rgb(29 78 216 / var(--tw-border-opacity));
|
|
4096
|
+
}
|
|
4097
|
+
.e-border-b-brand-900{
|
|
4098
|
+
--tw-border-opacity: 1;
|
|
4099
|
+
border-bottom-color: rgb(41 5 6 / var(--tw-border-opacity));
|
|
4100
|
+
}
|
|
4101
|
+
.e-border-b-gray-800{
|
|
4102
|
+
--tw-border-opacity: 1;
|
|
4103
|
+
border-bottom-color: rgb(31 41 55 / var(--tw-border-opacity));
|
|
4104
|
+
}
|
|
4105
|
+
.e-border-b-green-900{
|
|
4106
|
+
--tw-border-opacity: 1;
|
|
4107
|
+
border-bottom-color: rgb(20 83 45 / var(--tw-border-opacity));
|
|
4108
|
+
}
|
|
4109
|
+
.e-border-b-orange-700{
|
|
4110
|
+
--tw-border-opacity: 1;
|
|
4111
|
+
border-bottom-color: rgb(194 65 12 / var(--tw-border-opacity));
|
|
4112
|
+
}
|
|
4113
|
+
.e-border-b-red-700{
|
|
4114
|
+
--tw-border-opacity: 1;
|
|
4115
|
+
border-bottom-color: rgb(185 28 28 / var(--tw-border-opacity));
|
|
4116
|
+
}
|
|
4117
|
+
.e-border-b-sky-500{
|
|
4118
|
+
--tw-border-opacity: 1;
|
|
4119
|
+
border-bottom-color: rgb(14 165 233 / var(--tw-border-opacity));
|
|
4120
|
+
}
|
|
4043
4121
|
.\!e-bg-brand-100{
|
|
4044
4122
|
--tw-bg-opacity: 1 !important;
|
|
4045
4123
|
background-color: rgb(249 205 206 / var(--tw-bg-opacity)) !important;
|
|
@@ -5388,6 +5466,14 @@
|
|
|
5388
5466
|
--tw-bg-opacity: 1;
|
|
5389
5467
|
background-color: rgb(245 158 11 / var(--tw-bg-opacity));
|
|
5390
5468
|
}
|
|
5469
|
+
.e-bg-black{
|
|
5470
|
+
--tw-bg-opacity: 1;
|
|
5471
|
+
background-color: rgb(0 0 0 / var(--tw-bg-opacity));
|
|
5472
|
+
}
|
|
5473
|
+
.e-bg-blue-700{
|
|
5474
|
+
--tw-bg-opacity: 1;
|
|
5475
|
+
background-color: rgb(29 78 216 / var(--tw-bg-opacity));
|
|
5476
|
+
}
|
|
5391
5477
|
.e-bg-brand-100{
|
|
5392
5478
|
--tw-bg-opacity: 1;
|
|
5393
5479
|
background-color: rgb(249 205 206 / var(--tw-bg-opacity));
|
|
@@ -6208,6 +6294,10 @@
|
|
|
6208
6294
|
--tw-bg-opacity: 1;
|
|
6209
6295
|
background-color: rgb(75 85 99 / var(--tw-bg-opacity));
|
|
6210
6296
|
}
|
|
6297
|
+
.e-bg-gray-800{
|
|
6298
|
+
--tw-bg-opacity: 1;
|
|
6299
|
+
background-color: rgb(31 41 55 / var(--tw-bg-opacity));
|
|
6300
|
+
}
|
|
6211
6301
|
.e-bg-gray-900{
|
|
6212
6302
|
--tw-bg-opacity: 1;
|
|
6213
6303
|
background-color: rgb(17 24 39 / var(--tw-bg-opacity));
|
|
@@ -6216,6 +6306,10 @@
|
|
|
6216
6306
|
--tw-bg-opacity: 1;
|
|
6217
6307
|
background-color: rgb(22 163 74 / var(--tw-bg-opacity));
|
|
6218
6308
|
}
|
|
6309
|
+
.e-bg-green-900{
|
|
6310
|
+
--tw-bg-opacity: 1;
|
|
6311
|
+
background-color: rgb(20 83 45 / var(--tw-bg-opacity));
|
|
6312
|
+
}
|
|
6219
6313
|
.e-bg-info-darken{
|
|
6220
6314
|
--tw-bg-opacity: 1;
|
|
6221
6315
|
background-color: rgb(8 145 178 / var(--tw-bg-opacity));
|
|
@@ -6357,6 +6451,10 @@
|
|
|
6357
6451
|
--tw-bg-opacity: 1;
|
|
6358
6452
|
background-color: rgb(132 204 22 / var(--tw-bg-opacity));
|
|
6359
6453
|
}
|
|
6454
|
+
.e-bg-orange-700{
|
|
6455
|
+
--tw-bg-opacity: 1;
|
|
6456
|
+
background-color: rgb(194 65 12 / var(--tw-bg-opacity));
|
|
6457
|
+
}
|
|
6360
6458
|
.e-bg-primary-darken{
|
|
6361
6459
|
--tw-bg-opacity: 1;
|
|
6362
6460
|
background-color: rgb(2 132 199 / var(--tw-bg-opacity));
|
|
@@ -6491,6 +6589,10 @@
|
|
|
6491
6589
|
.e-bg-primary-lighten\/95{
|
|
6492
6590
|
background-color: rgb(56 189 248 / 0.95);
|
|
6493
6591
|
}
|
|
6592
|
+
.e-bg-red-700{
|
|
6593
|
+
--tw-bg-opacity: 1;
|
|
6594
|
+
background-color: rgb(185 28 28 / var(--tw-bg-opacity));
|
|
6595
|
+
}
|
|
6494
6596
|
.e-bg-rose-500{
|
|
6495
6597
|
--tw-bg-opacity: 1;
|
|
6496
6598
|
background-color: rgb(244 63 94 / var(--tw-bg-opacity));
|
|
@@ -6786,6 +6888,9 @@
|
|
|
6786
6888
|
.e-to-indigo-500{
|
|
6787
6889
|
--tw-gradient-to: #6366f1 var(--tw-gradient-to-position);
|
|
6788
6890
|
}
|
|
6891
|
+
.e-object-contain{
|
|
6892
|
+
object-fit: contain;
|
|
6893
|
+
}
|
|
6789
6894
|
.e-object-cover{
|
|
6790
6895
|
object-fit: cover;
|
|
6791
6896
|
}
|
|
@@ -8403,24 +8508,87 @@
|
|
|
8403
8508
|
.e-pt-px{
|
|
8404
8509
|
padding-top: 1px;
|
|
8405
8510
|
}
|
|
8511
|
+
.e-text-center{
|
|
8512
|
+
text-align: center;
|
|
8513
|
+
}
|
|
8406
8514
|
.e-align-middle{
|
|
8407
8515
|
vertical-align: middle;
|
|
8408
8516
|
}
|
|
8517
|
+
.\!e-text-2xl{
|
|
8518
|
+
font-size: 1.5rem !important;
|
|
8519
|
+
}
|
|
8520
|
+
.\!e-text-3xl{
|
|
8521
|
+
font-size: 1.875rem !important;
|
|
8522
|
+
}
|
|
8523
|
+
.\!e-text-4xl{
|
|
8524
|
+
font-size: 2.25rem !important;
|
|
8525
|
+
}
|
|
8526
|
+
.\!e-text-5xl{
|
|
8527
|
+
font-size: 3rem !important;
|
|
8528
|
+
}
|
|
8529
|
+
.\!e-text-6xl{
|
|
8530
|
+
font-size: 3.75rem !important;
|
|
8531
|
+
}
|
|
8532
|
+
.\!e-text-7xl{
|
|
8533
|
+
font-size: 4.5rem !important;
|
|
8534
|
+
}
|
|
8535
|
+
.\!e-text-8xl{
|
|
8536
|
+
font-size: 6rem !important;
|
|
8537
|
+
}
|
|
8538
|
+
.\!e-text-9xl{
|
|
8539
|
+
font-size: 8rem !important;
|
|
8540
|
+
}
|
|
8541
|
+
.\!e-text-base{
|
|
8542
|
+
font-size: 1rem !important;
|
|
8543
|
+
}
|
|
8544
|
+
.\!e-text-lg{
|
|
8545
|
+
font-size: 1.125rem !important;
|
|
8546
|
+
}
|
|
8547
|
+
.\!e-text-sm{
|
|
8548
|
+
font-size: 0.875rem !important;
|
|
8549
|
+
}
|
|
8550
|
+
.\!e-text-xl{
|
|
8551
|
+
font-size: 1.25rem !important;
|
|
8552
|
+
}
|
|
8553
|
+
.\!e-text-xs{
|
|
8554
|
+
font-size: 0.75rem !important;
|
|
8555
|
+
}
|
|
8409
8556
|
.e-text-2xl{
|
|
8410
8557
|
font-size: 1.5rem;
|
|
8411
8558
|
}
|
|
8412
8559
|
.e-text-3xl{
|
|
8413
8560
|
font-size: 1.875rem;
|
|
8414
8561
|
}
|
|
8562
|
+
.e-text-4xl{
|
|
8563
|
+
font-size: 2.25rem;
|
|
8564
|
+
}
|
|
8415
8565
|
.e-text-5xl{
|
|
8416
8566
|
font-size: 3rem;
|
|
8417
8567
|
}
|
|
8568
|
+
.e-text-6xl{
|
|
8569
|
+
font-size: 3.75rem;
|
|
8570
|
+
}
|
|
8571
|
+
.e-text-7xl{
|
|
8572
|
+
font-size: 4.5rem;
|
|
8573
|
+
}
|
|
8574
|
+
.e-text-8xl{
|
|
8575
|
+
font-size: 6rem;
|
|
8576
|
+
}
|
|
8577
|
+
.e-text-9xl{
|
|
8578
|
+
font-size: 8rem;
|
|
8579
|
+
}
|
|
8418
8580
|
.e-text-base{
|
|
8419
8581
|
font-size: 1rem;
|
|
8420
8582
|
}
|
|
8583
|
+
.e-text-lg{
|
|
8584
|
+
font-size: 1.125rem;
|
|
8585
|
+
}
|
|
8421
8586
|
.e-text-sm{
|
|
8422
8587
|
font-size: 0.875rem;
|
|
8423
8588
|
}
|
|
8589
|
+
.e-text-xl{
|
|
8590
|
+
font-size: 1.25rem;
|
|
8591
|
+
}
|
|
8424
8592
|
.e-text-xs{
|
|
8425
8593
|
font-size: 0.75rem;
|
|
8426
8594
|
}
|
|
@@ -11173,16 +11341,32 @@
|
|
|
11173
11341
|
--tw-placeholder-opacity: 1;
|
|
11174
11342
|
color: rgb(107 114 128 / var(--tw-placeholder-opacity));
|
|
11175
11343
|
}
|
|
11344
|
+
.e-opacity-0{
|
|
11345
|
+
opacity: 0;
|
|
11346
|
+
}
|
|
11347
|
+
.e-opacity-100{
|
|
11348
|
+
opacity: 1;
|
|
11349
|
+
}
|
|
11176
11350
|
.e-shadow{
|
|
11177
11351
|
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
11178
11352
|
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
11179
11353
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
11180
11354
|
}
|
|
11355
|
+
.e-shadow-md{
|
|
11356
|
+
--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
11357
|
+
--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
|
|
11358
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
11359
|
+
}
|
|
11181
11360
|
.e-shadow-sm{
|
|
11182
11361
|
--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
11183
11362
|
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
|
|
11184
11363
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
11185
11364
|
}
|
|
11365
|
+
.e-shadow-xl{
|
|
11366
|
+
--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
|
11367
|
+
--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
|
|
11368
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
11369
|
+
}
|
|
11186
11370
|
.\!-e-outline-offset-1{
|
|
11187
11371
|
outline-offset: -1px !important;
|
|
11188
11372
|
}
|
|
@@ -11285,12 +11469,26 @@
|
|
|
11285
11469
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
11286
11470
|
transition-duration: 150ms;
|
|
11287
11471
|
}
|
|
11472
|
+
.e-transition-opacity{
|
|
11473
|
+
transition-property: opacity;
|
|
11474
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
11475
|
+
transition-duration: 150ms;
|
|
11476
|
+
}
|
|
11288
11477
|
.e-duration-200{
|
|
11289
11478
|
transition-duration: 200ms;
|
|
11290
11479
|
}
|
|
11480
|
+
.e-duration-300{
|
|
11481
|
+
transition-duration: 300ms;
|
|
11482
|
+
}
|
|
11483
|
+
.e-ease-in{
|
|
11484
|
+
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
11485
|
+
}
|
|
11291
11486
|
.e-ease-in-out{
|
|
11292
11487
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
11293
11488
|
}
|
|
11489
|
+
.e-ease-out{
|
|
11490
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
11491
|
+
}
|
|
11294
11492
|
|
|
11295
11493
|
.bg-stripes-gray {
|
|
11296
11494
|
background-image: linear-gradient(135deg, rgba(131, 131, 168, 0.5) 10%, #0000 0, #0000 50%, rgba(117, 117, 148, 0.5) 0, #6366f180 60%, #0000 0, #0000);
|
|
@@ -11326,6 +11524,10 @@
|
|
|
11326
11524
|
opacity: 0.75;
|
|
11327
11525
|
}
|
|
11328
11526
|
|
|
11527
|
+
.e-group:hover .group-hover\:e-opacity-100{
|
|
11528
|
+
opacity: 1;
|
|
11529
|
+
}
|
|
11530
|
+
|
|
11329
11531
|
@media (min-width: 640px){
|
|
11330
11532
|
|
|
11331
11533
|
.sm\:\!-e-m-0{
|
package/dist/tags.json
CHANGED
|
@@ -135,7 +135,8 @@
|
|
|
135
135
|
"focused-interval",
|
|
136
136
|
"locked",
|
|
137
137
|
"timezone",
|
|
138
|
-
"stop-click-propagation"
|
|
138
|
+
"stop-click-propagation",
|
|
139
|
+
"tooltip-position"
|
|
139
140
|
],
|
|
140
141
|
"description": ""
|
|
141
142
|
},
|
|
@@ -195,12 +196,21 @@
|
|
|
195
196
|
],
|
|
196
197
|
"description": ""
|
|
197
198
|
},
|
|
199
|
+
"EImagesComparator": {
|
|
200
|
+
"attributes": [
|
|
201
|
+
"before-image-src",
|
|
202
|
+
"after-image-src",
|
|
203
|
+
"is-loading"
|
|
204
|
+
],
|
|
205
|
+
"description": ""
|
|
206
|
+
},
|
|
198
207
|
"EToggleSwitch": {
|
|
199
208
|
"attributes": [
|
|
200
209
|
"options",
|
|
201
210
|
"color",
|
|
202
211
|
"size",
|
|
203
|
-
"default-value"
|
|
212
|
+
"default-value",
|
|
213
|
+
"value"
|
|
204
214
|
],
|
|
205
215
|
"description": ""
|
|
206
216
|
},
|
|
@@ -238,5 +248,90 @@
|
|
|
238
248
|
"icon"
|
|
239
249
|
],
|
|
240
250
|
"description": ""
|
|
251
|
+
},
|
|
252
|
+
"EFlagIcon": {
|
|
253
|
+
"attributes": [
|
|
254
|
+
"code"
|
|
255
|
+
],
|
|
256
|
+
"description": ""
|
|
257
|
+
},
|
|
258
|
+
"EImagePlayer": {
|
|
259
|
+
"attributes": [
|
|
260
|
+
"frames",
|
|
261
|
+
"time-per-frame",
|
|
262
|
+
"is-playing",
|
|
263
|
+
"frame-index",
|
|
264
|
+
"height",
|
|
265
|
+
"initial-quality",
|
|
266
|
+
"preload",
|
|
267
|
+
"preload-size",
|
|
268
|
+
"reset-index-on-frames-change",
|
|
269
|
+
"preload-while-playing",
|
|
270
|
+
"with-controls",
|
|
271
|
+
"play-on-click",
|
|
272
|
+
"disable-play-pause-animation",
|
|
273
|
+
"disable-play-button",
|
|
274
|
+
"is-live",
|
|
275
|
+
"selected-snapshot-quality",
|
|
276
|
+
"placeholder-image",
|
|
277
|
+
"is-mobile",
|
|
278
|
+
"is-zoomable",
|
|
279
|
+
"is-annotation-active",
|
|
280
|
+
"aspect-ratio"
|
|
281
|
+
],
|
|
282
|
+
"description": ""
|
|
283
|
+
},
|
|
284
|
+
"EZoomableImg": {
|
|
285
|
+
"attributes": [
|
|
286
|
+
"src",
|
|
287
|
+
"alt",
|
|
288
|
+
"allow-zoom",
|
|
289
|
+
"img-props",
|
|
290
|
+
"slider",
|
|
291
|
+
"disabled",
|
|
292
|
+
"hide-content-on-blur",
|
|
293
|
+
"initial-params",
|
|
294
|
+
"embedded",
|
|
295
|
+
"overlay-style",
|
|
296
|
+
"foreground-style",
|
|
297
|
+
"pan",
|
|
298
|
+
"slot-transition",
|
|
299
|
+
"height",
|
|
300
|
+
"is-calendar-active",
|
|
301
|
+
"blur-background",
|
|
302
|
+
"cover",
|
|
303
|
+
"is-widget",
|
|
304
|
+
"is-annotation-active",
|
|
305
|
+
"is-mobile",
|
|
306
|
+
"placeholder-image"
|
|
307
|
+
],
|
|
308
|
+
"description": ""
|
|
309
|
+
},
|
|
310
|
+
"EActionButton": {
|
|
311
|
+
"attributes": [
|
|
312
|
+
"tooltip-text",
|
|
313
|
+
"tooltip-color",
|
|
314
|
+
"tooltip-position",
|
|
315
|
+
"button-classes",
|
|
316
|
+
"icon",
|
|
317
|
+
"icon-size"
|
|
318
|
+
],
|
|
319
|
+
"description": ""
|
|
320
|
+
},
|
|
321
|
+
"ETooltip": {
|
|
322
|
+
"attributes": [
|
|
323
|
+
"text",
|
|
324
|
+
"position",
|
|
325
|
+
"color"
|
|
326
|
+
],
|
|
327
|
+
"description": ""
|
|
328
|
+
},
|
|
329
|
+
"ELayout": {
|
|
330
|
+
"attributes": [
|
|
331
|
+
"width",
|
|
332
|
+
"height",
|
|
333
|
+
"with-overlay"
|
|
334
|
+
],
|
|
335
|
+
"description": ""
|
|
241
336
|
}
|
|
242
337
|
}
|
package/dist/types.d.ts
CHANGED
|
@@ -207,5 +207,27 @@ export type D3DateParams = {
|
|
|
207
207
|
timezone: string;
|
|
208
208
|
};
|
|
209
209
|
export type TimelineDomain = Date[] | string[];
|
|
210
|
+
export declare enum ImageQuality {
|
|
211
|
+
_360 = "360",
|
|
212
|
+
_480 = "480",
|
|
213
|
+
_720 = "720",
|
|
214
|
+
_1080 = "1080",
|
|
215
|
+
auto = "auto"
|
|
216
|
+
}
|
|
217
|
+
export type SrcSet = {
|
|
218
|
+
[q in ImageQuality]: string;
|
|
219
|
+
};
|
|
220
|
+
export interface Frame {
|
|
221
|
+
label: string;
|
|
222
|
+
src: string;
|
|
223
|
+
srcSet?: SrcSet;
|
|
224
|
+
timestamp: Timestamp;
|
|
225
|
+
}
|
|
226
|
+
export declare enum Position {
|
|
227
|
+
top = "top",
|
|
228
|
+
right = "right",
|
|
229
|
+
bottom = "bottom",
|
|
230
|
+
left = "left"
|
|
231
|
+
}
|
|
210
232
|
declare const _default: {};
|
|
211
233
|
export default _default;
|
package/dist/utils.d.ts
CHANGED
|
@@ -3,3 +3,4 @@ export declare function makeFullScreen(element: HTMLElement): Promise<unknown>;
|
|
|
3
3
|
export declare function exitFullScreen(): Promise<void | null>;
|
|
4
4
|
export declare function debounce<T extends (...args: any[]) => any>(func: T, wait?: number): (...args: Parameters<T>) => void;
|
|
5
5
|
export declare function getRandomChars(length?: number): string;
|
|
6
|
+
export declare function getImageData(image: HTMLImageElement, x?: number, y?: number, width?: number, height?: number): string;
|