@sproutsocial/racine 25.5.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 +29 -0
- package/commonjs/index.js +31 -31
- package/dist/dynamicProps.json +1 -1
- package/dist/types/index.d.ts +10 -10
- package/dist/types/index.d.ts.map +1 -1
- package/lib/index.js +10 -10
- package/package.json +8 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
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
|
+
|
|
3
32
|
## 25.5.0
|
|
4
33
|
|
|
5
34
|
### Minor Changes
|
package/commonjs/index.js
CHANGED
|
@@ -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
|
});
|
|
@@ -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
|
});
|