@epam/uui 5.0.0-alpha.3 → 5.0.0-alpha.4

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.
@@ -1,81 +0,0 @@
1
- .line-height-12 { line-height: 12px; }
2
- .line-height-18 { line-height: 18px; }
3
- .line-height-24 { line-height: 24px; }
4
- .line-height-30 { line-height: 30px; }
5
-
6
- .font-size-10 { font-size: 10px; }
7
- .font-size-12 { font-size: 12px; }
8
- .font-size-14 { font-size: 14px; }
9
- .font-size-16 { font-size: 16px; }
10
- .font-size-18 { font-size: 18px; }
11
- .font-size-24 { font-size: 24px; }
12
-
13
- .v-padding-2 {
14
- padding-top: 2px;
15
- padding-bottom: 2px;
16
- }
17
-
18
- .v-padding-3 {
19
- padding-top: 3px;
20
- padding-bottom: 3px;
21
- }
22
-
23
- .v-padding-5 {
24
- padding-top: 5px;
25
- padding-bottom: 5px;
26
- }
27
-
28
- .v-padding-6 {
29
- padding-top: 6px;
30
- padding-bottom: 6px;
31
- }
32
-
33
- .v-padding-8 {
34
- padding-top: 8px;
35
- padding-bottom: 8px;
36
- }
37
-
38
- .v-padding-9 {
39
- padding-top: 9px;
40
- padding-bottom: 9px;
41
- }
42
-
43
- .v-padding-11 {
44
- padding-top: 11px;
45
- padding-bottom: 11px;
46
- }
47
-
48
- .v-padding-12 {
49
- padding-top: 12px;
50
- padding-bottom: 12px;
51
- }
52
-
53
- .v-padding-14 {
54
- padding-top: 14px;
55
- padding-bottom: 14px;
56
- }
57
-
58
- .v-padding-15 {
59
- padding-top: 15px;
60
- padding-bottom: 15px;
61
- }
62
-
63
- .v-padding-17 {
64
- padding-top: 17px;
65
- padding-bottom: 17px;
66
- }
67
-
68
- .v-padding-18 {
69
- padding-top: 18px;
70
- padding-bottom: 18px;
71
- }
72
-
73
- .v-padding-23 {
74
- padding-top: 23px;
75
- padding-bottom: 23px;
76
- }
77
-
78
- .v-padding-24 {
79
- padding-top: 24px;
80
- padding-bottom: 24px;
81
- }
@@ -1,39 +0,0 @@
1
- @forward 'typography-mixins';
2
- @use 'typography-mixins' as *;
3
-
4
- @mixin overflow-ellipsis() {
5
- overflow: hidden;
6
- text-overflow: ellipsis;
7
- }
8
-
9
- :local(.typography-header) {
10
- @include typography-header();
11
- }
12
-
13
- :local(.typography-block) {
14
- @include typography-block();
15
- }
16
-
17
- :local(.typography-inline) {
18
- @include typography-inline();
19
- }
20
-
21
- :local(.typography-16) {
22
- @include typography-16();
23
- }
24
-
25
- :local(.typography-14) {
26
- @include typography-14();
27
- }
28
-
29
- :local(.typography-12) {
30
- @include typography-12();
31
- }
32
-
33
- :local(.typography-promo) {
34
- font-family: var(--font-regular);
35
- color: var(--uui-text-primary);
36
- composes: typography-header;
37
- composes: typography-block;
38
- composes: typography-inline;
39
- }
@@ -1,51 +0,0 @@
1
- :global(.badge-info) {
2
- --uui-badge-bg: var(--uui-info);
3
- --uui-badge-bg-hover: var(--uui-info-active);
4
- //--bg-color-semitransparent: #{lighten(#008ACE, 50%)};
5
- //--border-color-semitransparent: #{lighten($blue, 40%)};
6
- --uui-badge-caption-solid: white;
7
- //--uui-caption-semitransparent: #{darken($blue, 10%)};
8
- //--uui-caption-semitransparent-hover: #{darken($blue, 20%)};
9
- //--uui-caption-transparent: #{$gray80};
10
- --uui-badge-count-bg: white;
11
- --uui-badge-count: var(--uui-text-secondary);
12
- }
13
-
14
- :global(.badge-success) {
15
- --uui-badge-bg: var(--uui-success);
16
- --uui-badge-bg-hover: var(--uui-success-active);
17
- //--bg-color-semitransparent: #{$cyan-lightest};
18
- //--border-color-semitransparent: #{$cyan-light};
19
- --uui-badge-caption-solid: white;
20
- //--uui-caption-semitransparent: #{$cyan-dark};
21
- //--uui-caption-semitransparent-hover: #{$cyan-darkest};
22
- //--uui-caption-transparent: #{$gray80};
23
- --uui-badge-count-bg: white;
24
- --uui-badge-count: var(--uui-text-secondary);
25
- }
26
-
27
- :global(.badge-warning) {
28
- --uui-badge-bg: var(--uui-warning);
29
- --uui-badge-bg-hover: var(--uui-warning-active);
30
- //--bg-color-semitransparent: #{lighten($green, 50%)};
31
- //--border-color-semitransparent: #{lighten($green, 40%)};
32
- --uui-badge-caption-solid: white;
33
- //--uui-caption-semitransparent: #{darken($green, 10%)};
34
- //--uui-caption-semitransparent-hover: #{darken($green, 20%)};
35
- //--uui-caption-transparent: #{$gray80};
36
- --uui-badge-count-bg: white;
37
- --uui-badge-count: var(--uui-text-secondary);
38
- }
39
-
40
- :global(.badge-error) {
41
- --uui-badge-bg: var(--uui-error);
42
- --uui-badge-bg-hover: var(--uui-error-active);
43
- //--bg-color-semitransparent: #{lighten($amber, 40%)};
44
- //--border-color-semitransparent: #{lighten($amber, 30%)};
45
- --uui-badge-caption-solid: var(--uui-text-primary);
46
- //--uui-caption-semitransparent: #995A00;
47
- //--uui-caption-semitransparent-hover: #804000;
48
- //--uui-caption-transparent: #{$gray80};
49
- --uui-badge-count-bg: white;
50
- --uui-badge-count: var(--uui-text-secondary);
51
- }