@spectrum-web-components/icon
Advanced tools
Comparing version 0.7.0 to 0.8.0
@@ -6,2 +6,18 @@ # Change Log | ||
# [0.8.0](https://github.com/adobe/spectrum-web-components/compare/@spectrum-web-components/icon@0.6.3...@spectrum-web-components/icon@0.8.0) (2021-01-21) | ||
### Bug Fixes | ||
- **icon:** clean up docs and types for available size values ([c38850d](https://github.com/adobe/spectrum-web-components/commit/c38850d1120a8599d8c623302bbc2c21485c99bc)) | ||
- include the "types" entry in package.json files ([b432f59](https://github.com/adobe/spectrum-web-components/commit/b432f5982b3b79f80af12f6d0312cbe2285e608b)) | ||
- update latest Spectrum CSS beta releases ([d8d3acc](https://github.com/adobe/spectrum-web-components/commit/d8d3acc86de31e58219db6ba2a9d045b83cbe103)) | ||
- use icons without "size" values ([3fc7c91](https://github.com/adobe/spectrum-web-components/commit/3fc7c91713793a928082eae15fc3d9dec638a31a)) | ||
- use latest @spectrum-css/\* versions ([c35eb86](https://github.com/adobe/spectrum-web-components/commit/c35eb86defd89a0c36b5ea186f6d40f20851b5e5)) | ||
### Features | ||
- **action-button:** add action button pattern ([03ac00a](https://github.com/adobe/spectrum-web-components/commit/03ac00a710290e6a78340f206d88385a4f8ae8c2)) | ||
- **icon:** update spectrum css input ([42f17db](https://github.com/adobe/spectrum-web-components/commit/42f17db9ac249a12f224759fe4ead418720e85d4)) | ||
- **icons-workflow:** vend fully registered icon components ([941f3a4](https://github.com/adobe/spectrum-web-components/commit/941f3a41486fbd49eca0805fb63383f63313e71e)) | ||
# [0.7.0](https://github.com/adobe/spectrum-web-components/compare/@spectrum-web-components/icon@0.6.3...@spectrum-web-components/icon@0.7.0) (2021-01-13) | ||
@@ -8,0 +24,0 @@ |
@@ -22,3 +22,3 @@ { | ||
"name": "size", | ||
"type": "\"s\" | \"m\" | \"l\" | \"xl\" | undefined" | ||
"type": "\"s\" | \"m\" | \"l\" | \"xl\" | \"xxl\" | undefined" | ||
} | ||
@@ -45,3 +45,3 @@ ], | ||
"attribute": "size", | ||
"type": "\"s\" | \"m\" | \"l\" | \"xl\" | undefined" | ||
"type": "\"s\" | \"m\" | \"l\" | \"xl\" | \"xxl\" | undefined" | ||
}, | ||
@@ -48,0 +48,0 @@ { |
@@ -21,3 +21,3 @@ { | ||
], | ||
"version": "0.7.0", | ||
"version": "0.8.0", | ||
"description": "", | ||
@@ -56,7 +56,7 @@ "main": "./src/index.js", | ||
"dependencies": { | ||
"@spectrum-web-components/base": "^0.2.0", | ||
"@spectrum-web-components/iconset": "^0.3.0", | ||
"@spectrum-web-components/base": "^0.3.0", | ||
"@spectrum-web-components/iconset": "^0.4.0", | ||
"tslib": "^2.0.0" | ||
}, | ||
"gitHead": "62f319d0f7272f4ac83f35c8180e7c4adfff37e3" | ||
"gitHead": "a5734426f36555951dc10c5740c9044bbd951315" | ||
} |
@@ -37,3 +37,3 @@ ## Description | ||
Icons are available in various sizes in Spectrum ranging from `xxs` to `xxl`, `m` being the default. We can specify the size via `size` attribute. | ||
Icons are available in various sizes in Spectrum ranging from `s` to `xxl`. By default an `sp-icon` without a `size` attribute will appear as if it were `size="m"`. We can specify the size via `size` attribute. | ||
@@ -40,0 +40,0 @@ ### Size variants |
@@ -5,4 +5,4 @@ import { SpectrumElement, CSSResultArray, TemplateResult } from '@spectrum-web-components/base'; | ||
label?: string; | ||
size?: 's' | 'm' | 'l' | 'xl'; | ||
size?: 's' | 'm' | 'l' | 'xl' | 'xxl'; | ||
protected render(): TemplateResult; | ||
} |
@@ -32,3 +32,3 @@ /* | ||
@property({ reflect: true }) | ||
public size?: 's' | 'm' | 'l' | 'xl'; | ||
public size?: 's' | 'm' | 'l' | 'xl' | 'xxl'; | ||
@@ -35,0 +35,0 @@ protected render(): TemplateResult { |
Sorry, the diff of this file is not supported yet
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
Found 32 instances in 1 package
249069
210
2665
47
+ Added@spectrum-web-components/iconset@0.4.3(transitive)
- Removed@spectrum-web-components/base@0.2.0(transitive)
- Removed@spectrum-web-components/iconset@0.3.0(transitive)
- Removed@spectrum-web-components/styles@0.8.1(transitive)
- Removed@spectrum-web-components/theme@0.7.4(transitive)