@indigina/ui-kit 1.0.75 → 1.0.76
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/indigina-ui-kit.umd.js +414 -410
- package/bundles/indigina-ui-kit.umd.js.map +1 -1
- package/esm2015/lib/components/kit-location-stepper/kit-location-stepper.component.js +7 -4
- package/esm2015/lib/components/kit-location-stepper/kit-location-stepper.module.js +5 -1
- package/fesm2015/indigina-ui-kit.js +61 -56
- package/fesm2015/indigina-ui-kit.js.map +1 -1
- package/indigina-ui-kit.metadata.json +1 -1
- package/lib/components/kit-location-stepper/kit-location-stepper.component.d.ts +3 -0
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { KitTooltipPosition } from '../../directives/kit-tooltip/kit-tooltip.directive';
|
|
1
2
|
import { KitSvgIcon } from '../kit-svg-icon/kit-svg-icon.const';
|
|
2
3
|
export interface KitLocationStepperItemDate {
|
|
3
4
|
value: string;
|
|
@@ -10,11 +11,13 @@ export interface KitLocationStepperItem {
|
|
|
10
11
|
dates?: KitLocationStepperItemDate[];
|
|
11
12
|
cssClass?: string;
|
|
12
13
|
subItems?: KitLocationStepperItem[];
|
|
14
|
+
toolTipText?: string;
|
|
13
15
|
}
|
|
14
16
|
export declare class KitLocationStepperComponent {
|
|
15
17
|
/**
|
|
16
18
|
* An items list to be shown as steps
|
|
17
19
|
*/
|
|
18
20
|
items: KitLocationStepperItem[];
|
|
21
|
+
toolTipPosition: KitTooltipPosition;
|
|
19
22
|
readonly KitSvgIcon: typeof KitSvgIcon;
|
|
20
23
|
}
|