Skip to content

Commit

Permalink
chore(changesets): publish packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 22, 2024
1 parent bc52af7 commit 7a31e87
Show file tree
Hide file tree
Showing 39 changed files with 203 additions and 168 deletions.
6 changes: 0 additions & 6 deletions .changeset/2024-01-14-update-icons.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/blue-bottles-sing.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/brown-dragons-fetch.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/clean-olives-stare.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/eleven-ghosts-arrive.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/five-rules-dream.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/flat-parents-refuse.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/gorgeous-ties-help.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lemon-grapes-greet.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/many-seals-confess.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/perfect-lamps-listen.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/poor-hounds-invent.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silent-frogs-rush.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/strange-coins-hammer.md

This file was deleted.

25 changes: 0 additions & 25 deletions .changeset/swift-humans-kneel.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/swift-tips-kiss.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tasty-planes-dance.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ten-garlics-relate.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/unlucky-parrots-remain.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/witty-ways-leave.md

This file was deleted.

7 changes: 7 additions & 0 deletions packages/components-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @swisspost/design-system-components-react

## 1.0.26

### Patch Changes

- Updated dependencies:
- @swisspost/design-system-components@2.0.0

## 1.0.25

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/components-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@swisspost/design-system-components-react",
"version": "1.0.25",
"version": "1.0.26",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -19,7 +19,7 @@
"tsc": "tsc -p ."
},
"dependencies": {
"@swisspost/design-system-components": "workspace:1.7.1"
"@swisspost/design-system-components": "workspace:2.0.0"
},
"devDependencies": {
"@types/node": "18.19.7",
Expand Down
44 changes: 44 additions & 0 deletions packages/components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,49 @@
# @swisspost/design-system-components

## 2.0.0

### Major Changes

- Restricted `post-collapsible` to collapse behaviour only. The component remains unchanged when used with external controls, however, it no longer has a `header` slot.

To get the same look and feel as in the previous version, use the `post-accordion-item` component instead.

Before:

```html
<post-collapsible collapsed="" headingLevel="6">
<span slot="header">Titulum</span>
<p>Contentus momentus vero siteos et accusam iretea et justo.</p>
</post-collapsible>
```

After:

````html
<post-accordion-item collapsed="" headingLevel="6">
<span slot="header">Titulum</span>
<p>Contentus momentus vero siteos et accusam iretea et justo.</p>
</post-accordion-item>
``` (by [@alizedebray](https://github.com/alizedebray) with
[#2379](https://github.com/swisspost/design-system/pull/2379))
````

### Minor Changes

- Created a `post-accordion-item` to use as children for the `post-accordion` component. It replaces the `post-collapsible` component. (by [@alizedebray](https://github.com/alizedebray) with [#2466](https://github.com/swisspost/design-system/pull/2466))

- Updated the tooltip `min-height` and `max-width` and added a new property arrow to the tooltip, that defines wheter or not the pointer arrow is displayed. (by [@b1aserlu](https://github.com/b1aserlu) with [#2394](https://github.com/swisspost/design-system/pull/2394))

### Patch Changes

- Update the background color of accordion to be white on any background color other than white. The accordion background remains gray on white backgrounds. (by [@alizedebray](https://github.com/alizedebray) with [#2379](https://github.com/swisspost/design-system/pull/2379))

- Added a payload to the `collapseChange` event of the `post-collapsible` component. This payload is a boolean: `true` if the collapsible was opened, `false` if it was closed. (by [@alizedebray](https://github.com/alizedebray) with [#2379](https://github.com/swisspost/design-system/pull/2379))

- Updated the post-accordion background to be white on light and gray backgrounds. (by [@alizedebray](https://github.com/alizedebray) with [#2379](https://github.com/swisspost/design-system/pull/2379))
- Updated dependencies:
- @swisspost/[email protected]

## 1.7.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@swisspost/design-system-components",
"version": "1.7.1",
"version": "2.0.0",
"description": "A collection of web components built with Stencil JS for the Swiss Post Design System.",
"license": "Apache-2.0",
"main": "loader/index.cjs.js",
Expand Down Expand Up @@ -39,7 +39,7 @@
"dependencies": {
"@floating-ui/dom": "1.5.4",
"@oddbird/popover-polyfill": "0.2.3",
"@swisspost/design-system-styles": "workspace:6.5.1",
"@swisspost/design-system-styles": "workspace:6.6.0",
"ally.js": "1.4.1",
"long-press-event": "2.4.6"
},
Expand Down
11 changes: 11 additions & 0 deletions packages/demo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @swisspost/design-system-demo

## 7.1.3

### Patch Changes

- Updated copyright year to 2024 in the footer of all documentation. (by [@imagoiq](https://github.com/imagoiq) with [#2491](https://github.com/swisspost/design-system/pull/2491))

- Fixed links to new icons documentation. (by [@imagoiq](https://github.com/imagoiq) with [#2402](https://github.com/swisspost/design-system/pull/2402))
- Updated dependencies:
- @swisspost/design-system-styles@6.6.0
- @swisspost/design-system-intranet-header@5.0.7

## 7.1.2

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/demo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@swisspost/design-system-demo",
"version": "7.1.2",
"version": "7.1.3",
"description": "Pattern documentation, code snippets and implementation guidelines for the Design System Styles.",
"author": "Swiss Post <[email protected]>",
"license": "Apache-2.0",
Expand All @@ -25,8 +25,8 @@
"@ng-bootstrap/ng-bootstrap": "15.1.2",
"@popperjs/core": "2.11.8",
"@swimlane/ngx-datatable": "20.1.0",
"@swisspost/design-system-intranet-header": "workspace:5.0.6",
"@swisspost/design-system-styles": "workspace:6.5.1",
"@swisspost/design-system-intranet-header": "workspace:5.0.7",
"@swisspost/design-system-styles": "workspace:6.6.0",
"bootstrap": "5.3.2",
"core-js": "3.35.0",
"highlight.js": "11.9.0",
Expand Down
56 changes: 56 additions & 0 deletions packages/documentation/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,61 @@
# @swisspost/design-system-documentation

## 2.8.0

### Minor Changes

- Added a deprecation message to the badge documentation. (by [@b1aserlu](https://github.com/b1aserlu) with [#2410](https://github.com/swisspost/design-system/pull/2410))

- Updated the tooltip `min-height` and `max-width` and added a new property arrow to the tooltip, that defines wheter or not the pointer arrow is displayed. (by [@b1aserlu](https://github.com/b1aserlu) with [#2394](https://github.com/swisspost/design-system/pull/2394))

### Patch Changes

- Cleaned icon component controls from duplicate and null values. (by [@imagoiq](https://github.com/imagoiq) with [#2501](https://github.com/swisspost/design-system/pull/2501))

- Created a `post-accordion-item` to use as children for the `post-accordion` component. It replaces the `post-collapsible` component. (by [@alizedebray](https://github.com/alizedebray) with [#2466](https://github.com/swisspost/design-system/pull/2466))

- Added autolink to headings to be able to copy anchor link more easily from the documentation. (by [@imagoiq](https://github.com/imagoiq) with [#2467](https://github.com/swisspost/design-system/pull/2467))

- Updated copyright year to 2024 in the footer of all documentation. (by [@imagoiq](https://github.com/imagoiq) with [#2491](https://github.com/swisspost/design-system/pull/2491))

- Removed intranet-header nesting in sidebar. (by [@imagoiq](https://github.com/imagoiq) with [#2492](https://github.com/swisspost/design-system/pull/2492))

- Added additional information for setting up projects with content security policies that are using the `<post-icon>` component. (by [@b1aserlu](https://github.com/b1aserlu) with [#2406](https://github.com/swisspost/design-system/pull/2406))

- Restricted `post-collapsible` to collapse behaviour only. The component remains unchanged when used with external controls, however, it no longer has a `header` slot.

To get the same look and feel as in the previous version, use the `post-accordion-item` component instead.

Before:

```html
<post-collapsible collapsed="" headingLevel="6">
<span slot="header">Titulum</span>
<p>Contentus momentus vero siteos et accusam iretea et justo.</p>
</post-collapsible>
```

After:

````html
<post-accordion-item collapsed="" headingLevel="6">
<span slot="header">Titulum</span>
<p>Contentus momentus vero siteos et accusam iretea et justo.</p>
</post-accordion-item>
``` (by [@alizedebray](https://github.com/alizedebray) with
[#2379](https://github.com/swisspost/design-system/pull/2379))
````

- Fixed vertical rythmn which was not applied to content inside tab like Alert component. (by [@imagoiq](https://github.com/imagoiq) with [#2497](https://github.com/swisspost/design-system/pull/2497))

- Disable floating label when input is type color. (by [@imagoiq](https://github.com/imagoiq) with [#2457](https://github.com/swisspost/design-system/pull/2457))
- Updated dependencies:
- @swisspost/[email protected]
- @swisspost/[email protected]
- @swisspost/[email protected]
- @swisspost/[email protected]
- @swisspost/[email protected]

## 2.7.1

### Patch Changes
Expand Down
12 changes: 6 additions & 6 deletions packages/documentation/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@swisspost/design-system-documentation",
"version": "2.7.1",
"version": "2.8.0",
"description": "Swiss Post Design System Documentation.",
"author": "Swiss Post <[email protected]>",
"license": "Apache-2.0",
Expand All @@ -25,11 +25,11 @@
"snapshots": "percy exec -- cypress run --config-file ./cypress.snapshot.config.js --record --key 0995e768-43ec-42bd-a127-ff944a2ad8c9"
},
"dependencies": {
"@swisspost/design-system-components": "workspace:1.7.1",
"@swisspost/design-system-components-react": "workspace:1.0.25",
"@swisspost/design-system-icons": "workspace:1.0.17",
"@swisspost/design-system-styles": "workspace:6.5.1",
"@swisspost/internet-header": "workspace:1.13.2",
"@swisspost/design-system-components": "workspace:2.0.0",
"@swisspost/design-system-components-react": "workspace:1.0.26",
"@swisspost/design-system-icons": "workspace:1.1.0",
"@swisspost/design-system-styles": "workspace:6.6.0",
"@swisspost/internet-header": "workspace:1.13.3",
"bootstrap": "5.3.2"
},
"devDependencies": {
Expand Down
6 changes: 6 additions & 0 deletions packages/icons/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @swisspost/design-system-icons

## 1.1.0

### Minor Changes

- Updated icons number 1000, 1007, 1020, 1021, 1022, 1023, 1024, 1027, 1028, 1034, 1039, 1040, 1042, 1044, 1047, 1049, 2000, 2001, 2002, 2005, 2018, 2023, 2024, 2032, 2037, 2057, 2058, 2059, 2068, 2081, 2082, 2086, 2087, 2092, 2094, 2095, 2098, 2099, 2107, 2114, 2115, 2116, 2120, 2122, 2124, 2125, 2126, 2128, 2136, 2137, 2138, 2140, 2141, 2144, 2145, 2148, 2149, 2150, 2151, 2153, 2154, 2155, 2156, 2157, 2158, 2159, 2160, 2161, 2162, 2163, 2164, 2165, 2166, 2167, 2168, 2170, 2173, 2175, 2177, 2178, 2179, 2180, 2182, 2185, 2188, 2191, 2192, 2193, 2195, 2196, 2197, 2198, 2199, 2200, 2201, 2202, 2205, 2206, 2207, 2209, 2212, 2217, 2218, 2219, 2220, 2221, 2222, 2223, 2224, 2225, 2226, 2227, 2228, 2229, 2230, 2231, 2232, 2233, 2234, 2235, 2236, 2237, 2238, 2239, 2240, 2241, 2242, 2243, 2244, 2245, 2246, 2247, 2248, 2249, 2250, 2254, 2255, 2256, 2257, 2261, 2262, 2263, 2264, 2266, 2267, 2268, 2269, 2271, 2273, 2274, 2275, 2277, 2278, 2279, 2280, 2283, 2284, 2285, 2286, 2287, 2288, 2289, 2290, 2291, 2292, 2293, 2296, 2297, 2298, 2299, 2300, 2301, 2302, 2303, 2304, 2305, 2310, 2311, 2312, 2314, 2315, 2317, 2318, 2319, 2321, 2322, 2323, 2326, 2327, 2328, 2329, 2330, 2331, 2332, 2333, 2334, 2337, 2339, 2340, 2341, 2342, 2343, 2344, 2346, 2347, 2348, 2349, 2350, 2351, 2352, 2353, 2354, 2355, 2356, 2357, 2358, 2359, 2360, 2361, 2362, 2364, 2365, 2367, 2368, 2369, 2370, 2371, 2372, 2373, 2374, 2375, 2377, 2378, 2379, 2381, 2383, 2384, 2385, 2388, 2389, 2390, 2391, 2392, 2393, 2394, 2397, 2398, 2402, 2403, 2404, 2406, 2407, 2408, 2409, 2411, 2412, 2414, 2415, 2417, 2418, 2419, 2420, 2421, 2422, 2423, 2424, 2425, 2426, 2427, 2428, 2429, 2430, 2431, 2432, 2433, 2434, 2435, 2436, 2437, 2438, 2439, 2440, 2441, 2442, 2443, 2444, 2445, 2446, 2447, 2448, 2449, 2450, 2451, 2453, 2456, 2457, 2459, 2460, 2462, 2463, 2464, 2465, 2466, 2467, 2468, 2470, 2471, 2473, 2475, 2476, 2477, 2478, 2479, 2480, 2481, 2483, 2484, 2485, 2486, 2487, 2488, 2489, 2490, 2491, 2492, 2493, 2494, 2497, 2498, 2499, 2500, 2501, 2502, 2503, 2504, 2505, 2506, 2507, 2508, 2509, 2510, 2512, 2514, 2518, 2519, 2520, 2521, 2522, 2523, 2524, 2525, 2526, 2527, 2528, 2529, 2530, 2531, 2533, 2534, 2535, 2536, 2538, 2539, 2540, 2541, 2542, 2543, 2544, 2545, 2546, 2550, 2551, 2552, 2553, 2554, 2555, 2556, 2557, 2558, 2559, 2560, 2561, 2562, 2563, 2564, 2565, 2566, 2567, 3007, 3008, 3009, 3017, 3018, 3019, 3033, 3037, 3039, 3040, 3041, 3042, 3043, 3045, 3046, 3047, 3048, 3049, 3050, 3051, 3052, 3053, 3054, 3055, 3056, 3057, 3058, 3059, 3060, 3061, 3062, 3063, 3064, 3065, 3066, 3067, 3069, 3070, 3072, 3073, 3074, 3077, 3078, 3080, 3081, 3083, 3084, 3085, 3086, 3090, 3091, 3092, 3093, 3094, 3095, 3096, 3097, 3099, 3100, 3102, 3106, 3107, 3108, 3110, 3111, 3112, 3113, 3114, 3115, 3117, 3121, 3123, 3125, 3126, 3127, 3128, 3129, 3130, 3131, 3132, 3133, 3135, 3137, 3138, 3146, 3147, 3148, 3149, 3150, 3151, 3153, 3154, 3155, 3156, 3160, 3161, 3162, 3164, 3165, 3170, 3172, 3173, 3176, 3177, 3178, 3179, 3180, 3181, 3182, 3183, 3190, 3195, 3196, 3198, 3200, 3201, 3205, 3206, 3209, 3210, 3211, 3212, 3214, 3215, 3216, 3217, 3218, 3219, 3220, 3221, 3224, 3225, 3226, 3227, 3231, 3235, 3238, 3241, 3242, 3246, 3250, 3252, 3253, 3255, 3256, 3258, 3259, 3260, 8006, 8009, 8010, 8011, 8014, 8015, 8017, 8018 and 8019. Added icon number 2571. (by [@swisspost-bot](https://github.com/swisspost-bot) with [#2488](https://github.com/swisspost/design-system/pull/2488))

## 1.0.17

### Patch Changes
Expand Down
Loading

0 comments on commit 7a31e87

Please sign in to comment.