cronapp-framework-mobile-js 3.0.0-SP.9 → 3.1.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 (31) hide show
  1. package/components/crn-icon.components.json +3 -3
  2. package/components/crn-input-floating.components.json +5 -0
  3. package/components/crn-start.components.json +3 -0
  4. package/components/css/app.css +10 -1
  5. package/css/app_2.9.css +21 -0
  6. package/css/fonts/nunito/nunito.css +270 -0
  7. package/css/themes/custom/cosmo/custom-cosmo.css +84 -13
  8. package/css/themes/custom/cyborg/custom-cyborg.css +55 -55
  9. package/css/themes/custom/krypton/custom-krypton.css +366 -339
  10. package/css/themes/custom/material-round/custom-material-round.css +118 -56
  11. package/css/themes/custom/nature/custom-nature.css +1602 -0
  12. package/css/themes/nature.min.css +5 -0
  13. package/dist/components/css/app.css +1 -1
  14. package/dist/css/app_2.9.css +1 -1
  15. package/dist/css/themes/custom/cosmo/custom-cosmo.css +1 -1
  16. package/dist/css/themes/custom/cyborg/custom-cyborg.css +1 -1
  17. package/dist/css/themes/custom/krypton/custom-krypton.css +1 -1
  18. package/dist/css/themes/custom/material-round/custom-material-round.css +1 -1
  19. package/dist/css/themes/custom/nature/custom-nature.css +1 -0
  20. package/dist/css/themes/nature.min.css +1 -0
  21. package/dist/js/app.authentication.js +1 -1
  22. package/dist/js/app.js +1 -1
  23. package/dist/js/controllers.authentication.js +1 -1
  24. package/dist/js/directives.js +2 -2
  25. package/dist/js/upload.service.js +1 -1
  26. package/js/app.authentication.js +8 -4
  27. package/js/app.js +4 -2
  28. package/js/controllers.authentication.js +8 -21
  29. package/js/directives.js +31 -0
  30. package/js/upload.service.js +7 -4
  31. package/package.json +1 -1
@@ -10,10 +10,11 @@
10
10
 
11
11
  --textSmallSize: 10px;
12
12
  --textNormalSize: 12px;
13
- --textMediumSize: 16px;
13
+ --textSmallTitle: 18px;
14
+ --textMediumSize: 24px;
14
15
  --textBigSize: 22px;
15
- --textExtraBigSize: 28px;
16
- --textFullSize: 34px;
16
+ --textExtraBigSize: 30px;
17
+ --textFullSize: 36px;
17
18
 
18
19
  --textColor10: #d8d8d8;
19
20
  --textColor20: #b4b4b4;
@@ -78,7 +79,7 @@
78
79
  /* Color - Theme default */
79
80
  --colorDefault10: #d9d7dd;
80
81
  --colorDefault20: #b9abce;
81
- --colorDefault30: #5D3E8B;
82
+ --colorDefault30: #5d3e8b;
82
83
  --colorDefault40: #442b69;
83
84
  --colorDefault50: #3c265c;
84
85
  --colorDefault60: #6c5b87;
@@ -236,26 +237,26 @@
236
237
  --textColorDark70: #fffffd;
237
238
 
238
239
  /* Color - Neutral (web e mobile) */
239
- --colorNeutral00: #FFFFFF;
240
- --colorNeutral10: #F1F1F1;
241
- --colorNeutral20: #E3E3E3;
242
- --colorNeutral30: #D5D5D5;
243
- --colorNeutral40: #C7C7C7;
244
- --colorNeutral50: #B9B9B9;
245
- --colorNeutral60: #ACACAC;
246
- --colorNeutral70: #9E9E9E;
240
+ --colorNeutral00: #ffffff;
241
+ --colorNeutral10: #f1f1f1;
242
+ --colorNeutral20: #e3e3e3;
243
+ --colorNeutral30: #d5d5d5;
244
+ --colorNeutral40: #c7c7c7;
245
+ --colorNeutral50: #b9b9b9;
246
+ --colorNeutral60: #acacac;
247
+ --colorNeutral70: #9e9e9e;
247
248
  --colorNeutral80: #909090;
248
249
  --colorNeutral90: #828282;
249
250
  --colorNeutral100: #747474;
250
251
  --colorNeutral110: #666666;
251
- --colorNeutral120: #5D5D5D;
252
+ --colorNeutral120: #5d5d5d;
252
253
  --colorNeutral130: #535353;
253
- --colorNeutral140: #4A4A4A;
254
+ --colorNeutral140: #4a4a4a;
254
255
  --colorNeutral150: #414141;
