raise-common-lib 0.0.58 → 0.0.61
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/bundles/raise-common-lib.umd.js +150 -6
- package/bundles/raise-common-lib.umd.js.map +1 -1
- package/bundles/raise-common-lib.umd.min.js +2 -2
- package/bundles/raise-common-lib.umd.min.js.map +1 -1
- package/esm2015/lib/common-grid/grid-action/grid-action-item/grid-action-item.component.js +52 -0
- package/esm2015/lib/common-grid/grid-action/grid-action.component.js +25 -0
- package/esm2015/lib/form/toolbar-item/index.component.js +46 -0
- package/esm2015/lib/layout/grid-box/index.component.js +1 -1
- package/esm2015/lib/layout/page-list/index.component.js +1 -1
- package/esm2015/lib/raise-common-lib.module.js +16 -1
- package/esm2015/public-api.js +4 -1
- package/esm2015/raise-common-lib.js +2 -2
- package/esm5/lib/common-grid/grid-action/grid-action-item/grid-action-item.component.js +58 -0
- package/esm5/lib/common-grid/grid-action/grid-action.component.js +27 -0
- package/esm5/lib/form/toolbar-item/index.component.js +52 -0
- package/esm5/lib/layout/grid-box/index.component.js +1 -1
- package/esm5/lib/layout/page-list/index.component.js +1 -1
- package/esm5/lib/raise-common-lib.module.js +16 -1
- package/esm5/public-api.js +4 -1
- package/esm5/raise-common-lib.js +2 -2
- package/fesm2015/raise-common-lib.js +136 -4
- package/fesm2015/raise-common-lib.js.map +1 -1
- package/fesm5/raise-common-lib.js +147 -4
- package/fesm5/raise-common-lib.js.map +1 -1
- package/lib/common-grid/grid-action/grid-action-item/grid-action-item.component.d.ts +7 -0
- package/lib/common-grid/grid-action/grid-action.component.d.ts +11 -0
- package/lib/form/toolbar-item/index.component.d.ts +7 -0
- package/package.json +1 -1
- package/public-api.d.ts +3 -0
- package/raise-common-lib.metadata.json +1 -1
- package/src/assets/img/drawer-back.svg +4 -4
- package/src/assets/img/grid-action-copy.svg +6 -0
- package/src/assets/img/grid-action-delete.svg +14 -0
- package/src/assets/img/grid-action-detail.svg +7 -0
- package/src/assets/img/grid-action-download.svg +7 -0
- package/src/assets/img/grid-action-edit.svg +4 -0
- package/src/assets/img/grid-action-export.svg +12 -0
- package/src/assets/img/grid-action-move.svg +8 -0
- package/src/assets/img/grid-action-note.svg +10 -0
- package/src/assets/img/grid-action-send.svg +5 -0
- package/src/assets/img/grid-action-settle.svg +13 -0
- package/src/assets/img/grid-pager-arrow-left.svg +3 -0
- package/src/assets/img/grid-pager-arrows-left.svg +4 -0
- package/src/assets/img/more.svg +5 -0
- package/src/assets/img/table-column-menu.svg +5 -0
- package/src/assets/img/table-sort-arrow.svg +6 -0
- package/src/assets/img/toolbar-action-add.svg +4 -0
- package/src/assets/style/reset/grid.scss +466 -125
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare type GridActionItem = {
|
|
2
|
+
textKey: string;
|
|
3
|
+
image?: string;
|
|
4
|
+
disabled?: (data: any) => boolean;
|
|
5
|
+
show?: (data: any) => boolean;
|
|
6
|
+
onClick: (data: any) => void;
|
|
7
|
+
};
|
|
8
|
+
export declare class GridActionComponent {
|
|
9
|
+
translation: Record<string, string>;
|
|
10
|
+
constructor();
|
|
11
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export * from "./lib/common-grid/index.component";
|
|
2
|
+
export * from "./lib/common-grid/grid-action/grid-action.component";
|
|
3
|
+
export * from "./lib/common-grid/grid-action/grid-action-item/grid-action-item.component";
|
|
2
4
|
export * from "./lib/float-box/index.component";
|
|
3
5
|
export * from "./lib/layout/page-list/index.component";
|
|
4
6
|
export * from "./lib/layout/page-tab/index.component";
|
|
@@ -15,6 +17,7 @@ export * from "./lib/form/checkbox-group/index.component";
|
|
|
15
17
|
export * from "./lib/form/switch-input/index.component";
|
|
16
18
|
export * from "./lib/form/drawer-form/drawer-form.component";
|
|
17
19
|
export * from "./lib/form/drawer-form/constants";
|
|
20
|
+
export * from "./lib/form/toolbar-item/index.component";
|
|
18
21
|
export * from "./lib/service/common-function.service";
|
|
19
22
|
export * from "./lib/service/icon-loader.service";
|
|
20
23
|
export * from "./lib/service/dialog.service";
|