@elliemae/ds-basic 3.13.1-rc.0 → 3.14.0-next.2

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 (41) hide show
  1. package/dist/css/dimsum.css +91 -1
  2. package/dist/css/dimsum.min.css +1 -1
  3. package/dist/css/dimsum.min.css.map +1 -1
  4. package/dist/styles/base/fonts/ProximaLight.otf +0 -0
  5. package/dist/styles/base/fonts/ProximaLightItalic.otf +0 -0
  6. package/dist/styles/base/fonts/ProximaMedium.otf +0 -0
  7. package/dist/styles/base/fonts/ProximaMediumItalic.otf +0 -0
  8. package/dist/styles/base/fonts/ProximaNovaBlack.otf +0 -0
  9. package/dist/styles/base/fonts/ProximaNovaBlackItalic.otf +0 -0
  10. package/dist/styles/base/fonts/ProximaNovaBold.otf +0 -0
  11. package/dist/styles/base/fonts/ProximaNovaBoldItalic.otf +0 -0
  12. package/dist/styles/base/fonts/ProximaNovaExtrabold.otf +0 -0
  13. package/dist/styles/base/fonts/ProximaNovaExtraboldItalic.otf +0 -0
  14. package/dist/styles/base/fonts/ProximaNovaRegular.otf +0 -0
  15. package/dist/styles/base/fonts/ProximaNovaRegularItalic.otf +0 -0
  16. package/dist/styles/base/fonts/ProximaNovaSemibold.otf +0 -0
  17. package/dist/styles/base/fonts/ProximaNovaSemiboldItalic.otf +0 -0
  18. package/dist/styles/base/fonts/ProximaNovaThin.otf +0 -0
  19. package/dist/styles/base/fonts/ProximaNovaThinItalic.otf +0 -0
  20. package/dist/styles/base/fonts/font-base.scss +93 -2
  21. package/dist/styles/components/packages/ds-basic/index.scss +1 -1
  22. package/dist/styles/components/packages/ds-basic/styles/base/fonts/font-base.scss +93 -2
  23. package/dist/styles/components/packages/{ds-button → ds-button-v1}/DSButton.scss +0 -0
  24. package/package.json +1 -1
  25. package/dist/css/fonts/ProximaNovaBold.woff +0 -0
  26. package/dist/css/fonts/ProximaNovaBold.woff2 +0 -0
  27. package/dist/css/fonts/ProximaNovaRegular.woff +0 -0
  28. package/dist/css/fonts/ProximaNovaRegular.woff2 +0 -0
  29. package/dist/css/fonts/ProximaNovaSemibold.woff2 +0 -0
  30. package/dist/css/fonts/ProximaNovaThin.woff +0 -0
  31. package/dist/css/fonts/ProximaNovaThin.woff2 +0 -0
  32. package/dist/styles/base/fonts/ProximaNovaBold.woff +0 -0
  33. package/dist/styles/base/fonts/ProximaNovaBold.woff2 +0 -0
  34. package/dist/styles/base/fonts/ProximaNovaRegular.eot +0 -0
  35. package/dist/styles/base/fonts/ProximaNovaRegular.svg +0 -1294
  36. package/dist/styles/base/fonts/ProximaNovaRegular.ttf +0 -0
  37. package/dist/styles/base/fonts/ProximaNovaRegular.woff +0 -0
  38. package/dist/styles/base/fonts/ProximaNovaRegular.woff2 +0 -0
  39. package/dist/styles/base/fonts/ProximaNovaSemibold.woff2 +0 -0
  40. package/dist/styles/base/fonts/ProximaNovaThin.woff +0 -0
  41. package/dist/styles/base/fonts/ProximaNovaThin.woff2 +0 -0
@@ -1,9 +1,100 @@
1
1
  // Note: The URLs here don't match with filesystem due to a defect in node-sass and webpack sass loader.
2
2
 
3
+ // Regular font style
3
4
  @font-face {
4
5
  font-family: 'proxima-nova';
5
- src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaRegular.woff2') format('woff2'),
6
- url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaRegular.woff') format('woff');
6
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaThin.otf') format('opentype');
7
+ font-weight: 100;
8
+ font-style: normal;
9
+ }
10
+ @font-face {
11
+ font-family: 'proxima-nova';
12
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaLight.otf') format('opentype');
13
+ font-weight: 300;
14
+ font-style: normal;
15
+ }
16
+ @font-face {
17
+ font-family: 'proxima-nova';
18
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaRegular.otf') format('opentype');
7
19
  font-weight: normal;
8
20
  font-style: normal;
9
21
  }
