@innovaccer/design-system 2.25.1 → 2.27.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 +82 -0
- package/css/dist/index.css +33 -1
- package/css/dist/index.css.map +1 -1
- package/css/src/components/avatar.css +1 -1
- package/css/src/components/icon.css +32 -0
- package/dist/.lib/tsconfig.type.tsbuildinfo +238 -66
- package/dist/core/components/atoms/avatar/Avatar.d.ts +4 -1
- package/dist/core/components/atoms/avatar/AvatarProvider.d.ts +10 -0
- package/dist/core/components/atoms/avatar/avatarIcon/AvatarIcon.d.ts +11 -0
- package/dist/core/components/atoms/avatar/avatarIcon/index.d.ts +2 -0
- package/dist/core/components/atoms/avatar/avatarImage/AvatarImage.d.ts +8 -0
- package/dist/core/components/atoms/avatar/avatarImage/index.d.ts +2 -0
- package/dist/core/components/atoms/helpText/HelpText.d.ts +2 -1
- package/dist/core/components/atoms/icon/Icon.d.ts +1 -1
- package/dist/core/components/atoms/popperWrapper/PopperWrapper.d.ts +268 -268
- package/dist/core/components/molecules/tooltip/Tooltip.d.ts +2 -0
- package/dist/core/components/organisms/textField/TextField.d.ts +8 -0
- package/dist/core/components/organisms/textField/TextFieldCommon.d.ts +12 -0
- package/dist/core/components/organisms/textField/TextFieldWithInput.d.ts +14 -0
- package/dist/core/components/organisms/textField/TextFieldWithTextarea.d.ts +11 -0
- package/dist/core/components/organisms/textField/__test__/Textarea.test.d.ts +6 -0
- package/dist/core/components/organisms/textField/index.d.ts +2 -0
- package/dist/core/index.d.ts +1 -0
- package/dist/core/index.type.d.ts +1 -0
- package/dist/core/utils/navigationHelper.d.ts +2 -2
- package/dist/index.esm.js +311 -24
- package/dist/index.js +305 -23
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.br +0 -0
- package/dist/index.umd.js.gz +0 -0
- package/package.json +1 -1
|
@@ -74,6 +74,10 @@
|
|
|
74
74
|
color: var(--primary-dark);
|
|
75
75
|
}
|
|
76
76
|
|
|
77
|
+
.Icon--primaryDarker {
|
|
78
|
+
color: var(--primary-darker);
|
|
79
|
+
}
|
|
80
|
+
|
|
77
81
|
.Icon--alertLighter {
|
|
78
82
|
color: var(--alert-lighter);
|
|
79
83
|
}
|
|
@@ -82,6 +86,10 @@
|
|
|
82
86
|
color: var(--alert-dark);
|
|
83
87
|
}
|
|
84
88
|
|
|
89
|
+
.Icon--alertDarker {
|
|
90
|
+
color: var(--alert-darker);
|
|
91
|
+
}
|
|
92
|
+
|
|
85
93
|
.Icon--successLighter {
|
|
86
94
|
color: var(--success-lighter);
|
|
87
95
|
}
|
|
@@ -90,6 +98,10 @@
|
|
|
90
98
|
color: var(--success-dark);
|
|
91
99
|
}
|
|
92
100
|
|
|
101
|
+
.Icon--successDarker {
|
|
102
|
+
color: var(--success-darker);
|
|
103
|
+
}
|
|
104
|
+
|
|
93
105
|
.Icon--warningLighter {
|
|
94
106
|
color: var(--warning-lighter);
|
|
95
107
|
}
|
|
@@ -98,6 +110,10 @@
|
|
|
98
110
|
color: var(--warning-dark);
|
|
99
111
|
}
|
|
100
112
|
|
|
113
|
+
.Icon--warningDarker {
|
|
114
|
+
color: var(--warning-darker);
|
|
115
|
+
}
|
|
116
|
+
|
|
101
117
|
.Icon--accent1 {
|
|
102
118
|
color: var(--accent1);
|
|
103
119
|
}
|
|
@@ -110,6 +126,10 @@
|
|
|
110
126
|
color: var(--accent1-dark);
|
|
111
127
|
}
|
|
112
128
|
|
|
129
|
+
.Icon--accent1Darker {
|
|
130
|
+
color: var(--accent1-darker);
|
|
131
|
+
}
|
|
132
|
+
|
|
113
133
|
.Icon--accent2 {
|
|
114
134
|
color: var(--accent2);
|
|
115
135
|
}
|
|
@@ -122,6 +142,10 @@
|
|
|
122
142
|
color: var(--accent2-dark);
|
|
123
143
|
}
|
|
124
144
|
|
|
145
|
+
.Icon--accent2Darker {
|
|
146
|
+
color: var(--accent2-darker);
|
|
147
|
+
}
|
|
148
|
+
|
|
125
149
|
.Icon--accent3 {
|
|
126
150
|
color: var(--accent3);
|
|
127
151
|
}
|
|
@@ -134,6 +158,10 @@
|
|
|
134
158
|
color: var(--accent3-dark);
|
|
135
159
|
}
|
|
136
160
|
|
|
161
|
+
.Icon--accent3Darker {
|
|
162
|
+
color: var(--accent3-darker);
|
|
163
|
+
}
|
|
164
|
+
|
|
137
165
|
.Icon--accent4 {
|
|
138
166
|
color: var(--accent4);
|
|
139
167
|
}
|
|
@@ -146,6 +174,10 @@
|
|
|
146
174
|
color: var(--accent4-dark);
|
|
147
175
|
}
|
|
148
176
|
|
|
177
|
+
.Icon--accent4Darker {
|
|
178
|
+
color: var(--accent4-darker);
|
|
179
|
+
}
|
|
180
|
+
|
|
149
181
|
.Icon--inverse {
|
|
150
182
|
color: var(--inverse);
|
|
151
183
|
}
|
|
@@ -231,9 +231,64 @@
|
|
|
231
231
|
"signature": "3c8301f5d7b2e4f3c1f1b1334949f532bcb881f175fc49b391a01bf11bb61b04",
|
|
232
232
|
"affectsGlobalScope": false
|
|
233
233
|
},
|
|
234
|
+
"../../core/components/atoms/avatar/AvatarProvider.tsx": {
|
|
235
|
+
"version": "2bb9b4dcfea05b4af1d513b87947f8bc53926b6e2c0ddb6a1144c720c7cfec36",
|
|
236
|
+
"signature": "63463d252a2d1c239d092771c920d52edcdafd4fe4f48e86067c30653f2ab4dc",
|
|
237
|
+
"affectsGlobalScope": false
|
|
238
|
+
},
|
|
239
|
+
"../../core/accessibility/utils/isEnterKey.ts": {
|
|
240
|
+
"version": "af66522dae744a18df5876f7f8b18c9721b95b77e66e8f44dc75ee5e08b2d857",
|
|
241
|
+
"signature": "4c53ada96f2b2b75a91aee8c0794d478b52083fa76786176676768f2b20b4ac2",
|
|
242
|
+
"affectsGlobalScope": false
|
|
243
|
+
},
|
|
244
|
+
"../../core/accessibility/utils/isSpaceKey.ts": {
|
|
245
|
+
"version": "28bb2a0235686fc9d89706e2823f42a2b55cf733fdf364bb5c276a0f4f2da65a",
|
|
246
|
+
"signature": "bd2100204d01589a25987744aad093fa839dddad21ddf8b7b832e1b750545e1e",
|
|
247
|
+
"affectsGlobalScope": false
|
|
248
|
+
},
|
|
249
|
+
"../../core/accessibility/utils/useAccessibilityProps.ts": {
|
|
250
|
+
"version": "05105112f6557f671bdaec3224459c2ac1e74c2626fc12ecf6b62ca64212ed04",
|
|
251
|
+
"signature": "223d68c9ab2fa0e155cf70bf3b20a45e9011562d86cb390de713055b42afee55",
|
|
252
|
+
"affectsGlobalScope": false
|
|
253
|
+
},
|
|
254
|
+
"../../core/accessibility/utils/index.ts": {
|
|
255
|
+
"version": "44cfff757ea872d3a8c98fe17c5e73ce966724ef270a807fe9334ead39527878",
|
|
256
|
+
"signature": "6427aee725c0b2c594f724f86482fe933cc3711d7ecf0bc86bd742cbf768877b",
|
|
257
|
+
"affectsGlobalScope": false
|
|
258
|
+
},
|
|
259
|
+
"../../core/components/atoms/icon/Icon.tsx": {
|
|
260
|
+
"version": "f5aa2d1166a0b3d70f15e42302364d62018dd133de1c74163ff70d093907c6fe",
|
|
261
|
+
"signature": "f2645e79a3396148a65a91ef803f4370a71b3832db35ea96d9efa9c55e66ff7c",
|
|
262
|
+
"affectsGlobalScope": false
|
|
263
|
+
},
|
|
264
|
+
"../../core/components/atoms/icon/index.tsx": {
|
|
265
|
+
"version": "b37fb3563beee851955c6ea935b0c494b76d087c7473ced3472f1b6569b4a77d",
|
|
266
|
+
"signature": "82aa83ce17783edbb08a8b94be47e61c080ff2cbdbf58a83ed2ee344808901ec",
|
|
267
|
+
"affectsGlobalScope": false
|
|
268
|
+
},
|
|
269
|
+
"../../core/components/atoms/avatar/avatarIcon/AvatarIcon.tsx": {
|
|
270
|
+
"version": "835bcbb0c47958bf04ae4c9aeb53f82f9ffcc998e5e9427ecad32440106b24ff",
|
|
271
|
+
"signature": "5c960e254cc94b625b434e3857c551eec43290de2829070450f3653673a7a6e2",
|
|
272
|
+
"affectsGlobalScope": false
|
|
273
|
+
},
|
|
274
|
+
"../../core/components/atoms/avatar/avatarIcon/index.tsx": {
|
|
275
|
+
"version": "7cd3e4e9d53886532390a105ba027731f7d7d6269af855588e04cf447451d046",
|
|
276
|
+
"signature": "b9d3565865d71593c0bf71f27b695cf2a3274b120c13ed2abf48669ef1d9382c",
|
|
277
|
+
"affectsGlobalScope": false
|
|
278
|
+
},
|
|
279
|
+
"../../core/components/atoms/avatar/avatarImage/AvatarImage.tsx": {
|
|
280
|
+
"version": "6bbc3f30b53987f02cca34c7561c64922ee202419fc548823925474a1d956030",
|
|
281
|
+
"signature": "213e9aff5612dff65c5cd47b01faeb27ce7ef571a97573b02be77e44455fa346",
|
|
282
|
+
"affectsGlobalScope": false
|
|
283
|
+
},
|
|
284
|
+
"../../core/components/atoms/avatar/avatarImage/index.tsx": {
|
|
285
|
+
"version": "ceaf615c065357284369fe917326fc50491455e6ae94444ce541897146bdbfd2",
|
|
286
|
+
"signature": "b15d6d537219716322ea370e437c3fa46f6ab32c4bad428ea749c925c74fa446",
|
|
287
|
+
"affectsGlobalScope": false
|
|
288
|
+
},
|
|
234
289
|
"../../core/components/atoms/avatar/Avatar.tsx": {
|
|
235
|
-
"version": "
|
|
236
|
-
"signature": "
|
|
290
|
+
"version": "b17b59c64c17a903681219b62267716fd396273c036e4f2ce0a80acbf7249609",
|
|
291
|
+
"signature": "4c6faf5f4fed2405b98d40d1991a1f1d173e58252cbbc2002b6a0b8c3bcb37d3",
|
|
237
292
|
"affectsGlobalScope": false
|
|
238
293
|
},
|
|
239
294
|
"../../core/components/atoms/avatar/index.tsx": {
|
|
@@ -401,36 +456,6 @@
|
|
|
401
456
|
"signature": "059d7b3a44c7ac251a68e7de8c15e57592c85b6228221a5ef683cf398934605d",
|
|
402
457
|
"affectsGlobalScope": false
|
|
403
458
|
},
|
|
404
|
-
"../../core/accessibility/utils/isEnterKey.ts": {
|
|
405
|
-
"version": "af66522dae744a18df5876f7f8b18c9721b95b77e66e8f44dc75ee5e08b2d857",
|
|
406
|
-
"signature": "4c53ada96f2b2b75a91aee8c0794d478b52083fa76786176676768f2b20b4ac2",
|
|
407
|
-
"affectsGlobalScope": false
|
|
408
|
-
},
|
|
409
|
-
"../../core/accessibility/utils/isSpaceKey.ts": {
|
|
410
|
-
"version": "28bb2a0235686fc9d89706e2823f42a2b55cf733fdf364bb5c276a0f4f2da65a",
|
|
411
|
-
"signature": "bd2100204d01589a25987744aad093fa839dddad21ddf8b7b832e1b750545e1e",
|
|
412
|
-
"affectsGlobalScope": false
|
|
413
|
-
},
|
|
414
|
-
"../../core/accessibility/utils/useAccessibilityProps.ts": {
|
|
415
|
-
"version": "05105112f6557f671bdaec3224459c2ac1e74c2626fc12ecf6b62ca64212ed04",
|
|
416
|
-
"signature": "223d68c9ab2fa0e155cf70bf3b20a45e9011562d86cb390de713055b42afee55",
|
|
417
|
-
"affectsGlobalScope": false
|
|
418
|
-
},
|
|
419
|
-
"../../core/accessibility/utils/index.ts": {
|
|
420
|
-
"version": "44cfff757ea872d3a8c98fe17c5e73ce966724ef270a807fe9334ead39527878",
|
|
421
|
-
"signature": "6427aee725c0b2c594f724f86482fe933cc3711d7ecf0bc86bd742cbf768877b",
|
|
422
|
-
"affectsGlobalScope": false
|
|
423
|
-
},
|
|
424
|
-
"../../core/components/atoms/icon/Icon.tsx": {
|
|
425
|
-
"version": "5fdd66d217b0000f23101b7ff2778b27ae054e2f3bfba627047ae0d7bf13e81c",
|
|
426
|
-
"signature": "13c7197912e4415f8e45669697f035b60956612e8dde3f1141f305805fb2b45d",
|
|
427
|
-
"affectsGlobalScope": false
|
|
428
|
-
},
|
|
429
|
-
"../../core/components/atoms/icon/index.tsx": {
|
|
430
|
-
"version": "b37fb3563beee851955c6ea935b0c494b76d087c7473ced3472f1b6569b4a77d",
|
|
431
|
-
"signature": "82aa83ce17783edbb08a8b94be47e61c080ff2cbdbf58a83ed2ee344808901ec",
|
|
432
|
-
"affectsGlobalScope": false
|
|
433
|
-
},
|
|
434
459
|
"../../core/components/atoms/_text/index.tsx": {
|
|
435
460
|
"version": "7179b6d4be30b5e85c9a19df92cec84205399c9aade0db6d307aeecd37f09da2",
|
|
436
461
|
"signature": "4495e76d274921d4b59766b405656acdd13655150397c91fa331a2a724d3d837",
|
|
@@ -718,7 +743,7 @@
|
|
|
718
743
|
},
|
|
719
744
|
"../../core/utils/navigationHelper.tsx": {
|
|
720
745
|
"version": "ac967412fc05024f78223436953d015a25500ff0a59cb8de5bba8e6f71ba2d40",
|
|
721
|
-
"signature": "
|
|
746
|
+
"signature": "3ddaeda50c19bfb770fd46a8d45c9f7461bd83cfe514aec875e4e7472de8480c",
|
|
722
747
|
"affectsGlobalScope": false
|
|
723
748
|
},
|
|
724
749
|
"../../core/components/organisms/verticalNav/MenuItem.tsx": {
|
|
@@ -747,7 +772,7 @@
|
|
|
747
772
|
"affectsGlobalScope": false
|
|
748
773
|
},
|
|
749
774
|
"../../core/components/molecules/editableDropdown/EditableDropdown.tsx": {
|
|
750
|
-
"version": "
|
|
775
|
+
"version": "aff9e7ff18391927e4b8d5fabe35c183530d1dca708c054bda7b37128561fb99",
|
|
751
776
|
"signature": "302fc70d29def09fc588806c4c2a49285cead7cdc4bc67b3a2a5422b1efd89af",
|
|
752
777
|
"affectsGlobalScope": false
|
|
753
778
|
},
|
|
@@ -977,8 +1002,8 @@
|
|
|
977
1002
|
"affectsGlobalScope": false
|
|
978
1003
|
},
|
|
979
1004
|
"../../core/components/molecules/tooltip/Tooltip.tsx": {
|
|
980
|
-
"version": "
|
|
981
|
-
"signature": "
|
|
1005
|
+
"version": "082cb28ff3f392accbfffe28db1cb144d4067fee3810360c5910e807e3c32313",
|
|
1006
|
+
"signature": "d2bee07437956ae5217d3c601e80ff8d61935c71f0a5a88fe993d3df5dab7915",
|
|
982
1007
|
"affectsGlobalScope": false
|
|
983
1008
|
},
|
|
984
1009
|
"../../core/components/molecules/tooltip/index.tsx": {
|
|
@@ -1177,8 +1202,8 @@
|
|
|
1177
1202
|
"affectsGlobalScope": false
|
|
1178
1203
|
},
|
|
1179
1204
|
"../../core/components/atoms/popperWrapper/PopperWrapper.tsx": {
|
|
1180
|
-
"version": "
|
|
1181
|
-
"signature": "
|
|
1205
|
+
"version": "a9b0f82d2ae14e36df05c70e60ad62c2200abe32e03ac56f4e86bacf43304be4",
|
|
1206
|
+
"signature": "9f8790145ebb89fab7f7f93da7c3ec0398f5946fe890666435a94d29e04e995b",
|
|
1182
1207
|
"affectsGlobalScope": false
|
|
1183
1208
|
},
|
|
1184
1209
|
"../../core/components/atoms/popperWrapper/index.tsx": {
|
|
@@ -1532,8 +1557,8 @@
|
|
|
1532
1557
|
"affectsGlobalScope": false
|
|
1533
1558
|
},
|
|
1534
1559
|
"../../core/components/atoms/helpText/HelpText.tsx": {
|
|
1535
|
-
"version": "
|
|
1536
|
-
"signature": "
|
|
1560
|
+
"version": "4ca2a470739817537208a41f3f0cf0fbee5d581f2069fe38f4415b86f5a484cd",
|
|
1561
|
+
"signature": "375847f3d91e2665d62b5cee779d306a7d9827f812b0f0d69a8f4e7de92bdb4a",
|
|
1537
1562
|
"affectsGlobalScope": false
|
|
1538
1563
|
},
|
|
1539
1564
|
"../../core/components/atoms/helpText/index.tsx": {
|
|
@@ -1656,9 +1681,34 @@
|
|
|
1656
1681
|
"signature": "3bb4a23f58cd62ce1d5981ff283a526de5b393ae45f435d6ed37922c9a444bed",
|
|
1657
1682
|
"affectsGlobalScope": false
|
|
1658
1683
|
},
|
|
1684
|
+
"../../core/components/organisms/textField/TextFieldCommon.tsx": {
|
|
1685
|
+
"version": "c6c24f81a97d6779a059ef723b9d3f7d6b1c5cbf98bfe412be89900e0916ea6f",
|
|
1686
|
+
"signature": "b60a64233fc1fc84f311fe454c4f4f0265ee2db979abe3d0357d352d39f8028c",
|
|
1687
|
+
"affectsGlobalScope": false
|
|
1688
|
+
},
|
|
1689
|
+
"../../core/components/organisms/textField/TextFieldWithTextarea.tsx": {
|
|
1690
|
+
"version": "a6b977858a43141b2dfe2c030e4081b8065ffb10932a35b2af3a4db6ce5faba4",
|
|
1691
|
+
"signature": "370f2b325e6d2df61cefbb4baebb3636a0c6e23c2fdc1558bdc097a5b90ccf9b",
|
|
1692
|
+
"affectsGlobalScope": false
|
|
1693
|
+
},
|
|
1694
|
+
"../../core/components/organisms/textField/TextFieldWithInput.tsx": {
|
|
1695
|
+
"version": "5128be8bf392872529503e5046d8c2c27725d8d4391d8ee9f5627d73f5f4a3eb",
|
|
1696
|
+
"signature": "068b0de39372c4482a4d786b845ec00b75394117f18d55d2d3e93953830f3930",
|
|
1697
|
+
"affectsGlobalScope": false
|
|
1698
|
+
},
|
|
1699
|
+
"../../core/components/organisms/textField/TextField.tsx": {
|
|
1700
|
+
"version": "3a720853e61ba337a2597d5f2b985a14eadd521f63ef515c5c3df148e6023d80",
|
|
1701
|
+
"signature": "12ec53cebec8a1754efdaf2383758f98dce8d62f5dce9071e4d6b8756af4be35",
|
|
1702
|
+
"affectsGlobalScope": false
|
|
1703
|
+
},
|
|
1704
|
+
"../../core/components/organisms/textField/index.tsx": {
|
|
1705
|
+
"version": "4e37424564a4a5dd86b025ac0b273f7dca4a44bbd3d8bbdcc9229a9066ab10db",
|
|
1706
|
+
"signature": "535bc9a715cb8f2cb636b2e4489ec527545dc35abe9a035f409e2433a2de1888",
|
|
1707
|
+
"affectsGlobalScope": false
|
|
1708
|
+
},
|
|
1659
1709
|
"../../core/index.type.tsx": {
|
|
1660
|
-
"version": "
|
|
1661
|
-
"signature": "
|
|
1710
|
+
"version": "70c5a7142965056cd60b6194499b2bc80a5d90b7a6bf00be540d5aed8472a367",
|
|
1711
|
+
"signature": "284d6724063eee3d3e1de65ffd9f233bb94e64a0f507733b89b31d4c9de0fb06",
|
|
1662
1712
|
"affectsGlobalScope": false
|
|
1663
1713
|
},
|
|
1664
1714
|
"../../core/components/organisms/timePicker/TimePickerWithInput.tsx": {
|
|
@@ -1687,8 +1737,8 @@
|
|
|
1687
1737
|
"affectsGlobalScope": false
|
|
1688
1738
|
},
|
|
1689
1739
|
"../../core/index.tsx": {
|
|
1690
|
-
"version": "
|
|
1691
|
-
"signature": "
|
|
1740
|
+
"version": "2635bd5d0b5b1f9dd676602851b043b4e55dcde28ef1b1c6acb1ae6272da2b9e",
|
|
1741
|
+
"signature": "4fe759eee49c57c4e879d0a424f598bf2568455cc5ed006502f049b14fb8d1b7",
|
|
1692
1742
|
"affectsGlobalScope": false
|
|
1693
1743
|
},
|
|
1694
1744
|
"../../core/components/molecules/overlayFooter/OverlayFooter.tsx": {
|
|
@@ -1871,6 +1921,31 @@
|
|
|
1871
1921
|
"signature": "8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881",
|
|
1872
1922
|
"affectsGlobalScope": false
|
|
1873
1923
|
},
|
|
1924
|
+
"../../node_modules/jest-diff/build/types.d.ts": {
|
|
1925
|
+
"version": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7",
|
|
1926
|
+
"signature": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7",
|
|
1927
|
+
"affectsGlobalScope": false
|
|
1928
|
+
},
|
|
1929
|
+
"../../node_modules/jest-diff/build/index.d.ts": {
|
|
1930
|
+
"version": "162c6f2951bd80ae6e16679378f382200b26bba9de8f255af3a2895fbfa670b4",
|
|
1931
|
+
"signature": "162c6f2951bd80ae6e16679378f382200b26bba9de8f255af3a2895fbfa670b4",
|
|
1932
|
+
"affectsGlobalScope": false
|
|
1933
|
+
},
|
|
1934
|
+
"../../node_modules/@types/jest/index.d.ts": {
|
|
1935
|
+
"version": "375c56b1890858dcdae495877f0ce3b694980adf64762e2fd3fbe78e3eac76ba",
|
|
1936
|
+
"signature": "375c56b1890858dcdae495877f0ce3b694980adf64762e2fd3fbe78e3eac76ba",
|
|
1937
|
+
"affectsGlobalScope": true
|
|
1938
|
+
},
|
|
1939
|
+
"../../node_modules/@types/testing-library__jest-dom/index.d.ts": {
|
|
1940
|
+
"version": "dd4d769260a2b8cf19f0d2457f3142b24f083237932b0d1edb5fd728a989c8bd",
|
|
1941
|
+
"signature": "dd4d769260a2b8cf19f0d2457f3142b24f083237932b0d1edb5fd728a989c8bd",
|
|
1942
|
+
"affectsGlobalScope": true
|
|
1943
|
+
},
|
|
1944
|
+
"../../core/components/organisms/textField/__test__/Textarea.test.tsx": {
|
|
1945
|
+
"version": "029983cfb96ed5938f7e9e0d6dbb7f9de1802b81f476bd7ef2c3d5b140dc6e2f",
|
|
1946
|
+
"signature": "5f9f3f8074805005c69f5c02a05d5ec4099b9d39fa8cad858b134fd60b98d3ae",
|
|
1947
|
+
"affectsGlobalScope": true
|
|
1948
|
+
},
|
|
1874
1949
|
"../../core/utils/action.ts": {
|
|
1875
1950
|
"version": "475ce5f77cf4739dfdf31ba0def5e6cc07b108f6ad875544923bfd4614db7393",
|
|
1876
1951
|
"signature": "52eff0895b53806f45cb2cd8fce432b87cee4d2e8e2858082963653c3bf8596e",
|
|
@@ -2862,7 +2937,7 @@
|
|
|
2862
2937
|
"affectsGlobalScope": false
|
|
2863
2938
|
},
|
|
2864
2939
|
"../../core/utils/docPage/index.tsx": {
|
|
2865
|
-
"version": "
|
|
2940
|
+
"version": "691f1f47f83a80310860119b4d6f8ae682e935710245ce038829eec0291e2ee4",
|
|
2866
2941
|
"signature": "d793df693e1f566f2a7fd586a5ba76f93009c359e9795372d49bb1dafa1d2c00",
|
|
2867
2942
|
"affectsGlobalScope": false
|
|
2868
2943
|
},
|
|
@@ -2871,26 +2946,6 @@
|
|
|
2871
2946
|
"signature": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
|
|
2872
2947
|
"affectsGlobalScope": true
|
|
2873
2948
|
},
|
|
2874
|
-
"../../node_modules/jest-diff/build/types.d.ts": {
|
|
2875
|
-
"version": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7",
|
|
2876
|
-
"signature": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7",
|
|
2877
|
-
"affectsGlobalScope": false
|
|
2878
|
-
},
|
|
2879
|
-
"../../node_modules/jest-diff/build/index.d.ts": {
|
|
2880
|
-
"version": "162c6f2951bd80ae6e16679378f382200b26bba9de8f255af3a2895fbfa670b4",
|
|
2881
|
-
"signature": "162c6f2951bd80ae6e16679378f382200b26bba9de8f255af3a2895fbfa670b4",
|
|
2882
|
-
"affectsGlobalScope": false
|
|
2883
|
-
},
|
|
2884
|
-
"../../node_modules/@types/jest/index.d.ts": {
|
|
2885
|
-
"version": "375c56b1890858dcdae495877f0ce3b694980adf64762e2fd3fbe78e3eac76ba",
|
|
2886
|
-
"signature": "375c56b1890858dcdae495877f0ce3b694980adf64762e2fd3fbe78e3eac76ba",
|
|
2887
|
-
"affectsGlobalScope": true
|
|
2888
|
-
},
|
|
2889
|
-
"../../node_modules/@types/testing-library__jest-dom/index.d.ts": {
|
|
2890
|
-
"version": "dd4d769260a2b8cf19f0d2457f3142b24f083237932b0d1edb5fd728a989c8bd",
|
|
2891
|
-
"signature": "dd4d769260a2b8cf19f0d2457f3142b24f083237932b0d1edb5fd728a989c8bd",
|
|
2892
|
-
"affectsGlobalScope": true
|
|
2893
|
-
},
|
|
2894
2949
|
"../../scripts/setupTest.ts": {
|
|
2895
2950
|
"version": "de3aa21dc85084def3697956dc52dfe93430780f76d43020f9dcbbb3cbd27338",
|
|
2896
2951
|
"signature": "a46d66851af2c056e805fdd574bf5ec3adb1181c43c5e41f0a1c592e338afe64",
|
|
@@ -4775,6 +4830,39 @@
|
|
|
4775
4830
|
"*",
|
|
4776
4831
|
"*",
|
|
4777
4832
|
"*",
|
|
4833
|
+
"*",
|
|
4834
|
+
"*",
|
|
4835
|
+
"*",
|
|
4836
|
+
"*",
|
|
4837
|
+
"*",
|
|
4838
|
+
"*",
|
|
4839
|
+
"*",
|
|
4840
|
+
"*",
|
|
4841
|
+
"*",
|
|
4842
|
+
"*",
|
|
4843
|
+
"*",
|
|
4844
|
+
"*",
|
|
4845
|
+
"*",
|
|
4846
|
+
"*",
|
|
4847
|
+
"*",
|
|
4848
|
+
"*",
|
|
4849
|
+
"*",
|
|
4850
|
+
"*",
|
|
4851
|
+
"*",
|
|
4852
|
+
"*",
|
|
4853
|
+
"*",
|
|
4854
|
+
"*",
|
|
4855
|
+
"*",
|
|
4856
|
+
"*",
|
|
4857
|
+
"*",
|
|
4858
|
+
"*",
|
|
4859
|
+
"*",
|
|
4860
|
+
"*",
|
|
4861
|
+
"*",
|
|
4862
|
+
"*",
|
|
4863
|
+
"*",
|
|
4864
|
+
"*",
|
|
4865
|
+
"*",
|
|
4778
4866
|
"*"
|
|
4779
4867
|
]
|
|
4780
4868
|
},
|
|
@@ -4850,6 +4938,9 @@
|
|
|
4850
4938
|
],
|
|
4851
4939
|
"../../core/components/atoms/avatar/Avatar.tsx": [
|
|
4852
4940
|
"../../core/common.type.tsx",
|
|
4941
|
+
"../../core/components/atoms/avatar/AvatarProvider.tsx",
|
|
4942
|
+
"../../core/components/atoms/avatar/avatarIcon/index.tsx",
|
|
4943
|
+
"../../core/components/atoms/avatar/avatarImage/index.tsx",
|
|
4853
4944
|
"../../core/index.tsx",
|
|
4854
4945
|
"../../core/index.type.tsx",
|
|
4855
4946
|
"../../core/utils/types.tsx",
|
|
@@ -4857,6 +4948,34 @@
|
|
|
4857
4948
|
"../../node_modules/@types/react/index.d.ts",
|
|
4858
4949
|
"../../node_modules/classnames/index.d.ts"
|
|
4859
4950
|
],
|
|
4951
|
+
"../../core/components/atoms/avatar/AvatarProvider.tsx": [
|
|
4952
|
+
"../../node_modules/@types/node/util.d.ts",
|
|
4953
|
+
"../../node_modules/@types/react/index.d.ts"
|
|
4954
|
+
],
|
|
4955
|
+
"../../core/components/atoms/avatar/avatarIcon/AvatarIcon.tsx": [
|
|
4956
|
+
"../../core/components/atoms/avatar/AvatarProvider.tsx",
|
|
4957
|
+
"../../core/components/atoms/icon/index.tsx",
|
|
4958
|
+
"../../core/index.tsx",
|
|
4959
|
+
"../../core/utils/types.tsx",
|
|
4960
|
+
"../../node_modules/@types/node/util.d.ts",
|
|
4961
|
+
"../../node_modules/@types/react/index.d.ts"
|
|
4962
|
+
],
|
|
4963
|
+
"../../core/components/atoms/avatar/avatarIcon/index.tsx": [
|
|
4964
|
+
"../../core/components/atoms/avatar/avatarIcon/AvatarIcon.tsx",
|
|
4965
|
+
"../../node_modules/@types/node/util.d.ts"
|
|
4966
|
+
],
|
|
4967
|
+
"../../core/components/atoms/avatar/avatarImage/AvatarImage.tsx": [
|
|
4968
|
+
"../../core/components/atoms/avatar/AvatarProvider.tsx",
|
|
4969
|
+
"../../core/index.tsx",
|
|
4970
|
+
"../../core/utils/types.tsx",
|
|
4971
|
+
"../../node_modules/@types/node/util.d.ts",
|
|
4972
|
+
"../../node_modules/@types/react/index.d.ts",
|
|
4973
|
+
"../../node_modules/classnames/index.d.ts"
|
|
4974
|
+
],
|
|
4975
|
+
"../../core/components/atoms/avatar/avatarImage/index.tsx": [
|
|
4976
|
+
"../../core/components/atoms/avatar/avatarImage/AvatarImage.tsx",
|
|
4977
|
+
"../../node_modules/@types/node/util.d.ts"
|
|
4978
|
+
],
|
|
4860
4979
|
"../../core/components/atoms/avatar/index.tsx": [
|
|
4861
4980
|
"../../core/components/atoms/avatar/Avatar.tsx",
|
|
4862
4981
|
"../../node_modules/@types/node/util.d.ts"
|
|
@@ -5199,8 +5318,10 @@
|
|
|
5199
5318
|
],
|
|
5200
5319
|
"../../core/components/atoms/helpText/HelpText.tsx": [
|
|
5201
5320
|
"../../core/index.tsx",
|
|
5321
|
+
"../../core/utils/types.tsx",
|
|
5202
5322
|
"../../node_modules/@types/node/util.d.ts",
|
|
5203
|
-
"../../node_modules/@types/react/index.d.ts"
|
|
5323
|
+
"../../node_modules/@types/react/index.d.ts",
|
|
5324
|
+
"../../node_modules/classnames/index.d.ts"
|
|
5204
5325
|
],
|
|
5205
5326
|
"../../core/components/atoms/helpText/index.tsx": [
|
|
5206
5327
|
"../../core/components/atoms/helpText/HelpText.tsx",
|
|
@@ -6491,6 +6612,44 @@
|
|
|
6491
6612
|
"../../core/components/organisms/table/Table.tsx",
|
|
6492
6613
|
"../../node_modules/@types/node/util.d.ts"
|
|
6493
6614
|
],
|
|
6615
|
+
"../../core/components/organisms/textField/TextField.tsx": [
|
|
6616
|
+
"../../core/components/organisms/textField/TextFieldWithInput.tsx",
|
|
6617
|
+
"../../core/components/organisms/textField/TextFieldWithTextarea.tsx",
|
|
6618
|
+
"../../node_modules/@types/node/util.d.ts",
|
|
6619
|
+
"../../node_modules/@types/react/index.d.ts"
|
|
6620
|
+
],
|
|
6621
|
+
"../../core/components/organisms/textField/TextFieldCommon.tsx": [
|
|
6622
|
+
"../../core/index.tsx",
|
|
6623
|
+
"../../node_modules/@types/node/util.d.ts",
|
|
6624
|
+
"../../node_modules/@types/react/index.d.ts"
|
|
6625
|
+
],
|
|
6626
|
+
"../../core/components/organisms/textField/TextFieldWithInput.tsx": [
|
|
6627
|
+
"../../core/components/organisms/textField/TextFieldCommon.tsx",
|
|
6628
|
+
"../../core/index.tsx",
|
|
6629
|
+
"../../core/index.type.tsx",
|
|
6630
|
+
"../../core/utils/types.tsx",
|
|
6631
|
+
"../../node_modules/@types/node/util.d.ts",
|
|
6632
|
+
"../../node_modules/@types/react/index.d.ts"
|
|
6633
|
+
],
|
|
6634
|
+
"../../core/components/organisms/textField/TextFieldWithTextarea.tsx": [
|
|
6635
|
+
"../../core/components/organisms/textField/TextFieldCommon.tsx",
|
|
6636
|
+
"../../core/index.tsx",
|
|
6637
|
+
"../../core/index.type.tsx",
|
|
6638
|
+
"../../core/utils/types.tsx",
|
|
6639
|
+
"../../node_modules/@types/node/util.d.ts",
|
|
6640
|
+
"../../node_modules/@types/react/index.d.ts"
|
|
6641
|
+
],
|
|
6642
|
+
"../../core/components/organisms/textField/__test__/Textarea.test.tsx": [
|
|
6643
|
+
"../../core/components/organisms/textField/TextField.tsx",
|
|
6644
|
+
"../../core/utils/testHelper.ts",
|
|
6645
|
+
"../../node_modules/@testing-library/react/types/index.d.ts",
|
|
6646
|
+
"../../node_modules/@types/node/util.d.ts",
|
|
6647
|
+
"../../node_modules/@types/react/index.d.ts"
|
|
6648
|
+
],
|
|
6649
|
+
"../../core/components/organisms/textField/index.tsx": [
|
|
6650
|
+
"../../core/components/organisms/textField/TextField.tsx",
|
|
6651
|
+
"../../node_modules/@types/node/util.d.ts"
|
|
6652
|
+
],
|
|
6494
6653
|
"../../core/components/organisms/timePicker/TimePicker.tsx": [
|
|
6495
6654
|
"../../core/components/organisms/timePicker/TimePickerWithInput.tsx",
|
|
6496
6655
|
"../../core/components/organisms/timePicker/TimePickerWithSearch.tsx",
|
|
@@ -6648,6 +6807,7 @@
|
|
|
6648
6807
|
"../../core/components/organisms/navigation/index.tsx",
|
|
6649
6808
|
"../../core/components/organisms/pageHeader/index.tsx",
|
|
6650
6809
|
"../../core/components/organisms/table/index.tsx",
|
|
6810
|
+
"../../core/components/organisms/textField/index.tsx",
|
|
6651
6811
|
"../../core/components/organisms/timePicker/index.tsx",
|
|
6652
6812
|
"../../core/components/organisms/verticalNav/index.tsx",
|
|
6653
6813
|
"../../core/global.d.ts",
|
|
@@ -6739,6 +6899,7 @@
|
|
|
6739
6899
|
"../../core/components/organisms/navigation/index.tsx",
|
|
6740
6900
|
"../../core/components/organisms/pageHeader/index.tsx",
|
|
6741
6901
|
"../../core/components/organisms/table/index.tsx",
|
|
6902
|
+
"../../core/components/organisms/textField/index.tsx",
|
|
6742
6903
|
"../../core/components/organisms/timePicker/index.tsx",
|
|
6743
6904
|
"../../core/components/organisms/verticalNav/index.tsx",
|
|
6744
6905
|
"../../core/index.tsx",
|
|
@@ -11917,6 +12078,11 @@
|
|
|
11917
12078
|
"../../core/components/atoms/actionCard/ActionCard.tsx",
|
|
11918
12079
|
"../../core/components/atoms/actionCard/index.tsx",
|
|
11919
12080
|
"../../core/components/atoms/avatar/Avatar.tsx",
|
|
12081
|
+
"../../core/components/atoms/avatar/AvatarProvider.tsx",
|
|
12082
|
+
"../../core/components/atoms/avatar/avatarIcon/AvatarIcon.tsx",
|
|
12083
|
+
"../../core/components/atoms/avatar/avatarIcon/index.tsx",
|
|
12084
|
+
"../../core/components/atoms/avatar/avatarImage/AvatarImage.tsx",
|
|
12085
|
+
"../../core/components/atoms/avatar/avatarImage/index.tsx",
|
|
11920
12086
|
"../../core/components/atoms/avatar/index.tsx",
|
|
11921
12087
|
"../../core/components/atoms/avatarGroup/AvatarCount.tsx",
|
|
11922
12088
|
"../../core/components/atoms/avatarGroup/AvatarGroup.tsx",
|
|
@@ -12182,6 +12348,12 @@
|
|
|
12182
12348
|
"../../core/components/organisms/table/Header.tsx",
|
|
12183
12349
|
"../../core/components/organisms/table/Table.tsx",
|
|
12184
12350
|
"../../core/components/organisms/table/index.tsx",
|
|
12351
|
+
"../../core/components/organisms/textField/TextField.tsx",
|
|
12352
|
+
"../../core/components/organisms/textField/TextFieldCommon.tsx",
|
|
12353
|
+
"../../core/components/organisms/textField/TextFieldWithInput.tsx",
|
|
12354
|
+
"../../core/components/organisms/textField/TextFieldWithTextarea.tsx",
|
|
12355
|
+
"../../core/components/organisms/textField/__test__/Textarea.test.tsx",
|
|
12356
|
+
"../../core/components/organisms/textField/index.tsx",
|
|
12185
12357
|
"../../core/components/organisms/timePicker/TimePicker.tsx",
|
|
12186
12358
|
"../../core/components/organisms/timePicker/TimePickerWithInput.tsx",
|
|
12187
12359
|
"../../core/components/organisms/timePicker/TimePickerWithSearch.tsx",
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
1
2
|
import { BaseProps } from "../../../utils/types";
|
|
2
3
|
import { TooltipProps } from "../../../index.type";
|
|
3
4
|
import { AccentAppearance, AvatarSize } from "../../../common.type";
|
|
4
5
|
export interface AvatarProps extends BaseProps {
|
|
5
6
|
appearance?: AccentAppearance;
|
|
6
|
-
children?: string;
|
|
7
|
+
children?: string | React.ReactNode;
|
|
7
8
|
firstName?: string;
|
|
8
9
|
lastName?: string;
|
|
9
10
|
withTooltip: boolean;
|
|
@@ -13,6 +14,8 @@ export interface AvatarProps extends BaseProps {
|
|
|
13
14
|
export declare const Avatar: {
|
|
14
15
|
(props: AvatarProps): JSX.Element;
|
|
15
16
|
displayName: string;
|
|
17
|
+
Icon: (props: import("./avatarIcon").AvatarIconProps) => JSX.Element;
|
|
18
|
+
Image: (props: import("./avatarImage").AvatarImageProps) => JSX.Element;
|
|
16
19
|
defaultProps: {
|
|
17
20
|
tooltipPosition: string;
|
|
18
21
|
withTooltip: boolean;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare type ContextProps = {
|
|
3
|
+
size?: string;
|
|
4
|
+
appearance?: string;
|
|
5
|
+
firstName?: string;
|
|
6
|
+
lastName?: string;
|
|
7
|
+
};
|
|
8
|
+
export declare const AvatarContext: React.Context<ContextProps>;
|
|
9
|
+
declare const _default: React.Provider<ContextProps>;
|
|
10
|
+
export default _default;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { BaseProps } from "../../../../utils/types";
|
|
3
|
+
export interface AvatarIconProps extends BaseProps {
|
|
4
|
+
name?: string;
|
|
5
|
+
type?: 'outlined' | 'rounded';
|
|
6
|
+
onClick?: (e: React.MouseEvent<HTMLElement>) => void;
|
|
7
|
+
onKeyDown?: (e: React.KeyboardEvent<HTMLElement>) => void;
|
|
8
|
+
tabIndex?: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>['tabIndex'];
|
|
9
|
+
}
|
|
10
|
+
export declare const AvatarIcon: (props: AvatarIconProps) => JSX.Element;
|
|
11
|
+
export default AvatarIcon;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { BaseProps } from "../../../../utils/types";
|
|
3
|
+
export interface AvatarImageProps extends BaseProps {
|
|
4
|
+
children?: React.ReactNode;
|
|
5
|
+
src?: string;
|
|
6
|
+
}
|
|
7
|
+
export declare const AvatarImage: (props: AvatarImageProps) => JSX.Element;
|
|
8
|
+
export default AvatarImage;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { BaseProps } from "../../../utils/types";
|
|
3
|
-
export declare type IconAppearance = 'default' | 'destructive' | 'white' | 'subtle' | 'disabled' | 'info' | 'alert' | 'warning' | 'success' | 'primary_lighter' | 'primary' | 'primary_dark' | 'alert_lighter' | 'alert_dark' | 'warning_lighter' | 'warning_dark' | 'success_lighter' | 'success_dark' | 'accent1' | 'accent1_lighter' | 'accent1_dark' | 'accent2' | 'accent2_lighter' | 'accent2_dark' | 'accent3' | 'accent3_lighter' | 'accent3_dark' | 'accent4' | 'accent4_lighter' | 'accent4_dark' | 'inverse';
|
|
3
|
+
export declare type IconAppearance = 'default' | 'destructive' | 'white' | 'subtle' | 'disabled' | 'info' | 'alert' | 'warning' | 'success' | 'primary_lighter' | 'primary' | 'primary_dark' | 'primary_darker' | 'alert_lighter' | 'alert_dark' | 'alert_darker' | 'warning_lighter' | 'warning_dark' | 'warning_darker' | 'success_lighter' | 'success_dark' | 'success_darker' | 'accent1' | 'accent1_lighter' | 'accent1_dark' | 'accent1_darker' | 'accent2' | 'accent2_lighter' | 'accent2_dark' | 'accent2_darker' | 'accent3' | 'accent3_lighter' | 'accent3_dark' | 'accent3_darker' | 'accent4' | 'accent4_lighter' | 'accent4_dark' | 'accent4_darker' | 'inverse';
|
|
4
4
|
export declare type IconType = 'filled' | 'outlined' | 'outline' | 'rounded' | 'round' | 'two-tone' | 'sharp';
|
|
5
5
|
export interface IconProps extends BaseProps {
|
|
6
6
|
name?: string;
|