@pc-nexus/models 0.8.0-next.8 → 0.8.0-next.9

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.
@@ -1,8 +1,9 @@
1
- var NexusAppEnvironment;
2
- (function (NexusAppEnvironment) {
3
- NexusAppEnvironment["Development"] = "development";
4
- NexusAppEnvironment["Production"] = "production";
5
- })(NexusAppEnvironment || (NexusAppEnvironment = {}));
1
+ var EnvironmentType;
2
+ (function (EnvironmentType) {
3
+ EnvironmentType["Development"] = "development";
4
+ EnvironmentType["Production"] = "production";
5
+ EnvironmentType["Staging"] = "staging";
6
+ })(EnvironmentType || (EnvironmentType = {}));
6
7
 
7
8
  const NEXUS_EXTENSION_DATA_CONFIG_CHANGED = "NEXUS_EXTENSION_DATA_CONFIG_CHANGED";
8
9
 
@@ -59,6 +60,18 @@ const NX_BUTTON_GROUP_TYPE = ["primary", "outline-default", "outline-primary"];
59
60
 
60
61
  const NX_HEADING_AS = ["h1", "h2", "h3", "h4", "h5", "h6"];
61
62
 
63
+ const NX_ICON_TYPE = ["outline", "fill"];
64
+
65
+ const NX_INPUT_SIZE = ["xs", "sm", "md", "default", "lg"];
66
+
67
+ const NX_TABS_TYPE = ["pulled", "tabs", "pills", "lite"];
68
+ const NX_TABS_SIZE = ["lg", "md", "sm"];
69
+
70
+ const NX_TAG_COLOR = ["default", "primary", "success", "info", "warning", "danger"];
71
+ const NX_TAG_APPEARANCE = ["fill", "outline", "subtle"];
72
+ const NX_TAG_SIZE = ["sm", "md", "lg"];
73
+ const NX_TAG_SHAPE = ["pill", "rectangle"];
74
+
62
75
  const NX_TEXT_AS = ["em", "p", "span", "strong", "strike"];
63
76
  const NX_TEXT_ALIGN = ["center", "start", "end"];
64
77
  const NX_TEXT_WEIGHT = ["bold", "medium", "regular", "semibold"];
@@ -71,5 +84,5 @@ const NX_TEXT_WEIGHT = ["bold", "medium", "regular", "semibold"];
71
84
  * Generated bundle index. Do not edit.
72
85
  */
73
86
 
