@diia-inhouse/types 6.35.2 → 6.41.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/dist/generated/designSystem/atoms/amountAtm.js +140 -0
- package/dist/generated/designSystem/atoms/amountAtm.js.map +1 -0
- package/dist/generated/designSystem/atoms/btnAlertAdditionalAtm.js +96 -0
- package/dist/generated/designSystem/atoms/btnAlertAdditionalAtm.js.map +1 -0
- package/dist/generated/designSystem/atoms/btnSemiLightAtm.js +110 -0
- package/dist/generated/designSystem/atoms/btnSemiLightAtm.js.map +1 -0
- package/dist/generated/designSystem/atoms/greyTitleAtm.js +78 -0
- package/dist/generated/designSystem/atoms/greyTitleAtm.js.map +1 -0
- package/dist/generated/designSystem/atoms/index.js +4 -0
- package/dist/generated/designSystem/atoms/index.js.map +1 -1
- package/dist/generated/designSystem/icon.js +80 -16
- package/dist/generated/designSystem/icon.js.map +1 -1
- package/dist/generated/designSystem/item.js +59 -0
- package/dist/generated/designSystem/item.js.map +1 -1
- package/dist/generated/designSystem/molecules/alertCardMlc.js +112 -0
- package/dist/generated/designSystem/molecules/alertCardMlc.js.map +1 -0
- package/dist/generated/designSystem/molecules/attentionIconMessageMlc.js +130 -0
- package/dist/generated/designSystem/molecules/attentionIconMessageMlc.js.map +1 -0
- package/dist/generated/designSystem/molecules/dashboardCardMlc.js +270 -0
- package/dist/generated/designSystem/molecules/dashboardCardMlc.js.map +1 -0
- package/dist/generated/designSystem/molecules/index.js +3 -0
- package/dist/generated/designSystem/molecules/index.js.map +1 -1
- package/dist/generated/designSystem/molecules/listItemMlc.js +36 -0
- package/dist/generated/designSystem/molecules/listItemMlc.js.map +1 -1
- package/dist/generated/designSystem/molecules/radioBtnMlc.js +15 -0
- package/dist/generated/designSystem/molecules/radioBtnMlc.js.map +1 -1
- package/dist/generated/designSystem/organisms/dashboardCardTileOrg.js +135 -0
- package/dist/generated/designSystem/organisms/dashboardCardTileOrg.js.map +1 -0
- package/dist/generated/designSystem/organisms/index.js +2 -0
- package/dist/generated/designSystem/organisms/index.js.map +1 -1
- package/dist/generated/designSystem/organisms/radioBtnWithAltOrg.js +135 -0
- package/dist/generated/designSystem/organisms/radioBtnWithAltOrg.js.map +1 -0
- package/dist/proto/designSystem/atoms/amountAtm.proto +22 -0
- package/dist/proto/designSystem/atoms/btnAlertAdditionalAtm.proto +18 -0
- package/dist/proto/designSystem/atoms/btnSemiLightAtm.proto +19 -0
- package/dist/proto/designSystem/atoms/greyTitleAtm.proto +14 -0
- package/dist/proto/designSystem/icon.proto +11 -3
- package/dist/proto/designSystem/item.proto +8 -0
- package/dist/proto/designSystem/molecules/alertCardMlc.proto +18 -0
- package/dist/proto/designSystem/molecules/attentionIconMessageMlc.proto +22 -0
- package/dist/proto/designSystem/molecules/dashboardCardMlc.proto +32 -0
- package/dist/proto/designSystem/molecules/listItemMlc.proto +5 -0
- package/dist/proto/designSystem/molecules/radioBtnMlc.proto +1 -0
- package/dist/proto/designSystem/organisms/dashboardCardTileOrg.proto +20 -0
- package/dist/proto/designSystem/organisms/radioBtnWithAltOrg.proto +20 -0
- package/dist/types/generated/designSystem/atoms/amountAtm.d.ts +28 -0
- package/dist/types/generated/designSystem/atoms/btnAlertAdditionalAtm.d.ts +22 -0
- package/dist/types/generated/designSystem/atoms/btnSemiLightAtm.d.ts +23 -0
- package/dist/types/generated/designSystem/atoms/greyTitleAtm.d.ts +19 -0
- package/dist/types/generated/designSystem/atoms/index.d.ts +4 -0
- package/dist/types/generated/designSystem/icon.d.ts +10 -2
- package/dist/types/generated/designSystem/item.d.ts +6 -0
- package/dist/types/generated/designSystem/molecules/alertCardMlc.d.ts +22 -0
- package/dist/types/generated/designSystem/molecules/attentionIconMessageMlc.d.ts +27 -0
- package/dist/types/generated/designSystem/molecules/dashboardCardMlc.d.ts +38 -0
- package/dist/types/generated/designSystem/molecules/index.d.ts +3 -0
- package/dist/types/generated/designSystem/molecules/listItemMlc.d.ts +4 -0
- package/dist/types/generated/designSystem/molecules/radioBtnMlc.d.ts +1 -0
- package/dist/types/generated/designSystem/organisms/dashboardCardTileOrg.d.ts +31 -0
- package/dist/types/generated/designSystem/organisms/index.d.ts +2 -0
- package/dist/types/generated/designSystem/organisms/radioBtnWithAltOrg.d.ts +31 -0
- package/package.json +1 -1
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import _m0 from "protobufjs/minimal.js";
|
|
2
|
+
export declare enum AmountAtmColour {
|
|
3
|
+
black = "black",
|
|
4
|
+
green = "green",
|
|
5
|
+
red = "red"
|
|
6
|
+
}
|
|
7
|
+
export declare function amountAtmColourFromJSON(object: any): AmountAtmColour;
|
|
8
|
+
export declare function amountAtmColourToJSON(object: AmountAtmColour): string;
|
|
9
|
+
export declare function amountAtmColourToNumber(object: AmountAtmColour): number;
|
|
10
|
+
/** @see https://diia.atlassian.net/wiki/spaces/DIIA/pages/1625751649/amountAtm */
|
|
11
|
+
export interface AmountAtm {
|
|
12
|
+
componentId: string;
|
|
13
|
+
colour: AmountAtmColour;
|
|
14
|
+
value: string;
|
|
15
|
+
}
|
|
16
|
+
export declare const AmountAtm: {
|
|
17
|
+
encode(message: AmountAtm, writer?: _m0.Writer): _m0.Writer;
|
|
18
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): AmountAtm;
|
|
19
|
+
fromJSON(object: any): AmountAtm;
|
|
20
|
+
toJSON(message: AmountAtm): unknown;
|
|
21
|
+
create(base?: DeepPartial<AmountAtm>): AmountAtm;
|
|
22
|
+
fromPartial(object: DeepPartial<AmountAtm>): AmountAtm;
|
|
23
|
+
};
|
|
24
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
25
|
+
type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
26
|
+
[K in keyof T]?: DeepPartial<T[K]>;
|
|
27
|
+
} : Partial<T>;
|
|
28
|
+
export {};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import _m0 from "protobufjs/minimal.js";
|
|
2
|
+
import { ButtonAction } from "./buttonAction.js";
|
|
3
|
+
import { ButtonState } from "./enums/buttonStateAtmType.js";
|
|
4
|
+
/** @see https://diia.atlassian.net/wiki/spaces/DIIA/pages/1315602547/button#btnAlertAdditionalAtm */
|
|
5
|
+
export interface BtnAlertAdditionalAtm {
|
|
6
|
+
label: string;
|
|
7
|
+
state?: ButtonState | undefined;
|
|
8
|
+
action?: ButtonAction | undefined;
|
|
9
|
+
}
|
|
10
|
+
export declare const BtnAlertAdditionalAtm: {
|
|
11
|
+
encode(message: BtnAlertAdditionalAtm, writer?: _m0.Writer): _m0.Writer;
|
|
12
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): BtnAlertAdditionalAtm;
|
|
13
|
+
fromJSON(object: any): BtnAlertAdditionalAtm;
|
|
14
|
+
toJSON(message: BtnAlertAdditionalAtm): unknown;
|
|
15
|
+
create(base?: DeepPartial<BtnAlertAdditionalAtm>): BtnAlertAdditionalAtm;
|
|
16
|
+
fromPartial(object: DeepPartial<BtnAlertAdditionalAtm>): BtnAlertAdditionalAtm;
|
|
17
|
+
};
|
|
18
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
19
|
+
type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
20
|
+
[K in keyof T]?: DeepPartial<T[K]>;
|
|
21
|
+
} : Partial<T>;
|
|
22
|
+
export {};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import _m0 from "protobufjs/minimal.js";
|
|
2
|
+
import { ButtonAction } from "./buttonAction.js";
|
|
3
|
+
import { ButtonState } from "./enums/buttonStateAtmType.js";
|
|
4
|
+
/** @see https://diia.atlassian.net/wiki/spaces/DIIA/pages/1315602547/button#btnSemiLightAtm */
|
|
5
|
+
export interface BtnSemiLightAtm {
|
|
6
|
+
componentId: string;
|
|
7
|
+
label: string;
|
|
8
|
+
state?: ButtonState | undefined;
|
|
9
|
+
action?: ButtonAction | undefined;
|
|
10
|
+
}
|
|
11
|
+
export declare const BtnSemiLightAtm: {
|
|
12
|
+
encode(message: BtnSemiLightAtm, writer?: _m0.Writer): _m0.Writer;
|
|
13
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): BtnSemiLightAtm;
|
|
14
|
+
fromJSON(object: any): BtnSemiLightAtm;
|
|
15
|
+
toJSON(message: BtnSemiLightAtm): unknown;
|
|
16
|
+
create(base?: DeepPartial<BtnSemiLightAtm>): BtnSemiLightAtm;
|
|
17
|
+
fromPartial(object: DeepPartial<BtnSemiLightAtm>): BtnSemiLightAtm;
|
|
18
|
+
};
|
|
19
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
20
|
+
type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
21
|
+
[K in keyof T]?: DeepPartial<T[K]>;
|
|
22
|
+
} : Partial<T>;
|
|
23
|
+
export {};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import _m0 from "protobufjs/minimal.js";
|
|
2
|
+
/** @see https://diia.atlassian.net/wiki/spaces/DIIA/pages/1625620625/greyTitleAtm */
|
|
3
|
+
export interface GreyTitleAtm {
|
|
4
|
+
componentId: string;
|
|
5
|
+
label: string;
|
|
6
|
+
}
|
|
7
|
+
export declare const GreyTitleAtm: {
|
|
8
|
+
encode(message: GreyTitleAtm, writer?: _m0.Writer): _m0.Writer;
|
|
9
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GreyTitleAtm;
|
|
10
|
+
fromJSON(object: any): GreyTitleAtm;
|
|
11
|
+
toJSON(message: GreyTitleAtm): unknown;
|
|
12
|
+
create(base?: DeepPartial<GreyTitleAtm>): GreyTitleAtm;
|
|
13
|
+
fromPartial(object: DeepPartial<GreyTitleAtm>): GreyTitleAtm;
|
|
14
|
+
};
|
|
15
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
16
|
+
type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
17
|
+
[K in keyof T]?: DeepPartial<T[K]>;
|
|
18
|
+
} : Partial<T>;
|
|
19
|
+
export {};
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
export * from './amountAtm.js';
|
|
1
2
|
export * from './articlePicAtm.js';
|
|
2
3
|
export * from './badgeCounterAtm.js';
|
|
4
|
+
export * from './btnAlertAdditionalAtm.js';
|
|
3
5
|
export * from './btnLinkAtm.js';
|
|
4
6
|
export * from './btnLoadPlainIconAtm.js';
|
|
5
7
|
export * from './btnPlainAtm.js';
|
|
@@ -8,6 +10,7 @@ export * from './btnPrimaryAdditionalAtm.js';
|
|
|
8
10
|
export * from './btnPrimaryDefaultAtm.js';
|
|
9
11
|
export * from './btnPrimaryLargeAtm.js';
|
|
10
12
|
export * from './btnPrimaryWideAtm.js';
|
|
13
|
+
export * from './btnSemiLightAtm.js';
|
|
11
14
|
export * from './btnStrokeAdditionalAtm.js';
|
|
12
15
|
export * from './btnStrokeDefaultAtm.js';
|
|
13
16
|
export * from './buttonAction.js';
|
|
@@ -16,6 +19,7 @@ export * from './chipStatusAtm.js';
|
|
|
16
19
|
export * from './dotNavigationAtm.js';
|
|
17
20
|
export * from './doubleIconAtm.js';
|
|
18
21
|
export * from './enums/index.js';
|
|
22
|
+
export * from './greyTitleAtm.js';
|
|
19
23
|
export * from './iconAction.js';
|
|
20
24
|
export * from './iconAtm.js';
|
|
21
25
|
export * from './inputNumberLargeAtm.js';
|
|
@@ -28,13 +28,15 @@ export declare enum Icon {
|
|
|
28
28
|
ellipseSticker = "ellipseSticker",
|
|
29
29
|
ellipseTrident = "ellipseTrident",
|
|
30
30
|
ellipseWhiteArrowRight = "ellipseWhiteArrowRight",
|
|
31
|
+
ellipseInfo = "ellipseInfo",
|
|
31
32
|
pn = "pn",
|
|
32
33
|
safety = "safety",
|
|
33
34
|
shelter = "shelter",
|
|
34
35
|
doubleIcon = "doubleIcon",
|
|
35
36
|
safetyLarge = "safetyLarge",
|
|
36
|
-
|
|
37
|
-
|
|
37
|
+
cashbackPayment = "cashbackPayment",
|
|
38
|
+
cashbackCharge = "cashbackCharge",
|
|
39
|
+
cashbackReturn = "cashbackReturn",
|
|
38
40
|
/** add - Stroke */
|
|
39
41
|
add = "add",
|
|
40
42
|
aidKit = "aidKit",
|
|
@@ -90,6 +92,12 @@ export declare enum Icon {
|
|
|
90
92
|
hide = "hide",
|
|
91
93
|
update = "update",
|
|
92
94
|
oldDocInfo = "oldDocInfo",
|
|
95
|
+
info = "info",
|
|
96
|
+
arrowSliderLeft = "arrowSliderLeft",
|
|
97
|
+
arrowSliderRight = "arrowSliderRight",
|
|
98
|
+
paymentCash = "paymentCash",
|
|
99
|
+
chargeCash = "chargeCash",
|
|
100
|
+
returnCash = "returnCash",
|
|
93
101
|
/** docActive - Nav */
|
|
94
102
|
docActive = "docActive",
|
|
95
103
|
docInActive = "docInActive",
|
|
@@ -3,6 +3,8 @@ import { BtnPlainAtm } from "./atoms/btnPlainAtm.js";
|
|
|
3
3
|
import { BtnPrimaryDefaultAtm } from "./atoms/btnPrimaryDefaultAtm.js";
|
|
4
4
|
import { BtnPrimaryWideAtm } from "./atoms/btnPrimaryWideAtm.js";
|
|
5
5
|
import { SectionTitleAtm } from "./atoms/sectionTitleAtm.js";
|
|
6
|
+
import { AlertCardMlc } from "./molecules/alertCardMlc.js";
|
|
7
|
+
import { AttentionIconMessageMlc } from "./molecules/attentionIconMessageMlc.js";
|
|
6
8
|
import { AttentionMessageMlc } from "./molecules/attentionMessageMlc.js";
|
|
7
9
|
import { BlackCardMlc } from "./molecules/blackCardMlc.js";
|
|
8
10
|
import { BtnIconPlainGroupMlc } from "./molecules/btnIconPlainGroupMlc.js";
|
|
@@ -25,6 +27,7 @@ import { BottomGroupOrg } from "./organisms/bottomGroupOrg.js";
|
|
|
25
27
|
import { BtnIconRoundedGroupOrg } from "./organisms/btnIconRoundedGroupOrg.js";
|
|
26
28
|
import { CalendarOrg } from "./organisms/calendarOrg.js";
|
|
27
29
|
import { CheckboxBtnOrg } from "./organisms/checkboxBtnOrg.js";
|
|
30
|
+
import { DashboardCardTileOrg } from "./organisms/dashboardCardTileOrg.js";
|
|
28
31
|
import { EditAutomaticallyDeterminedValueOrg } from "./organisms/editAutomaticallyDeterminedValueOrg.js";
|
|
29
32
|
import { HalvedCardCarouselOrg } from "./organisms/halvedCardCarouselOrg.js";
|
|
30
33
|
import { InputNumLargeTimeOrg } from "./organisms/inputNumLargeTimeOrg.js";
|
|
@@ -83,6 +86,9 @@ export interface DSBodyItem {
|
|
|
83
86
|
btnPrimaryWideAtm?: BtnPrimaryWideAtm | undefined;
|
|
84
87
|
paginationListOrg?: PaginationListOrg | undefined;
|
|
85
88
|
tableBlockOrg?: TableBlockOrg | undefined;
|
|
89
|
+
attentionIconMessageMlc?: AttentionIconMessageMlc | undefined;
|
|
90
|
+
alertCardMlc?: AlertCardMlc | undefined;
|
|
91
|
+
dashboardCardTileOrg?: DashboardCardTileOrg | undefined;
|
|
86
92
|
}
|
|
87
93
|
export interface DSTopGroupItem {
|
|
88
94
|
topGroupOrg?: TopGroupOrg | undefined;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import _m0 from "protobufjs/minimal.js";
|
|
2
|
+
import { BtnAlertAdditionalAtm } from "../atoms/btnAlertAdditionalAtm.js";
|
|
3
|
+
/** @see https://diia.atlassian.net/wiki/spaces/DIIA/pages/1355055105/alertCardMlc */
|
|
4
|
+
export interface AlertCardMlc {
|
|
5
|
+
icon: string;
|
|
6
|
+
label: string;
|
|
7
|
+
text: string;
|
|
8
|
+
btnAlertAdditionalAtm?: BtnAlertAdditionalAtm | undefined;
|
|
9
|
+
}
|
|
10
|
+
export declare const AlertCardMlc: {
|
|
11
|
+
encode(message: AlertCardMlc, writer?: _m0.Writer): _m0.Writer;
|
|
12
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): AlertCardMlc;
|
|
13
|
+
fromJSON(object: any): AlertCardMlc;
|
|
14
|
+
toJSON(message: AlertCardMlc): unknown;
|
|
15
|
+
create(base?: DeepPartial<AlertCardMlc>): AlertCardMlc;
|
|
16
|
+
fromPartial(object: DeepPartial<AlertCardMlc>): AlertCardMlc;
|
|
17
|
+
};
|
|
18
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
19
|
+
type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
20
|
+
[K in keyof T]?: DeepPartial<T[K]>;
|
|
21
|
+
} : Partial<T>;
|
|
22
|
+
export {};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import _m0 from "protobufjs/minimal.js";
|
|
2
|
+
import { SmallIconAtm } from "../atoms/smallIconAtm.js";
|
|
3
|
+
/** @see https://diia.atlassian.net/wiki/spaces/DIIA/pages/1524105320/attentionIconMessageMlc */
|
|
4
|
+
export declare enum BackgroundMode {
|
|
5
|
+
info = "info"
|
|
6
|
+
}
|
|
7
|
+
export declare function backgroundModeFromJSON(object: any): BackgroundMode;
|
|
8
|
+
export declare function backgroundModeToJSON(object: BackgroundMode): string;
|
|
9
|
+
export declare function backgroundModeToNumber(object: BackgroundMode): number;
|
|
10
|
+
export interface AttentionIconMessageMlc {
|
|
11
|
+
smallIconAtm?: SmallIconAtm | undefined;
|
|
12
|
+
text: string;
|
|
13
|
+
backgroundMode: BackgroundMode;
|
|
14
|
+
}
|
|
15
|
+
export declare const AttentionIconMessageMlc: {
|
|
16
|
+
encode(message: AttentionIconMessageMlc, writer?: _m0.Writer): _m0.Writer;
|
|
17
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): AttentionIconMessageMlc;
|
|
18
|
+
fromJSON(object: any): AttentionIconMessageMlc;
|
|
19
|
+
toJSON(message: AttentionIconMessageMlc): unknown;
|
|
20
|
+
create(base?: DeepPartial<AttentionIconMessageMlc>): AttentionIconMessageMlc;
|
|
21
|
+
fromPartial(object: DeepPartial<AttentionIconMessageMlc>): AttentionIconMessageMlc;
|
|
22
|
+
};
|
|
23
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
24
|
+
type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
25
|
+
[K in keyof T]?: DeepPartial<T[K]>;
|
|
26
|
+
} : Partial<T>;
|
|
27
|
+
export {};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import _m0 from "protobufjs/minimal.js";
|
|
2
|
+
import { BtnSemiLightAtm } from "../atoms/btnSemiLightAtm.js";
|
|
3
|
+
import { ButtonAction } from "../atoms/buttonAction.js";
|
|
4
|
+
export declare enum DashboardCardMlcType {
|
|
5
|
+
empty = "empty",
|
|
6
|
+
button = "button",
|
|
7
|
+
description = "description"
|
|
8
|
+
}
|
|
9
|
+
export declare function dashboardCardMlcTypeFromJSON(object: any): DashboardCardMlcType;
|
|
10
|
+
export declare function dashboardCardMlcTypeToJSON(object: DashboardCardMlcType): string;
|
|
11
|
+
export declare function dashboardCardMlcTypeToNumber(object: DashboardCardMlcType): number;
|
|
12
|
+
/** @see https://diia.atlassian.net/wiki/spaces/DIIA/pages/1625686059/dashboardCardMlc */
|
|
13
|
+
export interface DashboardCardMlc {
|
|
14
|
+
componentId: string;
|
|
15
|
+
type: DashboardCardMlcType;
|
|
16
|
+
icon?: string | undefined;
|
|
17
|
+
label?: string | undefined;
|
|
18
|
+
amountLarge?: string | undefined;
|
|
19
|
+
amountSmall?: string | undefined;
|
|
20
|
+
description?: string | undefined;
|
|
21
|
+
iconCenter?: string | undefined;
|
|
22
|
+
descriptionCenter?: string | undefined;
|
|
23
|
+
action?: ButtonAction | undefined;
|
|
24
|
+
btnSemiLightAtm?: BtnSemiLightAtm | undefined;
|
|
25
|
+
}
|
|
26
|
+
export declare const DashboardCardMlc: {
|
|
27
|
+
encode(message: DashboardCardMlc, writer?: _m0.Writer): _m0.Writer;
|
|
28
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): DashboardCardMlc;
|
|
29
|
+
fromJSON(object: any): DashboardCardMlc;
|
|
30
|
+
toJSON(message: DashboardCardMlc): unknown;
|
|
31
|
+
create(base?: DeepPartial<DashboardCardMlc>): DashboardCardMlc;
|
|
32
|
+
fromPartial(object: DeepPartial<DashboardCardMlc>): DashboardCardMlc;
|
|
33
|
+
};
|
|
34
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
35
|
+
type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
36
|
+
[K in keyof T]?: DeepPartial<T[K]>;
|
|
37
|
+
} : Partial<T>;
|
|
38
|
+
export {};
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
export * from './alertCardMlc.js';
|
|
1
2
|
export * from './articleVideoMlc.js';
|
|
3
|
+
export * from './attentionIconMessageMlc.js';
|
|
2
4
|
export * from './attentionMessageMlc.js';
|
|
3
5
|
export * from './barCodeMlc.js';
|
|
4
6
|
export * from './blackCardMlc.js';
|
|
@@ -13,6 +15,7 @@ export * from './checkboxSquareMlc.js';
|
|
|
13
15
|
export * from './chipMlc.js';
|
|
14
16
|
export * from './chipTimeMlc.js';
|
|
15
17
|
export * from './currentTimeMlc.js';
|
|
18
|
+
export * from './dashboardCardMlc.js';
|
|
16
19
|
export * from './dividerLineMlc.js';
|
|
17
20
|
export * from './docNumberCopyMlc.js';
|
|
18
21
|
export * from './docNumberCopyWhiteMlc.js';
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import _m0 from "protobufjs/minimal.js";
|
|
2
|
+
import { AmountAtm } from "../atoms/amountAtm.js";
|
|
2
3
|
import { ButtonAction } from "../atoms/buttonAction.js";
|
|
4
|
+
import { ChipStatusAtm } from "../atoms/chipStatusAtm.js";
|
|
3
5
|
import { ButtonState } from "../atoms/enums/buttonStateAtmType.js";
|
|
4
6
|
import { Icon } from "../icon.js";
|
|
5
7
|
/** @see https://diia.atlassian.net/wiki/spaces/DIIA/pages/1363836929/listItemMlc */
|
|
@@ -14,6 +16,8 @@ export interface ListItemMlc {
|
|
|
14
16
|
state?: ButtonState | undefined;
|
|
15
17
|
componentId?: string | undefined;
|
|
16
18
|
dataJson?: string | undefined;
|
|
19
|
+
amountAtm?: AmountAtm | undefined;
|
|
20
|
+
chipStatusAtm?: ChipStatusAtm | undefined;
|
|
17
21
|
}
|
|
18
22
|
export interface ListItemMlcIcon {
|
|
19
23
|
code: Icon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import _m0 from "protobufjs/minimal.js";
|
|
2
|
+
import { DashboardCardMlc } from "../molecules/dashboardCardMlc.js";
|
|
3
|
+
/** @see https://diia.atlassian.net/wiki/spaces/DIIA/pages/1625620527/dashboardCardTileOrg */
|
|
4
|
+
export interface DashboardCardTileOrg {
|
|
5
|
+
componentId: string;
|
|
6
|
+
items: DashboardCardTileOrgItem[];
|
|
7
|
+
}
|
|
8
|
+
export interface DashboardCardTileOrgItem {
|
|
9
|
+
dashboardCardMlc?: DashboardCardMlc | undefined;
|
|
10
|
+
}
|
|
11
|
+
export declare const DashboardCardTileOrg: {
|
|
12
|
+
encode(message: DashboardCardTileOrg, writer?: _m0.Writer): _m0.Writer;
|
|
13
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): DashboardCardTileOrg;
|
|
14
|
+
fromJSON(object: any): DashboardCardTileOrg;
|
|
15
|
+
toJSON(message: DashboardCardTileOrg): unknown;
|
|
16
|
+
create(base?: DeepPartial<DashboardCardTileOrg>): DashboardCardTileOrg;
|
|
17
|
+
fromPartial(object: DeepPartial<DashboardCardTileOrg>): DashboardCardTileOrg;
|
|
18
|
+
};
|
|
19
|
+
export declare const DashboardCardTileOrgItem: {
|
|
20
|
+
encode(message: DashboardCardTileOrgItem, writer?: _m0.Writer): _m0.Writer;
|
|
21
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): DashboardCardTileOrgItem;
|
|
22
|
+
fromJSON(object: any): DashboardCardTileOrgItem;
|
|
23
|
+
toJSON(message: DashboardCardTileOrgItem): unknown;
|
|
24
|
+
create(base?: DeepPartial<DashboardCardTileOrgItem>): DashboardCardTileOrgItem;
|
|
25
|
+
fromPartial(object: DeepPartial<DashboardCardTileOrgItem>): DashboardCardTileOrgItem;
|
|
26
|
+
};
|
|
27
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
28
|
+
type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
29
|
+
[K in keyof T]?: DeepPartial<T[K]>;
|
|
30
|
+
} : Partial<T>;
|
|
31
|
+
export {};
|
|
@@ -8,6 +8,7 @@ export * from './checkboxBtnOrg.js';
|
|
|
8
8
|
export * from './checkboxRoundGroupOrg.js';
|
|
9
9
|
export * from './chipGroupOrg.js';
|
|
10
10
|
export * from './chipTabsOrg.js';
|
|
11
|
+
export * from './dashboardCardTileOrg.js';
|
|
11
12
|
export * from './docButtonHeadingOrg.js';
|
|
12
13
|
export * from './docHeadingOrg.js';
|
|
13
14
|
export * from './editAutomaticallyDeterminedValueOrg.js';
|
|
@@ -26,6 +27,7 @@ export * from './paymentInfoOrg.js';
|
|
|
26
27
|
export * from './qrSharingOrg.js';
|
|
27
28
|
export * from './questionFormsOrg.js';
|
|
28
29
|
export * from './radioBtnGroupOrg.js';
|
|
30
|
+
export * from './radioBtnWithAltOrg.js';
|
|
29
31
|
export * from './selectorListWidgetOrg.js';
|
|
30
32
|
export * from './selectorOrg.js';
|
|
31
33
|
export * from './sharingCodesOrg.js';
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import _m0 from "protobufjs/minimal.js";
|
|
2
|
+
import { RadioBtnGroupOrg } from "./radioBtnGroupOrg.js";
|
|
3
|
+
/** @see https://diia.atlassian.net/wiki/spaces/DIIA/pages/1625686133/radioBtnWithAltOrg */
|
|
4
|
+
export interface RadioBtnWithAltOrg {
|
|
5
|
+
componentId: string;
|
|
6
|
+
items: RadioBtnWithAltOrgItem[];
|
|
7
|
+
}
|
|
8
|
+
export interface RadioBtnWithAltOrgItem {
|
|
9
|
+
radioBtnGroupOrg: RadioBtnGroupOrg | undefined;
|
|
10
|
+
}
|
|
11
|
+
export declare const RadioBtnWithAltOrg: {
|
|
12
|
+
encode(message: RadioBtnWithAltOrg, writer?: _m0.Writer): _m0.Writer;
|
|
13
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): RadioBtnWithAltOrg;
|
|
14
|
+
fromJSON(object: any): RadioBtnWithAltOrg;
|
|
15
|
+
toJSON(message: RadioBtnWithAltOrg): unknown;
|
|
16
|
+
create(base?: DeepPartial<RadioBtnWithAltOrg>): RadioBtnWithAltOrg;
|
|
17
|
+
fromPartial(object: DeepPartial<RadioBtnWithAltOrg>): RadioBtnWithAltOrg;
|
|
18
|
+
};
|
|
19
|
+
export declare const RadioBtnWithAltOrgItem: {
|
|
20
|
+
encode(message: RadioBtnWithAltOrgItem, writer?: _m0.Writer): _m0.Writer;
|
|
21
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): RadioBtnWithAltOrgItem;
|
|
22
|
+
fromJSON(object: any): RadioBtnWithAltOrgItem;
|
|
23
|
+
toJSON(message: RadioBtnWithAltOrgItem): unknown;
|
|
24
|
+
create(base?: DeepPartial<RadioBtnWithAltOrgItem>): RadioBtnWithAltOrgItem;
|
|
25
|
+
fromPartial(object: DeepPartial<RadioBtnWithAltOrgItem>): RadioBtnWithAltOrgItem;
|
|
26
|
+
};
|
|
27
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
28
|
+
type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
29
|
+
[K in keyof T]?: DeepPartial<T[K]>;
|
|
30
|
+
} : Partial<T>;
|
|
31
|
+
export {};
|