strapi-plugin-navigation 3.0.8 → 3.0.9-beta.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.
@@ -0,0 +1,16 @@
1
+ /// <reference types="react" />
2
+ import { FormChangeEvent } from "src/types";
3
+ type ControllableComboboxProps = {
4
+ name: string;
5
+ onClear: () => void;
6
+ onChange: (eventOrPath: FormChangeEvent) => void;
7
+ options: {
8
+ key: string;
9
+ value: string;
10
+ label: string;
11
+ }[];
12
+ value: string | undefined;
13
+ disabled: boolean;
14
+ };
15
+ export declare const ControllableCombobox: React.FC<ControllableComboboxProps>;
16
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "strapi-plugin-navigation",
3
- "version": "3.0.8",
3
+ "version": "3.0.9-beta.1",
4
4
  "description": "Strapi - Navigation plugin",
5
5
  "strapi": {
6
6
  "name": "navigation",
@@ -143,8 +143,7 @@
143
143
  "test:unit:watch": "jest --watch",
144
144
  "test:unit:ci": "CI=true jest --ci --runInBand --verbose --coverage",
145
145
  "verify": "strapi-plugin verify",
146
- "watch": "strapi-plugin watch",
147
- "watch:link": "strapi-plugin watch:link"
146
+ "watch": "strapi-plugin watch"
148
147
  },
149
148
  "keywords": [
150
149
  "strapi",