22
+ @font-face {
23
+ font-family: 'proxima-nova';
24
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaMedium.otf') format('opentype');
25
+ font-weight: 500;
26
+ font-style: normal;
27
+ }
28
+ @font-face {
29
+ font-family: 'proxima-nova';
30
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaSemibold.otf') format('opentype');
31
+ font-weight: 600;
32
+ font-style: normal;
33
+ }
34
+ @font-face {
35
+ font-family: 'proxima-nova';
36
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaBold.otf') format('opentype');
37
+ font-weight: bold;
38
+ font-style: normal;
39
+ }
40
+ @font-face {
41
+ font-family: 'proxima-nova';
42
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaExtrabold.otf') format('opentype');
43
+ font-weight: 800;
44
+ font-style: normal;
45
+ }
46
+ @font-face {
47
+ font-family: 'proxima-nova';
48
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaBlack.otf') format('opentype');
49
+ font-weight: 900;
50
+ font-style: normal;
51
+ }
52
+ // Italic font style
53
+ @font-face {
54
+ font-family: 'proxima-nova';
55
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaThinItalic.otf') format('opentype');
56
+ font-weight: 100;
57
+ font-style: italic;
58
+ }
59
+ @font-face {
60
+ font-family: 'proxima-nova';
61
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaLightItalic.otf') format('opentype');
62
+ font-weight: 300;
63
+ font-style: italic;
64
+ }
65
+ @font-face {
66
+ font-family: 'proxima-nova';
67
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaRegularItalic.otf') format('opentype');
68
+ font-weight: normal;
69
+ font-style: italic;
70
+ }
71
+ @font-face {
72
+ font-family: 'proxima-nova';
73
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaMediumItalic.otf') format('opentype');
74
+ font-weight: 500;
75
+ font-style: italic;
76
+ }
77
+ @font-face {
78
+ font-family: 'proxima-nova';
79
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaSemiboldItalic.otf') format('opentype');
80
+ font-weight: 600;
81
+ font-style: italic;
82
+ }
83
+ @font-face {
84
+ font-family: 'proxima-nova';
85
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaBoldItalic.otf') format('opentype');
86
+ font-weight: bold;
87
+ font-style: italic;
88
+ }
89
+ @font-face {
90
+ font-family: 'proxima-nova';
91
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaExtraboldItalic.otf') format('opentype');
92
+ font-weight: 800;
93
+ font-style: italic;
94
+ }
95
+ @font-face {
96
+ font-family: 'proxima-nova';
97
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaBlackItalic.otf') format('opentype');
98
+ font-weight: 900;
99
+ font-style: italic;
100
+ }
@@ -33,7 +33,7 @@
33
33
  @import '../../ds-popover/src/DSPopover';
34
34
  @import '../../ds-overlay/src/DSOverlay';
35
35
  @import '../../ds-portal/src/DSPortal';
36
- @import '../../ds-button/src/DSButton';
36
+ @import '../../ds-button-v1/src/DSButton';
37
37
  @import '../../ds-separator/src/DSSeparator';
38
38
  @import '../../ds-label-value/src/DSLabelValue';
39
39
  @import '../../ds-group-box/src/DSGroupBox';
@@ -1,9 +1,100 @@
1
1
  // Note: The URLs here don't match with filesystem due to a defect in node-sass and webpack sass loader.
2
2
 
3
+ // Regular font style
3
4
  @font-face {
4
5
  font-family: 'proxima-nova';
5
- src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaRegular.woff2') format('woff2'),
6
- url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaRegular.woff') format('woff');
6
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaThin.otf') format('opentype');
7
+ font-weight: 100;
8
+ font-style: normal;
9
+ }
10
+ @font-face {
11
+ font-family: 'proxima-nova';
12
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaLight.otf') format('opentype');
13
+ font-weight: 300;
14
+ font-style: normal;
15
+ }
16
+ @font-face {
17
+ font-family: 'proxima-nova';
18
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaRegular.otf') format('opentype');
7
19
  font-weight: normal;
8
20
  font-style: normal;
9
21
  }
22
+ @font-face {
23
+ font-family: 'proxima-nova';
24
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaMedium.otf') format('opentype');
25
+ font-weight: 500;
26
+ font-style: normal;
27
+ }
28
+ @font-face {
29
+ font-family: 'proxima-nova';
30
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaSemibold.otf') format('opentype');
31
+ font-weight: 600;
32
+ font-style: normal;
33
+ }
34
+ @font-face {
35
+ font-family: 'proxima-nova';
36
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaBold.otf') format('opentype');
37
+ font-weight: bold;
38
+ font-style: normal;
39
+ }
40
+ @font-face {
41
+ font-family: 'proxima-nova';
42
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaExtrabold.otf') format('opentype');
43
+ font-weight: 800;
44
+ font-style: normal;
45
+ }
46
+ @font-face {
47
+ font-family: 'proxima-nova';
48
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaBlack.otf') format('opentype');
49
+ font-weight: 900;
50
+ font-style: normal;
51
+ }
52
+ // Italic font style
53
+ @font-face {
54
+ font-family: 'proxima-nova';
55
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaThinItalic.otf') format('opentype');
56
+ font-weight: 100;
57
+ font-style: italic;
58
+ }
59
+ @font-face {
60
+ font-family: 'proxima-nova';
61
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaLightItalic.otf') format('opentype');
62
+ font-weight: 300;
63
+ font-style: italic;
64
+ }
65
+ @font-face {
66
+ font-family: 'proxima-nova';
67
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaRegularItalic.otf') format('opentype');
68
+ font-weight: normal;
69
+ font-style: italic;
70
+ }
71
+ @font-face {
72
+ font-family: 'proxima-nova';
73
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaMediumItalic.otf') format('opentype');
74
+ font-weight: 500;
75
+ font-style: italic;
76
+ }
77
+ @font-face {
78
+ font-family: 'proxima-nova';
79
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaSemiboldItalic.otf') format('opentype');
80
+ font-weight: 600;
81
+ font-style: italic;
82
+ }
83
+ @font-face {
84
+ font-family: 'proxima-nova';
85
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaBoldItalic.otf') format('opentype');
86
+ font-weight: bold;
87
+ font-style: italic;
88
+ }
89
+ @font-face {
90
+ font-family: 'proxima-nova';
91
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaExtraboldItalic.otf') format('opentype');
92
+ font-weight: 800;
93
+ font-style: italic;
94
+ }
95
+ @font-face {
96
+ font-family: 'proxima-nova';
97
+ src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaBlackItalic.otf') format('opentype');
98
+ font-weight: 900;
99
+ font-style: italic;
100
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-basic",
3
- "version": "3.13.1-rc.0",
3
+ "version": "3.14.0-next.2",
4
4
  "license": "MIT",
5
5
  "description": "EllieMae UI Design System Library",
6
6
  "files": [
Binary file
Binary file