@mekari/pixel3-date-picker 0.1.6-dev.0 → 0.1.6-dev.1
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/calendar-panel.d.mts +1 -0
- package/dist/calendar-panel.d.ts +1 -0
- package/dist/calendar-panel.mjs +5 -5
- package/dist/{chunk-I5U3YP2I.mjs → chunk-K4TP3SYJ.mjs} +3 -3
- package/dist/{chunk-P7JOEQIL.mjs → chunk-PJ5NBVPN.mjs} +2 -2
- package/dist/chunk-R7OV3NVO.mjs +0 -0
- package/dist/components/calendar/index.mjs +1 -1
- package/dist/components/calendar/table-date.mjs +1 -1
- package/dist/components/calendar/table-month.mjs +1 -1
- package/dist/components/calendar/table-year.mjs +1 -1
- package/dist/components/parts/index.mjs +3 -3
- package/dist/composables/useCalendar.d.mts +1 -0
- package/dist/composables/useCalendar.d.ts +1 -0
- package/dist/composables/useCalendarRange.d.mts +1 -0
- package/dist/composables/useCalendarRange.d.ts +1 -0
- package/dist/composables/useTime.d.mts +1 -0
- package/dist/composables/useTime.d.ts +1 -0
- package/dist/date-picker.d.mts +5 -319
- package/dist/date-picker.d.ts +5 -319
- package/dist/date-picker.js +2 -2
- package/dist/date-picker.mjs +8 -8
- package/dist/index.d.mts +320 -4
- package/dist/index.d.ts +320 -4
- package/dist/index.js +2 -2
- package/dist/index.mjs +9 -8
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- package/dist/modules/date-picker.context.d.mts +1 -0
- package/dist/modules/date-picker.context.d.ts +1 -0
- package/dist/modules/date-picker.hooks.d.mts +1 -0
- package/dist/modules/date-picker.hooks.d.ts +1 -0
- package/dist/modules/date-picker.hooks.js +2 -2
- package/dist/modules/date-picker.hooks.mjs +1 -1
- package/dist/modules/date-picker.props.d.mts +2 -1
- package/dist/modules/date-picker.props.d.ts +2 -1
- package/dist/modules/date-picker.types.d.mts +3 -0
- package/dist/modules/date-picker.types.d.ts +3 -0
- package/dist/modules/date-picker.types.js +18 -0
- package/dist/modules/date-picker.types.mjs +1 -0
- package/dist/time-panel.mjs +3 -3
- package/package.json +10 -9
- package/dist/{chunk-ARDAXR6E.mjs → chunk-73ITB7M5.mjs} +3 -3
- package/dist/{chunk-MO5D3TCF.mjs → chunk-AMVBN624.mjs} +3 -3
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@mekari/pixel3-date-picker",
|
|
3
3
|
"description": "Date Picker component for mekari pixel 3",
|
|
4
4
|
"author": "Dimas Raka Septiawan <dimas.raka@mekari.com>",
|
|
5
|
-
"version": "0.1.6-dev.
|
|
5
|
+
"version": "0.1.6-dev.1",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"files": [
|
|
@@ -11,13 +11,13 @@
|
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"date-fns": "^3.3.1",
|
|
13
13
|
"date-format-parse": "^0.2.7",
|
|
14
|
-
"@mekari/pixel3-form-control": "0.0.16-dev.
|
|
15
|
-
"@mekari/pixel3-
|
|
16
|
-
"@mekari/pixel3-
|
|
17
|
-
"@mekari/pixel3-
|
|
18
|
-
"@mekari/pixel3-icon": "0.0.17-dev.
|
|
19
|
-
"@mekari/pixel3-styled-system": "0.1.2-dev.
|
|
20
|
-
"@mekari/pixel3-utils": "0.0.7-dev.
|
|
14
|
+
"@mekari/pixel3-form-control": "0.0.16-dev.1",
|
|
15
|
+
"@mekari/pixel3-input": "0.0.17-dev.1",
|
|
16
|
+
"@mekari/pixel3-button": "0.0.17-dev.1",
|
|
17
|
+
"@mekari/pixel3-popover": "0.0.17-dev.1",
|
|
18
|
+
"@mekari/pixel3-icon": "0.0.17-dev.1",
|
|
19
|
+
"@mekari/pixel3-styled-system": "0.1.2-dev.1",
|
|
20
|
+
"@mekari/pixel3-utils": "0.0.7-dev.1"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"vue": "^3.4.9"
|
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
"build:external": "tsup src/index.tsx --external",
|
|
46
46
|
"types:check": "tsc --noEmit",
|
|
47
47
|
"replace-config": "clean-package",
|
|
48
|
-
"restore-config": "clean-package restore"
|
|
48
|
+
"restore-config": "clean-package restore",
|
|
49
|
+
"types:vue": "vue-tsc --noEmit"
|
|
49
50
|
}
|
|
50
51
|
}
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
getLocale
|
|
3
|
-
} from "./chunk-7CLF67SP.mjs";
|
|
4
1
|
import {
|
|
5
2
|
TableDate
|
|
6
3
|
} from "./chunk-64EO4HV7.mjs";
|
|
@@ -10,6 +7,9 @@ import {
|
|
|
10
7
|
import {
|
|
11
8
|
TableYear
|
|
12
9
|
} from "./chunk-O43S64IA.mjs";
|
|
10
|
+
import {
|
|
11
|
+
getLocale
|
|
12
|
+
} from "./chunk-7CLF67SP.mjs";
|
|
13
13
|
import {
|
|
14
14
|
calendarPanelProps,
|
|
15
15
|
calendarPanelRangeProps
|
|
@@ -2,12 +2,12 @@ import {
|
|
|
2
2
|
getScrollParent,
|
|
3
3
|
scrollTo
|
|
4
4
|
} from "./chunk-OYJNIILC.mjs";
|
|
5
|
-
import {
|
|
6
|
-
timePanelProps
|
|
7
|
-
} from "./chunk-5VRVDIXN.mjs";
|
|
8
5
|
import {
|
|
9
6
|
TimeItem
|
|
10
7
|
} from "./chunk-KTYQJMW4.mjs";
|
|
8
|
+
import {
|
|
9
|
+
timePanelProps
|
|
10
|
+
} from "./chunk-5VRVDIXN.mjs";
|
|
11
11
|
import {
|
|
12
12
|
useTime
|
|
13
13
|
} from "./chunk-IRNTTSB7.mjs";
|