math-main-components 0.0.131 → 0.0.132
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.cjs.js +0 -10
- package/dist/index.esm.js +1 -11
- package/dist/types/Manager.d.ts +3 -10
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
@@ -1040,16 +1040,6 @@ exports.S3FileCategory = void 0;
|
|
1040
1040
|
S3FileCategory["default"] = "file";
|
1041
1041
|
})(exports.S3FileCategory || (exports.S3FileCategory = {}));
|
1042
1042
|
|
1043
|
-
exports.ManagerPermission = void 0;
|
1044
|
-
(function (ManagerPermission) {
|
1045
|
-
ManagerPermission["content"] = "content";
|
1046
|
-
ManagerPermission["subsription"] = "subscription";
|
1047
|
-
ManagerPermission["manager"] = "manager";
|
1048
|
-
ManagerPermission["license"] = "license";
|
1049
|
-
ManagerPermission["file"] = "file";
|
1050
|
-
ManagerPermission["feedback"] = "feedback";
|
1051
|
-
})(exports.ManagerPermission || (exports.ManagerPermission = {}));
|
1052
|
-
|
1053
1043
|
exports.Accordeon = Accordeon;
|
1054
1044
|
exports.AuthButton = AuthButton;
|
1055
1045
|
exports.CardButton = CardButton;
|
package/dist/index.esm.js
CHANGED
@@ -1032,14 +1032,4 @@ var S3FileCategory;
|
|
1032
1032
|
S3FileCategory["default"] = "file";
|
1033
1033
|
})(S3FileCategory || (S3FileCategory = {}));
|
1034
1034
|
|
1035
|
-
|
1036
|
-
(function (ManagerPermission) {
|
1037
|
-
ManagerPermission["content"] = "content";
|
1038
|
-
ManagerPermission["subsription"] = "subscription";
|
1039
|
-
ManagerPermission["manager"] = "manager";
|
1040
|
-
ManagerPermission["license"] = "license";
|
1041
|
-
ManagerPermission["file"] = "file";
|
1042
|
-
ManagerPermission["feedback"] = "feedback";
|
1043
|
-
})(ManagerPermission || (ManagerPermission = {}));
|
1044
|
-
|
1045
|
-
export { Accordeon, AuthButton, CardButton, Checkbox, ChooseRole, ChooseRoleItem, CopyCode, CourseAnnouncementAssetType, Dialog, FormButton, FormText, ForwardButton, Gap, InputArea, InputMail, InputNames, InputNumber, InputPassword, InputPin, InputText, ManagerPermission, OptionField, OptionFieldHorizontal, PrimaryButton, ProgressBar, RadioButtons, RadioOption, RedirectButton, S3FileCategory, SearchChip, SearchChips, Searchbar, Slider, SliderCard, StepBack, SvgIcon, Table, Tabs, TextWithIcon, UsageCard };
|
1035
|
+
export { Accordeon, AuthButton, CardButton, Checkbox, ChooseRole, ChooseRoleItem, CopyCode, CourseAnnouncementAssetType, Dialog, FormButton, FormText, ForwardButton, Gap, InputArea, InputMail, InputNames, InputNumber, InputPassword, InputPin, InputText, OptionField, OptionFieldHorizontal, PrimaryButton, ProgressBar, RadioButtons, RadioOption, RedirectButton, S3FileCategory, SearchChip, SearchChips, Searchbar, Slider, SliderCard, StepBack, SvgIcon, Table, Tabs, TextWithIcon, UsageCard };
|
package/dist/types/Manager.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
export
|
1
|
+
export type Manager = {
|
2
2
|
id: string;
|
3
3
|
username: string;
|
4
4
|
firstName: string;
|
@@ -6,12 +6,5 @@ export interface Manager {
|
|
6
6
|
permissions: string[];
|
7
7
|
createdAt: Date;
|
8
8
|
updateAt: Date;
|
9
|
-
}
|
10
|
-
export
|
11
|
-
content = "content",
|
12
|
-
subsription = "subscription",
|
13
|
-
manager = "manager",
|
14
|
-
license = "license",
|
15
|
-
file = "file",
|
16
|
-
feedback = "feedback"
|
17
|
-
}
|
9
|
+
};
|
10
|
+
export type ManagerPermission = "content" | "subscription" | "manager" | "license" | "file" | "feedback";
|