@forge/react 11.18.0-next.2 → 12.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +45 -0
- package/out/__test__/reconcilerTestRenderer.d.ts +5 -5
- package/out/__test__/reconcilerTestRenderer.d.ts.map +1 -1
- package/out/__test__/testUtils.d.ts +6 -6
- package/out/__test__/testUtils.d.ts.map +1 -1
- package/out/components/adf-renderer.d.ts +1 -1
- package/out/components/adf-renderer.d.ts.map +1 -1
- package/out/components/comment.d.ts.map +1 -1
- package/out/components/dynamic-table.d.ts.map +1 -1
- package/out/components/global/index.d.ts +12 -12
- package/out/components/global/index.d.ts.map +1 -1
- package/out/components/index.d.ts +1 -1
- package/out/components/index.d.ts.map +1 -1
- package/out/components/inline-edit.d.ts.map +1 -1
- package/out/components/jira/custom-field-edit.d.ts.map +1 -1
- package/out/components/popup.d.ts.map +1 -1
- package/out/components/ui-kit-components.d.ts +79 -80
- package/out/components/ui-kit-components.d.ts.map +1 -1
- package/out/components/utils/content-wrapper.d.ts +1 -1
- package/out/components/utils/content-wrapper.d.ts.map +1 -1
- package/out/components/utils/replaceUnsupportedDocumentNodes.d.ts.map +1 -1
- package/out/hooks/__test__/usePermissions.test.js +2 -2
- package/out/hooks/confluenceEntity.d.ts.map +1 -1
- package/out/hooks/jiraEntity.d.ts.map +1 -1
- package/out/hooks/types/confEntityProps.d.ts +4 -4
- package/out/hooks/types/confEntityProps.d.ts.map +1 -1
- package/out/hooks/types/entityProps.d.ts +12 -12
- package/out/hooks/types/entityProps.d.ts.map +1 -1
- package/out/hooks/types/jiraEntityProps.d.ts +2 -2
- package/out/hooks/types/jiraEntityProps.d.ts.map +1 -1
- package/out/hooks/types/objectStoreProps.d.ts +6 -6
- package/out/hooks/types/objectStoreProps.d.ts.map +1 -1
- package/out/hooks/useContentProperty.d.ts.map +1 -1
- package/out/hooks/useEntityProperty.d.ts.map +1 -1
- package/out/hooks/useForm.d.ts +3 -3
- package/out/hooks/useForm.d.ts.map +1 -1
- package/out/hooks/useForm.js +2 -3
- package/out/hooks/useIssueProperty.d.ts +1 -1
- package/out/hooks/useIssueProperty.d.ts.map +1 -1
- package/out/hooks/useObjectStore.d.ts.map +1 -1
- package/out/hooks/useObjectStore.js +1 -2
- package/out/hooks/usePermissions.d.ts.map +1 -1
- package/out/hooks/useSpaceProperty.d.ts +1 -1
- package/out/hooks/useSpaceProperty.d.ts.map +1 -1
- package/out/hooks/useTheme.d.ts +1 -1
- package/out/hooks/useTheme.d.ts.map +1 -1
- package/out/hooks/useTranslation.d.ts +1 -1
- package/out/hooks/useTranslation.d.ts.map +1 -1
- package/out/hooks/utils/apiRequestUtils.d.ts.map +1 -1
- package/out/hooks/utils/valueUtils.d.ts +1 -1
- package/out/hooks/utils/valueUtils.d.ts.map +1 -1
- package/out/index.d.ts.map +1 -1
- package/out/package-types.d.ts +2 -2
- package/out/package-types.d.ts.map +1 -1
- package/out/reconciler.d.ts +17 -17
- package/out/reconciler.d.ts.map +1 -1
- package/out/router/components/ParamsContext.d.ts +0 -1
- package/out/router/components/ParamsContext.d.ts.map +1 -1
- package/out/router/components/Route.d.ts.map +1 -1
- package/out/router/components/Router.d.ts.map +1 -1
- package/out/router/hooks/useParams.d.ts.map +1 -1
- package/out/router/utils/matchPath.d.ts.map +1 -1
- package/out/router/utils/test-utils.d.ts.map +1 -1
- package/out/types/components.d.ts +41 -41
- package/out/types/components.d.ts.map +1 -1
- package/out/types/effect.d.ts +6 -6
- package/out/types/effect.d.ts.map +1 -1
- package/out/types/effect.js +2 -2
- package/out/types/forge.d.ts +8 -8
- package/out/types/forge.d.ts.map +1 -1
- package/out/types/forge.js +3 -3
- package/out/types/icons.d.ts +1 -1
- package/out/types/icons.d.ts.map +1 -1
- package/out/types/legacy-effect.d.ts +3 -3
- package/out/types/legacy-effect.d.ts.map +1 -1
- package/out/types/legacy-effect.js +2 -2
- package/package.json +14 -5
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,50 @@
|
|
|
1
1
|
# @forge/react
|
|
2
2
|
|
|
3
|
+
## 12.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- 78fcb7f: Adds support for TypeScript 5
|
|
8
|
+
|
|
9
|
+
### Minor Changes
|
|
10
|
+
|
|
11
|
+
- a82637d: Add ReorderableMenuItems to @forge/react/global
|
|
12
|
+
- 8dc5a0c: Add routing components and hooks for use in full-page apps.
|
|
13
|
+
|
|
14
|
+
Added the following:
|
|
15
|
+
|
|
16
|
+
- `Router`
|
|
17
|
+
- `Route`
|
|
18
|
+
- `useNavigate`
|
|
19
|
+
- `useLocation`
|
|
20
|
+
- `useParams`
|
|
21
|
+
|
|
22
|
+
- 01550cf: Fix flaky unit test
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- 7504dd5: Fix naming on PersonalSettingsItem
|
|
27
|
+
- Updated dependencies [b0b69a2]
|
|
28
|
+
- Updated dependencies [561f8f4]
|
|
29
|
+
- Updated dependencies [78fcb7f]
|
|
30
|
+
- Updated dependencies [cea3c0e]
|
|
31
|
+
- @forge/bridge@6.0.0
|
|
32
|
+
- @forge/egress@3.0.0
|
|
33
|
+
- @forge/i18n@1.0.0
|
|
34
|
+
|
|
35
|
+
## 12.0.0-next.3
|
|
36
|
+
|
|
37
|
+
### Major Changes
|
|
38
|
+
|
|
39
|
+
- 78fcb7f: Adds support for TypeScript 5
|
|
40
|
+
|
|
41
|
+
### Patch Changes
|
|
42
|
+
|
|
43
|
+
- Updated dependencies [78fcb7f]
|
|
44
|
+
- @forge/bridge@6.0.0-next.3
|
|
45
|
+
- @forge/egress@3.0.0-next.0
|
|
46
|
+
- @forge/i18n@1.0.0-next.0
|
|
47
|
+
|
|
3
48
|
## 11.18.0-next.2
|
|
4
49
|
|
|
5
50
|
### Minor Changes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
|
|
2
|
+
type Act = (cb: () => Promise<any>) => Promise<any>;
|
|
3
3
|
export declare const create: (element: React.ReactElement) => Promise<{
|
|
4
4
|
update(newElement: React.ReactElement): Promise<void>;
|
|
5
5
|
}>;
|
|
@@ -7,12 +7,12 @@ export declare const addConfig: (element: React.ReactElement) => Promise<{
|
|
|
7
7
|
update(newElement: React.ReactElement): Promise<void>;
|
|
8
8
|
}>;
|
|
9
9
|
declare const _default: {
|
|
10
|
-
create: (element: React.ReactElement
|
|
11
|
-
update(newElement: React.ReactElement
|
|
10
|
+
create: (element: React.ReactElement) => Promise<{
|
|
11
|
+
update(newElement: React.ReactElement): Promise<void>;
|
|
12
12
|
}>;
|
|
13
13
|
act: Act;
|
|
14
|
-
addConfig: (element: React.ReactElement
|
|
15
|
-
update(newElement: React.ReactElement
|
|
14
|
+
addConfig: (element: React.ReactElement) => Promise<{
|
|
15
|
+
update(newElement: React.ReactElement): Promise<void>;
|
|
16
16
|
}>;
|
|
17
17
|
};
|
|
18
18
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"reconcilerTestRenderer.d.ts","sourceRoot":"","sources":["../../src/__test__/reconcilerTestRenderer.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAQ/B,
|
|
1
|
+
{"version":3,"file":"reconcilerTestRenderer.d.ts","sourceRoot":"","sources":["../../src/__test__/reconcilerTestRenderer.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAQ/B,KAAK,GAAG,GAAG,CAAC,EAAE,EAAE,MAAM,OAAO,CAAC,GAAG,CAAC,KAAK,OAAO,CAAC,GAAG,CAAC,CAAC;AAIpD,eAAO,MAAM,MAAM,GAAU,SAAS,KAAK,CAAC,YAAY;uBAG3B,KAAK,CAAC,YAAY;EAI9C,CAAC;AAEF,eAAO,MAAM,SAAS,GAAU,SAAS,KAAK,CAAC,YAAY;uBAG9B,KAAK,CAAC,YAAY;EAI9C,CAAC;;sBAhBoC,KAAK,CAAC,YAAY;2BAG3B,KAAK,CAAC,YAAY;;;yBAMN,KAAK,CAAC,YAAY;2BAG9B,KAAK,CAAC,YAAY;;;AAM/C,wBAA0C"}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { ForgeDoc } from '../types';
|
|
2
|
-
export
|
|
2
|
+
export type BridgeCall = {
|
|
3
3
|
cmd: string;
|
|
4
4
|
data: BridgeCallData;
|
|
5
5
|
};
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
6
|
+
type SetupBridge = () => BridgeCall[];
|
|
7
|
+
type GetLastBridgeCall = (bridgeCalls: BridgeCall[]) => BridgeCall | null;
|
|
8
|
+
type GetLastBridgeCallForgeDoc = (bridgeCalls: BridgeCall[]) => ForgeDoc | null;
|
|
9
|
+
type FindElementInForgeDoc = (forgeDoc: ForgeDoc | null, key: string) => ForgeDoc | undefined;
|
|
10
|
+
type BridgeCallData = {
|
|
11
11
|
forgeDoc: ForgeDoc;
|
|
12
12
|
};
|
|
13
13
|
export declare const setupBridge: SetupBridge;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"testUtils.d.ts","sourceRoot":"","sources":["../../src/__test__/testUtils.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AAEpC,
|
|
1
|
+
{"version":3,"file":"testUtils.d.ts","sourceRoot":"","sources":["../../src/__test__/testUtils.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AAEpC,MAAM,MAAM,UAAU,GAAG;IAAE,GAAG,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,cAAc,CAAA;CAAE,CAAC;AAC/D,KAAK,WAAW,GAAG,MAAM,UAAU,EAAE,CAAC;AAEtC,KAAK,iBAAiB,GAAG,CAAC,WAAW,EAAE,UAAU,EAAE,KAAK,UAAU,GAAG,IAAI,CAAC;AAC1E,KAAK,yBAAyB,GAAG,CAAC,WAAW,EAAE,UAAU,EAAE,KAAK,QAAQ,GAAG,IAAI,CAAC;AAChF,KAAK,qBAAqB,GAAG,CAAC,QAAQ,EAAE,QAAQ,GAAG,IAAI,EAAE,GAAG,EAAE,MAAM,KAAK,QAAQ,GAAG,SAAS,CAAC;AAE9F,KAAK,cAAc,GAAG;IACpB,QAAQ,EAAE,QAAQ,CAAC;CACpB,CAAC;AAMF,eAAO,MAAM,WAAW,EAAE,WAYzB,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,iBAK/B,CAAC;AAEF,eAAO,MAAM,yBAAyB,EAAE,yBAMvC,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,qBAkBnC,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { AdfRendererProps as PlatformAdfRendererProps } from '@atlaskit/forge-react-types';
|
|
2
2
|
import type { Visitor } from '@atlaskit/adf-utils';
|
|
3
|
-
|
|
3
|
+
type AdfRendererProps = Omit<PlatformAdfRendererProps, 'documentWithoutMedia'> & {
|
|
4
4
|
replaceUnsupportedNode?: Visitor;
|
|
5
5
|
};
|
|
6
6
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"adf-renderer.d.ts","sourceRoot":"","sources":["../../src/components/adf-renderer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,IAAI,wBAAwB,EAAE,MAAM,6BAA6B,CAAC;AAChG,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAC;AAInD,
|
|
1
|
+
{"version":3,"file":"adf-renderer.d.ts","sourceRoot":"","sources":["../../src/components/adf-renderer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,IAAI,wBAAwB,EAAE,MAAM,6BAA6B,CAAC;AAChG,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAC;AAInD,KAAK,gBAAgB,GAAG,IAAI,CAAC,wBAAwB,EAAE,sBAAsB,CAAC,GAAG;IAC/E,sBAAsB,CAAC,EAAE,OAAO,CAAC;CAClC,CAAC;AAIF;;;;;;;;;;GAUG;AACH,eAAO,MAAM,WAAW,GAAI,OAAO,gBAAgB,4CAiBlD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"comment.d.ts","sourceRoot":"","sources":["../../src/components/comment.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAQ3D;;;;GAIG;AACH,eAAO,MAAM,OAAO,
|
|
1
|
+
{"version":3,"file":"comment.d.ts","sourceRoot":"","sources":["../../src/components/comment.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAQ3D;;;;GAIG;AACH,eAAO,MAAM,OAAO,GAAI,8BAA8B,YAAY,4CAOjE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dynamic-table.d.ts","sourceRoot":"","sources":["../../src/components/dynamic-table.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAC;AA2BhE;;;;GAIG;AACH,eAAO,MAAM,YAAY,
|
|
1
|
+
{"version":3,"file":"dynamic-table.d.ts","sourceRoot":"","sources":["../../src/components/dynamic-table.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAC;AA2BhE;;;;GAIG;AACH,eAAO,MAAM,YAAY,GAAI,+BAA+B,iBAAiB,4CA+C5E,CAAC"}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import type { TFlyOutMenuItem, TExpandableMenuItem, TLinkMenuItem, TSidebar, TMain, TGlobal, TCreateButton, TCreateMenuItem, THelpLink, TPersonalSettings, TPersonalSettingsItem, TReorderableMenuItems } from '@atlaskit/forge-react-types/global';
|
|
2
2
|
import type { ForgeElement } from '../../types';
|
|
3
|
-
export declare const Global: TGlobal<ForgeElement
|
|
4
|
-
export declare const Main: TMain<ForgeElement
|
|
5
|
-
export declare const Sidebar: TSidebar<ForgeElement
|
|
6
|
-
export declare const LinkMenuItem: TLinkMenuItem<ForgeElement
|
|
7
|
-
export declare const ExpandableMenuItem: TExpandableMenuItem<ForgeElement
|
|
8
|
-
export declare const FlyOutMenuItem: TFlyOutMenuItem<ForgeElement
|
|
9
|
-
export declare const CreateButton: TCreateButton<ForgeElement
|
|
10
|
-
export declare const CreateMenuItem: TCreateMenuItem<ForgeElement
|
|
11
|
-
export declare const HelpLink: THelpLink<ForgeElement
|
|
12
|
-
export declare const PersonalSettings: TPersonalSettings<ForgeElement
|
|
13
|
-
export declare const PersonalSettingsItem: TPersonalSettingsItem<ForgeElement
|
|
14
|
-
export declare const ReorderableMenuItems: TReorderableMenuItems<ForgeElement
|
|
3
|
+
export declare const Global: TGlobal<ForgeElement>;
|
|
4
|
+
export declare const Main: TMain<ForgeElement>;
|
|
5
|
+
export declare const Sidebar: TSidebar<ForgeElement>;
|
|
6
|
+
export declare const LinkMenuItem: TLinkMenuItem<ForgeElement>;
|
|
7
|
+
export declare const ExpandableMenuItem: TExpandableMenuItem<ForgeElement>;
|
|
8
|
+
export declare const FlyOutMenuItem: TFlyOutMenuItem<ForgeElement>;
|
|
9
|
+
export declare const CreateButton: TCreateButton<ForgeElement>;
|
|
10
|
+
export declare const CreateMenuItem: TCreateMenuItem<ForgeElement>;
|
|
11
|
+
export declare const HelpLink: THelpLink<ForgeElement>;
|
|
12
|
+
export declare const PersonalSettings: TPersonalSettings<ForgeElement>;
|
|
13
|
+
export declare const PersonalSettingsItem: TPersonalSettingsItem<ForgeElement>;
|
|
14
|
+
export declare const ReorderableMenuItems: TReorderableMenuItems<ForgeElement>;
|
|
15
15
|
export type { GlobalProps, MainProps, SidebarProps, LinkMenuItemProps, ExpandableMenuItemProps, FlyOutMenuItemProps, CreateButtonProps, CreateMenuItemProps, HelpLinkProps, PersonalSettingsProps, PersonalSettingsItemProps, ReorderableMenuItemsProps } from '@atlaskit/forge-react-types/global';
|
|
16
16
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/global/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,eAAe,EACf,mBAAmB,EACnB,aAAa,EACb,QAAQ,EACR,KAAK,EACL,OAAO,EACP,aAAa,EACb,eAAe,EACf,SAAS,EACT,iBAAiB,EACjB,qBAAqB,EACrB,qBAAqB,EACtB,MAAM,oCAAoC,CAAC;AAC5C,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAEhD,eAAO,MAAM,MAAM,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/global/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,eAAe,EACf,mBAAmB,EACnB,aAAa,EACb,QAAQ,EACR,KAAK,EACL,OAAO,EACP,aAAa,EACb,eAAe,EACf,SAAS,EACT,iBAAiB,EACjB,qBAAqB,EACrB,qBAAqB,EACtB,MAAM,oCAAoC,CAAC;AAC5C,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAEhD,eAAO,MAAM,MAAM,EAA0B,OAAO,CAAC,YAAY,CAAC,CAAC;AACnE,eAAO,MAAM,IAAI,EAAwB,KAAK,CAAC,YAAY,CAAC,CAAC;AAC7D,eAAO,MAAM,OAAO,EAA2B,QAAQ,CAAC,YAAY,CAAC,CAAC;AACtE,eAAO,MAAM,YAAY,EAAgC,aAAa,CAAC,YAAY,CAAC,CAAC;AACrF,eAAO,MAAM,kBAAkB,EAAsC,mBAAmB,CAAC,YAAY,CAAC,CAAC;AACvG,eAAO,MAAM,cAAc,EAAkC,eAAe,CAAC,YAAY,CAAC,CAAC;AAC3F,eAAO,MAAM,YAAY,EAAgC,aAAa,CAAC,YAAY,CAAC,CAAC;AACrF,eAAO,MAAM,cAAc,EAAkC,eAAe,CAAC,YAAY,CAAC,CAAC;AAC3F,eAAO,MAAM,QAAQ,EAA4B,SAAS,CAAC,YAAY,CAAC,CAAC;AACzE,eAAO,MAAM,gBAAgB,EAAoC,iBAAiB,CAAC,YAAY,CAAC,CAAC;AACjG,eAAO,MAAM,oBAAoB,EAAwC,qBAAqB,CAAC,YAAY,CAAC,CAAC;AAC7G,eAAO,MAAM,oBAAoB,EAAwC,qBAAqB,CAAC,YAAY,CAAC,CAAC;AAG7G,YAAY,EACV,WAAW,EACX,SAAS,EACT,YAAY,EACZ,iBAAiB,EACjB,uBAAuB,EACvB,mBAAmB,EACnB,iBAAiB,EACjB,mBAAmB,EACnB,aAAa,EACb,qBAAqB,EACrB,yBAAyB,EACzB,yBAAyB,EAC1B,MAAM,oCAAoC,CAAC"}
|
|
@@ -33,7 +33,7 @@ interface MacroCheckboxGroupProps {
|
|
|
33
33
|
}[];
|
|
34
34
|
defaultValue?: string[];
|
|
35
35
|
}
|
|
36
|
-
|
|
36
|
+
type CheckboxGroupProps = MacroCheckboxGroupProps | UIKitCheckboxGroupProps;
|
|
37
37
|
/**
|
|
38
38
|
* A Checkbox group is a list of options where one or more choices can be selected.
|
|
39
39
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EAAE,kBAAkB,IAAI,uBAAuB,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAC1G,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,YAAY,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;AAEnE;;GAEG;AACH,eAAO,MAAM,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EAAE,kBAAkB,IAAI,uBAAuB,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAC1G,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,YAAY,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;AAEnE;;GAEG;AACH,eAAO,MAAM,EAAE,EAAsB,CAAC,KAAK,EAAE,WAAW,KAAK,YAAY,CAAC;AAC1E;;GAEG;AACH,eAAO,MAAM,MAAM,EAA0B,CAAC,KAAK,EAAE,WAAW,KAAK,YAAY,CAAC;AAClF;;GAEG;AACH,eAAO,MAAM,MAAM,EAA0B,CAAC,KAAK,EAAE,WAAW,KAAK,YAAY,CAAC;AAElF;;GAEG;AACH,cAAc,qBAAqB,CAAC;AAIpC,UAAU,uBAAuB;IAC/B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,KAAK,CAAC,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;IAC3C,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;CACzB;AACD,KAAK,kBAAkB,GAAG,uBAAuB,GAAG,uBAAuB,CAAC;AAE5E;;;;GAIG;AACH,eAAO,MAAM,aAAa,EAAiC,CAAC,KAAK,EAAE,kBAAkB,KAAK,YAAY,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inline-edit.d.ts","sourceRoot":"","sources":["../../src/components/inline-edit.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;AAwB9D;;;;GAIG;AACH,eAAO,MAAM,UAAU,
|
|
1
|
+
{"version":3,"file":"inline-edit.d.ts","sourceRoot":"","sources":["../../src/components/inline-edit.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;AAwB9D;;;;GAIG;AACH,eAAO,MAAM,UAAU,GAAI,gQAkBxB,eAAe,4CAqGjB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"custom-field-edit.d.ts","sourceRoot":"","sources":["../../../src/components/jira/custom-field-edit.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAE3C,UAAU,oBAAoB;IAC5B,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,QAAQ,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,eAAO,MAAM,eAAe,
|
|
1
|
+
{"version":3,"file":"custom-field-edit.d.ts","sourceRoot":"","sources":["../../../src/components/jira/custom-field-edit.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAE3C,UAAU,oBAAoB;IAC5B,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,QAAQ,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,eAAO,MAAM,eAAe,EAAmC,CAAC,KAAK,EAAE,oBAAoB,KAAK,YAAY,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"popup.d.ts","sourceRoot":"","sources":["../../src/components/popup.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAC;AAUzD;;;;GAIG;AACH,eAAO,MAAM,KAAK,
|
|
1
|
+
{"version":3,"file":"popup.d.ts","sourceRoot":"","sources":["../../src/components/popup.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAC;AAUzD;;;;GAIG;AACH,eAAO,MAAM,KAAK,GAAI,mQAqBnB,UAAU,4CA0BZ,CAAC"}
|