novo-elements 5.5.2 → 5.8.1
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/novo-elements.umd.js +350 -218
- package/bundles/novo-elements.umd.js.map +1 -1
- package/bundles/novo-elements.umd.min.js +2 -2
- package/bundles/novo-elements.umd.min.js.map +1 -1
- package/elements/chips/Chips.scss +6 -0
- package/elements/data-table/cell-headers/data-table-checkbox-header-cell.component.d.ts +5 -1
- package/elements/data-table/cells/data-table-checkbox-cell.component.d.ts +3 -0
- package/elements/data-table/data-table-clear-button.component.d.ts +2 -0
- package/elements/data-table/data-table.component.d.ts +3 -1
- package/elements/data-table/data-table.component.scss +3 -0
- package/elements/data-table/interfaces.d.ts +3 -0
- package/elements/data-table/state/data-table-state.service.d.ts +6 -2
- package/elements/picker/extras/entity-picker-results/EntityPickerResults.d.ts +1 -0
- package/esm2015/elements/data-table/cell-headers/data-table-checkbox-header-cell.component.js +26 -6
- package/esm2015/elements/data-table/cells/data-table-checkbox-cell.component.js +16 -5
- package/esm2015/elements/data-table/data-table-clear-button.component.js +9 -1
- package/esm2015/elements/data-table/data-table.component.js +8 -3
- package/esm2015/elements/data-table/data-table.source.js +5 -2
- package/esm2015/elements/data-table/interfaces.js +1 -1
- package/esm2015/elements/data-table/pagination/data-table-pagination.component.js +4 -1
- package/esm2015/elements/data-table/sort-filter/sort-filter.directive.js +3 -1
- package/esm2015/elements/data-table/state/data-table-state.service.js +31 -7
- package/esm2015/elements/expansion/expansion-panel.js +1 -1
- package/esm2015/elements/picker/extras/entity-picker-results/EntityPickerResults.js +31 -1
- package/esm2015/index.js +1 -1
- package/esm2015/services/novo-label-service.js +2 -1
- package/esm2015/utils/app-bridge/AppBridge.js +54 -16
- package/esm2015/utils/form-utils/FormUtils.js +2 -2
- package/fesm2015/novo-elements.js +375 -231
- package/fesm2015/novo-elements.js.map +1 -1
- package/index.d.ts +1 -1
- package/novo-elements.metadata.json +1 -1
- package/package.json +1 -1
- package/services/novo-label-service.d.ts +1 -0
- package/styles/global/variables.scss +4 -1
- package/utils/app-bridge/AppBridge.d.ts +11 -2
package/package.json
CHANGED
|
@@ -48,6 +48,7 @@ $earnCode: #696d79;
|
|
|
48
48
|
$invoiceStatement: #696d79;
|
|
49
49
|
$billableCharge: #696d79;
|
|
50
50
|
$payableCharge: #696d79;
|
|
51
|
+
$jobShift: #454ea0;
|
|
51
52
|
// Color Applications
|
|
52
53
|
$dark: #3d464d;
|
|
53
54
|
$navigation: #2f384f;
|
|
@@ -99,6 +100,7 @@ $entity-colors: ('star': $placement,
|
|
|
99
100
|
'billableCharge': $billableCharge,
|
|
100
101
|
'payableCharge': $payableCharge,
|
|
101
102
|
'invoiceStatement': $invoiceStatement,
|
|
103
|
+
'jobShift': $jobShift,
|
|
102
104
|
);
|
|
103
105
|
// Generic Color Map
|
|
104
106
|
$app-colors: ('positive': $ocean,
|
|
@@ -174,6 +176,7 @@ $dark-colors: ('company': $company,
|
|
|
174
176
|
'ash': $ash,
|
|
175
177
|
'slate': $slate,
|
|
176
178
|
'charcoal': $charcoal,
|
|
179
|
+
'jobShift': $jobShift,
|
|
177
180
|
);
|
|
178
181
|
// Light map
|
|
179
182
|
$light-colors: ('background': $off-white,
|
|
@@ -321,4 +324,4 @@ $easing-curves: ('swift-ease-out': ('duration': 400ms,
|
|
|
321
324
|
opacity: 1;
|
|
322
325
|
transform: translateX(0);
|
|
323
326
|
}
|
|
324
|
-
}
|
|
327
|
+
}
|
|
@@ -9,9 +9,10 @@ export declare enum AppBridgeHandler {
|
|
|
9
9
|
REGISTER = 6,
|
|
10
10
|
UPDATE = 7,
|
|
11
11
|
REQUEST_DATA = 8,
|
|
12
|
-
CALLBACK = 9
|
|
12
|
+
CALLBACK = 9,
|
|
13
|
+
PING = 10
|
|
13
14
|
}
|
|
14
|
-
export declare type NovoApps = 'record' | 'add' | 'fast-add' | 'custom' | 'preview';
|
|
15
|
+
export declare type NovoApps = 'record' | 'add' | 'fast-add' | 'slide-out-add' | 'custom' | 'preview';
|
|
15
16
|
export declare type AlleyLinkColors = 'purple' | 'green' | 'blue' | 'lead' | 'candidate' | 'contact' | 'company' | 'opportunity' | 'job' | 'billable-charge' | 'earn-code' | 'invoice-statement' | 'job-code' | 'payable-charge' | 'sales-tax-rate' | 'tax-rules' | 'submission' | 'placement' | 'navigation' | 'canvas' | 'neutral' | 'neutral-italic' | 'initial' | 'distributionList' | 'contract';
|
|
16
17
|
export interface IAppBridgeOpenEvent {
|
|
17
18
|
type: NovoApps;
|
|
@@ -81,6 +82,7 @@ export declare class AppBridge {
|
|
|
81
82
|
* Fires or responds to an close event
|
|
82
83
|
*/
|
|
83
84
|
refresh(packet?: object): Promise<boolean>;
|
|
85
|
+
ping(): Promise<boolean>;
|
|
84
86
|
/**
|
|
85
87
|
* Fires or responds to a pin event
|
|
86
88
|
*/
|
|
@@ -142,6 +144,13 @@ export declare class AppBridge {
|
|
|
142
144
|
* @param data any - data to be sent along with the event
|
|
143
145
|
*/
|
|
144
146
|
fireEventToChildren(event: string, data: any): void;
|
|
147
|
+
/**
|
|
148
|
+
* Fires a custom event to specified frames
|
|
149
|
+
* @param source Window - specific iframe contentWindow
|
|
150
|
+
* @param event string - event name to fire
|
|
151
|
+
* @param data any - data to be sent along with the event
|
|
152
|
+
*/
|
|
153
|
+
fireEventToChild(source: Window | HTMLIFrameElement, event: string, data: any): void;
|
|
145
154
|
/**
|
|
146
155
|
* Adds an event listener to a custom event
|
|
147
156
|
* @param event string - event name to listen to
|