@alauda-fe/dynamic-plugin-shared 0.0.1-alpha.0 → 0.0.1-alpha.10
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/array-form-table/form/index.d.ts +3 -2
- package/array-form-table/index.d.ts +1 -1
- package/assets/images/dark/403.svg +1 -0
- package/assets/images/dark/404.svg +1 -0
- package/assets/images/dark/500.svg +1 -0
- package/assets/images/dark/disconnected.svg +1 -1
- package/assets/images/dark/feature-reach-bg.svg +1 -0
- package/assets/images/dark/license-abnormal.svg +1 -1
- package/assets/images/dark/no-data-for-list-or-card.svg +1 -0
- package/assets/images/dark/no-data.svg +1 -1
- package/assets/images/dark/no-message.svg +1 -1
- package/assets/images/dark/no-permission.svg +1 -1
- package/assets/images/dark/not-deployed.svg +1 -1
- package/assets/images/dark/not-supported.svg +1 -1
- package/assets/images/light/403.svg +1 -0
- package/assets/images/light/404.svg +1 -0
- package/assets/images/light/500.svg +1 -0
- package/assets/images/light/disconnected.svg +1 -1
- package/assets/images/light/feature-reach-bg.svg +1 -0
- package/assets/images/light/license-abnormal.svg +1 -1
- package/assets/images/light/no-data-for-list-or-card.svg +1 -0
- package/assets/images/light/no-data.svg +1 -1
- package/assets/images/light/no-message.svg +1 -1
- package/assets/images/light/no-permission.svg +1 -1
- package/assets/images/light/not-deployed.svg +1 -1
- package/assets/images/light/not-supported.svg +1 -1
- package/components/index.d.ts +1 -0
- package/components/workload-status/component.d.ts +37 -0
- package/components/workload-status/index.d.ts +1 -0
- package/components/zero-state/zero-state.component.d.ts +1 -0
- package/esm2022/array-form-table/form/index.mjs +2 -1
- package/esm2022/array-form-table/index.mjs +2 -2
- package/esm2022/components/index.mjs +2 -1
- package/esm2022/components/page-guard/component/component.mjs +2 -2
- package/esm2022/components/workload-status/component.mjs +33 -0
- package/esm2022/components/workload-status/index.mjs +2 -0
- package/esm2022/components/zero-state/zero-state.component.mjs +9 -4
- package/esm2022/k8s-resource-list/footer/component.mjs +9 -4
- package/esm2022/types/index.mjs +2 -1
- package/fesm2022/alauda-fe-dynamic-plugin-shared.mjs +44 -7
- package/fesm2022/alauda-fe-dynamic-plugin-shared.mjs.map +1 -1
- package/k8s-resource-list/footer/component.d.ts +1 -0
- package/package.json +1 -1
- package/styles/lib.scss +1 -1
- package/types/index.d.ts +1 -0
|
@@ -34,6 +34,7 @@ export declare class K8SResourceListFooterComponent extends ScrollBorderObserver
|
|
|
34
34
|
noDataHint$: Observable<string>;
|
|
35
35
|
loadingErrorCode$: Observable<number>;
|
|
36
36
|
window: Window & typeof globalThis;
|
|
37
|
+
image: string[];
|
|
37
38
|
constructor(injector: Injector, translate: TranslateService);
|
|
38
39
|
ngOnInit(): void;
|
|
39
40
|
retry(): void;
|
package/package.json
CHANGED
package/styles/lib.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.tw-mb-12{margin-bottom:12px}.tw-mb-4{margin-bottom:4px}.tw-ml-\[-4px\]{margin-left:-4px}.tw-mr-8{margin-right:8px}.tw-mt-0{margin-top:0}.tw-flex{display:flex}.tw-h-\[8px\]{height:8px}.tw-w-full{width:100%}.tw-flex-1{flex:1 1 0%}.tw-cursor-pointer{cursor:pointer}.tw-justify-end{justify-content:flex-end}.tw-overflow-hidden{overflow:hidden}.tw-text-ellipsis{text-overflow:ellipsis}.tw-text-center{text-align:center}.\!tw-text-s{font-size:var(--aui-font-size-s)!important}.tw-text-main-text{color:rgb(var(--aui-color-main-text))}.tw-text-n-2{color:rgb(var(--aui-color-n-2))}.tw-text-red{color:rgb(var(--aui-color-red))}.tw-icon-m{font-size:var(--aui-icon-size-m)}.hover\:tw-text-primary:hover{color:rgb(var(--aui-color-primary))}
|
|
1
|
+
.tw-mb-12{margin-bottom:12px}.tw-mb-4{margin-bottom:4px}.tw-ml-\[-4px\]{margin-left:-4px}.tw-mr-4{margin-right:4px}.tw-mr-8{margin-right:8px}.tw-mt-0{margin-top:0}.tw-flex{display:flex}.tw-h-\[8px\]{height:8px}.tw-w-full{width:100%}.tw-flex-1{flex:1 1 0%}.tw-cursor-pointer{cursor:pointer}.tw-justify-end{justify-content:flex-end}.tw-overflow-hidden{overflow:hidden}.tw-text-ellipsis{text-overflow:ellipsis}.tw-text-center{text-align:center}.\!tw-text-s{font-size:var(--aui-font-size-s)!important}.tw-text-main-text{color:rgb(var(--aui-color-main-text))}.tw-text-n-2{color:rgb(var(--aui-color-n-2))}.tw-text-red{color:rgb(var(--aui-color-red))}.tw-icon-m{font-size:var(--aui-icon-size-m)}.hover\:tw-text-primary:hover{color:rgb(var(--aui-color-primary))}
|
package/types/index.d.ts
CHANGED