@c8y/style 1024.10.8 → 1024.14.0

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.
Files changed (38) hide show
  1. package/README.md +30 -259
  2. package/package.json +2 -2
  3. package/styles/core/overlays/_dropdowns.scss +3 -3
  4. package/variables/dashboard-themes/_branded-dashboard.scss +290 -296
  5. package/helper-scripts/README-variable-imports.md +0 -155
  6. package/helper-scripts/convert-scss-to-less.sh +0 -527
  7. package/helper-scripts/convert-stroke-icons-to-less.js +0 -115
  8. package/helper-scripts/remove-redundant-variable-imports.sh +0 -80
  9. package/helper-scripts/scss-to-less-skip +0 -20
  10. package/helper-scripts/sync-scss-to-less.sh +0 -75
  11. package/markdown-files/MANUAL-SYNC-FILES.md +0 -56
  12. package/styles/_login-app.less +0 -34
  13. package/styles/_mixins.less +0 -47
  14. package/styles/_utilities.less +0 -21
  15. package/styles/animations/_animate.less +0 -653
  16. package/styles/animations/_realtime-animation-list.less +0 -20
  17. package/styles/components/_markdown-content.less +0 -95
  18. package/styles/components/application-and-system/_c8y-cookie-banner.less +0 -36
  19. package/styles/components/data-display-and-visualization/_boxed-label.less +0 -45
  20. package/styles/components/data-display-and-visualization/_c8y-datapoint-pill.less +0 -104
  21. package/styles/components/data-display-and-visualization/_status.less +0 -105
  22. package/styles/components/data-display-and-visualization/lists/_c8y-data-point-list.less +0 -31
  23. package/styles/components/data-display-and-visualization/tables/_responsive-grid-table.less +0 -189
  24. package/styles/components/data-input/_c8y-ai-chat.less +0 -258
  25. package/styles/components/data-input/_static-assets-file-picker.less +0 -22
  26. package/styles/components/navigation-and-layout/_c8y-scrollbar.less +0 -118
  27. package/styles/components/navigation-and-layout/navigation/_breadcrumbs.less +0 -60
  28. package/styles/components/status-feedback-and-notifications/_c8y-message-banner.less +0 -46
  29. package/styles/dashboard/_c8y-dashboard-style.less +0 -565
  30. package/styles/dashboard/_dashboard-widgets.less +0 -46
  31. package/styles/icons/_dlt-c8y-icons-stroke.less +0 -7260
  32. package/styles/icons/_marker-icons.less +0 -32
  33. package/styles/layout/_bottom-drawer.less +0 -70
  34. package/styles/layout/_group-info.less +0 -26
  35. package/styles/mixins/_gradients.less +0 -117
  36. package/styles/mixins/_icon-base.less +0 -29
  37. package/styles/mixins/_vendor-prefixes.less +0 -131
  38. package/variables/_color-defaults.less +0 -110
