ngx-vector-components 5.66.0 → 5.68.0
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/CHANGELOG.md +13 -0
- package/assets/styles/_primeng-custom-theme.scss +7 -1
- package/esm2022/lib/components/crud-history/crud-history.component.mjs +7 -6
- package/esm2022/lib/components/crud-history/crud-history.module.mjs +5 -4
- package/esm2022/lib/components/fields/button/button.component.mjs +1 -1
- package/esm2022/lib/components/fields/calendar-field/calendar-field.component.mjs +1 -1
- package/esm2022/lib/components/fields/checkbox-field/checkbox-field.component.mjs +1 -1
- package/esm2022/lib/components/fields/currency-field/currency-field.component.mjs +1 -1
- package/esm2022/lib/components/fields/dropdown-field/dropdown-field.component.mjs +1 -1
- package/esm2022/lib/components/fields/input-number-field/input-number-field.component.mjs +1 -1
- package/esm2022/lib/components/fields/input-otp/input-otp.component.mjs +1 -1
- package/esm2022/lib/components/fields/input-switch-field/input-switch-field.component.mjs +1 -1
- package/esm2022/lib/components/fields/multiselect-field/multiselect-field.component.mjs +1 -1
- package/esm2022/lib/components/fields/percentage-field/percentage-field.component.mjs +1 -1
- package/esm2022/lib/components/fields/radio-button-field/radio-button-field.component.mjs +1 -1
- package/esm2022/lib/components/fields/range-value/range-value.component.mjs +1 -1
- package/esm2022/lib/components/fields/select-button-field/select-button-field.component.mjs +1 -1
- package/esm2022/lib/components/fields/text-field/text-field.component.mjs +1 -1
- package/esm2022/lib/components/fields/textarea-field/textarea-field.component.mjs +1 -1
- package/esm2022/lib/models/crud-history.model.mjs +1 -1
- package/esm2022/lib/models/profile.model.mjs +2 -1
- package/fesm2022/ngx-vector-components.mjs +45 -44
- package/fesm2022/ngx-vector-components.mjs.map +1 -1
- package/lib/components/crud-history/crud-history.module.d.ts +2 -1
- package/lib/models/crud-history.model.d.ts +2 -0
- package/lib/models/profile.model.d.ts +2 -1
- package/package.json +1 -1
|
@@ -3,8 +3,9 @@ import * as i1 from "./crud-history.component";
|
|
|
3
3
|
import * as i2 from "../../shared/shared.module";
|
|
4
4
|
import * as i3 from "../badge/badge.module";
|
|
5
5
|
import * as i4 from "primeng/accordion";
|
|
6
|
+
import * as i5 from "primeng/tooltip";
|
|
6
7
|
export declare class CrudHistoryModule {
|
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<CrudHistoryModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CrudHistoryModule, [typeof i1.CrudHistoryComponent], [typeof i2.SharedModule, typeof i3.BadgeModule, typeof i4.AccordionModule], [typeof i1.CrudHistoryComponent]>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CrudHistoryModule, [typeof i1.CrudHistoryComponent], [typeof i2.SharedModule, typeof i3.BadgeModule, typeof i4.AccordionModule, typeof i5.TooltipModule], [typeof i1.CrudHistoryComponent]>;
|
|
9
10
|
static ɵinj: i0.ɵɵInjectorDeclaration<CrudHistoryModule>;
|
|
10
11
|
}
|
|
@@ -486,5 +486,6 @@ export declare enum ProfileModuleActionType {
|
|
|
486
486
|
EDIT_PROFILEUSER = "Edit ProfileUser",
|
|
487
487
|
CREATE_PROFILEUSER = "Create ProfileUser",
|
|
488
488
|
ACTIVATE_PROFILEUSER = "Activate ProfileUser",
|
|
489
|
-
DEACTIVATE_PROFILEUSER = "Deactivate ProfileUser"
|
|
489
|
+
DEACTIVATE_PROFILEUSER = "Deactivate ProfileUser",
|
|
490
|
+
ADD_SUPPLY_MANUAL = "Add Supply Manual"
|
|
490
491
|
}
|