pimelon-ui 0.1.121 → 0.1.122

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.
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div
3
3
  v-show="show"
4
- class="fixed z-20 right-0 w-80 h-[calc(100%_-_80px)] text-ink-gray-9 m-5 mt-[62px] p-3 flex gap-2 flex-col justify-between rounded-lg bg-surface-modal shadow-2xl"
4
+ class="fixed z-50 right-0 w-80 h-[calc(100%_-_80px)] text-ink-gray-9 m-5 mt-[62px] p-3 flex gap-2 flex-col justify-between rounded-lg bg-surface-modal shadow-2xl"
5
5
  :class="{ 'top-[calc(100%_-_120px)] border': minimize }"
6
6
  @click.stop
7
7
  >
@@ -33,6 +33,7 @@
33
33
  :afterSkipAll="afterSkipAll"
34
34
  :afterReset="afterReset"
35
35
  :afterResetAll="afterResetAll"
36
+ :appName="appName"
36
37
  />
37
38
  <HelpCenter
38
39
  v-else-if="showHelpCenter"
@@ -64,6 +65,7 @@ import { useOnboarding } from '../Onboarding/onboarding'
64
65
  import { showHelpCenter } from '../HelpCenter/helpCenter'
65
66
  import { minimize } from '../Help/help'
66
67
  import { onMounted, computed } from 'vue'
68
+ import FeatherIcon from '../../src/components/FeatherIcon.vue'
67
69
 
68
70
  const props = defineProps({
69
71
  appName: {
@@ -64,6 +64,8 @@
64
64
  </template>
65
65
  <script setup>
66
66
  import { useOnboarding } from './onboarding'
67
+ import Button from '../../src/components/Button/Button.vue'
68
+ import Badge from '../../src/components/Badge.vue'
67
69
 
68
70
  const props = defineProps({
69
71
  appName: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pimelon-ui",
3
- "version": "0.1.121",
3
+ "version": "0.1.122",
4
4
  "description": "A set of components and utilities for rapid UI development",
5
5
  "main": "./src/index.js",
6
6
  "scripts": {