@getflip/swirl-components 0.390.0 → 0.391.0
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/components.json +8 -4
- package/dist/cjs/swirl-avatar.cjs.entry.js +2 -2
- package/dist/collection/components/swirl-avatar/swirl-avatar.css +5 -0
- package/dist/collection/components/swirl-avatar/swirl-avatar.js +2 -2
- package/dist/components/assets/pdfjs/pdf.worker.min.mjs +1 -4
- package/dist/components/swirl-avatar.js +2 -2
- package/dist/esm/swirl-avatar.entry.js +2 -2
- package/dist/swirl-components/{p-e7744a13.entry.js → p-d1fa14ba.entry.js} +1 -1
- package/dist/swirl-components/swirl-components.esm.js +1 -1
- package/dist/types/components/swirl-avatar/swirl-avatar.d.ts +1 -1
- package/package.json +1 -1
- package/vscode-data.json +3 -0
|
@@ -2,7 +2,7 @@ import { EventEmitter } from "../../stencil-public-runtime";
|
|
|
2
2
|
export type SwirlAvatarBadgePosition = "bottom" | "top";
|
|
3
3
|
export type SwirlAvatarLoading = "lazy" | "auto" | "eager" | "intersecting";
|
|
4
4
|
export type SwirlAvatarToolPosition = "bottom" | "top";
|
|
5
|
-
export type SwirlAvatarColor = "banana" | "blueberry" | "chilli" | "grape" | "kiwi" | "pumpkin" | "radish";
|
|
5
|
+
export type SwirlAvatarColor = "banana" | "blueberry" | "chilli" | "grape" | "kiwi" | "neutral" | "pumpkin" | "radish";
|
|
6
6
|
export type SwirlAvatarSize = "3xs" | "2xs" | "xs" | "s" | "m" | "l" | "xl" | "2xl";
|
|
7
7
|
export type SwirlAvatarVariant = "round" | "square";
|
|
8
8
|
/**
|
package/package.json
CHANGED