@sproutsocial/racine 25.4.0 → 25.6.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 +58 -0
- package/commonjs/index.js +63 -63
- package/dist/dynamicProps.json +1 -1
- package/dist/types/Menu/MenuTypes.d.ts +1 -1
- package/dist/types/Menu/MenuTypes.d.ts.map +1 -1
- package/dist/types/index.d.ts +18 -18
- package/dist/types/index.d.ts.map +1 -1
- package/lib/index.js +18 -18
- package/package.json +16 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,63 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 25.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 227f3b2: Migrate Indicator from Racine to seeds-react-indicator
|
|
8
|
+
- 235f60d: Migrate Modal to its own seeds-react-modal component
|
|
9
|
+
- d480e33: Migrated SegmentedControl to its own seeds-react-segmented-control
|
|
10
|
+
- 4a52cff: Migrate Numeral and Tooltip components to their own seeds-react component
|
|
11
|
+
- 05f7968: Migrate Select component to seeds-react-select
|
|
12
|
+
- 2a261d7: Migrate Table component to its own seeds-react-table package
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [2001fe7]
|
|
17
|
+
- Updated dependencies [227f3b2]
|
|
18
|
+
- Updated dependencies [235f60d]
|
|
19
|
+
- Updated dependencies [d480e33]
|
|
20
|
+
- Updated dependencies [4a52cff]
|
|
21
|
+
- Updated dependencies [05f7968]
|
|
22
|
+
- Updated dependencies [2a261d7]
|
|
23
|
+
- @sproutsocial/seeds-icons@1.14.0
|
|
24
|
+
- @sproutsocial/seeds-react-indicator@1.0.0
|
|
25
|
+
- @sproutsocial/seeds-react-modal@1.0.0
|
|
26
|
+
- @sproutsocial/seeds-react-segmented-control@1.0.0
|
|
27
|
+
- @sproutsocial/seeds-react-numeral@1.0.0
|
|
28
|
+
- @sproutsocial/seeds-react-tooltip@1.0.0
|
|
29
|
+
- @sproutsocial/seeds-react-select@1.0.0
|
|
30
|
+
- @sproutsocial/seeds-react-table@1.0.0
|
|
31
|
+
|
|
32
|
+
## 25.5.0
|
|
33
|
+
|
|
34
|
+
### Minor Changes
|
|
35
|
+
|
|
36
|
+
- cf814f5: Migrate LoaderButton to its own seeds-react-loader-button package
|
|
37
|
+
- 8ca97dd: Migrated FormField, Fieldset, and Label to their own seeds-react component
|
|
38
|
+
- 423a10a: Migrated KeyboardKey from Racine to seeds-react-keyboard-key
|
|
39
|
+
- b812940: Migrated Duration from Racine to seeds-react-duration
|
|
40
|
+
- 69ed5b1: Migrated EmptyState from Racine to seeds-react-empty-state
|
|
41
|
+
|
|
42
|
+
### Patch Changes
|
|
43
|
+
|
|
44
|
+
- f985353: Migrated Loader from Racine to seeds-react-loader
|
|
45
|
+
- 32c96ca: Fix `onClick` prop type for `Menu.Item`
|
|
46
|
+
- Updated dependencies [cf814f5]
|
|
47
|
+
- Updated dependencies [f985353]
|
|
48
|
+
- Updated dependencies [8ca97dd]
|
|
49
|
+
- Updated dependencies [423a10a]
|
|
50
|
+
- Updated dependencies [b812940]
|
|
51
|
+
- Updated dependencies [69ed5b1]
|
|
52
|
+
- @sproutsocial/seeds-react-loader-button@1.0.0
|
|
53
|
+
- @sproutsocial/seeds-react-loader@1.0.0
|
|
54
|
+
- @sproutsocial/seeds-react-form-field@1.0.0
|
|
55
|
+
- @sproutsocial/seeds-react-fieldset@1.0.0
|
|
56
|
+
- @sproutsocial/seeds-react-label@1.0.0
|
|
57
|
+
- @sproutsocial/seeds-react-keyboard-key@1.0.0
|
|
58
|
+
- @sproutsocial/seeds-react-duration@1.0.0
|
|
59
|
+
- @sproutsocial/seeds-react-empty-state@1.0.0
|
|
60
|
+
|
|
3
61
|
## 25.4.0
|
|
4
62
|
|
|
5
63
|
### Minor Changes
|
package/commonjs/index.js
CHANGED
|
@@ -264,51 +264,51 @@ Object.keys(_seedsReactDrawer).forEach(function (key) {
|
|
|
264
264
|
}
|
|
265
265
|
});
|
|
266
266
|
});
|
|
267
|
-
var
|
|
268
|
-
Object.keys(
|
|
267
|
+
var _seedsReactDuration = require("@sproutsocial/seeds-react-duration");
|
|
268
|
+
Object.keys(_seedsReactDuration).forEach(function (key) {
|
|
269
269
|
if (key === "default" || key === "__esModule") return;
|
|
270
270
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
271
|
-
if (key in exports && exports[key] ===
|
|
271
|
+
if (key in exports && exports[key] === _seedsReactDuration[key]) return;
|
|
272
272
|
Object.defineProperty(exports, key, {
|
|
273
273
|
enumerable: true,
|
|
274
274
|
get: function get() {
|
|
275
|
-
return
|
|
275
|
+
return _seedsReactDuration[key];
|
|
276
276
|
}
|
|
277
277
|
});
|
|
278
278
|
});
|
|
279
|
-
var
|
|
280
|
-
Object.keys(
|
|
279
|
+
var _seedsReactEmptyState = require("@sproutsocial/seeds-react-empty-state");
|
|
280
|
+
Object.keys(_seedsReactEmptyState).forEach(function (key) {
|
|
281
281
|
if (key === "default" || key === "__esModule") return;
|
|
282
282
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
283
|
-
if (key in exports && exports[key] ===
|
|
283
|
+
if (key in exports && exports[key] === _seedsReactEmptyState[key]) return;
|
|
284
284
|
Object.defineProperty(exports, key, {
|
|
285
285
|
enumerable: true,
|
|
286
286
|
get: function get() {
|
|
287
|
-
return
|
|
287
|
+
return _seedsReactEmptyState[key];
|
|
288
288
|
}
|
|
289
289
|
});
|
|
290
290
|
});
|
|
291
|
-
var
|
|
292
|
-
Object.keys(
|
|
291
|
+
var _seedsReactFieldset = require("@sproutsocial/seeds-react-fieldset");
|
|
292
|
+
Object.keys(_seedsReactFieldset).forEach(function (key) {
|
|
293
293
|
if (key === "default" || key === "__esModule") return;
|
|
294
294
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
295
|
-
if (key in exports && exports[key] ===
|
|
295
|
+
if (key in exports && exports[key] === _seedsReactFieldset[key]) return;
|
|
296
296
|
Object.defineProperty(exports, key, {
|
|
297
297
|
enumerable: true,
|
|
298
298
|
get: function get() {
|
|
299
|
-
return
|
|
299
|
+
return _seedsReactFieldset[key];
|
|
300
300
|
}
|
|
301
301
|
});
|
|
302
302
|
});
|
|
303
|
-
var
|
|
304
|
-
Object.keys(
|
|
303
|
+
var _seedsReactFormField = require("@sproutsocial/seeds-react-form-field");
|
|
304
|
+
Object.keys(_seedsReactFormField).forEach(function (key) {
|
|
305
305
|
if (key === "default" || key === "__esModule") return;
|
|
306
306
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
307
|
-
if (key in exports && exports[key] ===
|
|
307
|
+
if (key in exports && exports[key] === _seedsReactFormField[key]) return;
|
|
308
308
|
Object.defineProperty(exports, key, {
|
|
309
309
|
enumerable: true,
|
|
310
310
|
get: function get() {
|
|
311
|
-
return
|
|
311
|
+
return _seedsReactFormField[key];
|
|
312
312
|
}
|
|
313
313
|
});
|
|
314
314
|
});
|
|
@@ -336,15 +336,15 @@ Object.keys(_seedsReactImage).forEach(function (key) {
|
|
|
336
336
|
}
|
|
337
337
|
});
|
|
338
338
|
});
|
|
339
|
-
var
|
|
340
|
-
Object.keys(
|
|
339
|
+
var _seedsReactIndicator = require("@sproutsocial/seeds-react-indicator");
|
|
340
|
+
Object.keys(_seedsReactIndicator).forEach(function (key) {
|
|
341
341
|
if (key === "default" || key === "__esModule") return;
|
|
342
342
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
343
|
-
if (key in exports && exports[key] ===
|
|
343
|
+
if (key in exports && exports[key] === _seedsReactIndicator[key]) return;
|
|
344
344
|
Object.defineProperty(exports, key, {
|
|
345
345
|
enumerable: true,
|
|
346
346
|
get: function get() {
|
|
347
|
-
return
|
|
347
|
+
return _seedsReactIndicator[key];
|
|
348
348
|
}
|
|
349
349
|
});
|
|
350
350
|
});
|
|
@@ -360,27 +360,27 @@ Object.keys(_seedsReactInput).forEach(function (key) {
|
|
|
360
360
|
}
|
|
361
361
|
});
|
|
362
362
|
});
|
|
363
|
-
var
|
|
364
|
-
Object.keys(
|
|
363
|
+
var _seedsReactKeyboardKey = require("@sproutsocial/seeds-react-keyboard-key");
|
|
364
|
+
Object.keys(_seedsReactKeyboardKey).forEach(function (key) {
|
|
365
365
|
if (key === "default" || key === "__esModule") return;
|
|
366
366
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
367
|
-
if (key in exports && exports[key] ===
|
|
367
|
+
if (key in exports && exports[key] === _seedsReactKeyboardKey[key]) return;
|
|
368
368
|
Object.defineProperty(exports, key, {
|
|
369
369
|
enumerable: true,
|
|
370
370
|
get: function get() {
|
|
371
|
-
return
|
|
371
|
+
return _seedsReactKeyboardKey[key];
|
|
372
372
|
}
|
|
373
373
|
});
|
|
374
374
|
});
|
|
375
|
-
var
|
|
376
|
-
Object.keys(
|
|
375
|
+
var _seedsReactLabel = require("@sproutsocial/seeds-react-label");
|
|
376
|
+
Object.keys(_seedsReactLabel).forEach(function (key) {
|
|
377
377
|
if (key === "default" || key === "__esModule") return;
|
|
378
378
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
379
|
-
if (key in exports && exports[key] ===
|
|
379
|
+
if (key in exports && exports[key] === _seedsReactLabel[key]) return;
|
|
380
380
|
Object.defineProperty(exports, key, {
|
|
381
381
|
enumerable: true,
|
|
382
382
|
get: function get() {
|
|
383
|
-
return
|
|
383
|
+
return _seedsReactLabel[key];
|
|
384
384
|
}
|
|
385
385
|
});
|
|
386
386
|
});
|
|
@@ -408,27 +408,27 @@ Object.keys(_Listbox).forEach(function (key) {
|
|
|
408
408
|
}
|
|
409
409
|
});
|
|
410
410
|
});
|
|
411
|
-
var
|
|
412
|
-
Object.keys(
|
|
411
|
+
var _seedsReactLoader = require("@sproutsocial/seeds-react-loader");
|
|
412
|
+
Object.keys(_seedsReactLoader).forEach(function (key) {
|
|
413
413
|
if (key === "default" || key === "__esModule") return;
|
|
414
414
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
415
|
-
if (key in exports && exports[key] ===
|
|
415
|
+
if (key in exports && exports[key] === _seedsReactLoader[key]) return;
|
|
416
416
|
Object.defineProperty(exports, key, {
|
|
417
417
|
enumerable: true,
|
|
418
418
|
get: function get() {
|
|
419
|
-
return
|
|
419
|
+
return _seedsReactLoader[key];
|
|
420
420
|
}
|
|
421
421
|
});
|
|
422
422
|
});
|
|
423
|
-
var
|
|
424
|
-
Object.keys(
|
|
423
|
+
var _seedsReactLoaderButton = require("@sproutsocial/seeds-react-loader-button");
|
|
424
|
+
Object.keys(_seedsReactLoaderButton).forEach(function (key) {
|
|
425
425
|
if (key === "default" || key === "__esModule") return;
|
|
426
426
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
427
|
-
if (key in exports && exports[key] ===
|
|
427
|
+
if (key in exports && exports[key] === _seedsReactLoaderButton[key]) return;
|
|
428
428
|
Object.defineProperty(exports, key, {
|
|
429
429
|
enumerable: true,
|
|
430
430
|
get: function get() {
|
|
431
|
-
return
|
|
431
|
+
return _seedsReactLoaderButton[key];
|
|
432
432
|
}
|
|
433
433
|
});
|
|
434
434
|
});
|
|
@@ -456,27 +456,27 @@ Object.keys(_Message).forEach(function (key) {
|
|
|
456
456
|
}
|
|
457
457
|
});
|
|
458
458
|
});
|
|
459
|
-
var
|
|
460
|
-
Object.keys(
|
|
459
|
+
var _seedsReactModal = require("@sproutsocial/seeds-react-modal");
|
|
460
|
+
Object.keys(_seedsReactModal).forEach(function (key) {
|
|
461
461
|
if (key === "default" || key === "__esModule") return;
|
|
462
462
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
463
|
-
if (key in exports && exports[key] ===
|
|
463
|
+
if (key in exports && exports[key] === _seedsReactModal[key]) return;
|
|
464
464
|
Object.defineProperty(exports, key, {
|
|
465
465
|
enumerable: true,
|
|
466
466
|
get: function get() {
|
|
467
|
-
return
|
|
467
|
+
return _seedsReactModal[key];
|
|
468
468
|
}
|
|
469
469
|
});
|
|
470
470
|
});
|
|
471
|
-
var
|
|
472
|
-
Object.keys(
|
|
471
|
+
var _seedsReactNumeral = require("@sproutsocial/seeds-react-numeral");
|
|
472
|
+
Object.keys(_seedsReactNumeral).forEach(function (key) {
|
|
473
473
|
if (key === "default" || key === "__esModule") return;
|
|
474
474
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
475
|
-
if (key in exports && exports[key] ===
|
|
475
|
+
if (key in exports && exports[key] === _seedsReactNumeral[key]) return;
|
|
476
476
|
Object.defineProperty(exports, key, {
|
|
477
477
|
enumerable: true,
|
|
478
478
|
get: function get() {
|
|
479
|
-
return
|
|
479
|
+
return _seedsReactNumeral[key];
|
|
480
480
|
}
|
|
481
481
|
});
|
|
482
482
|
});
|
|
@@ -528,27 +528,27 @@ Object.keys(_seedsReactRadio).forEach(function (key) {
|
|
|
528
528
|
}
|
|
529
529
|
});
|
|
530
530
|
});
|
|
531
|
-
var
|
|
532
|
-
Object.keys(
|
|
531
|
+
var _seedsReactSegmentedControl = require("@sproutsocial/seeds-react-segmented-control");
|
|
532
|
+
Object.keys(_seedsReactSegmentedControl).forEach(function (key) {
|
|
533
533
|
if (key === "default" || key === "__esModule") return;
|
|
534
534
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
535
|
-
if (key in exports && exports[key] ===
|
|
535
|
+
if (key in exports && exports[key] === _seedsReactSegmentedControl[key]) return;
|
|
536
536
|
Object.defineProperty(exports, key, {
|
|
537
537
|
enumerable: true,
|
|
538
538
|
get: function get() {
|
|
539
|
-
return
|
|
539
|
+
return _seedsReactSegmentedControl[key];
|
|
540
540
|
}
|
|
541
541
|
});
|
|
542
542
|
});
|
|
543
|
-
var
|
|
544
|
-
Object.keys(
|
|
543
|
+
var _seedsReactSelect = require("@sproutsocial/seeds-react-select");
|
|
544
|
+
Object.keys(_seedsReactSelect).forEach(function (key) {
|
|
545
545
|
if (key === "default" || key === "__esModule") return;
|
|
546
546
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
547
|
-
if (key in exports && exports[key] ===
|
|
547
|
+
if (key in exports && exports[key] === _seedsReactSelect[key]) return;
|
|
548
548
|
Object.defineProperty(exports, key, {
|
|
549
549
|
enumerable: true,
|
|
550
550
|
get: function get() {
|
|
551
|
-
return
|
|
551
|
+
return _seedsReactSelect[key];
|
|
552
552
|
}
|
|
553
553
|
});
|
|
554
554
|
});
|
|
@@ -600,19 +600,19 @@ Object.keys(_seedsReactSwitch).forEach(function (key) {
|
|
|
600
600
|
}
|
|
601
601
|
});
|
|
602
602
|
});
|
|
603
|
-
var
|
|
604
|
-
Object.keys(
|
|
603
|
+
var _seedsReactTable = require("@sproutsocial/seeds-react-table");
|
|
604
|
+
Object.keys(_seedsReactTable).forEach(function (key) {
|
|
605
605
|
if (key === "default" || key === "__esModule") return;
|
|
606
606
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
607
|
-
if (key in exports && exports[key] ===
|
|
607
|
+
if (key in exports && exports[key] === _seedsReactTable[key]) return;
|
|
608
608
|
Object.defineProperty(exports, key, {
|
|
609
609
|
enumerable: true,
|
|
610
610
|
get: function get() {
|
|
611
|
-
return
|
|
611
|
+
return _seedsReactTable[key];
|
|
612
612
|
}
|
|
613
613
|
});
|
|
614
614
|
});
|
|
615
|
-
var _TableCell = require("
|
|
615
|
+
var _TableCell = require("@sproutsocial/seeds-react-table/TableCell");
|
|
616
616
|
Object.keys(_TableCell).forEach(function (key) {
|
|
617
617
|
if (key === "default" || key === "__esModule") return;
|
|
618
618
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -624,7 +624,7 @@ Object.keys(_TableCell).forEach(function (key) {
|
|
|
624
624
|
}
|
|
625
625
|
});
|
|
626
626
|
});
|
|
627
|
-
var _TableHeaderCell = require("
|
|
627
|
+
var _TableHeaderCell = require("@sproutsocial/seeds-react-table/TableHeaderCell");
|
|
628
628
|
Object.keys(_TableHeaderCell).forEach(function (key) {
|
|
629
629
|
if (key === "default" || key === "__esModule") return;
|
|
630
630
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -636,7 +636,7 @@ Object.keys(_TableHeaderCell).forEach(function (key) {
|
|
|
636
636
|
}
|
|
637
637
|
});
|
|
638
638
|
});
|
|
639
|
-
var _TableRowAccordion = require("
|
|
639
|
+
var _TableRowAccordion = require("@sproutsocial/seeds-react-table/TableRowAccordion");
|
|
640
640
|
Object.keys(_TableRowAccordion).forEach(function (key) {
|
|
641
641
|
if (key === "default" || key === "__esModule") return;
|
|
642
642
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -732,15 +732,15 @@ Object.keys(_TokenInput).forEach(function (key) {
|
|
|
732
732
|
}
|
|
733
733
|
});
|
|
734
734
|
});
|
|
735
|
-
var
|
|
736
|
-
Object.keys(
|
|
735
|
+
var _seedsReactTooltip = require("@sproutsocial/seeds-react-tooltip");
|
|
736
|
+
Object.keys(_seedsReactTooltip).forEach(function (key) {
|
|
737
737
|
if (key === "default" || key === "__esModule") return;
|
|
738
738
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
739
|
-
if (key in exports && exports[key] ===
|
|
739
|
+
if (key in exports && exports[key] === _seedsReactTooltip[key]) return;
|
|
740
740
|
Object.defineProperty(exports, key, {
|
|
741
741
|
enumerable: true,
|
|
742
742
|
get: function get() {
|
|
743
|
-
return
|
|
743
|
+
return _seedsReactTooltip[key];
|
|
744
744
|
}
|
|
745
745
|
});
|
|
746
746
|
});
|