@pc-nexus/models 0.8.0-next.11 → 0.8.0-next.12

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.
@@ -53,12 +53,15 @@ var WorkitemTypeGroup;
53
53
  WorkitemTypeGroup[WorkitemTypeGroup["Plan"] = 5] = "Plan";
54
54
  })(WorkitemTypeGroup || (WorkitemTypeGroup = {}));
55
55
 
56
- const NX_BUTTON_TYPE = ["primary", "info", "danger", "warning", "success"];
56
+ const NX_BUTTON_COLOR = ["default", "primary", "info", "warning", "danger", "success"];
57
+ const NX_BUTTON_APPEARANCE = ["fill", "outline", "link"];
58
+ const NX_BUTTON_TYPE = ["button", "submit", "reset"];
57
59
  const NX_BUTTON_GROUP_TYPE = ["primary", "outline-default", "outline-primary"];
58
60
 
59
61
  const NX_HEADING_AS = ["h1", "h2", "h3", "h4", "h5", "h6"];
60
62
 
61
63
  const NX_ICON_TYPE = ["outline", "fill"];
64
+ const NX_ICON_COLOR = ["default", "primary", "success", "info", "warning", "danger"];
62
65
 
63
66
  const NX_NAV_TYPE = ["pulled", "tabs", "pills", "lite", "card"];
64
67
  const NX_NAV_HORIZONTAL = ["start", "center", "end"];
@@ -72,12 +75,15 @@ const NX_TAG_APPEARANCE = ["fill", "outline", "subtle"];
72
75
  const NX_TAG_SHAPE = ["pill", "rectangle"];
73
76
 
74
77
  const NX_TEXT_AS = ["em", "p", "span", "strong", "strike"];
75
- const NX_TEXT_ALIGN = ["center", "start", "end"];
78
+ const NX_TEXT_ALIGN = ["center", "start", "end", "left", "right"];
76
79
  const NX_TEXT_WEIGHT = ["bold", "medium", "regular", "semibold"];
80
+ const NX_TEXT_COLOR = ["default", "primary", "success", "info", "warning", "danger"];
81
+
82
+ const NX_TEXTAREA_RESIZE = ["none", "vertical", "horizontal", "both"];
77
83
 
78
84
  /**
79
85
  * Generated bundle index. Do not edit.
80
86
  */
81
87
 
