@lmvz-ds/components 0.11.4 → 0.12.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/manifest.json +1 -1
- package/dist/styles/router-font-inline.css +1 -0
- package/dist/styles/router-font.css +26 -0
- package/package.json +8 -8
- package/dist/collection/styles/router-font.css +0 -1
- package/dist/lmvz-components/styles/buttons.css +0 -1
- package/dist/lmvz-components/styles/router-font.css +0 -1
- package/dist/lmvz-components/styles/tokens.css +0 -1
- package/dist/lmvz-components/styles/typography.css +0 -1
- package/dist/lmvz-components/themes/all.css +0 -1
- package/dist/lmvz-components/themes/dark.css +0 -1
- package/dist/lmvz-components/themes/light.css +0 -1
- /package/dist/{collection/styles → styles}/buttons.css +0 -0
- /package/dist/{collection/styles → styles}/tokens.css +0 -0
- /package/dist/{collection/styles → styles}/typography.css +0 -0
- /package/dist/{collection/themes → themes}/all.css +0 -0
- /package/dist/{collection/themes → themes}/dark.css +0 -0
- /package/dist/{collection/themes → themes}/light.css +0 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: Router;
|
|
3
|
+
src:
|
|
4
|
+
local('Router-Book'),
|
|
5
|
+
url('/assets/fonts/Router-Book.woff') format('woff'),
|
|
6
|
+
local('Router');
|
|
7
|
+
font-weight: 400 normal;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
@font-face {
|
|
11
|
+
font-family: Router;
|
|
12
|
+
src:
|
|
13
|
+
local('Router-Medium'),
|
|
14
|
+
url('/assets/fonts/Router-Medium.woff') format('woff'),
|
|
15
|
+
local('Router');
|
|
16
|
+
font-weight: 500;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
@font-face {
|
|
20
|
+
font-family: Router;
|
|
21
|
+
src:
|
|
22
|
+
local('Router-Bold'),
|
|
23
|
+
url('/assets/fonts/Router-Bold.woff') format('woff'),
|
|
24
|
+
local('Router');
|
|
25
|
+
font-weight: 700 bold;
|
|
26
|
+
}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@lmvz-ds/components",
|
|
3
3
|
"private": false,
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.12.1",
|
|
6
6
|
"description": "The components of the design system",
|
|
7
7
|
"author": "Patrick Nemenz <patrick.nemenz@adesso.at>",
|
|
8
8
|
"volta": {
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
},
|
|
50
50
|
"./manifest.json": "./dist/manifest.json",
|
|
51
51
|
"./assets/*": "./assets/*",
|
|
52
|
-
"./themes/*": "./dist/
|
|
53
|
-
"./styles/*": "./dist/
|
|
52
|
+
"./themes/*": "./dist/themes/*",
|
|
53
|
+
"./styles/*": "./dist/styles/*",
|
|
54
54
|
"./components/hydrate": {
|
|
55
55
|
"types": "./hydrate/index.d.ts",
|
|
56
56
|
"import": "./hydrate/index.js"
|
|
@@ -97,8 +97,9 @@
|
|
|
97
97
|
"types": "./dist/components/lmvz-menuitem.d.ts"
|
|
98
98
|
}
|
|
99
99
|
},
|
|
100
|
-
"main": "dist/index.cjs.js",
|
|
100
|
+
"main": "dist/cjs/index.cjs.js",
|
|
101
101
|
"module": "dist/components/index.js",
|
|
102
|
+
"unpkg": "dist/my-design-system/my-design-system.esm.js",
|
|
102
103
|
"types": "dist/components/index.d.ts",
|
|
103
104
|
"collection": "dist/collection/collection-manifest.json",
|
|
104
105
|
"license": "UNLICENSED",
|
|
@@ -124,8 +125,7 @@
|
|
|
124
125
|
"update": "npx npm-check-updates -u",
|
|
125
126
|
"version:mvn": "tsx scripts/update-pom-version.ts && git add pom.xml",
|
|
126
127
|
"version": "npm run version:mvn",
|
|
127
|
-
"postpack": "npm run version:mvn && mvn clean package"
|
|
128
|
-
"postpublish": "mvn deploy"
|
|
128
|
+
"postpack": "npm run version:mvn && mvn clean package"
|
|
129
129
|
},
|
|
130
130
|
"nx": {
|
|
131
131
|
"targets": {
|
|
@@ -187,7 +187,7 @@
|
|
|
187
187
|
"effect": "3.19.14"
|
|
188
188
|
},
|
|
189
189
|
"devDependencies": {
|
|
190
|
-
"@lmvz-ds/design-tokens": "^0.
|
|
190
|
+
"@lmvz-ds/design-tokens": "^0.12.1",
|
|
191
191
|
"@playwright/test": "^1.55.0",
|
|
192
192
|
"@stencil-community/postcss": "^2.2.0",
|
|
193
193
|
"@stencil/angular-output-target": "1.3.0",
|
|
@@ -212,5 +212,5 @@
|
|
|
212
212
|
"tsx": "^4.21.0",
|
|
213
213
|
"vite": "^7.3.1"
|
|
214
214
|
},
|
|
215
|
-
"gitHead": "
|
|
215
|
+
"gitHead": "2aa558635d14d738fafde7e0455f7fa9d4bb07f8"
|
|
216
216
|
}
|