ps-toolkit-ui 1.6.49 → 1.6.52
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/ps-toolkit-ui.umd.js +100 -9
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/classes/enum.class.js +8 -7
- package/esm2015/lib/components/form/index/form.component.js +2 -2
- package/esm2015/lib/components/form/tag/form.tag.component.js +87 -0
- package/esm2015/lib/ps-toolkit-ui.module.js +4 -3
- package/esm2015/ps-toolkit-ui.js +2 -1
- package/fesm2015/ps-toolkit-ui.js +95 -10
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/lib/classes/enum.class.d.ts +7 -6
- package/lib/components/form/tag/form.tag.component.d.ts +14 -0
- package/package.json +1 -1
- package/ps-toolkit-ui.d.ts +1 -0
- package/ps-toolkit-ui.metadata.json +1 -1
|
@@ -60,12 +60,13 @@ export declare enum InputType {
|
|
|
60
60
|
Constant = 34,
|
|
61
61
|
Hidden = 35,
|
|
62
62
|
Table = 36,
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
63
|
+
Tag = 37,
|
|
64
|
+
CarSearch = 38,
|
|
65
|
+
Car = 39,
|
|
66
|
+
Finger = 40,
|
|
67
|
+
Color = 41,
|
|
68
|
+
Star = 42,
|
|
69
|
+
BillNumber = 43
|
|
69
70
|
}
|
|
70
71
|
export declare enum OperationEnum {
|
|
71
72
|
All = -1,
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ElementRef, EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { InputClass } from '../../../classes/form.class';
|
|
3
|
+
export declare class FormTagComponent implements OnInit {
|
|
4
|
+
inp: InputClass;
|
|
5
|
+
cValue: string;
|
|
6
|
+
changeIndex: EventEmitter<string>;
|
|
7
|
+
inputBase: ElementRef;
|
|
8
|
+
inputDiv: ElementRef;
|
|
9
|
+
inputLabel: ElementRef;
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
onFocusIn(changeIndex?: boolean): void;
|
|
12
|
+
onKeyDown(e: any): void;
|
|
13
|
+
removeTag(t: any): void;
|
|
14
|
+
}
|
package/package.json
CHANGED
package/ps-toolkit-ui.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export { ChartComponent as ɵn } from './lib/components/chart/chart.component';
|
|
|
9
9
|
export { ClockComponent as ɵm } from './lib/components/clock/clock.component';
|
|
10
10
|
export { FormHiddenComponent as ɵk } from './lib/components/form/hidden/form.hidden.component';
|
|
11
11
|
export { FormSelectItemComponent as ɵa } from './lib/components/form/select/item/form.select.item.component';
|
|
12
|
+
export { FormTagComponent as ɵp } from './lib/components/form/tag/form.tag.component';
|
|
12
13
|
export { FormTreeItemComponent as ɵf } from './lib/components/form/tree/item/form.tree.item.component';
|
|
13
14
|
export { LoginComponent as ɵi } from './lib/components/login/login.component';
|
|
14
15
|
export { NotificationComponent as ɵj } from './lib/components/notification/notification.component';
|