@bcc-code/component-library-vue 1.3.20 → 1.3.22
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/archivo-font/archivo-v25-latin-500.woff2 +0 -0
- package/dist/archivo-font/archivo-v25-latin-600.woff2 +0 -0
- package/dist/archivo-font/archivo-v25-latin-600italic.woff2 +0 -0
- package/dist/archivo-font/archivo-v25-latin-italic.woff2 +0 -0
- package/dist/archivo-font/archivo-v25-latin-regular.woff2 +0 -0
- package/dist/archivo-font.css +40 -0
- package/package.json +2 -2
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/* archivo-regular - latin */
|
|
2
|
+
@font-face {
|
|
3
|
+
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
|
|
4
|
+
font-family: 'Archivo';
|
|
5
|
+
font-style: normal;
|
|
6
|
+
font-weight: 400;
|
|
7
|
+
src: url('./archivo-font/archivo-v25-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
|
|
8
|
+
}
|
|
9
|
+
/* archivo-italic - latin */
|
|
10
|
+
@font-face {
|
|
11
|
+
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
|
|
12
|
+
font-family: 'Archivo';
|
|
13
|
+
font-style: italic;
|
|
14
|
+
font-weight: 400;
|
|
15
|
+
src: url('./archivo-font/archivo-v25-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
|
|
16
|
+
}
|
|
17
|
+
/* archivo-500 - latin */
|
|
18
|
+
@font-face {
|
|
19
|
+
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
|
|
20
|
+
font-family: 'Archivo';
|
|
21
|
+
font-style: normal;
|
|
22
|
+
font-weight: 500;
|
|
23
|
+
src: url('./archivo-font/archivo-v25-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
|
|
24
|
+
}
|
|
25
|
+
/* archivo-600 - latin */
|
|
26
|
+
@font-face {
|
|
27
|
+
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
|
|
28
|
+
font-family: 'Archivo';
|
|
29
|
+
font-style: normal;
|
|
30
|
+
font-weight: 600;
|
|
31
|
+
src: url('./archivo-font/archivo-v25-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
|
|
32
|
+
}
|
|
33
|
+
/* archivo-600italic - latin */
|
|
34
|
+
@font-face {
|
|
35
|
+
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
|
|
36
|
+
font-family: 'Archivo';
|
|
37
|
+
font-style: italic;
|
|
38
|
+
font-weight: 600;
|
|
39
|
+
src: url('./archivo-font/archivo-v25-latin-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
|
|
40
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bcc-code/component-library-vue",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.22",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Extended Vue component library based on PrimeVue and BCC design tokens",
|
|
6
6
|
"repository": "https://github.com/bcc-code/bcc-design.git",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"start": "storybook dev -p 6006",
|
|
40
40
|
"build-storybook": "storybook build",
|
|
41
41
|
"build": "run-p typecheck build:types build:vite",
|
|
42
|
-
"build:vite": "rimraf dist && vite build && pnpm run build:sfc-styles && pnpm run build:library-utilities && node scripts/build-theme-css.mjs",
|
|
42
|
+
"build:vite": "rimraf dist && vite build && pnpm run build:sfc-styles && pnpm run build:library-utilities && node scripts/build-archivo-font.mjs && node scripts/build-theme-css.mjs",
|
|
43
43
|
"build:sfc-styles": "vite build --config vite.config.sfc-styles.ts && rimraf dist/sfc-styles.js",
|
|
44
44
|
"build:library-utilities": "tailwindcss -i src/library-utilities-input.css -o dist/library-utilities.css --minify",
|
|
45
45
|
"build:types": "rimraf dist-types && vue-tsc -p tsconfig.build.json",
|