@nulogy/components 8.14.4 → 8.15.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/main.js +113 -92
- package/dist/main.module.js +113 -92
- package/dist/src/Icon/LoadingIcon.d.ts +1 -6
- package/dist/src/Tooltip/Tooltip.story.d.ts +1 -0
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -8543,79 +8543,87 @@
|
|
|
8543
8543
|
}
|
|
8544
8544
|
};
|
|
8545
8545
|
|
|
8546
|
-
var
|
|
8547
|
-
|
|
8548
|
-
|
|
8549
|
-
|
|
8550
|
-
|
|
8551
|
-
|
|
8552
|
-
|
|
8553
|
-
|
|
8554
|
-
|
|
8555
|
-
|
|
8556
|
-
|
|
8557
|
-
|
|
8558
|
-
|
|
8559
|
-
|
|
8560
|
-
|
|
8561
|
-
|
|
8562
|
-
|
|
8563
|
-
|
|
8564
|
-
|
|
8565
|
-
|
|
8566
|
-
|
|
8567
|
-
|
|
8568
|
-
|
|
8569
|
-
|
|
8570
|
-
|
|
8571
|
-
|
|
8572
|
-
|
|
8573
|
-
|
|
8574
|
-
|
|
8575
|
-
|
|
8576
|
-
|
|
8577
|
-
|
|
8578
|
-
|
|
8579
|
-
|
|
8580
|
-
|
|
8581
|
-
|
|
8582
|
-
|
|
8583
|
-
|
|
8584
|
-
|
|
8585
|
-
|
|
8586
|
-
|
|
8587
|
-
|
|
8588
|
-
|
|
8589
|
-
|
|
8590
|
-
|
|
8591
|
-
|
|
8592
|
-
|
|
8593
|
-
|
|
8594
|
-
|
|
8595
|
-
|
|
8596
|
-
|
|
8597
|
-
|
|
8598
|
-
|
|
8599
|
-
|
|
8600
|
-
|
|
8601
|
-
|
|
8602
|
-
|
|
8603
|
-
|
|
8604
|
-
|
|
8605
|
-
|
|
8606
|
-
|
|
8607
|
-
|
|
8608
|
-
|
|
8609
|
-
|
|
8610
|
-
|
|
8611
|
-
|
|
8612
|
-
|
|
8613
|
-
|
|
8614
|
-
|
|
8615
|
-
|
|
8616
|
-
|
|
8617
|
-
|
|
8618
|
-
|
|
8546
|
+
var LoadingIcon = function LoadingIcon(props) {
|
|
8547
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", Object.assign({
|
|
8548
|
+
viewBox: "0 0 24px 24px",
|
|
8549
|
+
width: "24px",
|
|
8550
|
+
height: "24px",
|
|
8551
|
+
fill: "none",
|
|
8552
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8553
|
+
preserveAspectRatio: "xMidYMid"
|
|
8554
|
+
}, props), /*#__PURE__*/React__default["default"].createElement("g", null, /*#__PURE__*/React__default["default"].createElement("circle", {
|
|
8555
|
+
cx: "3.5",
|
|
8556
|
+
cy: "12",
|
|
8557
|
+
fill: "#C0C8D1",
|
|
8558
|
+
"transform-origin": "3.5 3.5"
|
|
8559
|
+
}, /*#__PURE__*/React__default["default"].createElement("animate", {
|
|
8560
|
+
attributeName: "r",
|
|
8561
|
+
values: "3;3;3.5;3",
|
|
8562
|
+
keySplines: "\n 0.1 0.8 0.2 1;\n 0.1 0.8 0.2 1;\n 0.1 0.8 0.2 1;",
|
|
8563
|
+
keyTimes: "0; 0.25;0.4; 1",
|
|
8564
|
+
calcMode: "spline",
|
|
8565
|
+
dur: "0.8s",
|
|
8566
|
+
repeatCount: "indefinite"
|
|
8567
|
+
}), /*#__PURE__*/React__default["default"].createElement("animate", {
|
|
8568
|
+
id: "first",
|
|
8569
|
+
attributeName: "fill",
|
|
8570
|
+
values: "#C0C8D1;#C0C8D1;#434D59;#C0C8D1",
|
|
8571
|
+
keySplines: "\n 0.1 0.8 0.2 1;\n 0.1 0.8 0.2 1;\n 0.1 0.8 0.2 1;",
|
|
8572
|
+
keyTimes: "0; 0.25;0.4; 1",
|
|
8573
|
+
calcMode: "spline",
|
|
8574
|
+
dur: "0.8s",
|
|
8575
|
+
repeatCount: "indefinite"
|
|
8576
|
+
})), /*#__PURE__*/React__default["default"].createElement("circle", {
|
|
8577
|
+
cx: "12",
|
|
8578
|
+
cy: "12",
|
|
8579
|
+
r: "3",
|
|
8580
|
+
fill: "#C0C8D1",
|
|
8581
|
+
"transform-origin": "12 3.5"
|
|
8582
|
+
}, /*#__PURE__*/React__default["default"].createElement("animate", {
|
|
8583
|
+
attributeName: "r",
|
|
8584
|
+
begin: "0.2s; first.begin",
|
|
8585
|
+
values: "3;3;3.5;3",
|
|
8586
|
+
keySplines: "\n 0.1 0.8 0.2 1;\n 0.1 0.8 0.2 1;\n 0.1 0.8 0.2 1;",
|
|
8587
|
+
keyTimes: "0; 0.25;0.4; 1",
|
|
8588
|
+
calcMode: "spline",
|
|
8589
|
+
dur: "0.8s",
|
|
8590
|
+
repeatCount: "indefinite"
|
|
8591
|
+
}), /*#__PURE__*/React__default["default"].createElement("animate", {
|
|
8592
|
+
id: "second",
|
|
8593
|
+
attributeName: "fill",
|
|
8594
|
+
begin: "0.2s; first.begin",
|
|
8595
|
+
values: "#C0C8D1;#C0C8D1;#434D59;#C0C8D1",
|
|
8596
|
+
keySplines: "\n 0.1 0.8 0.2 1;\n 0.1 0.8 0.2 1;\n 0.1 0.8 0.2 1;",
|
|
8597
|
+
keyTimes: "0; 0.25;0.4; 1",
|
|
8598
|
+
calcMode: "spline",
|
|
8599
|
+
dur: "0.8s",
|
|
8600
|
+
repeatCount: "indefinite"
|
|
8601
|
+
})), /*#__PURE__*/React__default["default"].createElement("circle", {
|
|
8602
|
+
cx: "20.5",
|
|
8603
|
+
cy: "12",
|
|
8604
|
+
r: "3",
|
|
8605
|
+
fill: "#C0C8D1",
|
|
8606
|
+
"transform-origin": "20.5 3.5"
|
|
8607
|
+
}, /*#__PURE__*/React__default["default"].createElement("animate", {
|
|
8608
|
+
attributeName: "r",
|
|
8609
|
+
begin: "0.3s; first.begin",
|
|
8610
|
+
values: "3;3;3.5;3",
|
|
8611
|
+
keySplines: "\n 0.1 0.8 0.2 1;\n 0.1 0.8 0.2 1;\n 0.1 0.8 0.2 1;",
|
|
8612
|
+
keyTimes: "0; 0.25;0.4; 1",
|
|
8613
|
+
calcMode: "spline",
|
|
8614
|
+
dur: "0.8s",
|
|
8615
|
+
repeatCount: "indefinite"
|
|
8616
|
+
}), /*#__PURE__*/React__default["default"].createElement("animate", {
|
|
8617
|
+
id: "third",
|
|
8618
|
+
attributeName: "fill",
|
|
8619
|
+
begin: "0.3s; first.begin",
|
|
8620
|
+
values: "#C0C8D1;#C0C8D1;#434D59;#C0C8D1",
|
|
8621
|
+
keySplines: "\n .24 .1 .35 .8;\n .24 .1 .35 .8;\n 0.1 0.8 0.2 1",
|
|
8622
|
+
keyTimes: "0; 0.25;0.4; 1",
|
|
8623
|
+
calcMode: "spline",
|
|
8624
|
+
dur: "0.8s",
|
|
8625
|
+
repeatCount: "indefinite"
|
|
8626
|
+
}))));
|
|
8619
8627
|
};
|
|
8620
8628
|
|
|
8621
8629
|
/* eslint-disable react/no-array-index-key */
|
|
@@ -8646,7 +8654,6 @@
|
|
|
8646
8654
|
if (icon === "loading") {
|
|
8647
8655
|
return /*#__PURE__*/React__default["default"].createElement(LoadingIcon, Object.assign({
|
|
8648
8656
|
color: Theme.colors[fillColor] ? Theme.colors[fillColor] : fillColor,
|
|
8649
|
-
size: space[size] || size,
|
|
8650
8657
|
className: className
|
|
8651
8658
|
}, props));
|
|
8652
8659
|
}
|
|
@@ -17633,6 +17640,14 @@
|
|
|
17633
17640
|
return parseInt(val1.replace("px", ""), 10) - parseInt(val2Str.replace("px", ""), 10) + "px";
|
|
17634
17641
|
};
|
|
17635
17642
|
|
|
17643
|
+
var prefix = "random-id-";
|
|
17644
|
+
var randomId = 0;
|
|
17645
|
+
|
|
17646
|
+
var generateId = function generateId() {
|
|
17647
|
+
randomId += 1;
|
|
17648
|
+
return prefix + randomId;
|
|
17649
|
+
};
|
|
17650
|
+
|
|
17636
17651
|
var WindowDimensions = /*#__PURE__*/function (_React$Component) {
|
|
17637
17652
|
_inheritsLoose__default["default"](WindowDimensions, _React$Component);
|
|
17638
17653
|
|
|
@@ -18654,7 +18669,7 @@
|
|
|
18654
18669
|
}, /*#__PURE__*/React__default["default"].createElement(WindowedSelect__default["default"], Object.assign({
|
|
18655
18670
|
size: componentSize,
|
|
18656
18671
|
ref: reactSelectRef,
|
|
18657
|
-
placeholder: placeholder || t("select
|
|
18672
|
+
placeholder: placeholder || t("select"),
|
|
18658
18673
|
windowThreshold: windowThreshold,
|
|
18659
18674
|
styles: customStyles({
|
|
18660
18675
|
theme: themeContext,
|
|
@@ -18805,7 +18820,7 @@
|
|
|
18805
18820
|
value: value,
|
|
18806
18821
|
ref: ref,
|
|
18807
18822
|
defaultInputValue: defaultValue,
|
|
18808
|
-
placeholder: placeholder || t("
|
|
18823
|
+
placeholder: placeholder || t("start typing"),
|
|
18809
18824
|
labelText: labelText,
|
|
18810
18825
|
styles: customStyles({
|
|
18811
18826
|
theme: themeContext,
|
|
@@ -47980,7 +47995,8 @@
|
|
|
47980
47995
|
"primary navigation": "Prim\xE4re Navigation",
|
|
47981
47996
|
"search nulogy": "Nulogy suchen...",
|
|
47982
47997
|
"secondary navigation": "Sekund\xE4re Navigation",
|
|
47983
|
-
|
|
47998
|
+
select: "W\xE4hlen",
|
|
47999
|
+
"start typing": "Anfangen zu tippen",
|
|
47984
48000
|
"select a start date": "Ein Startdatum w\xE4hlen",
|
|
47985
48001
|
"select a start month": "Einen Startmonat w\xE4hlen",
|
|
47986
48002
|
"select a start time": "Eine Startzeit w\xE4hlen",
|
|
@@ -48020,7 +48036,8 @@
|
|
|
48020
48036
|
"primary navigation": "Primary navigation",
|
|
48021
48037
|
"search nulogy": "Search Nulogy...",
|
|
48022
48038
|
"secondary navigation": "Secondary navigation",
|
|
48023
|
-
|
|
48039
|
+
select: "Select",
|
|
48040
|
+
"start typing": "Start typing",
|
|
48024
48041
|
"select a start date": "Select a start date",
|
|
48025
48042
|
"select a start month": "Select a start month",
|
|
48026
48043
|
"select a start time": "Select a start time",
|
|
@@ -48060,7 +48077,8 @@
|
|
|
48060
48077
|
"primary navigation": "Navegaci\xF3n primaria",
|
|
48061
48078
|
"search nulogy": "Buscar en Nulogy...",
|
|
48062
48079
|
"secondary navigation": "Navegaci\xF3n secundaria",
|
|
48063
|
-
|
|
48080
|
+
select: "Seleccionar",
|
|
48081
|
+
"start typing": "Empieza a escribir",
|
|
48064
48082
|
"select a start date": "Seleccionar una fecha de inicio",
|
|
48065
48083
|
"select a start month": "Seleccionar como mes de inicio",
|
|
48066
48084
|
"select a start time": "Seleccionar un tiempo de inicio",
|
|
@@ -48100,7 +48118,8 @@
|
|
|
48100
48118
|
"primary navigation": "Navigation principale",
|
|
48101
48119
|
"search nulogy": "Recherche sur Nulogy...",
|
|
48102
48120
|
"secondary navigation": "Navigation secondaire",
|
|
48103
|
-
|
|
48121
|
+
select: "S\xE9lectionner",
|
|
48122
|
+
"start typing": "Commencer \xE0 taper",
|
|
48104
48123
|
"select a start date": "S\xE9lectionner une date de d\xE9but",
|
|
48105
48124
|
"select a start month": "S\xE9lectionnez un mois de d\xE9but",
|
|
48106
48125
|
"select a start time": "S\xE9lectionnez une heure de d\xE9but",
|
|
@@ -48140,7 +48159,8 @@
|
|
|
48140
48159
|
"primary navigation": "Primaire navigatie",
|
|
48141
48160
|
"search nulogy": "Nulogy doorzoeken...",
|
|
48142
48161
|
"secondary navigation": "Secundaire navigatie",
|
|
48143
|
-
|
|
48162
|
+
select: "Selecteren",
|
|
48163
|
+
"start typing": "Beginnen met typen",
|
|
48144
48164
|
"select a start date": "Een startdatum selecteren",
|
|
48145
48165
|
"select a start month": "Een startdatum selecteren",
|
|
48146
48166
|
"select a start time": "Een starttijd selecteren",
|
|
@@ -48180,7 +48200,8 @@
|
|
|
48180
48200
|
"primary navigation": "Nawigacja podstawowa",
|
|
48181
48201
|
"search nulogy": "Przeszukaj Nulogy...",
|
|
48182
48202
|
"secondary navigation": "Nawigacja drugorz\u0119dna",
|
|
48183
|
-
|
|
48203
|
+
select: "Wybierz",
|
|
48204
|
+
"start typing": "Zacznij pisa\u0107",
|
|
48184
48205
|
"select a start date": "Wybierz dat\u0119 rozpocz\u0119cia",
|
|
48185
48206
|
"select a start month": "Wybierz miesi\u0105c rozpocz\u0119cia",
|
|
48186
48207
|
"select a start time": "Wybierz godzin\u0119 rozpocz\u0119cia",
|
|
@@ -48220,7 +48241,8 @@
|
|
|
48220
48241
|
"primary navigation": "Navega\xE7\xE3o prim\xE1ria",
|
|
48221
48242
|
"search nulogy": "Procurar Nulogy...",
|
|
48222
48243
|
"secondary navigation": "Navega\xE7\xE3o secund\xE1ria",
|
|
48223
|
-
|
|
48244
|
+
select: "Selecione",
|
|
48245
|
+
"start typing": "Come\xE7e a digitar",
|
|
48224
48246
|
"select a start date": "Selecione uma data de in\xEDcio",
|
|
48225
48247
|
"select a start month": "Selecione um m\xEAs de in\xEDcio",
|
|
48226
48248
|
"select a start time": "Selecione um hor\xE1rio de in\xEDcio",
|
|
@@ -48260,7 +48282,8 @@
|
|
|
48260
48282
|
"primary navigation": "Navigare primar\u0103",
|
|
48261
48283
|
"search nulogy": "C\u0103utare Nulogy...",
|
|
48262
48284
|
"secondary navigation": "Navigare secundar\u0103",
|
|
48263
|
-
|
|
48285
|
+
select: "Selecta\u021Bi",
|
|
48286
|
+
"start typing": "\xCEncepe s\u0103 tastezi",
|
|
48264
48287
|
"select a start date": "Selectare o dat\u0103 de \xEEnceput",
|
|
48265
48288
|
"select a start month": "Selectare o lun\u0103 de \xEEnceput",
|
|
48266
48289
|
"select a start time": "Selectare o or\u0103 de \xEEnceput",
|
|
@@ -48300,7 +48323,8 @@
|
|
|
48300
48323
|
"primary navigation": "\u4E3B\u5BFC\u822A",
|
|
48301
48324
|
"search nulogy": "\u641C\u7D22 Nulogyy...",
|
|
48302
48325
|
"secondary navigation": "\u8F85\u52A9\u5BFC\u822A",
|
|
48303
|
-
|
|
48326
|
+
select: "\u9009\u62E9",
|
|
48327
|
+
"start typing": "\u5F00\u59CB\u6253\u5B57",
|
|
48304
48328
|
"select a start date": "\u9009\u62E9\u5F00\u59CB\u65E5\u671F",
|
|
48305
48329
|
"select a start month": "\u9009\u62E9\u5F00\u59CB\u6708\u4EFD",
|
|
48306
48330
|
"select a start time": "\u9009\u62E9\u5F00\u59CB\u65F6\u95F4",
|
|
@@ -50022,7 +50046,7 @@
|
|
|
50022
50046
|
quiet: "quiet"
|
|
50023
50047
|
};
|
|
50024
50048
|
|
|
50025
|
-
var
|
|
50049
|
+
var statusIndicatorStyles = function statusIndicatorStyles(theme) {
|
|
50026
50050
|
var _ref;
|
|
50027
50051
|
|
|
50028
50052
|
return _ref = {}, _ref[StatusIndicatorValues.neutral] = {
|
|
@@ -50034,7 +50058,8 @@
|
|
|
50034
50058
|
backgroundColor: theme.colors.blackBlue,
|
|
50035
50059
|
color: theme.colors.white
|
|
50036
50060
|
}, _ref[StatusIndicatorValues.quiet] = {
|
|
50037
|
-
|
|
50061
|
+
border: "1px solid",
|
|
50062
|
+
borderColor: theme.colors.grey,
|
|
50038
50063
|
backgroundColor: theme.colors.white,
|
|
50039
50064
|
color: theme.colors.darkGrey
|
|
50040
50065
|
}, _ref[StatusIndicatorValues.danger] = {
|
|
@@ -50056,10 +50081,6 @@
|
|
|
50056
50081
|
}, _ref;
|
|
50057
50082
|
};
|
|
50058
50083
|
|
|
50059
|
-
var getStatusIndicatorColours = function getStatusIndicatorColours(type, theme) {
|
|
50060
|
-
return StatusIndicatorColours(theme)[type];
|
|
50061
|
-
};
|
|
50062
|
-
|
|
50063
50084
|
var StatusIndicator = styled__default["default"].span.withConfig({
|
|
50064
50085
|
displayName: "StatusIndicator",
|
|
50065
50086
|
componentId: "sc-17eyafq-0"
|
|
@@ -50072,7 +50093,7 @@
|
|
|
50072
50093
|
textTransform: "uppercase",
|
|
50073
50094
|
letterSpacing: ".05em",
|
|
50074
50095
|
borderRadius: theme.space.x1
|
|
50075
|
-
},
|
|
50096
|
+
}, statusIndicatorStyles(theme)[type]);
|
|
50076
50097
|
});
|
|
50077
50098
|
StatusIndicator.defaultProps = {
|
|
50078
50099
|
type: StatusIndicatorValues.neutral,
|
package/dist/main.module.js
CHANGED
|
@@ -8520,79 +8520,87 @@ var Theme = {
|
|
|
8520
8520
|
}
|
|
8521
8521
|
};
|
|
8522
8522
|
|
|
8523
|
-
var
|
|
8524
|
-
|
|
8525
|
-
|
|
8526
|
-
|
|
8527
|
-
|
|
8528
|
-
|
|
8529
|
-
|
|
8530
|
-
|
|
8531
|
-
|
|
8532
|
-
|
|
8533
|
-
|
|
8534
|
-
|
|
8535
|
-
|
|
8536
|
-
|
|
8537
|
-
|
|
8538
|
-
|
|
8539
|
-
|
|
8540
|
-
|
|
8541
|
-
|
|
8542
|
-
|
|
8543
|
-
|
|
8544
|
-
|
|
8545
|
-
|
|
8546
|
-
|
|
8547
|
-
|
|
8548
|
-
|
|
8549
|
-
|
|
8550
|
-
|
|
8551
|
-
|
|
8552
|
-
|
|
8553
|
-
|
|
8554
|
-
|
|
8555
|
-
|
|
8556
|
-
|
|
8557
|
-
|
|
8558
|
-
|
|
8559
|
-
|
|
8560
|
-
|
|
8561
|
-
|
|
8562
|
-
|
|
8563
|
-
|
|
8564
|
-
|
|
8565
|
-
|
|
8566
|
-
|
|
8567
|
-
|
|
8568
|
-
|
|
8569
|
-
|
|
8570
|
-
|
|
8571
|
-
|
|
8572
|
-
|
|
8573
|
-
|
|
8574
|
-
|
|
8575
|
-
|
|
8576
|
-
|
|
8577
|
-
|
|
8578
|
-
|
|
8579
|
-
|
|
8580
|
-
|
|
8581
|
-
|
|
8582
|
-
|
|
8583
|
-
|
|
8584
|
-
|
|
8585
|
-
|
|
8586
|
-
|
|
8587
|
-
|
|
8588
|
-
|
|
8589
|
-
|
|
8590
|
-
|
|
8591
|
-
|
|
8592
|
-
|
|
8593
|
-
|
|
8594
|
-
|
|
8595
|
-
|
|
8523
|
+
var LoadingIcon = function LoadingIcon(props) {
|
|
8524
|
+
return /*#__PURE__*/React__default.createElement("svg", Object.assign({
|
|
8525
|
+
viewBox: "0 0 24px 24px",
|
|
8526
|
+
width: "24px",
|
|
8527
|
+
height: "24px",
|
|
8528
|
+
fill: "none",
|
|
8529
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8530
|
+
preserveAspectRatio: "xMidYMid"
|
|
8531
|
+
}, props), /*#__PURE__*/React__default.createElement("g", null, /*#__PURE__*/React__default.createElement("circle", {
|
|
8532
|
+
cx: "3.5",
|
|
8533
|
+
cy: "12",
|
|
8534
|
+
fill: "#C0C8D1",
|
|
8535
|
+
"transform-origin": "3.5 3.5"
|
|
8536
|
+
}, /*#__PURE__*/React__default.createElement("animate", {
|
|
8537
|
+
attributeName: "r",
|
|
8538
|
+
values: "3;3;3.5;3",
|
|
8539
|
+
keySplines: "\n 0.1 0.8 0.2 1;\n 0.1 0.8 0.2 1;\n 0.1 0.8 0.2 1;",
|
|
8540
|
+
keyTimes: "0; 0.25;0.4; 1",
|
|
8541
|
+
calcMode: "spline",
|
|
8542
|
+
dur: "0.8s",
|
|
8543
|
+
repeatCount: "indefinite"
|
|
8544
|
+
}), /*#__PURE__*/React__default.createElement("animate", {
|
|
8545
|
+
id: "first",
|
|
8546
|
+
attributeName: "fill",
|
|
8547
|
+
values: "#C0C8D1;#C0C8D1;#434D59;#C0C8D1",
|
|
8548
|
+
keySplines: "\n 0.1 0.8 0.2 1;\n 0.1 0.8 0.2 1;\n 0.1 0.8 0.2 1;",
|
|
8549
|
+
keyTimes: "0; 0.25;0.4; 1",
|
|
8550
|
+
calcMode: "spline",
|
|
8551
|
+
dur: "0.8s",
|
|
8552
|
+
repeatCount: "indefinite"
|
|
8553
|
+
})), /*#__PURE__*/React__default.createElement("circle", {
|
|
8554
|
+
cx: "12",
|
|
8555
|
+
cy: "12",
|
|
8556
|
+
r: "3",
|
|
8557
|
+
fill: "#C0C8D1",
|
|
8558
|
+
"transform-origin": "12 3.5"
|
|
8559
|
+
}, /*#__PURE__*/React__default.createElement("animate", {
|
|
8560
|
+
attributeName: "r",
|
|
8561
|
+
begin: "0.2s; first.begin",
|
|
8562
|
+
values: "3;3;3.5;3",
|
|
8563
|
+
keySplines: "\n 0.1 0.8 0.2 1;\n 0.1 0.8 0.2 1;\n 0.1 0.8 0.2 1;",
|
|
8564
|
+
keyTimes: "0; 0.25;0.4; 1",
|
|
8565
|
+
calcMode: "spline",
|
|
8566
|
+
dur: "0.8s",
|
|
8567
|
+
repeatCount: "indefinite"
|
|
8568
|
+
}), /*#__PURE__*/React__default.createElement("animate", {
|
|
8569
|
+
id: "second",
|
|
8570
|
+
attributeName: "fill",
|
|
8571
|
+
begin: "0.2s; first.begin",
|
|
8572
|
+
values: "#C0C8D1;#C0C8D1;#434D59;#C0C8D1",
|
|
8573
|
+
keySplines: "\n 0.1 0.8 0.2 1;\n 0.1 0.8 0.2 1;\n 0.1 0.8 0.2 1;",
|
|
8574
|
+
keyTimes: "0; 0.25;0.4; 1",
|
|
8575
|
+
calcMode: "spline",
|
|
8576
|
+
dur: "0.8s",
|
|
8577
|
+
repeatCount: "indefinite"
|
|
8578
|
+
})), /*#__PURE__*/React__default.createElement("circle", {
|
|
8579
|
+
cx: "20.5",
|
|
8580
|
+
cy: "12",
|
|
8581
|
+
r: "3",
|
|
8582
|
+
fill: "#C0C8D1",
|
|
8583
|
+
"transform-origin": "20.5 3.5"
|
|
8584
|
+
}, /*#__PURE__*/React__default.createElement("animate", {
|
|
8585
|
+
attributeName: "r",
|
|
8586
|
+
begin: "0.3s; first.begin",
|
|
8587
|
+
values: "3;3;3.5;3",
|
|
8588
|
+
keySplines: "\n 0.1 0.8 0.2 1;\n 0.1 0.8 0.2 1;\n 0.1 0.8 0.2 1;",
|
|
8589
|
+
keyTimes: "0; 0.25;0.4; 1",
|
|
8590
|
+
calcMode: "spline",
|
|
8591
|
+
dur: "0.8s",
|
|
8592
|
+
repeatCount: "indefinite"
|
|
8593
|
+
}), /*#__PURE__*/React__default.createElement("animate", {
|
|
8594
|
+
id: "third",
|
|
8595
|
+
attributeName: "fill",
|
|
8596
|
+
begin: "0.3s; first.begin",
|
|
8597
|
+
values: "#C0C8D1;#C0C8D1;#434D59;#C0C8D1",
|
|
8598
|
+
keySplines: "\n .24 .1 .35 .8;\n .24 .1 .35 .8;\n 0.1 0.8 0.2 1",
|
|
8599
|
+
keyTimes: "0; 0.25;0.4; 1",
|
|
8600
|
+
calcMode: "spline",
|
|
8601
|
+
dur: "0.8s",
|
|
8602
|
+
repeatCount: "indefinite"
|
|
8603
|
+
}))));
|
|
8596
8604
|
};
|
|
8597
8605
|
|
|
8598
8606
|
/* eslint-disable react/no-array-index-key */
|
|
@@ -8623,7 +8631,6 @@ var Svg$1 = /*#__PURE__*/React__default.forwardRef(function (_a, ref) {
|
|
|
8623
8631
|
if (icon === "loading") {
|
|
8624
8632
|
return /*#__PURE__*/React__default.createElement(LoadingIcon, Object.assign({
|
|
8625
8633
|
color: Theme.colors[fillColor] ? Theme.colors[fillColor] : fillColor,
|
|
8626
|
-
size: space[size] || size,
|
|
8627
8634
|
className: className
|
|
8628
8635
|
}, props));
|
|
8629
8636
|
}
|
|
@@ -17610,6 +17617,14 @@ var subPx = function subPx(val1, val2) {
|
|
|
17610
17617
|
return parseInt(val1.replace("px", ""), 10) - parseInt(val2Str.replace("px", ""), 10) + "px";
|
|
17611
17618
|
};
|
|
17612
17619
|
|
|
17620
|
+
var prefix = "random-id-";
|
|
17621
|
+
var randomId = 0;
|
|
17622
|
+
|
|
17623
|
+
var generateId = function generateId() {
|
|
17624
|
+
randomId += 1;
|
|
17625
|
+
return prefix + randomId;
|
|
17626
|
+
};
|
|
17627
|
+
|
|
17613
17628
|
var WindowDimensions = /*#__PURE__*/function (_React$Component) {
|
|
17614
17629
|
_inheritsLoose$2(WindowDimensions, _React$Component);
|
|
17615
17630
|
|
|
@@ -18631,7 +18646,7 @@ var ReactSelect = /*#__PURE__*/React__default.forwardRef(function (_a, ref) {
|
|
|
18631
18646
|
}, /*#__PURE__*/React__default.createElement(WindowedSelect, Object.assign({
|
|
18632
18647
|
size: componentSize,
|
|
18633
18648
|
ref: reactSelectRef,
|
|
18634
|
-
placeholder: placeholder || t("select
|
|
18649
|
+
placeholder: placeholder || t("select"),
|
|
18635
18650
|
windowThreshold: windowThreshold,
|
|
18636
18651
|
styles: customStyles({
|
|
18637
18652
|
theme: themeContext,
|
|
@@ -18782,7 +18797,7 @@ var AsyncSelect = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
18782
18797
|
value: value,
|
|
18783
18798
|
ref: ref,
|
|
18784
18799
|
defaultInputValue: defaultValue,
|
|
18785
|
-
placeholder: placeholder || t("
|
|
18800
|
+
placeholder: placeholder || t("start typing"),
|
|
18786
18801
|
labelText: labelText,
|
|
18787
18802
|
styles: customStyles({
|
|
18788
18803
|
theme: themeContext,
|
|
@@ -47957,7 +47972,8 @@ var de_DE = {
|
|
|
47957
47972
|
"primary navigation": "Prim\xE4re Navigation",
|
|
47958
47973
|
"search nulogy": "Nulogy suchen...",
|
|
47959
47974
|
"secondary navigation": "Sekund\xE4re Navigation",
|
|
47960
|
-
|
|
47975
|
+
select: "W\xE4hlen",
|
|
47976
|
+
"start typing": "Anfangen zu tippen",
|
|
47961
47977
|
"select a start date": "Ein Startdatum w\xE4hlen",
|
|
47962
47978
|
"select a start month": "Einen Startmonat w\xE4hlen",
|
|
47963
47979
|
"select a start time": "Eine Startzeit w\xE4hlen",
|
|
@@ -47997,7 +48013,8 @@ var en_US = {
|
|
|
47997
48013
|
"primary navigation": "Primary navigation",
|
|
47998
48014
|
"search nulogy": "Search Nulogy...",
|
|
47999
48015
|
"secondary navigation": "Secondary navigation",
|
|
48000
|
-
|
|
48016
|
+
select: "Select",
|
|
48017
|
+
"start typing": "Start typing",
|
|
48001
48018
|
"select a start date": "Select a start date",
|
|
48002
48019
|
"select a start month": "Select a start month",
|
|
48003
48020
|
"select a start time": "Select a start time",
|
|
@@ -48037,7 +48054,8 @@ var es_MX = {
|
|
|
48037
48054
|
"primary navigation": "Navegaci\xF3n primaria",
|
|
48038
48055
|
"search nulogy": "Buscar en Nulogy...",
|
|
48039
48056
|
"secondary navigation": "Navegaci\xF3n secundaria",
|
|
48040
|
-
|
|
48057
|
+
select: "Seleccionar",
|
|
48058
|
+
"start typing": "Empieza a escribir",
|
|
48041
48059
|
"select a start date": "Seleccionar una fecha de inicio",
|
|
48042
48060
|
"select a start month": "Seleccionar como mes de inicio",
|
|
48043
48061
|
"select a start time": "Seleccionar un tiempo de inicio",
|
|
@@ -48077,7 +48095,8 @@ var fr_FR = {
|
|
|
48077
48095
|
"primary navigation": "Navigation principale",
|
|
48078
48096
|
"search nulogy": "Recherche sur Nulogy...",
|
|
48079
48097
|
"secondary navigation": "Navigation secondaire",
|
|
48080
|
-
|
|
48098
|
+
select: "S\xE9lectionner",
|
|
48099
|
+
"start typing": "Commencer \xE0 taper",
|
|
48081
48100
|
"select a start date": "S\xE9lectionner une date de d\xE9but",
|
|
48082
48101
|
"select a start month": "S\xE9lectionnez un mois de d\xE9but",
|
|
48083
48102
|
"select a start time": "S\xE9lectionnez une heure de d\xE9but",
|
|
@@ -48117,7 +48136,8 @@ var nl_NL = {
|
|
|
48117
48136
|
"primary navigation": "Primaire navigatie",
|
|
48118
48137
|
"search nulogy": "Nulogy doorzoeken...",
|
|
48119
48138
|
"secondary navigation": "Secundaire navigatie",
|
|
48120
|
-
|
|
48139
|
+
select: "Selecteren",
|
|
48140
|
+
"start typing": "Beginnen met typen",
|
|
48121
48141
|
"select a start date": "Een startdatum selecteren",
|
|
48122
48142
|
"select a start month": "Een startdatum selecteren",
|
|
48123
48143
|
"select a start time": "Een starttijd selecteren",
|
|
@@ -48157,7 +48177,8 @@ var pl_PL = {
|
|
|
48157
48177
|
"primary navigation": "Nawigacja podstawowa",
|
|
48158
48178
|
"search nulogy": "Przeszukaj Nulogy...",
|
|
48159
48179
|
"secondary navigation": "Nawigacja drugorz\u0119dna",
|
|
48160
|
-
|
|
48180
|
+
select: "Wybierz",
|
|
48181
|
+
"start typing": "Zacznij pisa\u0107",
|
|
48161
48182
|
"select a start date": "Wybierz dat\u0119 rozpocz\u0119cia",
|
|
48162
48183
|
"select a start month": "Wybierz miesi\u0105c rozpocz\u0119cia",
|
|
48163
48184
|
"select a start time": "Wybierz godzin\u0119 rozpocz\u0119cia",
|
|
@@ -48197,7 +48218,8 @@ var pt_BR = {
|
|
|
48197
48218
|
"primary navigation": "Navega\xE7\xE3o prim\xE1ria",
|
|
48198
48219
|
"search nulogy": "Procurar Nulogy...",
|
|
48199
48220
|
"secondary navigation": "Navega\xE7\xE3o secund\xE1ria",
|
|
48200
|
-
|
|
48221
|
+
select: "Selecione",
|
|
48222
|
+
"start typing": "Come\xE7e a digitar",
|
|
48201
48223
|
"select a start date": "Selecione uma data de in\xEDcio",
|
|
48202
48224
|
"select a start month": "Selecione um m\xEAs de in\xEDcio",
|
|
48203
48225
|
"select a start time": "Selecione um hor\xE1rio de in\xEDcio",
|
|
@@ -48237,7 +48259,8 @@ var ro_RO = {
|
|
|
48237
48259
|
"primary navigation": "Navigare primar\u0103",
|
|
48238
48260
|
"search nulogy": "C\u0103utare Nulogy...",
|
|
48239
48261
|
"secondary navigation": "Navigare secundar\u0103",
|
|
48240
|
-
|
|
48262
|
+
select: "Selecta\u021Bi",
|
|
48263
|
+
"start typing": "\xCEncepe s\u0103 tastezi",
|
|
48241
48264
|
"select a start date": "Selectare o dat\u0103 de \xEEnceput",
|
|
48242
48265
|
"select a start month": "Selectare o lun\u0103 de \xEEnceput",
|
|
48243
48266
|
"select a start time": "Selectare o or\u0103 de \xEEnceput",
|
|
@@ -48277,7 +48300,8 @@ var zh_CN = {
|
|
|
48277
48300
|
"primary navigation": "\u4E3B\u5BFC\u822A",
|
|
48278
48301
|
"search nulogy": "\u641C\u7D22 Nulogyy...",
|
|
48279
48302
|
"secondary navigation": "\u8F85\u52A9\u5BFC\u822A",
|
|
48280
|
-
|
|
48303
|
+
select: "\u9009\u62E9",
|
|
48304
|
+
"start typing": "\u5F00\u59CB\u6253\u5B57",
|
|
48281
48305
|
"select a start date": "\u9009\u62E9\u5F00\u59CB\u65E5\u671F",
|
|
48282
48306
|
"select a start month": "\u9009\u62E9\u5F00\u59CB\u6708\u4EFD",
|
|
48283
48307
|
"select a start time": "\u9009\u62E9\u5F00\u59CB\u65F6\u95F4",
|
|
@@ -49999,7 +50023,7 @@ var StatusIndicatorValues = {
|
|
|
49999
50023
|
quiet: "quiet"
|
|
50000
50024
|
};
|
|
50001
50025
|
|
|
50002
|
-
var
|
|
50026
|
+
var statusIndicatorStyles = function statusIndicatorStyles(theme) {
|
|
50003
50027
|
var _ref;
|
|
50004
50028
|
|
|
50005
50029
|
return _ref = {}, _ref[StatusIndicatorValues.neutral] = {
|
|
@@ -50011,7 +50035,8 @@ var StatusIndicatorColours = function StatusIndicatorColours(theme) {
|
|
|
50011
50035
|
backgroundColor: theme.colors.blackBlue,
|
|
50012
50036
|
color: theme.colors.white
|
|
50013
50037
|
}, _ref[StatusIndicatorValues.quiet] = {
|
|
50014
|
-
|
|
50038
|
+
border: "1px solid",
|
|
50039
|
+
borderColor: theme.colors.grey,
|
|
50015
50040
|
backgroundColor: theme.colors.white,
|
|
50016
50041
|
color: theme.colors.darkGrey
|
|
50017
50042
|
}, _ref[StatusIndicatorValues.danger] = {
|
|
@@ -50033,10 +50058,6 @@ var StatusIndicatorColours = function StatusIndicatorColours(theme) {
|
|
|
50033
50058
|
}, _ref;
|
|
50034
50059
|
};
|
|
50035
50060
|
|
|
50036
|
-
var getStatusIndicatorColours = function getStatusIndicatorColours(type, theme) {
|
|
50037
|
-
return StatusIndicatorColours(theme)[type];
|
|
50038
|
-
};
|
|
50039
|
-
|
|
50040
50061
|
var StatusIndicator = styled.span.withConfig({
|
|
50041
50062
|
displayName: "StatusIndicator",
|
|
50042
50063
|
componentId: "sc-17eyafq-0"
|
|
@@ -50049,7 +50070,7 @@ var StatusIndicator = styled.span.withConfig({
|
|
|
50049
50070
|
textTransform: "uppercase",
|
|
50050
50071
|
letterSpacing: ".05em",
|
|
50051
50072
|
borderRadius: theme.space.x1
|
|
50052
|
-
},
|
|
50073
|
+
}, statusIndicatorStyles(theme)[type]);
|
|
50053
50074
|
});
|
|
50054
50075
|
StatusIndicator.defaultProps = {
|
|
50055
50076
|
type: StatusIndicatorValues.neutral,
|
|
@@ -1,9 +1,4 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
type LoadingIconProps =
|
|
3
|
-
size?: string | number;
|
|
4
|
-
color?: string;
|
|
5
|
-
title?: string;
|
|
6
|
-
className?: string;
|
|
7
|
-
};
|
|
2
|
+
type LoadingIconProps = React.ComponentPropsWithoutRef<"svg">;
|
|
8
3
|
declare const LoadingIcon: React.FC<LoadingIconProps>;
|
|
9
4
|
export default LoadingIcon;
|