255
256
  --colorNeutral160: #383838;
256
- --colorNeutral170: #2E2E2E;
257
+ --colorNeutral170: #2e2e2e;
257
258
  --colorNeutral180: #252525;
258
- --colorNeutral190: #1C1C1C;
259
+ --colorNeutral190: #1c1c1c;
259
260
  --colorNeutral200: #131313;
260
261
  --colorNeutral210: #090909;
261
262
  --colorNeutral220: #000000;
@@ -473,6 +474,19 @@ h6,
473
474
  .h5,
474
475
  .h6 {
475
476
  font-family: var(--fontFamily, "Open Sans", "Arial", sans-serif);
477
+ color: var(--textColor40, #434343);
478
+ }
479
+
480
+ .h1 {
481
+ font-size: var(--textFullSize, 36px);
482
+ }
483
+
484
+ .h3 {
485
+ font-size: var(--textMediumSize, 24px);
486
+ }
487
+
488
+ .h5 {
489
+ font-size: var(--textSmallTitle, 18px);
476
490
  }
477
491
 
478
492
  a,
@@ -493,13 +507,14 @@ a.stable,
493
507
  .color-stable {
494
508
  color: var(--colorStable40, #cfcfcf);
495
509
  }
510
+
496
511
  .color-stable:active {
497
512
  color: var(--colorStable70, #717171);
498
513
  }
499
514
 
500
515
  /* Login */
501
516
  .login-bg {
502
- background: var(--colorDefault30, #5D3E8B);
517
+ background: var(--colorDefault30, #5d3e8b);
503
518
  }
504
519
 
505
520
  .login-mobile .button.button-positive,
@@ -584,7 +599,6 @@ a.stable,
584
599
  }
585
600
 
586
601
  /*Buttons*/
587
-
588
602
  /*Default*/
589
603
  .button.button-default {
590
604
  background: var(--colorDefault40, #442b69);
@@ -679,7 +693,6 @@ a.stable,
679
693
  }
680
694
 
681
695
  /* Light - Outline */
682
-
683
696
  .button.button-light.button-outline span,
684
697
  .button.button-light.button-outline i {
685
698
  color: var(--colorLight50, #cdc2c2);
@@ -717,7 +730,6 @@ a.stable,
717
730
  }
718
731
 
719
732
  /*Dark*/
720
-
721
733
  .button.button-dark {
722
734
  background: var(--colorDark40, #343434);
723
735
  }
@@ -741,11 +753,6 @@ a.stable,
741
753
  }
742
754
 
743
755
  /* Rodapé com ícone */
744
-
745
- .tabs-striped.background-default .tabs {
746
- background: var(--textColorDefault40, #fffef9);
747
- }
748
-
749
756
  .tabs-striped.tabs-icon-default .tab-item {
750
757
  color: var(--textColorDefault40, #fffef9);
751
758
  background: var(--colorDefault40, #442b69);
@@ -781,7 +788,7 @@ a#reset-password-login {
781
788
  }
782
789
 
783
790
  .login-mobile .button.button-light:hover {
784
- background: var(--colorDefault50, #3c265c);
791
+ background: var(--colorDefault20, #b9abce);
785
792
  color: var(--textColorWarning40, #fffef9);
786
793
  }
787
794
 
@@ -889,7 +896,6 @@ button#crn-button-signup:hover {
889
896
  }
890
897
 
891
898
  /* Buttons search */
892
-
893
899
  /*Default*/
894
900
  .button.button-default.button-outline {
895
901
  background: var(--colorDefault40, #442b69);
@@ -1144,10 +1150,14 @@ button#crn-button-signup:hover {
1144
1150
  button#crn-button-signup {
1145
1151
  letter-spacing: 0px;
1146
1152
  border-radius: 20px;
1147
- margin: 0px;
1153
+ margin: auto;
1148
1154
  height: 47px;
1149
1155
  }
1150
1156
 
1157
+ button#crn-button-signup:hover {
1158
+ background: var(--colorDefault20, #b9abce);
1159
+ border-radius: 20px;
1160
+ }
1151
1161
 
1152
1162
  /*Colors Evaluation*/
1153
1163
  .default {
@@ -1356,63 +1366,62 @@ button#crn-button-signup {
1356
1366
  }
1357
1367
 
1358
1368
  /*Toggles*/
1359
-
1360
1369
  /*Default*/
1361
- .totggle.toggle-default input:checked+.track {
1370
+ .toggle.toggle-default input:checked+.track {
1362
1371
  background: var(--colorDefault40, #442b69);
1363
1372
  border-color: var(--colorDefault40, #442b69);
1364
1373
  }
1365
1374
 
1366
1375
  /*Secundary*/
1367
- .totggle.toggle-positive input:checked+.track {
1376
+ .toggle.toggle-positive input:checked+.track {
1368
1377
  background: var(--colorPrimary40, #68afd9);
1369
1378
  border-color: var(--colorPrimary40, #68afd9);
1370
1379
  }
1371
1380
 
1372
1381
  /*Success*/
1373
- .totggle.toggle-balanced input:checked+.track {
1382
+ .toggle.toggle-balanced input:checked+.track {
1374
1383
  background: var(--colorSuccess40, #62a86b);
1375
1384
  border-color: var(--colorSuccess40, #62a86b);
1376
1385
  }
1377
1386
 
1378
1387
  /*Info*/
1379
- .totggle.toggle-calm input:checked+.track {
1388
+ .toggle.toggle-calm input:checked+.track {
1380
1389
  background: var(--colorCalm40, #8ac8ee);
1381
1390
  border-color: var(--colorCalm40, #8ac8ee);
1382
1391
  }
1383
1392
 
1384
1393
  /*Warning*/
1385
- .totggle.toggle-energized input:checked+.track {
1394
+ .toggle.toggle-energized input:checked+.track {
1386
1395
  background: var(--colorWarning40, #e98053);
1387
1396
  border-color: var(--colorWarning40, #e98053);
1388
1397
  }
1389
1398
 
1390
1399
  /*Danger*/
1391
- .totggle.toggle-assertive input:checked+.track {
1400
+ .toggle.toggle-assertive input:checked+.track {
1392
1401
  background: var(--colorDanger40, #e34646);
1393
1402
  border-color: var(--colorDanger40, #e34646);
1394
1403
  }
1395
1404
 
1396
1405
  /*Light*/
1397
- .totggle.toggle-light input:checked+.track {
1406
+ .toggle.toggle-light input:checked+.track {
1398
1407
  background: var(--colorLight40, #eadede);
1399
1408
  border-color: var(--colorLight40, #eadede);
1400
1409
  }
1401
1410
 
1402
1411
  /*Stable*/
1403
- .totggle.toggle-stable input:checked+.track {
1412
+ .toggle.toggle-stable input:checked+.track {
1404
1413
  background: var(--colorStable40, #cfcfcf);
1405
1414
  border-color: var(--colorStable40, #cfcfcf);
1406
1415
  }
1407
1416
 
1408
1417
  /*Royal*/
1409
- .totggle.toggle-royal input:checked+.track {
1418
+ .toggle.toggle-royal input:checked+.track {
1410
1419
  background: var(--colorRoyal40, #2f1a4f);
1411
1420
  border-color: var(--colorRoyal40, #2f1a4f);
1412
1421
  }
1413
1422
 
1414
1423
  /*Dark*/
1415
- .totggle.toggle-dark input:checked+.track {
1424
+ .toggle.toggle-dark input:checked+.track {
1416
1425
  background: var(--colorDark40, #343434);
1417
1426
  border-color: var(--colorDark40, #343434);
1418
1427
  }
@@ -1486,7 +1495,6 @@ div.crn-ion-segment-classic ul.active-background-dark li.active {
1486
1495
  }
1487
1496
 
1488
1497
  /*Modais*/
1489
-
1490
1498
  .k-dialog-button-layout-stretched .k-primary:not(:hover):not(.k-state-hover):not(:active):not(.k-state-active) {
1491
1499
  color: var(--textColorDefault40, #fffef9);
1492
1500
  background: var(--colorPrimary40, #68afd9);
@@ -1556,73 +1564,81 @@ button.k-primary:active {
1556
1564
  }
1557
1565
 
1558
1566
  /*Menu and Footer Bar*/
1559
-
1560
1567
  /*Default*/
1561
- .bar.bar-default.bar-footer, .bar.bar-default {
1568
+ .bar.bar-default.bar-footer,
1569
+ .bar.bar-default {
1562
1570
  border-color: var(--colorDefault40, #442b69);
1563
1571
  background: var(--colorDefault40, #442b69);
1564
1572
  color: var(--textColorDefault40, #fffef9);
1565
1573
  }
1566
1574
 
1567
1575
  /*Secundary*/
1568
- .bar.bar-positive.bar-footer, .bar.bar-positive {
1576
+ .bar.bar-positive.bar-footer,
1577
+ .bar.bar-positive {
1569
1578
  border-color: var(--colorPrimary40, #68afd9);
1570
1579
  background: var(--colorPrimary40, #68afd9);
1571
1580
  color: var(--textColorPrimary40, #fffef9);
1572
1581
  }
1573
1582
 
1574
1583
  /*Success*/
1575
- .bar.bar-balanced.bar-footer, .bar.bar-balanced {
1584
+ .bar.bar-balanced.bar-footer,
1585
+ .bar.bar-balanced {
1576
1586
  border-color: var(--colorSuccess40, #62a86b);
1577
1587
  background: var(--colorSuccess40, #62a86b);
1578
1588
  color: var(--textColorSuccess40, #fffef9);
1579
1589
  }
1580
1590
 
1581
1591
  /*Info*/
1582
- .bar.bar-calm.bar-footer, .bar.bar-calm {
1592
+ .bar.bar-calm.bar-footer,
1593
+ .bar.bar-calm {
1583
1594
  border-color: var(--colorCalm40, #8ac8ee);
1584
1595
  background: var(--colorCalm40, #8ac8ee);
1585
1596
  color: var(--textColorCalm40, #fffef9);
1586
1597
  }
1587
1598
 
1588
1599
  /*Warning*/
1589
- .bar.bar-energized.bar-footer, .bar.bar-energized {
1600
+ .bar.bar-energized.bar-footer,
1601
+ .bar.bar-energized {
1590
1602
  border-color: var(--colorWarning40, #e98053);
1591
1603
  background: var(--colorWarning40, #e98053);
1592
1604
  color: var(--textColorWarning40, #fffef9);
1593
1605
  }
1594
1606
 
1595
1607
  /*Danger*/
1596
- .bar.bar-assertive.bar-footer, .bar.bar-assertive {
1608
+ .bar.bar-assertive.bar-footer,
1609
+ .bar.bar-assertive {
1597
1610
  border-color: var(--colorDanger40, #e34646);
1598
1611
  background: var(--colorDanger40, #e34646);
1599
1612
  color: var(--textColorDanger40, #fffef9);
1600
1613
  }
1601
1614
 
1602
1615
  /*Light*/
1603
- .bar.bar-light.bar-footer, .bar.bar-light {
1616
+ .bar.bar-light.bar-footer,
1617
+ .bar.bar-light {
1604
1618
  border-color: var(--colorLight40, #eadede);
1605
1619
  background: var(--colorLight40, #eadede);
1606
1620
  color: var(--textColorLight40, #434343);
1607
1621
  }
1608
1622
 
1609
1623
  /*Stable*/
1610
- .bar.bar-stable.bar-footer, .bar.bar-stable {
1624
+ .bar.bar-stable.bar-footer,
1625
+ .bar.bar-stable {
1611
1626
  border-color: var(--colorStable40, #cfcfcf);
1612
1627
  background: var(--colorStable40, #cfcfcf);
1613
1628
  color: var(--textColorStable40, #434343);
1614
1629
  }
1615
1630
 
1616
1631
  /*Royal*/
1617
- .bar.bar-royal.bar-footer, .bar.bar-royal {
1632
+ .bar.bar-royal.bar-footer,
1633
+ .bar.bar-royal {
1618
1634
  border-color: var(--colorRoyal40, #2f1a4f);
1619
1635
  background: var(--colorRoyal40, #2f1a4f);
1620
1636
  color: var(--textColorRoyal40, #fffef9);
1621
1637
  }
1622
1638
 
1623
1639
  /*Dark*/
1624
-
1625
- .bar.bar-dark.bar-footer, .bar.bar-dark {
1640
+ .bar.bar-dark.bar-footer,
1641
+ .bar.bar-dark {
1626
1642
  border-color: var(--colorDark40, #343434);
1627
1643
  background: var(--colorDark40, #343434);
1628
1644
  color: var(--textColorDark40, #fffef9);
@@ -1635,13 +1651,22 @@ button.k-primary:active {
1635
1651
  background: transparent;
1636
1652
  }
1637
1653
 
1654
+ /*Default*/
1655
+ .tabs-striped.tabs-icon-default .tab-item.active {
1656
+ color: var(--textColorDefault40, #fffef9);
1657
+ }
1658
+
1638
1659
  /*Secundary*/
1639
- .tabs-striped.tabs-icon-positive .tab-item {
1660
+ .tabs-striped.tabs-icon-positive .tab-item {
1640
1661
  background: var(--colorPrimary40, #68afd9);
1641
1662
  color: var(--textColorPrimary40, #fffef9);
1642
1663
  opacity: 0.5;
1643
1664
  }
1644
1665
 
1666
+ .tabs-striped.tabs-icon-positive .tab-item.active {
1667
+ color: var(--textColorPrimary40, #fffef9);
1668
+ }
1669
+
1645
1670
  /*Success*/
1646
1671
  .tabs-striped.tabs-icon-balanced .tab-item {
1647
1672
  background: var(--colorSuccess40, #62a86b);
@@ -1649,13 +1674,21 @@ button.k-primary:active {
1649
1674
  opacity: 0.5;
1650
1675
  }
1651
1676
 
1677
+ .tabs-striped.tabs-icon-balanced .tab-item.active {
1678
+ color: var(--textColorSuccess40, #fffef9);
1679
+ }
1680
+
1652
1681
  /*Info*/
1653
- .tabs-striped.tabs-icon-calm .tab-item {
1682
+ .tabs-striped.tabs-icon-calm .tab-item {
1654
1683
  background: var(--colorCalm40, #8ac8ee);
1655
1684
  color: var(--textColorCalm40, #fffef9);
1656
1685
  opacity: 0.5;
1657
1686
  }
1658
1687
 
1688
+ .tabs-striped.tabs-icon-calm .tab-item.active {
1689
+ color: var(--textColorCalm40, #fffef9);
1690
+ }
1691
+
1659
1692
  /*Warning*/
1660
1693
  .tabs-striped.tabs-icon-energized .tab-item {
1661
1694
  background: var(--colorWarning40, #e98053);
@@ -1663,13 +1696,21 @@ button.k-primary:active {
1663
1696
  opacity: 0.5;
1664
1697
  }
1665
1698
 
1699
+ .tabs-striped.tabs-icon-warning .tab-item.active {
1700
+ color: var(--textColorWarning40, #fffef9);
1701
+ }
1702
+
1666
1703
  /*Danger*/
1667
- .tabs-striped.tabs-icon-assertive .tab-item {
1704
+ .tabs-striped.tabs-icon-assertive .tab-item {
1668
1705
  background: var(--colorDanger40, #e34646);
1669
1706
  color: var(--textColorDanger40, #fffef9);
1670
1707
  opacity: 0.5;
1671
1708
  }
1672
1709
 
1710
+ .tabs-striped.tabs-icon-assertive .tab-item.active {
1711
+ color: var(--textColorDanger40, #fffef9);
1712
+ }
1713
+
1673
1714
  /*Light*/
1674
1715
  .tabs-striped.tabs-icon-light .tab-item {
1675
1716
  background: var(--colorLight40, #eadede);
@@ -1677,13 +1718,21 @@ button.k-primary:active {
1677
1718
  opacity: 0.5;
1678
1719
  }
1679
1720
 
1721
+ .tabs-striped.tabs-icon-light .tab-item.active {
1722
+ color: var(--textColorLight40, #434343);
1723
+ }
1724
+
1680
1725
  /*Stable*/
1681
- .tabs-striped.tabs-icon-stable .tab-item {
1726
+ .tabs-striped.tabs-icon-stable .tab-item {
1682
1727
  background: var(--colorStable40, #cfcfcf);
1683
1728
  color: var(--textColorStable40, #434343);
1684
1729
  opacity: 0.5;
1685
1730
  }
1686
1731
 
1732
+ .tabs-striped.tabs-icon-stable .tab-item.active {
1733
+ color: var(--textColorStable40, #434343);
1734
+ }
1735
+
1687
1736
  /*Royal*/
1688
1737
  .tabs-striped.tabs-icon-royal .tab-item {
1689
1738
  background: var(--colorRoyal40, #2f1a4f);
@@ -1691,9 +1740,22 @@ button.k-primary:active {
1691
1740
  opacity: 0.5;
1692
1741
  }
1693
1742
 
1743
+ .tabs-striped.tabs-icon-royal .tab-item.active {
1744
+ color: var(--textColorRoyal40, #fffef9);
1745
+ }
1746
+
1694
1747
  /*Dark*/
1695
1748
  .tabs-striped.tabs-icon-dark .tab-item {
1696
1749
  background: var(--colorDark40, #343434);
1697
1750
  color: var(--textColorDark40, #fffef9);
1698
1751
  opacity: 0.5;
1752
+ }
1753
+
1754
+ .tabs-striped.tabs-icon-dark .tab-item.active {
1755
+ color: var(--textColorDark40, #fffef9);
1756
+ }
1757
+
1758
+ /*Slider*/
1759
+ .slider {
1760
+ margin-left:50px;
1699
1761
  }