slippers-ui 3.2.15 → 3.2.16
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/icons/World.js +24 -11
- package/icons/World.vue +18 -2
- package/package.json +7 -9
package/dist/icons/World.js
CHANGED
|
@@ -1,16 +1,29 @@
|
|
|
1
|
-
import { openBlock as
|
|
2
|
-
import { _ as
|
|
3
|
-
const
|
|
4
|
-
fill: "
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { openBlock as e, createElementBlock as o, createElementVNode as C } from "vue";
|
|
2
|
+
import { _ as r } from "./chunks/_plugin-vue_export-helper-CHgC5LLL.js";
|
|
3
|
+
const l = {}, n = {
|
|
4
|
+
fill: "none",
|
|
5
|
+
viewBox: "0 0 16 16",
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
7
7
|
};
|
|
8
|
-
function
|
|
9
|
-
return
|
|
10
|
-
|
|
8
|
+
function c(i, t) {
|
|
9
|
+
return e(), o("svg", n, [...t[0] || (t[0] = [
|
|
10
|
+
C("g", { "clip-path": "url(#earth-icon-clip)" }, [
|
|
11
|
+
C("path", {
|
|
12
|
+
d: "M8 0C12.4183 0 16 3.58172 16 8C16 12.4183 12.4183 16 8 16C3.58172 16 0 12.4183 0 8C0 3.58172 3.58172 0 8 0ZM5.77148 10.75C5.95052 11.6157 6.2077 12.3744 6.51367 12.9863C7.15772 14.2742 7.7697 14.5 8 14.5C8.2303 14.5 8.84228 14.2742 9.48633 12.9863C9.7923 12.3744 10.0495 11.6157 10.2285 10.75H5.77148ZM2.10938 10.75C2.76342 12.1486 3.90082 13.275 5.30664 13.916C4.83459 13.056 4.46695 11.9727 4.24316 10.75H2.10938ZM11.7568 10.75C11.533 11.9729 11.1645 13.0559 10.6924 13.916C12.0986 13.275 13.2365 12.1489 13.8906 10.75H11.7568ZM1.62109 6.75C1.54227 7.15457 1.5 7.57237 1.5 8C1.5 8.42763 1.54227 8.84543 1.62109 9.25H4.04883C4.01687 8.84271 4 8.42524 4 8C4 7.57476 4.01687 7.15729 4.04883 6.75H1.62109ZM5.55469 6.75C5.51964 7.15287 5.5 7.57042 5.5 8C5.5 8.42958 5.51964 8.84713 5.55469 9.25H10.4453C10.4804 8.84713 10.5 8.42958 10.5 8C10.5 7.57042 10.4804 7.15287 10.4453 6.75H5.55469ZM11.9512 6.75C11.9831 7.15729 12 7.57476 12 8C12 8.42524 11.9831 8.84271 11.9512 9.25H14.3789C14.4577 8.84543 14.5 8.42763 14.5 8C14.5 7.57237 14.4577 7.15457 14.3789 6.75H11.9512ZM5.30664 2.08301C3.90065 2.72403 2.76348 3.85129 2.10938 5.25H4.24316C4.46702 4.02698 4.83439 2.94313 5.30664 2.08301ZM8 1.5C7.7697 1.5 7.15772 1.72578 6.51367 3.01367C6.2077 3.62561 5.95052 4.3843 5.77148 5.25H10.2285C10.0495 4.3843 9.7923 3.62561 9.48633 3.01367C8.84228 1.72578 8.2303 1.5 8 1.5ZM10.6924 2.08301C11.1647 2.9432 11.5329 4.02678 11.7568 5.25H13.8906C13.2364 3.85102 12.0987 2.72397 10.6924 2.08301Z",
|
|
13
|
+
fill: "currentColor"
|
|
14
|
+
})
|
|
15
|
+
], -1),
|
|
16
|
+
C("defs", null, [
|
|
17
|
+
C("clipPath", { id: "earth-icon-clip" }, [
|
|
18
|
+
C("rect", {
|
|
19
|
+
width: "16",
|
|
20
|
+
height: "16"
|
|
21
|
+
})
|
|
22
|
+
])
|
|
23
|
+
], -1)
|
|
11
24
|
])]);
|
|
12
25
|
}
|
|
13
|
-
const
|
|
26
|
+
const H = /* @__PURE__ */ r(l, [["render", c]]);
|
|
14
27
|
export {
|
|
15
|
-
|
|
28
|
+
H as default
|
|
16
29
|
};
|
package/icons/World.vue
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg
|
|
3
|
-
|
|
2
|
+
<svg
|
|
3
|
+
fill="none"
|
|
4
|
+
viewBox="0 0 16 16"
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
>
|
|
7
|
+
<g clip-path="url(#earth-icon-clip)">
|
|
8
|
+
<path
|
|
9
|
+
d="M8 0C12.4183 0 16 3.58172 16 8C16 12.4183 12.4183 16 8 16C3.58172 16 0 12.4183 0 8C0 3.58172 3.58172 0 8 0ZM5.77148 10.75C5.95052 11.6157 6.2077 12.3744 6.51367 12.9863C7.15772 14.2742 7.7697 14.5 8 14.5C8.2303 14.5 8.84228 14.2742 9.48633 12.9863C9.7923 12.3744 10.0495 11.6157 10.2285 10.75H5.77148ZM2.10938 10.75C2.76342 12.1486 3.90082 13.275 5.30664 13.916C4.83459 13.056 4.46695 11.9727 4.24316 10.75H2.10938ZM11.7568 10.75C11.533 11.9729 11.1645 13.0559 10.6924 13.916C12.0986 13.275 13.2365 12.1489 13.8906 10.75H11.7568ZM1.62109 6.75C1.54227 7.15457 1.5 7.57237 1.5 8C1.5 8.42763 1.54227 8.84543 1.62109 9.25H4.04883C4.01687 8.84271 4 8.42524 4 8C4 7.57476 4.01687 7.15729 4.04883 6.75H1.62109ZM5.55469 6.75C5.51964 7.15287 5.5 7.57042 5.5 8C5.5 8.42958 5.51964 8.84713 5.55469 9.25H10.4453C10.4804 8.84713 10.5 8.42958 10.5 8C10.5 7.57042 10.4804 7.15287 10.4453 6.75H5.55469ZM11.9512 6.75C11.9831 7.15729 12 7.57476 12 8C12 8.42524 11.9831 8.84271 11.9512 9.25H14.3789C14.4577 8.84543 14.5 8.42763 14.5 8C14.5 7.57237 14.4577 7.15457 14.3789 6.75H11.9512ZM5.30664 2.08301C3.90065 2.72403 2.76348 3.85129 2.10938 5.25H4.24316C4.46702 4.02698 4.83439 2.94313 5.30664 2.08301ZM8 1.5C7.7697 1.5 7.15772 1.72578 6.51367 3.01367C6.2077 3.62561 5.95052 4.3843 5.77148 5.25H10.2285C10.0495 4.3843 9.7923 3.62561 9.48633 3.01367C8.84228 1.72578 8.2303 1.5 8 1.5ZM10.6924 2.08301C11.1647 2.9432 11.5329 4.02678 11.7568 5.25H13.8906C13.2364 3.85102 12.0987 2.72397 10.6924 2.08301Z"
|
|
10
|
+
fill="currentColor"
|
|
11
|
+
/>
|
|
12
|
+
</g>
|
|
13
|
+
<defs>
|
|
14
|
+
<clipPath id="earth-icon-clip">
|
|
15
|
+
<rect width="16" height="16" />
|
|
16
|
+
</clipPath>
|
|
17
|
+
</defs>
|
|
18
|
+
</svg>
|
|
19
|
+
</template>
|
package/package.json
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
"name": "slippers-ui",
|
|
3
3
|
"description": "GitLab Marketing Design System",
|
|
4
4
|
"author": "GitLab",
|
|
5
|
-
"version": "3.2.
|
|
6
|
-
"packageManager": "pnpm@10.28.1",
|
|
5
|
+
"version": "3.2.16",
|
|
7
6
|
"engines": {
|
|
8
7
|
"node": "24.12.0",
|
|
9
8
|
"pnpm": "10.28.1"
|
|
@@ -44,12 +43,6 @@
|
|
|
44
43
|
"type": "git",
|
|
45
44
|
"url": "https://gitlab.com/gitlab-com/marketing/digital-experience/slippers-ui.git"
|
|
46
45
|
},
|
|
47
|
-
"scripts": {
|
|
48
|
-
"prepublishOnly": "node ./scripts/add-icons.mjs",
|
|
49
|
-
"dev": "storybook dev",
|
|
50
|
-
"storybook": "storybook",
|
|
51
|
-
"build": "vite build && vite build --config vite.icons.config.ts"
|
|
52
|
-
},
|
|
53
46
|
"peerDependencies": {
|
|
54
47
|
"vue": "^3.5.27"
|
|
55
48
|
},
|
|
@@ -66,5 +59,10 @@
|
|
|
66
59
|
"typescript": "^5.9.3",
|
|
67
60
|
"vite": "^7.3.1",
|
|
68
61
|
"vue": "^3.5.27"
|
|
62
|
+
},
|
|
63
|
+
"scripts": {
|
|
64
|
+
"dev": "storybook dev",
|
|
65
|
+
"storybook": "storybook",
|
|
66
|
+
"build": "vite build && vite build --config vite.icons.config.ts"
|
|
69
67
|
}
|
|
70
|
-
}
|
|
68
|
+
}
|