@forge/react 0.0.0-experimental-9489df9 → 0.0.0-experimental-72f4150

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.
Files changed (46) hide show
  1. package/CHANGELOG.md +98 -2
  2. package/out/__test__/styles.test.d.ts +2 -0
  3. package/out/__test__/styles.test.d.ts.map +1 -0
  4. package/out/__test__/styles.test.js +90 -0
  5. package/out/components.d.ts +61 -0
  6. package/out/components.d.ts.map +1 -0
  7. package/out/components.js +63 -0
  8. package/out/index.d.ts +4 -0
  9. package/out/index.d.ts.map +1 -0
  10. package/out/index.js +8 -0
  11. package/out/reconciler.d.ts +5 -0
  12. package/out/reconciler.d.ts.map +1 -0
  13. package/out/reconciler.js +144 -0
  14. package/out/styles/index.d.ts +29 -0
  15. package/out/styles/index.d.ts.map +1 -0
  16. package/out/styles/index.js +154 -0
  17. package/out/types/components.d.ts +387 -0
  18. package/out/types/components.d.ts.map +1 -0
  19. package/out/types/components.js +2 -0
  20. package/out/types/effect.d.ts +57 -0
  21. package/out/types/effect.d.ts.map +1 -0
  22. package/out/types/effect.js +23 -0
  23. package/out/types/extension.d.ts +10 -0
  24. package/out/types/extension.d.ts.map +1 -0
  25. package/out/types/extension.js +2 -0
  26. package/out/types/forge.d.ts +146 -0
  27. package/out/types/forge.d.ts.map +1 -0
  28. package/out/types/forge.js +30 -0
  29. package/out/types/icons.d.ts +2 -0
  30. package/out/types/icons.d.ts.map +1 -0
  31. package/out/types/icons.js +2 -0
  32. package/out/types/index.d.ts +11 -0
  33. package/out/types/index.d.ts.map +1 -0
  34. package/out/types/index.js +28 -0
  35. package/out/types/legacy-effect.d.ts +40 -0
  36. package/out/types/legacy-effect.d.ts.map +1 -0
  37. package/out/types/legacy-effect.js +25 -0
  38. package/out/types/styles.d.ts +154 -0
  39. package/out/types/styles.d.ts.map +1 -0
  40. package/out/types/styles.js +2 -0
  41. package/package.json +4 -3
  42. package/tsconfig.tsbuildinfo +1 -0
  43. package/src/globals.d.ts +0 -12
  44. package/src/index.ts +0 -1
  45. package/src/reconciler.ts +0 -219
  46. package/tsconfig.json +0 -9
