stalefish 7.0.4 → 7.1.0
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/components/dateTimePicker.mjs +2 -2
- package/components/panel.mjs +5 -5
- package/components/selectbox.mjs +1 -1
- package/components/toast.mjs +1 -1
- package/components/uploader.mjs +1 -1
- package/index.mjs +21 -21
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { html, css, formField, fieldIsTouched, Component, LRU } from 'halfcab'
|
|
2
2
|
import flatpickr from 'flatpickr'
|
|
3
|
-
import calendarIcon from './icons/calendarIcon'
|
|
4
|
-
import timeIcon from './icons/timeIcon'
|
|
3
|
+
import calendarIcon from './icons/calendarIcon.mjs'
|
|
4
|
+
import timeIcon from './icons/timeIcon.mjs'
|
|
5
5
|
import clone from 'fast-clone'
|
|
6
6
|
import * as deepDiff from 'deep-object-diff'
|
|
7
7
|
|
package/components/panel.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { html, css, Component, LRU } from 'halfcab'
|
|
2
|
-
import close from './icons/close'
|
|
3
|
-
import up from './icons/up'
|
|
4
|
-
import down from './icons/down'
|
|
5
|
-
import moreVertical from './icons/moreVertical'
|
|
6
|
-
import dropdown from './dropdown'
|
|
2
|
+
import close from './icons/close.mjs'
|
|
3
|
+
import up from './icons/up.mjs'
|
|
4
|
+
import down from './icons/down.mjs'
|
|
5
|
+
import moreVertical from './icons/moreVertical.mjs'
|
|
6
|
+
import dropdown from './dropdown.mjs'
|
|
7
7
|
import * as deepDiff from 'deep-object-diff'
|
|
8
8
|
import clone from 'fast-clone'
|
|
9
9
|
|
package/components/selectbox.mjs
CHANGED
package/components/toast.mjs
CHANGED
package/components/uploader.mjs
CHANGED
|
@@ -2,7 +2,7 @@ import { html, css, fieldIsTouched, Component, LRU } from 'halfcab'
|
|
|
2
2
|
import raw from 'nanohtml/raw'
|
|
3
3
|
import * as deepDiff from 'deep-object-diff'
|
|
4
4
|
import clone from 'fast-clone'
|
|
5
|
-
import uploadIcon from './icons/upload'
|
|
5
|
+
import uploadIcon from './icons/upload.mjs'
|
|
6
6
|
|
|
7
7
|
let cache = new LRU(300)
|
|
8
8
|
|
package/index.mjs
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
import textfield from './components/textfield'
|
|
2
|
-
import button from './components/button'
|
|
3
|
-
import toast from './components/toast'
|
|
4
|
-
import dropdown from './components/dropdown'
|
|
5
|
-
import uploader from './components/uploader'
|
|
6
|
-
import selectbox from './components/selectbox'
|
|
7
|
-
import checkbox from './components/checkbox'
|
|
8
|
-
import textarea from './components/textarea'
|
|
9
|
-
import panel from './components/panel'
|
|
10
|
-
import loader from './components/loader'
|
|
11
|
-
import toolbar from './components/toolbar'
|
|
12
|
-
import fab from './components/fab'
|
|
13
|
-
import table from './components/table'
|
|
14
|
-
import dateTimePicker from './components/dateTimePicker'
|
|
15
|
-
import moreVertical from './components/icons/moreVertical'
|
|
16
|
-
import close from './components/icons/close'
|
|
17
|
-
import up from './components/icons/up'
|
|
18
|
-
import down from './components/icons/down'
|
|
19
|
-
import calendarIcon from './components/icons/calendarIcon'
|
|
20
|
-
import timeIcon from './components/icons/timeIcon'
|
|
21
|
-
import solidDown from './components/icons/solidDown'
|
|
1
|
+
import textfield from './components/textfield.mjs'
|
|
2
|
+
import button from './components/button.mjs'
|
|
3
|
+
import toast from './components/toast.mjs'
|
|
4
|
+
import dropdown from './components/dropdown.mjs'
|
|
5
|
+
import uploader from './components/uploader.mjs'
|
|
6
|
+
import selectbox from './components/selectbox.mjs'
|
|
7
|
+
import checkbox from './components/checkbox.mjs'
|
|
8
|
+
import textarea from './components/textarea.mjs'
|
|
9
|
+
import panel from './components/panel.mjs'
|
|
10
|
+
import loader from './components/loader.mjs'
|
|
11
|
+
import toolbar from './components/toolbar.mjs'
|
|
12
|
+
import fab from './components/fab.mjs'
|
|
13
|
+
import table from './components/table.mjs'
|
|
14
|
+
import dateTimePicker from './components/dateTimePicker.mjs'
|
|
15
|
+
import moreVertical from './components/icons/moreVertical.mjs'
|
|
16
|
+
import close from './components/icons/close.mjs'
|
|
17
|
+
import up from './components/icons/up.mjs'
|
|
18
|
+
import down from './components/icons/down.mjs'
|
|
19
|
+
import calendarIcon from './components/icons/calendarIcon.mjs'
|
|
20
|
+
import timeIcon from './components/icons/timeIcon.mjs'
|
|
21
|
+
import solidDown from './components/icons/solidDown.mjs'
|
|
22
22
|
|
|
23
23
|
export {
|
|
24
24
|
button,
|