74
- export { HOST_DISPATCH_NATIVE_UI_EVENT, HistoryAction, NEXUS_CONFIG_READY_EVENT, NEXUS_CONTENT_CHANGE_EVENT, NEXUS_CONTENT_UPDATE_EVENT, NEXUS_EXTENSION_DATA_CONFIG_CHANGED, NX_BUTTON_GROUP_SIZE, NX_BUTTON_GROUP_TYPE, NX_BUTTON_SIZE, NX_BUTTON_TYPE, NX_HEADING_AS, NX_TEXT_ALIGN, NX_TEXT_AS, NX_TEXT_WEIGHT, NavigationTarget, NexusAppEnvironment, NotifyType, SUPPORTED_LOCALE_CODES, WorkitemTypeGroup };
87
+ export { EnvironmentType, HOST_DISPATCH_NATIVE_UI_EVENT, HistoryAction, NEXUS_CONFIG_READY_EVENT, NEXUS_CONTENT_CHANGE_EVENT, NEXUS_CONTENT_UPDATE_EVENT, NEXUS_EXTENSION_DATA_CONFIG_CHANGED, NX_BUTTON_GROUP_SIZE, NX_BUTTON_GROUP_TYPE, NX_BUTTON_SIZE, NX_BUTTON_TYPE, NX_HEADING_AS, NX_ICON_TYPE, NX_INPUT_SIZE, NX_TABS_SIZE, NX_TABS_TYPE, NX_TAG_APPEARANCE, NX_TAG_COLOR, NX_TAG_SHAPE, NX_TAG_SIZE, NX_TEXT_ALIGN, NX_TEXT_AS, NX_TEXT_WEIGHT, NavigationTarget, NotifyType, SUPPORTED_LOCALE_CODES, WorkitemTypeGroup };
75
88
  //# sourceMappingURL=pc-nexus-models.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"pc-nexus-models.mjs","sources":["../../../../web/models/src/environment.ts","../../../../web/models/src/events.ts","../../../../web/models/src/locale.ts","../../../../web/models/src/navigation.ts","../../../../web/models/src/notify.ts","../../../../web/models/src/richtext.ts","../../../../web/models/src/v-dom.ts","../../../../web/models/src/view.ts","../../../../web/models/src/workitem.ts","../../../../web/models/src/components/button.ts","../../../../web/models/src/components/heading.ts","../../../../web/models/src/components/text.ts","../../../../web/models/src/public-api.ts","../../../../web/models/src/pc-nexus-models.ts"],"sourcesContent":["export enum NexusAppEnvironment {\n Development = \"development\",\n Production = \"production\",\n}\n","export const NEXUS_EXTENSION_DATA_CONFIG_CHANGED = \"NEXUS_EXTENSION_DATA_CONFIG_CHANGED\";\n\nexport interface Subscription {\n unsubscribe: () => void;\n}\n","export const SUPPORTED_LOCALE_CODES = [\"zh-CN\", \"en-US\"] as const;\n\nexport type SupportedLocaleCode = (typeof SUPPORTED_LOCALE_CODES)[number];\n\nexport interface Translator {\n translate: (key: string, params?: Record<string, any>) => TranslationsResourceContent | string;\n}\nexport interface GetTranslationsResult {\n locale: SupportedLocaleCode;\n translations: TranslationsResourceContent | null;\n}\n\nexport interface TranslationsResourceContent {\n [key: string]: string | TranslationsResourceContent;\n}\n","export enum NavigationTarget {\n Workitem = \"workitem\",\n Testcase = \"testcase\",\n Page = \"page\",\n Idea = \"idea\",\n Ticket = \"ticket\",\n Project = \"project\",\n Library = \"library\",\n Space = \"space\",\n Product = \"product\",\n}\n\ninterface NavigationTargetParams {\n target: NavigationTarget;\n id: string;\n}\n\nexport type NavigationLocation = NavigationTargetParams;\n","export enum NotifyType {\n Success = \"success\",\n Error = \"error\",\n Warning = \"warning\",\n Info = \"info\",\n}\n\nexport interface NotifyOptions {\n type: NotifyType;\n title?: string;\n description?: string;\n detail?: string | NotifyDetail;\n actions?: NotifyAction[];\n isAutoClose?: boolean;\n}\n\nexport interface NotifyRef {\n readonly close: () => void;\n}\n\nexport interface NotifyDetail {\n link?: string;\n content?: string;\n}\n\nexport interface NotifyAction {\n text: string;\n icon?: string;\n onClick: (event?: Event) => void;\n}\n","export const NEXUS_CONTENT_UPDATE_EVENT = \"nexus:content:update\";\nexport const NEXUS_CONTENT_CHANGE_EVENT = \"nexus:content:change\";\nexport const NEXUS_CONFIG_READY_EVENT = \"nexus:config:ready\";\n\nexport interface RichtextText {\n text: string;\n [key: string]: unknown;\n}\n\nexport interface RichtextElement {\n type: string;\n children: (RichtextDescendant | RichtextText)[];\n [key: string]: unknown;\n}\n\nexport type RichtextDescendant = RichtextElement;\nexport type RichtextContent = RichtextDescendant[];\n\nexport interface RichtextRendererRef {\n readonly iframe: HTMLIFrameElement;\n readonly update: (content: RichtextContent) => void;\n}\n\nexport interface RichtextEditorRef extends RichtextRendererRef {\n readonly destroy: () => void;\n}\n\nexport interface RichtextRendererOptions {\n content?: RichtextContent;\n}\n\nexport interface RichtextEditorOptions extends RichtextRendererOptions {\n onContentChange?: (content: RichtextContent) => void;\n}\n\nexport interface RichtextBridgeMessage {\n type: string;\n content?: any;\n timestamp?: number;\n source?: string;\n readonly?: boolean;\n}\n","export interface VirtualNodeSnapshot {\n kind: string;\n id: number;\n tagName?: string;\n namespace?: string | null;\n value?: string;\n attributes?: Record<string, string>;\n classes?: string[];\n styles?: Record<string, VirtualStyle>;\n properties?: Record<string, unknown>;\n listeners?: VirtualListener[];\n children?: VirtualNodeSnapshot[];\n /**\n * Host 侧投影复用:父组件含 ng-content 时预创建的 DOM 节点(元素宿主或文本)。\n */\n hostNode?: Node;\n}\n\nexport interface SupportedFrontendFramework {\n name: \"react\" | \"angular\";\n version: string;\n}\n\nexport interface ReconcilePayload {\n version: number;\n snapshot: VirtualNodeSnapshot;\n}\n\nexport interface VirtualStyle {\n value: string;\n flags?: number;\n}\n\nexport interface VirtualListener {\n name: string;\n id: string;\n options?: unknown;\n}\n\nexport interface DispatchEventPayload {\n id: string;\n name: string;\n nodeId: number;\n /** 组件 output / 表单 valueChange 等场景下的回调参数 */\n detail?: unknown;\n}\n\n/** Host → Child:派发虚拟 DOM 节点事件 */\nexport const HOST_DISPATCH_NATIVE_UI_EVENT = \"hostDispatchToNativeUiEvent\";\n","export enum HistoryAction {\n Pop = \"POP\",\n Push = \"PUSH\",\n Replace = \"REPLACE\",\n}\n\nexport interface HistoryPath {\n pathname: string;\n search: string;\n hash: string;\n}\n\nexport type HistoryTo = string | Partial<HistoryPath>;\n\nexport type HistoryState = unknown;\n\nexport interface HistoryLocation extends HistoryPath {\n state: HistoryState;\n}\n\nexport interface HistoryUpdate {\n action: HistoryAction;\n location: HistoryLocation;\n}\n\nexport interface HistoryListener {\n (update: HistoryUpdate): void;\n}\n\nexport type UnlistenCallback = () => void;\n\nexport interface NexusHistory {\n action: HistoryAction;\n location: HistoryLocation;\n push(to: HistoryTo, state?: HistoryState): void;\n replace(to: HistoryTo, state?: HistoryState): void;\n go(delta: number): void;\n back(): void;\n forward(): void;\n listen(listener: HistoryListener): Promise<UnlistenCallback>;\n}\n","export enum WorkitemTypeGroup {\n Requirement = 1,\n Task = 2,\n Bug = 3,\n Issue = 4,\n Plan = 5,\n}\n\nexport interface Workitem {\n id: string;\n short_id: string;\n identifier: string;\n title: string;\n type_group?: WorkitemTypeGroup;\n type_id?: string;\n}\n\nexport interface WorkitemOpenCreateOptions {\n defaultValues?: {\n title?: string;\n project_id?: string;\n description?: string;\n };\n onSuccess?: (payload: Workitem) => void;\n}\n","export const NX_BUTTON_TYPE = [\"primary\", \"info\", \"danger\", \"warning\", \"success\"] as const;\n\nexport type NxButtonType = (typeof NX_BUTTON_TYPE)[number];\n\nexport const NX_BUTTON_SIZE = [\"xs\", \"sm\", \"md\", \"default\", \"lg\"] as const;\n\nexport type NxButtonSize = (typeof NX_BUTTON_SIZE)[number];\n\nexport interface NxButtonInputs {\n type?: NxButtonType;\n size?: NxButtonSize;\n icon?: string;\n block?: boolean;\n}\n\nexport const NX_BUTTON_GROUP_SIZE = [\"xs\", \"sm\", \"md\", \"lg\"] as const;\n\nexport type NxButtonGroupSize = (typeof NX_BUTTON_GROUP_SIZE)[number];\n\nexport const NX_BUTTON_GROUP_TYPE = [\"primary\", \"outline-default\", \"outline-primary\"] as const;\n\nexport type NxButtonGroupType = (typeof NX_BUTTON_GROUP_TYPE)[number];\n\nexport interface NxButtonGroupInputs {\n size?: NxButtonGroupSize;\n type?: NxButtonGroupType;\n}\n","export const NX_HEADING_AS = [\"h1\", \"h2\", \"h3\", \"h4\", \"h5\", \"h6\"] as const;\n\nexport type NxHeadingAs = (typeof NX_HEADING_AS)[number];\n\nexport interface NxHeadingInputs {\n as?: NxHeadingAs;\n}\n","export const NX_TEXT_AS = [\"em\", \"p\", \"span\", \"strong\", \"strike\"] as const;\n\nexport type NxTextAs = (typeof NX_TEXT_AS)[number];\n\nexport const NX_TEXT_ALIGN = [\"center\", \"start\", \"end\"] as const;\n\nexport type NxTextAlign = (typeof NX_TEXT_ALIGN)[number];\n\nexport const NX_TEXT_WEIGHT = [\"bold\", \"medium\", \"regular\", \"semibold\"] as const;\n\nexport type NxTextWeight = (typeof NX_TEXT_WEIGHT)[number];\n\nexport interface NxTextInputs {\n as?: NxTextAs;\n align?: NxTextAlign;\n weight?: NxTextWeight;\n}\n","/*\n * Public API Surface of models\n */\n\nexport * from \"./api\";\nexport * from \"./baseline\";\nexport * from \"./condition\";\nexport * from \"./context\";\nexport * from \"./dialog\";\nexport * from \"./environment\";\nexport * from \"./events\";\nexport * from \"./extension\";\nexport * from \"./idea\";\nexport * from \"./invoke\";\nexport * from \"./locale\";\nexport * from \"./navigation\";\nexport * from \"./notify\";\nexport * from \"./page\";\nexport * from \"./processor\";\nexport * from \"./remote\";\nexport * from \"./richtext\";\nexport * from \"./store\";\nexport * from \"./testcase\";\nexport * from \"./ticket\";\nexport * from \"./user\";\nexport * from \"./v-dom\";\nexport * from \"./view\";\nexport * from \"./viewport\";\nexport * from \"./workitem\";\nexport * from \"./components\";\nexport * from \"./realtime\";\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"pc-nexus-models.mjs","sources":["../../../../web/models/src/environment.ts","../../../../web/models/src/events.ts","../../../../web/models/src/locale.ts","../../../../web/models/src/navigation.ts","../../../../web/models/src/notify.ts","../../../../web/models/src/richtext.ts","../../../../web/models/src/v-dom.ts","../../../../web/models/src/view.ts","../../../../web/models/src/workitem.ts","../../../../web/models/src/components/button.ts","../../../../web/models/src/components/heading.ts","../../../../web/models/src/components/icon.ts","../../../../web/models/src/components/input.ts","../../../../web/models/src/components/tabs.ts","../../../../web/models/src/components/tag.ts","../../../../web/models/src/components/text.ts","../../../../web/models/src/public-api.ts","../../../../web/models/src/pc-nexus-models.ts"],"sourcesContent":["export enum EnvironmentType {\n Development = \"development\",\n\n Production = \"production\",\n\n Staging = \"staging\",\n}\n","export const NEXUS_EXTENSION_DATA_CONFIG_CHANGED = \"NEXUS_EXTENSION_DATA_CONFIG_CHANGED\";\n\nexport interface Subscription {\n unsubscribe: () => void;\n}\n","export const SUPPORTED_LOCALE_CODES = [\"zh-CN\", \"en-US\"] as const;\n\nexport type SupportedLocaleCode = (typeof SUPPORTED_LOCALE_CODES)[number];\n\nexport interface Translator {\n translate: (key: string, params?: Record<string, any>) => TranslationsResourceContent | string;\n}\nexport interface GetTranslationsResult {\n locale: SupportedLocaleCode;\n translations: TranslationsResourceContent | null;\n}\n\nexport interface TranslationsResourceContent {\n [key: string]: string | TranslationsResourceContent;\n}\n","export enum NavigationTarget {\n Workitem = \"workitem\",\n Testcase = \"testcase\",\n Page = \"page\",\n Idea = \"idea\",\n Ticket = \"ticket\",\n Project = \"project\",\n Library = \"library\",\n Space = \"space\",\n Product = \"product\",\n}\n\ninterface NavigationTargetParams {\n target: NavigationTarget;\n id: string;\n}\n\nexport type NavigationLocation = NavigationTargetParams;\n","export enum NotifyType {\n Success = \"success\",\n Error = \"error\",\n Warning = \"warning\",\n Info = \"info\",\n}\n\nexport interface NotifyOptions {\n type: NotifyType;\n title?: string;\n description?: string;\n detail?: string | NotifyDetail;\n actions?: NotifyAction[];\n isAutoClose?: boolean;\n}\n\nexport interface NotifyRef {\n readonly close: () => void;\n}\n\nexport interface NotifyDetail {\n link?: string;\n content?: string;\n}\n\nexport interface NotifyAction {\n text: string;\n icon?: string;\n onClick: (event?: Event) => void;\n}\n","export const NEXUS_CONTENT_UPDATE_EVENT = \"nexus:content:update\";\nexport const NEXUS_CONTENT_CHANGE_EVENT = \"nexus:content:change\";\nexport const NEXUS_CONFIG_READY_EVENT = \"nexus:config:ready\";\n\nexport interface RichtextText {\n text: string;\n [key: string]: unknown;\n}\n\nexport interface RichtextElement {\n type: string;\n children: (RichtextDescendant | RichtextText)[];\n [key: string]: unknown;\n}\n\nexport type RichtextDescendant = RichtextElement;\nexport type RichtextContent = RichtextDescendant[];\n\nexport interface RichtextRendererRef {\n readonly iframe: HTMLIFrameElement;\n readonly update: (content: RichtextContent) => void;\n}\n\nexport interface RichtextEditorRef extends RichtextRendererRef {\n readonly destroy: () => void;\n}\n\nexport interface RichtextRendererOptions {\n content?: RichtextContent;\n}\n\nexport interface RichtextEditorOptions extends RichtextRendererOptions {\n onContentChange?: (content: RichtextContent) => void;\n}\n\nexport interface RichtextBridgeMessage {\n type: string;\n content?: any;\n timestamp?: number;\n source?: string;\n readonly?: boolean;\n}\n","export interface VirtualNodeSnapshot {\n kind: string;\n id: number;\n tagName?: string;\n namespace?: string | null;\n value?: string;\n attributes?: Record<string, string>;\n classes?: string[];\n styles?: Record<string, VirtualStyle>;\n properties?: Record<string, unknown>;\n listeners?: VirtualListener[];\n children?: VirtualNodeSnapshot[];\n /**\n * Host 侧投影复用:父组件含 ng-content 时预创建的 DOM 节点(元素宿主或文本)。\n */\n hostNode?: Node;\n}\n\nexport interface SupportedFrontendFramework {\n name: \"react\" | \"angular\";\n version: string;\n}\n\nexport interface ReconcilePayload {\n version: number;\n snapshot: VirtualNodeSnapshot;\n}\n\nexport interface VirtualStyle {\n value: string;\n flags?: number;\n}\n\nexport interface VirtualListener {\n name: string;\n id: string;\n options?: unknown;\n}\n\nexport interface DispatchEventPayload {\n id: string;\n name: string;\n nodeId: number;\n /** 组件 output / 表单 valueChange 等场景下的回调参数 */\n detail?: unknown;\n}\n\n/** Host → Child:派发虚拟 DOM 节点事件 */\nexport const HOST_DISPATCH_NATIVE_UI_EVENT = \"hostDispatchToNativeUiEvent\";\n","export enum HistoryAction {\n Pop = \"POP\",\n Push = \"PUSH\",\n Replace = \"REPLACE\",\n}\n\nexport interface HistoryPath {\n pathname: string;\n search: string;\n hash: string;\n}\n\nexport type HistoryTo = string | Partial<HistoryPath>;\n\nexport type HistoryState = unknown;\n\nexport interface HistoryLocation extends HistoryPath {\n state: HistoryState;\n}\n\nexport interface HistoryUpdate {\n action: HistoryAction;\n location: HistoryLocation;\n}\n\nexport interface HistoryListener {\n (update: HistoryUpdate): void;\n}\n\nexport type UnlistenCallback = () => void;\n\nexport interface NexusHistory {\n action: HistoryAction;\n location: HistoryLocation;\n push(to: HistoryTo, state?: HistoryState): void;\n replace(to: HistoryTo, state?: HistoryState): void;\n go(delta: number): void;\n back(): void;\n forward(): void;\n listen(listener: HistoryListener): Promise<UnlistenCallback>;\n}\n","export enum WorkitemTypeGroup {\n Requirement = 1,\n Task = 2,\n Bug = 3,\n Issue = 4,\n Plan = 5,\n}\n\nexport interface Workitem {\n id: string;\n short_id: string;\n identifier: string;\n title: string;\n type_group?: WorkitemTypeGroup;\n type_id?: string;\n}\n\nexport interface WorkitemOpenCreateOptions {\n defaultValues?: {\n title?: string;\n project_id?: string;\n description?: string;\n };\n onSuccess?: (payload: Workitem) => void;\n}\n","export const NX_BUTTON_TYPE = [\"primary\", \"info\", \"danger\", \"warning\", \"success\"] as const;\n\nexport type NxButtonType = (typeof NX_BUTTON_TYPE)[number];\n\nexport const NX_BUTTON_SIZE = [\"xs\", \"sm\", \"md\", \"default\", \"lg\"] as const;\n\nexport type NxButtonSize = (typeof NX_BUTTON_SIZE)[number];\n\nexport interface NxButtonInputs {\n type?: NxButtonType;\n size?: NxButtonSize;\n icon?: string;\n block?: boolean;\n}\n\nexport const NX_BUTTON_GROUP_SIZE = [\"xs\", \"sm\", \"md\", \"lg\"] as const;\n\nexport type NxButtonGroupSize = (typeof NX_BUTTON_GROUP_SIZE)[number];\n\nexport const NX_BUTTON_GROUP_TYPE = [\"primary\", \"outline-default\", \"outline-primary\"] as const;\n\nexport type NxButtonGroupType = (typeof NX_BUTTON_GROUP_TYPE)[number];\n\nexport interface NxButtonGroupInputs {\n size?: NxButtonGroupSize;\n type?: NxButtonGroupType;\n}\n","export const NX_HEADING_AS = [\"h1\", \"h2\", \"h3\", \"h4\", \"h5\", \"h6\"] as const;\n\nexport type NxHeadingAs = (typeof NX_HEADING_AS)[number];\n\nexport interface NxHeadingInputs {\n as?: NxHeadingAs;\n id?: string;\n}\n","export const NX_ICON_TYPE = [\"outline\", \"fill\"] as const;\n\nexport type NxIconType = (typeof NX_ICON_TYPE)[number];\n\nexport interface NxIconInputs {\n name: string;\n type?: NxIconType;\n rotate?: number;\n}\n","export const NX_INPUT_SIZE = [\"xs\", \"sm\", \"md\", \"default\", \"lg\"] as const;\n\n/** 对齐 ThyInputSize */\nexport type NxInputSize = (typeof NX_INPUT_SIZE)[number];\n","export const NX_TABS_TYPE = [\"pulled\", \"tabs\", \"pills\", \"lite\"] as const;\n\nexport type NxTabsType = (typeof NX_TABS_TYPE)[number];\n\nexport const NX_TABS_SIZE = [\"lg\", \"md\", \"sm\"] as const;\n\nexport type NxTabsSize = (typeof NX_TABS_SIZE)[number];\n\nexport type NxActiveTab = number;\n\nexport interface NxTabsInputs {\n type?: NxTabsType;\n size?: NxTabsSize;\n activeTab?: NxActiveTab;\n animated?: boolean;\n responsive?: boolean;\n}\n\nexport interface NxTabInputs {\n title?: string;\n disabled?: boolean;\n}\n","export const NX_TAG_COLOR = [\"default\", \"primary\", \"success\", \"info\", \"warning\", \"danger\"] as const;\n\nexport type NxTagColor = (typeof NX_TAG_COLOR)[number];\n\nexport const NX_TAG_APPEARANCE = [\"fill\", \"outline\", \"subtle\"] as const;\n\nexport type NxTagAppearance = (typeof NX_TAG_APPEARANCE)[number];\n\nexport const NX_TAG_SIZE = [\"sm\", \"md\", \"lg\"] as const;\n\nexport type NxTagSize = (typeof NX_TAG_SIZE)[number];\n\nexport const NX_TAG_SHAPE = [\"pill\", \"rectangle\"] as const;\n\nexport type NxTagShape = (typeof NX_TAG_SHAPE)[number];\n\nexport interface NxTagInputs {\n color?: NxTagColor | (string & {});\n appearance?: NxTagAppearance;\n size?: NxTagSize;\n shape?: NxTagShape;\n hoverable?: boolean;\n}\n","export const NX_TEXT_AS = [\"em\", \"p\", \"span\", \"strong\", \"strike\"] as const;\n\nexport type NxTextAs = (typeof NX_TEXT_AS)[number];\n\nexport const NX_TEXT_ALIGN = [\"center\", \"start\", \"end\"] as const;\n\nexport type NxTextAlign = (typeof NX_TEXT_ALIGN)[number];\n\nexport const NX_TEXT_WEIGHT = [\"bold\", \"medium\", \"regular\", \"semibold\"] as const;\n\nexport type NxTextWeight = (typeof NX_TEXT_WEIGHT)[number];\n\nexport interface NxTextInputs {\n as?: NxTextAs;\n align?: NxTextAlign;\n weight?: NxTextWeight;\n}\n","/*\n * Public API Surface of models\n */\n\nexport * from \"./api\";\nexport * from \"./baseline\";\nexport * from \"./condition\";\nexport * from \"./context\";\nexport * from \"./dialog\";\nexport * from \"./environment\";\nexport * from \"./events\";\nexport * from \"./extension\";\nexport * from \"./idea\";\nexport * from \"./invoke\";\nexport * from \"./locale\";\nexport * from \"./navigation\";\nexport * from \"./notify\";\nexport * from \"./page\";\nexport * from \"./processor\";\nexport * from \"./remote\";\nexport * from \"./richtext\";\nexport * from \"./store\";\nexport * from \"./testcase\";\nexport * from \"./ticket\";\nexport * from \"./user\";\nexport * from \"./v-dom\";\nexport * from \"./view\";\nexport * from \"./viewport\";\nexport * from \"./workitem\";\nexport * from \"./components\";\nexport * from \"./realtime\";\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"IAAY;AAAZ,CAAA,UAAY,eAAe,EAAA;AACvB,IAAA,eAAA,CAAA,aAAA,CAAA,GAAA,aAA2B;AAE3B,IAAA,eAAA,CAAA,YAAA,CAAA,GAAA,YAAyB;AAEzB,IAAA,eAAA,CAAA,SAAA,CAAA,GAAA,SAAmB;AACvB,CAAC,EANW,eAAe,KAAf,eAAe,GAAA,EAAA,CAAA,CAAA;;ACApB,MAAM,mCAAmC,GAAG;;MCAtC,sBAAsB,GAAG,CAAC,OAAO,EAAE,OAAO;;ICA3C;AAAZ,CAAA,UAAY,gBAAgB,EAAA;AACxB,IAAA,gBAAA,CAAA,UAAA,CAAA,GAAA,UAAqB;AACrB,IAAA,gBAAA,CAAA,UAAA,CAAA,GAAA,UAAqB;AACrB,IAAA,gBAAA,CAAA,MAAA,CAAA,GAAA,MAAa;AACb,IAAA,gBAAA,CAAA,MAAA,CAAA,GAAA,MAAa;AACb,IAAA,gBAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,gBAAA,CAAA,SAAA,CAAA,GAAA,SAAmB;AACnB,IAAA,gBAAA,CAAA,SAAA,CAAA,GAAA,SAAmB;AACnB,IAAA,gBAAA,CAAA,OAAA,CAAA,GAAA,OAAe;AACf,IAAA,gBAAA,CAAA,SAAA,CAAA,GAAA,SAAmB;AACvB,CAAC,EAVW,gBAAgB,KAAhB,gBAAgB,GAAA,EAAA,CAAA,CAAA;;ICAhB;AAAZ,CAAA,UAAY,UAAU,EAAA;AAClB,IAAA,UAAA,CAAA,SAAA,CAAA,GAAA,SAAmB;AACnB,IAAA,UAAA,CAAA,OAAA,CAAA,GAAA,OAAe;AACf,IAAA,UAAA,CAAA,SAAA,CAAA,GAAA,SAAmB;AACnB,IAAA,UAAA,CAAA,MAAA,CAAA,GAAA,MAAa;AACjB,CAAC,EALW,UAAU,KAAV,UAAU,GAAA,EAAA,CAAA,CAAA;;ACAf,MAAM,0BAA0B,GAAG;AACnC,MAAM,0BAA0B,GAAG;AACnC,MAAM,wBAAwB,GAAG;;AC6CxC;AACO,MAAM,6BAA6B,GAAG;;IChDjC;AAAZ,CAAA,UAAY,aAAa,EAAA;AACrB,IAAA,aAAA,CAAA,KAAA,CAAA,GAAA,KAAW;AACX,IAAA,aAAA,CAAA,MAAA,CAAA,GAAA,MAAa;AACb,IAAA,aAAA,CAAA,SAAA,CAAA,GAAA,SAAmB;AACvB,CAAC,EAJW,aAAa,KAAb,aAAa,GAAA,EAAA,CAAA,CAAA;;ICAb;AAAZ,CAAA,UAAY,iBAAiB,EAAA;AACzB,IAAA,iBAAA,CAAA,iBAAA,CAAA,aAAA,CAAA,GAAA,CAAA,CAAA,GAAA,aAAe;AACf,IAAA,iBAAA,CAAA,iBAAA,CAAA,MAAA,CAAA,GAAA,CAAA,CAAA,GAAA,MAAQ;AACR,IAAA,iBAAA,CAAA,iBAAA,CAAA,KAAA,CAAA,GAAA,CAAA,CAAA,GAAA,KAAO;AACP,IAAA,iBAAA,CAAA,iBAAA,CAAA,OAAA,CAAA,GAAA,CAAA,CAAA,GAAA,OAAS;AACT,IAAA,iBAAA,CAAA,iBAAA,CAAA,MAAA,CAAA,GAAA,CAAA,CAAA,GAAA,MAAQ;AACZ,CAAC,EANW,iBAAiB,KAAjB,iBAAiB,GAAA,EAAA,CAAA,CAAA;;ACAtB,MAAM,cAAc,GAAG,CAAC,SAAS,EAAE,MAAM,EAAE,QAAQ,EAAE,SAAS,EAAE,SAAS;AAIzE,MAAM,cAAc,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI;AAWzD,MAAM,oBAAoB,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI;AAIpD,MAAM,oBAAoB,GAAG,CAAC,SAAS,EAAE,iBAAiB,EAAE,iBAAiB;;ACnB7E,MAAM,aAAa,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI;;MCAnD,YAAY,GAAG,CAAC,SAAS,EAAE,MAAM;;ACAvC,MAAM,aAAa,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI;;ACAxD,MAAM,YAAY,GAAG,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM;AAIvD,MAAM,YAAY,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI;;ACJtC,MAAM,YAAY,GAAG,CAAC,SAAS,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,EAAE,SAAS,EAAE,QAAQ;AAIlF,MAAM,iBAAiB,GAAG,CAAC,MAAM,EAAE,SAAS,EAAE,QAAQ;AAItD,MAAM,WAAW,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI;MAI/B,YAAY,GAAG,CAAC,MAAM,EAAE,WAAW;;ACZzC,MAAM,UAAU,GAAG,CAAC,IAAI,EAAE,GAAG,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ;AAIzD,MAAM,aAAa,GAAG,CAAC,QAAQ,EAAE,OAAO,EAAE,KAAK;AAI/C,MAAM,cAAc,GAAG,CAAC,MAAM,EAAE,QAAQ,EAAE,SAAS,EAAE,UAAU;;ACRtE;;AAEG;;ACFH;;AAEG;;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pc-nexus/models",
