@bigbinary/neeto-molecules 1.1.42 → 1.1.43
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/Builder.js +1 -0
- package/dist/Builder.js.map +1 -1
- package/dist/CustomDomain.js +7 -2
- package/dist/CustomDomain.js.map +1 -1
- package/dist/CustomDomainDashboard.js +4 -1
- package/dist/CustomDomainDashboard.js.map +1 -1
- package/dist/IntegrationCard.js +1 -0
- package/dist/IntegrationCard.js.map +1 -1
- package/dist/KeyboardShortcuts.js +2 -0
- package/dist/KeyboardShortcuts.js.map +1 -1
- package/dist/MoreDropdown.js +1 -0
- package/dist/MoreDropdown.js.map +1 -1
- package/dist/NavigationHeader.js +1 -0
- package/dist/NavigationHeader.js.map +1 -1
- package/dist/Rename.js +1 -0
- package/dist/Rename.js.map +1 -1
- package/dist/Schedule.js +1 -0
- package/dist/Schedule.js.map +1 -1
- package/dist/Settings.js +1 -0
- package/dist/Settings.js.map +1 -1
- package/dist/ShareViaLink.js +1 -0
- package/dist/ShareViaLink.js.map +1 -1
- package/dist/Taxonomy.js +1 -0
- package/dist/Taxonomy.js.map +1 -1
- package/dist/ThemeSidebar.js +1 -0
- package/dist/ThemeSidebar.js.map +1 -1
- package/package.json +2 -2
- package/types/Taxonomy.d.ts +41 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-molecules",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.43",
|
|
4
4
|
"description": "A package of reusable molecular components for neeto products.",
|
|
5
5
|
"repository": "git@github.com:bigbinary/neeto-molecules.git",
|
|
6
6
|
"author": "Amaljith K <amaljith.k@bigbinary.com>",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"@bigbinary/eslint-plugin-neeto": "^1.1.14",
|
|
66
66
|
"@bigbinary/neeto-audit-frontend": "2.0.1",
|
|
67
67
|
"@bigbinary/neeto-cist": "^1.0.2",
|
|
68
|
-
"@bigbinary/neeto-commons-frontend": "^2.1.
|
|
68
|
+
"@bigbinary/neeto-commons-frontend": "^2.1.35",
|
|
69
69
|
"@bigbinary/neeto-editor": "1.28.25",
|
|
70
70
|
"@bigbinary/neeto-filters-frontend": "^2.11.15",
|
|
71
71
|
"@bigbinary/neeto-icons": "^1.14.0",
|
package/types/Taxonomy.d.ts
CHANGED
|
@@ -1,10 +1,48 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
* The Taxonomy component is used to manage taxonomies in a project.
|
|
5
|
+
*
|
|
6
|
+
* 
|
|
7
|
+
*
|
|
8
|
+
* @example
|
|
9
|
+
*
|
|
10
|
+
* import React from "react";
|
|
11
|
+
* import Settings from "@bigbinary/neeto-molecules/Settings";
|
|
12
|
+
* import Taxonomy from "@bigbinary/neeto-molecules/Taxonomy";
|
|
13
|
+
*
|
|
14
|
+
* const Component = () => (
|
|
15
|
+
* <Settings
|
|
16
|
+
* categories={[
|
|
17
|
+
* {
|
|
18
|
+
* id: "general-settings",
|
|
19
|
+
* label: "General Settings",
|
|
20
|
+
* items: [
|
|
21
|
+
* {
|
|
22
|
+
* label: "Taxonomy",
|
|
23
|
+
* description: "Manage default labels for entities",
|
|
24
|
+
* icon: Tags,
|
|
25
|
+
* path: "/settings/general/taxonomy",
|
|
26
|
+
* component: () => (
|
|
27
|
+
* <Taxonomy
|
|
28
|
+
* breadcrumbs={[
|
|
29
|
+
* { text: "Settings", link: "/settings/general" },
|
|
30
|
+
* { text: "Taxonomy" },
|
|
31
|
+
* ]}
|
|
32
|
+
* />
|
|
33
|
+
* ),
|
|
34
|
+
* },
|
|
35
|
+
* ],
|
|
36
|
+
* },
|
|
37
|
+
* ]}
|
|
38
|
+
* />
|
|
39
|
+
* );
|
|
40
|
+
* @endexample
|
|
41
|
+
*/
|
|
3
42
|
const Taxonomy: React.FC<{
|
|
4
43
|
breadcrumbs: {
|
|
5
44
|
text: string;
|
|
6
45
|
link: string;
|
|
7
46
|
}[];
|
|
8
47
|
}>;
|
|
9
|
-
|
|
10
|
-
export default Taxonomy;
|
|
48
|
+
export default Taxonomy;
|