@axinom/mosaic-ui 0.32.0-rc.1 → 0.32.0-rc.11
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/dist/components/Actions/Action/Action.d.ts.map +1 -1
- package/dist/components/Actions/Actions.models.d.ts +4 -16
- package/dist/components/Actions/Actions.models.d.ts.map +1 -1
- package/dist/components/Buttons/Button/Button.d.ts +9 -10
- package/dist/components/Buttons/Button/Button.d.ts.map +1 -1
- package/dist/components/Buttons/Button/Button.model.d.ts +21 -0
- package/dist/components/Buttons/Button/Button.model.d.ts.map +1 -0
- package/dist/components/Buttons/Button/index.d.ts +3 -0
- package/dist/components/Buttons/Button/index.d.ts.map +1 -0
- package/dist/components/Buttons/Button.model.d.ts +69 -7
- package/dist/components/Buttons/Button.model.d.ts.map +1 -1
- package/dist/components/Buttons/CompositeButton/CompositeButton.d.ts +5 -14
- package/dist/components/Buttons/CompositeButton/CompositeButton.d.ts.map +1 -1
- package/dist/components/Buttons/CompositeButton/CompositeButton.model.d.ts +20 -0
- package/dist/components/Buttons/CompositeButton/CompositeButton.model.d.ts.map +1 -0
- package/dist/components/Buttons/CompositeButton/index.d.ts +3 -0
- package/dist/components/Buttons/CompositeButton/index.d.ts.map +1 -0
- package/dist/components/Buttons/TextButton/TextButton.d.ts +5 -9
- package/dist/components/Buttons/TextButton/TextButton.d.ts.map +1 -1
- package/dist/components/Buttons/TextButton/TextButton.model.d.ts +18 -0
- package/dist/components/Buttons/TextButton/TextButton.model.d.ts.map +1 -0
- package/dist/components/Buttons/TextButton/index.d.ts +3 -0
- package/dist/components/Buttons/TextButton/index.d.ts.map +1 -0
- package/dist/components/Buttons/index.d.ts +3 -3
- package/dist/components/Buttons/index.d.ts.map +1 -1
- package/dist/components/Explorer/Explorer.d.ts.map +1 -1
- package/dist/components/Explorer/Explorer.model.d.ts +2 -2
- package/dist/components/Explorer/Explorer.model.d.ts.map +1 -1
- package/dist/components/Explorer/NavigationExplorer/NavigationExplorer.d.ts +13 -3
- package/dist/components/Explorer/NavigationExplorer/NavigationExplorer.d.ts.map +1 -1
- package/dist/components/FormElements/ToggleButton/ToggleButton.d.ts +2 -2
- package/dist/components/FormElements/ToggleButton/ToggleButton.d.ts.map +1 -1
- package/dist/components/List/List.d.ts +1 -1
- package/dist/components/List/List.d.ts.map +1 -1
- package/dist/components/List/ListRow/ListRow.d.ts.map +1 -1
- package/dist/components/PageHeader/PageHeader.d.ts +1 -22
- package/dist/components/PageHeader/PageHeader.d.ts.map +1 -1
- package/dist/components/PageHeader/PageHeader.model.d.ts +23 -0
- package/dist/components/PageHeader/PageHeader.model.d.ts.map +1 -0
- package/dist/components/PageHeader/PageHeaderAction/PageHeaderAction.d.ts +20 -33
- package/dist/components/PageHeader/PageHeaderAction/PageHeaderAction.d.ts.map +1 -1
- package/dist/components/PageHeader/PageHeaderAction/PageHeaderAction.model.d.ts +47 -0
- package/dist/components/PageHeader/PageHeaderAction/PageHeaderAction.model.d.ts.map +1 -0
- package/dist/components/PageHeader/PageHeaderAction/index.d.ts +3 -0
- package/dist/components/PageHeader/PageHeaderAction/index.d.ts.map +1 -0
- package/dist/components/PageHeader/PageHeaderBulkActions/PageHeaderBulkActions.d.ts +2 -2
- package/dist/components/PageHeader/PageHeaderBulkActions/PageHeaderBulkActions.d.ts.map +1 -1
- package/dist/components/PageHeader/index.d.ts +3 -2
- package/dist/components/PageHeader/index.d.ts.map +1 -1
- package/dist/components/models.d.ts +22 -0
- package/dist/components/models.d.ts.map +1 -1
- package/dist/index.es.js +3 -3
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/src/components/Actions/Action/Action.spec.tsx +16 -2
- package/src/components/Actions/Action/Action.tsx +6 -3
- package/src/components/Actions/Actions.models.ts +4 -23
- package/src/components/Buttons/Button/Button.model.ts +30 -0
- package/src/components/Buttons/Button/Button.scss +3 -1
- package/src/components/Buttons/Button/Button.spec.tsx +254 -83
- package/src/components/Buttons/Button/Button.stories.tsx +20 -0
- package/src/components/Buttons/Button/Button.tsx +103 -32
- package/src/components/Buttons/Button/index.ts +2 -0
- package/src/components/Buttons/Button.model.ts +84 -9
- package/src/components/Buttons/CompositeButton/CompositeButton.model.ts +32 -0
- package/src/components/Buttons/CompositeButton/CompositeButton.scss +6 -1
- package/src/components/Buttons/CompositeButton/CompositeButton.spec.tsx +277 -89
- package/src/components/Buttons/CompositeButton/CompositeButton.stories.tsx +20 -0
- package/src/components/Buttons/CompositeButton/CompositeButton.tsx +94 -30
- package/src/components/Buttons/CompositeButton/index.ts +2 -0
- package/src/components/Buttons/TextButton/TextButton.model.ts +27 -0
- package/src/components/Buttons/TextButton/TextButton.scss +3 -1
- package/src/components/Buttons/TextButton/TextButton.spec.tsx +198 -87
- package/src/components/Buttons/TextButton/TextButton.stories.tsx +20 -0
- package/src/components/Buttons/TextButton/TextButton.tsx +74 -20
- package/src/components/Buttons/TextButton/index.ts +2 -0
- package/src/components/Buttons/index.ts +3 -6
- package/src/components/Explorer/Explorer.model.ts +2 -2
- package/src/components/Explorer/Explorer.tsx +21 -16
- package/src/components/Explorer/NavigationExplorer/NavigationExplorer.tsx +32 -11
- package/src/components/FormElements/CustomTags/CustomTags.spec.tsx +26 -16
- package/src/components/FormElements/ToggleButton/ToggleButton.tsx +3 -3
- package/src/components/List/List.spec.tsx +23 -0
- package/src/components/List/List.stories.tsx +8 -0
- package/src/components/List/List.tsx +15 -3
- package/src/components/List/ListRow/ListRow.tsx +18 -13
- package/src/components/PageHeader/PageHeader.model.ts +23 -0
- package/src/components/PageHeader/PageHeader.stories.tsx +2 -1
- package/src/components/PageHeader/PageHeader.tsx +2 -26
- package/src/components/PageHeader/PageHeaderAction/PageHeaderAction.model.ts +60 -0
- package/src/components/PageHeader/PageHeaderAction/PageHeaderAction.spec.tsx +550 -383
- package/src/components/PageHeader/PageHeaderAction/PageHeaderAction.stories.tsx +12 -1
- package/src/components/PageHeader/PageHeaderAction/PageHeaderAction.tsx +95 -45
- package/src/components/PageHeader/PageHeaderAction/index.ts +2 -0
- package/src/components/PageHeader/PageHeaderBulkActions/PageHeaderBulkActions.spec.tsx +2 -2
- package/src/components/PageHeader/PageHeaderBulkActions/PageHeaderBulkActions.tsx +56 -43
- package/src/components/PageHeader/index.ts +3 -2
- package/src/components/models.ts +30 -0
|
@@ -1,41 +1,28 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
3
|
-
import { IconName } from '../../Icons';
|
|
4
|
-
import { ErrorType } from '../../models';
|
|
5
|
-
export declare enum PageHeaderActionType {
|
|
6
|
-
Active = 0,
|
|
7
|
-
Context = 1,
|
|
8
|
-
Navigation = 2
|
|
9
|
-
}
|
|
10
|
-
export interface PageHeaderActionProps {
|
|
11
|
-
/** The label of the action. */
|
|
12
|
-
label: string;
|
|
13
|
-
/**
|
|
14
|
-
* Whether the action is an 'Active', 'Context', or 'Navigation' type.
|
|
15
|
-
* Changes the background color to the corresponding action type. (default: 'Navigation')
|
|
16
|
-
*/
|
|
17
|
-
actionType?: PageHeaderActionType;
|
|
18
|
-
/** Optional built in icon. This prop also accepts an img src. */
|
|
19
|
-
icon?: IconName | string;
|
|
20
|
-
/** Optional image alt attribute. */
|
|
21
|
-
imgAlt?: string;
|
|
22
|
-
/** Whether the action is disabled. If set to true, disallows interactions. (default: undefined) */
|
|
23
|
-
disabled?: boolean;
|
|
24
|
-
/** Optional class */
|
|
25
|
-
className?: string;
|
|
26
|
-
/** If set to 'Simple', the action will require confirmation. If set to 'Advanced', action will require confirmation via a confirmation pop up. (default: 'None') */
|
|
27
|
-
confirmationMode?: ConfirmationMode;
|
|
28
|
-
/** Optional text overrides for the confirmation pop up. */
|
|
29
|
-
confirmationConfig?: ConfirmationConfig;
|
|
30
|
-
/**
|
|
31
|
-
* Callback to emit when a user clicks on the component
|
|
32
|
-
*/
|
|
33
|
-
onClick: () => Promise<ErrorType | void> | ErrorType | void;
|
|
34
|
-
}
|
|
2
|
+
import { PageHeaderActionProps, PageHeaderJsActionProps, PageHeaderNavigationActionProps } from './PageHeaderAction.model';
|
|
35
3
|
/**
|
|
36
4
|
* Used to create actions for the PageHeader component.
|
|
5
|
+
* To generate anchor tag provide `path` property
|
|
6
|
+
* To generate HTML element with event handler provide `onClick` property
|
|
7
|
+
* (and optionally `confirmationMode`, `confirmationConfig`)
|
|
37
8
|
* @example
|
|
9
|
+
* // Action with JS clickHandler
|
|
38
10
|
* <PageHeaderAction label={'Action Label'} onClick={clickHandler} />
|
|
11
|
+
*
|
|
12
|
+
* // Action with anchor tag
|
|
13
|
+
* <PageHeaderAction label={'Action Label'} path={'/action-path'} />
|
|
39
14
|
*/
|
|
40
15
|
export declare const PageHeaderAction: React.FC<PageHeaderActionProps>;
|
|
16
|
+
/**
|
|
17
|
+
* Determines whether an action data object is a PageHeaderNavigationActionProps object.
|
|
18
|
+
* @param {PageHeaderActionProps} action - The action data object to check.
|
|
19
|
+
* @returns {boolean} - Whether the action data object is a PageHeaderNavigationActionProps object.
|
|
20
|
+
*/
|
|
21
|
+
export declare function isPageHeaderNavigationAction(action: PageHeaderActionProps): action is PageHeaderNavigationActionProps;
|
|
22
|
+
/**
|
|
23
|
+
* Determines whether an action data object is a PageHeaderJsActionProps object.
|
|
24
|
+
* @param {PageHeaderActionProps} action - The action data object to check.
|
|
25
|
+
* @returns {boolean} - Whether the action data object is a PageHeaderJsActionProps object.
|
|
26
|
+
*/
|
|
27
|
+
export declare function isPageHeaderJsAction(action: PageHeaderActionProps): action is PageHeaderJsActionProps;
|
|
41
28
|
//# sourceMappingURL=PageHeaderAction.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PageHeaderAction.d.ts","sourceRoot":"","sources":["../../../../src/components/PageHeader/PageHeaderAction/PageHeaderAction.tsx"],"names":[],"mappings":"AACA,OAAO,KAA8B,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"PageHeaderAction.d.ts","sourceRoot":"","sources":["../../../../src/components/PageHeader/PageHeaderAction/PageHeaderAction.tsx"],"names":[],"mappings":"AACA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAUnD,OAAO,EACL,qBAAqB,EAErB,uBAAuB,EACvB,+BAA+B,EAChC,MAAM,0BAA0B,CAAC;AAuBlC;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,qBAAqB,CAK1D,CAAC;AAqKJ;;;;GAIG;AACH,wBAAgB,4BAA4B,CAC1C,MAAM,EAAE,qBAAqB,GAC5B,MAAM,IAAI,+BAA+B,CAE3C;AAED;;;;GAIG;AACH,wBAAgB,oBAAoB,CAClC,MAAM,EAAE,qBAAqB,GAC5B,MAAM,IAAI,uBAAuB,CAEnC"}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Not } from '../../../types';
|
|
2
|
+
import { IconName } from '../../Icons';
|
|
3
|
+
import { ConfirmAction, DefaultHandler, LinkAction } from '../../models';
|
|
4
|
+
export declare enum PageHeaderActionType {
|
|
5
|
+
Active = 0,
|
|
6
|
+
Context = 1,
|
|
7
|
+
/**
|
|
8
|
+
* @deprecated This value is no longer necessary for navigation type actions in the
|
|
9
|
+
* `PageHeaderAction` component, and will be removed in the future.
|
|
10
|
+
* To create a navigation link, use the `path` property instead of the `onClick` handler,
|
|
11
|
+
* which will automatically generate an anchor element.
|
|
12
|
+
* @note This deprecation only affects the `Navigation` enum value in the PageHeaderActionType
|
|
13
|
+
*/
|
|
14
|
+
Navigation = 2
|
|
15
|
+
}
|
|
16
|
+
export type PageHeaderActionProps = PageHeaderJsActionProps | PageHeaderNavigationActionProps;
|
|
17
|
+
export interface PageHeaderJsActionProps extends BaseActionOptions, HandledAction, ConfirmAction, Not<LinkAction> {
|
|
18
|
+
/**
|
|
19
|
+
* Whether the action is an 'Active' or 'Context' type.
|
|
20
|
+
* Changes the background color to the corresponding action type. (default: 'Context')
|
|
21
|
+
* Type `Navigation` is deprecated and will be removed in the future
|
|
22
|
+
* define instead of `onClick` handler `path` property to render element with anchor tag
|
|
23
|
+
*/
|
|
24
|
+
actionType?: PageHeaderActionType;
|
|
25
|
+
}
|
|
26
|
+
export interface PageHeaderNavigationActionProps extends BaseActionOptions, LinkAction, Not<ConfirmAction>, Not<HandledAction> {
|
|
27
|
+
}
|
|
28
|
+
interface HandledAction {
|
|
29
|
+
/**
|
|
30
|
+
* Callback to emit when a user clicks on the component
|
|
31
|
+
*/
|
|
32
|
+
onClick: DefaultHandler;
|
|
33
|
+
}
|
|
34
|
+
interface BaseActionOptions {
|
|
35
|
+
/** The label of the action. */
|
|
36
|
+
label: string;
|
|
37
|
+
/** Optional built in icon. This prop also accepts an img src. */
|
|
38
|
+
icon?: IconName | string;
|
|
39
|
+
/** Optional image alt attribute. */
|
|
40
|
+
imgAlt?: string;
|
|
41
|
+
/** Whether the action is disabled. If set to true, disallows interactions. (default: undefined) */
|
|
42
|
+
disabled?: boolean;
|
|
43
|
+
/** Optional class */
|
|
44
|
+
className?: string;
|
|
45
|
+
}
|
|
46
|
+
export {};
|
|
47
|
+
//# sourceMappingURL=PageHeaderAction.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PageHeaderAction.model.d.ts","sourceRoot":"","sources":["../../../../src/components/PageHeader/PageHeaderAction/PageHeaderAction.model.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,gBAAgB,CAAC;AACrC,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AACvC,OAAO,EAAE,aAAa,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAEzE,oBAAY,oBAAoB;IAC9B,MAAM,IAAA;IACN,OAAO,IAAA;IACP;;;;;;OAMG;IACH,UAAU,IAAA;CACX;AAED,MAAM,MAAM,qBAAqB,GAC7B,uBAAuB,GACvB,+BAA+B,CAAC;AAEpC,MAAM,WAAW,uBACf,SAAQ,iBAAiB,EACvB,aAAa,EACb,aAAa,EACb,GAAG,CAAC,UAAU,CAAC;IACjB;;;;;OAKG;IACH,UAAU,CAAC,EAAE,oBAAoB,CAAC;CACnC;AAED,MAAM,WAAW,+BACf,SAAQ,iBAAiB,EACvB,UAAU,EACV,GAAG,CAAC,aAAa,CAAC,EAClB,GAAG,CAAC,aAAa,CAAC;CAAG;AAEzB,UAAU,aAAa;IACrB;;OAEG;IACH,OAAO,EAAE,cAAc,CAAC;CACzB;AAED,UAAU,iBAAiB;IACzB,+BAA+B;IAC/B,KAAK,EAAE,MAAM,CAAC;IACd,iEAAiE;IACjE,IAAI,CAAC,EAAE,QAAQ,GAAG,MAAM,CAAC;IACzB,oCAAoC;IACpC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,mGAAmG;IACnG,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,qBAAqB;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/PageHeader/PageHeaderAction/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { PageHeaderProps } from '../PageHeader';
|
|
3
|
-
import { PageHeaderActionProps } from '../PageHeaderAction/PageHeaderAction';
|
|
2
|
+
import { PageHeaderProps } from '../PageHeader.model';
|
|
3
|
+
import { PageHeaderActionProps } from '../PageHeaderAction/PageHeaderAction.model';
|
|
4
4
|
export interface PageHeaderBulkActionsProps extends Pick<PageHeaderProps, 'openBulkActionsOnStart' | 'onBulkActionsToggled'> {
|
|
5
5
|
/** Array of Actions to be rendered (default: []) */
|
|
6
6
|
actions?: PageHeaderActionProps[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PageHeaderBulkActions.d.ts","sourceRoot":"","sources":["../../../../src/components/PageHeader/PageHeaderBulkActions/PageHeaderBulkActions.tsx"],"names":[],"mappings":"AACA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAKnD,OAAO,EAAE,eAAe,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"PageHeaderBulkActions.d.ts","sourceRoot":"","sources":["../../../../src/components/PageHeader/PageHeaderBulkActions/PageHeaderBulkActions.tsx"],"names":[],"mappings":"AACA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAKnD,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAKtD,OAAO,EACL,qBAAqB,EAEtB,MAAM,4CAA4C,CAAC;AAGpD,MAAM,WAAW,0BACf,SAAQ,IAAI,CACV,eAAe,EACf,wBAAwB,GAAG,sBAAsB,CAClD;IACD,oDAAoD;IACpD,OAAO,CAAC,EAAE,qBAAqB,EAAE,CAAC;IAClC,kEAAkE;IAClE,oBAAoB,EAAE,MAAM,CAAC;IAC7B,+DAA+D;IAC/D,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,2CAA2C;IAC3C,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;;;;;GAMG;AACH,eAAO,MAAM,qBAAqB,EAAE,KAAK,CAAC,EAAE,CAAC,0BAA0B,CAoJtE,CAAC"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
export { PageHeader
|
|
2
|
-
export {
|
|
1
|
+
export { PageHeader } from './PageHeader';
|
|
2
|
+
export { PageHeaderProps } from './PageHeader.model';
|
|
3
|
+
export { PageHeaderAction, PageHeaderActionProps, PageHeaderActionType, } from './PageHeaderAction';
|
|
3
4
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/PageHeader/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,eAAe,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/PageHeader/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EACL,gBAAgB,EAChB,qBAAqB,EACrB,oBAAoB,GACrB,MAAM,oBAAoB,CAAC"}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
import { LocationDescriptor } from 'history';
|
|
1
2
|
import React from 'react';
|
|
3
|
+
import { ConfirmationConfig, ConfirmationMode } from './ConfirmDialog';
|
|
2
4
|
import { MessageBarProps } from './MessageBar';
|
|
3
5
|
export type StationError = Pick<MessageBarProps, 'title'> & {
|
|
4
6
|
/**
|
|
@@ -18,4 +20,24 @@ export type StationMessage = MessageBarProps & {
|
|
|
18
20
|
* Possible error options the engine will handle
|
|
19
21
|
*/
|
|
20
22
|
export type ErrorType = StationError | string | Object | Error;
|
|
23
|
+
/** Properties to generate a link */
|
|
24
|
+
export interface LinkAction {
|
|
25
|
+
/** Where to navigate to when the action is clicked. */
|
|
26
|
+
path: LocationDescriptor<unknown>;
|
|
27
|
+
/** If set to true, the link will open in a new tab. */
|
|
28
|
+
openInNewTab?: boolean;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Properties for Action click confirmation
|
|
32
|
+
*/
|
|
33
|
+
export interface ConfirmAction {
|
|
34
|
+
/** If set to 'Simple', the action will require confirmation. If set to 'Advanced', action will require confirmation via a confirmation pop up. (default: 'None') */
|
|
35
|
+
confirmationMode?: ConfirmationMode;
|
|
36
|
+
/** Optional text overrides for the confirmation pop up. */
|
|
37
|
+
confirmationConfig?: ConfirmationConfig;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* Default Action click event handler
|
|
41
|
+
*/
|
|
42
|
+
export type DefaultHandler = () => Promise<ErrorType | undefined | void> | ErrorType | undefined | void;
|
|
21
43
|
//# sourceMappingURL=models.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"models.d.ts","sourceRoot":"","sources":["../../src/components/models.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAE/C,MAAM,MAAM,YAAY,GAAG,IAAI,CAAC,eAAe,EAAE,OAAO,CAAC,GAAG;IAC1D;;;OAGG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC,SAAS,CAAC;CACjC,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG,eAAe,GAAG;IAC7C;;;OAGG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC,SAAS,CAAC;CACjC,CAAC;
|
|
1
|
+
{"version":3,"file":"models.d.ts","sourceRoot":"","sources":["../../src/components/models.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAC;AAC7C,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AACvE,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAE/C,MAAM,MAAM,YAAY,GAAG,IAAI,CAAC,eAAe,EAAE,OAAO,CAAC,GAAG;IAC1D;;;OAGG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC,SAAS,CAAC;CACjC,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG,eAAe,GAAG;IAC7C;;;OAGG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC,SAAS,CAAC;CACjC,CAAC;AAEF;;GAEG;AAEH,MAAM,MAAM,SAAS,GAAG,YAAY,GAAG,MAAM,GAAG,MAAM,GAAG,KAAK,CAAC;AAE/D,oCAAoC;AACpC,MAAM,WAAW,UAAU;IACzB,uDAAuD;IACvD,IAAI,EAAE,kBAAkB,CAAC,OAAO,CAAC,CAAC;IAClC,uDAAuD;IACvD,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB;AAED;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,oKAAoK;IACpK,gBAAgB,CAAC,EAAE,gBAAgB,CAAC;IACpC,2DAA2D;IAC3D,kBAAkB,CAAC,EAAE,kBAAkB,CAAC;CACzC;AAED;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG,MACzB,OAAO,CAAC,SAAS,GAAG,SAAS,GAAG,IAAI,CAAC,GACrC,SAAS,GACT,SAAS,GACT,IAAI,CAAC"}
|