Skip to content

Commit 0673adb

Browse files
authored
Merge pull request #1597 from kintone-labs/develop
SSR-5220: v1.20.0 release
2 parents b523015 + 6b80318 commit 0673adb

File tree

190 files changed

+31513
-24894
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

190 files changed

+31513
-24894
lines changed

.eslintignore

-3
This file was deleted.

.eslintrc.js

-59
This file was deleted.

.storybook/addons/manager.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1+
import { addons, types, useArgs } from "@storybook/manager-api";
12
import React from "react";
2-
import { addons, types } from "@storybook/addons";
3-
import { useArgs } from "@storybook/api";
43

54
const buttonStyles = {
65
background: "none",

.storybook/main.js

+12-9
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
const custom = require("../webpack.config");
22

3-
module.exports = {
4-
"stories": ["../src/**/*.stories.@(js|jsx|ts|tsx)"],
5-
core: {
6-
builder: "webpack5",
7-
},
3+
const mainConfig = {
4+
stories: ["../src/**/*.stories.@(js|jsx|ts|tsx)"],
85
addons: [
96
"@storybook/addon-a11y",
107
"@storybook/addon-viewport",
118
"@storybook/addon-controls",
129
"@storybook/addon-actions",
13-
"./addons/preset.js"
10+
"./addons/preset.js",
1411
],
1512
webpackFinal: (config) => {
1613
return {
@@ -21,8 +18,14 @@ module.exports = {
2118
},
2219
module: {
2320
...config.module,
24-
rules: custom.module.rules
25-
}
21+
rules: custom.module.rules,
22+
},
2623
};
27-
}
24+
},
25+
framework: {
26+
name: "@storybook/web-components-webpack5",
27+
options: {},
28+
},
2829
};
30+
31+
export default mainConfig;

.storybook/preview.js

+12-7
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,38 @@
1+
import { withActions } from "@storybook/addon-actions/decorator";
2+
13
const newViewports = {
24
iPhone11ProMax: {
35
name: "iPhone 11 Pro Max",
46
styles: {
57
width: "414px",
6-
height: "896px"
8+
height: "896px",
79
},
810
},
911
iPhone11Pro: {
1012
name: "iPhone 11 Pro",
1113
styles: {
1214
width: "375px",
13-
height: "812px"
15+
height: "812px",
1416
},
1517
},
1618
iPhoneSE: {
1719
name: "iPhoneSE",
1820
styles: {
1921
width: "320px",
20-
height: "568px"
22+
height: "568px",
2123
},
2224
},
2325
googlePixel2: {
2426
name: "Google Pixel 2",
2527
styles: {
2628
width: "411px",
27-
height: "731px"
29+
height: "731px",
2830
},
2931
},
3032
};
31-
export const parameters = {
32-
viewport: { viewports: newViewports },
33-
}
33+
export default {
34+
parameters: {
35+
viewport: { viewports: newViewports, defaultViewport: "reset" },
36+
},
37+
decorators: [withActions],
38+
};

LICENSE

+3-56
Original file line numberDiff line numberDiff line change
@@ -27,36 +27,11 @@ Licenses for Third-Party Libraries
2727
we have included with the kuc.min.js.
2828

2929

30-
@webcomponents/webcomponentsjs
31-
repository: https://github.com/webcomponents/polyfills.git
32-
version: 2.8.0
33-
license: BSD-3-Clause
34-
# License
35-
36-
Everything in this repo is BSD style license unless otherwise specified.
37-
38-
Copyright (c) 2015 The Polymer Authors. All rights reserved.
39-
40-
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
41-
42-
* Redistributions of source code must retain the above copyright
43-
notice, this list of conditions and the following disclaimer.
44-
* Redistributions in binary form must reproduce the above
45-
copyright notice, this list of conditions and the following disclaimer
46-
in the documentation and/or other materials provided with the
47-
distribution.
48-
* Neither the name of Google Inc. nor the names of its
49-
contributors may be used to endorse or promote products derived from
50-
this software without specific prior written permission.
51-
52-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
53-
54-
5530
core-js
5631
repository: git+https://github.com/zloirock/core-js.git
57-
version: 3.39.0
32+
version: 3.41.0
5833
license: MIT
59-
Copyright (c) 2014-2024 Denis Pushkarev
34+
Copyright (c) 2014-2025 Denis Pushkarev
6035

6136
Permission is hereby granted, free of charge, to any person obtaining a copy
6237
of this software and associated documentation files (the "Software"), to deal
@@ -112,37 +87,9 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
11287
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
11388

11489

115-
regenerator-runtime
116-
repository: https://github.com/facebook/regenerator/tree/main/packages/runtime
117-
version: 0.14.1
118-
license: MIT
119-
MIT License
120-
121-
Copyright (c) 2014-present, Facebook, Inc.
122-
123-
Permission is hereby granted, free of charge, to any person obtaining a copy
124-
of this software and associated documentation files (the "Software"), to deal
125-
in the Software without restriction, including without limitation the rights
126-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
127-
copies of the Software, and to permit persons to whom the Software is
128-
furnished to do so, subject to the following conditions:
129-
130-
The above copyright notice and this permission notice shall be included in all
131-
copies or substantial portions of the Software.
132-
133-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
134-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
135-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
136-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
137-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
138-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
139-
SOFTWARE.
140-
141-
142-
14390
uuid
14491
repository: https://github.com/uuidjs/uuid.git
145-
version: 11.0.3
92+
version: 11.1.0
14693
license: MIT
14794
The MIT License (MIT)
14895

demos/esm-dev-app/.eslintrc.js

-4
This file was deleted.

demos/esm-dev-app/eslint.config.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
const config = require("@cybozu/eslint-config/flat/presets/prettier");
2+
module.exports = [...config];
3+

0 commit comments

Comments
 (0)