@citizenplane/pimp 10.1.7 → 10.1.8
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/pimp.es.js +7 -5
- package/dist/pimp.umd.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/CpBadge.vue +48 -12
- package/src/stories/CpBadge.stories.ts +26 -10
package/dist/pimp.es.js
CHANGED
|
@@ -18271,11 +18271,12 @@ const zr = /* @__PURE__ */ I(ov, [["render", $v]]), bv = ["title"], wv = /* @__P
|
|
|
18271
18271
|
__name: "CpBadge",
|
|
18272
18272
|
props: {
|
|
18273
18273
|
color: { default: hn.GRAY },
|
|
18274
|
-
isClearable: { type: Boolean
|
|
18274
|
+
isClearable: { type: Boolean },
|
|
18275
18275
|
isDashed: { type: Boolean },
|
|
18276
|
-
isDisabled: { type: Boolean
|
|
18277
|
-
|
|
18278
|
-
|
|
18276
|
+
isDisabled: { type: Boolean },
|
|
18277
|
+
isSolid: { type: Boolean },
|
|
18278
|
+
isSquare: { type: Boolean },
|
|
18279
|
+
isStroked: { type: Boolean },
|
|
18279
18280
|
label: { default: "" },
|
|
18280
18281
|
leadingIcon: { default: "" },
|
|
18281
18282
|
size: { default: Kt.MD },
|
|
@@ -18289,7 +18290,8 @@ const zr = /* @__PURE__ */ I(ov, [["render", $v]]), bv = ["title"], wv = /* @__P
|
|
|
18289
18290
|
{ "cpBadge--isStroked": n.isStroked },
|
|
18290
18291
|
{ "cpBadge--isSquare": n.isSquare },
|
|
18291
18292
|
{ "cpBadge--isDashed": n.isDashed },
|
|
18292
|
-
{ "cpBadge--isDisabled": n.isDisabled }
|
|
18293
|
+
{ "cpBadge--isDisabled": n.isDisabled },
|
|
18294
|
+
{ "cpBadge--isSolid": n.isSolid }
|
|
18293
18295
|
]), r = () => o("onClear");
|
|
18294
18296
|
return (s, a) => {
|
|
18295
18297
|
const l = X("cp-icon");
|