@vuelor/picker 0.2.0 → 0.3.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.
@@ -98,6 +98,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<ColorP
98
98
  styling: "tailwindcss" | "vanillacss";
99
99
  disabled: boolean;
100
100
  defaultValue: string;
101
+ modelValue: ModelValue;
101
102
  format: Format;
102
103
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
103
104
  default?: (props: {}) => any;
package/dist/index.d.ts CHANGED
@@ -18,3 +18,4 @@ export { default as ColorPickerSliderRed } from './components/ColorPickerSliderR
18
18
  export { default as ColorPickerSliderGreen } from './components/ColorPickerSliderGreen.vue';
19
19
  export { default as ColorPickerSliderBlue } from './components/ColorPickerSliderBlue.vue';
20
20
  export { default as ColorPickerSwatch } from './components/ColorPickerSwatch.vue';
21
+ export type { ColorPickerRootProps, ColorPickerRootEmits } from './components/ColorPickerRoot.vue';
package/dist/index.js CHANGED
@@ -474,7 +474,7 @@ const [S, Pe] = pe("ColorPickerRoot"), nt = /* @__PURE__ */ V({
474
474
  styling: { default: "tailwindcss" },
475
475
  disabled: { type: Boolean, default: !1 },
476
476
  defaultValue: { default: "#B63DDAFF" },
477
- modelValue: {},
477
+ modelValue: { default: null },
478
478
  format: { default: "hexa" }
479
479
  },
480
480
  emits: ["valueCommit", "update:modelValue"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vuelor/picker",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Vue color picker, built with Reka UI and Tailwind CSS.",