@indigina/ui-kit 1.0.71 → 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/assets/icons/logout.svg +5 -0
- package/bundles/indigina-ui-kit.umd.js +399 -10
- package/bundles/indigina-ui-kit.umd.js.map +1 -1
- package/esm2015/indigina-ui-kit.js +1 -2
- package/esm2015/lib/components/kit-datetimepicker/kit-datetimepicker.component.js +8 -3
- 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/esm2015/lib/components/kit-svg-icon/kit-svg-icon.const.js +2 -1
- package/esm2015/lib/components/kit-svg-sprite/kit-svg-sprite.component.js +2 -2
- package/esm2015/lib/directives/kit-tooltip/kit-tooltip.directive.js +42 -0
- package/esm2015/lib/directives/kit-tooltip/kit-tooltip.module.js +17 -0
- package/esm2015/public-api.js +5 -1
- package/fesm2015/indigina-ui-kit.js +72 -6
- package/fesm2015/indigina-ui-kit.js.map +1 -1
- package/indigina-ui-kit.d.ts +0 -1
- package/indigina-ui-kit.metadata.json +1 -1
- package/lib/components/kit-datetimepicker/kit-datetimepicker.component.d.ts +3 -1
- package/lib/components/kit-location-stepper/kit-location-stepper.component.d.ts +3 -0
- package/lib/components/kit-svg-icon/kit-svg-icon.const.d.ts +2 -1
- package/lib/directives/kit-tooltip/kit-tooltip.directive.d.ts +14 -0
- package/lib/directives/kit-tooltip/kit-tooltip.module.d.ts +2 -0
- package/package.json +2 -1
- package/public-api.d.ts +3 -0
- package/styles/components/tooltip.scss +11 -0
- package/styles/styles.scss +2 -0
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M9 21H5C4.46957 21 3.96086 20.7893 3.58579 20.4142C3.21071 20.0391 3 19.5304 3 19V5C3 4.46957 3.21071 3.96086 3.58579 3.58579C3.96086 3.21071 4.46957 3 5 3H9" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M16 17L21 12L16 7" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M21 12H9" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|