@public-ui/themes 4.0.0-alpha.3 → 4.0.0-alpha.5

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.
@@ -1,52 +1,52 @@
1
1
  {
2
- "name": "material-icons",
3
- "version": "1.13.4",
4
- "description": "Latest icon fonts and CSS for self-hosting material design icons.",
5
- "browser": "iconfont/material-icons.css",
6
- "sass": "iconfont/material-icons.scss",
7
- "types": "index.d.ts",
8
- "files": [
9
- "index.d.ts",
10
- "_data/versions.json",
11
- "css/*.{css,scss}",
12
- "iconfont/*.{css,scss,woff,woff2}"
13
- ],
14
- "scripts": {
15
- "check": "npm run download:metadata -- --status --dry-run",
16
- "update": "npm run download && npm run generate && npm run build",
17
- "download": "npm run download:font && npm run download:metadata",
18
- "download:font": "npx @material-design-icons/scripts download font --to iconfont",
19
- "download:metadata": "npx @material-design-icons/scripts download metadata",
20
- "generate": "npm run generate:types",
21
- "generate:types": "npx @material-design-icons/scripts generate types --in .",
22
- "build": "npm run build:codepoints && npm run build:css && npm run build:css:min",
23
- "build:codepoints": "node scripts/codepoints.js",
24
- "build:css": "sass --no-source-map --no-error-css css iconfont",
25
- "build:css:min": "sass --style compressed --no-source-map --no-error-css css/material-icons.scss:css/material-icons.min.css"
26
- },
27
- "devDependencies": {
28
- "@material-design-icons/scripts": "0.5.1",
29
- "opentype.js": "1.3.4",
30
- "sass": "1.56.1"
31
- },
32
- "license": "Apache-2.0",
33
- "repository": {
34
- "type": "git",
35
- "url": "git+https://github.com/marella/material-icons.git"
36
- },
37
- "bugs": {
38
- "url": "https://github.com/marella/material-icons/issues"
39
- },
40
- "homepage": "https://marella.github.io/material-icons/demo/",
41
- "keywords": [
42
- "material-icons",
43
- "material-design-icons",
44
- "material-design",
45
- "material",
46
- "icons",
47
- "iconfont",
48
- "font",
49
- "css",
50
- "sass"
51
- ]
2
+ "name": "material-icons",
3
+ "version": "1.13.4",
4
+ "description": "Latest icon fonts and CSS for self-hosting material design icons.",
5
+ "browser": "iconfont/material-icons.css",
6
+ "sass": "iconfont/material-icons.scss",
7
+ "types": "index.d.ts",
8
+ "files": [
9
+ "index.d.ts",
10
+ "_data/versions.json",
11
+ "css/*.{css,scss}",
12
+ "iconfont/*.{css,scss,woff,woff2}"
13
+ ],
14
+ "scripts": {
15
+ "check": "npm run download:metadata -- --status --dry-run",
16
+ "update": "npm run download && npm run generate && npm run build",
17
+ "download": "npm run download:font && npm run download:metadata",
18
+ "download:font": "npx @material-design-icons/scripts download font --to iconfont",
19
+ "download:metadata": "npx @material-design-icons/scripts download metadata",
20
+ "generate": "npm run generate:types",
21
+ "generate:types": "npx @material-design-icons/scripts generate types --in .",
22
+ "build": "npm run build:codepoints && npm run build:css && npm run build:css:min",
23
+ "build:codepoints": "node scripts/codepoints.js",
24
+ "build:css": "sass --no-source-map --no-error-css css iconfont",
25
+ "build:css:min": "sass --style compressed --no-source-map --no-error-css css/material-icons.scss:css/material-icons.min.css"
26
+ },
27
+ "devDependencies": {
28
+ "@material-design-icons/scripts": "0.5.1",
29
+ "opentype.js": "1.3.4",
30
+ "sass": "1.56.1"
31
+ },
32
+ "license": "Apache-2.0",
33
+ "repository": {
34
+ "type": "git",
35
+ "url": "git+https://github.com/marella/material-icons.git"
36
+ },
37
+ "bugs": {
38
+ "url": "https://github.com/marella/material-icons/issues"
39
+ },
40
+ "homepage": "https://marella.github.io/material-icons/demo/",
41
+ "keywords": [
42
+ "material-icons",
43
+ "material-design-icons",
44
+ "material-design",
45
+ "material",
46
+ "icons",
47
+ "iconfont",
48
+ "font",
49
+ "css",
50
+ "sass"
51
+ ]
52
52
  }
@@ -35,22 +35,29 @@ or import in CSS (example: `src/styles.css` in Angular CLI):
35
35
  or import in HTML:
36
36
 
37
37
  ```html
38
- <link href="/path/to/material-symbols/index.css" rel="stylesheet">
38
+ <link href="/path/to/material-symbols/index.css" rel="stylesheet" />
39
39
  ```
40
40
 
41
41
  To display an icon, use one of the following:
42
42
 
43
43
  ```html
44
- <span class="material-symbols-outlined">face</span> <!-- Outlined -->
45
- <span class="material-symbols-rounded">face</span> <!-- Rounded -->
46
- <span class="material-symbols-sharp">face</span> <!-- Sharp -->
44
+ <span class="material-symbols-outlined">face</span>
45
+ <!-- Outlined -->
46
+ <span class="material-symbols-rounded">face</span>
47
+ <!-- Rounded -->
48
+ <span class="material-symbols-sharp">face</span>
49
+ <!-- Sharp -->
47
50
  ```
48
51
 
49
52
  To customize the variable font axes (fill, weight, grade, and optical size), use:
50
53
 
51
54
  ```css
52
55
  .material-symbols-outlined {
53
- font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
56
+ font-variation-settings:
57
+ 'FILL' 0,
58
+ 'wght' 400,
59
+ 'GRAD' 0,
60
+ 'opsz' 48;
54
61
  }
55
62
  ```
56
63
 
@@ -66,11 +73,11 @@ The default `index.css` includes CSS for all fonts. This may cause build tools s
66
73
  <details>
67
74
  <summary><strong>Show all</strong></summary><br>
68
75
 
69
- Icons | CSS | Sass
70
- :--- | :--- | :---
71
- Outlined | outlined.css | outlined.scss
72
- Rounded | rounded.css | rounded.scss
73
- Sharp | sharp.css | sharp.scss
76
+ | Icons | CSS | Sass |
77
+ | :------- | :----------- | :------------ |
78
+ | Outlined | outlined.css | outlined.scss |
79
+ | Rounded | rounded.css | rounded.scss |
80
+ | Sharp | sharp.css | sharp.scss |
74
81
 
75
82
  </details>
76
83
 
@@ -107,7 +114,7 @@ See [demo].
107
114
  Material Symbols are created by [Google](https://github.com/google/material-design-icons#license).
108
115
 
109
116
  > We have made these icons available for you to incorporate into your products under the [Apache License Version 2.0][license]. Feel free to remix and re-share these icons and documentation in your products.
110
- We'd love attribution in your app's *about* screen, but it's not required.
117
+ > We'd love attribution in your app's _about_ screen, but it's not required.
111
118
 
112
119
  [releases]: https://github.com/marella/material-symbols/releases
113
120
  [license]: https://github.com/marella/material-symbols/blob/main/material-symbols/LICENSE