82
- 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_TYPE, NX_BUTTON_TYPE, NX_HEADING_AS, NX_ICON_TYPE, NX_NAV_HORIZONTAL, NX_NAV_TYPE, NX_SIZE, NX_TABS_TYPE, NX_TAG_APPEARANCE, NX_TAG_COLOR, NX_TAG_SHAPE, NX_TEXT_ALIGN, NX_TEXT_AS, NX_TEXT_WEIGHT, NavigationTarget, NotifyType, SUPPORTED_LOCALE_CODES, WorkitemTypeGroup };
88
+ 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_APPEARANCE, NX_BUTTON_COLOR, NX_BUTTON_GROUP_TYPE, NX_BUTTON_TYPE, NX_HEADING_AS, NX_ICON_COLOR, NX_ICON_TYPE, NX_NAV_HORIZONTAL, NX_NAV_TYPE, NX_SIZE, NX_TABS_TYPE, NX_TAG_APPEARANCE, NX_TAG_COLOR, NX_TAG_SHAPE, NX_TEXTAREA_RESIZE, NX_TEXT_ALIGN, NX_TEXT_AS, NX_TEXT_COLOR, NX_TEXT_WEIGHT, NavigationTarget, NotifyType, SUPPORTED_LOCALE_CODES, WorkitemTypeGroup };
83
89
  //# 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/icon.ts","../../../../web/models/src/components/nav.ts","../../../../web/models/src/components/size.ts","../../../../web/models/src/components/tabs.ts","../../../../web/models/src/components/tag.ts","../../../../web/models/src/components/text.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 SerialisableEvent {\n bubbles: boolean;\n cancelable: boolean;\n defaultPrevented: boolean;\n eventPhase: number;\n isTrusted: boolean;\n target: {\n selectionStart?: number | null;\n selectionEnd?: number | null;\n value?: any;\n checked?: boolean;\n name?: string;\n id?: string;\n tagName?: string;\n type?: string;\n };\n timeStamp: number;\n type: string;\n}\n\nexport interface DispatchEventPayload {\n id: string;\n name: string;\n nodeId: number;\n detail?: SerialisableEvent | 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","import type { NxSize } from \"./size\";\n\nexport const NX_BUTTON_TYPE = [\"primary\", \"info\", \"danger\", \"warning\", \"success\"] as const;\n\nexport type NxButtonType = (typeof NX_BUTTON_TYPE)[number];\n\nexport interface NxButtonInputs {\n type?: NxButtonType;\n size?: NxSize;\n icon?: string;\n block?: boolean;\n disabled?: boolean;\n}\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?: NxSize;\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","import { NxSize } from \"./size\";\n\nexport const NX_NAV_TYPE = [\"pulled\", \"tabs\", \"pills\", \"lite\", \"card\"] as const;\n\nexport type NxNavType = (typeof NX_NAV_TYPE)[number];\n\nexport const NX_NAV_HORIZONTAL = [\"start\", \"center\", \"end\"] as const;\n\nexport type NxNavHorizontal = (typeof NX_NAV_HORIZONTAL)[number];\n\nexport interface NxNavInputs {\n type?: NxNavType;\n size?: NxSize;\n horizontal?: NxNavHorizontal;\n responsive?: boolean;\n}\n\nexport interface NxNavItemInputs {\n active?: boolean;\n disabled?: boolean;\n}\n","export const NX_SIZE = [\"small\", \"medium\", \"large\"] as const;\n\nexport type NxSize = (typeof NX_SIZE)[number];\n","import type { NxSize } from \"./size\";\n\nexport const NX_TABS_TYPE = [\"pulled\", \"tabs\", \"pills\", \"lite\"] as const;\n\nexport type NxTabsType = (typeof NX_TABS_TYPE)[number];\n\nexport type NxActiveTab = number;\n\nexport interface NxTabsInputs {\n type?: NxTabsType;\n size?: NxSize;\n activeTab?: NxActiveTab;\n animated?: boolean;\n responsive?: boolean;\n}\n\nexport interface NxTabInputs {\n title?: string;\n disabled?: boolean;\n}\n","import type { NxSize } from \"./size\";\n\nexport 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_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?: NxSize;\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 * 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/nav.ts","../../../../web/models/src/components/size.ts","../../../../web/models/src/components/tabs.ts","../../../../web/models/src/components/tag.ts","../../../../web/models/src/components/text.ts","../../../../web/models/src/components/textarea.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 SerialisableEvent {\n bubbles: boolean;\n cancelable: boolean;\n defaultPrevented: boolean;\n eventPhase: number;\n isTrusted: boolean;\n target: {\n selectionStart?: number | null;\n selectionEnd?: number | null;\n value?: any;\n checked?: boolean;\n name?: string;\n id?: string;\n tagName?: string;\n type?: string;\n };\n timeStamp: number;\n type: string;\n}\n\nexport interface DispatchEventPayload {\n id: string;\n name: string;\n nodeId: number;\n detail?: SerialisableEvent | 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","import type { NxSize } from \"./size\";\n\nexport const NX_BUTTON_COLOR = [\"default\", \"primary\", \"info\", \"warning\", \"danger\", \"success\"] as const;\n\nexport type NxButtonColor = (typeof NX_BUTTON_COLOR)[number];\n\nexport const NX_BUTTON_APPEARANCE = [\"fill\", \"outline\", \"link\"] as const;\n\nexport type NxButtonAppearance = (typeof NX_BUTTON_APPEARANCE)[number];\n\nexport const NX_BUTTON_TYPE = [\"button\", \"submit\", \"reset\"] as const;\n\nexport type NxButtonType = (typeof NX_BUTTON_TYPE)[number];\n\nexport interface NxButtonInputs {\n color?: NxButtonColor;\n appearance?: NxButtonAppearance;\n type?: NxButtonType;\n name?: string;\n autofocus?: boolean;\n tabindex?: number;\n size?: NxSize;\n icon?: string;\n block?: boolean;\n disabled?: boolean;\n}\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?: NxSize;\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","import type { NxSize } from \"./size\";\n\nexport const NX_ICON_TYPE = [\"outline\", \"fill\"] as const;\n\nexport type NxIconType = (typeof NX_ICON_TYPE)[number];\n\nexport const NX_ICON_COLOR = [\"default\", \"primary\", \"success\", \"info\", \"warning\", \"danger\"] as const;\n\nexport type NxIconColor = (typeof NX_ICON_COLOR)[number];\n\nexport interface NxIconInputs {\n name: string;\n type?: NxIconType;\n rotate?: number;\n color?: NxIconColor;\n size?: NxSize;\n}\n","import { NxSize } from \"./size\";\n\nexport const NX_NAV_TYPE = [\"pulled\", \"tabs\", \"pills\", \"lite\", \"card\"] as const;\n\nexport type NxNavType = (typeof NX_NAV_TYPE)[number];\n\nexport const NX_NAV_HORIZONTAL = [\"start\", \"center\", \"end\"] as const;\n\nexport type NxNavHorizontal = (typeof NX_NAV_HORIZONTAL)[number];\n\nexport interface NxNavInputs {\n type?: NxNavType;\n size?: NxSize;\n horizontal?: NxNavHorizontal;\n responsive?: boolean;\n}\n\nexport interface NxNavItemInputs {\n active?: boolean;\n disabled?: boolean;\n}\n","export const NX_SIZE = [\"small\", \"medium\", \"large\"] as const;\n\nexport type NxSize = (typeof NX_SIZE)[number];\n","import type { NxSize } from \"./size\";\n\nexport const NX_TABS_TYPE = [\"pulled\", \"tabs\", \"pills\", \"lite\"] as const;\n\nexport type NxTabsType = (typeof NX_TABS_TYPE)[number];\n\nexport type NxActiveTab = number;\n\nexport interface NxTabsInputs {\n type?: NxTabsType;\n size?: NxSize;\n activeTab?: NxActiveTab;\n animated?: boolean;\n responsive?: boolean;\n}\n\nexport interface NxTabInputs {\n title?: string;\n disabled?: boolean;\n}\n","import type { NxSize } from \"./size\";\n\nexport 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_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?: NxSize;\n shape?: NxTagShape;\n hoverable?: boolean;\n}\n","import type { NxSize } from \"./size\";\n\nexport 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\", \"left\", \"right\"] 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 const NX_TEXT_COLOR = [\"default\", \"primary\", \"success\", \"info\", \"warning\", \"danger\"] as const;\n\nexport type NxTextColor = (typeof NX_TEXT_COLOR)[number];\n\nexport interface NxTextInputs {\n as?: NxTextAs;\n align?: NxTextAlign;\n weight?: NxTextWeight;\n color?: NxTextColor;\n size?: NxSize;\n}\n","export const NX_TEXTAREA_RESIZE = [\"none\", \"vertical\", \"horizontal\", \"both\"] as const;\n\nexport type NxTextareaResize = (typeof NX_TEXTAREA_RESIZE)[number];\n\nexport interface NxTextareaInputs {\n placeholder?: string;\n readonly?: boolean;\n required?: boolean;\n autofocus?: boolean;\n maxlength?: number;\n minlength?: number;\n /** 可见行数,透传原生 rows */\n rows?: number;\n /** 用户手动拖拽把手,透传 CSS resize */\n resize?: NxTextareaResize;\n id?: string;\n name?: string;\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pc-nexus/models",