3
- "version": "0.8.0-next.8",
3
+ "version": "0.8.0-next.9",
4
4
  "main": "src/public-api.ts",
5
5
  "types": "src/public-api.ts",
6
6
  "peerDependencies": {},
@@ -23,9 +23,10 @@ interface Conditions {
23
23
  [path: string]: ConditionValue | Conditions | undefined;
24
24
  }
25
25
 
26
- declare enum NexusAppEnvironment {
26
+ declare enum EnvironmentType {
27
27
  Development = "development",
28
- Production = "production"
28
+ Production = "production",
29
+ Staging = "staging"
29
30
  }
30
31
 
31
32
  declare const SUPPORTED_LOCALE_CODES: readonly ["zh-CN", "en-US"];
@@ -49,7 +50,7 @@ interface NexusAppContext<T = ExtensionData> {
49
50
  };
50
51
  environment: {
51
52
  id: string;
52
- type: NexusAppEnvironment;
53
+ type: EnvironmentType;
53
54
  };
54
55
  team: {
55
56
  id: string;
@@ -131,7 +132,7 @@ interface NexusAppExtension<T extends ExtensionProperties = ExtensionProperties>
131
132
  extension_id: string;
132
133
  environment_id: string;
133
134
  environment_key: string;
134
- environment_type: NexusAppEnvironment;
135
+ environment_type: EnvironmentType;
135
136
  installation_id: string;
136
137
  properties: T;
137
138
  egress?: EgressItem[];
@@ -485,6 +486,10 @@ interface WorkitemOpenCreateOptions {
485
486
  onSuccess?: (payload: Workitem) => void;
486
487
  }
487
488
 
489
+ interface NxBoxInputs {
490
+ role?: string;
491
+ }
492
+
488
493
  declare const NX_BUTTON_TYPE: readonly ["primary", "info", "danger", "warning", "success"];
489
494
  type NxButtonType = (typeof NX_BUTTON_TYPE)[number];
490
495
  declare const NX_BUTTON_SIZE: readonly ["xs", "sm", "md", "default", "lg"];
@@ -504,10 +509,72 @@ interface NxButtonGroupInputs {
504
509
  type?: NxButtonGroupType;
505
510
  }
506
511
 
512
+ interface NxCodeInputs {
513
+ text?: string;
514
+ }
515
+ interface NxCodeBlockInputs {
516
+ text?: string;
517
+ language?: string;
518
+ showLineNumbers?: boolean;
519
+ autoWrap?: boolean;
520
+ }
521
+
507
522
  declare const NX_HEADING_AS: readonly ["h1", "h2", "h3", "h4", "h5", "h6"];
508
523
  type NxHeadingAs = (typeof NX_HEADING_AS)[number];
509
524
  interface NxHeadingInputs {
510
525
  as?: NxHeadingAs;
526
+ id?: string;
527
+ }
528
+
529
+ declare const NX_ICON_TYPE: readonly ["outline", "fill"];
530
+ type NxIconType = (typeof NX_ICON_TYPE)[number];
531
+ interface NxIconInputs {
532
+ name: string;
533
+ type?: NxIconType;
534
+ rotate?: number;
535
+ }
536
+
537
+ declare const NX_INPUT_SIZE: readonly ["xs", "sm", "md", "default", "lg"];
538
+ /** 对齐 ThyInputSize */
539
+ type NxInputSize = (typeof NX_INPUT_SIZE)[number];
540
+
541
+ declare const NX_TABS_TYPE: readonly ["pulled", "tabs", "pills", "lite"];
542
+ type NxTabsType = (typeof NX_TABS_TYPE)[number];
543
+ declare const NX_TABS_SIZE: readonly ["lg", "md", "sm"];
544
+ type NxTabsSize = (typeof NX_TABS_SIZE)[number];
545
+ type NxActiveTab = number;
546
+ interface NxTabsInputs {
547
+ type?: NxTabsType;
548
+ size?: NxTabsSize;
549
+ activeTab?: NxActiveTab;
550
+ animated?: boolean;
551
+ responsive?: boolean;
552
+ }
553
+ interface NxTabInputs {
554
+ title?: string;
555
+ disabled?: boolean;
556
+ }
557
+
558
+ declare const NX_TAG_COLOR: readonly ["default", "primary", "success", "info", "warning", "danger"];
559
+ type NxTagColor = (typeof NX_TAG_COLOR)[number];
560
+ declare const NX_TAG_APPEARANCE: readonly ["fill", "outline", "subtle"];
561
+ type NxTagAppearance = (typeof NX_TAG_APPEARANCE)[number];
562
+ declare const NX_TAG_SIZE: readonly ["sm", "md", "lg"];
563
+ type NxTagSize = (typeof NX_TAG_SIZE)[number];
564
+ declare const NX_TAG_SHAPE: readonly ["pill", "rectangle"];
565
+ type NxTagShape = (typeof NX_TAG_SHAPE)[number];
566
+ interface NxTagInputs {
567
+ color?: NxTagColor | (string & {});
568
+ appearance?: NxTagAppearance;
569
+ size?: NxTagSize;
570
+ shape?: NxTagShape;
571
+ hoverable?: boolean;
572
+ }
573
+
574
+ interface NxLinkInputs {
575
+ href?: string;
576
+ openNewTab?: boolean;
577
+ disabled?: boolean;
511
578
  }
512
579
 
513
580
  declare const NX_TEXT_AS: readonly ["em", "p", "span", "strong", "strike"];
@@ -534,9 +601,12 @@ interface RealtimePublishResult {
534
601
  message_id: string;
535
602
  }
536
603
  type RealtimeContext = "project" | "workitem" | "sprint" | "product" | "idea" | "ticket" | "space" | "page" | "library" | "testcase" | "testplan" | "baseline" | "release" | "plan" | "widget" | "dashboard" | "entry";
537
- interface RealtimeSubscribeParams<TPayload> {
604
+ interface RealtimeSubscribeCallback<TPayload = unknown> {
605
+ (payload?: TPayload): any;
606
+ }
607
+ interface RealtimeSubscribeParams<TPayload = unknown> {
538
608
  channel: string;
539
- callback: (payload?: TPayload) => Promise<void> | void;
609
+ callback: RealtimeSubscribeCallback<TPayload>;
540
610
  options?: RealtimeSubscribeOptions;
541
611
  }
542
612
  interface RealtimePublishParams<TPayload> {
@@ -545,5 +615,5 @@ interface RealtimePublishParams<TPayload> {
545
615
  options?: RealtimePublishOptions;
546
616
  }
547
617
 
548
- export { HOST_DISPATCH_NATIVE_UI_EVENT, HistoryAction, NEXUS_CONFIG_READY_EVENT, NEXUS_CONTENT_CHANGE_EVENT, NEXUS_CONTENT_UPDATE_EVENT, NEXUS_EXTENSION_DATA_CONFIG_CHANGED, NX_BUTTON_GROUP_SIZE, NX_BUTTON_GROUP_TYPE, NX_BUTTON_SIZE, NX_BUTTON_TYPE, NX_HEADING_AS, NX_TEXT_ALIGN, NX_TEXT_AS, NX_TEXT_WEIGHT, NavigationTarget, NexusAppEnvironment, NotifyType, SUPPORTED_LOCALE_CODES, WorkitemTypeGroup };
549
- export type { ApiInvokeOptions, Baseline, ConditionPrimitive, ConditionValue, Conditions, DialogConfirmOptions, DialogOpenOptions, DialogRef, DispatchEventPayload, DownloadResult, EgressItem, ExtensionData, ExtensionProperties, GetMetadataResult, GetTranslationsResult, HistoryListener, HistoryLocation, HistoryPath, HistoryState, HistoryTo, HistoryUpdate, Idea, IdeaOpenCreateOptions, InvokeFunctionParams, InvokeResponseData, MultipleUserOpenPopoverOptions, NavigationLocation, NexusAppContext, NexusAppExtension, NexusHistory, NotifyAction, NotifyDetail, NotifyOptions, NotifyRef, NxButtonGroupInputs, NxButtonGroupSize, NxButtonGroupType, NxButtonInputs, NxButtonSize, NxButtonType, NxHeadingAs, NxHeadingInputs, NxTextAlign, NxTextAs, NxTextInputs, NxTextWeight, Page, PageOpenCreateOptions, ProcessOptions, ProcessRef, RealtimeContext, RealtimePublishOptions, RealtimePublishParams, RealtimePublishResult, RealtimeScope, RealtimeSubscribeOptions, RealtimeSubscribeParams, ReconcilePayload, RemoteInvokeOptions, RemoteRequestBody, RemoteRequestOptions, RemoteRequestPayload, RemoteRequestResponseData, RemoteRequestSerializedInit, RemoteSerializedBlob, RemoteSerializedFormDataEntry, RichtextBridgeMessage, RichtextContent, RichtextDescendant, RichtextEditorOptions, RichtextEditorRef, RichtextElement, RichtextRendererOptions, RichtextRendererRef, RichtextText, SingleUserOpenPopoverOptions, Subscription, SupportedFrontendFramework, SupportedLocaleCode, Testcase, TestcaseOpenCreateOptions, Ticket, TicketOpenCreateOptions, TranslationsResourceContent, Translator, UnlistenCallback, UploadResult, UserInfo, UserOpenDialogOptions, UserOpenDialogRef, UserOpenPopoverOptions, UserOpenPopoverRef, Viewport, ViewportSize, VirtualListener, VirtualNodeSnapshot, VirtualStyle, Workitem, WorkitemOpenCreateOptions };
618
+ export { EnvironmentType, HOST_DISPATCH_NATIVE_UI_EVENT, HistoryAction, NEXUS_CONFIG_READY_EVENT, NEXUS_CONTENT_CHANGE_EVENT, NEXUS_CONTENT_UPDATE_EVENT, NEXUS_EXTENSION_DATA_CONFIG_CHANGED, NX_BUTTON_GROUP_SIZE, NX_BUTTON_GROUP_TYPE, NX_BUTTON_SIZE, NX_BUTTON_TYPE, NX_HEADING_AS, NX_ICON_TYPE, NX_INPUT_SIZE, NX_TABS_SIZE, NX_TABS_TYPE, NX_TAG_APPEARANCE, NX_TAG_COLOR, NX_TAG_SHAPE, NX_TAG_SIZE, NX_TEXT_ALIGN, NX_TEXT_AS, NX_TEXT_WEIGHT, NavigationTarget, NotifyType, SUPPORTED_LOCALE_CODES, WorkitemTypeGroup };
619
+ export type { ApiInvokeOptions, Baseline, ConditionPrimitive, ConditionValue, Conditions, DialogConfirmOptions, DialogOpenOptions, DialogRef, DispatchEventPayload, DownloadResult, EgressItem, ExtensionData, ExtensionProperties, GetMetadataResult, GetTranslationsResult, HistoryListener, HistoryLocation, HistoryPath, HistoryState, HistoryTo, HistoryUpdate, Idea, IdeaOpenCreateOptions, InvokeFunctionParams, InvokeResponseData, MultipleUserOpenPopoverOptions, NavigationLocation, NexusAppContext, NexusAppExtension, NexusHistory, NotifyAction, NotifyDetail, NotifyOptions, NotifyRef, NxActiveTab, NxBoxInputs, NxButtonGroupInputs, NxButtonGroupSize, NxButtonGroupType, NxButtonInputs, NxButtonSize, NxButtonType, NxCodeBlockInputs, NxCodeInputs, NxHeadingAs, NxHeadingInputs, NxIconInputs, NxIconType, NxInputSize, NxLinkInputs, NxTabInputs, NxTabsInputs, NxTabsSize, NxTabsType, NxTagAppearance, NxTagColor, NxTagInputs, NxTagShape, NxTagSize, NxTextAlign, NxTextAs, NxTextInputs, NxTextWeight, Page, PageOpenCreateOptions, ProcessOptions, ProcessRef, RealtimeContext, RealtimePublishOptions, RealtimePublishParams, RealtimePublishResult, RealtimeScope, RealtimeSubscribeCallback, RealtimeSubscribeOptions, RealtimeSubscribeParams, ReconcilePayload, RemoteInvokeOptions, RemoteRequestBody, RemoteRequestOptions, RemoteRequestPayload, RemoteRequestResponseData, RemoteRequestSerializedInit, RemoteSerializedBlob, RemoteSerializedFormDataEntry, RichtextBridgeMessage, RichtextContent, RichtextDescendant, RichtextEditorOptions, RichtextEditorRef, RichtextElement, RichtextRendererOptions, RichtextRendererRef, RichtextText, SingleUserOpenPopoverOptions, Subscription, SupportedFrontendFramework, SupportedLocaleCode, Testcase, TestcaseOpenCreateOptions, Ticket, TicketOpenCreateOptions, TranslationsResourceContent, Translator, UnlistenCallback, UploadResult, UserInfo, UserOpenDialogOptions, UserOpenDialogRef, UserOpenPopoverOptions, UserOpenPopoverRef, Viewport, ViewportSize, VirtualListener, VirtualNodeSnapshot, VirtualStyle, Workitem, WorkitemOpenCreateOptions };