@@ -0,0 +1,146 @@
1
+ export interface ComponentState {
2
+ [hookIndex: number]: any;
3
+ }
4
+ export interface RenderState {
5
+ [componentKey: string]: ComponentState;
6
+ }
7
+ export interface Handler {
8
+ componentKey: string;
9
+ prop: string;
10
+ }
11
+ export declare type ForgeProps = {
12
+ [key: string]: any;
13
+ };
14
+ export interface ForgeDoc {
15
+ children: ForgeDoc[];
16
+ key?: string;
17
+ props?: ForgeProps;
18
+ type: string;
19
+ }
20
+ export declare type ForgeElement<P = Record<string, any>> = PrimitiveElement<P> | FunctionElement<P>;
21
+ export interface PrimitiveElement<P = Record<string, any>> {
22
+ type: string;
23
+ key: number | string | null;
24
+ props: P & {
25
+ children: ForgeNode[];
26
+ };
27
+ }
28
+ export interface FunctionElement<P = Record<string, any>> {
29
+ type: (props: P) => ForgeElement;
30
+ key: number | string | null;
31
+ props: P & {
32
+ children: ForgeNode[];
33
+ };
34
+ }
35
+ export declare const isForgeElement: (auxNode: ForgeNode) => auxNode is ForgeElement<Record<string, any>>;
36
+ export declare type ForgeNode = ForgeElement | null | boolean | undefined;
37
+ export declare type ForgeChildren<T = ForgeNode> = T | (T | T[])[];
38
+ export interface PlatformContext {
39
+ type: string;
40
+ }
41
+ export interface ExtensionContext {
42
+ type: string;
43
+ }
44
+ export interface LicenseState {
45
+ isActive?: boolean;
46
+ }
47
+ export interface ProductContext {
48
+ accountId?: string;
49
+ cloudId?: string;
50
+ localId?: string;
51
+ installContext?: string;
52
+ extension?: ExtensionContext;
53
+ license?: LicenseState;
54
+ moduleKey?: string;
55
+ siteUrl?: string;
56
+ environmentId?: string;
57
+ environmentType?: string;
58
+ }
59
+ export interface ExtensionConfiguration {
60
+ [key: string]: any;
61
+ }
62
+ export interface User {
63
+ accountId: string;
64
+ }
65
+ export declare type CustomFieldValue = string | number | User | null;
66
+ export interface JiraExtensionContext extends ExtensionContext {
67
+ type: string;
68
+ issue?: {
69
+ id: number;
70
+ key: string;
71
+ type: string;
72
+ };
73
+ project?: {
74
+ id: string;
75
+ key: string;
76
+ type: string;
77
+ };
78
+ }
79
+ export declare const isJiraExtensionContext: (extensionContext: ExtensionContext) => extensionContext is JiraExtensionContext;
80
+ export interface ConfluenceExtensionContext extends ExtensionContext {
81
+ type: string;
82
+ content?: {
83
+ id: string;
84
+ type: string;
85
+ };
86
+ space?: {
87
+ key: string;
88
+ };
89
+ }
90
+ export declare const isConfluenceExtensionContext: (extensionContext: ExtensionContext) => extensionContext is ConfluenceExtensionContext;
91
+ export interface IssuePanelExtensionContext extends JiraExtensionContext {
92
+ type: 'jira:issuePanel';
93
+ isNewToIssue: boolean;
94
+ }
95
+ export declare const isIssuePanelExtensionContext: (extensionContext: ExtensionContext) => extensionContext is IssuePanelExtensionContext;
96
+ export interface CustomFieldContextConfigExtensionContext extends ExtensionContext {
97
+ type: 'contextConfig';
98
+ fieldId: string;
99
+ fieldType: string;
100
+ contextId: number;
101
+ configuration?: any;
102
+ schema?: {
103
+ [key: string]: any;
104
+ };
105
+ }
106
+ export declare const isCustomFieldContextConfigExtensionContext: (extensionContext: ExtensionContext) => extensionContext is CustomFieldContextConfigExtensionContext;
107
+ export interface CustomFieldExtensionContext extends JiraExtensionContext {
108
+ type: 'jira:customField' | 'jira:customFieldType';
109
+ fieldValue: CustomFieldValue;
110
+ fieldId: string;
111
+ fieldType: string;
112
+ isInline?: boolean;
113
+ }
114
+ export declare const isCustomFieldExtensionContext: (extensionContext: ExtensionContext) => extensionContext is CustomFieldExtensionContext;
115
+ export interface ContextMenuExtensionContext extends ConfluenceExtensionContext {
116
+ type: 'confluence:contextMenu';
117
+ selectedText: string;
118
+ }
119
+ export interface ContentActionExtensionContext extends ConfluenceExtensionContext {
120
+ type: 'confluence:contentAction';
121
+ }
122
+ export declare const isContextMenuExtensionContext: (extensionContext: ExtensionContext) => extensionContext is ContextMenuExtensionContext;
123
+ export declare const isContentActionExtensionContext: (extensionContext: ExtensionContext) => extensionContext is ContentActionExtensionContext;
124
+ export interface DashboardGadgetExtensionContext extends ExtensionContext {
125
+ type: 'dashboardGadget';
126
+ gadgetConfiguration: Record<string, any>;
127
+ }
128
+ export declare const isDashboardGadgetExtensionContext: (extensionContext: ExtensionContext) => extensionContext is DashboardGadgetExtensionContext;
129
+ export declare enum CompassContextTypes {
130
+ AdminPage = "compass:adminPage",
131
+ ComponentPage = "compass:componentPage",
132
+ TeamPage = "compass:teamPage"
133
+ }
134
+ export interface CompassComponentPageExtensionContext extends ExtensionContext {
135
+ type: CompassContextTypes.ComponentPage;
136
+ componentId: string;
137
+ }
138
+ export interface CompassAdminPageExtensionContext extends ExtensionContext {
139
+ type: CompassContextTypes.AdminPage;
140
+ url: string;
141
+ }
142
+ export interface CompassTeamPageExtensionContext extends ExtensionContext {
143
+ type: CompassContextTypes.TeamPage;
144
+ teamId: string;
145
+ }
146
+ //# sourceMappingURL=forge.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"forge.d.ts","sourceRoot":"","sources":["../../src/types/forge.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CompassContextTypes = exports.isDashboardGadgetExtensionContext = exports.isContentActionExtensionContext = exports.isContextMenuExtensionContext = exports.isCustomFieldExtensionContext = exports.isCustomFieldContextConfigExtensionContext = exports.isIssuePanelExtensionContext = exports.isConfluenceExtensionContext = exports.isJiraExtensionContext = exports.isForgeElement = void 0;
4
+ const isForgeElement = (auxNode) => {
5
+ return (auxNode !== null && typeof auxNode !== 'boolean' && auxNode !== undefined);
6
+ };
7
+ exports.isForgeElement = isForgeElement;
8
+ const isJiraExtensionContext = (extensionContext) => extensionContext.type.startsWith('jira:');
9
+ exports.isJiraExtensionContext = isJiraExtensionContext;
10
+ const isConfluenceExtensionContext = (extensionContext) => extensionContext.type.startsWith('confluence:');
11
+ exports.isConfluenceExtensionContext = isConfluenceExtensionContext;
12
+ const isIssuePanelExtensionContext = (extensionContext) => extensionContext.type === 'jira:issuePanel';
13
+ exports.isIssuePanelExtensionContext = isIssuePanelExtensionContext;
14
+ const isCustomFieldContextConfigExtensionContext = (extensionContext) => extensionContext.type === 'contextConfig';
15
+ exports.isCustomFieldContextConfigExtensionContext = isCustomFieldContextConfigExtensionContext;
16
+ const isCustomFieldExtensionContext = (extensionContext) => extensionContext.type === 'jira:customField' ||
17
+ extensionContext.type === 'jira:customFieldType';
18
+ exports.isCustomFieldExtensionContext = isCustomFieldExtensionContext;
19
+ const isContextMenuExtensionContext = (extensionContext) => extensionContext.type === 'confluence:contextMenu';
20
+ exports.isContextMenuExtensionContext = isContextMenuExtensionContext;
21
+ const isContentActionExtensionContext = (extensionContext) => extensionContext.type === 'confluence:contentAction';
22
+ exports.isContentActionExtensionContext = isContentActionExtensionContext;
23
+ const isDashboardGadgetExtensionContext = (extensionContext) => extensionContext.type === 'jira:dashboardGadget';
24
+ exports.isDashboardGadgetExtensionContext = isDashboardGadgetExtensionContext;
25
+ var CompassContextTypes;
26
+ (function (CompassContextTypes) {
27
+ CompassContextTypes["AdminPage"] = "compass:adminPage";
28
+ CompassContextTypes["ComponentPage"] = "compass:componentPage";
29
+ CompassContextTypes["TeamPage"] = "compass:teamPage";
30
+ })(CompassContextTypes = exports.CompassContextTypes || (exports.CompassContextTypes = {}));
@@ -0,0 +1,2 @@
1
+ export declare type Icon = 'activity' | 'add' | 'add-circle' | 'add-item' | 'addon' | 'app-access' | 'app-switcher' | 'arrow-down' | 'arrow-down-circle' | 'arrow-left' | 'arrow-left-circle' | 'arrow-right' | 'arrow-right-circle' | 'arrow-up' | 'arrow-up-circle' | 'attachment' | 'audio' | 'audio-circle' | 'backlog' | 'billing' | 'billing-filled' | 'bitbucket-branches' | 'bitbucket-builds' | 'bitbucket-clone' | 'bitbucket-commits' | 'bitbucket-compare' | 'bitbucket-forks' | 'bitbucket-output' | 'bitbucket-pipelines' | 'bitbucket-pullrequests' | 'bitbucket-repos' | 'bitbucket-snippets' | 'bitbucket-source' | 'board' | 'book' | 'bullet-list' | 'calendar' | 'calendar-filled' | 'camera' | 'camera-filled' | 'camera-rotate' | 'camera-take-picture' | 'canvas' | 'check' | 'check-circle' | 'check-circle-outline' | 'checkbox' | 'checkbox-indeterminate' | 'chevron-down' | 'chevron-down-circle' | 'chevron-left' | 'chevron-left-circle' | 'chevron-left-large' | 'chevron-right' | 'chevron-right-circle' | 'chevron-right-large' | 'chevron-up' | 'chevron-up-circle' | 'child-issues' | 'code' | 'comment' | 'component' | 'copy' | 'creditcard' | 'creditcard-filled' | 'cross' | 'cross-circle' | 'dashboard' | 'decision' | 'department' | 'detail-view' | 'discover' | 'discover-filled' | 'document' | 'document-filled' | 'documents' | 'download' | 'drag-handler' | 'dropbox' | 'edit' | 'edit-filled' | 'editor-add' | 'editor-addon' | 'editor-advanced' | 'editor-align-center' | 'editor-align-image-center' | 'editor-align-image-left' | 'editor-align-image-right' | 'editor-align-left' | 'editor-align-right' | 'editor-attachment' | 'editor-background-color' | 'editor-bold' | 'editor-bullet-list' | 'editor-close' | 'editor-code' | 'editor-collapse' | 'editor-date' | 'editor-decision' | 'editor-divider' | 'editor-done' | 'editor-edit' | 'editor-emoji' | 'editor-error' | 'editor-expand' | 'editor-feedback' | 'editor-file' | 'editor-help' | 'editor-hint' | 'editor-horizontal-rule' | 'editor-image' | 'editor-image-border' | 'editor-image-resize' | 'editor-indent' | 'editor-info' | 'editor-italic' | 'editor-layout-three-equal' | 'editor-layout-three-with-sidebars' | 'editor-layout-two-equal' | 'editor-layout-two-left-sidebar' | 'editor-layout-two-right-sidebar' | 'editor-link' | 'editor-media-center' | 'editor-media-full-width' | 'editor-media-wide' | 'editor-media-wrap-left' | 'editor-media-wrap-right' | 'editor-mention' | 'editor-more' | 'editor-note' | 'editor-number-list' | 'editor-open' | 'editor-outdent' | 'editor-panel' | 'editor-photo' | 'editor-quote' | 'editor-recent' | 'editor-redo' | 'editor-remove' | 'editor-search' | 'editor-settings' | 'editor-strikethrough' | 'editor-success' | 'editor-table' | 'editor-table-display-options' | 'editor-task' | 'editor-text-color' | 'editor-text-style' | 'editor-underline' | 'editor-undo' | 'editor-unlink' | 'editor-warning' | 'email' | 'emoji' | 'emoji-add' | 'emoji-activity' | 'emoji-atlassian' | 'emoji-custom' | 'emoji-emoji' | 'emoji-flags' | 'emoji-food' | 'emoji-frequent' | 'emoji-keyboard' | 'emoji-nature' | 'emoji-objects' | 'emoji-people' | 'emoji-productivity' | 'emoji-symbols' | 'emoji-travel' | 'error' | 'export' | 'feedback' | 'file' | 'filter' | 'flag-filled' | 'folder' | 'folder-filled' | 'followers' | 'following' | 'googledrive' | 'graph-bar' | 'graph-line' | 'gsuite' | 'highlights' | 'hipchat-audio-only' | 'hipchat-chevron-double-down' | 'hipchat-chevron-double-up' | 'hipchat-chevron-down' | 'hipchat-chevron-up' | 'hipchat-dial-out' | 'hipchat-lobby' | 'hipchat-media-attachment-count' | 'hipchat-outgoing-sound' | 'hipchat-sd-video' | 'home' | 'home-circle' | 'image' | 'image-border' | 'image-resize' | 'info' | 'invite-team' | 'issue' | 'issue-raise' | 'issues' | 'jira-capture' | 'jira-failed-build-status' | 'jira-labs' | 'jira-test-session' | 'label' | 'lightbulb' | 'lightbulb-filled' | 'like' | 'link' | 'link-filled' | 'list' | 'location' | 'lock' | 'lock-circle' | 'lock-filled' | 'marketplace' | 'media-services-actual-size' | 'media-services-add-comment' | 'media-services-annotate' | 'media-services-arrow' | 'media-services-audio' | 'media-services-blur' | 'media-services-brush' | 'media-services-button-option' | 'media-services-code' | 'media-services-document' | 'media-services-filter' | 'media-services-fit-to-page' | 'media-services-full-screen' | 'media-services-grid' | 'media-services-image' | 'media-services-line' | 'media-services-line-thickness' | 'media-services-no-image' | 'media-services-open-mediaviewer' | 'media-services-oval' | 'media-services-pdf' | 'media-services-preselected' | 'media-services-presentation' | 'media-services-rectangle' | 'media-services-scale-large' | 'media-services-scale-small' | 'media-services-spreadsheet' | 'media-services-text' | 'media-services-unknown' | 'media-services-video' | 'media-services-zip' | 'media-services-zoom-in' | 'media-services-zoom-out' | 'mention' | 'menu' | 'menu-expand' | 'mobile' | 'more' | 'more-vertical' | 'notification' | 'notification-all' | 'notification-direct' | 'office-building' | 'office-building-filled' | 'open' | 'overview' | 'page' | 'page-filled' | 'pdf' | 'people' | 'people-group' | 'person' | 'person-circle' | 'person-with-circle' | 'person-with-cross' | 'person-with-tick' | 'portfolio' | 'preferences' | 'premium' | 'presence-active' | 'presence-busy' | 'presence-unavailable' | 'question' | 'question-circle' | 'questions' | 'queues' | 'quote' | 'radio' | 'recent' | 'redo' | 'refresh' | 'retry' | 'roadmap' | 'room-menu' | 'schedule' | 'schedule-filled' | 'screen' | 'search' | 'select-clear' | 'send' | 'settings' | 'share' | 'ship' | 'shortcut' | 'sign-in' | 'sign-out' | 'sprint' | 'star' | 'star-filled' | 'star-large' | 'status' | 'stopwatch' | 'subtask' | 'suitcase' | 'switcher' | 'table' | 'task' | 'trash' | 'tray' | 'undo' | 'unlink' | 'unlock' | 'unlock-circle' | 'unlock-filled' | 'upload' | 'user-avatar-circle' | 'vid-audio-muted' | 'vid-audio-on' | 'vid-backward' | 'vid-camera-off' | 'vid-camera-on' | 'vid-connection-circle' | 'vid-forward' | 'vid-full-screen-off' | 'vid-full-screen-on' | 'vid-hang-up' | 'vid-hd-circle' | 'vid-pause' | 'vid-play' | 'vid-raised-hand' | 'vid-share-screen' | 'vid-speaking-circle' | 'vid-volume-full' | 'vid-volume-half' | 'vid-volume-muted' | 'video-circle' | 'video-filled' | 'warning' | 'watch' | 'watch-filled' | 'world' | 'world-small';
2
+ //# sourceMappingURL=icons.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../../src/types/icons.ts"],"names":[],"mappings":"AACA,oBAAY,IAAI,GACZ,UAAU,GACV,KAAK,GACL,YAAY,GACZ,UAAU,GACV,OAAO,GACP,YAAY,GACZ,cAAc,GACd,YAAY,GACZ,mBAAmB,GACnB,YAAY,GACZ,mBAAmB,GACnB,aAAa,GACb,oBAAoB,GACpB,UAAU,GACV,iBAAiB,GACjB,YAAY,GACZ,OAAO,GACP,cAAc,GACd,SAAS,GACT,SAAS,GACT,gBAAgB,GAChB,oBAAoB,GACpB,kBAAkB,GAClB,iBAAiB,GACjB,mBAAmB,GACnB,mBAAmB,GACnB,iBAAiB,GACjB,kBAAkB,GAClB,qBAAqB,GACrB,wBAAwB,GACxB,iBAAiB,GACjB,oBAAoB,GACpB,kBAAkB,GAClB,OAAO,GACP,MAAM,GACN,aAAa,GACb,UAAU,GACV,iBAAiB,GACjB,QAAQ,GACR,eAAe,GACf,eAAe,GACf,qBAAqB,GACrB,QAAQ,GACR,OAAO,GACP,cAAc,GACd,sBAAsB,GACtB,UAAU,GACV,wBAAwB,GACxB,cAAc,GACd,qBAAqB,GACrB,cAAc,GACd,qBAAqB,GACrB,oBAAoB,GACpB,eAAe,GACf,sBAAsB,GACtB,qBAAqB,GACrB,YAAY,GACZ,mBAAmB,GACnB,cAAc,GACd,MAAM,GACN,SAAS,GACT,WAAW,GACX,MAAM,GACN,YAAY,GACZ,mBAAmB,GACnB,OAAO,GACP,cAAc,GACd,WAAW,GACX,UAAU,GACV,YAAY,GACZ,aAAa,GACb,UAAU,GACV,iBAAiB,GACjB,UAAU,GACV,iBAAiB,GACjB,WAAW,GACX,UAAU,GACV,cAAc,GACd,SAAS,GACT,MAAM,GACN,aAAa,GACb,YAAY,GACZ,cAAc,GACd,iBAAiB,GACjB,qBAAqB,GACrB,2BAA2B,GAC3B,yBAAyB,GACzB,0BAA0B,GAC1B,mBAAmB,GACnB,oBAAoB,GACpB,mBAAmB,GACnB,yBAAyB,GACzB,aAAa,GACb,oBAAoB,GACpB,cAAc,GACd,aAAa,GACb,iBAAiB,GACjB,aAAa,GACb,iBAAiB,GACjB,gBAAgB,GAChB,aAAa,GACb,aAAa,GACb,cAAc,GACd,cAAc,GACd,eAAe,GACf,iBAAiB,GACjB,aAAa,GACb,aAAa,GACb,aAAa,GACb,wBAAwB,GACxB,cAAc,GACd,qBAAqB,GACrB,qBAAqB,GACrB,eAAe,GACf,aAAa,GACb,eAAe,GACf,2BAA2B,GAC3B,mCAAmC,GACnC,yBAAyB,GACzB,gCAAgC,GAChC,iCAAiC,GACjC,aAAa,GACb,qBAAqB,GACrB,yBAAyB,GACzB,mBAAmB,GACnB,wBAAwB,GACxB,yBAAyB,GACzB,gBAAgB,GAChB,aAAa,GACb,aAAa,GACb,oBAAoB,GACpB,aAAa,GACb,gBAAgB,GAChB,cAAc,GACd,cAAc,GACd,cAAc,GACd,eAAe,GACf,aAAa,GACb,eAAe,GACf,eAAe,GACf,iBAAiB,GACjB,sBAAsB,GACtB,gBAAgB,GAChB,cAAc,GACd,8BAA8B,GAC9B,aAAa,GACb,mBAAmB,GACnB,mBAAmB,GACnB,kBAAkB,GAClB,aAAa,GACb,eAAe,GACf,gBAAgB,GAChB,OAAO,GACP,OAAO,GACP,WAAW,GACX,gBAAgB,GAChB,iBAAiB,GACjB,cAAc,GACd,aAAa,GACb,aAAa,GACb,YAAY,GACZ,gBAAgB,GAChB,gBAAgB,GAChB,cAAc,GACd,eAAe,GACf,cAAc,GACd,oBAAoB,GACpB,eAAe,GACf,cAAc,GACd,OAAO,GACP,QAAQ,GACR,UAAU,GACV,MAAM,GACN,QAAQ,GACR,aAAa,GACb,QAAQ,GACR,eAAe,GACf,WAAW,GACX,WAAW,GACX,aAAa,GACb,WAAW,GACX,YAAY,GACZ,QAAQ,GACR,YAAY,GACZ,oBAAoB,GACpB,6BAA6B,GAC7B,2BAA2B,GAC3B,sBAAsB,GACtB,oBAAoB,GACpB,kBAAkB,GAClB,eAAe,GACf,gCAAgC,GAChC,wBAAwB,GACxB,kBAAkB,GAClB,MAAM,GACN,aAAa,GACb,OAAO,GACP,cAAc,GACd,cAAc,GACd,MAAM,GACN,aAAa,GACb,OAAO,GACP,aAAa,GACb,QAAQ,GACR,cAAc,GACd,0BAA0B,GAC1B,WAAW,GACX,mBAAmB,GACnB,OAAO,GACP,WAAW,GACX,kBAAkB,GAClB,MAAM,GACN,MAAM,GACN,aAAa,GACb,MAAM,GACN,UAAU,GACV,MAAM,GACN,aAAa,GACb,aAAa,GACb,aAAa,GACb,4BAA4B,GAC5B,4BAA4B,GAC5B,yBAAyB,GACzB,sBAAsB,GACtB,sBAAsB,GACtB,qBAAqB,GACrB,sBAAsB,GACtB,8BAA8B,GAC9B,qBAAqB,GACrB,yBAAyB,GACzB,uBAAuB,GACvB,4BAA4B,GAC5B,4BAA4B,GAC5B,qBAAqB,GACrB,sBAAsB,GACtB,qBAAqB,GACrB,+BAA+B,GAC/B,yBAAyB,GACzB,iCAAiC,GACjC,qBAAqB,GACrB,oBAAoB,GACpB,4BAA4B,GAC5B,6BAA6B,GAC7B,0BAA0B,GAC1B,4BAA4B,GAC5B,4BAA4B,GAC5B,4BAA4B,GAC5B,qBAAqB,GACrB,wBAAwB,GACxB,sBAAsB,GACtB,oBAAoB,GACpB,wBAAwB,GACxB,yBAAyB,GACzB,SAAS,GACT,MAAM,GACN,aAAa,GACb,QAAQ,GACR,MAAM,GACN,eAAe,GACf,cAAc,GACd,kBAAkB,GAClB,qBAAqB,GACrB,iBAAiB,GACjB,wBAAwB,GACxB,MAAM,GACN,UAAU,GACV,MAAM,GACN,aAAa,GACb,KAAK,GACL,QAAQ,GACR,cAAc,GACd,QAAQ,GACR,eAAe,GACf,oBAAoB,GACpB,mBAAmB,GACnB,kBAAkB,GAClB,WAAW,GACX,aAAa,GACb,SAAS,GACT,iBAAiB,GACjB,eAAe,GACf,sBAAsB,GACtB,UAAU,GACV,iBAAiB,GACjB,WAAW,GACX,QAAQ,GACR,OAAO,GACP,OAAO,GACP,QAAQ,GACR,MAAM,GACN,SAAS,GACT,OAAO,GACP,SAAS,GACT,WAAW,GACX,UAAU,GACV,iBAAiB,GACjB,QAAQ,GACR,QAAQ,GACR,cAAc,GACd,MAAM,GACN,UAAU,GACV,OAAO,GACP,MAAM,GACN,UAAU,GACV,SAAS,GACT,UAAU,GACV,QAAQ,GACR,MAAM,GACN,aAAa,GACb,YAAY,GACZ,QAAQ,GACR,WAAW,GACX,SAAS,GACT,UAAU,GACV,UAAU,GACV,OAAO,GACP,MAAM,GACN,OAAO,GACP,MAAM,GACN,MAAM,GACN,QAAQ,GACR,QAAQ,GACR,eAAe,GACf,eAAe,GACf,QAAQ,GACR,oBAAoB,GACpB,iBAAiB,GACjB,cAAc,GACd,cAAc,GACd,gBAAgB,GAChB,eAAe,GACf,uBAAuB,GACvB,aAAa,GACb,qBAAqB,GACrB,oBAAoB,GACpB,aAAa,GACb,eAAe,GACf,WAAW,GACX,UAAU,GACV,iBAAiB,GACjB,kBAAkB,GAClB,qBAAqB,GACrB,iBAAiB,GACjB,iBAAiB,GACjB,kBAAkB,GAClB,cAAc,GACd,cAAc,GACd,SAAS,GACT,OAAO,GACP,cAAc,GACd,OAAO,GACP,aAAa,CAAC"}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ export type { AKOption, Align, AuxPipelineUserVisibleError, BadgeProps, ButtonAppearance, ButtonProps, ButtonSetProps, CellProps, CheckboxGroupProps, CheckboxProps, CodeLanguages, CodeProps, ColumnProps, ColumnsProps, ConfigFormProps, ContainerProps, CustomFieldPrimitiveProps, CustomFieldEditPrimitiveProps, CustomFieldContextConfigPrimitiveProps, FrameProps, NativeImageProps, NativeLinkProps, NativeButtonProps, NativeBoxProps, NativeCodeProps, NativeTagProps, NativeTextProps, NativeTextAreaProps, NativeTextFieldProps, NativeCheckboxGroupProps, NativeRangeProps, NativeSelectProps, NativeStatusLozengeProps, NativeToggleProps, NativeRadioGroupProps, NativeCheckboxProps, UserPickerValue, NativeUserPickerProps, NativeDatePickerProps, NativePressableProps, PressableAppearance, DateLozengeProps, DatePickerProps, ErrorPanelProps, FormConditionProps, FormData, FormProps, HeadProps, HeadingProps, ImageProps, ImageSizes, InlineDialogProps, IssuePanelActionProps, JsxTextProps, LayoutProps, LinkProps, MarkupProps, MentionProps, ModalDialogProps, ModalDialogWidth, OptionProps, RadioGroupProps, RadioProps, RangeProps, RenderedTextProps, RowProps, SectionMessageProps, SelectProps, StatusLozengeAppearance, StatusLozengeProps, StringProps, TabProps, TabsProps, TableProps, TagColor, TagProps, TagGroupProps, TextAlign, TextAreaProps, TextFieldProps, TextFieldType, ThreeLOPromptProps, ToggleProps, TooltipProps, UserProps, UserGroupProps, UserPickerProps, } from './components';
2
+ export { isLegacyActionEffect, isLegacyBackendEffect, isLegacyEventEffect, isLegacyInitializeEffect, isLegacyRenderEffect, } from './legacy-effect';
3
+ export type { LegacyActionEffect, LegacyBackendEffect, LegacyBackendRuntimePayload, LegacyClientEffect, LegacyEffect, LegacyEventEffect, LegacyInitializeEffect, LegacyRenderEffect, } from './legacy-effect';
4
+ export { isActionEffect, isBackendEffect, isEventEffect, isRenderEffect, isResultEffect, } from './effect';
5
+ export type { ActionEffect, BackendEffect, BackendRuntimePayload, ClientEffect, CoreData, CoreDataInner, Effect, EventEffect, ExtensionData, ExtensionPayload, RenderEffect, ResultEffect, } from './effect';
6
+ export type { BackendRuntimeContext } from './extension';
7
+ export { CompassContextTypes, isContentActionExtensionContext, isContextMenuExtensionContext, isForgeElement, isJiraExtensionContext, isConfluenceExtensionContext, isIssuePanelExtensionContext, isCustomFieldContextConfigExtensionContext, isCustomFieldExtensionContext, isDashboardGadgetExtensionContext, } from './forge';
8
+ export type { CompassAdminPageExtensionContext, CompassComponentPageExtensionContext, CompassTeamPageExtensionContext, ComponentState, ContentActionExtensionContext, ContextMenuExtensionContext, CustomFieldValue, DashboardGadgetExtensionContext, ExtensionConfiguration, ExtensionContext, ForgeProps, ForgeChildren, ForgeDoc, ForgeElement, ForgeNode, FunctionElement, Handler, LicenseState, IssuePanelExtensionContext, CustomFieldContextConfigExtensionContext, CustomFieldExtensionContext, JiraExtensionContext, ConfluenceExtensionContext, PlatformContext, PrimitiveElement, ProductContext, RenderState, } from './forge';
9
+ export type { Icon } from './icons';
10
+ export * from './styles';
11
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.isDashboardGadgetExtensionContext = exports.isCustomFieldExtensionContext = exports.isCustomFieldContextConfigExtensionContext = exports.isIssuePanelExtensionContext = exports.isConfluenceExtensionContext = exports.isJiraExtensionContext = exports.isForgeElement = exports.isContextMenuExtensionContext = exports.isContentActionExtensionContext = exports.CompassContextTypes = exports.isResultEffect = exports.isRenderEffect = exports.isEventEffect = exports.isBackendEffect = exports.isActionEffect = exports.isLegacyRenderEffect = exports.isLegacyInitializeEffect = exports.isLegacyEventEffect = exports.isLegacyBackendEffect = exports.isLegacyActionEffect = void 0;
4
+ const tslib_1 = require("tslib");
5
+ var legacy_effect_1 = require("./legacy-effect");
6
+ Object.defineProperty(exports, "isLegacyActionEffect", { enumerable: true, get: function () { return legacy_effect_1.isLegacyActionEffect; } });
7
+ Object.defineProperty(exports, "isLegacyBackendEffect", { enumerable: true, get: function () { return legacy_effect_1.isLegacyBackendEffect; } });
8
+ Object.defineProperty(exports, "isLegacyEventEffect", { enumerable: true, get: function () { return legacy_effect_1.isLegacyEventEffect; } });
9
+ Object.defineProperty(exports, "isLegacyInitializeEffect", { enumerable: true, get: function () { return legacy_effect_1.isLegacyInitializeEffect; } });
10
+ Object.defineProperty(exports, "isLegacyRenderEffect", { enumerable: true, get: function () { return legacy_effect_1.isLegacyRenderEffect; } });
11
+ var effect_1 = require("./effect");
12
+ Object.defineProperty(exports, "isActionEffect", { enumerable: true, get: function () { return effect_1.isActionEffect; } });
13
+ Object.defineProperty(exports, "isBackendEffect", { enumerable: true, get: function () { return effect_1.isBackendEffect; } });
14
+ Object.defineProperty(exports, "isEventEffect", { enumerable: true, get: function () { return effect_1.isEventEffect; } });
15
+ Object.defineProperty(exports, "isRenderEffect", { enumerable: true, get: function () { return effect_1.isRenderEffect; } });
16
+ Object.defineProperty(exports, "isResultEffect", { enumerable: true, get: function () { return effect_1.isResultEffect; } });
17
+ var forge_1 = require("./forge");
18
+ Object.defineProperty(exports, "CompassContextTypes", { enumerable: true, get: function () { return forge_1.CompassContextTypes; } });
19
+ Object.defineProperty(exports, "isContentActionExtensionContext", { enumerable: true, get: function () { return forge_1.isContentActionExtensionContext; } });
20
+ Object.defineProperty(exports, "isContextMenuExtensionContext", { enumerable: true, get: function () { return forge_1.isContextMenuExtensionContext; } });
21
+ Object.defineProperty(exports, "isForgeElement", { enumerable: true, get: function () { return forge_1.isForgeElement; } });
22
+ Object.defineProperty(exports, "isJiraExtensionContext", { enumerable: true, get: function () { return forge_1.isJiraExtensionContext; } });
23
+ Object.defineProperty(exports, "isConfluenceExtensionContext", { enumerable: true, get: function () { return forge_1.isConfluenceExtensionContext; } });
24
+ Object.defineProperty(exports, "isIssuePanelExtensionContext", { enumerable: true, get: function () { return forge_1.isIssuePanelExtensionContext; } });
25
+ Object.defineProperty(exports, "isCustomFieldContextConfigExtensionContext", { enumerable: true, get: function () { return forge_1.isCustomFieldContextConfigExtensionContext; } });
26
+ Object.defineProperty(exports, "isCustomFieldExtensionContext", { enumerable: true, get: function () { return forge_1.isCustomFieldExtensionContext; } });
27
+ Object.defineProperty(exports, "isDashboardGadgetExtensionContext", { enumerable: true, get: function () { return forge_1.isDashboardGadgetExtensionContext; } });
28
+ tslib_1.__exportStar(require("./styles"), exports);
@@ -0,0 +1,40 @@
1
+ import { RenderState, Handler, ForgeDoc, ExtensionConfiguration } from './forge';
2
+ export interface LegacyBackendRuntimePayload {
3
+ context: Record<string, any>;
4
+ effects: LegacyBackendEffect[];
5
+ state: RenderState;
6
+ config?: ExtensionConfiguration;
7
+ contextToken?: string;
8
+ }
9
+ interface LegacyBaseEffect {
10
+ type: string;
11
+ }
12
+ export interface LegacyInitializeEffect extends LegacyBaseEffect {
13
+ type: 'initialize';
14
+ }
15
+ export interface LegacyEventEffect extends LegacyBaseEffect {
16
+ type: 'event';
17
+ handler: Handler;
18
+ args: any[];
19
+ }
20
+ export interface LegacyActionEffect extends LegacyBaseEffect {
21
+ type: 'action';
22
+ hookIndex: number;
23
+ componentKey: string;
24
+ payload?: any;
25
+ }
26
+ export interface LegacyRenderEffect extends LegacyBaseEffect {
27
+ type: 'render';
28
+ aux: ForgeDoc;
29
+ state: RenderState;
30
+ }
31
+ export declare type LegacyBackendEffect = LegacyInitializeEffect | LegacyActionEffect | LegacyEventEffect;
32
+ export declare type LegacyClientEffect = LegacyRenderEffect;
33
+ export declare type LegacyEffect = LegacyBackendEffect | LegacyClientEffect;
34
+ export declare const isLegacyInitializeEffect: (effect: LegacyEffect) => effect is LegacyInitializeEffect;
35
+ export declare const isLegacyActionEffect: (effect: LegacyEffect) => effect is LegacyActionEffect;
36
+ export declare const isLegacyEventEffect: (effect: LegacyEffect) => effect is LegacyEventEffect;
37
+ export declare const isLegacyRenderEffect: (effect: LegacyEffect) => effect is LegacyRenderEffect;
38
+ export declare function isLegacyBackendEffect(effect: LegacyEffect): effect is LegacyBackendEffect;
39
+ export {};
40
+ //# sourceMappingURL=legacy-effect.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"legacy-effect.d.ts","sourceRoot":"","sources":["../../src/types/legacy-effect.ts"],"names":[],"mappings":"AACA,OAAO,EACL,WAAW,EACX,OAAO,EACP,QAAQ,EACR,sBAAsB,EACvB,MAAM,SAAS,CAAC;AAEjB,MAAM,WAAW,2BAA2B;IAC1C,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAC7B,OAAO,EAAE,mBAAmB,EAAE,CAAC;IAC/B,KAAK,EAAE,WAAW,CAAC;IACnB,MAAM,CAAC,EAAE,sBAAsB,CAAC;IAChC,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AACD,UAAU,gBAAgB;IACxB,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,sBAAuB,SAAQ,gBAAgB;IAC9D,IAAI,EAAE,YAAY,CAAC;CACpB;AACD,MAAM,WAAW,iBAAkB,SAAQ,gBAAgB;IACzD,IAAI,EAAE,OAAO,CAAC;IACd,OAAO,EAAE,OAAO,CAAC;IACjB,IAAI,EAAE,GAAG,EAAE,CAAC;CACb;AAED,MAAM,WAAW,kBAAmB,SAAQ,gBAAgB;IAC1D,IAAI,EAAE,QAAQ,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;IAClB,YAAY,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,GAAG,CAAC;CACf;AAED,MAAM,WAAW,kBAAmB,SAAQ,gBAAgB;IAC1D,IAAI,EAAE,QAAQ,CAAC;IACf,GAAG,EAAE,QAAQ,CAAC;IACd,KAAK,EAAE,WAAW,CAAC;CACpB;AAED,oBAAY,mBAAmB,GAC3B,sBAAsB,GACtB,kBAAkB,GAClB,iBAAiB,CAAC;AAEtB,oBAAY,kBAAkB,GAAG,kBAAkB,CAAC;AACpD,oBAAY,YAAY,GAAG,mBAAmB,GAAG,kBAAkB,CAAC;AAEpE,eAAO,MAAM,wBAAwB,WAC3B,YAAY,qCAGrB,CAAC;AAEF,eAAO,MAAM,oBAAoB,WACvB,YAAY,iCAGrB,CAAC;AAEF,eAAO,MAAM,mBAAmB,WACtB,YAAY,gCAGrB,CAAC;AAEF,eAAO,MAAM,oBAAoB,WACvB,YAAY,iCAGrB,CAAC;AAEF,wBAAgB,qBAAqB,CACnC,MAAM,EAAE,YAAY,GACnB,MAAM,IAAI,mBAAmB,CAM/B"}
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.isLegacyBackendEffect = exports.isLegacyRenderEffect = exports.isLegacyEventEffect = exports.isLegacyActionEffect = exports.isLegacyInitializeEffect = void 0;
4
+ const isLegacyInitializeEffect = (effect) => {
5
+ return effect.type === 'initialize';
6
+ };
7
+ exports.isLegacyInitializeEffect = isLegacyInitializeEffect;
8
+ const isLegacyActionEffect = (effect) => {
9
+ return effect.type === 'action';
10
+ };
11
+ exports.isLegacyActionEffect = isLegacyActionEffect;
12
+ const isLegacyEventEffect = (effect) => {
13
+ return effect.type === 'event';
14
+ };
15
+ exports.isLegacyEventEffect = isLegacyEventEffect;
16
+ const isLegacyRenderEffect = (effect) => {
17
+ return effect.type === 'render';
18
+ };
19
+ exports.isLegacyRenderEffect = isLegacyRenderEffect;
20
+ function isLegacyBackendEffect(effect) {
21
+ return ((0, exports.isLegacyInitializeEffect)(effect) ||
22
+ (0, exports.isLegacyActionEffect)(effect) ||
23
+ (0, exports.isLegacyEventEffect)(effect));
24
+ }
25
+ exports.isLegacyBackendEffect = isLegacyBackendEffect;
@@ -0,0 +1,154 @@
1
+ declare type Unit = '%' | 'em' | 'px' | 'vh' | 'vw' | 'rem' | 'ms' | 's';
2
+ declare type UnitSize<T extends Unit> = `${number}${T}`;
3
+ declare type LengthUnit = '%' | 'em' | 'px' | 'vh' | 'vw' | 'rem';
4
+ declare type FontUnit = 'px' | 'em' | 'rem' | '%';
5
+ declare type TimeUnit = 'ms' | 's';
6
+ declare type FontSizing = UnitSize<FontUnit>;
7
+ declare type LineHeightSizing = UnitSize<FontUnit>;
8
+ declare type TimeSize = UnitSize<TimeUnit>;
9
+ declare type LengthSize = UnitSize<LengthUnit>;
10
+ declare type SpaceSize = UnitSize<LengthUnit>;
11
+ declare type MultiSpaceSize = `${number}${LengthUnit}` | `${number}${LengthUnit} ${number}${LengthUnit}` | `${number}${LengthUnit} ${number}${LengthUnit} ${number}${LengthUnit} ${number}${LengthUnit}`;
12
+ declare type StringNumber = `${number}`;
13
+ declare type Overflow = 'visible' | 'hidden' | 'clip' | 'scroll' | 'auto';
14
+ declare type BorderStyle = 'dotted' | 'dashed' | 'solid';
15
+ declare type TextDecorationLine = 'none' | 'underline' | 'overline' | 'line-through' | 'blink';
16
+ declare type BackgroundClip = 'border-box' | 'padding-box' | 'content-box' | 'text';
17
+ declare type BackgroundOrigin = 'border-box' | 'padding-box' | 'content-box';
18
+ export interface AllowedPrimitives {
19
+ padding?: MultiSpaceSize;
20
+ paddingTop?: SpaceSize;
21
+ paddingRight?: SpaceSize;
22
+ paddingBottom?: SpaceSize;
23
+ paddingLeft?: SpaceSize;
24
+ gap?: SpaceSize;
25
+ margin?: MultiSpaceSize;
26
+ marginTop?: SpaceSize;
27
+ marginRight?: SpaceSize;
28
+ marginBottom?: SpaceSize;
29
+ marginLeft?: SpaceSize;
30
+ fontFamily?: string;
31
+ fontSize?: FontSizing;
32
+ fontStretch?: 'ultra-condensed' | 'extra-condensed' | 'condensed' | 'semi-condensed' | 'normal' | 'semi-expanded' | 'expanded' | 'extra-expanded' | 'ultra-expanded';
33
+ fontStyle?: 'normal' | 'italic' | 'oblique';
34
+ fontVariantCaps?: 'normal' | 'small-caps' | 'all-small-caps' | 'petite-caps' | 'all-petite-caps' | 'unicase' | 'titling-caps';
35
+ fontVariantEastAsian?: 'normal' | 'jis78' | 'jis83' | 'jis90' | 'jis04' | 'simplified' | 'traditional' | 'full-width' | 'proportional-width' | 'ruby';
36
+ fontVariantLigatures?: 'normal' | 'none' | 'common-ligatures' | 'no-common-ligatures' | 'discretionary-ligatures' | 'no-discretionary-ligatures' | 'historical-ligatures' | 'no-historical-ligatures' | 'contextual' | 'no-contextual';
37
+ fontVariantNumeric?: 'normal' | 'ordinal' | 'slashed-zero' | 'lining-nums' | 'oldstyle-nums' | 'proportional-nums' | 'tabular-nums' | 'diagonal-fractions' | 'stacked-fractions';
38
+ fontWeight?: 'normal' | 'bold' | 'lighter' | 'bolder';
39
+ lineHeight?: LineHeightSizing;
40
+ letterSpacing?: UnitSize<'px'>;
41
+ textIndent?: SpaceSize;
42
+ color?: ColorType;
43
+ textDecorationColor?: ColorType;
44
+ textDecorationLine?: TextDecorationLine | Array<TextDecorationLine>;
45
+ textDecorationStyle?: 'solid' | 'double' | 'dotted' | 'dashed' | 'wavy';
46
+ textDecorationThickness?: LengthSize;
47
+ visibility?: 'visible' | 'hidden' | 'collapse';
48
+ zIndex?: `${number}`;
49
+ whiteSpace?: 'normal' | 'nowrap' | 'pre' | 'pre-line' | 'pre-wrap' | 'break-spaces';
50
+ display?: 'block' | 'flex' | 'inline' | 'inline-flex' | 'none';
51
+ position?: 'absolute' | 'fixed' | 'relative' | 'static' | 'sticky';
52
+ top?: StringNumber;
53
+ right?: StringNumber;
54
+ bottom?: StringNumber;
55
+ left?: StringNumber;
56
+ textAlign?: 'start' | 'end' | 'left' | 'right' | 'center' | 'justify' | 'justify-all' | 'match-parent';
57
+ verticalAlign?: 'baseline' | 'sub' | 'super' | 'text-top' | 'text-bottom' | 'middle' | 'top' | 'bottom';
58
+ alignContent?: 'start' | 'end' | 'center' | 'space-between' | 'space-around' | 'space-evenly' | 'stretch' | 'baseline';
59
+ alignItems?: 'stretch' | 'start' | 'end' | 'center' | 'baseline';
60
+ alignSelf?: 'auto' | 'start' | 'end' | 'center' | 'baseline' | 'stretch';
61
+ flexBasis?: 'auto';
62
+ flexDirection?: 'row' | 'row-reverse' | 'column' | 'column-reverse';
63
+ flexGrow?: StringNumber;
64
+ flexShrink?: StringNumber;
65
+ flexWrap?: 'nowrap' | 'wrap' | 'wrap-reverse';
66
+ justifyContent?: 'start' | 'end' | 'center' | 'space-between' | 'space-around' | 'space-evenly';
67
+ width?: LengthSize;
68
+ height?: LengthSize;
69
+ maxWidth?: LengthSize;
70
+ maxHeight?: LengthSize;
71
+ minWidth?: LengthSize;
72
+ minHeight?: LengthSize;
73
+ overflow?: Overflow;
74
+ overflowX?: Overflow;
75
+ overflowY?: Overflow;
76
+ backgroundImage?: string | ImageValue | (string | ImageValue)[];
77
+ backgroundPosition?: BackgroundValue;
78
+ backgroundSize?: BackgroundValue;
79
+ backgroundRepeat?: BackgroundValue;
80
+ backgroundClip?: BackgroundClip | Array<BackgroundClip>;
81
+ backgroundOrigin?: BackgroundOrigin | Array<BackgroundOrigin>;
82
+ backgroundAttachment?: string | string[];
83
+ backgroundColor?: ColorType;
84
+ backgroundGradient?: GradientValue;
85
+ borderRadius?: LengthSize;
86
+ boxShadow?: ShadowValue | ShadowValue[];
87
+ transitionDelay?: TimeSize;
88
+ transitionDuration?: TimeSize;
89
+ transitionProperty?: 'all' | 'width' | 'height';
90
+ transitionTimingFunction?: 'ease' | 'linear' | 'ease-in' | 'ease-out' | 'ease-in-out';
91
+ borderWidth?: LengthSize;
92
+ borderTopWidth?: LengthSize;
93
+ borderRightWidth?: LengthSize;
94
+ borderBottomWidth?: LengthSize;
95
+ borderLeftWidth?: LengthSize;
96
+ borderStyle?: BorderStyle;
97
+ borderTopStyle?: BorderStyle;
98
+ borderRightStyle?: BorderStyle;
99
+ borderBottomStyle?: BorderStyle;
100
+ borderLeftStyle?: BorderStyle;
101
+ borderColor?: ColorType;
102
+ outlineWidth?: LengthSize;
103
+ outlineStyle?: BorderStyle;
104
+ outlineColor?: ColorType;
105
+ boxSizing?: 'content-box' | 'border-box';
106
+ textShadow?: ShadowValue;
107
+ transform?: TransformValue[];
108
+ __hover?: AllowedPrimitives;
109
+ __focus?: AllowedPrimitives;
110
+ __active?: AllowedPrimitives;
111
+ }
112
+ export interface MethodValue<M, T> {
113
+ method: M;
114
+ value: T;
115
+ }
116
+ export declare type BackgroundValue = string | (string[] | string)[];
117
+ export interface Definitions {
118
+ [key: string]: AllowedPrimitives;
119
+ }
120
+ export declare type RGBAColorValue = MethodValue<'rgba' | 'rgb', {
121
+ r: number;
122
+ g: number;
123
+ b: number;
124
+ a?: number;
125
+ }>;
126
+ declare type HexValue = `#${string}`;
127
+ export declare type ColorType = HexValue | RGBAColorValue;
128
+ export declare type GradientValue = MethodValue<'gradient', {
129
+ degrees?: string;
130
+ colors: {
131
+ percent: string;
132
+ value: ColorType;
133
+ }[];
134
+ type: 'linear' | 'radial';
135
+ }>;
136
+ export declare type ImageValue = GradientValue | URLValue;
137
+ export declare type URLValue = MethodValue<'url', {
138
+ path: string;
139
+ }>;
140
+ export declare type ShadowValue = MethodValue<'shadow', {
141
+ offsets: string;
142
+ color: ColorType;
143
+ }>;
144
+ export declare type TransformValue = MethodValue<'translate' | 'scale' | 'rotate' | 'skew', {
145
+ x?: string;
146
+ y?: string;
147
+ z?: string;
148
+ degrees?: string;
149
+ }>;
150
+ export interface StyleProps {
151
+ style?: AllowedPrimitives;
152
+ }
153
+ export {};
154
+ //# sourceMappingURL=styles.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../src/types/styles.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/react",
3
- "version": "0.0.0-experimental-9489df9",
3
+ "version": "0.0.0-experimental-72f4150",
4
4
  "description": "Forge React reconciler",