3
- "version": "0.8.0-next.11",
3
+ "version": "0.8.0-next.12",
4
4
  "main": "src/public-api.ts",
5
5
  "types": "src/public-api.ts",
6
6
  "peerDependencies": {},
@@ -511,10 +511,19 @@ interface NxBoxInputs {
511
511
  declare const NX_SIZE: readonly ["small", "medium", "large"];
512
512
  type NxSize = (typeof NX_SIZE)[number];
513
513
 
514
- declare const NX_BUTTON_TYPE: readonly ["primary", "info", "danger", "warning", "success"];
514
+ declare const NX_BUTTON_COLOR: readonly ["default", "primary", "info", "warning", "danger", "success"];
515
+ type NxButtonColor = (typeof NX_BUTTON_COLOR)[number];
516
+ declare const NX_BUTTON_APPEARANCE: readonly ["fill", "outline", "link"];
517
+ type NxButtonAppearance = (typeof NX_BUTTON_APPEARANCE)[number];
518
+ declare const NX_BUTTON_TYPE: readonly ["button", "submit", "reset"];
515
519
  type NxButtonType = (typeof NX_BUTTON_TYPE)[number];
516
520
  interface NxButtonInputs {
521
+ color?: NxButtonColor;
522
+ appearance?: NxButtonAppearance;
517
523
  type?: NxButtonType;
524
+ name?: string;
525
+ autofocus?: boolean;
526
+ tabindex?: number;
518
527
  size?: NxSize;
519
528
  icon?: string;
520
529
  block?: boolean;
@@ -546,14 +555,30 @@ interface NxHeadingInputs {
546
555
 
547
556
  declare const NX_ICON_TYPE: readonly ["outline", "fill"];
548
557
  type NxIconType = (typeof NX_ICON_TYPE)[number];
558
+ declare const NX_ICON_COLOR: readonly ["default", "primary", "success", "info", "warning", "danger"];
559
+ type NxIconColor = (typeof NX_ICON_COLOR)[number];
549
560
  interface NxIconInputs {
550
561
  name: string;
551
562
  type?: NxIconType;
552
563
  rotate?: number;
564
+ color?: NxIconColor;
565
+ size?: NxSize;
553
566
  }
554
567
 
555
568
  interface NxInputInputs {
569
+ placeholder?: string;
570
+ readonly?: boolean;
571
+ required?: boolean;
572
+ autofocus?: boolean;
556
573
  size?: NxSize;
574
+ type?: string;
575
+ name?: string;
576
+ id?: string;
577
+ maxlength?: number;
578
+ minlength?: number;
579
+ min?: number | string;
580
+ max?: number | string;
581
+ step?: number | string;
557
582
  }
558
583
 
559
584
  interface NxLinkInputs {
@@ -608,14 +633,35 @@ interface NxTagInputs {
608
633
 
609
634
  declare const NX_TEXT_AS: readonly ["em", "p", "span", "strong", "strike"];
610
635
  type NxTextAs = (typeof NX_TEXT_AS)[number];
611
- declare const NX_TEXT_ALIGN: readonly ["center", "start", "end"];
636
+ declare const NX_TEXT_ALIGN: readonly ["center", "start", "end", "left", "right"];
612
637
  type NxTextAlign = (typeof NX_TEXT_ALIGN)[number];
613
638
  declare const NX_TEXT_WEIGHT: readonly ["bold", "medium", "regular", "semibold"];
614
639
  type NxTextWeight = (typeof NX_TEXT_WEIGHT)[number];
640
+ declare const NX_TEXT_COLOR: readonly ["default", "primary", "success", "info", "warning", "danger"];
641
+ type NxTextColor = (typeof NX_TEXT_COLOR)[number];
615
642
  interface NxTextInputs {
616
643
  as?: NxTextAs;
617
644
  align?: NxTextAlign;
618
645
  weight?: NxTextWeight;
646
+ color?: NxTextColor;
647
+ size?: NxSize;
648
+ }
649
+
650
+ declare const NX_TEXTAREA_RESIZE: readonly ["none", "vertical", "horizontal", "both"];
651
+ type NxTextareaResize = (typeof NX_TEXTAREA_RESIZE)[number];
652
+ interface NxTextareaInputs {
653
+ placeholder?: string;
654
+ readonly?: boolean;
655
+ required?: boolean;
656
+ autofocus?: boolean;
657
+ maxlength?: number;
658
+ minlength?: number;
659
+ /** 可见行数,透传原生 rows */
660
+ rows?: number;
661
+ /** 用户手动拖拽把手,透传 CSS resize */
662
+ resize?: NxTextareaResize;
663
+ id?: string;
664
+ name?: string;
619
665
  }
620
666
 
621
667
  type RealtimeOptions = {
@@ -648,5 +694,5 @@ interface RealtimePublishParams<TPayload> {
648
694
  options?: RealtimePublishOptions;
649
695
  }
650
696
 
651
- 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_TYPE, NX_BUTTON_TYPE, NX_HEADING_AS, NX_ICON_TYPE, NX_NAV_HORIZONTAL, NX_NAV_TYPE, NX_SIZE, NX_TABS_TYPE, NX_TAG_APPEARANCE, NX_TAG_COLOR, NX_TAG_SHAPE, NX_TEXT_ALIGN, NX_TEXT_AS, NX_TEXT_WEIGHT, NavigationTarget, NotifyType, SUPPORTED_LOCALE_CODES, WorkitemTypeGroup };
652
- 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, NxButtonGroupType, NxButtonInputs, NxButtonType, NxCodeBlockInputs, NxCodeInputs, NxHeadingAs, NxHeadingInputs, NxIconInputs, NxIconType, NxInputInputs, NxLinkInputs, NxNavHorizontal, NxNavInputs, NxNavItemInputs, NxNavType, NxSize, NxTabInputs, NxTabsInputs, NxTabsType, NxTagAppearance, NxTagColor, NxTagInputs, NxTagShape, 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, SerialisableEvent, SingleUserOpenPopoverOptions, Subscription, SupportedFrontendFramework, SupportedLocaleCode, Testcase, TestcaseOpenCreateOptions, Ticket, TicketOpenCreateOptions, TranslationsResourceContent, Translator, UnlistenCallback, UploadResult, UserInfo, UserOpenDialogOptions, UserOpenDialogRef, UserOpenPopoverOptions, UserOpenPopoverRef, Viewport, ViewportSize, VirtualListener, VirtualNodeSnapshot, VirtualStyle, Workitem, WorkitemOpenCreateOptions };
697
+ 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_APPEARANCE, NX_BUTTON_COLOR, NX_BUTTON_GROUP_TYPE, NX_BUTTON_TYPE, NX_HEADING_AS, NX_ICON_COLOR, NX_ICON_TYPE, NX_NAV_HORIZONTAL, NX_NAV_TYPE, NX_SIZE, NX_TABS_TYPE, NX_TAG_APPEARANCE, NX_TAG_COLOR, NX_TAG_SHAPE, NX_TEXTAREA_RESIZE, NX_TEXT_ALIGN, NX_TEXT_AS, NX_TEXT_COLOR, NX_TEXT_WEIGHT, NavigationTarget, NotifyType, SUPPORTED_LOCALE_CODES, WorkitemTypeGroup };
698
+ 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, NxButtonAppearance, NxButtonColor, NxButtonGroupInputs, NxButtonGroupType, NxButtonInputs, NxButtonType, NxCodeBlockInputs, NxCodeInputs, NxHeadingAs, NxHeadingInputs, NxIconColor, NxIconInputs, NxIconType, NxInputInputs, NxLinkInputs, NxNavHorizontal, NxNavInputs, NxNavItemInputs, NxNavType, NxSize, NxTabInputs, NxTabsInputs, NxTabsType, NxTagAppearance, NxTagColor, NxTagInputs, NxTagShape, NxTextAlign, NxTextAs, NxTextColor, NxTextInputs, NxTextWeight, NxTextareaInputs, NxTextareaResize, 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, SerialisableEvent, SingleUserOpenPopoverOptions, Subscription, SupportedFrontendFramework, SupportedLocaleCode, Testcase, TestcaseOpenCreateOptions, Ticket, TicketOpenCreateOptions, TranslationsResourceContent, Translator, UnlistenCallback, UploadResult, UserInfo, UserOpenDialogOptions, UserOpenDialogRef, UserOpenPopoverOptions, UserOpenPopoverRef, Viewport, ViewportSize, VirtualListener, VirtualNodeSnapshot, VirtualStyle, Workitem, WorkitemOpenCreateOptions };