@alauda-fe/dynamic-plugin-shared 0.0.3-alpha.3 → 0.0.4-alpha.3

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/package.json CHANGED
@@ -1,11 +1,9 @@
1
1
  {
2
2
  "name": "@alauda-fe/dynamic-plugin-shared",
3
- "version": "0.0.3-alpha.3",
3
+ "version": "0.0.4-alpha.3",
4
4
  "peerDependencies": {
5
- "@alauda-fe/i18n": "1.0.4",
6
- "@alauda/chart": "^0.1.11",
7
5
  "@alauda/code-editor": "^5.1.0",
8
- "@alauda-fe/dynamic-plugin-sdk": "0.0.1-alpha.18",
6
+ "@alauda-fe/dynamic-plugin-sdk": "0.0.1-alpha.21",
9
7
  "@alauda/ui": "^9.1.2-beta.6",
10
8
  "@angular/common": "^21.1.1",
11
9
  "@angular/core": "^21.1.1",
@@ -19,7 +17,6 @@
19
17
  "ab64": "^0.1.1",
20
18
  "compare-versions": "^6.1.0",
21
19
  "cron-parser": "^4.9.0",
22
- "d3": "^7.8.5",
23
20
  "dayjs": "^1.11.9",
24
21
  "lodash-es": "^4.17.21",
25
22
  "marked": "^7.0.5",
@@ -12,13 +12,13 @@ import { Params, ParamMap, ActivatedRoute, ActivatedRouteSnapshot, CanDeactivate
12
12
  import { CompareOperator } from 'compare-versions';
13
13
  export { CompareOperator as VersionCompareOperator, compareVersions as compareVersionToNum, satisfies as satisfiesVersion } from 'compare-versions';
14
14
  import * as _angular_forms from '@angular/forms';
15
- import { ValidatorFn, AsyncValidatorFn, AbstractControl, FormArray, ControlContainer, NgControl, Validator, ValidationErrors, DefaultValueAccessor, ControlValueAccessor, AsyncValidator, MaxLengthValidator, MinLengthValidator, NgForm, FormGroupDirective, FormGroup, FormBuilder, FormControl } from '@angular/forms';
15
+ import { AsyncValidatorFn, ValidatorFn, AbstractControl, FormArray, ControlContainer, NgControl, Validator, ValidationErrors, DefaultValueAccessor, ControlValueAccessor, AsyncValidator, MaxLengthValidator, MinLengthValidator, NgForm, FormGroupDirective, FormGroup, FormBuilder, FormControl } from '@angular/forms';
16
16
  import * as i0 from '@angular/core';
17
- import { AfterViewInit, OnDestroy, NgZone, PipeTransform, ChangeDetectorRef, OnInit, TemplateRef, ViewContainerRef, ElementRef, ComponentFactoryResolver, EventEmitter, OnChanges, SimpleChanges, Renderer2, Injector, ApplicationRef, QueryList, InjectionToken, Signal, TrackByFunction } from '@angular/core';
17
+ import { AfterViewInit, OnDestroy, NgZone, PipeTransform, ChangeDetectorRef, OnInit, TemplateRef, ViewContainerRef, ElementRef, ComponentFactoryResolver, Injector, EventEmitter, OnChanges, SimpleChanges, Renderer2, ApplicationRef, QueryList, InjectionToken, Signal, TrackByFunction } from '@angular/core';
18
18
  import { MarkedOptions } from 'marked';
19
19
  import { DecimalPipe, Location } from '@angular/common';
20
- import { CdkScrollable } from '@angular/cdk/scrolling';
21
- import dayjs, { Dayjs, ManipulateType, ConfigType } from 'dayjs';
20
+ import { CdkScrollable, CdkVirtualForOfContext, CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
21
+ import dayjs, { Dayjs, ConfigType, ManipulateType } from 'dayjs';
22
22
  import * as lodash from 'lodash';
23
23
  import * as _alauda_fe_dynamic_plugin_shared from '@alauda-fe/dynamic-plugin-shared';
24
24
  import { DomSanitizer } from '@angular/platform-browser';
@@ -2813,6 +2813,7 @@ declare class ReadonlyFieldDirective implements OnInit, OnDestroy {
2813
2813
  readonly control: NgControl;
2814
2814
  readonly cfr: ComponentFactoryResolver;
2815
2815
  readonly viewContainerRef: ViewContainerRef;
2816
+ readonly injector: Injector;
2816
2817
  readonly controlDirective: FormItemControlDirective;
2817
2818
  template: TemplateRef<any>;
2818
2819
  context: object;
@@ -5160,7 +5161,7 @@ declare class TableComponent<Item extends object, Context = TableUtilService<Ite
5160
5161
  odd: boolean;
5161
5162
  last: boolean;
5162
5163
  }>;
5163
- trackByFn(index: number, item: Item): string | number | Exclude<"name" extends infer T ? T extends "name" ? T extends keyof Item ? Item[T] : T extends `${infer FieldKey}[${infer IndexKey}]` ? FieldKey extends keyof Item ? lodash.IndexedFieldWithPossiblyUndefined<Item[FieldKey], IndexKey> : undefined : lodash.IndexedFieldWithPossiblyUndefined<Item, T> : never : never, null>;
5164
+ trackByFn(index: number, item: Item): string | number;
5164
5165
  onUpdate(data: Item, columnDef: TableColumnDef<Item, Context>): void;
5165
5166
  getValue<T, F extends (...args: unknown[]) => T>(functionOrValue: T | F, ...args: Parameters<F>): T;
5166
5167
  static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent<any, any>, never>;
@@ -5181,6 +5182,52 @@ declare class TestTagComponent {
5181
5182
  static ɵcmp: i0.ɵɵComponentDeclaration<TestTagComponent, "acl-test-tag", never, {}, {}, never, never, true, never>;
5182
5183
  }
5183
5184
 
5185
+ declare class AclTableVirtualComponent<T> implements AfterViewInit, OnDestroy {
5186
+ dataSource: T[];
5187
+ itemSize: number;
5188
+ minBufferPx: number;
5189
+ maxBufferPx: number;
5190
+ height: string;
5191
+ trackBy: TrackByFunction<T>;
5192
+ placeholderActive: boolean;
5193
+ headerTemplate?: TemplateRef<any>;
5194
+ rowTemplate: TemplateRef<Omit<CdkVirtualForOfContext<T>, 'count' | 'cdkVirtualForOf' | 'first'>>;
5195
+ placeholderTemplate?: TemplateRef<any>;
5196
+ viewport?: CdkVirtualScrollViewport;
5197
+ scrollContainerRef: ElementRef<HTMLElement>;
5198
+ private destroy$;
5199
+ ngAfterViewInit(): void;
5200
+ ngOnDestroy(): void;
5201
+ private getScroller;
5202
+ private placeClass;
5203
+ private mutateVerticalScroll;
5204
+ private mutateHorizontalScroll;
5205
+ static ɵfac: i0.ɵɵFactoryDeclaration<AclTableVirtualComponent<any>, never>;
5206
+ static ɵcmp: i0.ɵɵComponentDeclaration<AclTableVirtualComponent<any>, "acl-table-virtual", ["aclTableVirtual"], { "dataSource": { "alias": "dataSource"; "required": false; }; "itemSize": { "alias": "itemSize"; "required": false; }; "minBufferPx": { "alias": "minBufferPx"; "required": false; }; "maxBufferPx": { "alias": "maxBufferPx"; "required": false; }; "height": { "alias": "height"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; "placeholderActive": { "alias": "placeholderActive"; "required": false; }; }, {}, ["headerTemplate", "rowTemplate", "placeholderTemplate"], never, true, never>;
5207
+ }
5208
+
5209
+ declare class AclTableVirtualHeaderDefDirective {
5210
+ templateRef: TemplateRef<any>;
5211
+ static ɵfac: i0.ɵɵFactoryDeclaration<AclTableVirtualHeaderDefDirective, never>;
5212
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AclTableVirtualHeaderDefDirective, "[aclTableVirtualHeader]", never, {}, {}, never, never, true, never>;
5213
+ }
5214
+ declare class AclTableVirtualRowDefDirective<T> {
5215
+ templateRef: TemplateRef<any>;
5216
+ static ɵfac: i0.ɵɵFactoryDeclaration<AclTableVirtualRowDefDirective<any>, never>;
5217
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AclTableVirtualRowDefDirective<any>, "[aclTableVirtualRow]", never, {}, {}, never, never, true, never>;
5218
+ }
5219
+ declare class AclTableVirtualPlaceholderDefDirective {
5220
+ templateRef: TemplateRef<any>;
5221
+ static ɵfac: i0.ɵɵFactoryDeclaration<AclTableVirtualPlaceholderDefDirective, never>;
5222
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AclTableVirtualPlaceholderDefDirective, "[aclTableVirtualPlaceholder]", never, {}, {}, never, never, true, never>;
5223
+ }
5224
+
5225
+ declare class AclTableVirtualModule {
5226
+ static ɵfac: i0.ɵɵFactoryDeclaration<AclTableVirtualModule, never>;
5227
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AclTableVirtualModule, never, [typeof AclTableVirtualComponent, typeof AclTableVirtualHeaderDefDirective, typeof AclTableVirtualRowDefDirective, typeof AclTableVirtualPlaceholderDefDirective], [typeof AclTableVirtualComponent, typeof AclTableVirtualHeaderDefDirective, typeof AclTableVirtualRowDefDirective, typeof AclTableVirtualPlaceholderDefDirective]>;
5228
+ static ɵinj: i0.ɵɵInjectorDeclaration<AclTableVirtualModule>;
5229
+ }
5230
+
5184
5231
  declare class UpdateDescriptionDialogComponent<T extends KubernetesResource> {
5185
5232
  private readonly dialogRef;
5186
5233
  private readonly k8sApi;
@@ -5688,5 +5735,5 @@ declare class AsyncDataLoader<D = unknown, P = StringMap> implements DataStateAd
5688
5735
 
5689
5736
  declare const ASYNC_DATA_MODULE: readonly [typeof PageStateComponent, typeof ErrorStateComponent, typeof ErrorStateComponent];
5690
5737
 
5691
- export { ACTION, AIT_API_GROUP, ALL, ALL_VALUE, ANNOTATIONS, API_GATEWAY, ARGOCD_GROUP, ARRAY_FORM_TABLE_MODULE, ARRAY_TABLE_FORM_ERROR_BG, ASSIGN_ALL, ASYNC_DATA_MODULE, AccessMode, AccessModes, AlaudaDeployStatus, AlaudaRunningStatus, ArrayFormTableComponent, ArrayFormTableFooterDirective, ArrayFormTableHeaderDirective, ArrayFormTableRowControlDirective, ArrayFormTableRowDirective, ArrayFormTableRowErrorDirective, ArrayFormTableRowSeparatorDirective, ArrayFormTableZeroStateDirective, AsyncDataLoader, AsyncFunctionValidatorDirective, AuiCodeEditorHelperDirective, BASE_TIMEZONE, BaseFormContainer, BaseNestedFormControl, BaseNestedFormControlPure, BaseStringMapFormComponent, Bracket, CHART_PICKER_TIME_RANGES, CLUSTER, COMMON_RESOURCE_DEFINITIONS, CORE_UNITS, CORE_UNIT_REG, CREATE, CREATED_AT, CREATION_TIMESTAMP, CREATOR, CRON_ENABLE_7_FOR_SUNDAY, CRON_FORMAT_ERROR, CRON_MIN_INTERVAL_ERROR, CRYPTO_HEADER_KEY, CRYPTO_KEY, CRYPTO_RANDOM_HEADER_KEY, CRYPTO_TYPE, CUSTOM, CUSTOMIZED, CUSTOM_RANGE, CalcPipe, CardSectionComponent, ClickOutsideDirective, CloudHelmRequestStateEnum, CodeDisplayDialogComponent, CoerceNumberDirective, ConfirmDeleteComponent, ConfirmDeleteContentDirective, ConfirmDeleteLabelDirective, ConfirmDeleteTipDirective, ControlValueTraceDirective, CronHumanReadablePipe, CronWeekDays, CrontabNextPipe, CurrentTimeComponent, DATE_FORMAT, DATE_TIME_FORMAT, DEFAULT_CODE_EDITOR_OPTIONS, DEFAULT_CONTAINER_ANNOTATION, DEFAULT_OPERATOR, DEFAULT_OPTIONS, DEFAULT_REASON, DELIMITER, DESCRIPTION, DISPLAY_NAME, DNS1123SubdomainValidator, DOMAIN_PATTERN, DOMAIN_PATTERN_BASE, DOT, DOWNGRADE_WATCH_ENABLED, DOWNGRADE_WATCH_POLLING, DUPLICATE_ERROR_KEY, DUPLICATION_JUSTIFY_STRATEGY, DataSource, DateRangePickerComponent, DeclareDirective, DefaultStatusColorMapper, DefaultStatusIconMapper, DeleteType, DeletingTagComponent, DisabledContainerComponent, DisabledDirective, DragHandleDirective, DurationPipe, E2eAttributeBindingDirective, EFFECT_DIRECTIVE_MODULE, EMAIL_PATTERN, EMPTY, ERRORS_MAPPER_MODULE, ESCAPE_DEACTIVATE_CHECK, ErrorStateComponent, ErrorsMapperComponent, ErrorsMapperDirective, FALSE, FIELDSET_GROUP_COMPONENTS, FeatureGateDirective, FieldSetColumnComponent, FieldSetColumnGroupComponent, FieldSetGroupComponent, FieldSetItemActionDirective, FieldSetItemComponent, FileResultType, FoldableBlockComponent, FoldableItemInTableComponent, FormItemMarginEffectDirective, FunctionValidatorDirective, GLOBAL_CLUSTER, GenericStatusColor, GenericStatusIcon, GuardStatus, HTTP_ADDRESS_PATTERN, HTTP_DUAL_IP_OR_DOMAIN_PATTERN, HTTP_IP_OR_DOMAIN_PATTERN, HYPHEN, HelmRequestPhaseEnum, HelpDocDirective, HelpDocUrlPipe, HelpDocumentComponent, HelpDocumentService, IMAGE_TAG_PATTERN, INT_PATTERN, INT_ZERO_PATTERN, IPV4_IPV6_ADDRESS_HOSTNAME_PORT_PATTERN, IPV6_ADDRESS_HOSTNAME_PATTERN, IPV6_ADDRESS_HOSTNAME_PORT_PATTERN, IPV6_PATTERN_BASE, IP_ADDRESS_HOSTNAME_PATTERN, IP_ADDRESS_HOSTNAME_PATTERN_EXTEND, IP_ADDRESS_HOSTNAME_PORT_PATTERN, IP_ADDRESS_PATTERN, IP_ADDRESS_PORT_PATTERN, IP_ADDRESS_SUBNET_PATTERN, IP_PATTERN, IP_PATTERN_BASE, IP_V4_OR_V6_PATTERN, IP_V6_ADDRESS_PATTERN, IP_V6_PATTERN, InterceptDeactivateDirective, InterceptDeactivateGuard, InterceptDeactivateService, JobStatusColorMapper, JobStatusEnum, JobStatusIconMapper, K8SResourceList, K8SResourceListFooterComponent, K8SResourcePagedList, K8S_APP_API_GROUP, K8S_CORE_API_GROUP, K8S_RESOURCE_LABEL_KEY_NAME_PATTERN, K8S_RESOURCE_LABEL_KEY_PREFIX_PATTERN, K8S_RESOURCE_LABEL_VALUE_PATTERN, K8S_RESOURCE_LIST_MODULE, K8S_RESOURCE_NAME_START_WITH_CHARS_ONLY, K8S_RESOURCE_TRANSLATE_KEY, K8sListFooterLoadingErrorDirective, K8sListFooterNoDataDirective, K8sResourceAction, K8sResourceMarkComponent, K8sResourceTranslateKeyPipe, K8sSharedUtilService, K8sYamlDisplayDialogComponent, KNOWN_COLUMNS, KeyValueFormTableComponent, KeyValueTableComponent, LABELS, LINK, LOCAL_STORAGE_KEY_THEME_MODE, ListDisplayComponent, ListenResizeDirective, LoadAction, LocaleTransformPipe, MACHINE_API_GROUP, METADATA, MUTABLE_BASIC_OPTIONS, MUTABLE_MODULE, MarkedPipe, MaxLengthValidatorDirective, MaxValidatorDirective, MinLengthValidatorDirective, MinValidatorDirective, MinimumFormatPipe, MosaicComponent, MosaicLeftDirective, MosaicRightDirective, MultiSearchActionInputComponent, MultiSearchAdvanced, MultiSearchBasic, MultiSearchComponent, MutableDirective, NAME, NAMESPACE, NOTIFICATION_SERVER_NAME, NOTIFY_DURATION_HEADER, NOTIFY_ON_ERROR_HEADER, NOTIFY_ON_ERROR_HEADERS, NOT_NOTIFY_ON_ERROR_HEADERS, NUMBER_PATTERN, NamespaceBadgeComponent, NotBeValidatorDirective, OAM_GROUP, OnResizeChangeService, OneOfValidatorDirective, OverviewBannerComponent, PACKAGE_RUNTIME_VALUE, PAGE_GUARD_MODULE, PLATFORM_OPS_MODE, PORT_PATTERN, POSITIVE_INT_PATTERN, POSITIVE_NUMBER_PATTERN, PREFIX_LABEL_CLASS, PROJECT, PUBLIC_NAMESPACE, PageGuardComponent, PageGuardContentDirective, PageGuardDescriptionDirective, PageGuardImageDirective, PageGuardOperationDirective, PageStateComponent, ParseJsonTranslatePipe, PasswordInputComponent, PodStatusColorMapper, PodStatusComponent, PodStatusEnum, PodStatusIconMapper, PreventClipboardDirective, PreventDirective, PreventHandler, ProductKey, REASON_MAP, RESOURCE_MAC_TYPES, RESOURCE_REQUIREMENT_KEYS, ReadonlyFieldDirective, Reason, RelativeTimeComponent, RequestPool, ResizeDirective, ResourceLabelComponent, ResourceMultiSelectComponent, ResourceYamlDisplayComponent, SERVICE_PORT_BASE_PROTOCOLS, SERVICE_PORT_PROTOCOLS, SERVICE_SESSION_AFFINITIES, SERVICE_TYPES, SLASH, SPACE, SPEC, STATUS, STRATEGY_JUDGE_MAPPER, STRONG_PASSWORD_SPECIAL_CHARS, ScrollBorderObserverDirective, ScrollToFirstInvalidDirective, ScrollToFirstInvalidMarkerDirective, SearchItemComponent, SearchItemLabelDirective, SearchPanelComponent, SecretType, SelectPrefixLabelDirective, SpanComponent, StatusIconComponent, StopDirective, StringArrayFormTableComponent, StrongPasswordDirective, StrongPasswordTooltipComponent, TEMPLATE_OPTIONS, TIMEZONES, TIME_FORMAT, TOKEN_HELP_DOC_DATA, TRUE, TableCellDefDirective, TableComponent, TableCustomColumnsComponent, TableUtilService, TagsLabelComponent, TaintEffect, TestTagComponent, TextEllipsisComponent, TextTooltipDirective, TextWithUrlComponent, ThemeTransformPipe, TimezoneDisplayPipe, TolerationOperator, TrimDirective, UNDERSCORE, UNITS, UNIT_REG, UPDATE, UPDATED_AT, UPDATED__AT, UpdateDescriptionDialogComponent, UpdateDisplayNameDialogComponent, UpdateKeyValueDialogComponent, UploadFileComponent, UserSecurityPolicyRule, UserState, VOLUME_SNAPSHOT_GROUP, ValidateRowDuplicateService, ValidatorsDirective, VolumeMode, VolumeModes, VolumeTypeEnum, WEEK_DAYS, WILDCARD, WORKSPACE_PARAMS, WorkloadKind, WorkloadStatusColorMapper, WorkloadStatusEnum, WorkloadStatusIconComponent, WorkloadStatusIconMapper, YamlUtilService, ZeroStateComponent, addUnitCoreM, addUnitGi, addUnitMi, appendImageHeader, atobWithFallback, buildImageAddress, buildUrl, checkValueExit, clearWindowsXtermTools, commonOptions, compareMinorVersion, compareVersion, copyValue, createActions, createNestedFormControl, cronValidator, cronValidatorBasic, dataTransfer, dateValueOf, defaultFilter, defaultSorter, emptyObjectRemoveRuleFactory, errorColor, extractListParamsFromRoute, extractPagedListParams, extractWorkspace, extractWorkspaceFromRoute, filterEmptyValue, filterTrees, findPath, firstPath, formatCPU, formatMemory, formatNumber, genControlDepsMap, getAppropriateMemory, getBaseHref, getCpu, getCronWeekDayNumbers, getDisabledState, getDisabledState$, getHelpDocUrl, getHostname, getJobStatus, getK8sResourceAnnotationErrorMapper, getK8sResourceAnnotationErrorMapper$, getK8sResourceLabelErrorMapper, getK8sResourceLabelErrorMapper$, getMemory, getPickerTimeRanges, getPodAggregatedStatus, getPodIPs, getPodStatus, getPrivateIP, getPrivateIPv4, getPrivateIPv6, getRelativePath, getResourceLimitAsyncValidatorFn, getResourceLimitValidatorFn, getResourceValue, getResourceViewModel, getToPath, getValidVersion, getWorkloadStatus, initGreaterValidator, isAbsoluteUrl, isB, isCronFieldCountCorrect, isCronWeekDayCorrect, isCronWeekDaysContinuous, isErrorMessage, isJsonObjectString, isK8sResource, isL, isR, isSelectAll, isT, isValidRID, isValidWorkspace, k8sResourceAnnotationKeyValidator, k8sResourceAnnotationValidator, k8sResourceLabelKeyValidator, k8sResourceLabelValidator, k8sResourceLabelValueValidator, loadEnv, logsActions, logsReadOptions, mapTrees, matchExpressionsToString, matchLabelsToString, maxParallelByHttpVersion, noShowRowError, normalizeParams, numToStr, parseDaemonSetStatus, parseDeploymentStatus, parseImageAddress, parseRID, parseStatefulSetStatus, parseToWorkloadStatus, parseUrlInText, parseValidImageName, parseValueAndUnit, parseVersion, parseWorkspace, prefixFilterRuleFactory, primaryColor, queryListParams, randomPassword, readonlyOptions, reduceTrees, removeDirtyFieldsBeforeUpdate, resourceUnits, rowBackgroundColorFn, safeAssign, scrollIntoView, setNode, setupErrorMapper, shortNum, sortByCreationTimestamp, stringToMatchLabels, stringifyRID, stringifyWorkspace, successColor, tableSort, tableSortAdvance, tagRenderDefault, textWriteOptions, toLowerFirstLetter, toNumber, toPercent, toPx, toUnitGi, toUnitI, toUnitMi, toUnitNum, toUnitNumM, trackByName, trackByUid, transferResource, updateActions, versionRegex, viewActions, warnColor, withLoadState, workspaceToPath, yamlFilterField, yamlReadOptions, yamlWriteOptions };
5738
+ export { ACTION, AIT_API_GROUP, ALL, ALL_VALUE, ANNOTATIONS, API_GATEWAY, ARGOCD_GROUP, ARRAY_FORM_TABLE_MODULE, ARRAY_TABLE_FORM_ERROR_BG, ASSIGN_ALL, ASYNC_DATA_MODULE, AccessMode, AccessModes, AclTableVirtualComponent, AclTableVirtualHeaderDefDirective, AclTableVirtualModule, AclTableVirtualPlaceholderDefDirective, AclTableVirtualRowDefDirective, AlaudaDeployStatus, AlaudaRunningStatus, ArrayFormTableComponent, ArrayFormTableFooterDirective, ArrayFormTableHeaderDirective, ArrayFormTableRowControlDirective, ArrayFormTableRowDirective, ArrayFormTableRowErrorDirective, ArrayFormTableRowSeparatorDirective, ArrayFormTableZeroStateDirective, AsyncDataLoader, AsyncFunctionValidatorDirective, AuiCodeEditorHelperDirective, BASE_TIMEZONE, BaseFormContainer, BaseNestedFormControl, BaseNestedFormControlPure, BaseStringMapFormComponent, Bracket, CHART_PICKER_TIME_RANGES, CLUSTER, COMMON_RESOURCE_DEFINITIONS, CORE_UNITS, CORE_UNIT_REG, CREATE, CREATED_AT, CREATION_TIMESTAMP, CREATOR, CRON_ENABLE_7_FOR_SUNDAY, CRON_FORMAT_ERROR, CRON_MIN_INTERVAL_ERROR, CRYPTO_HEADER_KEY, CRYPTO_KEY, CRYPTO_RANDOM_HEADER_KEY, CRYPTO_TYPE, CUSTOM, CUSTOMIZED, CUSTOM_RANGE, CalcPipe, CardSectionComponent, ClickOutsideDirective, CloudHelmRequestStateEnum, CodeDisplayDialogComponent, CoerceNumberDirective, ConfirmDeleteComponent, ConfirmDeleteContentDirective, ConfirmDeleteLabelDirective, ConfirmDeleteTipDirective, ControlValueTraceDirective, CronHumanReadablePipe, CronWeekDays, CrontabNextPipe, CurrentTimeComponent, DATE_FORMAT, DATE_TIME_FORMAT, DEFAULT_CODE_EDITOR_OPTIONS, DEFAULT_CONTAINER_ANNOTATION, DEFAULT_OPERATOR, DEFAULT_OPTIONS, DEFAULT_REASON, DELIMITER, DESCRIPTION, DISPLAY_NAME, DNS1123SubdomainValidator, DOMAIN_PATTERN, DOMAIN_PATTERN_BASE, DOT, DOWNGRADE_WATCH_ENABLED, DOWNGRADE_WATCH_POLLING, DUPLICATE_ERROR_KEY, DUPLICATION_JUSTIFY_STRATEGY, DataSource, DateRangePickerComponent, DeclareDirective, DefaultStatusColorMapper, DefaultStatusIconMapper, DeleteType, DeletingTagComponent, DisabledContainerComponent, DisabledDirective, DragHandleDirective, DurationPipe, E2eAttributeBindingDirective, EFFECT_DIRECTIVE_MODULE, EMAIL_PATTERN, EMPTY, ERRORS_MAPPER_MODULE, ESCAPE_DEACTIVATE_CHECK, ErrorStateComponent, ErrorsMapperComponent, ErrorsMapperDirective, FALSE, FIELDSET_GROUP_COMPONENTS, FeatureGateDirective, FieldSetColumnComponent, FieldSetColumnGroupComponent, FieldSetGroupComponent, FieldSetItemActionDirective, FieldSetItemComponent, FileResultType, FoldableBlockComponent, FoldableItemInTableComponent, FormItemMarginEffectDirective, FunctionValidatorDirective, GLOBAL_CLUSTER, GenericStatusColor, GenericStatusIcon, GuardStatus, HTTP_ADDRESS_PATTERN, HTTP_DUAL_IP_OR_DOMAIN_PATTERN, HTTP_IP_OR_DOMAIN_PATTERN, HYPHEN, HelmRequestPhaseEnum, HelpDocDirective, HelpDocUrlPipe, HelpDocumentComponent, HelpDocumentService, IMAGE_TAG_PATTERN, INT_PATTERN, INT_ZERO_PATTERN, IPV4_IPV6_ADDRESS_HOSTNAME_PORT_PATTERN, IPV6_ADDRESS_HOSTNAME_PATTERN, IPV6_ADDRESS_HOSTNAME_PORT_PATTERN, IPV6_PATTERN_BASE, IP_ADDRESS_HOSTNAME_PATTERN, IP_ADDRESS_HOSTNAME_PATTERN_EXTEND, IP_ADDRESS_HOSTNAME_PORT_PATTERN, IP_ADDRESS_PATTERN, IP_ADDRESS_PORT_PATTERN, IP_ADDRESS_SUBNET_PATTERN, IP_PATTERN, IP_PATTERN_BASE, IP_V4_OR_V6_PATTERN, IP_V6_ADDRESS_PATTERN, IP_V6_PATTERN, InterceptDeactivateDirective, InterceptDeactivateGuard, InterceptDeactivateService, JobStatusColorMapper, JobStatusEnum, JobStatusIconMapper, K8SResourceList, K8SResourceListFooterComponent, K8SResourcePagedList, K8S_APP_API_GROUP, K8S_CORE_API_GROUP, K8S_RESOURCE_LABEL_KEY_NAME_PATTERN, K8S_RESOURCE_LABEL_KEY_PREFIX_PATTERN, K8S_RESOURCE_LABEL_VALUE_PATTERN, K8S_RESOURCE_LIST_MODULE, K8S_RESOURCE_NAME_START_WITH_CHARS_ONLY, K8S_RESOURCE_TRANSLATE_KEY, K8sListFooterLoadingErrorDirective, K8sListFooterNoDataDirective, K8sResourceAction, K8sResourceMarkComponent, K8sResourceTranslateKeyPipe, K8sSharedUtilService, K8sYamlDisplayDialogComponent, KNOWN_COLUMNS, KeyValueFormTableComponent, KeyValueTableComponent, LABELS, LINK, LOCAL_STORAGE_KEY_THEME_MODE, ListDisplayComponent, ListenResizeDirective, LoadAction, LocaleTransformPipe, MACHINE_API_GROUP, METADATA, MUTABLE_BASIC_OPTIONS, MUTABLE_MODULE, MarkedPipe, MaxLengthValidatorDirective, MaxValidatorDirective, MinLengthValidatorDirective, MinValidatorDirective, MinimumFormatPipe, MosaicComponent, MosaicLeftDirective, MosaicRightDirective, MultiSearchActionInputComponent, MultiSearchAdvanced, MultiSearchBasic, MultiSearchComponent, MutableDirective, NAME, NAMESPACE, NOTIFICATION_SERVER_NAME, NOTIFY_DURATION_HEADER, NOTIFY_ON_ERROR_HEADER, NOTIFY_ON_ERROR_HEADERS, NOT_NOTIFY_ON_ERROR_HEADERS, NUMBER_PATTERN, NamespaceBadgeComponent, NotBeValidatorDirective, OAM_GROUP, OnResizeChangeService, OneOfValidatorDirective, OverviewBannerComponent, PACKAGE_RUNTIME_VALUE, PAGE_GUARD_MODULE, PLATFORM_OPS_MODE, PORT_PATTERN, POSITIVE_INT_PATTERN, POSITIVE_NUMBER_PATTERN, PREFIX_LABEL_CLASS, PROJECT, PUBLIC_NAMESPACE, PageGuardComponent, PageGuardContentDirective, PageGuardDescriptionDirective, PageGuardImageDirective, PageGuardOperationDirective, PageStateComponent, ParseJsonTranslatePipe, PasswordInputComponent, PodStatusColorMapper, PodStatusComponent, PodStatusEnum, PodStatusIconMapper, PreventClipboardDirective, PreventDirective, PreventHandler, ProductKey, REASON_MAP, RESOURCE_MAC_TYPES, RESOURCE_REQUIREMENT_KEYS, ReadonlyFieldDirective, Reason, RelativeTimeComponent, RequestPool, ResizeDirective, ResourceLabelComponent, ResourceMultiSelectComponent, ResourceYamlDisplayComponent, SERVICE_PORT_BASE_PROTOCOLS, SERVICE_PORT_PROTOCOLS, SERVICE_SESSION_AFFINITIES, SERVICE_TYPES, SLASH, SPACE, SPEC, STATUS, STRATEGY_JUDGE_MAPPER, STRONG_PASSWORD_SPECIAL_CHARS, ScrollBorderObserverDirective, ScrollToFirstInvalidDirective, ScrollToFirstInvalidMarkerDirective, SearchItemComponent, SearchItemLabelDirective, SearchPanelComponent, SecretType, SelectPrefixLabelDirective, SpanComponent, StatusIconComponent, StopDirective, StringArrayFormTableComponent, StrongPasswordDirective, StrongPasswordTooltipComponent, TEMPLATE_OPTIONS, TIMEZONES, TIME_FORMAT, TOKEN_HELP_DOC_DATA, TRUE, TableCellDefDirective, TableComponent, TableCustomColumnsComponent, TableUtilService, TagsLabelComponent, TaintEffect, TestTagComponent, TextEllipsisComponent, TextTooltipDirective, TextWithUrlComponent, ThemeTransformPipe, TimezoneDisplayPipe, TolerationOperator, TrimDirective, UNDERSCORE, UNITS, UNIT_REG, UPDATE, UPDATED_AT, UPDATED__AT, UpdateDescriptionDialogComponent, UpdateDisplayNameDialogComponent, UpdateKeyValueDialogComponent, UploadFileComponent, UserSecurityPolicyRule, UserState, VOLUME_SNAPSHOT_GROUP, ValidateRowDuplicateService, ValidatorsDirective, VolumeMode, VolumeModes, VolumeTypeEnum, WEEK_DAYS, WILDCARD, WORKSPACE_PARAMS, WorkloadKind, WorkloadStatusColorMapper, WorkloadStatusEnum, WorkloadStatusIconComponent, WorkloadStatusIconMapper, YamlUtilService, ZeroStateComponent, addUnitCoreM, addUnitGi, addUnitMi, appendImageHeader, atobWithFallback, buildImageAddress, buildUrl, checkValueExit, clearWindowsXtermTools, commonOptions, compareMinorVersion, compareVersion, copyValue, createActions, createNestedFormControl, cronValidator, cronValidatorBasic, dataTransfer, dateValueOf, defaultFilter, defaultSorter, emptyObjectRemoveRuleFactory, errorColor, extractListParamsFromRoute, extractPagedListParams, extractWorkspace, extractWorkspaceFromRoute, filterEmptyValue, filterTrees, findPath, firstPath, formatCPU, formatMemory, formatNumber, genControlDepsMap, getAppropriateMemory, getBaseHref, getCpu, getCronWeekDayNumbers, getDisabledState, getDisabledState$, getHelpDocUrl, getHostname, getJobStatus, getK8sResourceAnnotationErrorMapper, getK8sResourceAnnotationErrorMapper$, getK8sResourceLabelErrorMapper, getK8sResourceLabelErrorMapper$, getMemory, getPickerTimeRanges, getPodAggregatedStatus, getPodIPs, getPodStatus, getPrivateIP, getPrivateIPv4, getPrivateIPv6, getRelativePath, getResourceLimitAsyncValidatorFn, getResourceLimitValidatorFn, getResourceValue, getResourceViewModel, getToPath, getValidVersion, getWorkloadStatus, initGreaterValidator, isAbsoluteUrl, isB, isCronFieldCountCorrect, isCronWeekDayCorrect, isCronWeekDaysContinuous, isErrorMessage, isJsonObjectString, isK8sResource, isL, isR, isSelectAll, isT, isValidRID, isValidWorkspace, k8sResourceAnnotationKeyValidator, k8sResourceAnnotationValidator, k8sResourceLabelKeyValidator, k8sResourceLabelValidator, k8sResourceLabelValueValidator, loadEnv, logsActions, logsReadOptions, mapTrees, matchExpressionsToString, matchLabelsToString, maxParallelByHttpVersion, noShowRowError, normalizeParams, numToStr, parseDaemonSetStatus, parseDeploymentStatus, parseImageAddress, parseRID, parseStatefulSetStatus, parseToWorkloadStatus, parseUrlInText, parseValidImageName, parseValueAndUnit, parseVersion, parseWorkspace, prefixFilterRuleFactory, primaryColor, queryListParams, randomPassword, readonlyOptions, reduceTrees, removeDirtyFieldsBeforeUpdate, resourceUnits, rowBackgroundColorFn, safeAssign, scrollIntoView, setNode, setupErrorMapper, shortNum, sortByCreationTimestamp, stringToMatchLabels, stringifyRID, stringifyWorkspace, successColor, tableSort, tableSortAdvance, tagRenderDefault, textWriteOptions, toLowerFirstLetter, toNumber, toPercent, toPx, toUnitGi, toUnitI, toUnitMi, toUnitNum, toUnitNumM, trackByName, trackByUid, transferResource, updateActions, versionRegex, viewActions, warnColor, withLoadState, workspaceToPath, yamlFilterField, yamlReadOptions, yamlWriteOptions };
5692
5739
  export type { APIResourceItem, APIResourceList, AccessTokenInfo, Affinity, AlaudaProductStatus, AnyArray, Arrayable, AsyncLoadState, AvailableResourceType, Callback, Certificate, Cluster, ClusterSpec, ClusterStatus, ClusterStatusCondition, ClusterStatusReason, CodeDisplayDialogData, Condition, ConfigMap, ConfigMapKeyRef, ConfigMapRef, ConfigMapVolumeSource, ConfigWithParams, ConfigWithRoute, ConfirmDeleteData, Container, ContainerPort, ContainerState, ContainerStateRunning, ContainerStateTerminated, ContainerStateWaiting, ContainerStatus, CronJob, CronJobSpec, CronJobStatus, CronWeekDay, CsiVolumeSource, Cursor, CursorX, CursorY, CustomResourceDefinition, CustomResourceDefinitionVersion, DaemonSet, DaemonSetSpec, DaemonSetStatus, DaemonSetUpdateStrategy, DaemonSetUpdateStrategyType, DataError, DataMapper, DataStateAdapter, DatePickerLocale, DateRangePickerModel, DefaultExtraMapper, DeleteResourceApi, Deployment, DeploymentSpec, DeploymentStatus, DeploymentStrategy, DeploymentStrategyType, DiffTimeUnit, DisabledResult, DragRange, EmptyDirVolumeSource, Encoding, EnvFromSource, EnvVar, EnvVarSource, Environments, EphemeralContainer, EphemeralVolumeSource, ErrorMapper, ErrorMapperInterface, ErrorsMapperFn, ExecAction, FetchSeed, Fetcher, FileResult, FormatValue, GenericWorkloadStatus, HTTPGetAction, HTTPHeader, HTTPIngressPath, HTTPIngressRuleValue, HelmRequest, HelmRequestClusterSyncResult, HelmRequestClusterSyncResults, HelmRequestCondition, HelmRequestHttp, HelmRequestOci, HelmRequestSpec, HostAliases, HostPathVolumeSource, IEditorConstructionOptions, Idp, IfEqual, Ingress, IngressBackend, IngressLoadBalancerStatus, IngressRule, IngressSpec, IngressStatus, IngressTLS, InsertFn, ItemsScanner, JSONSchema6TypeName, Job, JobSpec, JobStatus, JobTemplateSpec, K8sEvent, K8sEventSeries, K8sEventSource, K8sYamlDisplayDialogData, KeyToPath, KeyValue, KeyValueTuple, Keys, KubernetesResource, KubernetesResourceList, KubernetesSubject, LabelSelector, LabelSelectorRequirement, LdapConfig, LdapGroupSearch, LdapUserSearch, LimitRange, LimitRangeItem, LimitRangeSpec, LimitType, ListFetchParams, ListParams, LiteralUnion, LoadBalancerIngress, LoadSnapshot, LoadState$1 as LoadState, LoaderConfig, LoaderConfigWithInterval, LocalObjectReference, LocaleDisplay, MatchValueFn, MultiSearchOption, MutableOptions, NameSpaceResourceRatio, Namespace, NamespaceStatus, Node, NodeAffinity, NodeAffinityTerm, NodeSelectorTerm, NodeStatus, NodeStatusReason, NodeStatusType, NodeTaint, NormalizedDefaultExtraMapper, NormalizedTableColumnActionExtra, NormalizedTableColumnActionExtraItem, NormalizedTableColumnDef, NotBeValue, Nullable, ObjectFieldSelector, ObjectMeta, ObjectReference, ObservableType, OidcConfig, OneOfValue, OpenAPIV3SchemaObject, Options, OverviewBannerOption, OwnerReference, PagedListConfig, Pagination, PersistentVolumeClaim, PersistentVolumeClaimDataSource, PersistentVolumeClaimSpec, PersistentVolumeClaimStatus, PersistentVolumeClaimVolumeSource, PickerTimeRange, Pod, PodAffinity, PodAffinityTerm, PodLifeCycle, PodLifeCycleHook, PodSpec, PodSpecAffinity, PodStatus, PodTemplateSpec, Point, PreferredAffinity, Probe, ProductBase, ProductBaseSpec, ProductBaseStatus, ProductEntry, ProductEntrySpec, ProductEntryStatus, ProductStatus, ProductStatusCondition, Project, ProjectCluster, ProjectSpec, QueryDisabledFunc, Readonlyable, RequiredAffinity, ResizeCursor, ResizeEvent, ResourceAttributes, ResourceControl, ResourceFieldSelector, ResourceIdentifier, ResourceListParams, ResourceMacFormModal, ResourceMacKey, ResourceMacs, ResourcePatch, ResourceRequirementFormModal, ResourceRequirementKey, ResourceRequirementStrict, ResourceRequirements, RoleCustomRule, RoleRule, RoleTemplate, RoleTemplateSpec, RollingUpdateDaemonSet, RollingUpdateDeployment, RollingUpdateStatefulSetStrategy, SafeAssignOptions, ScopeSelector, ScopedResourceSelectorRequirement, SearchCondition, SearchConditionConfig, SearchConditionModel, SearchTagConfig, Secret, SecretKeyRef, SecretRef, SecretVolumeSource, SelfResourceAttributes, SelfSubjectAccessReview, SelfSubjectAccessReviewSpec, Service, ServicePort, ServicePortBaseProtocol, ServicePortProtocol, ServiceSessionAffinity, ServiceSpec, ServiceType, StatefulSet, StatefulSetSpec, StatefulSetStatus, StatefulSetUpdateStrategy, StatefulSetUpdateStrategyType, Status, StrategyFn, StreamListLoader, StreamListLoaderSnapshot, StringMap, SubjectAccessReview, SubjectAccessReviewSpec, SubjectAccessReviewStatus, TCPSocketAction, TableColumn, TableColumnActionConfig, TableColumnActionDisabledHandler, TableColumnActionExtra, TableColumnActionExtraItem, TableColumnActionTooltipHandler, TableColumnDef, TableColumnDefPath, TableColumnDefs, TableColumnNameExtra, TableColumnSort, TableColumnSortDirection, TableColumnSortHandler, TableColumnTranslateHandler, TableColumns, TableFilterFn, Text, Tls, Toleration, Tree, TreeFilter, TreeMapper, TreeReducer, TypeMeta, UnaryObservableFunction, UntypedKubernetesResource, UpdateKeyValueDialogData, User, UserBinding, UserBindingSpec, UserGroup, UserGroupSpec, UserList, UserPolicy, UserPolicyRule, UserRole, UserRoleNamespace, UserSpec, ValueOf, VersionObject, Volume, VolumeMount, Watcher, WatcherParams, WebhookType, WeightedNodeAffinityTerm, WeightedPodAffinityTerm, WithLoadState, Workload, WorkloadStatus, Workspace, WorkspaceDetailParams, WorkspaceListParams, YamlFilterItem };
@@ -1,131 +0,0 @@
1
- // asci colors
2
- @include theme-light {
3
- .ansi-black-fg {
4
- color: rgb(0 0 0);
5
- }
6
-
7
- .ansi-red-fg {
8
- color: rgb(205 0 0);
9
- }
10
-
11
- .ansi-green-fg {
12
- color: rgb(0 205 0);
13
- }
14
-
15
- .ansi-yellow-fg {
16
- color: rgb(205 205 0);
17
- }
18
-
19
- .ansi-blue-fg {
20
- color: rgb(0 0 238);
21
- }
22
-
23
- .ansi-magenta-fg {
24
- color: rgb(205 0 205);
25
- }
26
-
27
- .ansi-cyan-fg {
28
- color: rgb(0 205 205);
29
- }
30
-
31
- .ansi-white-fg {
32
- color: rgb(229 229 229);
33
- }
34
-
35
- .ansi-bright-black-fg {
36
- color: rgb(127 127 127);
37
- }
38
-
39
- .ansi-bright-red-fg {
40
- color: rgb(255 0 0);
41
- }
42
-
43
- .ansi-bright-green-fg {
44
- color: rgb(0 255 0);
45
- }
46
-
47
- .ansi-bright-yellow-fg {
48
- color: rgb(255 255 0);
49
- }
50
-
51
- .ansi-bright-blue-fg {
52
- color: rgb(92 92 255);
53
- }
54
-
55
- .ansi-bright-magenta-fg {
56
- color: rgb(255 0 255);
57
- }
58
-
59
- .ansi-bright-cyan-fg {
60
- color: rgb(0 255 255);
61
- }
62
-
63
- .ansi-bright-white-fg {
64
- color: rgb(255 255 255);
65
- }
66
- }
67
- @include theme-dark {
68
- .ansi-black-bg {
69
- /* black bg = transparent */
70
- }
71
-
72
- .ansi-red-bg {
73
- background-color: rgb(205 0 0);
74
- }
75
-
76
- .ansi-green-bg {
77
- background-color: rgb(0 205 0);
78
- }
79
-
80
- .ansi-yellow-bg {
81
- background-color: rgb(205 205 0);
82
- }
83
-
84
- .ansi-blue-bg {
85
- background-color: rgb(0 0 238);
86
- }
87
-
88
- .ansi-magenta-bg {
89
- background-color: rgb(205 0 205);
90
- }
91
-
92
- .ansi-cyan-bg {
93
- background-color: rgb(0 205 205);
94
- }
95
-
96
- .ansi-white-bg {
97
- background-color: rgb(255 255 255 / 70%); /* alpha baby! */
98
- }
99
-
100
- .ansi-bright-black-bg {
101
- background-color: rgb(127 127 127);
102
- }
103
-
104
- .ansi-bright-red-bg {
105
- background-color: rgb(255 0 0);
106
- }
107
-
108
- .ansi-bright-green-bg {
109
- background-color: rgb(0 255 0);
110
- }
111
-
112
- .ansi-bright-yellow-bg {
113
- background-color: rgb(255 255 0);
114
- }
115
-
116
- .ansi-bright-blue-bg {
117
- background-color: rgb(92 92 255);
118
- }
119
-
120
- .ansi-bright-magenta-bg {
121
- background-color: rgb(255 0 255);
122
- }
123
-
124
- .ansi-bright-cyan-bg {
125
- background-color: rgb(0 255 255);
126
- }
127
-
128
- .ansi-bright-white-bg {
129
- background-color: rgb(255 255 255);
130
- }
131
- }
@@ -1,107 +0,0 @@
1
- @mixin markdown-theme-dark {
2
- color-scheme: dark;
3
-
4
- --color-prettylights-syntax-comment: #8b949e;
5
- --color-prettylights-syntax-constant: #79c0ff;
6
- --color-prettylights-syntax-entity: #d2a8ff;
7
- --color-prettylights-syntax-storage-modifier-import: #c9d1d9;
8
- --color-prettylights-syntax-entity-tag: #7ee787;
9
- --color-prettylights-syntax-keyword: #ff7b72;
10
- --color-prettylights-syntax-string: #a5d6ff;
11
- --color-prettylights-syntax-variable: #ffa657;
12
- --color-prettylights-syntax-brackethighlighter-unmatched: #f85149;
13
- --color-prettylights-syntax-invalid-illegal-text: #f0f6fc;
14
- --color-prettylights-syntax-invalid-illegal-bg: #8e1519;
15
- --color-prettylights-syntax-carriage-return-text: #f0f6fc;
16
- --color-prettylights-syntax-carriage-return-bg: #b62324;
17
- --color-prettylights-syntax-string-regexp: #7ee787;
18
- --color-prettylights-syntax-markup-list: #f2cc60;
19
- --color-prettylights-syntax-markup-heading: #1f6feb;
20
- --color-prettylights-syntax-markup-italic: #c9d1d9;
21
- --color-prettylights-syntax-markup-bold: #c9d1d9;
22
- --color-prettylights-syntax-markup-deleted-text: #ffdcd7;
23
- --color-prettylights-syntax-markup-deleted-bg: #67060c;
24
- --color-prettylights-syntax-markup-inserted-text: #aff5b4;
25
- --color-prettylights-syntax-markup-inserted-bg: #033a16;
26
- --color-prettylights-syntax-markup-changed-text: #ffdfb6;
27
- --color-prettylights-syntax-markup-changed-bg: #5a1e02;
28
- --color-prettylights-syntax-markup-ignored-text: #c9d1d9;
29
- --color-prettylights-syntax-markup-ignored-bg: #1158c7;
30
- --color-prettylights-syntax-meta-diff-range: #d2a8ff;
31
- --color-prettylights-syntax-brackethighlighter-angle: #8b949e;
32
- --color-prettylights-syntax-sublimelinter-gutter-mark: #484f58;
33
- --color-prettylights-syntax-constant-other-reference-link: #a5d6ff;
34
- --color-fg-default: #c9d1d9;
35
- --color-fg-muted: #8b949e;
36
- --color-fg-subtle: #484f58;
37
- --color-canvas-default: transparent;
38
- --color-canvas-subtle: #161b22;
39
- --color-border-default: #30363d;
40
- --color-border-muted: #21262d;
41
- --color-neutral-muted: rgb(110 118 129 / 40%);
42
- --color-accent-fg: #58a6ff;
43
- --color-accent-emphasis: #1f6feb;
44
- --color-attention-subtle: rgb(187 128 9 / 15%);
45
- --color-danger-fg: #f85149;
46
- }
47
-
48
- @mixin markdown-theme-light {
49
- color-scheme: light;
50
-
51
- --color-prettylights-syntax-comment: #6e7781;
52
- --color-prettylights-syntax-constant: #0550ae;
53
- --color-prettylights-syntax-entity: #8250df;
54
- --color-prettylights-syntax-storage-modifier-import: #24292f;
55
- --color-prettylights-syntax-entity-tag: #116329;
56
- --color-prettylights-syntax-keyword: #cf222e;
57
- --color-prettylights-syntax-string: #0a3069;
58
- --color-prettylights-syntax-variable: #953800;
59
- --color-prettylights-syntax-brackethighlighter-unmatched: #82071e;
60
- --color-prettylights-syntax-invalid-illegal-text: #f6f8fa;
61
- --color-prettylights-syntax-invalid-illegal-bg: #82071e;
62
- --color-prettylights-syntax-carriage-return-text: #f6f8fa;
63
- --color-prettylights-syntax-carriage-return-bg: #cf222e;
64
- --color-prettylights-syntax-string-regexp: #116329;
65
- --color-prettylights-syntax-markup-list: #3b2300;
66
- --color-prettylights-syntax-markup-heading: #0550ae;
67
- --color-prettylights-syntax-markup-italic: #24292f;
68
- --color-prettylights-syntax-markup-bold: #24292f;
69
- --color-prettylights-syntax-markup-deleted-text: #82071e;
70
- --color-prettylights-syntax-markup-deleted-bg: #ffebe9;
71
- --color-prettylights-syntax-markup-inserted-text: #116329;
72
- --color-prettylights-syntax-markup-inserted-bg: #dafbe1;
73
- --color-prettylights-syntax-markup-changed-text: #953800;
74
- --color-prettylights-syntax-markup-changed-bg: #ffd8b5;
75
- --color-prettylights-syntax-markup-ignored-text: #eaeef2;
76
- --color-prettylights-syntax-markup-ignored-bg: #0550ae;
77
- --color-prettylights-syntax-meta-diff-range: #8250df;
78
- --color-prettylights-syntax-brackethighlighter-angle: #57606a;
79
- --color-prettylights-syntax-sublimelinter-gutter-mark: #8c959f;
80
- --color-prettylights-syntax-constant-other-reference-link: #0a3069;
81
- --color-fg-default: #24292f;
82
- --color-fg-muted: #57606a;
83
- --color-fg-subtle: #6e7781;
84
- --color-canvas-default: transparent;
85
- --color-canvas-subtle: #f6f8fa;
86
- --color-border-default: #d0d7de;
87
- --color-border-muted: hsl(210deg 18% 87% / 100%);
88
- --color-neutral-muted: rgb(175 184 193 / 20%);
89
- --color-accent-fg: #0969da;
90
- --color-accent-emphasis: #0969da;
91
- --color-attention-subtle: #fff8c5;
92
- --color-danger-fg: #cf222e;
93
- }
94
-
95
- @include theme-light {
96
- .markdown-body {
97
- padding: 0;
98
- @include markdown-theme-light;
99
- }
100
- }
101
-
102
- @include theme-dark {
103
- .markdown-body {
104
- padding: 0;
105
- @include markdown-theme-dark;
106
- }
107
- }