@@ -1,653 +0,0 @@
1
-
2
- /**
3
- * Animate - Third-party animation library (animate.css v3.6.1)
4
- *
5
- * Note: This is a third-party library (animate.css by Daniel Eden).
6
- *
7
- * Intentionally hardcoded values:
8
- * - Animation durations (0.35s, 0.5s, 1s, 2s): Animation timing
9
- * - Transform distances (-30px, -15px, -4px, -10px, 10px, -1px, 1px, ±2000px): Animation movement
10
- * - Perspective (300px): 3D transform depth
11
- * - Percentages and unitless values: Animation keyframe positions and opacity
12
- * - Cubic-bezier values: Custom easing functions
13
- */
14
-
15
- @charset "UTF-8";
16
-
17
- .fadeAnim.ng-enter,
18
- .fadeAnim.ng-leave {
19
- transition: 0.5s linear;
20
- }
21
-
22
- .fadeAnim.ng-enter,
23
- .fadeAnim.ng-leave-active {
24
- opacity: 0;
25
- }
26
-
27
- .fadeAnim.ng-enter-active,
28
- .fadeAnim.ng-leave {
29
- opacity: 1;
30
- }
31
-
32
- /*!
33
- * animate.css -http://daneden.me/animate
34
- * Version - 3.6.1
35
- * Licensed under the MIT license - http://opensource.org/licenses/MIT
36
- *
37
- * Copyright (c) 2018 Daniel Eden
38
- */
39
-
40
- .animated {
41
- animation-duration: 1s;
42
- animation-fill-mode: both;
43
- }
44
- .animated.fast {
45
- animation-duration: 0.35s;
46
- }
47
-
48
- .animated.infinite {
49
- animation-iteration-count: infinite;
50
- }
51
-
52
- @keyframes bounce {
53
- from,
54
- 20%,
55
- 53%,
56
- 80%,
57
- to {
58
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
59
- transform: translate3d(0, 0, 0);
60
- }
61
-
62
- 40%,
63
- 43% {
64
- animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
65
- transform: translate3d(0, -30px, 0);
66
- }
67
-
68
- 70% {
69
- animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
70
- transform: translate3d(0, -15px, 0);
71
- }
72
-
73
- 90% {
74
- transform: translate3d(0, -4px, 0);
75
- }
76
- }
77
-
78
- .bounce {
79
- animation-name: bounce;
80
- transform-origin: center bottom;
81
- }
82
-
83
-
84
-
85
- @keyframes flash {
86
- from,
87
- 50%,
88
- to {
89
- opacity: 1;
90
- }
91
-
92
- 25%,
93
- 75% {
94
- opacity: 0;
95
- }
96
- }
97
-
98
- .flash {
99
- animation-name: flash;
100
- }
101
-
102
- /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
103
-
104
-
105
-
106
- @keyframes pulse {
107
- from {
108
- transform: scale3d(1, 1, 1);
109
- }
110
-
111
- 50% {
112
- transform: scale3d(1.05, 1.05, 1.05);
113
- }
114
-
115
- to {
116
- transform: scale3d(1, 1, 1);
117
- }
118
- }
119
-
120
- .pulse {
121
- animation-name: pulse;
122
- }
123
-
124
-
125
-
126
- @keyframes shake {
127
- from,
128
- to {
129
- transform: translate3d(0, 0, 0);
130
- }
131
-
132
- 10%,
133
- 30%,
134
- 50%,
135
- 70%,
136
- 90% {
137
- transform: translate3d(-10px, 0, 0);
138
- }
139
-
140
- 20%,
141
- 40%,
142
- 60%,
143
- 80% {
144
- transform: translate3d(10px, 0, 0);
145
- }
146
- }
147
-
148
- .shake {
149
- animation-name: shake;
150
- }
151
-
152
-
153
-
154
- @keyframes vibrate {
155
- 0%,
156
- 2%,
157
- 4%,
158
- 6%,
159
- 8%,
160
- 10%,
161
- 12%,
162
- 14%,
163
- 16%,
164
- 18% {
165
- transform: translate3d(-1px, 0, 0);
166
- }
167
- 1%,
168
- 3%,
169
- 5%,
170
- 7%,
171
- 9%,
172
- 11%,
173
- 13%,
174
- 15%,
175
- 17%,
176
- 19% {
177
- transform: translate3d(1px, 0, 0);
178
- }
179
- 20%,
180
- 100% {
181
- transform: translate3d(0, 0, 0);
182
- }
183
- }
184
-
185
- .vibrate {
186
- perspective: 300px;
187
- animation-name: vibrate;
188
- transition-duration: 2s;
189
- transition-timing-function: cubic-bezier(0.36, 0.07, 0.19, 0.97);
190
- }
191
-
192
-
193
-
194
- @keyframes fadeIn {
195
- from {
196
- opacity: 0;
197
- }
198
-
199
- to {
200
- opacity: 1;
201
- }
202
- }
203
-
204
- .fadeIn {
205
- animation-name: fadeIn;
206
- }
207
-
208
-
209
-
210
- @keyframes fadeInDown {
211
- from {
212
- opacity: 0;
213
- transform: translate3d(0, -100%, 0);
214
- }
215
-
216
- to {
217
- opacity: 1;
218
- transform: translate3d(0, 0, 0);
219
- }
220
- }
221
-
222
- .fadeInDown {
223
- animation-name: fadeInDown;
224
- }
225
-
226
-
227
-
228
- @keyframes fadeInDownBig {
229
- from {
230
- opacity: 0;
231
- transform: translate3d(0, -2000px, 0);
232
- }
233
-
234
- to {
235
- opacity: 1;
236
- transform: translate3d(0, 0, 0);
237
- }
238
- }
239
-
240
- .fadeInDownBig {
241
- animation-name: fadeInDownBig;
242
- }
243
-
244
-
245
-
246
- @keyframes fadeInLeft {
247
- from {
248
- opacity: 0;
249
- transform: translate3d(-100%, 0, 0);
250
- }
251
-
252
- to {
253
- opacity: 1;
254
- transform: translate3d(0, 0, 0);
255
- }
256
- }
257
-
258
- .fadeInLeft {
259
- animation-name: fadeInLeft;
260
- }
261
-
262
-
263
-
264
- @keyframes fadeInLeftBig {
265
- from {
266
- opacity: 0;
267
- transform: translate3d(-2000px, 0, 0);
268
- }
269
-
270
- to {
271
- opacity: 1;
272
- transform: translate3d(0, 0, 0);
273
- }
274
- }
275
-
276
- .fadeInLeftBig {
277
- animation-name: fadeInLeftBig;
278
- }
279
-
280
-
281
-
282
- @keyframes fadeInRight {
283
- from {
284
- opacity: 0;
285
- transform: translate3d(100%, 0, 0);
286
- }
287
-
288
- to {
289
- opacity: 1;
290
- transform: translate3d(0, 0, 0);
291
- }
292
- }
293
-
294
- .fadeInRight {
295
- animation-name: fadeInRight;
296
- }
297
-
298
-
299
-
300
- @keyframes fadeInRightBig {
301
- from {
302
- opacity: 0;
303
- transform: translate3d(2000px, 0, 0);
304
- }
305
-
306
- to {
307
- opacity: 1;
308
- transform: translate3d(0, 0, 0);
309
- }
310
- }
311
-
312
- .fadeInRightBig {
313
- animation-name: fadeInRightBig;
314
- }
315
-
316
-
317
-
318
- @keyframes fadeInUp {
319
- from {
320
- opacity: 0;
321
- transform: translate3d(0, 100%, 0);
322
- }
323
-
324
- to {
325
- opacity: 1;
326
- transform: translate3d(0, 0, 0);
327
- }
328
- }
329
-
330
- .fadeInUp {
331
- animation-name: fadeInUp;
332
- }
333
-
334
-
335
-
336
- @keyframes fadeInUpBig {
337
- from {
338
- opacity: 0;
339
- transform: translate3d(0, 2000px, 0);
340
- }
341
-
342
- to {
343
- opacity: 1;
344
- transform: translate3d(0, 0, 0);
345
- }
346
- }
347
-
348
- .fadeInUpBig {
349
- animation-name: fadeInUpBig;
350
- }
351
-
352
-
353
-
354
- @keyframes fadeOut {
355
- from {
356
- opacity: 1;
357
- }
358
-
359
- to {
360
- opacity: 0;
361
- }
362
- }
363
-
364
- .fadeOut {
365
- animation-name: fadeOut;
366
- }
367
-
368
-
369
-
370
- @keyframes fadeOutDown {
371
- from {
372
- opacity: 1;
373
- }
374
-
375
- to {
376
- opacity: 0;
377
- transform: translate3d(0, 100%, 0);
378
- }
379
- }
380
-
381
- .fadeOutDown {
382
- animation-name: fadeOutDown;
383
- }
384
-
385
-
386
-
387
- @keyframes fadeOutDownBig {
388
- from {
389
- opacity: 1;
390
- }
391
-
392
- to {
393
- opacity: 0;
394
- transform: translate3d(0, 2000px, 0);
395
- }
396
- }
397
-
398
- .fadeOutDownBig {
399
- animation-name: fadeOutDownBig;
400
- }
401
-
402
-
403
-
404
- @keyframes fadeOutLeft {
405
- from {
406
- opacity: 1;
407
- }
408
-
409
- to {
410
- opacity: 0;
411
- transform: translate3d(-100%, 0, 0);
412
- }
413
- }
414
-
415
- .fadeOutLeft {
416
- animation-name: fadeOutLeft;
417
- }
418
-
419
-
420
-
421
- @keyframes fadeOutLeftBig {
422
- from {
423
- opacity: 1;
424
- }
425
-
426
- to {
427
- opacity: 0;
428
- transform: translate3d(-2000px, 0, 0);
429
- }
430
- }
431
-
432
- .fadeOutLeftBig {
433
- animation-name: fadeOutLeftBig;
434
- }
435
-
436
-
437
-
438
- @keyframes fadeOutRight {
439
- from {
440
- opacity: 1;
441
- }
442
-
443
- to {
444
- opacity: 0;
445
- transform: translate3d(100%, 0, 0);
446
- }
447
- }
448
-
449
- .fadeOutRight {
450
- animation-name: fadeOutRight;
451
- }
452
-
453
-
454
-
455
- @keyframes fadeOutRightBig {
456
- from {
457
- opacity: 1;
458
- }
459
-
460
- to {
461
- opacity: 0;
462
- transform: translate3d(2000px, 0, 0);
463
- }
464
- }
465
-
466
- .fadeOutRightBig {
467
- animation-name: fadeOutRightBig;
468
- }
469
-
470
-
471
-
472
- @keyframes fadeOutUp {
473
- from {
474
- opacity: 1;
475
- }
476
-
477
- to {
478
- opacity: 0;
479
- transform: translate3d(0, -100%, 0);
480
- }
481
- }
482
-
483
- .fadeOutUp {
484
- animation-name: fadeOutUp;
485
- }
486
-
487
-
488
-
489
- @keyframes fadeOutUpBig {
490
- from {
491
- opacity: 1;
492
- }
493
-
494
- to {
495
- opacity: 0;
496
- transform: translate3d(0, -2000px, 0);
497
- }
498
- }
499
-
500
- .fadeOutUpBig {
501
- animation-name: fadeOutUpBig;
502
- }
503
-
504
-
505
-
506
- @keyframes slideInDown {
507
- from {
508
- transform: translate3d(0, -100%, 0);
509
- visibility: visible;
510
- }
511
-
512
- to {
513
- transform: translate3d(0, 0, 0);
514
- }
515
- }
516
-
517
- .slideInDown {
518
- animation-name: slideInDown;
519
- }
520
-
521
-
522
-
523
- @keyframes slideInLeft {
524
- from {
525
- transform: translate3d(-100%, 0, 0);
526
- visibility: visible;
527
- }
528
-
529
- to {
530
- transform: translate3d(0, 0, 0);
531
- }
532
- }
533
-
534
- .slideInLeft {
535
- animation-name: slideInLeft;
536
- }
537
-
538
-
539
-
540
- @keyframes slideInRight {
541
- from {
542
- transform: translate3d(100%, 0, 0);
543
- visibility: visible;
544
- }
545
-
546
- to {
547
- transform: translate3d(0, 0, 0);
548
- }
549
- }
550
-
551
- .slideInRight {
552
- animation-name: slideInRight;
553
- }
554
-
555
-
556
-
557
- @keyframes slideInUp {
558
- from {
559
- transform: translate3d(0, 100%, 0);
560
- visibility: visible;
561
- }
562
-
563
- to {
564
- transform: translate3d(0, 0, 0);
565
- }
566
- }
567
-
568
- .slideInUp {
569
- animation-name: slideInUp;
570
- }
571
-
572
-
573
-
574
- @keyframes slideOutDown {
575
- from {
576
- transform: translate3d(0, 0, 0);
577
- }
578
-
579
- to {
580
- visibility: hidden;
581
- transform: translate3d(0, 100%, 0);
582
- }
583
- }
584
-
585
- .slideOutDown {
586
- animation-name: slideOutDown;
587
- }
588
-
589
-
590
-
591
- @keyframes slideOutLeft {
592
- from {
593
- transform: translate3d(0, 0, 0);
594
- }
595
-
596
- to {
597
- visibility: hidden;
598
- transform: translate3d(-100%, 0, 0);
599
- }
600
- }
601
-
602
- .slideOutLeft {
603
- animation-name: slideOutLeft;
604
- }
605
-
606
-
607
-
608
- @keyframes slideOutRight {
609
- from {
610
- transform: translate3d(0, 0, 0);
611
- }
612
-
613
- to {
614
- visibility: hidden;
615
- transform: translate3d(100%, 0, 0);
616
- }
617
- }
618
-
619
- .slideOutRight {
620
- animation-name: slideOutRight;
621
- }
622
-
623
-
624
-
625
- @keyframes slideOutUp {
626
- from {
627
- transform: translate3d(0, 0, 0);
628
- }
629
-
630
- to {
631
- visibility: hidden;
632
- transform: translate3d(0, -100%, 0);
633
- }
634
- }
635
-
636
- .slideOutUp {
637
- animation-name: slideOutUp;
638
- }
639
-
640
- @keyframes zoomIn {
641
- from {
642
- opacity: 0;
643
- transform: scale3d(0.3, 0.3, 0.3);
644
- }
645
-
646
- 50% {
647
- opacity: 1;
648
- }
649
- }
650
-
651
- .zoomIn {
652
- animation-name: zoomIn;
653
- }
@@ -1,20 +0,0 @@
1
-
2
- /**
3
- * Realtime Animation List - Real-time data update animations
4
- *
5
- * Note: Uses color tokens for background transitions.
6
- *
7
- * Intentionally hardcoded values:
8
- * - Transition duration (1s): Animation timing for real-time updates
9
- */
10
-
11
- .realtime-animation-list.ng-enter,
12
- .realtime-animation-list.ng-change {
13
- background-color: @component-realtime-added;
14
- transition: 1s linear;
15
- }
16
-
17
- .realtime-animation-list.ng-enter-active,
18
- .realtime-animation-list.ng-change {
19
- background-color: @component-background-default;
20
- }