@mekari/pixel3-color-picker 0.2.0-dev.0 → 0.2.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.
@@ -128,21 +128,21 @@ declare const MpColorPicker: vue.DefineComponent<{
128
128
  }>> & {
129
129
  onChange?: ((...args: any[]) => any) | undefined;
130
130
  }, {
131
- value: string;
132
- title: string;
133
131
  id: string;
132
+ title: string;
133
+ value: string;
134
134
  placeholder: string;
135
- placement: Placement;
136
- usePortal: boolean;
137
- isDisabled: boolean;
138
135
  variant: ColorPickerVariant;
139
- isInvalid: boolean;
136
+ placement: Placement;
140
137
  preset: string[];
141
138
  isShowPopover: boolean;
142
139
  isShowSaturation: boolean;
143
140
  isShowHue: boolean;
144
141
  isShowInput: boolean;
145
142
  isShowPreset: boolean;
143
+ usePortal: boolean;
144
+ isDisabled: boolean;
145
+ isInvalid: boolean;
146
146
  }, {}>;
147
147
 
148
148
  export { MpColorPicker };
@@ -128,21 +128,21 @@ declare const MpColorPicker: vue.DefineComponent<{
128
128
  }>> & {
129
129
  onChange?: ((...args: any[]) => any) | undefined;
130
130
  }, {
131
- value: string;
132
- title: string;
133
131
  id: string;
132
+ title: string;
133
+ value: string;
134
134
  placeholder: string;
135
- placement: Placement;
136
- usePortal: boolean;
137
- isDisabled: boolean;
138
135
  variant: ColorPickerVariant;
139
- isInvalid: boolean;
136
+ placement: Placement;
140
137
  preset: string[];
141
138
  isShowPopover: boolean;
142
139
  isShowSaturation: boolean;
143
140
  isShowHue: boolean;
144
141
  isShowInput: boolean;
145
142
  isShowPreset: boolean;
143
+ usePortal: boolean;
144
+ isDisabled: boolean;
145
+ isInvalid: boolean;
146
146
  }, {}>;
147
147
 
148
148
  export { MpColorPicker };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mekari/pixel3-color-picker",
3
3
  "description": "Color picker component for mekari pixel 3",
4
- "version": "0.2.0-dev.0",
4
+ "version": "0.2.0",
5
5
  "main": "dist/index.js",
6
6
  "license": "MIT",
7
7
  "files": [
@@ -11,14 +11,14 @@
11
11
  "clamp": "^1.0.1",
12
12
  "lodash.throttle": "^4.0.0",
13
13
  "tinycolor2": "^1.1.2",
14
- "@mekari/pixel3-button": "0.2.0",
14
+ "@mekari/pixel3-button": "0.2.1",
15
+ "@mekari/pixel3-icon": "0.1.2",
16
+ "@mekari/pixel3-input": "0.0.26",
15
17
  "@mekari/pixel3-divider": "0.0.22",
16
- "@mekari/pixel3-icon": "0.1.1",
17
- "@mekari/pixel3-input": "0.0.25",
18
+ "@mekari/pixel3-popover": "0.0.26",
18
19
  "@mekari/pixel3-styled-system": "0.2.0",
19
- "@mekari/pixel3-popover": "0.0.25",
20
- "@mekari/pixel3-utils": "0.1.0",
21
- "@mekari/pixel3-text": "0.0.22"
20
+ "@mekari/pixel3-text": "0.0.22",
21
+ "@mekari/pixel3-utils": "0.1.0"
22
22
  },
23
23
  "peerDependencies": {
24
24
  "vue": "^3.4.9"