mario-core 2.9.67-beta → 2.9.68-beta

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 @@
1
+ export declare const initAmplitude: () => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mario-core",
3
- "version": "2.9.67-beta",
3
+ "version": "2.9.68-beta",
4
4
  "description": "Contains core components && functions for Mario project",
5
5
  "author": "brss",
6
6
  "license": "MIT",
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- declare const CategorySelector: ({ value, ...rest }: any) => JSX.Element;
3
- export default CategorySelector;
@@ -1,10 +0,0 @@
1
- export interface CategoryOption {
2
- id: number;
3
- name: string;
4
- level?: number;
5
- value: number;
6
- label: string;
7
- parentCategoryId?: number;
8
- numberOfchidren?: number;
9
- isDisabled?: boolean;
10
- }
@@ -1,5 +0,0 @@
1
- import { CategoryOption } from "../constants/constant";
2
- declare const useCategorySelector: () => {
3
- categories: CategoryOption[];
4
- };
5
- export default useCategorySelector;