@veracity/vui 2.4.0 → 2.4.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/dist/cjs/core/consts.d.ts +1 -0
- package/dist/cjs/core/consts.d.ts.map +1 -1
- package/dist/cjs/core/consts.js +2 -1
- package/dist/cjs/core/vuiProvider/fontFaces.d.ts.map +1 -1
- package/dist/cjs/core/vuiProvider/fontFaces.js +44 -4
- package/dist/cjs/theme/components.d.ts +14 -0
- package/dist/cjs/theme/components.d.ts.map +1 -1
- package/dist/cjs/theme/components.js +7 -0
- package/dist/cjs/theme/defaultTheme.d.ts +14 -0
- package/dist/cjs/theme/defaultTheme.d.ts.map +1 -1
- package/dist/cjs/theme/themePlaceholder.d.ts +9 -0
- package/dist/cjs/theme/themePlaceholder.d.ts.map +1 -0
- package/dist/cjs/theme/themePlaceholder.js +14 -0
- package/dist/esm/core/consts.d.ts +1 -0
- package/dist/esm/core/consts.d.ts.map +1 -1
- package/dist/esm/core/consts.js +1 -0
- package/dist/esm/core/vuiProvider/fontFaces.d.ts.map +1 -1
- package/dist/esm/core/vuiProvider/fontFaces.js +45 -5
- package/dist/esm/theme/components.d.ts +14 -0
- package/dist/esm/theme/components.d.ts.map +1 -1
- package/dist/esm/theme/components.js +7 -0
- package/dist/esm/theme/defaultTheme.d.ts +14 -0
- package/dist/esm/theme/defaultTheme.d.ts.map +1 -1
- package/dist/esm/theme/themePlaceholder.d.ts +9 -0
- package/dist/esm/theme/themePlaceholder.d.ts.map +1 -0
- package/dist/esm/theme/themePlaceholder.js +12 -0
- package/package.json +1 -1
- package/src/core/consts.ts +1 -0
- package/src/core/vuiProvider/fontFaces.ts +46 -5
- package/src/theme/components.ts +9 -0
- package/src/theme/themePlaceholder.ts +17 -0
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export declare const cdnUrl = "https://cdn.veracity.com";
|
|
2
2
|
export declare const cdnStagUrl = "https://cdnstag.veracity.com";
|
|
3
3
|
export declare const cdnTestUrl = "https://cdntest.veracity.com";
|
|
4
|
+
export declare const cdnFontsPath = "/common/fonts";
|
|
4
5
|
export declare const cdnUrls: {
|
|
5
6
|
readonly Prod: "https://cdn.veracity.com";
|
|
6
7
|
readonly Stag: "https://cdnstag.veracity.com";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"consts.d.ts","sourceRoot":"","sources":["../../../src/core/consts.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,MAAM,6BAA6B,CAAA;AAChD,eAAO,MAAM,UAAU,iCAAiC,CAAA;AACxD,eAAO,MAAM,UAAU,iCAAiC,CAAA;
|
|
1
|
+
{"version":3,"file":"consts.d.ts","sourceRoot":"","sources":["../../../src/core/consts.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,MAAM,6BAA6B,CAAA;AAChD,eAAO,MAAM,UAAU,iCAAiC,CAAA;AACxD,eAAO,MAAM,UAAU,iCAAiC,CAAA;AACxD,eAAO,MAAM,YAAY,kBAAkB,CAAA;AAE3C,eAAO,MAAM,OAAO;;;;CAIV,CAAA"}
|
package/dist/cjs/core/consts.js
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.cdnUrls = exports.cdnTestUrl = exports.cdnStagUrl = exports.cdnUrl = void 0;
|
|
3
|
+
exports.cdnUrls = exports.cdnFontsPath = exports.cdnTestUrl = exports.cdnStagUrl = exports.cdnUrl = void 0;
|
|
4
4
|
exports.cdnUrl = 'https://cdn.veracity.com';
|
|
5
5
|
exports.cdnStagUrl = 'https://cdnstag.veracity.com';
|
|
6
6
|
exports.cdnTestUrl = 'https://cdntest.veracity.com';
|
|
7
|
+
exports.cdnFontsPath = '/common/fonts';
|
|
7
8
|
exports.cdnUrls = {
|
|
8
9
|
Prod: exports.cdnUrl,
|
|
9
10
|
Stag: exports.cdnStagUrl,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fontFaces.d.ts","sourceRoot":"","sources":["../../../../src/core/vuiProvider/fontFaces.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"fontFaces.d.ts","sourceRoot":"","sources":["../../../../src/core/vuiProvider/fontFaces.ts"],"names":[],"mappings":";AAIA,wBA+DC"}
|
|
@@ -1,28 +1,68 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const __1 = require("../");
|
|
4
|
+
const baseUrl = __1.cdnUrl + __1.cdnFontsPath;
|
|
4
5
|
exports.default = `
|
|
5
6
|
@font-face {
|
|
6
7
|
font-family: 'Avenir Next';
|
|
7
|
-
src: url('${
|
|
8
|
+
src: url('${baseUrl}/avenir-regular-lat-ext.woff');
|
|
8
9
|
font-weight: 400;
|
|
9
10
|
}
|
|
10
11
|
|
|
11
12
|
@font-face {
|
|
12
13
|
font-family: 'Avenir Next';
|
|
13
|
-
src: url('${
|
|
14
|
+
src: url('${baseUrl}/avenir-medium-lat-ext.woff');
|
|
14
15
|
font-weight: 500;
|
|
15
16
|
}
|
|
16
17
|
|
|
17
18
|
@font-face {
|
|
18
19
|
font-family: 'Avenir Next';
|
|
19
|
-
src: url('${
|
|
20
|
+
src: url('${baseUrl}/avenir-demi-lat-ext.woff');
|
|
20
21
|
font-weight: 600;
|
|
21
22
|
}
|
|
22
23
|
|
|
23
24
|
@font-face {
|
|
24
25
|
font-family: 'Avenir Next';
|
|
25
|
-
src: url('${
|
|
26
|
+
src: url('${baseUrl}/avenir-bold-lat-ext.woff');
|
|
26
27
|
font-weight: 700;
|
|
27
28
|
}
|
|
29
|
+
|
|
30
|
+
@font-face {
|
|
31
|
+
font-family: 'DNV Display Light';
|
|
32
|
+
src: url('${baseUrl}/dnv-display-light.woff');
|
|
33
|
+
font-weight: 700;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
@font-face {
|
|
37
|
+
font-family: 'DNV Display';
|
|
38
|
+
src: url('${baseUrl}/dnv-display-light.woff');
|
|
39
|
+
font-weight: 200;
|
|
40
|
+
font-style: normal;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
@font-face {
|
|
44
|
+
font-family: 'DNV Display';
|
|
45
|
+
src: url('${baseUrl}/dnv-display-regular.woff');
|
|
46
|
+
font-weight: bold;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
@font-face {
|
|
50
|
+
font-family: 'DNV Display';
|
|
51
|
+
src: url('${baseUrl}/dnv-display-regular.woff');
|
|
52
|
+
font-weight: 400;
|
|
53
|
+
font-style: normal;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
@font-face {
|
|
57
|
+
font-family: 'DNV Display Medium';
|
|
58
|
+
src: url('${baseUrl}/dnv-display-medium.woff');
|
|
59
|
+
font-weight: bold;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
@font-face {
|
|
63
|
+
font-family: 'DNV Display';
|
|
64
|
+
src: url('${baseUrl}/dnv-display-medium.woff');
|
|
65
|
+
font-weight: 500;
|
|
66
|
+
font-style: normal;
|
|
67
|
+
}
|
|
28
68
|
`;
|
|
@@ -1148,6 +1148,20 @@ declare const _default: {
|
|
|
1148
1148
|
};
|
|
1149
1149
|
};
|
|
1150
1150
|
};
|
|
1151
|
+
Markdown: {
|
|
1152
|
+
baseStyle: {};
|
|
1153
|
+
defaultProps: {};
|
|
1154
|
+
parts: string[];
|
|
1155
|
+
sizes: {};
|
|
1156
|
+
variants: {};
|
|
1157
|
+
};
|
|
1158
|
+
MarkdownEditor: {
|
|
1159
|
+
baseStyle: {};
|
|
1160
|
+
defaultProps: {};
|
|
1161
|
+
parts: string[];
|
|
1162
|
+
sizes: {};
|
|
1163
|
+
variants: {};
|
|
1164
|
+
};
|
|
1151
1165
|
Menu: {
|
|
1152
1166
|
baseStyle: {};
|
|
1153
1167
|
defaultProps: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"components.d.ts","sourceRoot":"","sources":["../../../src/theme/components.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"components.d.ts","sourceRoot":"","sources":["../../../src/theme/components.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAiDA,wBA4CC"}
|
|
@@ -3,6 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
// Basic components
|
|
6
7
|
const theme_1 = __importDefault(require("../accordion/theme"));
|
|
7
8
|
const theme_2 = __importDefault(require("../avatar/theme"));
|
|
8
9
|
const theme_3 = __importDefault(require("../badge/theme"));
|
|
@@ -44,6 +45,10 @@ const theme_38 = __importDefault(require("../tabs/theme"));
|
|
|
44
45
|
const theme_39 = __importDefault(require("../tag/theme"));
|
|
45
46
|
const theme_40 = __importDefault(require("../textarea/theme"));
|
|
46
47
|
const theme_41 = __importDefault(require("../tree/theme"));
|
|
48
|
+
const themePlaceholder_1 = __importDefault(require("./themePlaceholder"));
|
|
49
|
+
// Official external components
|
|
50
|
+
const Markdown = themePlaceholder_1.default;
|
|
51
|
+
const MarkdownEditor = themePlaceholder_1.default;
|
|
47
52
|
exports.default = {
|
|
48
53
|
Accordion: theme_1.default,
|
|
49
54
|
Avatar: theme_2.default,
|
|
@@ -65,6 +70,8 @@ exports.default = {
|
|
|
65
70
|
Input: theme_18.default,
|
|
66
71
|
Link: theme_19.default,
|
|
67
72
|
List: theme_20.default,
|
|
73
|
+
Markdown,
|
|
74
|
+
MarkdownEditor,
|
|
68
75
|
Menu: theme_21.default,
|
|
69
76
|
Message: theme_22.default,
|
|
70
77
|
Modal: theme_23.default,
|
|
@@ -1651,6 +1651,20 @@ declare const defaultTheme: {
|
|
|
1651
1651
|
};
|
|
1652
1652
|
};
|
|
1653
1653
|
};
|
|
1654
|
+
Markdown: {
|
|
1655
|
+
baseStyle: {};
|
|
1656
|
+
defaultProps: {};
|
|
1657
|
+
parts: string[];
|
|
1658
|
+
sizes: {};
|
|
1659
|
+
variants: {};
|
|
1660
|
+
};
|
|
1661
|
+
MarkdownEditor: {
|
|
1662
|
+
baseStyle: {};
|
|
1663
|
+
defaultProps: {};
|
|
1664
|
+
parts: string[];
|
|
1665
|
+
sizes: {};
|
|
1666
|
+
variants: {};
|
|
1667
|
+
};
|
|
1654
1668
|
Menu: {
|
|
1655
1669
|
baseStyle: {};
|
|
1656
1670
|
defaultProps: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"defaultTheme.d.ts","sourceRoot":"","sources":["../../../src/theme/defaultTheme.ts"],"names":[],"mappings":"AAGA,QAAA,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"defaultTheme.d.ts","sourceRoot":"","sources":["../../../src/theme/defaultTheme.ts"],"names":[],"mappings":"AAGA,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGjB,CAAA;AAED,eAAe,YAAY,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"themePlaceholder.d.ts","sourceRoot":"","sources":["../../../src/theme/themePlaceholder.ts"],"names":[],"mappings":";;;;;;;AAUA,wBAMC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const baseStyle = {};
|
|
4
|
+
const defaultProps = {};
|
|
5
|
+
const parts = [];
|
|
6
|
+
const sizes = {};
|
|
7
|
+
const variants = {};
|
|
8
|
+
exports.default = {
|
|
9
|
+
baseStyle,
|
|
10
|
+
defaultProps,
|
|
11
|
+
parts,
|
|
12
|
+
sizes,
|
|
13
|
+
variants
|
|
14
|
+
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export declare const cdnUrl = "https://cdn.veracity.com";
|
|
2
2
|
export declare const cdnStagUrl = "https://cdnstag.veracity.com";
|
|
3
3
|
export declare const cdnTestUrl = "https://cdntest.veracity.com";
|
|
4
|
+
export declare const cdnFontsPath = "/common/fonts";
|
|
4
5
|
export declare const cdnUrls: {
|
|
5
6
|
readonly Prod: "https://cdn.veracity.com";
|
|
6
7
|
readonly Stag: "https://cdnstag.veracity.com";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"consts.d.ts","sourceRoot":"","sources":["../../../src/core/consts.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,MAAM,6BAA6B,CAAA;AAChD,eAAO,MAAM,UAAU,iCAAiC,CAAA;AACxD,eAAO,MAAM,UAAU,iCAAiC,CAAA;
|
|
1
|
+
{"version":3,"file":"consts.d.ts","sourceRoot":"","sources":["../../../src/core/consts.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,MAAM,6BAA6B,CAAA;AAChD,eAAO,MAAM,UAAU,iCAAiC,CAAA;AACxD,eAAO,MAAM,UAAU,iCAAiC,CAAA;AACxD,eAAO,MAAM,YAAY,kBAAkB,CAAA;AAE3C,eAAO,MAAM,OAAO;;;;CAIV,CAAA"}
|
package/dist/esm/core/consts.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export const cdnUrl = 'https://cdn.veracity.com';
|
|
2
2
|
export const cdnStagUrl = 'https://cdnstag.veracity.com';
|
|
3
3
|
export const cdnTestUrl = 'https://cdntest.veracity.com';
|
|
4
|
+
export const cdnFontsPath = '/common/fonts';
|
|
4
5
|
export const cdnUrls = {
|
|
5
6
|
Prod: cdnUrl,
|
|
6
7
|
Stag: cdnStagUrl,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fontFaces.d.ts","sourceRoot":"","sources":["../../../../src/core/vuiProvider/fontFaces.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"fontFaces.d.ts","sourceRoot":"","sources":["../../../../src/core/vuiProvider/fontFaces.ts"],"names":[],"mappings":";AAIA,wBA+DC"}
|
|
@@ -1,26 +1,66 @@
|
|
|
1
|
-
import { cdnUrl } from '../';
|
|
1
|
+
import { cdnFontsPath, cdnUrl } from '../';
|
|
2
|
+
const baseUrl = cdnUrl + cdnFontsPath;
|
|
2
3
|
export default `
|
|
3
4
|
@font-face {
|
|
4
5
|
font-family: 'Avenir Next';
|
|
5
|
-
src: url('${
|
|
6
|
+
src: url('${baseUrl}/avenir-regular-lat-ext.woff');
|
|
6
7
|
font-weight: 400;
|
|
7
8
|
}
|
|
8
9
|
|
|
9
10
|
@font-face {
|
|
10
11
|
font-family: 'Avenir Next';
|
|
11
|
-
src: url('${
|
|
12
|
+
src: url('${baseUrl}/avenir-medium-lat-ext.woff');
|
|
12
13
|
font-weight: 500;
|
|
13
14
|
}
|
|
14
15
|
|
|
15
16
|
@font-face {
|
|
16
17
|
font-family: 'Avenir Next';
|
|
17
|
-
src: url('${
|
|
18
|
+
src: url('${baseUrl}/avenir-demi-lat-ext.woff');
|
|
18
19
|
font-weight: 600;
|
|
19
20
|
}
|
|
20
21
|
|
|
21
22
|
@font-face {
|
|
22
23
|
font-family: 'Avenir Next';
|
|
23
|
-
src: url('${
|
|
24
|
+
src: url('${baseUrl}/avenir-bold-lat-ext.woff');
|
|
24
25
|
font-weight: 700;
|
|
25
26
|
}
|
|
27
|
+
|
|
28
|
+
@font-face {
|
|
29
|
+
font-family: 'DNV Display Light';
|
|
30
|
+
src: url('${baseUrl}/dnv-display-light.woff');
|
|
31
|
+
font-weight: 700;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
@font-face {
|
|
35
|
+
font-family: 'DNV Display';
|
|
36
|
+
src: url('${baseUrl}/dnv-display-light.woff');
|
|
37
|
+
font-weight: 200;
|
|
38
|
+
font-style: normal;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
@font-face {
|
|
42
|
+
font-family: 'DNV Display';
|
|
43
|
+
src: url('${baseUrl}/dnv-display-regular.woff');
|
|
44
|
+
font-weight: bold;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
@font-face {
|
|
48
|
+
font-family: 'DNV Display';
|
|
49
|
+
src: url('${baseUrl}/dnv-display-regular.woff');
|
|
50
|
+
font-weight: 400;
|
|
51
|
+
font-style: normal;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
@font-face {
|
|
55
|
+
font-family: 'DNV Display Medium';
|
|
56
|
+
src: url('${baseUrl}/dnv-display-medium.woff');
|
|
57
|
+
font-weight: bold;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
@font-face {
|
|
61
|
+
font-family: 'DNV Display';
|
|
62
|
+
src: url('${baseUrl}/dnv-display-medium.woff');
|
|
63
|
+
font-weight: 500;
|
|
64
|
+
font-style: normal;
|
|
65
|
+
}
|
|
26
66
|
`;
|
|
@@ -1148,6 +1148,20 @@ declare const _default: {
|
|
|
1148
1148
|
};
|
|
1149
1149
|
};
|
|
1150
1150
|
};
|
|
1151
|
+
Markdown: {
|
|
1152
|
+
baseStyle: {};
|
|
1153
|
+
defaultProps: {};
|
|
1154
|
+
parts: string[];
|
|
1155
|
+
sizes: {};
|
|
1156
|
+
variants: {};
|
|
1157
|
+
};
|
|
1158
|
+
MarkdownEditor: {
|
|
1159
|
+
baseStyle: {};
|
|
1160
|
+
defaultProps: {};
|
|
1161
|
+
parts: string[];
|
|
1162
|
+
sizes: {};
|
|
1163
|
+
variants: {};
|
|
1164
|
+
};
|
|
1151
1165
|
Menu: {
|
|
1152
1166
|
baseStyle: {};
|
|
1153
1167
|
defaultProps: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"components.d.ts","sourceRoot":"","sources":["../../../src/theme/components.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"components.d.ts","sourceRoot":"","sources":["../../../src/theme/components.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAiDA,wBA4CC"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
// Basic components
|
|
1
2
|
import Accordion from '../accordion/theme';
|
|
2
3
|
import Avatar from '../avatar/theme';
|
|
3
4
|
import Badge from '../badge/theme';
|
|
@@ -39,6 +40,10 @@ import Tabs from '../tabs/theme';
|
|
|
39
40
|
import Tag from '../tag/theme';
|
|
40
41
|
import Textarea from '../textarea/theme';
|
|
41
42
|
import Tree from '../tree/theme';
|
|
43
|
+
import themePlaceholder from './themePlaceholder';
|
|
44
|
+
// Official external components
|
|
45
|
+
const Markdown = themePlaceholder;
|
|
46
|
+
const MarkdownEditor = themePlaceholder;
|
|
42
47
|
export default {
|
|
43
48
|
Accordion,
|
|
44
49
|
Avatar,
|
|
@@ -60,6 +65,8 @@ export default {
|
|
|
60
65
|
Input,
|
|
61
66
|
Link,
|
|
62
67
|
List,
|
|
68
|
+
Markdown,
|
|
69
|
+
MarkdownEditor,
|
|
63
70
|
Menu,
|
|
64
71
|
Message,
|
|
65
72
|
Modal,
|
|
@@ -1651,6 +1651,20 @@ declare const defaultTheme: {
|
|
|
1651
1651
|
};
|
|
1652
1652
|
};
|
|
1653
1653
|
};
|
|
1654
|
+
Markdown: {
|
|
1655
|
+
baseStyle: {};
|
|
1656
|
+
defaultProps: {};
|
|
1657
|
+
parts: string[];
|
|
1658
|
+
sizes: {};
|
|
1659
|
+
variants: {};
|
|
1660
|
+
};
|
|
1661
|
+
MarkdownEditor: {
|
|
1662
|
+
baseStyle: {};
|
|
1663
|
+
defaultProps: {};
|
|
1664
|
+
parts: string[];
|
|
1665
|
+
sizes: {};
|
|
1666
|
+
variants: {};
|
|
1667
|
+
};
|
|
1654
1668
|
Menu: {
|
|
1655
1669
|
baseStyle: {};
|
|
1656
1670
|
defaultProps: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"defaultTheme.d.ts","sourceRoot":"","sources":["../../../src/theme/defaultTheme.ts"],"names":[],"mappings":"AAGA,QAAA,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"defaultTheme.d.ts","sourceRoot":"","sources":["../../../src/theme/defaultTheme.ts"],"names":[],"mappings":"AAGA,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGjB,CAAA;AAED,eAAe,YAAY,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"themePlaceholder.d.ts","sourceRoot":"","sources":["../../../src/theme/themePlaceholder.ts"],"names":[],"mappings":";;;;;;;AAUA,wBAMC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veracity/vui",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.1",
|
|
4
4
|
"description": "Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.",
|
|
5
5
|
"module": "./dist/esm/index.js",
|
|
6
6
|
"main": "./dist/cjs/index.js",
|
package/src/core/consts.ts
CHANGED
|
@@ -1,27 +1,68 @@
|
|
|
1
|
-
import { cdnUrl } from '../'
|
|
1
|
+
import { cdnFontsPath, cdnUrl } from '../'
|
|
2
|
+
|
|
3
|
+
const baseUrl = cdnUrl + cdnFontsPath
|
|
2
4
|
|
|
3
5
|
export default `
|
|
4
6
|
@font-face {
|
|
5
7
|
font-family: 'Avenir Next';
|
|
6
|
-
src: url('${
|
|
8
|
+
src: url('${baseUrl}/avenir-regular-lat-ext.woff');
|
|
7
9
|
font-weight: 400;
|
|
8
10
|
}
|
|
9
11
|
|
|
10
12
|
@font-face {
|
|
11
13
|
font-family: 'Avenir Next';
|
|
12
|
-
src: url('${
|
|
14
|
+
src: url('${baseUrl}/avenir-medium-lat-ext.woff');
|
|
13
15
|
font-weight: 500;
|
|
14
16
|
}
|
|
15
17
|
|
|
16
18
|
@font-face {
|
|
17
19
|
font-family: 'Avenir Next';
|
|
18
|
-
src: url('${
|
|
20
|
+
src: url('${baseUrl}/avenir-demi-lat-ext.woff');
|
|
19
21
|
font-weight: 600;
|
|
20
22
|
}
|
|
21
23
|
|
|
22
24
|
@font-face {
|
|
23
25
|
font-family: 'Avenir Next';
|
|
24
|
-
src: url('${
|
|
26
|
+
src: url('${baseUrl}/avenir-bold-lat-ext.woff');
|
|
27
|
+
font-weight: 700;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
@font-face {
|
|
31
|
+
font-family: 'DNV Display Light';
|
|
32
|
+
src: url('${baseUrl}/dnv-display-light.woff');
|
|
25
33
|
font-weight: 700;
|
|
26
34
|
}
|
|
35
|
+
|
|
36
|
+
@font-face {
|
|
37
|
+
font-family: 'DNV Display';
|
|
38
|
+
src: url('${baseUrl}/dnv-display-light.woff');
|
|
39
|
+
font-weight: 200;
|
|
40
|
+
font-style: normal;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
@font-face {
|
|
44
|
+
font-family: 'DNV Display';
|
|
45
|
+
src: url('${baseUrl}/dnv-display-regular.woff');
|
|
46
|
+
font-weight: bold;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
@font-face {
|
|
50
|
+
font-family: 'DNV Display';
|
|
51
|
+
src: url('${baseUrl}/dnv-display-regular.woff');
|
|
52
|
+
font-weight: 400;
|
|
53
|
+
font-style: normal;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
@font-face {
|
|
57
|
+
font-family: 'DNV Display Medium';
|
|
58
|
+
src: url('${baseUrl}/dnv-display-medium.woff');
|
|
59
|
+
font-weight: bold;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
@font-face {
|
|
63
|
+
font-family: 'DNV Display';
|
|
64
|
+
src: url('${baseUrl}/dnv-display-medium.woff');
|
|
65
|
+
font-weight: 500;
|
|
66
|
+
font-style: normal;
|
|
67
|
+
}
|
|
27
68
|
`
|
package/src/theme/components.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
// Basic components
|
|
1
2
|
import Accordion from '../accordion/theme'
|
|
2
3
|
import Avatar from '../avatar/theme'
|
|
3
4
|
import Badge from '../badge/theme'
|
|
@@ -39,6 +40,12 @@ import Tabs from '../tabs/theme'
|
|
|
39
40
|
import Tag from '../tag/theme'
|
|
40
41
|
import Textarea from '../textarea/theme'
|
|
41
42
|
import Tree from '../tree/theme'
|
|
43
|
+
import themePlaceholder from './themePlaceholder'
|
|
44
|
+
|
|
45
|
+
// Official external components
|
|
46
|
+
|
|
47
|
+
const Markdown = themePlaceholder
|
|
48
|
+
const MarkdownEditor = themePlaceholder
|
|
42
49
|
|
|
43
50
|
export default {
|
|
44
51
|
Accordion,
|
|
@@ -61,6 +68,8 @@ export default {
|
|
|
61
68
|
Input,
|
|
62
69
|
Link,
|
|
63
70
|
List,
|
|
71
|
+
Markdown,
|
|
72
|
+
MarkdownEditor,
|
|
64
73
|
Menu,
|
|
65
74
|
Message,
|
|
66
75
|
Modal,
|