@sproutsocial/racine 31.7.28 → 33.0.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 +92 -0
- package/dist/components.css +264 -0
- package/dist/esm/modal/v2/index.js +6 -2
- package/dist/esm/modal/v2/index.js.map +1 -1
- package/dist/modal/v2/index.d.mts +4 -1
- package/dist/modal/v2/index.d.ts +4 -1
- package/dist/modal/v2/index.js +6 -2
- package/dist/modal/v2/index.js.map +1 -1
- package/package.json +64 -69
- package/dist/esm/modal/v1/index.js +0 -10
- package/dist/esm/modal/v1/index.js.map +0 -1
- package/dist/modal/v1/index.d.mts +0 -5
- package/dist/modal/v1/index.d.ts +0 -5
- package/dist/modal/v1/index.js +0 -43
- package/dist/modal/v1/index.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,97 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 33.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- 8bd7256: Remove the Modal v1 entry point. `import { Modal } from "@sproutsocial/racine"` now
|
|
8
|
+
resolves to Modal v2.
|
|
9
|
+
|
|
10
|
+
**Breaking changes:**
|
|
11
|
+
|
|
12
|
+
- The `./modal/v1` subpath (`@sproutsocial/racine/modal/v1`) no longer resolves.
|
|
13
|
+
- The root `Modal` export is now Modal v2 — Modal v1's compound API (`Modal.Header` /
|
|
14
|
+
`Modal.Content` / `Modal.Footer`, `isOpen` / `onClose` / `label` / `closeButtonLabel`)
|
|
15
|
+
is gone from the default import.
|
|
16
|
+
- The `ModalV2` name is gone from the root barrel — import `Modal` instead.
|
|
17
|
+
|
|
18
|
+
**Not breaking:** `@sproutsocial/racine/modal/v2` is unchanged and still works as an
|
|
19
|
+
explicit alias. It now additionally exports `ModalExternalTrigger`,
|
|
20
|
+
`useModalTriggerProps`, and the `ModalExternalTriggerProps` type, closing a gap where
|
|
21
|
+
those were previously only reachable through the root barrel.
|
|
22
|
+
|
|
23
|
+
**Migration:** run the `modal-v1-to-v2` codemod in `seeds-tooling/seeds-codemod-cli`, or
|
|
24
|
+
switch imports to the v2 sub-component API by hand. Table v1/v2 and Icon v2 are
|
|
25
|
+
unaffected by this change.
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- Updated dependencies [899c48b]
|
|
30
|
+
- Updated dependencies [db4415c]
|
|
31
|
+
- Updated dependencies [8bd7256]
|
|
32
|
+
- Updated dependencies [db4415c]
|
|
33
|
+
- @sproutsocial/seeds-react-datepicker@1.1.0
|
|
34
|
+
- @sproutsocial/seeds-depth@3.6.0
|
|
35
|
+
- @sproutsocial/seeds-react-modal@4.0.0
|
|
36
|
+
- @sproutsocial/seeds-react-theme@4.7.0
|
|
37
|
+
- @sproutsocial/seeds-react-peek-in@0.6.4
|
|
38
|
+
- @sproutsocial/seeds-react-popout@2.5.26
|
|
39
|
+
- @sproutsocial/seeds-react-accordion@0.4.70
|
|
40
|
+
- @sproutsocial/seeds-react-breadcrumb@1.1.20
|
|
41
|
+
- @sproutsocial/seeds-react-list@0.4.2
|
|
42
|
+
- @sproutsocial/seeds-react-avatar@1.2.2
|
|
43
|
+
- @sproutsocial/seeds-react-banner@1.1.38
|
|
44
|
+
- @sproutsocial/seeds-react-box@1.1.34
|
|
45
|
+
- @sproutsocial/seeds-react-card@1.1.57
|
|
46
|
+
- @sproutsocial/seeds-react-chart-legend@1.0.56
|
|
47
|
+
- @sproutsocial/seeds-react-container@0.3.28
|
|
48
|
+
- @sproutsocial/seeds-react-content-block@0.6.3
|
|
49
|
+
- @sproutsocial/seeds-react-data-table@2.6.40
|
|
50
|
+
- @sproutsocial/seeds-react-drawer@2.2.25
|
|
51
|
+
- @sproutsocial/seeds-react-duration@1.0.38
|
|
52
|
+
- @sproutsocial/seeds-react-empty-state@1.0.37
|
|
53
|
+
- @sproutsocial/seeds-react-fieldset@1.0.37
|
|
54
|
+
- @sproutsocial/seeds-react-form-field@1.1.31
|
|
55
|
+
- @sproutsocial/seeds-react-grid@0.2.19
|
|
56
|
+
- @sproutsocial/seeds-react-hooks@3.4.2
|
|
57
|
+
- @sproutsocial/seeds-react-icon@2.5.4
|
|
58
|
+
- @sproutsocial/seeds-react-image@1.0.35
|
|
59
|
+
- @sproutsocial/seeds-react-indicator@1.0.54
|
|
60
|
+
- @sproutsocial/seeds-react-keyboard-key@1.0.36
|
|
61
|
+
- @sproutsocial/seeds-react-label@1.0.36
|
|
62
|
+
- @sproutsocial/seeds-react-link@1.1.26
|
|
63
|
+
- @sproutsocial/seeds-react-loader@1.0.36
|
|
64
|
+
- @sproutsocial/seeds-react-loader-button@1.0.62
|
|
65
|
+
- @sproutsocial/seeds-react-message@1.0.68
|
|
66
|
+
- @sproutsocial/seeds-react-mixins@4.3.18
|
|
67
|
+
- @sproutsocial/seeds-react-narrative-kit@0.6.9
|
|
68
|
+
- @sproutsocial/seeds-react-numeral@1.0.62
|
|
69
|
+
- @sproutsocial/seeds-react-pagination@0.1.35
|
|
70
|
+
- @sproutsocial/seeds-react-panel@1.2.4
|
|
71
|
+
- @sproutsocial/seeds-react-partner-logo@1.7.26
|
|
72
|
+
- @sproutsocial/seeds-react-progress@0.2.21
|
|
73
|
+
- @sproutsocial/seeds-react-rating@1.0.55
|
|
74
|
+
- @sproutsocial/seeds-react-segmented-control@1.1.38
|
|
75
|
+
- @sproutsocial/seeds-react-select@1.1.55
|
|
76
|
+
- @sproutsocial/seeds-react-skeleton@1.1.34
|
|
77
|
+
- @sproutsocial/seeds-react-stack@1.0.34
|
|
78
|
+
- @sproutsocial/seeds-react-table@1.0.57
|
|
79
|
+
- @sproutsocial/seeds-react-tabs@1.4.28
|
|
80
|
+
- @sproutsocial/seeds-react-textarea@1.0.35
|
|
81
|
+
- @sproutsocial/seeds-react-theme-provider@1.1.31
|
|
82
|
+
- @sproutsocial/seeds-react-toast@1.0.56
|
|
83
|
+
- @sproutsocial/seeds-react-token@1.5.23
|
|
84
|
+
- @sproutsocial/seeds-react-token-input@1.4.67
|
|
85
|
+
- @sproutsocial/seeds-react-tooltip@1.1.41
|
|
86
|
+
- @sproutsocial/seeds-react-visually-hidden@1.0.35
|
|
87
|
+
- @sproutsocial/seeds-react-badge@2.0.48
|
|
88
|
+
- @sproutsocial/seeds-react-checkbox@1.3.57
|
|
89
|
+
- @sproutsocial/seeds-react-content-header@0.3.3
|
|
90
|
+
- @sproutsocial/seeds-react-input@1.5.45
|
|
91
|
+
- @sproutsocial/seeds-react-button@2.3.11
|
|
92
|
+
- @sproutsocial/seeds-react-switch@1.2.54
|
|
93
|
+
- @sproutsocial/seeds-react-radio@1.3.37
|
|
94
|
+
|
|
3
95
|
## 31.7.28
|
|
4
96
|
|
|
5
97
|
### Patch Changes
|
package/dist/components.css
CHANGED
|
@@ -1543,6 +1543,270 @@
|
|
|
1543
1543
|
}
|
|
1544
1544
|
}
|
|
1545
1545
|
|
|
1546
|
+
/* --- seeds-react-datepicker --- */
|
|
1547
|
+
/**
|
|
1548
|
+
* Seeds Datepicker component classes
|
|
1549
|
+
*
|
|
1550
|
+
* Requires @sproutsocial/seeds-react-theme/dist/theme-all.css imported for
|
|
1551
|
+
* CSS variable definitions and dark mode support.
|
|
1552
|
+
*
|
|
1553
|
+
* This file has two halves, and they are deliberately in different cascade
|
|
1554
|
+
* positions.
|
|
1555
|
+
*
|
|
1556
|
+
*
|
|
1557
|
+
* 1. react-dates overrides — UNLAYERED (approved exception)
|
|
1558
|
+
* ---------------------------------------------------------------------------
|
|
1559
|
+
* The block below restyles react-dates' own DOM. It is the static port of the
|
|
1560
|
+
* `ReactDatesCssOverrides` createGlobalStyle in styles.ts, which used to be
|
|
1561
|
+
* injected at runtime whenever a picker mounted.
|
|
1562
|
+
*
|
|
1563
|
+
* It is emitted OUTSIDE `@layer components`, which is an explicit, approved
|
|
1564
|
+
* exception to the repository's Tailwind delivery convention. react-dates ships
|
|
1565
|
+
* `react-dates/lib/css/_datepicker.css` with zero cascade layers, and an
|
|
1566
|
+
* unlayered declaration beats every layered one no matter how specific. A
|
|
1567
|
+
* layered port would silently lose the .DayPicker__horizontal box-shadow reset,
|
|
1568
|
+
* the .CalendarDay__default color and hover reset, and the .CalendarMonth_caption
|
|
1569
|
+
* padding — only the one !important rule would survive.
|
|
1570
|
+
*
|
|
1571
|
+
* Two unlayered rules of equal specificity fall back to source order, and a
|
|
1572
|
+
* consuming bundler decides whether this file lands before or after
|
|
1573
|
+
* _datepicker.css. So every override that contests a react-dates declaration is
|
|
1574
|
+
* qualified with the .DayPicker ancestor (or, for the root element itself, with
|
|
1575
|
+
* its own base class), which outranks react-dates' plain single-class rules
|
|
1576
|
+
* whatever the stylesheet order.
|
|
1577
|
+
*
|
|
1578
|
+
* react-dates ALSO ships pseudo-class rules — .CalendarDay__default:hover and
|
|
1579
|
+
* .CalendarDay__selected:hover among them — and a pseudo-class counts toward the
|
|
1580
|
+
* same specificity component as a class, so those sit at (0,2,0) and tie with a
|
|
1581
|
+
* plain .DayPicker-qualified override. That is why the two CalendarDay :hover
|
|
1582
|
+
* variants below are written out at (0,3,0). They are load-bearing, NOT redundant
|
|
1583
|
+
* copies of their base rules: delete them and the hover background and border
|
|
1584
|
+
* resets become stylesheet-order-dependent again.
|
|
1585
|
+
*
|
|
1586
|
+
* The nav-button :hover rule is different. It is simply the hover state carried
|
|
1587
|
+
* over from the styled implementation. react-dates ships no rule for
|
|
1588
|
+
* .DayPickerNavigation_button__horizontal at all, only __horizontalDefault at
|
|
1589
|
+
* (0,1,0), and its .DayPickerNavigation_button__default rules never apply here
|
|
1590
|
+
* because Seeds always supplies navPrev and navNext, so react-dates marks the
|
|
1591
|
+
* buttons non-default. Nothing contests it.
|
|
1592
|
+
*
|
|
1593
|
+
* NOT covered: react-dates' :active variants — .CalendarDay__selected:active and
|
|
1594
|
+
* its blocked, hovered_span and highlighted_calendar siblings — also sit at
|
|
1595
|
+
* (0,2,0) and therefore TIE with the overrides below, leaving the winner to
|
|
1596
|
+
* stylesheet order in the consuming bundle. The styled implementation's
|
|
1597
|
+
* unqualified single-class rules lost those contests outright, so this is
|
|
1598
|
+
* same-or-better everywhere and never a regression, but a pressed day may still
|
|
1599
|
+
* flash react-dates' own palette. Closing it means adding
|
|
1600
|
+
* .DayPicker .CalendarDay:active to the transparent-background group and
|
|
1601
|
+
* .DayPicker .CalendarDay__default:active to the border-reset group, which is a
|
|
1602
|
+
* deliberate visual change and was not authorized for Phase A.
|
|
1603
|
+
*
|
|
1604
|
+
* The magic numbers are carried over verbatim from the styled implementation.
|
|
1605
|
+
* They are tuned against react-dates' own layout — do not "normalize" them to
|
|
1606
|
+
* theme tokens. In particular `line-height: 21.333px` is NOT --line-height-200,
|
|
1607
|
+
* and `top: 26px` on the week header is still a magic number aligning it with
|
|
1608
|
+
* .CalendarMonth_caption.
|
|
1609
|
+
*
|
|
1610
|
+
* One magic number was deliberately NOT carried over: `width: 230px` on the week
|
|
1611
|
+
* header, along with the two rules that compensated for it. It assumed
|
|
1612
|
+
* content-box and broke once Tailwind's preflight made everything border-box.
|
|
1613
|
+
* The header now shrink-wraps to the month. See the comment on that rule.
|
|
1614
|
+
*
|
|
1615
|
+
*
|
|
1616
|
+
* 2. Day cell — LAYERED, as usual
|
|
1617
|
+
* ---------------------------------------------------------------------------
|
|
1618
|
+
* `.seeds-datepicker-day*` styles a node this package renders itself, so it
|
|
1619
|
+
* follows the normal convention and lives in `@layer components`, letting
|
|
1620
|
+
* consumer Tailwind utilities override it.
|
|
1621
|
+
*
|
|
1622
|
+
* Usage (applied by CalendarDayTailwind.tsx):
|
|
1623
|
+
* <div class="seeds-datepicker-day seeds-datepicker-day-selected
|
|
1624
|
+
* seeds-datepicker-day-pill-left">17</div>
|
|
1625
|
+
*/
|
|
1626
|
+
|
|
1627
|
+
/* ========================================================================== */
|
|
1628
|
+
/* react-dates overrides (unlayered — see note 1 above) */
|
|
1629
|
+
/* ========================================================================== */
|
|
1630
|
+
|
|
1631
|
+
/* The one override left unqualified, at (0,1,0). It therefore ties with
|
|
1632
|
+
react-dates' own `.DayPicker` rule and the winner is load order — where the
|
|
1633
|
+
styled version, injected last at runtime, always won. Harmless today because
|
|
1634
|
+
the two declaration sets are disjoint (this rule sets box-sizing, font-weight
|
|
1635
|
+
and font-family; react-dates sets background, position and text-align), so
|
|
1636
|
+
there is nothing to contest. Qualify it as `.DayPicker.DayPicker` if react-dates
|
|
1637
|
+
ever adds one of these properties. */
|
|
1638
|
+
.DayPicker {
|
|
1639
|
+
box-sizing: content-box;
|
|
1640
|
+
font-weight: var(--font-weight-normal);
|
|
1641
|
+
font-family: var(--font-family);
|
|
1642
|
+
}
|
|
1643
|
+
|
|
1644
|
+
/* Override react-dates' height to better reflect how tall the component
|
|
1645
|
+
actually is. Adding margin/padding is truer to the Seeds system, because the
|
|
1646
|
+
calendar height adds an extra row of padding if we do not override it.
|
|
1647
|
+
!important is required because react-dates sets height on the element. */
|
|
1648
|
+
.DayPicker .DayPicker_transitionContainer {
|
|
1649
|
+
height: 228px !important;
|
|
1650
|
+
}
|
|
1651
|
+
|
|
1652
|
+
/* No `width` here on purpose. The styled implementation pinned `width: 230px`
|
|
1653
|
+
to stretch the underline the full month width, which only held while the
|
|
1654
|
+
element was content-box. Tailwind's preflight sets `* { box-sizing:
|
|
1655
|
+
border-box }`, so react-dates' own inline `padding: 0 13px` started
|
|
1656
|
+
subtracting from that 230px: 230 - 26 - 10 = 194px of content against the
|
|
1657
|
+
7 x 30px = 210px the day columns need, which wrapped Saturday onto a second
|
|
1658
|
+
line and dropped the border-bottom through the first row of dates. Letting
|
|
1659
|
+
the header shrink-wrap to the month makes it track `daySize` instead of a
|
|
1660
|
+
magic number, and gives the same result under either box-sizing.
|
|
1661
|
+
Deleting the width also means react-dates' own `.DayPicker_weekHeaders__horizontal`
|
|
1662
|
+
margin-left and `.DayPicker_weekHeader_ul` padding-left must be left alone —
|
|
1663
|
+
the styled version overrode both to compensate for the pinned width. */
|
|
1664
|
+
.DayPicker .DayPicker_weekHeader {
|
|
1665
|
+
color: var(--color-text-headline);
|
|
1666
|
+
border-bottom: 1px solid var(--color-container-border-base);
|
|
1667
|
+
|
|
1668
|
+
/* Magic number to match position of .CalendarMonth_caption */
|
|
1669
|
+
top: 26px;
|
|
1670
|
+
}
|
|
1671
|
+
|
|
1672
|
+
.DayPicker .DayPicker_weekHeader_li {
|
|
1673
|
+
font-size: var(--font-size-200);
|
|
1674
|
+
line-height: var(--line-height-200);
|
|
1675
|
+
color: var(--color-text-subtext);
|
|
1676
|
+
font-weight: var(--font-weight-semibold);
|
|
1677
|
+
margin: 0;
|
|
1678
|
+
}
|
|
1679
|
+
|
|
1680
|
+
.DayPicker.DayPicker__horizontal {
|
|
1681
|
+
box-shadow: none;
|
|
1682
|
+
background: var(--color-container-bg-base);
|
|
1683
|
+
}
|
|
1684
|
+
|
|
1685
|
+
.DayPicker .CalendarDay {
|
|
1686
|
+
background-color: transparent;
|
|
1687
|
+
}
|
|
1688
|
+
|
|
1689
|
+
.DayPicker .CalendarDay__selected,
|
|
1690
|
+
.DayPicker .CalendarDay__selected_span,
|
|
1691
|
+
.DayPicker .CalendarDay:hover {
|
|
1692
|
+
background-color: transparent;
|
|
1693
|
+
}
|
|
1694
|
+
|
|
1695
|
+
.DayPicker .CalendarDay__default,
|
|
1696
|
+
.DayPicker .CalendarDay__default:hover {
|
|
1697
|
+
border: none;
|
|
1698
|
+
color: var(--color-text-body);
|
|
1699
|
+
}
|
|
1700
|
+
|
|
1701
|
+
.DayPicker .CalendarMonth {
|
|
1702
|
+
font-size: var(--font-size-200);
|
|
1703
|
+
line-height: var(--line-height-200);
|
|
1704
|
+
background: var(--color-container-bg-base);
|
|
1705
|
+
|
|
1706
|
+
/* spacing between visible months and months off canvas */
|
|
1707
|
+
padding: 0 15px;
|
|
1708
|
+
}
|
|
1709
|
+
|
|
1710
|
+
.DayPicker .CalendarMonth_caption {
|
|
1711
|
+
font-size: var(--font-size-200);
|
|
1712
|
+
line-height: var(--line-height-200);
|
|
1713
|
+
color: var(--color-text-headline);
|
|
1714
|
+
padding-top: 0;
|
|
1715
|
+
background: var(--color-container-bg-base);
|
|
1716
|
+
}
|
|
1717
|
+
|
|
1718
|
+
.DayPicker .CalendarMonth_caption strong {
|
|
1719
|
+
font-weight: var(--font-weight-semibold);
|
|
1720
|
+
}
|
|
1721
|
+
|
|
1722
|
+
.DayPicker .CalendarMonth_table {
|
|
1723
|
+
line-height: 21.333px;
|
|
1724
|
+
}
|
|
1725
|
+
|
|
1726
|
+
.DayPicker .CalendarMonth_table tr {
|
|
1727
|
+
vertical-align: middle;
|
|
1728
|
+
}
|
|
1729
|
+
|
|
1730
|
+
.DayPicker .CalendarMonth_table td {
|
|
1731
|
+
padding: 0;
|
|
1732
|
+
border-bottom: none;
|
|
1733
|
+
}
|
|
1734
|
+
|
|
1735
|
+
.DayPicker .CalendarMonthGrid {
|
|
1736
|
+
background: var(--color-container-bg-base);
|
|
1737
|
+
}
|
|
1738
|
+
|
|
1739
|
+
/* Left and Right Arrow Buttons to navigate months */
|
|
1740
|
+
.DayPicker .DayPickerNavigation_button__horizontal {
|
|
1741
|
+
color: var(--color-button-pill-text-base);
|
|
1742
|
+
top: -4px;
|
|
1743
|
+
padding: 7px 8px;
|
|
1744
|
+
position: absolute;
|
|
1745
|
+
line-height: 0.78;
|
|
1746
|
+
border-radius: 9999px;
|
|
1747
|
+
border: none;
|
|
1748
|
+
background: var(--color-button-pill-bg-base);
|
|
1749
|
+
}
|
|
1750
|
+
|
|
1751
|
+
.DayPicker .DayPickerNavigation_button__horizontal:nth-child(1) {
|
|
1752
|
+
left: 22px;
|
|
1753
|
+
}
|
|
1754
|
+
|
|
1755
|
+
.DayPicker .DayPickerNavigation_button__horizontal:nth-child(2) {
|
|
1756
|
+
right: 22px;
|
|
1757
|
+
}
|
|
1758
|
+
|
|
1759
|
+
.DayPicker .DayPickerNavigation_button__horizontal:hover {
|
|
1760
|
+
background: var(--color-button-pill-bg-hover);
|
|
1761
|
+
}
|
|
1762
|
+
|
|
1763
|
+
/* ========================================================================== */
|
|
1764
|
+
/* Day cell (layered — see note 2 above) */
|
|
1765
|
+
/* ========================================================================== */
|
|
1766
|
+
|
|
1767
|
+
@layer components {
|
|
1768
|
+
/* Baseline inherited from Box, which the legacy day cell extended. Box ships
|
|
1769
|
+
no CSS of its own, so the static cell has to reproduce it here. */
|
|
1770
|
+
.seeds-datepicker-day {
|
|
1771
|
+
box-sizing: border-box;
|
|
1772
|
+
font-family: var(--font-family);
|
|
1773
|
+
}
|
|
1774
|
+
|
|
1775
|
+
.seeds-datepicker-day-selected {
|
|
1776
|
+
background-color: var(--color-container-bg-selected);
|
|
1777
|
+
color: var(--color-text-inverse);
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1780
|
+
/* The pill edges are separate classes on purpose. The legacy implementation
|
|
1781
|
+
interpolated `margin-left: ${condition && space}`, which emits NO
|
|
1782
|
+
declaration when the condition is false — writing a `0` fallback here would
|
|
1783
|
+
square off the ends of every selected range. */
|
|
1784
|
+
.seeds-datepicker-day-pill-left {
|
|
1785
|
+
margin-left: var(--space-200);
|
|
1786
|
+
border-top-left-radius: var(--radius-pill);
|
|
1787
|
+
border-bottom-left-radius: var(--radius-pill);
|
|
1788
|
+
}
|
|
1789
|
+
|
|
1790
|
+
.seeds-datepicker-day-pill-right {
|
|
1791
|
+
margin-right: var(--space-200);
|
|
1792
|
+
border-top-right-radius: var(--radius-pill);
|
|
1793
|
+
border-bottom-right-radius: var(--radius-pill);
|
|
1794
|
+
}
|
|
1795
|
+
|
|
1796
|
+
.seeds-datepicker-day-hovered {
|
|
1797
|
+
margin: 0 var(--space-200);
|
|
1798
|
+
border-radius: var(--radius-pill);
|
|
1799
|
+
border: 1px solid var(--color-container-border-selected);
|
|
1800
|
+
}
|
|
1801
|
+
|
|
1802
|
+
/* Mirrors the `disabled` mixin from seeds-react-mixins. */
|
|
1803
|
+
.seeds-datepicker-day-out-of-range {
|
|
1804
|
+
color: var(--color-text-subtext);
|
|
1805
|
+
opacity: 0.4;
|
|
1806
|
+
pointer-events: none;
|
|
1807
|
+
}
|
|
1808
|
+
}
|
|
1809
|
+
|
|
1546
1810
|
/* --- seeds-react-drawer --- */
|
|
1547
1811
|
/**
|
|
1548
1812
|
* Seeds Drawer component classes.
|
|
@@ -10,7 +10,9 @@ import {
|
|
|
10
10
|
ModalAction,
|
|
11
11
|
ModalCustomHeader,
|
|
12
12
|
ModalCustomFooter,
|
|
13
|
-
|
|
13
|
+
ModalExternalTrigger,
|
|
14
|
+
useModalExternalTrigger,
|
|
15
|
+
useModalTriggerProps
|
|
14
16
|
} from "@sproutsocial/seeds-react-modal/v2";
|
|
15
17
|
import {
|
|
16
18
|
DEFAULT_MODAL_WIDTH,
|
|
@@ -30,9 +32,11 @@ export {
|
|
|
30
32
|
ModalCustomFooter,
|
|
31
33
|
ModalCustomHeader,
|
|
32
34
|
ModalDescription,
|
|
35
|
+
ModalExternalTrigger,
|
|
33
36
|
ModalFooter,
|
|
34
37
|
ModalHeader,
|
|
35
38
|
ModalRail,
|
|
36
|
-
useModalExternalTrigger
|
|
39
|
+
useModalExternalTrigger,
|
|
40
|
+
useModalTriggerProps
|
|
37
41
|
};
|
|
38
42
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../src/modal/v2/index.ts"],"sourcesContent":["// V2 Modal - Re-export from seeds-react-modal for optimal tree shaking\nexport {\n Modal,\n ModalDescription,\n ModalHeader,\n ModalFooter,\n ModalBody,\n ModalCloseWrapper,\n ModalRail,\n ModalAction,\n ModalCustomHeader,\n ModalCustomFooter,\n useModalExternalTrigger,\n} from \"@sproutsocial/seeds-react-modal/v2\";\n\n// Explicit type exports\nexport type {\n TypeModalProps,\n TypeModalHeaderProps,\n TypeModalFooterProps,\n TypeModalBodyProps,\n TypeModalDescriptionProps,\n TypeModalRailProps,\n TypeModalActionProps,\n ModalCloseWrapperProps,\n} from \"@sproutsocial/seeds-react-modal/v2\";\n\n// Explicit constant exports\nexport {\n DEFAULT_MODAL_WIDTH,\n DEFAULT_MODAL_BG,\n BODY_PADDING,\n MODAL_SIZE_PRESETS,\n} from \"@sproutsocial/seeds-react-modal/v2\";\n"],"mappings":";AACA;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;
|
|
1
|
+
{"version":3,"sources":["../../../../src/modal/v2/index.ts"],"sourcesContent":["// V2 Modal - Re-export from seeds-react-modal for optimal tree shaking\nexport {\n Modal,\n ModalDescription,\n ModalHeader,\n ModalFooter,\n ModalBody,\n ModalCloseWrapper,\n ModalRail,\n ModalAction,\n ModalCustomHeader,\n ModalCustomFooter,\n ModalExternalTrigger,\n useModalExternalTrigger,\n useModalTriggerProps,\n} from \"@sproutsocial/seeds-react-modal/v2\";\n\n// Explicit type exports\nexport type {\n TypeModalProps,\n TypeModalHeaderProps,\n TypeModalFooterProps,\n TypeModalBodyProps,\n TypeModalDescriptionProps,\n TypeModalRailProps,\n TypeModalActionProps,\n ModalCloseWrapperProps,\n ModalExternalTriggerProps,\n} from \"@sproutsocial/seeds-react-modal/v2\";\n\n// Explicit constant exports\nexport {\n DEFAULT_MODAL_WIDTH,\n DEFAULT_MODAL_BG,\n BODY_PADDING,\n MODAL_SIZE_PRESETS,\n} from \"@sproutsocial/seeds-react-modal/v2\";\n"],"mappings":";AACA;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;AAgBP;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;","names":[]}
|
|
@@ -1 +1,4 @@
|
|
|
1
|
-
export { BODY_PADDING, DEFAULT_MODAL_BG, DEFAULT_MODAL_WIDTH, MODAL_SIZE_PRESETS, Modal, ModalAction, ModalBody, ModalCloseWrapper, ModalCloseWrapperProps, ModalCustomFooter, ModalCustomHeader, ModalDescription, ModalFooter, ModalHeader, ModalRail, TypeModalActionProps, TypeModalBodyProps, TypeModalDescriptionProps, TypeModalFooterProps, TypeModalHeaderProps, TypeModalProps, TypeModalRailProps, useModalExternalTrigger } from '@sproutsocial/seeds-react-modal/v2';
|
|
1
|
+
export { BODY_PADDING, DEFAULT_MODAL_BG, DEFAULT_MODAL_WIDTH, MODAL_SIZE_PRESETS, Modal, ModalAction, ModalBody, ModalCloseWrapper, ModalCloseWrapperProps, ModalCustomFooter, ModalCustomHeader, ModalDescription, ModalExternalTrigger, ModalExternalTriggerProps, ModalFooter, ModalHeader, ModalRail, TypeModalActionProps, TypeModalBodyProps, TypeModalDescriptionProps, TypeModalFooterProps, TypeModalHeaderProps, TypeModalProps, TypeModalRailProps, useModalExternalTrigger, useModalTriggerProps } from '@sproutsocial/seeds-react-modal/v2';
|
|
2
|
+
import '@sproutsocial/seeds-react-icon/v2';
|
|
3
|
+
import '@sproutsocial/seeds-react-table/v1';
|
|
4
|
+
import '@sproutsocial/seeds-react-table/v2';
|
package/dist/modal/v2/index.d.ts
CHANGED
|
@@ -1 +1,4 @@
|
|
|
1
|
-
export { BODY_PADDING, DEFAULT_MODAL_BG, DEFAULT_MODAL_WIDTH, MODAL_SIZE_PRESETS, Modal, ModalAction, ModalBody, ModalCloseWrapper, ModalCloseWrapperProps, ModalCustomFooter, ModalCustomHeader, ModalDescription, ModalFooter, ModalHeader, ModalRail, TypeModalActionProps, TypeModalBodyProps, TypeModalDescriptionProps, TypeModalFooterProps, TypeModalHeaderProps, TypeModalProps, TypeModalRailProps, useModalExternalTrigger } from '@sproutsocial/seeds-react-modal/v2';
|
|
1
|
+
export { BODY_PADDING, DEFAULT_MODAL_BG, DEFAULT_MODAL_WIDTH, MODAL_SIZE_PRESETS, Modal, ModalAction, ModalBody, ModalCloseWrapper, ModalCloseWrapperProps, ModalCustomFooter, ModalCustomHeader, ModalDescription, ModalExternalTrigger, ModalExternalTriggerProps, ModalFooter, ModalHeader, ModalRail, TypeModalActionProps, TypeModalBodyProps, TypeModalDescriptionProps, TypeModalFooterProps, TypeModalHeaderProps, TypeModalProps, TypeModalRailProps, useModalExternalTrigger, useModalTriggerProps } from '@sproutsocial/seeds-react-modal/v2';
|
|
2
|
+
import '@sproutsocial/seeds-react-icon/v2';
|
|
3
|
+
import '@sproutsocial/seeds-react-table/v1';
|
|
4
|
+
import '@sproutsocial/seeds-react-table/v2';
|
package/dist/modal/v2/index.js
CHANGED
|
@@ -31,10 +31,12 @@ __export(v2_exports, {
|
|
|
31
31
|
ModalCustomFooter: () => import_v2.ModalCustomFooter,
|
|
32
32
|
ModalCustomHeader: () => import_v2.ModalCustomHeader,
|
|
33
33
|
ModalDescription: () => import_v2.ModalDescription,
|
|
34
|
+
ModalExternalTrigger: () => import_v2.ModalExternalTrigger,
|
|
34
35
|
ModalFooter: () => import_v2.ModalFooter,
|
|
35
36
|
ModalHeader: () => import_v2.ModalHeader,
|
|
36
37
|
ModalRail: () => import_v2.ModalRail,
|
|
37
|
-
useModalExternalTrigger: () => import_v2.useModalExternalTrigger
|
|
38
|
+
useModalExternalTrigger: () => import_v2.useModalExternalTrigger,
|
|
39
|
+
useModalTriggerProps: () => import_v2.useModalTriggerProps
|
|
38
40
|
});
|
|
39
41
|
module.exports = __toCommonJS(v2_exports);
|
|
40
42
|
var import_v2 = require("@sproutsocial/seeds-react-modal/v2");
|
|
@@ -52,9 +54,11 @@ var import_v22 = require("@sproutsocial/seeds-react-modal/v2");
|
|
|
52
54
|
ModalCustomFooter,
|
|
53
55
|
ModalCustomHeader,
|
|
54
56
|
ModalDescription,
|
|
57
|
+
ModalExternalTrigger,
|
|
55
58
|
ModalFooter,
|
|
56
59
|
ModalHeader,
|
|
57
60
|
ModalRail,
|
|
58
|
-
useModalExternalTrigger
|
|
61
|
+
useModalExternalTrigger,
|
|
62
|
+
useModalTriggerProps
|
|
59
63
|
});
|
|
60
64
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/modal/v2/index.ts"],"sourcesContent":["// V2 Modal - Re-export from seeds-react-modal for optimal tree shaking\nexport {\n Modal,\n ModalDescription,\n ModalHeader,\n ModalFooter,\n ModalBody,\n ModalCloseWrapper,\n ModalRail,\n ModalAction,\n ModalCustomHeader,\n ModalCustomFooter,\n useModalExternalTrigger,\n} from \"@sproutsocial/seeds-react-modal/v2\";\n\n// Explicit type exports\nexport type {\n TypeModalProps,\n TypeModalHeaderProps,\n TypeModalFooterProps,\n TypeModalBodyProps,\n TypeModalDescriptionProps,\n TypeModalRailProps,\n TypeModalActionProps,\n ModalCloseWrapperProps,\n} from \"@sproutsocial/seeds-react-modal/v2\";\n\n// Explicit constant exports\nexport {\n DEFAULT_MODAL_WIDTH,\n DEFAULT_MODAL_BG,\n BODY_PADDING,\n MODAL_SIZE_PRESETS,\n} from \"@sproutsocial/seeds-react-modal/v2\";\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA,
|
|
1
|
+
{"version":3,"sources":["../../../src/modal/v2/index.ts"],"sourcesContent":["// V2 Modal - Re-export from seeds-react-modal for optimal tree shaking\nexport {\n Modal,\n ModalDescription,\n ModalHeader,\n ModalFooter,\n ModalBody,\n ModalCloseWrapper,\n ModalRail,\n ModalAction,\n ModalCustomHeader,\n ModalCustomFooter,\n ModalExternalTrigger,\n useModalExternalTrigger,\n useModalTriggerProps,\n} from \"@sproutsocial/seeds-react-modal/v2\";\n\n// Explicit type exports\nexport type {\n TypeModalProps,\n TypeModalHeaderProps,\n TypeModalFooterProps,\n TypeModalBodyProps,\n TypeModalDescriptionProps,\n TypeModalRailProps,\n TypeModalActionProps,\n ModalCloseWrapperProps,\n ModalExternalTriggerProps,\n} from \"@sproutsocial/seeds-react-modal/v2\";\n\n// Explicit constant exports\nexport {\n DEFAULT_MODAL_WIDTH,\n DEFAULT_MODAL_BG,\n BODY_PADDING,\n MODAL_SIZE_PRESETS,\n} from \"@sproutsocial/seeds-react-modal/v2\";\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA,gBAcO;AAgBP,IAAAA,aAKO;","names":["import_v2"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sproutsocial/racine",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "33.0.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=18"
|
|
@@ -22,11 +22,6 @@
|
|
|
22
22
|
"import": "./dist/esm/index.js",
|
|
23
23
|
"require": "./dist/index.js"
|
|
24
24
|
},
|
|
25
|
-
"./modal/v1": {
|
|
26
|
-
"types": "./dist/modal/v1/index.d.ts",
|
|
27
|
-
"import": "./dist/esm/modal/v1/index.js",
|
|
28
|
-
"require": "./dist/modal/v1/index.js"
|
|
29
|
-
},
|
|
30
25
|
"./modal/v2": {
|
|
31
26
|
"types": "./dist/modal/v2/index.d.ts",
|
|
32
27
|
"import": "./dist/esm/modal/v2/index.js",
|
|
@@ -73,80 +68,80 @@
|
|
|
73
68
|
},
|
|
74
69
|
"dependencies": {
|
|
75
70
|
"@size-limit/file": "^11.1.6",
|
|
76
|
-
"@sproutsocial/seeds-react-accordion": "^0.4.
|
|
77
|
-
"@sproutsocial/seeds-react-avatar": "^1.2.
|
|
78
|
-
"@sproutsocial/seeds-react-badge": "^2.0.
|
|
79
|
-
"@sproutsocial/seeds-react-banner": "^1.1.
|
|
80
|
-
"@sproutsocial/seeds-react-box": "^1.1.
|
|
81
|
-
"@sproutsocial/seeds-react-breadcrumb": "^1.1.
|
|
82
|
-
"@sproutsocial/seeds-react-button": "^2.3.
|
|
83
|
-
"@sproutsocial/seeds-react-card": "^1.1.
|
|
71
|
+
"@sproutsocial/seeds-react-accordion": "^0.4.70",
|
|
72
|
+
"@sproutsocial/seeds-react-avatar": "^1.2.2",
|
|
73
|
+
"@sproutsocial/seeds-react-badge": "^2.0.48",
|
|
74
|
+
"@sproutsocial/seeds-react-banner": "^1.1.38",
|
|
75
|
+
"@sproutsocial/seeds-react-box": "^1.1.34",
|
|
76
|
+
"@sproutsocial/seeds-react-breadcrumb": "^1.1.20",
|
|
77
|
+
"@sproutsocial/seeds-react-button": "^2.3.11",
|
|
78
|
+
"@sproutsocial/seeds-react-card": "^1.1.57",
|
|
84
79
|
"@sproutsocial/seeds-react-character-counter": "^1.1.0",
|
|
85
|
-
"@sproutsocial/seeds-react-chart-legend": "^1.0.
|
|
80
|
+
"@sproutsocial/seeds-react-chart-legend": "^1.0.56",
|
|
86
81
|
"@sproutsocial/seeds-react-chat-bubble": "^0.2.7",
|
|
87
|
-
"@sproutsocial/seeds-react-checkbox": "^1.3.
|
|
82
|
+
"@sproutsocial/seeds-react-checkbox": "^1.3.57",
|
|
88
83
|
"@sproutsocial/seeds-react-collapsible": "^2.0.1",
|
|
89
|
-
"@sproutsocial/seeds-react-container": "^0.3.
|
|
90
|
-
"@sproutsocial/seeds-react-content-block": "^0.6.
|
|
91
|
-
"@sproutsocial/seeds-react-content-header": "^0.3.
|
|
92
|
-
"@sproutsocial/seeds-react-data-table": "^2.6.
|
|
93
|
-
"@sproutsocial/seeds-react-datepicker": "^1.0
|
|
94
|
-
"@sproutsocial/seeds-react-drawer": "^2.2.
|
|
95
|
-
"@sproutsocial/seeds-react-duration": "^1.0.
|
|
96
|
-
"@sproutsocial/seeds-react-empty-state": "^1.0.
|
|
97
|
-
"@sproutsocial/seeds-react-fieldset": "^1.0.
|
|
98
|
-
"@sproutsocial/seeds-react-form-field": "^1.1.
|
|
99
|
-
"@sproutsocial/seeds-react-grid": "^0.2.
|
|
100
|
-
"@sproutsocial/seeds-react-hooks": "^3.4.
|
|
101
|
-
"@sproutsocial/seeds-react-icon": "^2.5.
|
|
102
|
-
"@sproutsocial/seeds-react-image": "^1.0.
|
|
103
|
-
"@sproutsocial/seeds-react-indicator": "^1.0.
|
|
104
|
-
"@sproutsocial/seeds-react-input": "^1.5.
|
|
105
|
-
"@sproutsocial/seeds-react-keyboard-key": "^1.0.
|
|
106
|
-
"@sproutsocial/seeds-react-label": "^1.0.
|
|
107
|
-
"@sproutsocial/seeds-react-link": "^1.1.
|
|
108
|
-
"@sproutsocial/seeds-react-list": "^0.4.
|
|
109
|
-
"@sproutsocial/seeds-react-loader": "^1.0.
|
|
110
|
-
"@sproutsocial/seeds-react-loader-button": "^1.0.
|
|
111
|
-
"@sproutsocial/seeds-react-message": "^1.0.
|
|
112
|
-
"@sproutsocial/seeds-react-mixins": "^4.3.
|
|
113
|
-
"@sproutsocial/seeds-react-modal": "^
|
|
114
|
-
"@sproutsocial/seeds-react-narrative-kit": "^0.6.
|
|
115
|
-
"@sproutsocial/seeds-react-numeral": "^1.0.
|
|
116
|
-
"@sproutsocial/seeds-react-pagination": "^0.1.
|
|
117
|
-
"@sproutsocial/seeds-react-panel": "^1.2.
|
|
118
|
-
"@sproutsocial/seeds-react-peek-in": "^0.6.
|
|
119
|
-
"@sproutsocial/seeds-react-partner-logo": "^1.7.
|
|
120
|
-
"@sproutsocial/seeds-react-popout": "^2.5.
|
|
84
|
+
"@sproutsocial/seeds-react-container": "^0.3.28",
|
|
85
|
+
"@sproutsocial/seeds-react-content-block": "^0.6.3",
|
|
86
|
+
"@sproutsocial/seeds-react-content-header": "^0.3.3",
|
|
87
|
+
"@sproutsocial/seeds-react-data-table": "^2.6.40",
|
|
88
|
+
"@sproutsocial/seeds-react-datepicker": "^1.1.0",
|
|
89
|
+
"@sproutsocial/seeds-react-drawer": "^2.2.25",
|
|
90
|
+
"@sproutsocial/seeds-react-duration": "^1.0.38",
|
|
91
|
+
"@sproutsocial/seeds-react-empty-state": "^1.0.37",
|
|
92
|
+
"@sproutsocial/seeds-react-fieldset": "^1.0.37",
|
|
93
|
+
"@sproutsocial/seeds-react-form-field": "^1.1.31",
|
|
94
|
+
"@sproutsocial/seeds-react-grid": "^0.2.19",
|
|
95
|
+
"@sproutsocial/seeds-react-hooks": "^3.4.2",
|
|
96
|
+
"@sproutsocial/seeds-react-icon": "^2.5.4",
|
|
97
|
+
"@sproutsocial/seeds-react-image": "^1.0.35",
|
|
98
|
+
"@sproutsocial/seeds-react-indicator": "^1.0.54",
|
|
99
|
+
"@sproutsocial/seeds-react-input": "^1.5.45",
|
|
100
|
+
"@sproutsocial/seeds-react-keyboard-key": "^1.0.36",
|
|
101
|
+
"@sproutsocial/seeds-react-label": "^1.0.36",
|
|
102
|
+
"@sproutsocial/seeds-react-link": "^1.1.26",
|
|
103
|
+
"@sproutsocial/seeds-react-list": "^0.4.2",
|
|
104
|
+
"@sproutsocial/seeds-react-loader": "^1.0.36",
|
|
105
|
+
"@sproutsocial/seeds-react-loader-button": "^1.0.62",
|
|
106
|
+
"@sproutsocial/seeds-react-message": "^1.0.68",
|
|
107
|
+
"@sproutsocial/seeds-react-mixins": "^4.3.18",
|
|
108
|
+
"@sproutsocial/seeds-react-modal": "^4.0.0",
|
|
109
|
+
"@sproutsocial/seeds-react-narrative-kit": "^0.6.9",
|
|
110
|
+
"@sproutsocial/seeds-react-numeral": "^1.0.62",
|
|
111
|
+
"@sproutsocial/seeds-react-pagination": "^0.1.35",
|
|
112
|
+
"@sproutsocial/seeds-react-panel": "^1.2.4",
|
|
113
|
+
"@sproutsocial/seeds-react-peek-in": "^0.6.4",
|
|
114
|
+
"@sproutsocial/seeds-react-partner-logo": "^1.7.26",
|
|
115
|
+
"@sproutsocial/seeds-react-popout": "^2.5.26",
|
|
121
116
|
"@sproutsocial/seeds-react-portal": "^1.2.0",
|
|
122
|
-
"@sproutsocial/seeds-react-progress": "^0.2.
|
|
123
|
-
"@sproutsocial/seeds-react-radio": "^1.3.
|
|
124
|
-
"@sproutsocial/seeds-react-rating": "^1.0.
|
|
125
|
-
"@sproutsocial/seeds-react-segmented-control": "^1.1.
|
|
117
|
+
"@sproutsocial/seeds-react-progress": "^0.2.21",
|
|
118
|
+
"@sproutsocial/seeds-react-radio": "^1.3.37",
|
|
119
|
+
"@sproutsocial/seeds-react-rating": "^1.0.55",
|
|
120
|
+
"@sproutsocial/seeds-react-segmented-control": "^1.1.38",
|
|
126
121
|
"@sproutsocial/seeds-react-spot-illustration": "^1.2.5",
|
|
127
|
-
"@sproutsocial/seeds-react-select": "^1.1.
|
|
128
|
-
"@sproutsocial/seeds-react-skeleton": "^1.1.
|
|
129
|
-
"@sproutsocial/seeds-react-stack": "^1.0.
|
|
130
|
-
"@sproutsocial/seeds-react-switch": "^1.2.
|
|
122
|
+
"@sproutsocial/seeds-react-select": "^1.1.55",
|
|
123
|
+
"@sproutsocial/seeds-react-skeleton": "^1.1.34",
|
|
124
|
+
"@sproutsocial/seeds-react-stack": "^1.0.34",
|
|
125
|
+
"@sproutsocial/seeds-react-switch": "^1.2.54",
|
|
131
126
|
"@sproutsocial/seeds-react-system-props": "^3.2.1",
|
|
132
|
-
"@sproutsocial/seeds-react-table": "^1.0.
|
|
133
|
-
"@sproutsocial/seeds-react-tabs": "^1.4.
|
|
127
|
+
"@sproutsocial/seeds-react-table": "^1.0.57",
|
|
128
|
+
"@sproutsocial/seeds-react-tabs": "^1.4.28",
|
|
134
129
|
"@sproutsocial/seeds-react-text": "^1.5.5",
|
|
135
|
-
"@sproutsocial/seeds-react-textarea": "^1.0.
|
|
136
|
-
"@sproutsocial/seeds-react-toast": "^1.0.
|
|
137
|
-
"@sproutsocial/seeds-react-token": "^1.5.
|
|
138
|
-
"@sproutsocial/seeds-react-token-input": "^1.4.
|
|
139
|
-
"@sproutsocial/seeds-react-tooltip": "^1.1.
|
|
140
|
-
"@sproutsocial/seeds-react-theme": "^4.
|
|
141
|
-
"@sproutsocial/seeds-react-theme-provider": "^1.1.
|
|
130
|
+
"@sproutsocial/seeds-react-textarea": "^1.0.35",
|
|
131
|
+
"@sproutsocial/seeds-react-toast": "^1.0.56",
|
|
132
|
+
"@sproutsocial/seeds-react-token": "^1.5.23",
|
|
133
|
+
"@sproutsocial/seeds-react-token-input": "^1.4.67",
|
|
134
|
+
"@sproutsocial/seeds-react-tooltip": "^1.1.41",
|
|
135
|
+
"@sproutsocial/seeds-react-theme": "^4.7.0",
|
|
136
|
+
"@sproutsocial/seeds-react-theme-provider": "^1.1.31",
|
|
142
137
|
"@sproutsocial/seeds-react-utilities": "^4.3.0",
|
|
143
|
-
"@sproutsocial/seeds-react-visually-hidden": "^1.0.
|
|
138
|
+
"@sproutsocial/seeds-react-visually-hidden": "^1.0.35",
|
|
144
139
|
"scroll-into-view-if-needed": "^2.2.20",
|
|
145
140
|
"lodash.uniqueid": "^4.0.1",
|
|
146
141
|
"styled-system": "^5.1.5",
|
|
147
142
|
"@sproutsocial/seeds-border": "^1.7.1",
|
|
148
143
|
"@sproutsocial/seeds-color": "^2.3.0",
|
|
149
|
-
"@sproutsocial/seeds-depth": "^3.
|
|
144
|
+
"@sproutsocial/seeds-depth": "^3.6.0",
|
|
150
145
|
"@sproutsocial/seeds-motion": "^1.8.2",
|
|
151
146
|
"@sproutsocial/seeds-networkcolor": "^2.22.0",
|
|
152
147
|
"@sproutsocial/seeds-space": "^0.8.1",
|
|
@@ -157,13 +152,13 @@
|
|
|
157
152
|
"eslint-config-seeds": "*",
|
|
158
153
|
"@sproutsocial/seeds-border": "^1.7.1",
|
|
159
154
|
"@sproutsocial/seeds-color": "^2.3.0",
|
|
160
|
-
"@sproutsocial/seeds-depth": "^3.
|
|
155
|
+
"@sproutsocial/seeds-depth": "^3.6.0",
|
|
161
156
|
"@sproutsocial/seeds-icons": "^2.11.0",
|
|
162
157
|
"@sproutsocial/seeds-illustrations": "^2.4.0",
|
|
163
158
|
"@sproutsocial/seeds-motion": "^1.8.2",
|
|
164
159
|
"@sproutsocial/seeds-networkcolor": "^2.22.0",
|
|
165
160
|
"@sproutsocial/seeds-partner-logos": "^2.4.1",
|
|
166
|
-
"@sproutsocial/seeds-react-menu": "^1.18.
|
|
161
|
+
"@sproutsocial/seeds-react-menu": "^1.18.4",
|
|
167
162
|
"@sproutsocial/seeds-react-testing-library": "*",
|
|
168
163
|
"@sproutsocial/seeds-space": "^0.8.1",
|
|
169
164
|
"@sproutsocial/seeds-testing": "*",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../src/modal/v1/index.ts"],"sourcesContent":["// V1 Modal - Re-export from seeds-react-modal for optimal tree shaking\nexport {\n default as Modal,\n Modal as ModalV1,\n} from \"@sproutsocial/seeds-react-modal/v1\";\n\n// Explicit type exports\nexport type {\n TypeModalProps,\n TypeModalHeaderProps,\n TypeModalFooterProps,\n TypeModalContentProps,\n TypeModalCloseButtonProps,\n} from \"@sproutsocial/seeds-react-modal/v1\";\n"],"mappings":";AACA;AAAA,EACa,WAAXA;AAAA,EACS;AAAA,OACJ;","names":["default"]}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
export { default as Modal, Modal as ModalV1, TypeModalCloseButtonProps, TypeModalContentProps, TypeModalFooterProps, TypeModalHeaderProps, TypeModalProps } from '@sproutsocial/seeds-react-modal/v1';
|
|
2
|
-
import '@sproutsocial/seeds-react-modal/v2';
|
|
3
|
-
import '@sproutsocial/seeds-react-icon/v2';
|
|
4
|
-
import '@sproutsocial/seeds-react-table/v1';
|
|
5
|
-
import '@sproutsocial/seeds-react-table/v2';
|
package/dist/modal/v1/index.d.ts
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
export { default as Modal, Modal as ModalV1, TypeModalCloseButtonProps, TypeModalContentProps, TypeModalFooterProps, TypeModalHeaderProps, TypeModalProps } from '@sproutsocial/seeds-react-modal/v1';
|
|
2
|
-
import '@sproutsocial/seeds-react-modal/v2';
|
|
3
|
-
import '@sproutsocial/seeds-react-icon/v2';
|
|
4
|
-
import '@sproutsocial/seeds-react-table/v1';
|
|
5
|
-
import '@sproutsocial/seeds-react-table/v2';
|
package/dist/modal/v1/index.js
DELETED
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __create = Object.create;
|
|
3
|
-
var __defProp = Object.defineProperty;
|
|
4
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
-
var __export = (target, all) => {
|
|
9
|
-
for (var name in all)
|
|
10
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
-
};
|
|
12
|
-
var __copyProps = (to, from, except, desc) => {
|
|
13
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
-
for (let key of __getOwnPropNames(from))
|
|
15
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
-
}
|
|
18
|
-
return to;
|
|
19
|
-
};
|
|
20
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
-
mod
|
|
27
|
-
));
|
|
28
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
-
|
|
30
|
-
// src/modal/v1/index.ts
|
|
31
|
-
var v1_exports = {};
|
|
32
|
-
__export(v1_exports, {
|
|
33
|
-
Modal: () => import_v1.default,
|
|
34
|
-
ModalV1: () => import_v1.Modal
|
|
35
|
-
});
|
|
36
|
-
module.exports = __toCommonJS(v1_exports);
|
|
37
|
-
var import_v1 = __toESM(require("@sproutsocial/seeds-react-modal/v1"));
|
|
38
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
39
|
-
0 && (module.exports = {
|
|
40
|
-
Modal,
|
|
41
|
-
ModalV1
|
|
42
|
-
});
|
|
43
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/modal/v1/index.ts"],"sourcesContent":["// V1 Modal - Re-export from seeds-react-modal for optimal tree shaking\nexport {\n default as Modal,\n Modal as ModalV1,\n} from \"@sproutsocial/seeds-react-modal/v1\";\n\n// Explicit type exports\nexport type {\n TypeModalProps,\n TypeModalHeaderProps,\n TypeModalFooterProps,\n TypeModalContentProps,\n TypeModalCloseButtonProps,\n} from \"@sproutsocial/seeds-react-modal/v1\";\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA,gBAGO;","names":[]}
|