Skip to content

Commit 0e90522

Browse files
committed
chore(release): [juno-icon] release 1.61.0
1 parent c198d84 commit 0e90522

File tree

12 files changed

+984
-1
lines changed

12 files changed

+984
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<title>Nx Workspace Project Graph</title>
6+
7+
8+
<meta name="viewport" content="width=device-width, initial-scale=1" />
9+
<link rel="icon" type="image/x-icon" href="favicon.ico" />
10+
11+
<script id="environment" src="static/environment.js"></script>
12+
13+
<!-- Theming -->
14+
<script>
15+
// On page load or when changing themes, best to add inline in `head` to avoid FOUC
16+
if (
17+
localStorage.getItem('nx-dep-graph-theme') === 'dark' ||
18+
(localStorage.getItem('nx-dep-graph-theme') === null &&
19+
window.matchMedia('(prefers-color-scheme: dark)').matches)
20+
) {
21+
document.documentElement.classList.add('dark');
22+
} else {
23+
document.documentElement.classList.remove('dark');
24+
}
25+
</script>
26+
<link rel="stylesheet" href="static/styles.css"></head>
27+
28+
<body class="bg-white text-slate-500 dark:bg-slate-900 dark:text-slate-400">
29+
<div id="app"></div>
30+
<script src="static/runtime.esm.js" ></script><script src="static/polyfills.esm.js" ></script><script src="static/main.esm.js" ></script></body>
31+
</html>

.nx/cache/nx-console-project-graph/static/3rdpartylicenses.txt

+858
Large diffs are not rendered by default.

.nx/cache/nx-console-project-graph/static/environment.js

+18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.

.nx/cache/nx-console-project-graph/static/main.esm.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
/*
2+
object-assign
3+
(c) Sindre Sorhus
4+
@license MIT
5+
*/
6+
7+
/*!
8+
Copyright (c) 2018 Jed Watson.
9+
Licensed under the MIT License (MIT), see
10+
http://jedwatson.github.io/classnames
11+
*/
12+
13+
/*!
14+
Embeddable Minimum Strictly-Compliant Promises/A+ 1.1.1 Thenable
15+
Copyright (c) 2013-2014 Ralf S. Engelschall (http://engelschall.com)
16+
Licensed under The MIT License (http://opensource.org/licenses/MIT)
17+
*/
18+
19+
/*! *****************************************************************************
20+
Copyright (c) Microsoft Corporation.
21+
22+
Permission to use, copy, modify, and/or distribute this software for any
23+
purpose with or without fee is hereby granted.
24+
25+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
26+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
27+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
28+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
29+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
30+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
31+
PERFORMANCE OF THIS SOFTWARE.
32+
***************************************************************************** */
33+
34+
/*! Bezier curve function generator. Copyright Gaetan Renaudeau. MIT License: http://en.wikipedia.org/wiki/MIT_License */
35+
36+
/*! Runge-Kutta spring physics function generator. Adapted from Framer.js, copyright Koen Bok. MIT License: http://en.wikipedia.org/wiki/MIT_License */
37+
38+
/**
39+
* @license React
40+
* use-sync-external-store-shim.production.min.js
41+
*
42+
* Copyright (c) Facebook, Inc. and its affiliates.
43+
*
44+
* This source code is licensed under the MIT license found in the
45+
* LICENSE file in the root directory of this source tree.
46+
*/
47+
48+
/** @license React vundefined
49+
* use-subscription.production.min.js
50+
*
51+
* Copyright (c) Facebook, Inc. and its affiliates.
52+
*
53+
* This source code is licensed under the MIT license found in the
54+
* LICENSE file in the root directory of this source tree.
55+
*/

.nx/cache/nx-console-project-graph/static/polyfills.esm.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.nx/cache/nx-console-project-graph/static/runtime.esm.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.nx/cache/nx-console-project-graph/static/styles.css

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/juno-icon/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11

2+
## [1.61.0](https://github.com/ringcentral/juno/compare/juno-icon-v1.60.0...juno-icon-v1.61.0) (2024-01-09)
3+
4+
5+
### Features
6+
7+
* **Icon:** add new icon AdditionalNumbers ([c198d84](https://github.com/ringcentral/juno/commit/c198d84e38b553c46a1f05190f65376a1e272214))
8+
29
## [1.60.0](https://github.com/ringcentral/juno/compare/juno-icon-v1.59.0...juno-icon-v1.60.0) (2023-12-28)
310

411

packages/juno-icon/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ringcentral/juno-icon",
3-
"version": "1.60.1",
3+
"version": "1.61.0",
44
"license": "MIT",
55
"author": "RingCentral",
66
"bugs": {

packages/juno-storybook/src/docs/icon-CHANGELOG.story.mdx

+7
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ import { Canvas, Meta, Story } from '@storybook/addon-docs';
77
<br />
88

99

10+
## [1.61.0](https://github.com/ringcentral/juno/compare/juno-icon-v1.60.0...juno-icon-v1.61.0) (2024-01-09)
11+
12+
13+
### Features
14+
15+
* **Icon:** add new icon AdditionalNumbers ([c198d84](https://github.com/ringcentral/juno/commit/c198d84e38b553c46a1f05190f65376a1e272214))
16+
1017
## [1.60.0](https://github.com/ringcentral/juno/compare/juno-icon-v1.59.0...juno-icon-v1.60.0) (2023-12-28)
1118

1219

0 commit comments

Comments
 (0)