@public-ui/themes 1.5.0-rc.16 → 1.5.0-rc.17

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 (52) hide show
  1. package/assets/material-icons/LICENSE +202 -0
  2. package/assets/material-icons/README.md +129 -0
  3. package/assets/material-icons/_data/versions.json +2124 -0
  4. package/assets/material-icons/css/_codepoints.scss +2279 -0
  5. package/assets/material-icons/css/_mixins.scss +13 -0
  6. package/assets/material-icons/css/_variables.scss +6 -0
  7. package/assets/material-icons/css/material-icons.css +9208 -0
  8. package/assets/material-icons/css/material-icons.min.css +1 -0
  9. package/assets/material-icons/css/material-icons.scss +39 -0
  10. package/assets/material-icons/iconfont/_mixins.scss +55 -0
  11. package/assets/material-icons/iconfont/_variables.scss +3 -0
  12. package/assets/material-icons/iconfont/filled.css +24 -0
  13. package/assets/material-icons/iconfont/filled.scss +4 -0
  14. package/assets/material-icons/iconfont/material-icons-outlined.woff +0 -0
  15. package/assets/material-icons/iconfont/material-icons-outlined.woff2 +0 -0
  16. package/assets/material-icons/iconfont/material-icons-round.woff +0 -0
  17. package/assets/material-icons/iconfont/material-icons-round.woff2 +0 -0
  18. package/assets/material-icons/iconfont/material-icons-sharp.woff +0 -0
  19. package/assets/material-icons/iconfont/material-icons-sharp.woff2 +0 -0
  20. package/assets/material-icons/iconfont/material-icons-two-tone.woff +0 -0
  21. package/assets/material-icons/iconfont/material-icons-two-tone.woff2 +0 -0
  22. package/assets/material-icons/iconfont/material-icons.css +124 -0
  23. package/assets/material-icons/iconfont/material-icons.scss +5 -0
  24. package/assets/material-icons/iconfont/material-icons.woff +0 -0
  25. package/assets/material-icons/iconfont/material-icons.woff2 +0 -0
  26. package/assets/material-icons/iconfont/outlined.css +24 -0
  27. package/assets/material-icons/iconfont/outlined.scss +4 -0
  28. package/assets/material-icons/iconfont/round.css +24 -0
  29. package/assets/material-icons/iconfont/round.scss +4 -0
  30. package/assets/material-icons/iconfont/sharp.css +24 -0
  31. package/assets/material-icons/iconfont/sharp.scss +4 -0
  32. package/assets/material-icons/iconfont/two-tone.css +24 -0
  33. package/assets/material-icons/iconfont/two-tone.scss +4 -0
  34. package/assets/material-icons/index.d.ts +2128 -0
  35. package/assets/material-icons/package.json +52 -0
  36. package/assets/material-symbols/LICENSE +202 -0
  37. package/assets/material-symbols/README.md +114 -0
  38. package/assets/material-symbols/_core.scss +47 -0
  39. package/assets/material-symbols/index.css +74 -0
  40. package/assets/material-symbols/index.d.ts +2809 -0
  41. package/assets/material-symbols/index.scss +3 -0
  42. package/assets/material-symbols/material-symbols-outlined.woff2 +0 -0
  43. package/assets/material-symbols/material-symbols-rounded.woff2 +0 -0
  44. package/assets/material-symbols/material-symbols-sharp.woff2 +0 -0
  45. package/assets/material-symbols/outlined.css +24 -0
  46. package/assets/material-symbols/outlined.scss +3 -0
  47. package/assets/material-symbols/package.json +41 -0
  48. package/assets/material-symbols/rounded.css +24 -0
  49. package/assets/material-symbols/rounded.scss +3 -0
  50. package/assets/material-symbols/sharp.css +24 -0
  51. package/assets/material-symbols/sharp.scss +3 -0
  52. package/package.json +3 -9
