@featherk/styles 0.3.1 → 0.4.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.
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/{v1/css/featherk-q3-2024-v1.css → v8.2.0/css/featherk.css} +1 -1
- package/dist/v8.2.0/external-styles/featherk-overrides--k-popup-alert.css +34 -0
- package/dist/v8.2.0/scss/_externalStyles.scss +9 -0
- package/dist/{v1 → v8.2.0}/scss/_fonts.scss +17 -17
- package/dist/{v1 → v8.2.0}/scss/_tokens.scss +16 -16
- package/package.json +1 -1
- package/dist/v1/scss/_externalStyles.scss +0 -5
- /package/dist/{v0 → v7.2.0}/css/feather-k-override.css +0 -0
- /package/dist/{v0 → v7.2.0}/css/feather-ks.css +0 -0
- /package/dist/{v0 → v7.2.0}/fonts/Inter-Bold.woff2 +0 -0
- /package/dist/{v0 → v7.2.0}/fonts/Inter-BoldItalic.woff2 +0 -0
- /package/dist/{v0 → v7.2.0}/fonts/Inter-Italic.woff2 +0 -0
- /package/dist/{v0 → v7.2.0}/fonts/Inter-Light.woff2 +0 -0
- /package/dist/{v0 → v7.2.0}/fonts/Inter-LightItalic.woff2 +0 -0
- /package/dist/{v0 → v7.2.0}/fonts/Inter-Medium.woff2 +0 -0
- /package/dist/{v0 → v7.2.0}/fonts/Inter-MediumItalic.woff2 +0 -0
- /package/dist/{v0 → v7.2.0}/fonts/Inter-Regular.woff2 +0 -0
- /package/dist/{v1 → v8.2.0}/external-styles/featherk-map-evitiAdvisor.css +0 -0
- /package/dist/{v1 → v8.2.0}/external-styles/featherk-overrides--k-grid.css +0 -0
- /package/dist/{v1 → v8.2.0}/external-styles/featherk-overrides--k-loader.css +0 -0
- /package/dist/{v1 → v8.2.0}/external-styles/featherk-overrides--k-slider.css +0 -0
- /package/dist/{v1 → v8.2.0}/fonts/Inter-Bold.woff2 +0 -0
- /package/dist/{v1 → v8.2.0}/fonts/Inter-BoldItalic.woff2 +0 -0
- /package/dist/{v1 → v8.2.0}/fonts/Inter-Italic.woff2 +0 -0
- /package/dist/{v1 → v8.2.0}/fonts/Inter-Light.woff2 +0 -0
- /package/dist/{v1 → v8.2.0}/fonts/Inter-LightItalic.woff2 +0 -0
- /package/dist/{v1 → v8.2.0}/fonts/Inter-Medium.woff2 +0 -0
- /package/dist/{v1 → v8.2.0}/fonts/Inter-MediumItalic.woff2 +0 -0
- /package/dist/{v1 → v8.2.0}/fonts/Inter-Regular.woff2 +0 -0
- /package/dist/{v1 → v8.2.0}/scss/_kendo.scss +0 -0
- /package/dist/{v1 → v8.2.0}/scss/_overrides.scss +0 -0
- /package/dist/{v1 → v8.2.0}/scss/_placeholders.scss +0 -0
- /package/dist/{v1 → v8.2.0}/scss/index.scss +0 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/* fk: popup alert */
|
|
2
|
+
:is([class*="fk-popup-alert"]).k-animation-container .k-popup {
|
|
3
|
+
box-shadow: none;
|
|
4
|
+
border-radius: 0.25rem;
|
|
5
|
+
}
|
|
6
|
+
:is([class*="fk-popup-alert"]).k-animation-container .k-popup div {
|
|
7
|
+
color: var(--kendo-color-secondary-text);
|
|
8
|
+
background-color: var(--kendo-color-surface);
|
|
9
|
+
padding-inline: 1rem 0.5rem;
|
|
10
|
+
border-radius: 0.25rem;
|
|
11
|
+
border: 1px solid;
|
|
12
|
+
border-color: var(--kendo-color-border);
|
|
13
|
+
box-shadow: none;
|
|
14
|
+
}
|
|
15
|
+
.fk-popup-alert-info.k-animation-container .k-popup div {
|
|
16
|
+
border-color: var(--kendo-color-info);
|
|
17
|
+
color: var(--kendo-color-info);
|
|
18
|
+
background-color: var(--kendo-color-info-subtle);
|
|
19
|
+
}
|
|
20
|
+
.fk-popup-alert-warning.k-animation-container .k-popup div {
|
|
21
|
+
border-color: var(--kendo-color-warning);
|
|
22
|
+
color: var(--kendo-color-secondary-text);
|
|
23
|
+
background-color: var(--kendo-color-warning-subtle);
|
|
24
|
+
}
|
|
25
|
+
.fk-popup-alert-error.k-animation-container .k-popup div {
|
|
26
|
+
border-color: var(--kendo-color-error);
|
|
27
|
+
color: var(--kendo-color-error);
|
|
28
|
+
background-color: var(--kendo-color-error-subtle);
|
|
29
|
+
}
|
|
30
|
+
.fk-popup-alert-success.k-animation-container .k-popup div {
|
|
31
|
+
border-color: var(--kendo-color-success);
|
|
32
|
+
color: var(--kendo-color-success);
|
|
33
|
+
background-color: var(--kendo-color-success-subtle);
|
|
34
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
@use "../external-styles/featherk-map-evitiAdvisor.css";
|
|
2
|
+
|
|
3
|
+
@use "../external-styles/featherk-overrides--k-slider.css";
|
|
4
|
+
|
|
5
|
+
@use "../external-styles/featherk-overrides--k-grid.css";
|
|
6
|
+
|
|
7
|
+
@use "../external-styles/featherk-overrides--k-loader.css";
|
|
8
|
+
|
|
9
|
+
@use "../external-styles/featherk-overrides--k-popup-alert.css";
|
|
@@ -8,56 +8,56 @@
|
|
|
8
8
|
|
|
9
9
|
@font-face {
|
|
10
10
|
font-family: Inter;
|
|
11
|
-
src: url('../fonts/Inter-
|
|
11
|
+
src: url('../fonts/Inter-Light.woff2') format('woff2');
|
|
12
12
|
font-style: normal;
|
|
13
|
-
font-weight:
|
|
13
|
+
font-weight: 300;
|
|
14
14
|
font-display: auto;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
@font-face {
|
|
18
18
|
font-family: Inter;
|
|
19
|
-
src: url('../fonts/Inter-
|
|
20
|
-
font-style:
|
|
19
|
+
src: url('../fonts/Inter-Bold.woff2') format('woff2');
|
|
20
|
+
font-style: normal;
|
|
21
21
|
font-weight: 700;
|
|
22
22
|
font-display: auto;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
@font-face {
|
|
26
26
|
font-family: Inter;
|
|
27
|
-
src: url('../fonts/Inter-
|
|
28
|
-
font-style:
|
|
29
|
-
font-weight:
|
|
27
|
+
src: url('../fonts/Inter-BoldItalic.woff2') format('woff2');
|
|
28
|
+
font-style: italic;
|
|
29
|
+
font-weight: 700;
|
|
30
30
|
font-display: auto;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
@font-face {
|
|
34
34
|
font-family: Inter;
|
|
35
|
-
src: url('../fonts/Inter-
|
|
35
|
+
src: url('../fonts/Inter-MediumItalic.woff2') format('woff2');
|
|
36
36
|
font-style: italic;
|
|
37
|
-
font-weight:
|
|
37
|
+
font-weight: 500;
|
|
38
38
|
font-display: auto;
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
@font-face {
|
|
42
42
|
font-family: Inter;
|
|
43
|
-
src: url('../fonts/Inter-
|
|
44
|
-
font-style:
|
|
45
|
-
font-weight:
|
|
43
|
+
src: url('../fonts/Inter-LightItalic.woff2') format('woff2');
|
|
44
|
+
font-style: italic;
|
|
45
|
+
font-weight: 300;
|
|
46
46
|
font-display: auto;
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
@font-face {
|
|
50
50
|
font-family: Inter;
|
|
51
|
-
src: url('../fonts/Inter-
|
|
51
|
+
src: url('../fonts/Inter-Italic.woff2') format('woff2');
|
|
52
52
|
font-style: italic;
|
|
53
|
-
font-weight:
|
|
53
|
+
font-weight: 400;
|
|
54
54
|
font-display: auto;
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
@font-face {
|
|
58
58
|
font-family: Inter;
|
|
59
|
-
src: url('../fonts/Inter-
|
|
60
|
-
font-style:
|
|
61
|
-
font-weight:
|
|
59
|
+
src: url('../fonts/Inter-Medium.woff2') format('woff2');
|
|
60
|
+
font-style: normal;
|
|
61
|
+
font-weight: 500;
|
|
62
62
|
font-display: auto;
|
|
63
63
|
}
|
|
@@ -476,7 +476,7 @@ $kendo-menu-popup-bg: $feather-kendo-menu-popup-bg;
|
|
|
476
476
|
$kendo-picker-text: $feather-kendo-picker-text;
|
|
477
477
|
$kendo-picker-border: $feather-kendo-picker-border;
|
|
478
478
|
$kendo-switch-off-track-border: $feather-kendo-switch-off-track-border;
|
|
479
|
-
$kendo-font-family:
|
|
479
|
+
$kendo-font-family: TB_Inter;
|
|
480
480
|
$kendo-font-size: 0.875rem;
|
|
481
481
|
$kendo-font-weight-normal: 500;
|
|
482
482
|
$kendo-line-height: 1.4285714286;
|
|
@@ -554,92 +554,92 @@ $enable-gradients: true;
|
|
|
554
554
|
|
|
555
555
|
$feather-typography: (
|
|
556
556
|
kendo-default-typography: (
|
|
557
|
-
font-family:
|
|
557
|
+
font-family: (Inter),
|
|
558
558
|
font-size: 0.875rem,
|
|
559
559
|
font-weight: 500,
|
|
560
560
|
line-height: 1.4285714286,
|
|
561
561
|
),
|
|
562
562
|
feather-display-1: (
|
|
563
|
-
font-family:
|
|
563
|
+
font-family: (Inter),
|
|
564
564
|
font-size: 4.5rem,
|
|
565
565
|
font-weight: 300,
|
|
566
566
|
line-height: 1.3333333,
|
|
567
567
|
letter-spacing: -0.015625em,
|
|
568
568
|
),
|
|
569
569
|
feather-display-2: (
|
|
570
|
-
font-family:
|
|
570
|
+
font-family: (Inter),
|
|
571
571
|
font-size: 3.5rem,
|
|
572
572
|
font-weight: 300,
|
|
573
573
|
line-height: 1.333333,
|
|
574
574
|
letter-spacing: -0.008em,
|
|
575
575
|
),
|
|
576
576
|
feather-display-3: (
|
|
577
|
-
font-family:
|
|
577
|
+
font-family: (Inter),
|
|
578
578
|
font-size: 3rem,
|
|
579
579
|
font-weight: 300,
|
|
580
580
|
line-height: 1.333333,
|
|
581
581
|
letter-spacing: unset,
|
|
582
582
|
),
|
|
583
583
|
feather-display-4: (
|
|
584
|
-
font-family:
|
|
584
|
+
font-family: (Inter),
|
|
585
585
|
font-size: 2.25rem,
|
|
586
586
|
font-weight: 300,
|
|
587
587
|
line-height: 1.333333,
|
|
588
588
|
letter-spacing: -0.01em,
|
|
589
589
|
),
|
|
590
590
|
feather-heading-1: (
|
|
591
|
-
font-family:
|
|
591
|
+
font-family: (Inter),
|
|
592
592
|
font-size: 1.5rem,
|
|
593
593
|
font-weight: 700,
|
|
594
594
|
line-height: 1.2857142857,
|
|
595
595
|
letter-spacing: unset,
|
|
596
596
|
),
|
|
597
597
|
feather-heading-2: (
|
|
598
|
-
font-family:
|
|
598
|
+
font-family: (Inter),
|
|
599
599
|
font-size: 1.375rem,
|
|
600
600
|
font-weight: 400,
|
|
601
601
|
line-height: 1.5,
|
|
602
602
|
),
|
|
603
603
|
feather-heading-3: (
|
|
604
|
-
font-family:
|
|
604
|
+
font-family: (Inter),
|
|
605
605
|
font-size: 1.1875rem,
|
|
606
606
|
font-weight: 700,
|
|
607
607
|
line-height: 1.4736842105,
|
|
608
608
|
letter-spacing: 0.02em,
|
|
609
609
|
),
|
|
610
610
|
feather-heading-4: (
|
|
611
|
-
font-family:
|
|
611
|
+
font-family: (Inter),
|
|
612
612
|
font-size: 1rem,
|
|
613
613
|
font-weight: 400,
|
|
614
614
|
line-height: 1.5,
|
|
615
615
|
),
|
|
616
616
|
feather-heading-5: (
|
|
617
|
-
font-family:
|
|
617
|
+
font-family: (Inter),
|
|
618
618
|
font-size: 0.875rem,
|
|
619
619
|
font-weight: 700,
|
|
620
620
|
line-height: 1.5,
|
|
621
621
|
letter-spacing: 0.02em,
|
|
622
622
|
),
|
|
623
623
|
feather-heading-6: (
|
|
624
|
-
font-family:
|
|
624
|
+
font-family: (Inter),
|
|
625
625
|
font-size: 0.8125rem,
|
|
626
626
|
font-weight: 700,
|
|
627
627
|
line-height: 1.5384615385,
|
|
628
628
|
),
|
|
629
629
|
feather-body-large: (
|
|
630
|
-
font-family:
|
|
630
|
+
font-family: (Inter),
|
|
631
631
|
font-size: 1rem,
|
|
632
632
|
font-weight: 400,
|
|
633
633
|
line-height: 1.5,
|
|
634
634
|
),
|
|
635
635
|
feather-body-small: (
|
|
636
|
-
font-family:
|
|
636
|
+
font-family: (Inter),
|
|
637
637
|
font-size: 0.875rem,
|
|
638
638
|
font-weight: 500,
|
|
639
639
|
line-height: 1.4285714286,
|
|
640
640
|
),
|
|
641
641
|
feather-button: (
|
|
642
|
-
font-family:
|
|
642
|
+
font-family: (Inter),
|
|
643
643
|
font-size: 0.875rem,
|
|
644
644
|
font-weight: 700,
|
|
645
645
|
line-height: 1.4285714286,
|
|
@@ -647,7 +647,7 @@ $feather-typography: (
|
|
|
647
647
|
text-transform: none,
|
|
648
648
|
),
|
|
649
649
|
feather-caption-text: (
|
|
650
|
-
font-family:
|
|
650
|
+
font-family: (Inter),
|
|
651
651
|
font-size: 0.75rem,
|
|
652
652
|
font-weight: 400,
|
|
653
653
|
line-height: 1.5,
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|