@alauda-fe/dynamic-plugin-shared 0.0.1-alpha.1 → 0.0.1-alpha.11
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/component.d.ts +1 -1
- package/array-form-table/form/index.d.ts +3 -2
- package/array-form-table/index.d.ts +1 -1
- package/assets/i18n/en/dynamic-plugin-shared.json +3 -0
- package/components/field-set/item/component.d.ts +1 -1
- package/components/index.d.ts +4 -0
- package/components/namespace-badge/component.d.ts +6 -0
- package/components/namespace-selector/component.d.ts +28 -0
- package/components/namespace-selector/constants.d.ts +2 -0
- package/components/namespace-selector/index.d.ts +4 -0
- package/components/namespace-selector/namespace-list/component.d.ts +46 -0
- package/components/namespace-selector/selector-popup/component.d.ts +13 -0
- package/components/namespace-selector/selector-popup/ref.d.ts +10 -0
- package/components/namespace-selector/selector-popup/service.d.ts +20 -0
- package/components/namespace-selector/types.d.ts +5 -0
- package/components/test-tag/component.d.ts +5 -0
- package/components/workload-status/component.d.ts +37 -0
- package/components/workload-status/index.d.ts +1 -0
- package/directives/scroll-border-observer.directive.d.ts +1 -1
- package/directives/scroll-to-first-invalid.directive.d.ts +1 -1
- package/esm2022/array-form-table/form/index.mjs +2 -1
- package/esm2022/array-form-table/index.mjs +2 -2
- package/esm2022/components/index.mjs +5 -1
- package/esm2022/components/namespace-badge/component.mjs +14 -0
- package/esm2022/components/namespace-selector/component.mjs +122 -0
- package/esm2022/components/namespace-selector/constants.mjs +3 -0
- package/esm2022/components/namespace-selector/index.mjs +5 -0
- package/esm2022/components/namespace-selector/namespace-list/component.mjs +191 -0
- package/esm2022/components/namespace-selector/selector-popup/component.mjs +24 -0
- package/esm2022/components/namespace-selector/selector-popup/ref.mjs +20 -0
- package/esm2022/components/namespace-selector/selector-popup/service.mjs +61 -0
- package/esm2022/components/namespace-selector/types.mjs +2 -0
- package/esm2022/components/page-guard/component/component.mjs +2 -2
- package/esm2022/components/test-tag/component.mjs +24 -0
- 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 +3 -3
- package/esm2022/types/index.mjs +2 -1
- package/fesm2022/alauda-fe-dynamic-plugin-shared.mjs +449 -7
- package/fesm2022/alauda-fe-dynamic-plugin-shared.mjs.map +1 -1
- package/form/base-nested-form-control.d.ts +1 -1
- package/k8s-resource-list/k8s-resource-paged-list.d.ts +2 -2
- package/package.json +1 -1
- package/styles/lib.scss +1 -1
- package/types/index.d.ts +1 -0
package/esm2022/types/index.mjs
CHANGED
|
@@ -6,4 +6,5 @@
|
|
|
6
6
|
export * from './common';
|
|
7
7
|
export * from './helpers';
|
|
8
8
|
export * from './k8s';
|
|
9
|
-
|
|
9
|
+
export * from './schema';
|
|
10
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL2R5bmFtaWMtcGx1Z2luLXNoYXJlZC9zcmMvdHlwZXMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7R0FJRztBQUVILGNBQWMsVUFBVSxDQUFDO0FBQ3pCLGNBQWMsV0FBVyxDQUFDO0FBQzFCLGNBQWMsT0FBTyxDQUFDO0FBQ3RCLGNBQWMsVUFBVSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBAcGFja2FnZURvY3VtZW50YXRpb25cbiAqIEBtb2R1bGUgdHlwZXNcbiAqIEBwcmVmZXJyZWRcbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL2NvbW1vbic7XG5leHBvcnQgKiBmcm9tICcuL2hlbHBlcnMnO1xuZXhwb3J0ICogZnJvbSAnLi9rOHMnO1xuZXhwb3J0ICogZnJvbSAnLi9zY2hlbWEnO1xuIl19
|