frappe-ui 0.0.81 → 0.0.82

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "frappe-ui",
3
- "version": "0.0.81",
3
+ "version": "0.0.82",
4
4
  "description": "A set of components and utilities for rapid UI development",
5
5
  "main": "./src/index.js",
6
6
  "scripts": {
@@ -134,7 +134,8 @@ import {
134
134
  TransitionChild,
135
135
  TransitionRoot,
136
136
  } from '@headlessui/vue'
137
- import { Button, FeatherIcon } from 'frappe-ui'
137
+ import Button from './Button.vue'
138
+ import FeatherIcon from './FeatherIcon.vue'
138
139
 
139
140
  export default {
140
141
  name: 'Dialog',
@@ -64,7 +64,7 @@
64
64
 
65
65
  <script>
66
66
  import { Menu, MenuButton, MenuItems, MenuItem } from '@headlessui/vue'
67
- import { FeatherIcon } from 'frappe-ui'
67
+ import FeatherIcon from './FeatherIcon.vue'
68
68
 
69
69
  export default {
70
70
  name: 'NewDropdown',
@@ -79,7 +79,7 @@
79
79
  </div>
80
80
  </template>
81
81
  <script>
82
- import { Popover } from 'frappe-ui'
82
+ import Popover from '../Popover.vue'
83
83
 
84
84
  export default {
85
85
  name: 'TipTapMenu',
@@ -47,7 +47,7 @@
47
47
  </teleport>
48
48
  </template>
49
49
  <script>
50
- import { FeatherIcon } from 'frappe-ui'
50
+ import FeatherIcon from './FeatherIcon.vue'
51
51
  const positions = [
52
52
  'top-right',
53
53
  'top-center',