@dialpad/dialtone 6.29.0 → 6.30.1
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/lib/build/less/utilities/internals.less +4 -6
- package/lib/build/less/variables/typography.less +1 -1
- package/lib/build/svg/system/skip-next.svg +3 -0
- package/lib/build/svg/system/skip-previous.svg +3 -0
- package/lib/build/svg/system/zero.svg +3 -0
- package/lib/dist/css/dialtone.css +14 -14
- package/lib/dist/css/dialtone.min.css +1 -1
- package/lib/dist/svg/system/skip-next.svg +1 -0
- package/lib/dist/svg/system/skip-previous.svg +1 -0
- package/lib/dist/svg/system/zero.svg +1 -0
- package/lib/dist/vue/icons/IconSkipNext.vue +3 -0
- package/lib/dist/vue/icons/IconSkipPrevious.vue +3 -0
- package/lib/dist/vue/icons/IconZero.vue +3 -0
- package/package.json +4 -2
|
@@ -12,13 +12,8 @@
|
|
|
12
12
|
// Various configuration settings to generate the classes desired.
|
|
13
13
|
// ----------------------------------------------------------------------------
|
|
14
14
|
#d-internal-config {
|
|
15
|
-
|
|
16
15
|
// Do we want to generate font-face CSS?
|
|
17
16
|
@generate-font-face: true;
|
|
18
|
-
|
|
19
|
-
// What's the font-face file path?
|
|
20
|
-
@define-font-path: '../fonts/';
|
|
21
|
-
|
|
22
17
|
}
|
|
23
18
|
|
|
24
19
|
// ============================================================================
|
|
@@ -383,12 +378,15 @@
|
|
|
383
378
|
#font-face(@type, @name, @style: normal) {
|
|
384
379
|
#d-internal-config();
|
|
385
380
|
|
|
381
|
+
// Path of the fonts that Dialtone provides
|
|
382
|
+
@define-font-path: '../../fonts/';
|
|
383
|
+
|
|
386
384
|
if((@generate-font-face = true), each(@type, {
|
|
387
385
|
@font-face {
|
|
388
386
|
font-style: @style;
|
|
389
387
|
font-weight: @key;
|
|
390
388
|
font-family: @name;
|
|
391
|
-
src: url("
|
|
389
|
+
src: url("./@{define-font-path}@{value}.woff2") format("woff2");
|
|
392
390
|
};
|
|
393
391
|
}));
|
|
394
392
|
}
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
|
|
63
63
|
@ff-custom: @define-ff-custom-name, @ff-sans;
|
|
64
64
|
@ff-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
|
|
65
|
-
@ff-mono: @define-ff-mono-name,
|
|
65
|
+
@ff-mono: @define-ff-mono-name, RobotoMono,SFMono-Regular,Consolas,Liberation Mono,Menlo,Courier,monospace;
|
|
66
66
|
@ff-marketing: @define-ff-marketing-name, @ff-sans;
|
|
67
67
|
@ff-marketing-semi-expanded: @define-ff-marketing-semi-expanded-name, @ff-sans;
|
|
68
68
|
@ff-marketing-expanded: @define-ff-marketing-expanded-name, @ff-sans;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M12 19C10.3333 19 9 18.3375 8 17.0125C7 15.6875 6.5 14.0167 6.5 12C6.5 9.98333 7 8.3125 8 6.9875C9 5.6625 10.3333 5 12 5C13.6667 5 15 5.6625 16 6.9875C17 8.3125 17.5 9.98333 17.5 12C17.5 14.0167 17 15.6875 16 17.0125C15 18.3375 13.6667 19 12 19ZM12 17.45C13.2667 17.45 14.2167 16.9042 14.85 15.8125C15.4833 14.7208 15.8 13.45 15.8 12C15.8 10.55 15.4833 9.27917 14.85 8.1875C14.2167 7.09583 13.2667 6.55 12 6.55C10.7333 6.55 9.78333 7.09583 9.15 8.1875C8.51667 9.27917 8.2 10.55 8.2 12C8.2 13.45 8.51667 14.7208 9.15 15.8125C9.78333 16.9042 10.7333 17.45 12 17.45Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -18668,73 +18668,73 @@ body.theme-dark .d\:d-bgg-to-0 {
|
|
|
18668
18668
|
font-style: normal;
|
|
18669
18669
|
font-weight: 400;
|
|
18670
18670
|
font-family: 'Inter';
|
|
18671
|
-
src: url("
|
|
18671
|
+
src: url("../../fonts/Inter-Regular.woff2") format("woff2");
|
|
18672
18672
|
}
|
|
18673
18673
|
@font-face {
|
|
18674
18674
|
font-style: normal;
|
|
18675
18675
|
font-weight: 700;
|
|
18676
18676
|
font-family: 'Inter';
|
|
18677
|
-
src: url("
|
|
18677
|
+
src: url("../../fonts/Inter-Bold.woff2") format("woff2");
|
|
18678
18678
|
}
|
|
18679
18679
|
@font-face {
|
|
18680
18680
|
font-style: italic;
|
|
18681
18681
|
font-weight: 400;
|
|
18682
18682
|
font-family: 'Inter';
|
|
18683
|
-
src: url("
|
|
18683
|
+
src: url("../../fonts/Inter-Italic.woff2") format("woff2");
|
|
18684
18684
|
}
|
|
18685
18685
|
@font-face {
|
|
18686
18686
|
font-style: italic;
|
|
18687
18687
|
font-weight: 700;
|
|
18688
18688
|
font-family: 'Inter';
|
|
18689
|
-
src: url("
|
|
18689
|
+
src: url("../../fonts/Inter-BoldItalic.woff2") format("woff2");
|
|
18690
18690
|
}
|
|
18691
18691
|
@font-face {
|
|
18692
18692
|
font-style: normal;
|
|
18693
18693
|
font-weight: 400;
|
|
18694
18694
|
font-family: 'RobotoMono';
|
|
18695
|
-
src: url("
|
|
18695
|
+
src: url("../../fonts/RobotoMono-Regular.woff2") format("woff2");
|
|
18696
18696
|
}
|
|
18697
18697
|
@font-face {
|
|
18698
18698
|
font-style: normal;
|
|
18699
18699
|
font-weight: 700;
|
|
18700
18700
|
font-family: 'RobotoMono';
|
|
18701
|
-
src: url("
|
|
18701
|
+
src: url("../../fonts/RobotoMono-Bold.woff2") format("woff2");
|
|
18702
18702
|
}
|
|
18703
18703
|
@font-face {
|
|
18704
18704
|
font-style: normal;
|
|
18705
18705
|
font-weight: 400;
|
|
18706
18706
|
font-family: 'Archivo';
|
|
18707
|
-
src: url("
|
|
18707
|
+
src: url("../../fonts/Archivo-Regular.woff2") format("woff2");
|
|
18708
18708
|
}
|
|
18709
18709
|
@font-face {
|
|
18710
18710
|
font-style: normal;
|
|
18711
18711
|
font-weight: 600;
|
|
18712
18712
|
font-family: 'Archivo';
|
|
18713
|
-
src: url("
|
|
18713
|
+
src: url("../../fonts/Archivo-SemiBold.woff2") format("woff2");
|
|
18714
18714
|
}
|
|
18715
18715
|
@font-face {
|
|
18716
18716
|
font-style: normal;
|
|
18717
18717
|
font-weight: 700;
|
|
18718
18718
|
font-family: 'Archivo';
|
|
18719
|
-
src: url("
|
|
18719
|
+
src: url("../../fonts/Archivo-Bold.woff2") format("woff2");
|
|
18720
18720
|
}
|
|
18721
18721
|
@font-face {
|
|
18722
18722
|
font-style: normal;
|
|
18723
18723
|
font-weight: 500;
|
|
18724
18724
|
font-family: 'ArchivoSemiExpanded';
|
|
18725
|
-
src: url("
|
|
18725
|
+
src: url("../../fonts/ArchivoSemiExpanded-Medium.woff2") format("woff2");
|
|
18726
18726
|
}
|
|
18727
18727
|
@font-face {
|
|
18728
18728
|
font-style: normal;
|
|
18729
18729
|
font-weight: 600;
|
|
18730
18730
|
font-family: 'ArchivoSemiExpanded';
|
|
18731
|
-
src: url("
|
|
18731
|
+
src: url("../../fonts/ArchivoSemiExpanded-SemiBold.woff2") format("woff2");
|
|
18732
18732
|
}
|
|
18733
18733
|
@font-face {
|
|
18734
18734
|
font-style: normal;
|
|
18735
18735
|
font-weight: 600;
|
|
18736
18736
|
font-family: 'ArchivoExpanded';
|
|
18737
|
-
src: url("
|
|
18737
|
+
src: url("../../fonts/ArchivoExpanded-SemiBold.woff2") format("woff2");
|
|
18738
18738
|
}
|
|
18739
18739
|
.d-ff-custom {
|
|
18740
18740
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol' !important;
|
|
@@ -18743,7 +18743,7 @@ body.theme-dark .d\:d-bgg-to-0 {
|
|
|
18743
18743
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol' !important;
|
|
18744
18744
|
}
|
|
18745
18745
|
.d-ff-mono {
|
|
18746
|
-
font-family: 'RobotoMono',
|
|
18746
|
+
font-family: 'RobotoMono', RobotoMono, SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace !important;
|
|
18747
18747
|
}
|
|
18748
18748
|
.d-ff-marketing {
|
|
18749
18749
|
font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol' !important;
|
|
@@ -19514,7 +19514,7 @@ body {
|
|
|
19514
19514
|
--grid-column-auto: 1fr;
|
|
19515
19515
|
--ff-custom: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
|
|
19516
19516
|
--ff-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
|
|
19517
|
-
--ff-mono: 'RobotoMono',
|
|
19517
|
+
--ff-mono: 'RobotoMono', RobotoMono, SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace;
|
|
19518
19518
|
--ff-marketing: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
|
|
19519
19519
|
--ff-marketing-semi-expanded: 'ArchivoSemiExpanded', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
|
|
19520
19520
|
--ff-marketing-expanded: 'ArchivoExpanded', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
|