@sproutsocial/seeds-react-panel 1.0.11 → 1.1.2

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 81ms
14
- ESM dist/esm/index.js 11.66 KB
15
- ESM dist/esm/index.js.map 28.47 KB
16
- ESM ⚡️ Build success in 83ms
11
+ CJS dist/index.js 22.92 KB
12
+ CJS dist/index.js.map 49.24 KB
13
+ CJS ⚡️ Build success in 30ms
14
+ ESM dist/esm/index.js 18.59 KB
15
+ ESM dist/esm/index.js.map 49.05 KB
16
+ ESM ⚡️ Build success in 31ms
17
17
  DTS Build start
18
- DTS ⚡️ Build success in 5112ms
19
- DTS dist/index.d.ts 9.03 KB
20
- DTS dist/index.d.mts 9.03 KB
21
- Done in 7.09s.
18
+ DTS ⚡️ Build success in 3802ms
19
+ DTS dist/index.d.ts 9.41 KB
20
+ DTS dist/index.d.mts 9.41 KB
21
+ Done in 5.41s.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,51 @@
1
1
  # @sproutsocial/seeds-react-panel
2
2
 
3
+ ## 1.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [3371484]
8
+ - @sproutsocial/seeds-react-icon@2.5.0
9
+ - @sproutsocial/seeds-react-theme@4.4.0
10
+ - @sproutsocial/seeds-react-button@2.3.6
11
+ - @sproutsocial/seeds-react-drawer@2.2.19
12
+ - @sproutsocial/seeds-react-box@1.1.30
13
+ - @sproutsocial/seeds-react-hooks@3.2.9
14
+
15
+ ## 1.1.1
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies [56661b6]
20
+ - Updated dependencies [40c02c4]
21
+ - Updated dependencies [56661b6]
22
+ - Updated dependencies [9bd3606]
23
+ - @sproutsocial/seeds-react-button@2.3.5
24
+ - @sproutsocial/seeds-react-system-props@3.2.0
25
+ - @sproutsocial/seeds-react-theme@4.3.2
26
+ - @sproutsocial/seeds-react-drawer@2.2.18
27
+ - @sproutsocial/seeds-react-box@1.1.29
28
+ - @sproutsocial/seeds-react-icon@2.4.9
29
+ - @sproutsocial/seeds-react-text@1.5.4
30
+ - @sproutsocial/seeds-react-hooks@3.2.8
31
+
32
+ ## 1.1.0
33
+
34
+ ### Minor Changes
35
+
36
+ - 487cab4: Migrate Panel to the hybrid Tailwind/styled-components rendering pattern
37
+ (PanelTailwind / PanelStyled / PanelHybrid + shared PanelShared/PanelMobile and
38
+ a static panel.css), mirroring the multi-part Drawer sibling. Panel now renders
39
+ via `seeds-*` CSS classes by default (no runtime CSS-in-JS) and transparently
40
+ falls back to the existing styled-components implementation for any consumer
41
+ passing styled-system/`COMMON`-mixin props or a `styled()` extension. The
42
+ sub-components (Panel.Header, Panel.Content, Panel.Footer) each route
43
+ independently. Because Panel's `width`/`zIndex` domain props collide with
44
+ styled-system prop names, the routing gate runs on the leftover props after the
45
+ domain props are destructured, so setting `width` no longer forces the styled
46
+ path. Ships a new `./dist/panel.css` export (wrapped in `@layer components` so
47
+ consumer Tailwind utilities win). Zero public API changes.
48
+
3
49
  ## 1.0.11
4
50
 
5
51
  ### Patch Changes