@blocklet/labels 1.6.206 → 1.6.208
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/index.es.js +317 -305
- package/dist/index.umd.js +315 -302
- package/dist/label2/github-label-picker.d.ts +2 -2
- package/dist/label2/recent.d.ts +5 -0
- package/package.json +3 -3
|
@@ -3,7 +3,6 @@ import { type BoxProps } from '@mui/material';
|
|
|
3
3
|
export interface GithubLabelPickerProps {
|
|
4
4
|
value: string[];
|
|
5
5
|
onChange: (value: string[]) => void;
|
|
6
|
-
title?: string;
|
|
7
6
|
noLabelsText?: string;
|
|
8
7
|
buttonSx?: BoxProps['sx'];
|
|
9
8
|
actions?: React.ReactNode;
|
|
@@ -13,5 +12,6 @@ export interface GithubLabelPickerProps {
|
|
|
13
12
|
excludes?: string[];
|
|
14
13
|
disabled?: boolean;
|
|
15
14
|
enableAccessControl?: boolean;
|
|
15
|
+
title?: string;
|
|
16
16
|
}
|
|
17
|
-
export declare function GithubLabelPicker({ value, onChange,
|
|
17
|
+
export declare function GithubLabelPicker({ value, onChange, noLabelsText, buttonSx, actions, trigger, multiple, updateImmediately, excludes, disabled, enableAccessControl, }: GithubLabelPickerProps): import("react/jsx-runtime").JSX.Element | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blocklet/labels",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.208",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist"
|
|
6
6
|
],
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"access": "public"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@blocklet/translation-input": "1.6.
|
|
31
|
+
"@blocklet/translation-input": "1.6.208",
|
|
32
32
|
"@emotion/css": "^11.10.5",
|
|
33
33
|
"@emotion/react": "^11.10.5",
|
|
34
34
|
"@emotion/styled": "^11.10.5",
|
|
@@ -83,5 +83,5 @@
|
|
|
83
83
|
"resolutions": {
|
|
84
84
|
"react": "^18.2.0"
|
|
85
85
|
},
|
|
86
|
-
"gitHead": "
|
|
86
|
+
"gitHead": "05d04668db0b3f79afef85543ae0e779ad4afe65"
|
|
87
87
|
}
|