indicator-ui 0.0.269 → 0.0.271

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.
@@ -8,6 +8,7 @@
8
8
  @mixin checkbox-mark-base() {
9
9
  width: 20px;
10
10
  height: 20px;
11
+ flex: none;
11
12
 
12
13
  background-color: var(--base-white);
13
14
  border: 1px solid var(--gray-300);
@@ -1,16 +1,4 @@
1
1
  import React from "react";
2
- export type CheckboxMarkClassNameType = {
3
- checkboxMark?: string;
4
- indeterminate?: string;
5
- checked?: string;
6
- checkbox?: string;
7
- radio?: string;
8
- correct?: string;
9
- incorrect?: string;
10
- error?: string;
11
- disabled?: string;
12
- hover?: string;
13
- };
14
2
  export type CheckboxMarkTypeType = 'checkbox' | 'radio';
15
3
  export type CheckboxMarkRelationType = false | 'correct' | 'incorrect';
16
4
  export type CheckboxMarkIndeterminateType = boolean | React.ReactNode;
@@ -39,5 +27,4 @@ export type CheckboxMarkPropsType = {
39
27
  * */
40
28
  additionStyle?: string | string[];
41
29
  onClick?: React.MouseEventHandler<HTMLElement>;
42
- className?: CheckboxMarkClassNameType;
43
30
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "indicator-ui",
3
- "version": "0.0.269",
3
+ "version": "0.0.271",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/types/src/index.d.ts",
6
6
  "style": "dist/index.css",