@sproutsocial/seeds-react-panel 1.0.10 → 1.1.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.
@@ -1,5 +1,5 @@
1
1
  yarn run v1.22.22
2
- $ tsup --dts
2
+ $ tsup --dts && cp src/panel.css dist/panel.css
3
3
  CLI Building entry: src/index.ts
4
4
  CLI Using tsconfig: tsconfig.json
5
5
  CLI tsup v8.5.0
@@ -8,14 +8,14 @@ $ tsup --dts
8
8
  CLI Cleaning output folder
9
9
  CJS Build start
10
10
  ESM Build start
11
- CJS dist/index.js 15.38 KB
12
- CJS dist/index.js.map 28.81 KB
13
- CJS ⚡️ Build success in 85ms
14
- ESM dist/esm/index.js 11.66 KB
15
- ESM dist/esm/index.js.map 28.47 KB
16
- ESM ⚡️ Build success in 85ms
11
+ CJS dist/index.js 22.93 KB
12
+ CJS dist/index.js.map 49.26 KB
13
+ CJS ⚡️ Build success in 104ms
14
+ ESM dist/esm/index.js 18.60 KB
15
+ ESM dist/esm/index.js.map 49.07 KB
16
+ ESM ⚡️ Build success in 105ms
17
17
  DTS Build start
18
- DTS ⚡️ Build success in 4052ms
19
- DTS dist/index.d.ts 9.03 KB
20
- DTS dist/index.d.mts 9.03 KB
21
- Done in 5.90s.
18
+ DTS ⚡️ Build success in 4595ms
19
+ DTS dist/index.d.ts 9.41 KB
20
+ DTS dist/index.d.mts 9.41 KB
21
+ Done in 6.15s.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,34 @@
1
1
  # @sproutsocial/seeds-react-panel
2
2
 
3
+ ## 1.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 487cab4: Migrate Panel to the hybrid Tailwind/styled-components rendering pattern
8
+ (PanelTailwind / PanelStyled / PanelHybrid + shared PanelShared/PanelMobile and
9
+ a static panel.css), mirroring the multi-part Drawer sibling. Panel now renders
10
+ via `seeds-*` CSS classes by default (no runtime CSS-in-JS) and transparently
11
+ falls back to the existing styled-components implementation for any consumer
12
+ passing styled-system/`COMMON`-mixin props or a `styled()` extension. The
13
+ sub-components (Panel.Header, Panel.Content, Panel.Footer) each route
14
+ independently. Because Panel's `width`/`zIndex` domain props collide with
15
+ styled-system prop names, the routing gate runs on the leftover props after the
16
+ domain props are destructured, so setting `width` no longer forces the styled
17
+ path. Ships a new `./dist/panel.css` export (wrapped in `@layer components` so
18
+ consumer Tailwind utilities win). Zero public API changes.
19
+
20
+ ## 1.0.11
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies [ef91a0d]
25
+ - @sproutsocial/seeds-react-system-props@3.1.4
26
+ - @sproutsocial/seeds-react-box@1.1.28
27
+ - @sproutsocial/seeds-react-button@2.3.4
28
+ - @sproutsocial/seeds-react-drawer@2.2.17
29
+ - @sproutsocial/seeds-react-icon@2.4.8
30
+ - @sproutsocial/seeds-react-text@1.5.3
31
+
3
32
  ## 1.0.10
4
33
 
5
34
  ### Patch Changes