impact-ui 3.7.16-alpha.2 → 3.7.16-alpha.3
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/package.json
CHANGED
|
@@ -138,13 +138,7 @@ const Input = (args) => {
|
|
|
138
138
|
<InputWrapper
|
|
139
139
|
{...args}
|
|
140
140
|
value={value}
|
|
141
|
-
onChange={(e) =>
|
|
142
|
-
// console.log("inoput", e.target.value)
|
|
143
|
-
if(e.target.value.length <= 150)setValue(e.target.value);
|
|
144
|
-
else {
|
|
145
|
-
console.log("wertgertre")
|
|
146
|
-
}
|
|
147
|
-
}}
|
|
141
|
+
onChange={(e) => setValue(e.target.value)}
|
|
148
142
|
/>
|
|
149
143
|
);
|
|
150
144
|
};
|
|
@@ -156,7 +150,7 @@ Default.args = {
|
|
|
156
150
|
id: "",
|
|
157
151
|
name: "",
|
|
158
152
|
label: "Enter text here",
|
|
159
|
-
helperText: "
|
|
153
|
+
helperText: "helper text",
|
|
160
154
|
isHelperText: true,
|
|
161
155
|
focusedText: "focus text",
|
|
162
156
|
placeholder: "Please enter text",
|
|
@@ -447,9 +447,8 @@ Default.args = {
|
|
|
447
447
|
name: "name",
|
|
448
448
|
placeholder: "select..",
|
|
449
449
|
labelOrientation: "top",
|
|
450
|
-
customPlaceholderAfterSelect: "Custom Placeholder After Select",
|
|
451
450
|
isRequired: true,
|
|
452
|
-
isMulti:
|
|
451
|
+
isMulti: false,
|
|
453
452
|
isDisabled: false,
|
|
454
453
|
isLoading: false,
|
|
455
454
|
isWithIcon: false,
|
|
@@ -1472,9 +1472,6 @@ export const Paginated = {
|
|
|
1472
1472
|
export const ColumnGroup = {
|
|
1473
1473
|
args: {
|
|
1474
1474
|
rowData: carsData,
|
|
1475
|
-
defaultColDef: {
|
|
1476
|
-
sortable: true,
|
|
1477
|
-
},
|
|
1478
1475
|
columnDefs: [
|
|
1479
1476
|
{
|
|
1480
1477
|
field: "athlete",
|
|
@@ -1504,7 +1501,6 @@ export const ColumnGroup = {
|
|
|
1504
1501
|
{
|
|
1505
1502
|
columnGroupShow: "open",
|
|
1506
1503
|
field: "make",
|
|
1507
|
-
sortable: true,
|
|
1508
1504
|
},
|
|
1509
1505
|
{
|
|
1510
1506
|
columnGroupShow: "open",
|
|
@@ -1512,20 +1508,15 @@ export const ColumnGroup = {
|
|
|
1512
1508
|
},
|
|
1513
1509
|
{
|
|
1514
1510
|
field: "price",
|
|
1515
|
-
columnGroupShow: "open",
|
|
1516
1511
|
},
|
|
1517
1512
|
{
|
|
1518
1513
|
field: "year",
|
|
1519
|
-
columnGroupShow: "open",
|
|
1520
1514
|
},
|
|
1521
1515
|
{
|
|
1522
1516
|
field: "date",
|
|
1523
|
-
columnGroupShow: "open",
|
|
1524
1517
|
},
|
|
1525
1518
|
{
|
|
1526
1519
|
field: "sport",
|
|
1527
|
-
columnGroupShow: "open",
|
|
1528
|
-
sortable: true,
|
|
1529
1520
|
},
|
|
1530
1521
|
{
|
|
1531
1522
|
field: "gold",
|