@pocketprep/ui-kit 3.4.41 → 3.4.43
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/@pocketprep/ui-kit.js +3475 -3417
- package/dist/@pocketprep/ui-kit.js.map +1 -1
- package/dist/@pocketprep/ui-kit.umd.cjs +4 -4
- package/dist/@pocketprep/ui-kit.umd.cjs.map +1 -1
- package/lib/components/Icons/Icon.vue +3 -0
- package/lib/components/Icons/IconLink.vue +20 -0
- package/lib/components/Icons/icon.d.ts +2 -1
- package/lib/utils.ts +1 -1
- package/package.json +1 -1
|
@@ -73,6 +73,7 @@
|
|
|
73
73
|
<IconChat v-else-if="type === 'chat'" :title="title" />
|
|
74
74
|
<IconPreview v-else-if="type === 'preview'" :title="title" />
|
|
75
75
|
<IconPresent v-else-if="type === 'present'" :title="title" />
|
|
76
|
+
<IconLink v-else-if="type === 'link'" :title="title" />
|
|
76
77
|
</template>
|
|
77
78
|
|
|
78
79
|
<script lang="ts">
|
|
@@ -144,6 +145,7 @@ import IconPercent from './IconPercent.vue'
|
|
|
144
145
|
import IconPerson from './IconPerson.vue'
|
|
145
146
|
import IconTimer from './IconTimer.vue'
|
|
146
147
|
import IconPresent from './IconPresent.vue'
|
|
148
|
+
import IconLink from './IconLink.vue'
|
|
147
149
|
|
|
148
150
|
@Component({
|
|
149
151
|
components: {
|
|
@@ -213,6 +215,7 @@ import IconPresent from './IconPresent.vue'
|
|
|
213
215
|
IconPreview,
|
|
214
216
|
IconTimer,
|
|
215
217
|
IconPresent,
|
|
218
|
+
IconLink,
|
|
216
219
|
},
|
|
217
220
|
})
|
|
218
221
|
export default class Icon extends Vue {
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<!-- eslint-disable -->
|
|
3
|
+
<svg width="22" height="21" viewBox="0 0 22 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
4
|
+
<title>{{ title }}</title>
|
|
5
|
+
<path d="M9.54561 14.75H8.99561H4.5C2.567 14.75 1 13.183 1 11.25V10.25C1 8.317 2.567 6.75 4.5 6.75H6.0145" stroke="currentColor" stroke-width="1.75" stroke-linecap="round"/>
|
|
6
|
+
<path d="M13.355 10.1338C13.3701 10.314 13.3778 10.5053 13.3778 10.7095C13.3778 11.7127 13.1705 14.7496 9.5 14.7496" stroke="currentColor" stroke-width="1.75" stroke-linecap="round"/>
|
|
7
|
+
<path d="M12.6868 6.75H17.6294C19.5624 6.75 21.1294 8.317 21.1294 10.25V11.25C21.1294 13.183 19.5624 14.75 17.6294 14.75H16.0147" stroke="currentColor" stroke-width="1.75" stroke-linecap="round"/>
|
|
8
|
+
<path d="M8.78042 11.4502C8.76023 11.2457 8.74996 11.0266 8.74996 10.7903C8.74996 9.78704 8.95724 6.75021 12.6278 6.75021" stroke="currentColor" stroke-width="1.75" stroke-linecap="round"/>
|
|
9
|
+
</svg>
|
|
10
|
+
<!-- eslint-enable -->
|
|
11
|
+
</template>
|
|
12
|
+
|
|
13
|
+
<script lang="ts">
|
|
14
|
+
import { Vue, Component, Prop } from 'vue-facing-decorator'
|
|
15
|
+
|
|
16
|
+
@Component
|
|
17
|
+
export default class IconLink extends Vue {
|
|
18
|
+
@Prop() title!: string
|
|
19
|
+
}
|
|
20
|
+
</script>
|
package/lib/utils.ts
CHANGED