openatc-components 0.1.83 → 0.1.85
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/package/kisscomps/components/Channelization/Channelization.vue +23 -12
- package/package/kisscomps/components/ChannelizationFlowStatistic/ChannelizationFlowStatistic.vue +23 -12
- package/package/kisscomps/components/IntersectionMap/intersectionmap.vue +4 -2
- package/package/kissui.min.js +1 -1
- package/package.json +1 -1
- package/src/kisscomps/components/Channelization/Channelization.vue +23 -12
- package/src/kisscomps/components/ChannelizationFlowStatistic/ChannelizationFlowStatistic.vue +23 -12
- package/src/kisscomps/components/IntersectionMap/intersectionmap.vue +4 -2
- package/static/styles/intersection.scss +10 -3
|
@@ -15,8 +15,10 @@
|
|
|
15
15
|
'widescreenCrossImg': bodyDomWidth > 1680,
|
|
16
16
|
'superlargeCrossImg': bodyDomWidth <= 1680 && bodyDomWidth > 1440,
|
|
17
17
|
'largeCrossImg': bodyDomWidth <= 1440 && bodyDomWidth > 1280,
|
|
18
|
-
'middleCrossImg': bodyDomWidth <= 1280 && bodyDomWidth >
|
|
19
|
-
'
|
|
18
|
+
'middleCrossImg': bodyDomWidth <= 1280 && bodyDomWidth > 1100,
|
|
19
|
+
'middleCrossImg2': bodyDomWidth <= 1100 && bodyDomWidth > 960,
|
|
20
|
+
'smallCrossImg': bodyDomWidth <= 960 && bodyDomWidth > 890,
|
|
21
|
+
'smallCrossImg2': bodyDomWidth <= 890 && bodyDomWidth > 720,
|
|
20
22
|
'miniCrossImg': bodyDomWidth <= 720 && bodyDomWidth > 650,
|
|
21
23
|
'superminiCrossImg': bodyDomWidth <= 650 && bodyDomWidth > 450,
|
|
22
24
|
'transMiddleCrossImg': bodyDomWidth <= 450 && bodyDomWidth > 350,
|
|
@@ -493,27 +495,36 @@ export default {
|
|
|
493
495
|
</script>
|
|
494
496
|
|
|
495
497
|
<style lang="css" rel="stylesheet/scss">
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
498
|
+
.show-channelization {
|
|
499
|
+
position: relative;
|
|
500
|
+
overflow: hidden;
|
|
501
|
+
}
|
|
502
|
+
.widescreenCrossImg {
|
|
503
|
+
zoom: 1.3;
|
|
504
|
+
}
|
|
499
505
|
.superlargeCrossImg {
|
|
500
|
-
|
|
506
|
+
zoom: 1.3;
|
|
501
507
|
}
|
|
502
508
|
.largeCrossImg {
|
|
503
|
-
|
|
504
|
-
|
|
509
|
+
zoom: 1.2;
|
|
505
510
|
}
|
|
506
511
|
.middleCrossImg {
|
|
507
|
-
|
|
512
|
+
zoom: 1.1;
|
|
513
|
+
}
|
|
514
|
+
.middleCrossImg2 {
|
|
515
|
+
zoom: 1;
|
|
508
516
|
}
|
|
509
517
|
.smallCrossImg {
|
|
510
|
-
|
|
518
|
+
zoom: 0.9;
|
|
519
|
+
}
|
|
520
|
+
.smallCrossImg2 {
|
|
521
|
+
zoom: 0.8;
|
|
511
522
|
}
|
|
512
523
|
.miniCrossImg {
|
|
513
|
-
|
|
524
|
+
zoom: 0.7;
|
|
514
525
|
}
|
|
515
526
|
.superminiCrossImg {
|
|
516
|
-
zoom: 0.
|
|
527
|
+
zoom: 0.6;
|
|
517
528
|
}
|
|
518
529
|
.minimumCrossImg {
|
|
519
530
|
zoom: 0.35;
|
package/package/kisscomps/components/ChannelizationFlowStatistic/ChannelizationFlowStatistic.vue
CHANGED
|
@@ -15,8 +15,10 @@
|
|
|
15
15
|
'widescreenCrossImg': bodyDomWidth > 1680,
|
|
16
16
|
'superlargeCrossImg': bodyDomWidth <= 1680 && bodyDomWidth > 1440,
|
|
17
17
|
'largeCrossImg': bodyDomWidth <= 1440 && bodyDomWidth > 1280,
|
|
18
|
-
'middleCrossImg': bodyDomWidth <= 1280 && bodyDomWidth >
|
|
19
|
-
'
|
|
18
|
+
'middleCrossImg': bodyDomWidth <= 1280 && bodyDomWidth > 1100,
|
|
19
|
+
'middleCrossImg2': bodyDomWidth <= 1100 && bodyDomWidth > 960,
|
|
20
|
+
'smallCrossImg': bodyDomWidth <= 960 && bodyDomWidth > 890,
|
|
21
|
+
'smallCrossImg2': bodyDomWidth <= 890 && bodyDomWidth > 720,
|
|
20
22
|
'miniCrossImg': bodyDomWidth <= 720 && bodyDomWidth > 650,
|
|
21
23
|
'superminiCrossImg': bodyDomWidth <= 650 && bodyDomWidth > 450,
|
|
22
24
|
'transMiddleCrossImg': bodyDomWidth <= 450 && bodyDomWidth > 350,
|
|
@@ -298,27 +300,36 @@ export default {
|
|
|
298
300
|
</script>
|
|
299
301
|
|
|
300
302
|
<style lang="css" rel="stylesheet/scss">
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
303
|
+
.show-channelization {
|
|
304
|
+
position: relative;
|
|
305
|
+
overflow: hidden;
|
|
306
|
+
}
|
|
307
|
+
.widescreenCrossImg {
|
|
308
|
+
zoom: 1.3;
|
|
309
|
+
}
|
|
304
310
|
.superlargeCrossImg {
|
|
305
|
-
|
|
311
|
+
zoom: 1.3;
|
|
306
312
|
}
|
|
307
313
|
.largeCrossImg {
|
|
308
|
-
|
|
309
|
-
|
|
314
|
+
zoom: 1.2;
|
|
310
315
|
}
|
|
311
316
|
.middleCrossImg {
|
|
312
|
-
|
|
317
|
+
zoom: 1.1;
|
|
318
|
+
}
|
|
319
|
+
.middleCrossImg2 {
|
|
320
|
+
zoom: 1;
|
|
313
321
|
}
|
|
314
322
|
.smallCrossImg {
|
|
315
|
-
|
|
323
|
+
zoom: 0.9;
|
|
324
|
+
}
|
|
325
|
+
.smallCrossImg2 {
|
|
326
|
+
zoom: 0.8;
|
|
316
327
|
}
|
|
317
328
|
.miniCrossImg {
|
|
318
|
-
|
|
329
|
+
zoom: 0.7;
|
|
319
330
|
}
|
|
320
331
|
.superminiCrossImg {
|
|
321
|
-
zoom: 0.
|
|
332
|
+
zoom: 0.6;
|
|
322
333
|
}
|
|
323
334
|
.minimumCrossImg {
|
|
324
335
|
zoom: 0.35;
|
|
@@ -15,8 +15,10 @@
|
|
|
15
15
|
'widescreenCrossImg': bodyDomWidth > 1680,
|
|
16
16
|
'superlargeCrossImg': bodyDomWidth <= 1680 && bodyDomWidth > 1440,
|
|
17
17
|
'largeCrossImg': bodyDomWidth <= 1440 && bodyDomWidth > 1280,
|
|
18
|
-
'middleCrossImg': bodyDomWidth <= 1280 && bodyDomWidth >
|
|
19
|
-
'
|
|
18
|
+
'middleCrossImg': bodyDomWidth <= 1280 && bodyDomWidth > 1100,
|
|
19
|
+
'middleCrossImg2': bodyDomWidth <= 1100 && bodyDomWidth > 960,
|
|
20
|
+
'smallCrossImg': bodyDomWidth <= 960 && bodyDomWidth > 890,
|
|
21
|
+
'smallCrossImg2': bodyDomWidth <= 890 && bodyDomWidth > 720,
|
|
20
22
|
'miniCrossImg': bodyDomWidth <= 720 && bodyDomWidth > 650,
|
|
21
23
|
'superminiCrossImg': bodyDomWidth <= 650 && bodyDomWidth > 450,
|
|
22
24
|
'transMiddleCrossImg': bodyDomWidth <= 450 && bodyDomWidth > 350,
|