@diia-inhouse/design-system 5.10.0 → 5.12.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/outlinedPicAtm.d.ts +24 -0
- package/dist/generated/designSystem/atoms/outlinedPicAtm.js +113 -0
- package/dist/generated/designSystem/atoms/outlinedPicAtm.js.map +1 -0
- package/dist/generated/designSystem/item.d.ts +4 -0
- package/dist/generated/designSystem/item.js +40 -0
- package/dist/generated/designSystem/item.js.map +1 -1
- package/dist/generated/designSystem/molecules/inputNumberFractionalMlc.d.ts +2 -0
- package/dist/generated/designSystem/molecules/inputNumberFractionalMlc.js +32 -0
- package/dist/generated/designSystem/molecules/inputNumberFractionalMlc.js.map +1 -1
- package/dist/generated/designSystem/organisms/controlItemOrg.d.ts +2 -0
- package/dist/generated/designSystem/organisms/controlItemOrg.js +19 -1
- package/dist/generated/designSystem/organisms/controlItemOrg.js.map +1 -1
- package/dist/generated/index.d.ts +1 -0
- package/dist/generated/index.js +1 -0
- package/dist/generated/index.js.map +1 -1
- package/dist/proto/designSystem/atoms/outlinedPicAtm.proto +18 -0
- package/dist/proto/designSystem/item.proto +4 -0
- package/dist/proto/designSystem/molecules/inputNumberFractionalMlc.proto +2 -0
- package/dist/proto/designSystem/organisms/controlItemOrg.proto +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire";
|
|
2
|
+
import { PaddingMode } from "../../ui.js";
|
|
3
|
+
export declare const protobufPackage = "ua.gov.diia.types.ds.atoms";
|
|
4
|
+
/** @see https://diia.atlassian.net/wiki/spaces/DIIA/pages/3118891169/outlinedPicAtm */
|
|
5
|
+
export interface OutlinedPicAtm {
|
|
6
|
+
componentId: string;
|
|
7
|
+
paddingMode?: PaddingMode | undefined;
|
|
8
|
+
aspectRatio?: number | undefined;
|
|
9
|
+
image?: string | undefined;
|
|
10
|
+
}
|
|
11
|
+
export declare const OutlinedPicAtm: MessageFns<OutlinedPicAtm>;
|
|
12
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
13
|
+
export 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 {} ? {
|
|
14
|
+
[K in keyof T]?: DeepPartial<T[K]>;
|
|
15
|
+
} : Partial<T>;
|
|
16
|
+
export interface MessageFns<T> {
|
|
17
|
+
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
18
|
+
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
19
|
+
fromJSON(object: any): T;
|
|
20
|
+
toJSON(message: T): unknown;
|
|
21
|
+
create(base?: DeepPartial<T>): T;
|
|
22
|
+
fromPartial(object: DeepPartial<T>): T;
|
|
23
|
+
}
|
|
24
|
+
export {};
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
2
|
+
// versions:
|
|
3
|
+
// protoc-gen-ts_proto v2.7.0
|
|
4
|
+
// protoc v5.29.3
|
|
5
|
+
// source: designSystem/atoms/outlinedPicAtm.proto
|
|
6
|
+
/* eslint-disable */
|
|
7
|
+
import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire";
|
|
8
|
+
import { PaddingMode } from "../../ui.js";
|
|
9
|
+
export const protobufPackage = "ua.gov.diia.types.ds.atoms";
|
|
10
|
+
function createBaseOutlinedPicAtm() {
|
|
11
|
+
return { componentId: "", paddingMode: undefined, aspectRatio: undefined, image: undefined };
|
|
12
|
+
}
|
|
13
|
+
export const OutlinedPicAtm = {
|
|
14
|
+
encode(message, writer = new BinaryWriter()) {
|
|
15
|
+
if (message.componentId !== "") {
|
|
16
|
+
writer.uint32(10).string(message.componentId);
|
|
17
|
+
}
|
|
18
|
+
if (message.paddingMode !== undefined) {
|
|
19
|
+
PaddingMode.encode(message.paddingMode, writer.uint32(18).fork()).join();
|
|
20
|
+
}
|
|
21
|
+
if (message.aspectRatio !== undefined) {
|
|
22
|
+
writer.uint32(25).double(message.aspectRatio);
|
|
23
|
+
}
|
|
24
|
+
if (message.image !== undefined) {
|
|
25
|
+
writer.uint32(34).string(message.image);
|
|
26
|
+
}
|
|
27
|
+
return writer;
|
|
28
|
+
},
|
|
29
|
+
decode(input, length) {
|
|
30
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
31
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
32
|
+
const message = createBaseOutlinedPicAtm();
|
|
33
|
+
while (reader.pos < end) {
|
|
34
|
+
const tag = reader.uint32();
|
|
35
|
+
switch (tag >>> 3) {
|
|
36
|
+
case 1: {
|
|
37
|
+
if (tag !== 10) {
|
|
38
|
+
break;
|
|
39
|
+
}
|
|
40
|
+
message.componentId = reader.string();
|
|
41
|
+
continue;
|
|
42
|
+
}
|
|
43
|
+
case 2: {
|
|
44
|
+
if (tag !== 18) {
|
|
45
|
+
break;
|
|
46
|
+
}
|
|
47
|
+
message.paddingMode = PaddingMode.decode(reader, reader.uint32());
|
|
48
|
+
continue;
|
|
49
|
+
}
|
|
50
|
+
case 3: {
|
|
51
|
+
if (tag !== 25) {
|
|
52
|
+
break;
|
|
53
|
+
}
|
|
54
|
+
message.aspectRatio = reader.double();
|
|
55
|
+
continue;
|
|
56
|
+
}
|
|
57
|
+
case 4: {
|
|
58
|
+
if (tag !== 34) {
|
|
59
|
+
break;
|
|
60
|
+
}
|
|
61
|
+
message.image = reader.string();
|
|
62
|
+
continue;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
66
|
+
break;
|
|
67
|
+
}
|
|
68
|
+
reader.skip(tag & 7);
|
|
69
|
+
}
|
|
70
|
+
return message;
|
|
71
|
+
},
|
|
72
|
+
fromJSON(object) {
|
|
73
|
+
return {
|
|
74
|
+
componentId: isSet(object.componentId) ? globalThis.String(object.componentId) : "",
|
|
75
|
+
paddingMode: isSet(object.paddingMode) ? PaddingMode.fromJSON(object.paddingMode) : undefined,
|
|
76
|
+
aspectRatio: isSet(object.aspectRatio) ? globalThis.Number(object.aspectRatio) : undefined,
|
|
77
|
+
image: isSet(object.image) ? globalThis.String(object.image) : undefined,
|
|
78
|
+
};
|
|
79
|
+
},
|
|
80
|
+
toJSON(message) {
|
|
81
|
+
const obj = {};
|
|
82
|
+
if (message.componentId !== "") {
|
|
83
|
+
obj.componentId = message.componentId;
|
|
84
|
+
}
|
|
85
|
+
if (message.paddingMode !== undefined) {
|
|
86
|
+
obj.paddingMode = PaddingMode.toJSON(message.paddingMode);
|
|
87
|
+
}
|
|
88
|
+
if (message.aspectRatio !== undefined) {
|
|
89
|
+
obj.aspectRatio = message.aspectRatio;
|
|
90
|
+
}
|
|
91
|
+
if (message.image !== undefined) {
|
|
92
|
+
obj.image = message.image;
|
|
93
|
+
}
|
|
94
|
+
return obj;
|
|
95
|
+
},
|
|
96
|
+
create(base) {
|
|
97
|
+
return OutlinedPicAtm.fromPartial(base ?? {});
|
|
98
|
+
},
|
|
99
|
+
fromPartial(object) {
|
|
100
|
+
const message = createBaseOutlinedPicAtm();
|
|
101
|
+
message.componentId = object.componentId ?? "";
|
|
102
|
+
message.paddingMode = (object.paddingMode !== undefined && object.paddingMode !== null)
|
|
103
|
+
? PaddingMode.fromPartial(object.paddingMode)
|
|
104
|
+
: undefined;
|
|
105
|
+
message.aspectRatio = object.aspectRatio ?? undefined;
|
|
106
|
+
message.image = object.image ?? undefined;
|
|
107
|
+
return message;
|
|
108
|
+
},
|
|
109
|
+
};
|
|
110
|
+
function isSet(value) {
|
|
111
|
+
return value !== null && value !== undefined;
|
|
112
|
+
}
|
|
113
|
+
//# sourceMappingURL=outlinedPicAtm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"outlinedPicAtm.js","sourceRoot":"","sources":["../../../../src/generated/designSystem/atoms/outlinedPicAtm.ts"],"names":[],"mappings":"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"}
|
|
@@ -9,6 +9,7 @@ import { BtnPrimaryWideAtm } from "./atoms/btnPrimaryWideAtm.js";
|
|
|
9
9
|
import { BtnWhiteLargeIconAtm } from "./atoms/btnWhiteLargeIconAtm.js";
|
|
10
10
|
import { GreyTitleAtm } from "./atoms/greyTitleAtm.js";
|
|
11
11
|
import { LargeTickerAtm } from "./atoms/largeTickerAtm.js";
|
|
12
|
+
import { OutlinedPicAtm } from "./atoms/outlinedPicAtm.js";
|
|
12
13
|
import { SectionTitleAtm } from "./atoms/sectionTitleAtm.js";
|
|
13
14
|
import { SpacerAtm } from "./atoms/spacerAtm.js";
|
|
14
15
|
import { StaticTickerAtm } from "./atoms/staticTickerAtm.js";
|
|
@@ -63,6 +64,7 @@ import { CheckboxRoundGroupOrg } from "./organisms/checkboxRoundGroupOrg.js";
|
|
|
63
64
|
import { ChipBlackGroupOrg } from "./organisms/chipBlackGroupOrg.js";
|
|
64
65
|
import { ChipGroupOrgV2 } from "./organisms/chipGroupOrgV2.js";
|
|
65
66
|
import { ChipTabsOrg } from "./organisms/chipTabsOrg.js";
|
|
67
|
+
import { ControlsContainerOrg } from "./organisms/controlsContainerOrg.js";
|
|
66
68
|
import { DashboardCardTileOrg } from "./organisms/dashboardCardTileOrg.js";
|
|
67
69
|
import { DocHeadingOrg } from "./organisms/docHeadingOrg.js";
|
|
68
70
|
import { EditAutomaticallyDeterminedValueOrg } from "./organisms/editAutomaticallyDeterminedValueOrg.js";
|
|
@@ -203,6 +205,8 @@ export interface DSBodyItem {
|
|
|
203
205
|
chipGroupOrgV2?: ChipGroupOrgV2 | undefined;
|
|
204
206
|
photoUploadMlc?: PhotoUploadMlc | undefined;
|
|
205
207
|
photoCardCarouselOrg?: PhotoCardCarouselOrg | undefined;
|
|
208
|
+
outlinedPicAtm?: OutlinedPicAtm | undefined;
|
|
209
|
+
controlsContainerOrg?: ControlsContainerOrg | undefined;
|
|
206
210
|
}
|
|
207
211
|
export interface DSTopGroupItem {
|
|
208
212
|
topGroupOrg?: TopGroupOrg | undefined;
|
|
@@ -15,6 +15,7 @@ import { BtnPrimaryWideAtm } from "./atoms/btnPrimaryWideAtm.js";
|
|
|
15
15
|
import { BtnWhiteLargeIconAtm } from "./atoms/btnWhiteLargeIconAtm.js";
|
|
16
16
|
import { GreyTitleAtm } from "./atoms/greyTitleAtm.js";
|
|
17
17
|
import { LargeTickerAtm } from "./atoms/largeTickerAtm.js";
|
|
18
|
+
import { OutlinedPicAtm } from "./atoms/outlinedPicAtm.js";
|
|
18
19
|
import { SectionTitleAtm } from "./atoms/sectionTitleAtm.js";
|
|
19
20
|
import { SpacerAtm } from "./atoms/spacerAtm.js";
|
|
20
21
|
import { StaticTickerAtm } from "./atoms/staticTickerAtm.js";
|
|
@@ -69,6 +70,7 @@ import { CheckboxRoundGroupOrg } from "./organisms/checkboxRoundGroupOrg.js";
|
|
|
69
70
|
import { ChipBlackGroupOrg } from "./organisms/chipBlackGroupOrg.js";
|
|
70
71
|
import { ChipGroupOrgV2 } from "./organisms/chipGroupOrgV2.js";
|
|
71
72
|
import { ChipTabsOrg } from "./organisms/chipTabsOrg.js";
|
|
73
|
+
import { ControlsContainerOrg } from "./organisms/controlsContainerOrg.js";
|
|
72
74
|
import { DashboardCardTileOrg } from "./organisms/dashboardCardTileOrg.js";
|
|
73
75
|
import { DocHeadingOrg } from "./organisms/docHeadingOrg.js";
|
|
74
76
|
import { EditAutomaticallyDeterminedValueOrg } from "./organisms/editAutomaticallyDeterminedValueOrg.js";
|
|
@@ -210,6 +212,8 @@ function createBaseDSBodyItem() {
|
|
|
210
212
|
chipGroupOrgV2: undefined,
|
|
211
213
|
photoUploadMlc: undefined,
|
|
212
214
|
photoCardCarouselOrg: undefined,
|
|
215
|
+
outlinedPicAtm: undefined,
|
|
216
|
+
controlsContainerOrg: undefined,
|
|
213
217
|
};
|
|
214
218
|
}
|
|
215
219
|
export const DSBodyItem = {
|
|
@@ -503,6 +507,12 @@ export const DSBodyItem = {
|
|
|
503
507
|
if (message.photoCardCarouselOrg !== undefined) {
|
|
504
508
|
PhotoCardCarouselOrg.encode(message.photoCardCarouselOrg, writer.uint32(770).fork()).join();
|
|
505
509
|
}
|
|
510
|
+
if (message.outlinedPicAtm !== undefined) {
|
|
511
|
+
OutlinedPicAtm.encode(message.outlinedPicAtm, writer.uint32(778).fork()).join();
|
|
512
|
+
}
|
|
513
|
+
if (message.controlsContainerOrg !== undefined) {
|
|
514
|
+
ControlsContainerOrg.encode(message.controlsContainerOrg, writer.uint32(786).fork()).join();
|
|
515
|
+
}
|
|
506
516
|
return writer;
|
|
507
517
|
},
|
|
508
518
|
decode(input, length) {
|
|
@@ -1184,6 +1194,20 @@ export const DSBodyItem = {
|
|
|
1184
1194
|
message.photoCardCarouselOrg = PhotoCardCarouselOrg.decode(reader, reader.uint32());
|
|
1185
1195
|
continue;
|
|
1186
1196
|
}
|
|
1197
|
+
case 97: {
|
|
1198
|
+
if (tag !== 778) {
|
|
1199
|
+
break;
|
|
1200
|
+
}
|
|
1201
|
+
message.outlinedPicAtm = OutlinedPicAtm.decode(reader, reader.uint32());
|
|
1202
|
+
continue;
|
|
1203
|
+
}
|
|
1204
|
+
case 98: {
|
|
1205
|
+
if (tag !== 786) {
|
|
1206
|
+
break;
|
|
1207
|
+
}
|
|
1208
|
+
message.controlsContainerOrg = ControlsContainerOrg.decode(reader, reader.uint32());
|
|
1209
|
+
continue;
|
|
1210
|
+
}
|
|
1187
1211
|
}
|
|
1188
1212
|
if ((tag & 7) === 4 || tag === 0) {
|
|
1189
1213
|
break;
|
|
@@ -1382,6 +1406,10 @@ export const DSBodyItem = {
|
|
|
1382
1406
|
photoCardCarouselOrg: isSet(object.photoCardCarouselOrg)
|
|
1383
1407
|
? PhotoCardCarouselOrg.fromJSON(object.photoCardCarouselOrg)
|
|
1384
1408
|
: undefined,
|
|
1409
|
+
outlinedPicAtm: isSet(object.outlinedPicAtm) ? OutlinedPicAtm.fromJSON(object.outlinedPicAtm) : undefined,
|
|
1410
|
+
controlsContainerOrg: isSet(object.controlsContainerOrg)
|
|
1411
|
+
? ControlsContainerOrg.fromJSON(object.controlsContainerOrg)
|
|
1412
|
+
: undefined,
|
|
1385
1413
|
};
|
|
1386
1414
|
},
|
|
1387
1415
|
toJSON(message) {
|
|
@@ -1674,6 +1702,12 @@ export const DSBodyItem = {
|
|
|
1674
1702
|
if (message.photoCardCarouselOrg !== undefined) {
|
|
1675
1703
|
obj.photoCardCarouselOrg = PhotoCardCarouselOrg.toJSON(message.photoCardCarouselOrg);
|
|
1676
1704
|
}
|
|
1705
|
+
if (message.outlinedPicAtm !== undefined) {
|
|
1706
|
+
obj.outlinedPicAtm = OutlinedPicAtm.toJSON(message.outlinedPicAtm);
|
|
1707
|
+
}
|
|
1708
|
+
if (message.controlsContainerOrg !== undefined) {
|
|
1709
|
+
obj.controlsContainerOrg = ControlsContainerOrg.toJSON(message.controlsContainerOrg);
|
|
1710
|
+
}
|
|
1677
1711
|
return obj;
|
|
1678
1712
|
},
|
|
1679
1713
|
create(base) {
|
|
@@ -1987,6 +2021,12 @@ export const DSBodyItem = {
|
|
|
1987
2021
|
message.photoCardCarouselOrg = (object.photoCardCarouselOrg !== undefined && object.photoCardCarouselOrg !== null)
|
|
1988
2022
|
? PhotoCardCarouselOrg.fromPartial(object.photoCardCarouselOrg)
|
|
1989
2023
|
: undefined;
|
|
2024
|
+
message.outlinedPicAtm = (object.outlinedPicAtm !== undefined && object.outlinedPicAtm !== null)
|
|
2025
|
+
? OutlinedPicAtm.fromPartial(object.outlinedPicAtm)
|
|
2026
|
+
: undefined;
|
|
2027
|
+
message.controlsContainerOrg = (object.controlsContainerOrg !== undefined && object.controlsContainerOrg !== null)
|
|
2028
|
+
? ControlsContainerOrg.fromPartial(object.controlsContainerOrg)
|
|
2029
|
+
: undefined;
|
|
1990
2030
|
return message;
|
|
1991
2031
|
},
|
|
1992
2032
|
};
|