5
5
  "author": "Atlassian",
6
6
  "license": "UNLICENSED",
@@ -9,10 +9,11 @@
9
9
  "scripts": {
10
10
  "build": "yarn run clean && yarn run compile",
11
11
  "clean": "rm -rf ./out && rm -f tsconfig.tsbuildinfo",
12
- "compile": "tsc -p tsconfig.json"
12
+ "compile": "tsc -p tsconfig.json",
13
+ "pack": "./build/bundle-types.sh"
13
14
  },
14
15
  "peerDependencies": {
15
- "@forge/ui": "0.0.0-experimental-9489df9"
16
+ "@forge/ui": "1.6.0"
16
17
  },
17
18
  "dependencies": {
18
19
  "@types/react-reconciler": "^0.28.0",
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/tslib/tslib.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/scheduler/tracing.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/@types/react/jsx-runtime.d.ts","./src/types/forge.ts","./src/types/icons.ts","./src/types/styles.ts","./src/types/components.ts","./src/types/legacy-effect.ts","./src/types/effect.ts","./src/types/extension.ts","./src/types/index.ts","./src/components.tsx","./src/globals.d.ts","../../node_modules/@types/react-reconciler/index.d.ts","../../node_modules/@types/react-reconciler/constants.d.ts","../../node_modules/@types/uuid/interfaces.d.ts","../../node_modules/@types/uuid/index.d.ts","./src/reconciler.ts","./src/styles/index.ts","./src/index.ts","./src/__test__/styles.test.tsx","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/events/index.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@jest/expect-utils/build/index.d.ts","../../node_modules/jest-matcher-utils/node_modules/chalk/index.d.ts","../../node_modules/pretty-format/node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/pretty-format/node_modules/@jest/schemas/build/index.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/expect/build/index.d.ts","../../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"381899b8d1d4c1be716f18cb5242ba39f66f4b1e31d45af62a32a99f8edcb39d","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"1bc82f5b3bb93df76d19730c84467b0b346187198537135d63a672956f323720","affectsGlobalScope":true},"af7fd2870746deed40e130fc0a3966de74e8f52a97ec114d0fbb35876ab05ca9",{"version":"392afef9bb85cba4a48cc902998b7c004b77873c298248e7617bf5550d88695e","signature":"429aa2d20823b53afe6b62caf53f020c7c29ce09041cf3bd3d195008ec8f0340"},{"version":"11c057ce7fd5b975ce63dcb6a5b2af636c406e9d1c0bc886d1b8555d6e20168b","signature":"6a7a49450e0755638eaa2f1262ccae19b6e1aa291ccd5a83c7c1acfed73eeb77"},{"version":"8d16d5dfcd6171ad6d1b7e68f7748650146d2592b261423d69dbe692abe8e628","signature":"27ffd825e91a28de547fa3b670c1ed4c27fc11e49f4d49a3c36942d46d3f7f21"},{"version":"ad6314b2a26a998c5fefe923bf873f68895154f4cbd85b36502fdc583bad09c2","signature":"8343585376e045465c6586eee905bd68e3c932d9cec60dd32aff70e47b02455e"},{"version":"066ace8e087d2485b36e840f175e9281114f328fa8534747743e40acfb13cf16","signature":"528840285e57c1e127ddf0f270748376af70c16adefbd129b7641c103d349cb4"},{"version":"98ac2df42f7dde2fba315caf973b6db95844051ec5ad3ce7f1dd17e7e1c81688","signature":"d4c5ef745a05f0c9f4619816a1576d6660cd8974b0c3d0b68df0040311d3cca1"},{"version":"60ece01e093d30d84796a01776d011c4c6d4dfc6e98d995cda51dcf316fa6a2a","signature":"0f951edcafa13cbafb3e0b6d75271f2207a0e9d90230eba51fc476347daa70c0"},{"version":"d4171ee52a54f55421e22f97817ef27b90c7cce2c19d2801c6d08bda12da81f1","signature":"65772aaa3bfb9dd4d9c074e8d29dc988967c2258d3ffb16cacc0912ab2365511"},{"version":"844aef5ef3c67d1f41b20b84f00a64338d369c009b1e39cbfb627cf1e1fb1af0","signature":"74342138c1e3a52a336a4eb4d6314a35e745b12a93ba6976957b4bb99ce3e298"},{"version":"c7422e5fa00f90d68ada7be6aaae5de28f6ac19ce770c7ea31dd5b494ad18866","affectsGlobalScope":true},"6a2042566262845be84bd6575b1e79ad9ceb9378c340c8175e53ab18ff7d13d5","79b9d7f669b76f2bc9227a3bd5fa2c47a5d6440c7fced8370ece9a21ae748f64","4116dff2582ecc8645c3a90d26707ec6fd9ede6631f63fb65f11d42806bb47f1","8486ee0cb2ef80c6555941e2e0d081b27e9a07eca9df720c99f001f5220f14b5",{"version":"01c015239d9a7acb70f4fedcc83959c7b66dfdff362059fdb97c90bccd0fa90a","signature":"55daabe572b61d22f052810c94f92633431e1ac49a9b2cfd05979fcbbd549b93"},{"version":"886961346e0270b3aeb179fdfba8017341febfd7241c5b3b3bef38601533cb44","signature":"e8d091a105538430505f7d42c0958afda26a62de722f05afecf4d7b35249d4eb"},{"version":"6676b6676311ef9698e03b0086fb18e4d22e985c4926eef23d0cec6c97d6af89","signature":"4cc960665f13809b54343c028bb59335db3a6e5bae95963ee2cf30944df4a318"},{"version":"8eab4dbc52ac44d5a0a30696fb7aa112ceaea0806e0e30f70eb64d2b5cb94434","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"0ce65cf5b36034006f2b315f379179f07bd5a6027f6538c7aed4ac5be6742fc7",{"version":"dd83f0d6c94825b05a6dd1013ee54379ce6029711509876b969f872f815ef7ef","affectsGlobalScope":true},"0721418a90edc5fca466672f266ab6de12cb50a9db29998fc58765481a3c82ef","97b39f33e966bcf9762bccdaca76c94825199f3fef153ebea9bdfd3fcd2413b6","400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935","bf0ae001d0797ccbb74b3a91d88d28022e809f47f97e1b2b44b3e343b114cc95","c41eff6b8e1f91104ae974ccd2bc37c723a462b30ca1df942b2c5b0158ef1df3","2e341737e0711c12040e83047487240b1693a6774253b8142d1a0500a805b7a1","e08e97c2865750e880fea09b150a702ccfa84163382daa0221f5597185a554bf","7ec6b45fc1f5f012ac226b44d0eeaf5a0e90947431ad7c6d1f244ba080b2870d","4a1a19573176829708dc03efea508e7c364f6fa30098a5100bd9d93fc9cd38ee","8296198bc72e7ef2221b0e140738ce56004e8d1323cd08b0ac1a15295fe911b5","baeda1fadac9fd31920480b85340ab9c4266a25ad08403dee8e15fd0751101fb","12c4e8e811f4310b0dcaa3d1f843a35dc985f78941886cad4950453ad6753959","6bdede4dc73ad9816d0beeca7413ab29523f99a98441cc9fa6c614fd97fac49d","f8cf3768524d5f6fea2c7387848801e717eb911c0e63a72eabb960adc749cf09","b3e4f2772da66bac2144ca8cd63f70d211d2f970c93fcb789d03e8a046d47c93","a3586135924c800f21f739a1da43acace1acfdba124deb0871cbd6d04d7dfd1b","f74c1fae7233cd08c72bb2dc09cb0673c53fb4c3c7903ccf0094404e3f2ba6d4","4ec74fe565d13fd219884cfacf903c89477cc54148887e51c5bead4dae7dc4fd","f50f52f8fc2a5f8dfa594ff59a6273876b1734fe612e9f331ca9078fede3b304","a46d8aa9e561fb135d253e1657a0cd0f6c18377676305eb0ca28e418358b229c","5a168a15e7a423011b10da472ee3b6d92b27227c192cdaf1e09b30f58806856d","ad107fa472d28e615af522b31653e75caad12b834b257c1a83f6c4acff2de9bf",{"version":"07cfc938dfbb5a7b5ba3c363366db93d5728b0fcad1aa08a12052a1b3b72817a","affectsGlobalScope":true},"7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6","67cf04da598e6407427a17d828e9e02d8f5ae5a8466dc73d1585073b8dc29160","fa960168e0650a987d5738376a22a1969b5dff2112b9653f9f1efddf8ba7d5bb","140b05c89cbd5fc75c4e9c1780d85dfb4ea73a2b11dd345f8f944afd002ad74f","ece46d0e5702e9c269aa71b42d02c934c10d4d24545b1d8594a8115f23a9011f","5b0df2143d96172bf207ed187627e8c58b15a1a8f97bdbc2ede942b36b39fc98","75409a3abea76ea586c6fb7f2e9f1a7dc007140e2d4ee26ab127735c4f9154e4","8e721f0a95eb26a30228d571659d2db062213bfe066a97fff7967a0c8e1d56e4","7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4","9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5","807bf667365224f909aed5111ac8527e8e148f37fc73c61f70c762b920fb62c7","3d87bdaed72f86b91f99401e6e04729afbb5916064778cf324b3d9b51c3a6d91","8ca837d16a31d6d01b13328ca9e6a39e424b4bf294d3b73349dccacea51be730","a9d40247ec6c68a47effbb1d8acd8df288bcee7b6bf29c17cf4161e5ef609a0c","caf38c850b924a0af08a893d06f68fcae3d5a41780b50cc6df9481beeca8e9a3","7152c46a63e7f9ac7db6cd8d4dbf85d90f051a0db60e650573fae576580cbf9a","496370c58ed054e51a68517846c28a695bf84df2873556cca7fe51e297b32420",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"263da3252e029b3b62580b7a0c5e7bab07325a31c8af436ff60143cfda73b629","763e521cf114b80e0dd0e21ca49b9f8ae62e8999555a5e7bade8ce36b33001c2","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","776bb20d045af25df4f1b85a5e0c8bcc19d5ec1d653594b297e52e89ee7924e4","427ce5854885cfc34387e09de05c1d5c1acf94c2143e1693f1d9ff54880573e7","bed2c4f96fab3348be4a34d88dcb12578c1b2475b07c6acd369e99e227718d81","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2","3ad5991645bbea846d4efe615cd847e785ca30fff0205fdffb0f9a3ade3d13df",{"version":"a2b95a93a5926d6d54fbf6b29533f0e3e9f75ca6d6b6a1a94eec7b34ac7890bf","affectsGlobalScope":true}],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"importHelpers":true,"jsx":4,"module":1,"noUnusedLocals":true,"outDir":"./out","removeComments":true,"rootDir":"./src","skipLibCheck":true,"strict":true,"target":4,"useUnknownInCatchVariables":false},"fileIdsList":[[102,105],[67,74,83],[59,67,74],[83],[65,67,74],[67],[67,83,89],[74,83,89],[67,68,69,74,83,86,89],[69,83,86,89],[54,55,56,57,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96],[65,67,83],[56],[88],[81,90,92],[74,83],[74],[80],[67,68,83,92],[34],[30,31,32,33],[48],[98,104],[102],[99,103],[101],[100],[29,35,51],[29,35,43],[29,35,44,50,51],[29,35,46,47,49],[29,35,36,37,38],[29,35,36],[29,35],[29,35,36,37,38,39,40,41,42],[43],[44,50,51],[36,37,38],[36],[36,37,38,39,40,41,42]],"referencedMap":[[106,1],[59,2],[60,3],[63,4],[64,5],[66,6],[67,6],[68,7],[69,8],[70,9],[71,10],[97,11],[72,6],[74,12],[77,13],[78,14],[81,6],[82,15],[83,6],[86,16],[88,17],[89,18],[91,4],[94,19],[95,4],[46,20],[34,21],[35,20],[49,22],[105,23],[103,24],[104,25],[102,26],[101,27],[53,28],[44,29],[52,30],[50,31],[51,29],[39,32],[41,33],[42,34],[36,34],[37,34],[43,35],[40,33],[38,34]],"exportedModulesMap":[[106,1],[59,2],[60,3],[63,4],[64,5],[66,6],[67,6],[68,7],[69,8],[70,9],[71,10],[97,11],[72,6],[74,12],[77,13],[78,14],[81,6],[82,15],[83,6],[86,16],[88,17],[89,18],[91,4],[94,19],[95,4],[46,20],[34,21],[35,20],[49,22],[105,23],[103,24],[104,25],[102,26],[101,27],[44,36],[52,37],[51,36],[39,38],[41,39],[43,40],[40,39]],"semanticDiagnosticsPerFile":[98,58,106,54,56,57,59,60,61,62,63,64,65,66,67,68,55,96,69,70,71,97,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,32,47,46,30,34,35,33,49,48,31,105,103,104,99,102,101,100,29,7,6,2,8,9,10,11,12,13,14,15,3,4,19,16,17,18,20,21,22,5,23,24,25,26,27,1,28,53,44,45,52,50,51,39,41,42,36,37,43,40,38],"latestChangedDtsFile":"./out/__test__/styles.test.d.ts"},"version":"4.8.4"}
package/src/globals.d.ts DELETED
@@ -1,12 +0,0 @@
1
- interface GlobalBridge {
2
- callBridge(action: 'reconcile', payload: any): Promise<any>;
3
- __SEMVER: string;
4
- }
5
-
6
- declare module '@forge/react' {
7
- global {
8
- interface Window {
9
- __bridge: GlobalBridge;
10
- }
11
- }
12
- }
package/src/index.ts DELETED
@@ -1 +0,0 @@
1
- export { ForgeReconciler as default } from './reconciler';