@@ -0,0 +1,3 @@
1
+ @import 'outlined';
2
+ @import 'rounded';
3
+ @import 'sharp';
@@ -0,0 +1,24 @@
1
+ @font-face {
2
+ font-family: "Material Symbols Outlined";
3
+ font-style: normal;
4
+ font-weight: 100 700;
5
+ font-display: block;
6
+ src: url("./material-symbols-outlined.woff2") format("woff2");
7
+ }
8
+ .material-symbols-outlined {
9
+ font-family: "Material Symbols Outlined";
10
+ font-weight: normal;
11
+ font-style: normal;
12
+ font-size: 24px;
13
+ line-height: 1;
14
+ letter-spacing: normal;
15
+ text-transform: none;
16
+ display: inline-block;
17
+ white-space: nowrap;
18
+ word-wrap: normal;
19
+ direction: ltr;
20
+ -webkit-font-smoothing: antialiased;
21
+ -moz-osx-font-smoothing: grayscale;
22
+ text-rendering: optimizeLegibility;
23
+ font-feature-settings: "liga";
24
+ }
@@ -0,0 +1,3 @@
1
+ @import 'core';
2
+
3
+ @include material-symbols-font('Material Symbols Outlined');
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "material-symbols",
3
+ "version": "0.5.5",
4
+ "description": "Latest variable icon fonts and CSS for Material Symbols.",
5
+ "main": "index.css",
6
+ "sass": "index.scss",
7
+ "types": "index.d.ts",
8
+ "files": [
9
+ "index.d.ts",
10
+ "*.{css,scss,woff2}"
11
+ ],
12
+ "scripts": {
13
+ "build": "sass --no-source-map --no-error-css ."
14
+ },
15
+ "devDependencies": {
16
+ "sass": "1.56.1"
17
+ },
18
+ "license": "Apache-2.0",
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/marella/material-symbols.git",
22
+ "directory": "material-symbols"
23
+ },
24
+ "bugs": {
25
+ "url": "https://github.com/marella/material-symbols/issues"
26
+ },
27
+ "homepage": "https://marella.github.io/material-symbols/demo/",
28
+ "keywords": [
29
+ "material-symbols",
30
+ "material-icons",
31
+ "material-design-icons",
32
+ "material-design",
33
+ "material",
34
+ "symbols",
35
+ "icons",
36
+ "font"
37
+ ],
38
+ "publishConfig": {
39
+ "access": "public"
40
+ }
41
+ }
@@ -0,0 +1,24 @@
1
+ @font-face {
2
+ font-family: "Material Symbols Rounded";
3
+ font-style: normal;
4
+ font-weight: 100 700;
5
+ font-display: block;
6
+ src: url("./material-symbols-rounded.woff2") format("woff2");
7
+ }
8
+ .material-symbols-rounded {
9
+ font-family: "Material Symbols Rounded";
10
+ font-weight: normal;
11
+ font-style: normal;
12
+ font-size: 24px;
13
+ line-height: 1;
14
+ letter-spacing: normal;
15
+ text-transform: none;
16
+ display: inline-block;
17
+ white-space: nowrap;
18
+ word-wrap: normal;
19
+ direction: ltr;
20
+ -webkit-font-smoothing: antialiased;
21
+ -moz-osx-font-smoothing: grayscale;
22
+ text-rendering: optimizeLegibility;
23
+ font-feature-settings: "liga";
24
+ }
@@ -0,0 +1,3 @@
1
+ @import 'core';
2
+
3
+ @include material-symbols-font('Material Symbols Rounded');
@@ -0,0 +1,24 @@
1
+ @font-face {
2
+ font-family: "Material Symbols Sharp";
3
+ font-style: normal;
4
+ font-weight: 100 700;
5
+ font-display: block;
6
+ src: url("./material-symbols-sharp.woff2") format("woff2");
7
+ }
8
+ .material-symbols-sharp {
9
+ font-family: "Material Symbols Sharp";
10
+ font-weight: normal;
11
+ font-style: normal;
12
+ font-size: 24px;
13
+ line-height: 1;
14
+ letter-spacing: normal;
15
+ text-transform: none;
16
+ display: inline-block;
17
+ white-space: nowrap;
18
+ word-wrap: normal;
19
+ direction: ltr;
20
+ -webkit-font-smoothing: antialiased;
21
+ -moz-osx-font-smoothing: grayscale;
22
+ text-rendering: optimizeLegibility;
23
+ font-feature-settings: "liga";
24
+ }
@@ -0,0 +1,3 @@
1
+ @import 'core';
2
+
3
+ @include material-symbols-font('Material Symbols Sharp');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@public-ui/themes",
3
- "version": "1.5.0-rc.16",
3
+ "version": "1.5.0-rc.17",
4
4
  "license": "EUPL-1.2",
5
5
  "homepage": "https://public-ui.github.io",
6
6
  "repository": "https://github.com/public-ui/kolibri",
@@ -45,16 +45,10 @@
45
45
  "depcheck": "depcheck --ignore-bin-package --skip-missing --ignores=@types/*",
46
46
  "format": "prettier --check src",
47
47
  "lint": "eslint src && tsc --noemit",
48
- "postinstall": "npm-run-all postinstall:*",
49
- "postinstall:assets": "cpy \"assets/**/*\" ../../../public/assets --dot",
50
48
  "prepack": "unbuild"
51
49
  },
52
- "dependencies": {
53
- "cpy-cli": "4.2.0",
54
- "npm-run-all": "4.1.5"
55
- },
56
50
  "devDependencies": {
57
- "@public-ui/components": "1.5.0-rc.16",
51
+ "@public-ui/components": "1.5.0-rc.17",
58
52
  "@types/node": "ts4.9",
59
53
  "@typescript-eslint/eslint-plugin": "5.59.0",
60
54
  "@typescript-eslint/parser": "5.59.0",
@@ -64,7 +58,7 @@
64
58
  "unbuild": "1.1.2"
65
59
  },
66
60
  "peerDependencies": {
67
- "@public-ui/components": "1.5.0-rc.16"
61
+ "@public-ui/components": "1.5.0-rc.17"
68
62
  },
69
63
  "sideEffects": false,
70
64
  "type": "module",