slippers-ui 3.2.13 → 3.2.15
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/Approval.js +22 -0
- package/dist/icons/CheckCircleDashed.js +22 -0
- package/dist/icons/Comment.js +20 -0
- package/dist/icons/Dashboard.js +22 -0
- package/dist/icons/Hourglass.js +22 -0
- package/dist/icons/Location.js +22 -0
- package/dist/icons/Profile.js +22 -0
- package/dist/icons/RocketLaunch.js +22 -0
- package/dist/icons/SearchResults.js +22 -0
- package/dist/icons/Star.js +20 -0
- package/dist/icons/StarOutline.js +22 -0
- package/dist/icons/Timer.js +22 -0
- package/dist/icons/TodoDone.js +22 -0
- package/dist/icons/Warning.js +22 -0
- package/dist/icons/WarningSolid.js +22 -0
- package/dist/icons/Work.js +20 -0
- package/dist/icons/WorkItemObjective.js +20 -0
- package/dist/icons/index.js +908 -874
- package/icons/Approval.vue +15 -0
- package/icons/CheckCircleDashed.vue +15 -0
- package/icons/Comment.vue +3 -0
- package/icons/Dashboard.vue +15 -0
- package/icons/Hourglass.vue +15 -0
- package/icons/Location.vue +15 -0
- package/icons/Profile.vue +15 -0
- package/icons/RocketLaunch.vue +15 -0
- package/icons/SearchResults.vue +15 -0
- package/icons/Star.vue +13 -0
- package/icons/StarOutline.vue +15 -0
- package/icons/Timer.vue +15 -0
- package/icons/TodoDone.vue +15 -0
- package/icons/Warning.vue +15 -0
- package/icons/WarningSolid.vue +15 -0
- package/icons/Work.vue +3 -0
- package/icons/WorkItemObjective.vue +13 -0
- package/icons/index.ts +17 -0
- package/icons.d.ts +17 -0
- package/package.json +9 -7
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg
|
|
3
|
+
width="16"
|
|
4
|
+
height="16"
|
|
5
|
+
viewBox="0 0 16 16"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
>
|
|
8
|
+
<path
|
|
9
|
+
fill-rule="evenodd"
|
|
10
|
+
clip-rule="evenodd"
|
|
11
|
+
d="M4 6.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM7 5a2.99 2.99 0 0 1-.87 2.113A3.997 3.997 0 0 1 8 10.5V12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-1.5c0-1.427.747-2.679 1.87-3.387A3 3 0 1 1 7 5Zm-5.5 5.5a2.5 2.5 0 0 1 5 0V12a.5.5 0 0 1-.5.5H2a.5.5 0 0 1-.5-.5v-1.5Zm14.28-5.22a.75.75 0 0 0-1.06-1.06L12 6.94l-1.22-1.22a.75.75 0 1 0-1.06 1.06l1.75 1.75a.75.75 0 0 0 1.06 0l3.25-3.25Z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
/>
|
|
14
|
+
</svg>
|
|
15
|
+
</template>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg
|
|
3
|
+
width="16"
|
|
4
|
+
height="16"
|
|
5
|
+
viewBox="0 0 16 16"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
>
|
|
8
|
+
<path
|
|
9
|
+
fill-rule="evenodd"
|
|
10
|
+
clip-rule="evenodd"
|
|
11
|
+
d="M6.701 1.08a.75.75 0 0 0-.934-.5A7.75 7.75 0 0 0 .573 5.785a.75.75 0 1 0 1.438.429 6.25 6.25 0 0 1 4.188-4.199.75.75 0 0 0 .502-.934Zm2.598 0a.75.75 0 0 1 .934-.501 7.75 7.75 0 0 1 5.194 5.206.75.75 0 1 1-1.438.429 6.25 6.25 0 0 0-4.188-4.199.75.75 0 0 1-.502-.934Zm2.481 4.14a.75.75 0 0 1 0 1.06l-4.5 4.5a.75.75 0 0 1-1.06 0L4.47 9.03a.75.75 0 0 1 1.06-1.06l1.22 1.22 3.97-3.97a.75.75 0 0 1 1.06 0Zm-1.547 10.2a.75.75 0 1 1-.432-1.436 6.251 6.251 0 0 0 4.188-4.199.75.75 0 1 1 1.438.429 7.75 7.75 0 0 1-5.194 5.206Zm-4.466 0a.75.75 0 1 0 .432-1.436 6.25 6.25 0 0 1-4.188-4.199.75.75 0 1 0-1.438.429 7.75 7.75 0 0 0 5.194 5.206Z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
/>
|
|
14
|
+
</svg>
|
|
15
|
+
</template>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 4a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v6a3 3 0 0 1-3 3H4.063L1.28 15.78A.75.75 0 0 1 0 15.25V4Zm3-1.5A1.5 1.5 0 0 0 1.5 4v9.44l1.723-1.72.22-.22H13a1.5 1.5 0 0 0 1.5-1.5V4A1.5 1.5 0 0 0 13 2.5H3Z" fill="currentColor"/></svg>
|
|
3
|
+
</template>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg
|
|
3
|
+
width="16"
|
|
4
|
+
height="16"
|
|
5
|
+
viewBox="0 0 16 16"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
>
|
|
8
|
+
<path
|
|
9
|
+
fill-rule="evenodd"
|
|
10
|
+
clip-rule="evenodd"
|
|
11
|
+
d="M13.545 2.1a.75.75 0 0 1 .274 1.025l-3.472 6.007a3 3 0 1 1-1.208-.908l1.759-3.042a6.5 6.5 0 0 0-2.148-.639V5a.75.75 0 1 1-1.5 0v-.457a6.5 6.5 0 0 0-1.829.49l.229.396a.75.75 0 1 1-1.3.75l-.228-.396a6.5 6.5 0 0 0-1.339 1.34l.396.227a.75.75 0 0 1-.75 1.3l-.396-.229a6.5 6.5 0 0 0-.498 1.905.75.75 0 0 1-1.492-.155A8 8 0 0 1 11.65 3.88l.87-1.506a.75.75 0 0 1 1.025-.274Zm-.107 4.047a.75.75 0 0 1 1.047.169 8 8 0 0 1 1.51 4.963.75.75 0 1 1-1.499-.052 6.5 6.5 0 0 0-1.227-4.033.75.75 0 0 1 .17-1.047ZM9.5 11a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
/>
|
|
14
|
+
</svg>
|
|
15
|
+
</template>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg
|
|
3
|
+
width="16"
|
|
4
|
+
height="16"
|
|
5
|
+
viewBox="0 0 16 16"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
>
|
|
8
|
+
<path
|
|
9
|
+
fill-rule="evenodd"
|
|
10
|
+
clip-rule="evenodd"
|
|
11
|
+
d="M2.75 0a.75.75 0 0 0 0 1.5H3v.593c0 1.26.5 2.468 1.391 3.359L6.94 8l-2.548 2.548A4.75 4.75 0 0 0 3 13.907v.593h-.25a.75.75 0 0 0 0 1.5h10.5a.75.75 0 0 0 0-1.5H13v-.593c0-1.26-.5-2.468-1.391-3.359L9.06 8l2.548-2.548A4.75 4.75 0 0 0 13 2.093V1.5h.25a.75.75 0 0 0 0-1.5H2.75Zm8.75 1.5h-7v.593c0 .69.219 1.356.618 1.907h5.764a3.25 3.25 0 0 0 .618-1.907V1.5ZM8 6.94 6.56 5.5h2.88L8 6.94Zm3.5 7.56v-.593a3.25 3.25 0 0 0-.952-2.298L8 9.06l-2.548 2.548a3.25 3.25 0 0 0-.952 2.298v.593h7Z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
/>
|
|
14
|
+
</svg>
|
|
15
|
+
</template>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg
|
|
3
|
+
width="16"
|
|
4
|
+
height="16"
|
|
5
|
+
viewBox="0 0 16 16"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
>
|
|
8
|
+
<path
|
|
9
|
+
fill-rule="evenodd"
|
|
10
|
+
clip-rule="evenodd"
|
|
11
|
+
d="M12.5 6a4.47 4.47 0 0 1-.883 2.677L8 13.5 4.383 8.677A4.5 4.5 0 1 1 12.5 6ZM14 6c0 1.34-.439 2.576-1.18 3.574L8.937 14.75 8 16l-.938-1.25L3.18 9.574A6 6 0 1 1 14 6ZM8 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
/>
|
|
14
|
+
</svg>
|
|
15
|
+
</template>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg
|
|
3
|
+
width="16"
|
|
4
|
+
height="16"
|
|
5
|
+
viewBox="0 0 16 16"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
>
|
|
8
|
+
<path
|
|
9
|
+
fill-rule="evenodd"
|
|
10
|
+
clip-rule="evenodd"
|
|
11
|
+
d="M8 14.5a6.47 6.47 0 0 0 3.25-.87V11.5A2.25 2.25 0 0 0 9 9.25H7a2.25 2.25 0 0 0-2.25 2.25v2.13A6.47 6.47 0 0 0 8 14.5Zm4.75-3v.937a6.5 6.5 0 1 0-9.5 0V11.5a3.752 3.752 0 0 1 2.486-3.532 3 3 0 1 1 4.528 0A3.752 3.752 0 0 1 12.75 11.5ZM8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16ZM9.5 6a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
/>
|
|
14
|
+
</svg>
|
|
15
|
+
</template>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg
|
|
3
|
+
width="16"
|
|
4
|
+
height="16"
|
|
5
|
+
viewBox="0 0 16 16"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
>
|
|
8
|
+
<path
|
|
9
|
+
fill-rule="evenodd"
|
|
10
|
+
clip-rule="evenodd"
|
|
11
|
+
d="M15.808 0a9.999 9.999 0 0 0-7.142 3H6.75A2.75 2.75 0 0 0 4 5.75V8h2l2 2v2h2.25A2.75 2.75 0 0 0 13 9.25V7.334a9.998 9.998 0 0 0 3-7.142V0h-.192ZM6.44 6.5a9.964 9.964 0 0 1 1.015-2H6.75c-.69 0-1.25.56-1.25 1.25v.75h.94Zm3.06 4v-.94a9.966 9.966 0 0 0 2-1.015v.705c0 .69-.56 1.25-1.25 1.25H9.5Zm4.88-8.88a8.502 8.502 0 0 0-6.71 5.928l.782.783a8.502 8.502 0 0 0 5.928-6.71Zm-11.6 8.66a.75.75 0 1 0-1.06-1.06l-1.5 1.5a.75.75 0 1 0 1.06 1.06l1.5-1.5Zm3 1a.75.75 0 1 0-1.06-1.06l-4.5 4.5a.75.75 0 1 0 1.06 1.06l4.5-4.5Zm1 1.94a.75.75 0 0 1 0 1.06l-1.5 1.5a.75.75 0 0 1-1.06-1.06l1.5-1.5a.75.75 0 0 1 1.06 0Z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
/>
|
|
14
|
+
</svg>
|
|
15
|
+
</template>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg
|
|
3
|
+
width="16"
|
|
4
|
+
height="16"
|
|
5
|
+
viewBox="0 0 16 16"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
>
|
|
8
|
+
<path
|
|
9
|
+
fill-rule="evenodd"
|
|
10
|
+
clip-rule="evenodd"
|
|
11
|
+
d="M1.75 1a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5h-8.5ZM1 4.75A.75.75 0 0 1 1.75 4H7a.75.75 0 0 1 0 1.5H1.75A.75.75 0 0 1 1 4.75Zm9 7.75a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm0 1.5c.834 0 1.607-.255 2.248-.691l1.472 1.471a.75.75 0 1 0 1.06-1.06l-1.471-1.472A4 4 0 1 0 10 14ZM1.75 7a.75.75 0 0 0 0 1.5H4A.75.75 0 0 0 4 7H1.75Z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
/>
|
|
14
|
+
</svg>
|
|
15
|
+
</template>
|
package/icons/Star.vue
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg
|
|
3
|
+
width="16"
|
|
4
|
+
height="16"
|
|
5
|
+
viewBox="0 0 16 16"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
>
|
|
8
|
+
<path
|
|
9
|
+
d="M7.454 1.694a.591.591 0 0 1 1.092 0l1.585 3.81a.25.25 0 0 0 .21.154l4.114.33a.591.591 0 0 1 .338 1.038L11.658 9.71a.25.25 0 0 0-.08.247l.957 4.015a.591.591 0 0 1-.883.641l-3.522-2.15a.25.25 0 0 0-.26 0l-3.522 2.15a.591.591 0 0 1-.883-.641l.957-4.015a.25.25 0 0 0-.08-.247L1.207 7.026a.591.591 0 0 1 .338-1.038l4.113-.33a.25.25 0 0 0 .211-.153l1.585-3.81Z"
|
|
10
|
+
fill="currentColor"
|
|
11
|
+
/>
|
|
12
|
+
</svg>
|
|
13
|
+
</template>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg
|
|
3
|
+
width="16"
|
|
4
|
+
height="16"
|
|
5
|
+
viewBox="0 0 16 16"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
>
|
|
8
|
+
<path
|
|
9
|
+
fill-rule="evenodd"
|
|
10
|
+
clip-rule="evenodd"
|
|
11
|
+
d="m7.189 2.332-.001.003-1.319 3.17a.25.25 0 0 1-.21.153l-3.423.274h-.003l-.095.008-.593.048a.591.591 0 0 0-.338 1.038l.452.387.073.062.002.002 2.608 2.234a.25.25 0 0 1 .08.247l-.796 3.34-.001.003-.022.093-.138.579a.591.591 0 0 0 .883.641l.507-.31.082-.05.003-.001 2.93-1.79a.25.25 0 0 1 .26 0l2.93 1.79.003.002.082.05.507.31a.591.591 0 0 0 .883-.642l-.138-.579-.022-.093v-.003l-.797-3.34a.25.25 0 0 1 .08-.247l2.608-2.234.002-.002.073-.062.452-.387a.591.591 0 0 0-.338-1.038l-.593-.048-.095-.008h-.003l-3.422-.274a.25.25 0 0 1-.211-.153l-1.319-3.17-.001-.003-.037-.089-.228-.549a.591.591 0 0 0-1.092 0l-.228.55-.037.088ZM8 4.288 7.254 6.08a1.75 1.75 0 0 1-1.476 1.072l-1.935.155L5.317 8.57a1.75 1.75 0 0 1 .564 1.736l-.45 1.888 1.657-1.012a1.75 1.75 0 0 1 1.824 0l1.657 1.012-.45-1.889a1.75 1.75 0 0 1 .564-1.735l1.474-1.263-1.935-.155A1.75 1.75 0 0 1 8.746 6.08L8 4.288Z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
/>
|
|
14
|
+
</svg>
|
|
15
|
+
</template>
|
package/icons/Timer.vue
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg
|
|
3
|
+
width="16"
|
|
4
|
+
height="16"
|
|
5
|
+
viewBox="0 0 16 16"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
>
|
|
8
|
+
<path
|
|
9
|
+
fill-rule="evenodd"
|
|
10
|
+
clip-rule="evenodd"
|
|
11
|
+
d="M6 1a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2v.07a6.958 6.958 0 0 1 2.812 1.058l.908-.908a.75.75 0 1 1 1.06 1.06l-.8.8A7 7 0 1 1 7 2.07V2a1 1 0 0 1-1-1Zm7.5 8a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0ZM8.75 5.75a.75.75 0 0 0-1.5 0v3.56l.22.22 2.254 2.254a.75.75 0 1 0 1.06-1.06L8.75 8.689V5.75Z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
/>
|
|
14
|
+
</svg>
|
|
15
|
+
</template>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg
|
|
3
|
+
width="16"
|
|
4
|
+
height="16"
|
|
5
|
+
viewBox="0 0 16 16"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
>
|
|
8
|
+
<path
|
|
9
|
+
fill-rule="evenodd"
|
|
10
|
+
clip-rule="evenodd"
|
|
11
|
+
d="M3 13.5a.5.5 0 0 1-.5-.5V3a.5.5 0 0 1 .5-.5h9.25a.75.75 0 0 0 0-1.5H3a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V9.75a.75.75 0 0 0-1.5 0V13a.5.5 0 0 1-.5.5H3Zm12.78-8.82a.75.75 0 0 0-1.06-1.06L9.162 9.177 7.289 7.241a.75.75 0 1 0-1.078 1.043l2.403 2.484a.75.75 0 0 0 1.07.01L15.78 4.68Z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
/>
|
|
14
|
+
</svg>
|
|
15
|
+
</template>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg
|
|
3
|
+
width="16"
|
|
4
|
+
height="16"
|
|
5
|
+
viewBox="0 0 16 16"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
>
|
|
8
|
+
<path
|
|
9
|
+
fill-rule="evenodd"
|
|
10
|
+
clip-rule="evenodd"
|
|
11
|
+
d="M8.429 2.746a.5.5 0 0 0-.858 0L1.58 12.743a.5.5 0 0 0 .429.757h11.984a.5.5 0 0 0 .43-.757L8.428 2.746Zm-2.144-.77C7.06.68 8.939.68 9.715 1.975l5.993 9.996c.799 1.333-.161 3.028-1.716 3.028H2.008C.453 15-.507 13.305.292 11.972l5.993-9.997ZM9 11.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-.25-5.75a.75.75 0 0 0-1.5 0v3a.75.75 0 0 0 1.5 0v-3Z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
/>
|
|
14
|
+
</svg>
|
|
15
|
+
</template>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg
|
|
3
|
+
width="16"
|
|
4
|
+
height="16"
|
|
5
|
+
viewBox="0 0 16 16"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
>
|
|
8
|
+
<path
|
|
9
|
+
fill-rule="evenodd"
|
|
10
|
+
clip-rule="evenodd"
|
|
11
|
+
d="M6.285 1.975C7.06.68 8.939.68 9.715 1.975l5.993 9.997c.799 1.333-.161 3.028-1.716 3.028H2.008C.453 15-.507 13.305.292 11.972l5.993-9.997ZM8 5a.75.75 0 0 1 .75.75v3a.75.75 0 0 1-1.5 0v-3A.75.75 0 0 1 8 5Zm1 6.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
/>
|
|
14
|
+
</svg>
|
|
15
|
+
</template>
|
package/icons/Work.vue
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M6 1a1.75 1.75 0 0 0-1.75 1.75V4H3a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-1.25V2.75A1.75 1.75 0 0 0 10 1H6Zm4.25 3V2.75A.25.25 0 0 0 10 2.5H6a.25.25 0 0 0-.25.25V4h4.5ZM3 5.5h10a.5.5 0 0 1 .5.5v1h-11V6a.5.5 0 0 1 .5-.5Zm-.5 3V13a.5.5 0 0 0 .5.5h10a.5.5 0 0 0 .5-.5V8.5H9V10H7V8.5H2.5Z" fill="currentColor"/></svg>
|
|
3
|
+
</template>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg
|
|
3
|
+
width="16"
|
|
4
|
+
height="16"
|
|
5
|
+
viewBox="0 0 16 16"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
>
|
|
8
|
+
<path
|
|
9
|
+
d="M4.358.877a8 8 0 0 1 4.47-.834.75.75 0 0 1-.155 1.492 6.5 6.5 0 0 0-3.632.678l-.222.118A6.5 6.5 0 0 0 2.244 4.98l-.112.225a6.5 6.5 0 0 0 1.272 7.392l.18.174a6.502 6.502 0 0 0 3.314 1.636l.248.037a6.5 6.5 0 0 0 3.65-.576l.224-.112a6.5 6.5 0 0 0 3.445-6.43l.746-.077.746-.078a8.002 8.002 0 0 1-4.24 7.913l-.276.138a7.998 7.998 0 0 1-4.492.709l-.306-.047a8 8 0 0 1-4.077-2.012l-.222-.214A8 8 0 0 1 .777 4.56l.139-.276a8 8 0 0 1 3.17-3.26l.272-.147ZM12.22.22a.75.75 0 0 1 1.28.53V2.5h1.75l.112.01a.75.75 0 0 1 .491 1.186l-.073.085-3 3a.75.75 0 0 1-.53.22h-.38a4 4 0 0 1 .11 1.404l-.044.305a4 4 0 0 1-2.982 3.175l-.303.062a4 4 0 0 1-2.111-.223l-.283-.123a4 4 0 0 1-1.597-1.4l-.16-.264a4 4 0 0 1-.477-2.371l.046-.306a4 4 0 0 1 .933-1.907l.213-.224a4 4 0 0 1 1.861-1.02l.076-.015a.75.75 0 0 1 .27 1.474l-.185.051a2.5 2.5 0 0 0-.978.587l-.133.139c-.3.338-.5.751-.583 1.192l-.029.192a2.501 2.501 0 0 0 .298 1.482l.1.165a2.5 2.5 0 0 0 .998.874l.177.078a2.5 2.5 0 0 0 1.32.14l.189-.04a2.5 2.5 0 0 0 1.864-1.984l.027-.19A2.5 2.5 0 0 0 10.29 7h-.23L8.53 8.53a.75.75 0 1 1-1.06-1.06L9 5.94V3.75c0-.199.079-.39.22-.53l3-3Zm2.913 6.283a.75.75 0 0 1 .824.668l-1.492.155a.75.75 0 0 1 .668-.823ZM10.5 4.061V5.5h1.44l1.5-1.5H12V2.56l-1.5 1.5Z"
|
|
10
|
+
fill="currentColor"
|
|
11
|
+
/>
|
|
12
|
+
</svg>
|
|
13
|
+
</template>
|
package/icons/index.ts
CHANGED
|
@@ -25,6 +25,7 @@ export { default as Announcement } from './Announcement.vue';
|
|
|
25
25
|
export { default as AnnouncementAlt } from './AnnouncementAlt.vue';
|
|
26
26
|
export { default as Api } from './Api.vue';
|
|
27
27
|
export { default as Applications } from './Applications.vue';
|
|
28
|
+
export { default as Approval } from './Approval.vue';
|
|
28
29
|
export { default as ApproveDismiss } from './ApproveDismiss.vue';
|
|
29
30
|
export { default as ArrowCircle } from './ArrowCircle.vue';
|
|
30
31
|
export { default as ArrowDown } from './ArrowDown.vue';
|
|
@@ -69,6 +70,7 @@ export { default as ChatLaptop } from './ChatLaptop.vue';
|
|
|
69
70
|
export { default as Check } from './Check.vue';
|
|
70
71
|
export { default as CheckCircle } from './CheckCircle.vue';
|
|
71
72
|
export { default as CheckCircleAlt } from './CheckCircleAlt.vue';
|
|
73
|
+
export { default as CheckCircleDashed } from './CheckCircleDashed.vue';
|
|
72
74
|
export { default as CheckCircleFilled } from './CheckCircleFilled.vue';
|
|
73
75
|
export { default as Checklist } from './Checklist.vue';
|
|
74
76
|
export { default as ChevronLgDown } from './ChevronLgDown.vue';
|
|
@@ -115,6 +117,7 @@ export { default as CollaborationAlt3 } from './CollaborationAlt3.vue';
|
|
|
115
117
|
export { default as CollaborationAlt4 } from './CollaborationAlt4.vue';
|
|
116
118
|
export { default as CollaborationAlt4Thin } from './CollaborationAlt4Thin.vue';
|
|
117
119
|
export { default as CollaborationLink } from './CollaborationLink.vue';
|
|
120
|
+
export { default as Comment } from './Comment.vue';
|
|
118
121
|
export { default as Comments } from './Comments.vue';
|
|
119
122
|
export { default as Community } from './Community.vue';
|
|
120
123
|
export { default as CommunityAlt } from './CommunityAlt.vue';
|
|
@@ -145,6 +148,7 @@ export { default as CurrencyCircle } from './CurrencyCircle.vue';
|
|
|
145
148
|
export { default as Cycle } from './Cycle.vue';
|
|
146
149
|
export { default as DAndI } from './DAndI.vue';
|
|
147
150
|
export { default as Dash } from './Dash.vue';
|
|
151
|
+
export { default as Dashboard } from './Dashboard.vue';
|
|
148
152
|
export { default as DataCircle } from './DataCircle.vue';
|
|
149
153
|
export { default as Delay } from './Delay.vue';
|
|
150
154
|
export { default as Deliver } from './Deliver.vue';
|
|
@@ -223,6 +227,7 @@ export { default as HandbookAlt } from './HandbookAlt.vue';
|
|
|
223
227
|
export { default as HandbookGitlab } from './HandbookGitlab.vue';
|
|
224
228
|
export { default as Handshake } from './Handshake.vue';
|
|
225
229
|
export { default as Heart } from './Heart.vue';
|
|
230
|
+
export { default as Hourglass } from './Hourglass.vue';
|
|
226
231
|
export { default as IdeaCollaboration } from './IdeaCollaboration.vue';
|
|
227
232
|
export { default as Improve } from './Improve.vue';
|
|
228
233
|
export { default as Inclusion } from './Inclusion.vue';
|
|
@@ -244,6 +249,7 @@ export { default as LinkedinCircle } from './LinkedinCircle.vue';
|
|
|
244
249
|
export { default as ListBulleted } from './ListBulleted.vue';
|
|
245
250
|
export { default as ListTask } from './ListTask.vue';
|
|
246
251
|
export { default as LocalizationPerson } from './LocalizationPerson.vue';
|
|
252
|
+
export { default as Location } from './Location.vue';
|
|
247
253
|
export { default as LockAlt } from './LockAlt.vue';
|
|
248
254
|
export { default as LockAlt2 } from './LockAlt2.vue';
|
|
249
255
|
export { default as LockAlt3 } from './LockAlt3.vue';
|
|
@@ -331,6 +337,7 @@ export { default as Preferences } from './Preferences.vue';
|
|
|
331
337
|
export { default as PricingPlans } from './PricingPlans.vue';
|
|
332
338
|
export { default as PricingPlansBold } from './PricingPlansBold.vue';
|
|
333
339
|
export { default as Principles } from './Principles.vue';
|
|
340
|
+
export { default as Profile } from './Profile.vue';
|
|
334
341
|
export { default as Protect } from './Protect.vue';
|
|
335
342
|
export { default as ProtectAlt } from './ProtectAlt.vue';
|
|
336
343
|
export { default as ProtectAlt2 } from './ProtectAlt2.vue';
|
|
@@ -366,12 +373,14 @@ export { default as RibbonCheckAlt2 } from './RibbonCheckAlt2.vue';
|
|
|
366
373
|
export { default as RibbonCheckAltThin } from './RibbonCheckAltThin.vue';
|
|
367
374
|
export { default as Rocket } from './Rocket.vue';
|
|
368
375
|
export { default as RocketAlt } from './RocketAlt.vue';
|
|
376
|
+
export { default as RocketLaunch } from './RocketLaunch.vue';
|
|
369
377
|
export { default as Roles } from './Roles.vue';
|
|
370
378
|
export { default as Scale } from './Scale.vue';
|
|
371
379
|
export { default as Search } from './Search.vue';
|
|
372
380
|
export { default as SearchAlt } from './SearchAlt.vue';
|
|
373
381
|
export { default as SearchCircle } from './SearchCircle.vue';
|
|
374
382
|
export { default as SearchDot } from './SearchDot.vue';
|
|
383
|
+
export { default as SearchResults } from './SearchResults.vue';
|
|
375
384
|
export { default as Secure } from './Secure.vue';
|
|
376
385
|
export { default as SecureAlt } from './SecureAlt.vue';
|
|
377
386
|
export { default as SecureAlt2 } from './SecureAlt2.vue';
|
|
@@ -400,6 +409,8 @@ export { default as SpeedAlt2 } from './SpeedAlt2.vue';
|
|
|
400
409
|
export { default as SpeedAlt2Light } from './SpeedAlt2Light.vue';
|
|
401
410
|
export { default as SpeedGauge } from './SpeedGauge.vue';
|
|
402
411
|
export { default as StableComputer } from './StableComputer.vue';
|
|
412
|
+
export { default as Star } from './Star.vue';
|
|
413
|
+
export { default as StarOutline } from './StarOutline.vue';
|
|
403
414
|
export { default as Stop } from './Stop.vue';
|
|
404
415
|
export { default as Stopwatch } from './Stopwatch.vue';
|
|
405
416
|
export { default as Support } from './Support.vue';
|
|
@@ -416,7 +427,9 @@ export { default as Ticket } from './Ticket.vue';
|
|
|
416
427
|
export { default as Time } from './Time.vue';
|
|
417
428
|
export { default as TimeIsMoney } from './TimeIsMoney.vue';
|
|
418
429
|
export { default as TimeIsMoneyAlt } from './TimeIsMoneyAlt.vue';
|
|
430
|
+
export { default as Timer } from './Timer.vue';
|
|
419
431
|
export { default as TimerCircle } from './TimerCircle.vue';
|
|
432
|
+
export { default as TodoDone } from './TodoDone.vue';
|
|
420
433
|
export { default as Topics } from './Topics.vue';
|
|
421
434
|
export { default as Trending } from './Trending.vue';
|
|
422
435
|
export { default as TwitterCircle } from './TwitterCircle.vue';
|
|
@@ -445,13 +458,17 @@ export { default as VideoAlt } from './VideoAlt.vue';
|
|
|
445
458
|
export { default as VideoChat } from './VideoChat.vue';
|
|
446
459
|
export { default as Visibility } from './Visibility.vue';
|
|
447
460
|
export { default as VisibilityAlt } from './VisibilityAlt.vue';
|
|
461
|
+
export { default as Warning } from './Warning.vue';
|
|
462
|
+
export { default as WarningSolid } from './WarningSolid.vue';
|
|
448
463
|
export { default as Web } from './Web.vue';
|
|
449
464
|
export { default as WebAlt } from './WebAlt.vue';
|
|
450
465
|
export { default as Webcast } from './Webcast.vue';
|
|
451
466
|
export { default as WebcastAlt } from './WebcastAlt.vue';
|
|
452
467
|
export { default as Weight } from './Weight.vue';
|
|
453
468
|
export { default as Whitepapers } from './Whitepapers.vue';
|
|
469
|
+
export { default as Work } from './Work.vue';
|
|
454
470
|
export { default as WorkItemEpic } from './WorkItemEpic.vue';
|
|
455
471
|
export { default as WorkItemMaintenance } from './WorkItemMaintenance.vue';
|
|
472
|
+
export { default as WorkItemObjective } from './WorkItemObjective.vue';
|
|
456
473
|
export { default as WorkItemTestCase } from './WorkItemTestCase.vue';
|
|
457
474
|
export { default as World } from './World.vue';
|
package/icons.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ declare module 'slippers-ui/icons' {
|
|
|
34
34
|
export const AnnouncementAlt: IconComponent;
|
|
35
35
|
export const Api: IconComponent;
|
|
36
36
|
export const Applications: IconComponent;
|
|
37
|
+
export const Approval: IconComponent;
|
|
37
38
|
export const ApproveDismiss: IconComponent;
|
|
38
39
|
export const ArrowCircle: IconComponent;
|
|
39
40
|
export const ArrowDown: IconComponent;
|
|
@@ -78,6 +79,7 @@ declare module 'slippers-ui/icons' {
|
|
|
78
79
|
export const Check: IconComponent;
|
|
79
80
|
export const CheckCircle: IconComponent;
|
|
80
81
|
export const CheckCircleAlt: IconComponent;
|
|
82
|
+
export const CheckCircleDashed: IconComponent;
|
|
81
83
|
export const CheckCircleFilled: IconComponent;
|
|
82
84
|
export const Checklist: IconComponent;
|
|
83
85
|
export const ChevronLgDown: IconComponent;
|
|
@@ -124,6 +126,7 @@ declare module 'slippers-ui/icons' {
|
|
|
124
126
|
export const CollaborationAlt4: IconComponent;
|
|
125
127
|
export const CollaborationAlt4Thin: IconComponent;
|
|
126
128
|
export const CollaborationLink: IconComponent;
|
|
129
|
+
export const Comment: IconComponent;
|
|
127
130
|
export const Comments: IconComponent;
|
|
128
131
|
export const Community: IconComponent;
|
|
129
132
|
export const CommunityAlt: IconComponent;
|
|
@@ -154,6 +157,7 @@ declare module 'slippers-ui/icons' {
|
|
|
154
157
|
export const Cycle: IconComponent;
|
|
155
158
|
export const DAndI: IconComponent;
|
|
156
159
|
export const Dash: IconComponent;
|
|
160
|
+
export const Dashboard: IconComponent;
|
|
157
161
|
export const DataCircle: IconComponent;
|
|
158
162
|
export const Delay: IconComponent;
|
|
159
163
|
export const Deliver: IconComponent;
|
|
@@ -232,6 +236,7 @@ declare module 'slippers-ui/icons' {
|
|
|
232
236
|
export const HandbookGitlab: IconComponent;
|
|
233
237
|
export const Handshake: IconComponent;
|
|
234
238
|
export const Heart: IconComponent;
|
|
239
|
+
export const Hourglass: IconComponent;
|
|
235
240
|
export const IdeaCollaboration: IconComponent;
|
|
236
241
|
export const Improve: IconComponent;
|
|
237
242
|
export const Inclusion: IconComponent;
|
|
@@ -253,6 +258,7 @@ declare module 'slippers-ui/icons' {
|
|
|
253
258
|
export const ListBulleted: IconComponent;
|
|
254
259
|
export const ListTask: IconComponent;
|
|
255
260
|
export const LocalizationPerson: IconComponent;
|
|
261
|
+
export const Location: IconComponent;
|
|
256
262
|
export const LockAlt: IconComponent;
|
|
257
263
|
export const LockAlt2: IconComponent;
|
|
258
264
|
export const LockAlt3: IconComponent;
|
|
@@ -340,6 +346,7 @@ declare module 'slippers-ui/icons' {
|
|
|
340
346
|
export const PricingPlans: IconComponent;
|
|
341
347
|
export const PricingPlansBold: IconComponent;
|
|
342
348
|
export const Principles: IconComponent;
|
|
349
|
+
export const Profile: IconComponent;
|
|
343
350
|
export const Protect: IconComponent;
|
|
344
351
|
export const ProtectAlt: IconComponent;
|
|
345
352
|
export const ProtectAlt2: IconComponent;
|
|
@@ -375,12 +382,14 @@ declare module 'slippers-ui/icons' {
|
|
|
375
382
|
export const RibbonCheckAltThin: IconComponent;
|
|
376
383
|
export const Rocket: IconComponent;
|
|
377
384
|
export const RocketAlt: IconComponent;
|
|
385
|
+
export const RocketLaunch: IconComponent;
|
|
378
386
|
export const Roles: IconComponent;
|
|
379
387
|
export const Scale: IconComponent;
|
|
380
388
|
export const Search: IconComponent;
|
|
381
389
|
export const SearchAlt: IconComponent;
|
|
382
390
|
export const SearchCircle: IconComponent;
|
|
383
391
|
export const SearchDot: IconComponent;
|
|
392
|
+
export const SearchResults: IconComponent;
|
|
384
393
|
export const Secure: IconComponent;
|
|
385
394
|
export const SecureAlt: IconComponent;
|
|
386
395
|
export const SecureAlt2: IconComponent;
|
|
@@ -409,6 +418,8 @@ declare module 'slippers-ui/icons' {
|
|
|
409
418
|
export const SpeedAlt2Light: IconComponent;
|
|
410
419
|
export const SpeedGauge: IconComponent;
|
|
411
420
|
export const StableComputer: IconComponent;
|
|
421
|
+
export const Star: IconComponent;
|
|
422
|
+
export const StarOutline: IconComponent;
|
|
412
423
|
export const Stop: IconComponent;
|
|
413
424
|
export const Stopwatch: IconComponent;
|
|
414
425
|
export const Support: IconComponent;
|
|
@@ -425,7 +436,9 @@ declare module 'slippers-ui/icons' {
|
|
|
425
436
|
export const Time: IconComponent;
|
|
426
437
|
export const TimeIsMoney: IconComponent;
|
|
427
438
|
export const TimeIsMoneyAlt: IconComponent;
|
|
439
|
+
export const Timer: IconComponent;
|
|
428
440
|
export const TimerCircle: IconComponent;
|
|
441
|
+
export const TodoDone: IconComponent;
|
|
429
442
|
export const Topics: IconComponent;
|
|
430
443
|
export const Trending: IconComponent;
|
|
431
444
|
export const TwitterCircle: IconComponent;
|
|
@@ -454,14 +467,18 @@ declare module 'slippers-ui/icons' {
|
|
|
454
467
|
export const VideoChat: IconComponent;
|
|
455
468
|
export const Visibility: IconComponent;
|
|
456
469
|
export const VisibilityAlt: IconComponent;
|
|
470
|
+
export const Warning: IconComponent;
|
|
471
|
+
export const WarningSolid: IconComponent;
|
|
457
472
|
export const Web: IconComponent;
|
|
458
473
|
export const WebAlt: IconComponent;
|
|
459
474
|
export const Webcast: IconComponent;
|
|
460
475
|
export const WebcastAlt: IconComponent;
|
|
461
476
|
export const Weight: IconComponent;
|
|
462
477
|
export const Whitepapers: IconComponent;
|
|
478
|
+
export const Work: IconComponent;
|
|
463
479
|
export const WorkItemEpic: IconComponent;
|
|
464
480
|
export const WorkItemMaintenance: IconComponent;
|
|
481
|
+
export const WorkItemObjective: IconComponent;
|
|
465
482
|
export const WorkItemTestCase: IconComponent;
|
|
466
483
|
export const World: IconComponent;
|
|
467
484
|
}
|
package/package.json
CHANGED
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
"name": "slippers-ui",
|
|
3
3
|
"description": "GitLab Marketing Design System",
|
|
4
4
|
"author": "GitLab",
|
|
5
|
-
"version": "3.2.
|
|
5
|
+
"version": "3.2.15",
|
|
6
|
+
"packageManager": "pnpm@10.28.1",
|
|
6
7
|
"engines": {
|
|
7
8
|
"node": "24.12.0",
|
|
8
9
|
"pnpm": "10.28.1"
|
|
@@ -43,6 +44,12 @@
|
|
|
43
44
|
"type": "git",
|
|
44
45
|
"url": "https://gitlab.com/gitlab-com/marketing/digital-experience/slippers-ui.git"
|
|
45
46
|
},
|
|
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
|
+
},
|
|
46
53
|
"peerDependencies": {
|
|
47
54
|
"vue": "^3.5.27"
|
|
48
55
|
},
|
|
@@ -59,10 +66,5 @@
|
|
|
59
66
|
"typescript": "^5.9.3",
|
|
60
67
|
"vite": "^7.3.1",
|
|
61
68
|
"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"
|
|
67
69
|
}
|
|
68
|
-
}
|
|
70
|
+
}
|