@indigina/ui-kit 1.1.81 → 1.1.83
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/empty.svg +14 -0
- package/esm2022/lib/components/kit-empty-section/kit-empty-section.component.mjs +22 -0
- package/esm2022/lib/components/kit-navigation-menu/kit-navigation-menu-submenu/kit-navigation-menu-submenu.component.mjs +3 -3
- package/esm2022/lib/components/kit-svg-icon/kit-svg-icon.const.mjs +2 -1
- package/esm2022/lib/components/kit-svg-sprite/kit-svg-sprite.component.mjs +3 -3
- package/esm2022/public-api.mjs +3 -1
- package/fesm2022/indigina-ui-kit.mjs +23 -5
- package/fesm2022/indigina-ui-kit.mjs.map +1 -1
- package/lib/components/kit-empty-section/kit-empty-section.component.d.ts +8 -0
- package/lib/components/kit-svg-icon/kit-svg-icon.const.d.ts +2 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { KitSvgIcon } from '../kit-svg-icon/kit-svg-icon.const';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class KitEmptySectionComponent {
|
|
4
|
+
text: string;
|
|
5
|
+
readonly KitSvgIcon: typeof KitSvgIcon;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KitEmptySectionComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitEmptySectionComponent, "kit-empty-section", never, { "text": { "alias": "text"; "required": false; }; }, {}, never, never, true, never>;
|
|
8
|
+
}
|
|
@@ -126,7 +126,8 @@ export declare enum KitSvgIcon {
|
|
|
126
126
|
EXCEL_FILE = "excel-file",
|
|
127
127
|
WORD_FILE = "word-file",
|
|
128
128
|
PDF_FILE = "pdf-file",
|
|
129
|
-
IMAGE_FILE = "image-file"
|
|
129
|
+
IMAGE_FILE = "image-file",
|
|
130
|
+
EMPTY = "empty"
|
|
130
131
|
}
|
|
131
132
|
export declare enum KitSvgIconType {
|
|
132
133
|
FILL = "fill",
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -153,3 +153,4 @@ export { KitFileCardMessagesComponent } from './lib/components/kit-file-card/kit
|
|
|
153
153
|
export { KitDataFieldComponent } from './lib/components/kit-data-field/kit-data-field.component';
|
|
154
154
|
export { KitSearchBarModule } from './lib/components/kit-search-bar/kit-search-bar.module';
|
|
155
155
|
export { KitSearchBarComponent } from './lib/components/kit-search-bar/kit-search-bar.component';
|
|
156
|
+
export { KitEmptySectionComponent } from './lib/components/kit-empty-section/kit-empty-section.component';
|