pds-dev-kit-web 1.9.0-beta.4 → 1.9.0-beta.6
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.
- package/dist/index.d.ts +2 -0
- package/dist/index.js +14 -0
- package/dist/src/common/assets/icons/fill/ArrowDown.js +1 -1
- package/dist/src/common/assets/icons/fill/ArrowUp.js +1 -1
- package/dist/src/common/assets/icons/line/CsBold.d.ts +4 -0
- package/dist/src/common/assets/icons/line/CsBold.js +34 -0
- package/dist/src/common/assets/icons/line/CsFace.d.ts +4 -0
- package/dist/src/common/assets/icons/line/CsFace.js +34 -0
- package/dist/src/common/assets/icons/line/index.d.ts +2 -0
- package/dist/src/common/assets/icons/line/index.js +4 -0
- package/dist/src/common/styles/colorSet/PaletteColor_Dark.json +1 -1
- package/dist/src/common/styles/colorSet/PaletteColor_light.json +1 -1
- package/dist/src/common/styles/colorSet/SemanticColor.json +3 -1
- package/dist/src/common/styles/colorSet/UIColor.json +3 -2
- package/dist/src/common/styles/colorSet/index.d.ts +97 -94
- package/dist/src/common/styles/colorSet/index.js +2 -2
- package/dist/src/common/styles/colorSet/ui-type.d.ts +1 -0
- package/dist/src/common/styles/movement/animationStyle.d.ts +8 -0
- package/dist/src/common/styles/movement/animationStyle.js +18 -0
- package/dist/src/common/styles/movement/keyframes.d.ts +14 -0
- package/dist/src/common/styles/movement/keyframes.js +23 -0
- package/dist/src/common/styles/movement/transitionStyle.d.ts +3 -0
- package/dist/src/common/styles/movement/transitionStyle.js +12 -0
- package/dist/src/common/styles/scroll/scrollbarStyle.d.ts +2 -0
- package/dist/src/common/styles/scroll/scrollbarStyle.js +14 -0
- package/dist/src/desktop/components/AdminList/AdminList.d.ts +2 -1
- package/dist/src/desktop/components/AdminList/AdminList.js +4 -4
- package/dist/src/desktop/components/AdminList/HeaderRow.d.ts +2 -1
- package/dist/src/desktop/components/AdminList/HeaderRow.js +21 -17
- package/dist/src/desktop/components/AdminListItem/AdminListItem.d.ts +1 -0
- package/dist/src/desktop/components/AdminListItem/AdminListItem.js +20 -15
- package/dist/src/desktop/components/DesktopAlertDialog/DesktopAlertDialog.js +5 -4
- package/dist/src/desktop/components/Dropdown/Dropdown.js +34 -3
- package/dist/src/desktop/components/EditApplyTextField/EditApplyTextField.js +15 -4
- package/dist/src/desktop/components/FloatingActionButton/FloatingActionButton.js +5 -4
- package/dist/src/desktop/components/IconButton/IconButton.js +7 -6
- package/dist/src/desktop/components/LottieReactionButton/LottieReactionButton.js +4 -3
- package/dist/src/desktop/components/MainButton/MainButton.d.ts +1 -1
- package/dist/src/desktop/components/MainButton/MainButton.js +129 -41
- package/dist/src/desktop/components/ReactionButton/ReactionButton.js +5 -1
- package/dist/src/desktop/components/Select/Select.js +29 -2
- package/dist/src/desktop/components/TextButton/TextButton.js +3 -2
- package/dist/src/desktop/components/TextField/TextField.js +35 -4
- package/dist/src/desktop/components/UploadIconButton/UploadIconButton.js +7 -6
- package/dist/src/desktop/components/UploadMainButton/UploadMainButton.d.ts +1 -1
- package/dist/src/desktop/components/UploadMainButton/UploadMainButton.js +141 -49
- package/dist/src/desktop/components/UploadMainButton/types.d.ts +0 -10
- package/dist/src/desktop/components/UploadMainButton/types.js +1 -11
- package/dist/src/desktop/components/UploadTextButton/UploadTextButton.js +3 -2
- package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFA.js +9 -12
- package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFB.js +8 -11
- package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFE.js +17 -20
- package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFL.js +11 -33
- package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSA.js +3 -2
- package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSD.js +3 -2
- package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSE.js +3 -2
- package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSF.js +5 -4
- package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSG.js +5 -4
- package/dist/src/desktop/panels/DesktopBasicModal/DesktopBasicModal.d.ts +3 -2
- package/dist/src/desktop/panels/DesktopBasicModal/DesktopBasicModal.js +32 -18
- package/dist/src/desktop/panels/DesktopHeadlessModal/DesktopHeadlessModal.js +12 -14
- package/dist/src/mobile/components/Dropdown/Dropdown.js +21 -3
- package/dist/src/mobile/components/FloatingActionButton/FloatingActionButton.js +4 -3
- package/dist/src/mobile/components/IconButton/IconButton.js +6 -5
- package/dist/src/mobile/components/LottieReactionButton/LottieReactionButton.js +3 -2
- package/dist/src/mobile/components/MainButton/MainButton.d.ts +1 -1
- package/dist/src/mobile/components/MainButton/MainButton.js +122 -37
- package/dist/src/mobile/components/MobileAlertDialog/MobileAlertDialog.js +5 -4
- package/dist/src/mobile/components/Select/Select.js +18 -2
- package/dist/src/mobile/components/TextButton/TextButton.js +2 -1
- package/dist/src/mobile/components/TextField/TextField.js +22 -4
- package/dist/src/mobile/components/UploadIconButton/UploadIconButton.js +6 -5
- package/dist/src/mobile/components/UploadMainButton/UploadMainButton.d.ts +1 -1
- package/dist/src/mobile/components/UploadMainButton/UploadMainButton.js +134 -42
- package/dist/src/mobile/components/UploadMainButton/types.d.ts +0 -10
- package/dist/src/mobile/components/UploadMainButton/types.js +1 -11
- package/dist/src/mobile/components/UploadTextButton/UploadTextButton.js +3 -2
- package/dist/src/mobile/panels/MobileBasicModal/MobileBasicModal.js +5 -4
- package/dist/storybook-static/{0.8a8ae8fa.iframe.bundle.d.ts → 0.2023c95c.iframe.bundle.d.ts} +0 -0
- package/dist/storybook-static/{0.8a8ae8fa.iframe.bundle.js → 0.2023c95c.iframe.bundle.js} +4 -4
- package/dist/storybook-static/{4.0cae350a.iframe.bundle.d.ts → 4.d1de0501.iframe.bundle.d.ts} +0 -0
- package/dist/storybook-static/{4.0cae350a.iframe.bundle.js → 4.d1de0501.iframe.bundle.js} +68 -68
- package/dist/storybook-static/{5.6dd988b7.iframe.bundle.d.ts → 5.2f192ddf.iframe.bundle.d.ts} +0 -0
- package/dist/storybook-static/{5.6dd988b7.iframe.bundle.js → 5.2f192ddf.iframe.bundle.js} +10 -10
- package/dist/storybook-static/{6.16e7a5f8.iframe.bundle.d.ts → 6.62fc7663.iframe.bundle.d.ts} +0 -0
- package/dist/storybook-static/{6.16e7a5f8.iframe.bundle.js → 6.62fc7663.iframe.bundle.js} +5 -5
- package/dist/storybook-static/{7.d9eac22c.iframe.bundle.d.ts → 7.3518bf24.iframe.bundle.d.ts} +0 -0
- package/dist/storybook-static/{7.d9eac22c.iframe.bundle.js → 7.3518bf24.iframe.bundle.js} +1 -1
- package/dist/storybook-static/{main.a2e80e11.iframe.bundle.d.ts → main.c8ffb728.iframe.bundle.d.ts} +296 -326
- package/dist/storybook-static/{main.a2e80e11.iframe.bundle.js → main.c8ffb728.iframe.bundle.js} +146 -57
- package/dist/storybook-static/{runtime~main.d6679bc3.iframe.bundle.d.ts → runtime~main.54fba058.iframe.bundle.d.ts} +0 -0
- package/dist/storybook-static/{runtime~main.d6679bc3.iframe.bundle.js → runtime~main.54fba058.iframe.bundle.js} +1 -1
- package/dist/storybook-static/{vendors~main.acdf7090.iframe.bundle.d.ts → vendors~main.dd7c8d3f.iframe.bundle.d.ts} +0 -0
- package/dist/storybook-static/{vendors~main.acdf7090.iframe.bundle.js → vendors~main.dd7c8d3f.iframe.bundle.js} +14 -14
- package/package.json +1 -1
- package/release-note.md +17 -7
|
File without changes
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
var promise = new Promise((function (resolve, reject) { installedChunkData = installedChunks[chunkId] = [resolve, reject]; }));
|
|
16
16
|
promises.push(installedChunkData[2] = promise);
|
|
17
17
|
var onScriptComplete, script = document.createElement("script");
|
|
18
|
-
script.charset = "utf-8", script.timeout = 120, __webpack_require__.nc && script.setAttribute("nonce", __webpack_require__.nc), script.src = function jsonpScriptSrc(chunkId) { return __webpack_require__.p + "" + ({}[chunkId] || chunkId) + "." + { 0: "
|
|
18
|
+
script.charset = "utf-8", script.timeout = 120, __webpack_require__.nc && script.setAttribute("nonce", __webpack_require__.nc), script.src = function jsonpScriptSrc(chunkId) { return __webpack_require__.p + "" + ({}[chunkId] || chunkId) + "." + { 0: "2023c95c", 4: "d1de0501", 5: "2f192ddf", 6: "62fc7663", 7: "3518bf24" }[chunkId] + ".iframe.bundle.js"; }(chunkId);
|
|
19
19
|
var error = new Error;
|
|
20
20
|
onScriptComplete = function (event) { script.onerror = script.onload = null, clearTimeout(timeout); var chunk = installedChunks[chunkId]; if (0 !== chunk) {
|
|
21
21
|
if (chunk) {
|
|
File without changes
|
|
@@ -69,7 +69,7 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
|
69
69
|
}
|
|
70
70
|
return to.concat(ar || Array.prototype.slice.call(from));
|
|
71
71
|
};
|
|
72
|
-
/*! For license information please see vendors~main.
|
|
72
|
+
/*! For license information please see vendors~main.dd7c8d3f.iframe.bundle.js.LICENSE.txt */
|
|
73
73
|
(window.webpackJsonp = window.webpackJsonp || []).push([[3], [function (module, exports, __webpack_require__) {
|
|
74
74
|
"use strict";
|
|
75
75
|
module.exports = __webpack_require__(874);
|
|
@@ -4080,7 +4080,7 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
|
4080
4080
|
"use strict";
|
|
4081
4081
|
__webpack_require__.d(__webpack_exports__, "c", (function () { return addDecorator; })), __webpack_require__.d(__webpack_exports__, "e", (function () { return addParameters; })), __webpack_require__.d(__webpack_exports__, "d", (function () { return addLoader; })), __webpack_require__.d(__webpack_exports__, "b", (function () { return addArgsEnhancer; })), __webpack_require__.d(__webpack_exports__, "a", (function () { return addArgTypesEnhancer; })), __webpack_require__.d(__webpack_exports__, "g", (function () { return setGlobalRender; })), __webpack_require__.d(__webpack_exports__, "f", (function () { return client_api_ClientApi; }));
|
|
4082
4082
|
__webpack_require__(16), __webpack_require__(45), __webpack_require__(7), __webpack_require__(12), __webpack_require__(21), __webpack_require__(163), __webpack_require__(10), __webpack_require__(18), __webpack_require__(15), __webpack_require__(17), __webpack_require__(19), __webpack_require__(83), __webpack_require__(99), __webpack_require__(54), __webpack_require__(26), __webpack_require__(24);
|
|
4083
|
-
var browser = __webpack_require__(31), browser_default = __webpack_require__.n(browser), esm = __webpack_require__(20), dist_esm = __webpack_require__(5), dist = __webpack_require__(40), hooks = __webpack_require__(
|
|
4083
|
+
var browser = __webpack_require__(31), browser_default = __webpack_require__.n(browser), esm = __webpack_require__(20), dist_esm = __webpack_require__(5), dist = __webpack_require__(40), hooks = __webpack_require__(2156);
|
|
4084
4084
|
__webpack_require__(9), __webpack_require__(73);
|
|
4085
4085
|
function _objectWithoutProperties(source, excluded) { if (null == source)
|
|
4086
4086
|
return {}; var key, i, target = function _objectWithoutPropertiesLoose(source, excluded) { if (null == source)
|
|
@@ -4172,7 +4172,7 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
|
4172
4172
|
"use strict";
|
|
4173
4173
|
__webpack_require__.d(__webpack_exports__, "a", (function () { return SyntaxHighlighter; }));
|
|
4174
4174
|
__webpack_require__(68), __webpack_require__(10);
|
|
4175
|
-
var react__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(0), react__WEBPACK_IMPORTED_MODULE_2___default = __webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_2__), LazySyntaxHighlighter = react__WEBPACK_IMPORTED_MODULE_2___default.a.lazy((function () { return __webpack_require__.e(4).then(__webpack_require__.bind(null,
|
|
4175
|
+
var react__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(0), react__WEBPACK_IMPORTED_MODULE_2___default = __webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_2__), LazySyntaxHighlighter = react__WEBPACK_IMPORTED_MODULE_2___default.a.lazy((function () { return __webpack_require__.e(4).then(__webpack_require__.bind(null, 2154)); })), SyntaxHighlighter = function SyntaxHighlighter(props) { return react__WEBPACK_IMPORTED_MODULE_2___default.a.createElement(react__WEBPACK_IMPORTED_MODULE_2__.Suspense, { fallback: react__WEBPACK_IMPORTED_MODULE_2___default.a.createElement("div", null) }, react__WEBPACK_IMPORTED_MODULE_2___default.a.createElement(LazySyntaxHighlighter, props)); };
|
|
4176
4176
|
SyntaxHighlighter.displayName = "SyntaxHighlighter";
|
|
4177
4177
|
}, function (module, __webpack_exports__, __webpack_require__) {
|
|
4178
4178
|
"use strict";
|
|
@@ -4392,7 +4392,7 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
|
4392
4392
|
"use strict";
|
|
4393
4393
|
__webpack_require__.d(__webpack_exports__, "a", (function () { return withLinks; }));
|
|
4394
4394
|
__webpack_require__(315), __webpack_require__(32), __webpack_require__(24), __webpack_require__(19), __webpack_require__(127), __webpack_require__(68), __webpack_require__(10), __webpack_require__(7), __webpack_require__(12), __webpack_require__(21), __webpack_require__(18), __webpack_require__(15), __webpack_require__(17), __webpack_require__(30), __webpack_require__(16), __webpack_require__(9);
|
|
4395
|
-
var global_window = __webpack_require__(11), window_default = __webpack_require__.n(global_window), esm = (__webpack_require__(388), __webpack_require__(152)), make_decorator = __webpack_require__(
|
|
4395
|
+
var global_window = __webpack_require__(11), window_default = __webpack_require__.n(global_window), esm = (__webpack_require__(388), __webpack_require__(152)), make_decorator = __webpack_require__(2157), dist_esm = __webpack_require__(25);
|
|
4396
4396
|
__webpack_require__(40), __webpack_require__(5), "".concat("storybook/links", "/navigate"), "".concat("storybook/links", "/request"), "".concat("storybook/links", "/receive");
|
|
4397
4397
|
var preview_document = window_default.a.document, HTMLElement = window_default.a.HTMLElement, preview_navigate = (window_default.a.__STORYBOOK_STORY_STORE__, window_default.a.__STORYBOOK_CLIENT_API__, function navigate(params) { return esm.a.getChannel().emit(dist_esm.SELECT_STORY, params); }), linksListener = function linksListener(e) { var target = e.target; if (target instanceof HTMLElement) {
|
|
4398
4398
|
var _element$dataset = target.dataset, kind = _element$dataset.sbKind, story = _element$dataset.sbStory;
|
|
@@ -5283,7 +5283,7 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
|
5283
5283
|
for (i = 0; i < sourceSymbolKeys.length; i++)
|
|
5284
5284
|
key = sourceSymbolKeys[i], excluded.indexOf(key) >= 0 || Object.prototype.propertyIsEnumerable.call(source, key) && (target[key] = source[key]);
|
|
5285
5285
|
} return target; }
|
|
5286
|
-
var GlobalScrollAreaStyles = react__WEBPACK_IMPORTED_MODULE_5___default.a.lazy((function () { return __webpack_require__.e(7).then(__webpack_require__.bind(null,
|
|
5286
|
+
var GlobalScrollAreaStyles = react__WEBPACK_IMPORTED_MODULE_5___default.a.lazy((function () { return __webpack_require__.e(7).then(__webpack_require__.bind(null, 2152)); })), OverlayScrollbars = react__WEBPACK_IMPORTED_MODULE_5___default.a.lazy((function () { return __webpack_require__.e(6).then(__webpack_require__.bind(null, 2153)); })), Scroller = function Scroller(_ref) { _ref.horizontal, _ref.vertical; var props = _objectWithoutProperties(_ref, ["horizontal", "vertical"]); return react__WEBPACK_IMPORTED_MODULE_5___default.a.createElement(react__WEBPACK_IMPORTED_MODULE_5__.Suspense, { fallback: react__WEBPACK_IMPORTED_MODULE_5___default.a.createElement("div", props) }, react__WEBPACK_IMPORTED_MODULE_5___default.a.createElement(GlobalScrollAreaStyles, null), react__WEBPACK_IMPORTED_MODULE_5___default.a.createElement(OverlayScrollbars, _extends({ options: { scrollbars: { autoHide: "leave" } } }, props))); };
|
|
5287
5287
|
Scroller.displayName = "Scroller";
|
|
5288
5288
|
var ScrollArea = Object(_storybook_theming__WEBPACK_IMPORTED_MODULE_6__.styled)(Scroller)((function (_ref2) { return _ref2.vertical ? { overflowY: "auto", height: "100%" } : { overflowY: "hidden" }; }), (function (_ref3) { return _ref3.horizontal ? { overflowX: "auto", width: "100%" } : { overflowX: "hidden" }; }));
|
|
5289
5289
|
ScrollArea.defaultProps = { horizontal: !1, vertical: !1 };
|
|
@@ -5547,7 +5547,7 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
|
5547
5547
|
"use strict";
|
|
5548
5548
|
__webpack_require__.d(__webpack_exports__, "ColorControl", (function () { return ColorControl; }));
|
|
5549
5549
|
__webpack_require__(68), __webpack_require__(10);
|
|
5550
|
-
var react__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(0), react__WEBPACK_IMPORTED_MODULE_2___default = __webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_2__), LazyColorControl = react__WEBPACK_IMPORTED_MODULE_2___default.a.lazy((function () { return __webpack_require__.e(5).then(__webpack_require__.bind(null,
|
|
5550
|
+
var react__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(0), react__WEBPACK_IMPORTED_MODULE_2___default = __webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_2__), LazyColorControl = react__WEBPACK_IMPORTED_MODULE_2___default.a.lazy((function () { return __webpack_require__.e(5).then(__webpack_require__.bind(null, 2155)); })), ColorControl = function ColorControl(props) { return react__WEBPACK_IMPORTED_MODULE_2___default.a.createElement(react__WEBPACK_IMPORTED_MODULE_2__.Suspense, { fallback: react__WEBPACK_IMPORTED_MODULE_2___default.a.createElement("div", null) }, react__WEBPACK_IMPORTED_MODULE_2___default.a.createElement(LazyColorControl, props)); };
|
|
5551
5551
|
ColorControl.displayName = "ColorControl";
|
|
5552
5552
|
}, function (module, __webpack_exports__, __webpack_require__) {
|
|
5553
5553
|
"use strict";
|
|
@@ -8994,7 +8994,7 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
|
8994
8994
|
void 0 !== combined && (acc[key] = combined);
|
|
8995
8995
|
}
|
|
8996
8996
|
else
|
|
8997
|
-
acc[key] = value[key]; return acc; }), {}) : update; }, esm_hooks = __webpack_require__(
|
|
8997
|
+
acc[key] = value[key]; return acc; }), {}) : update; }, esm_hooks = __webpack_require__(2156), STORY_KIND_PATH_SEPARATOR = (__webpack_require__(213), /\s*\/\s*/), esm_parameters = __webpack_require__(95), ensureArgTypes_ensureArgTypes = function ensureArgTypes(context) { var _context$parameters = context.parameters, _context$parameters$a = _context$parameters.argTypes, userArgTypes = void 0 === _context$parameters$a ? {} : _context$parameters$a, _context$parameters$a2 = _context$parameters.args, args = void 0 === _context$parameters$a2 ? {} : _context$parameters$a2; if (!args)
|
|
8998
8998
|
return userArgTypes; var argTypes = mapValues_default()(args, (function (_arg, name) { return { name: name }; })); return Object(esm_parameters.a)(argTypes, userArgTypes); };
|
|
8999
8999
|
function inferArgTypes_typeof(obj) { return inferArgTypes_typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function _typeof(obj) { return typeof obj; } : function _typeof(obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, inferArgTypes_typeof(obj); }
|
|
9000
9000
|
var story_store_templateObject, story_store_templateObject2, _templateObject3, inferArgTypes_inferType = function inferType(value, name, visited) { var type = inferArgTypes_typeof(value); switch (type) {
|
|
@@ -9781,7 +9781,7 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
|
9781
9781
|
names = _names2[0];
|
|
9782
9782
|
} 1 !== names.length && "string" != typeof names[names.length - 1] && (options = Object.assign({}, config, names.pop())); var namesObject = names[0]; 1 === names.length && "string" != typeof namesObject || (namesObject = {}, names.forEach((function (name) { namesObject[name] = name; }))); var actionsObject = {}; return Object.keys(namesObject).forEach((function (name) { actionsObject[name] = action(namesObject[name], options); })), actionsObject; }, browser = (__webpack_require__(45), __webpack_require__(31)), browser_default = __webpack_require__.n(browser), ts_dedent_esm = __webpack_require__(20);
|
|
9783
9783
|
function _taggedTemplateLiteral(strings, raw) { return raw || (raw = strings.slice(0)), Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
|
|
9784
|
-
var withActions_templateObject, decorateAction_decorateAction = function decorateAction(_decorators) { return browser_default()((function () { }), Object(ts_dedent_esm.a)(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n decorateAction is no longer supported as of Storybook 6.0.\n "])))); }, deprecatedCallback = browser_default()((function () { }), "decorate.* is no longer supported as of Storybook 6.0."), decorateAction_decorate = function decorate(_decorators) { return browser_default()((function () { return { action: deprecatedCallback, actions: deprecatedCallback, withActions: deprecatedCallback }; }), Object(ts_dedent_esm.a)(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n decorate is deprecated, please configure addon-actions using the addParameter api:\n \n addParameters({\n actions: {\n handles: options\n },\n });\n "])))); }, global_window = (__webpack_require__(27), __webpack_require__(86), __webpack_require__(118), __webpack_require__(32), __webpack_require__(24), __webpack_require__(11)), window_default = __webpack_require__.n(global_window), hooks = __webpack_require__(
|
|
9784
|
+
var withActions_templateObject, decorateAction_decorateAction = function decorateAction(_decorators) { return browser_default()((function () { }), Object(ts_dedent_esm.a)(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n decorateAction is no longer supported as of Storybook 6.0.\n "])))); }, deprecatedCallback = browser_default()((function () { }), "decorate.* is no longer supported as of Storybook 6.0."), decorateAction_decorate = function decorate(_decorators) { return browser_default()((function () { return { action: deprecatedCallback, actions: deprecatedCallback, withActions: deprecatedCallback }; }), Object(ts_dedent_esm.a)(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n decorate is deprecated, please configure addon-actions using the addParameter api:\n \n addParameters({\n actions: {\n handles: options\n },\n });\n "])))); }, global_window = (__webpack_require__(27), __webpack_require__(86), __webpack_require__(118), __webpack_require__(32), __webpack_require__(24), __webpack_require__(11)), window_default = __webpack_require__.n(global_window), hooks = __webpack_require__(2156), make_decorator = __webpack_require__(2157);
|
|
9785
9785
|
function _toConsumableArray(arr) { return function _arrayWithoutHoles(arr) { if (Array.isArray(arr))
|
|
9786
9786
|
return withActions_arrayLikeToArray(arr); }(arr) || function _iterableToArray(iter) { if ("undefined" != typeof Symbol && Symbol.iterator in Object(iter))
|
|
9787
9787
|
return Array.from(iter); }(arr) || withActions_unsupportedIterableToArray(arr) || function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }(); }
|
|
@@ -20286,7 +20286,7 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
|
20286
20286
|
if ("default" !== key && Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
20287
20287
|
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
|
20288
20288
|
desc && (desc.get || desc.set) ? Object.defineProperty(newObj, key, desc) : newObj[key] = obj[key];
|
|
20289
|
-
} newObj.default = obj, cache && cache.set(obj, newObj); return newObj; }(__webpack_require__(0)), _kapellmeister = (_interopRequireDefault(__webpack_require__(2)), __webpack_require__(
|
|
20289
|
+
} newObj.default = obj, cache && cache.set(obj, newObj); return newObj; }(__webpack_require__(0)), _kapellmeister = (_interopRequireDefault(__webpack_require__(2)), __webpack_require__(2146)), _mergeKeys = _interopRequireDefault(__webpack_require__(1548)), _types = __webpack_require__(1549), _utils = __webpack_require__(583);
|
|
20290
20290
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
20291
20291
|
function _getRequireWildcardCache(nodeInterop) { if ("function" != typeof WeakMap)
|
|
20292
20292
|
return null; var cacheBabelInterop = new WeakMap, cacheNodeInterop = new WeakMap; return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
@@ -20381,7 +20381,7 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
|
20381
20381
|
exports.ENTER = "ENTER";
|
|
20382
20382
|
exports.UPDATE = "UPDATE";
|
|
20383
20383
|
exports.LEAVE = "LEAVE";
|
|
20384
|
-
}, , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , function (module, __webpack_exports__, __webpack_require__) {
|
|
20384
|
+
}, , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , function (module, __webpack_exports__, __webpack_require__) {
|
|
20385
20385
|
"use strict";
|
|
20386
20386
|
__webpack_require__.r(__webpack_exports__);
|
|
20387
20387
|
var config_namespaceObject = {};
|
|
@@ -21824,7 +21824,7 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
|
21824
21824
|
__webpack_require__.r(__webpack_exports__);
|
|
21825
21825
|
var addDecorator_namespaceObject = {};
|
|
21826
21826
|
__webpack_require__.r(addDecorator_namespaceObject), __webpack_require__.d(addDecorator_namespaceObject, "decorators", (function () { return decorators; }));
|
|
21827
|
-
var _templateObject, client_api = __webpack_require__(153), esm = __webpack_require__(5), hooks = (__webpack_require__(10), __webpack_require__(15), __webpack_require__(17), __webpack_require__(24), __webpack_require__(
|
|
21827
|
+
var _templateObject, client_api = __webpack_require__(153), esm = __webpack_require__(5), hooks = (__webpack_require__(10), __webpack_require__(15), __webpack_require__(17), __webpack_require__(24), __webpack_require__(2156)), global_window = ("".concat("storybook/background", "/update"), __webpack_require__(16), __webpack_require__(45), __webpack_require__(127), __webpack_require__(9), __webpack_require__(61), __webpack_require__(27), __webpack_require__(54), __webpack_require__(11)), window_default = __webpack_require__.n(global_window), ts_dedent_esm = __webpack_require__(20);
|
|
21828
21828
|
function _taggedTemplateLiteral(strings, raw) { return raw || (raw = strings.slice(0)), Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
|
|
21829
21829
|
var withGrid_templateObject, helpers_document = window_default.a.document, clearStyles = function clearStyles(selector) { (Array.isArray(selector) ? selector : [selector]).forEach(clearStyle); }, clearStyle = function clearStyle(selector) { var element = helpers_document.getElementById(selector); element && element.parentElement.removeChild(element); }, browser = __webpack_require__(31);
|
|
21830
21830
|
var deprecatedCellSizeWarning = __webpack_require__.n(browser)()((function () { }), Object(ts_dedent_esm.a)(withGrid_templateObject || (withGrid_templateObject = function withGrid_taggedTemplateLiteral(strings, raw) { return raw || (raw = strings.slice(0)), Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }(["\n Backgrounds Addon: The cell size parameter has been changed.\n\n - parameters.grid.cellSize should now be parameters.backgrounds.grid.cellSize\n See https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#deprecated-grid-parameter\n "])))), decorators = [function withGrid(StoryFn, context) { var _globals$BACKGROUNDS_, _parameters$grid, _gridParameters$offse, _gridParameters$offse2, gridSize, globals = context.globals, parameters = context.parameters, gridParameters = parameters.backgrounds.grid, isActive = !0 === (null === (_globals$BACKGROUNDS_ = globals.backgrounds) || void 0 === _globals$BACKGROUNDS_ ? void 0 : _globals$BACKGROUNDS_.grid) && !0 !== gridParameters.disable, cellAmount = gridParameters.cellAmount, cellSize = gridParameters.cellSize, opacity = gridParameters.opacity, isInDocs = "docs" === context.viewMode; null !== (_parameters$grid = parameters.grid) && void 0 !== _parameters$grid && _parameters$grid.cellSize ? (gridSize = parameters.grid.cellSize, deprecatedCellSizeWarning()) : gridSize = cellSize; var defaultOffset = void 0 === parameters.layout || "padded" === parameters.layout ? 16 : 0, offsetX = null !== (_gridParameters$offse = gridParameters.offsetX) && void 0 !== _gridParameters$offse ? _gridParameters$offse : isInDocs ? 20 : defaultOffset, offsetY = null !== (_gridParameters$offse2 = gridParameters.offsetY) && void 0 !== _gridParameters$offse2 ? _gridParameters$offse2 : isInDocs ? 20 : defaultOffset, gridStyles = Object(hooks.d)((function () { var selector = "docs" === context.viewMode ? "#anchor--".concat(context.id, " .docs-story") : ".sb-show-main", backgroundSize = ["".concat(gridSize * cellAmount, "px ").concat(gridSize * cellAmount, "px"), "".concat(gridSize * cellAmount, "px ").concat(gridSize * cellAmount, "px"), "".concat(gridSize, "px ").concat(gridSize, "px"), "".concat(gridSize, "px ").concat(gridSize, "px")].join(", "); return "\n ".concat(selector, " {\n background-size: ").concat(backgroundSize, " !important;\n background-position: ").concat(offsetX, "px ").concat(offsetY, "px, ").concat(offsetX, "px ").concat(offsetY, "px, ").concat(offsetX, "px ").concat(offsetY, "px, ").concat(offsetX, "px ").concat(offsetY, "px !important;\n background-blend-mode: difference !important;\n background-image: linear-gradient(rgba(130, 130, 130, ").concat(opacity, ") 1px, transparent 1px),\n linear-gradient(90deg, rgba(130, 130, 130, ").concat(opacity, ") 1px, transparent 1px),\n linear-gradient(rgba(130, 130, 130, ").concat(opacity / 2, ") 1px, transparent 1px),\n linear-gradient(90deg, rgba(130, 130, 130, ").concat(opacity / 2, ") 1px, transparent 1px) !important;\n }\n "); }), [gridSize]); return Object(hooks.c)((function () { var selectorId = "docs" === context.viewMode ? "addon-backgrounds-grid-docs-".concat(context.id) : "addon-backgrounds-grid"; isActive ? function addGridStyle(selector, css) { var existingStyle = helpers_document.getElementById(selector); if (existingStyle)
|
|
@@ -21874,7 +21874,7 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
|
21874
21874
|
__webpack_require__.r(__webpack_exports__);
|
|
21875
21875
|
var preview_namespaceObject = {};
|
|
21876
21876
|
__webpack_require__.r(preview_namespaceObject), __webpack_require__.d(preview_namespaceObject, "decorators", (function () { return decorators; })), __webpack_require__.d(preview_namespaceObject, "globals", (function () { return globals; }));
|
|
21877
|
-
var client_api = __webpack_require__(153), esm = __webpack_require__(5), hooks = __webpack_require__(
|
|
21877
|
+
var client_api = __webpack_require__(153), esm = __webpack_require__(5), hooks = __webpack_require__(2156);
|
|
21878
21878
|
function getDocumentWidthAndHeight() { var container = document.documentElement, height = Math.max(container.scrollHeight, container.offsetHeight); return { width: Math.max(container.scrollWidth, container.offsetWidth), height: height }; }
|
|
21879
21879
|
function setCanvasWidthAndHeight(canvas, context, _ref) { var width = _ref.width, height = _ref.height; canvas.style.width = "".concat(width, "px"), canvas.style.height = "".concat(height, "px"); var scale = window.devicePixelRatio; canvas.width = Math.floor(width * scale), canvas.height = Math.floor(height * scale), context.scale(scale, scale); }
|
|
21880
21880
|
var state = {};
|
|
@@ -22040,7 +22040,7 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
|
22040
22040
|
__webpack_require__.r(__webpack_exports__);
|
|
22041
22041
|
var addDecorator_namespaceObject = {};
|
|
22042
22042
|
__webpack_require__.r(addDecorator_namespaceObject), __webpack_require__.d(addDecorator_namespaceObject, "decorators", (function () { return decorators; })), __webpack_require__.d(addDecorator_namespaceObject, "globals", (function () { return addDecorator_globals; }));
|
|
22043
|
-
var _templateObject, client_api = __webpack_require__(153), esm = __webpack_require__(5), hooks = __webpack_require__(
|
|
22043
|
+
var _templateObject, client_api = __webpack_require__(153), esm = __webpack_require__(5), hooks = __webpack_require__(2156), clearStyles = function clearStyles(selector) { (Array.isArray(selector) ? selector : [selector]).forEach(clearStyle); }, clearStyle = function clearStyle(selector) { var element = document.getElementById(selector); element && element.parentElement && element.parentElement.removeChild(element); }, ts_dedent_esm = __webpack_require__(20);
|
|
22044
22044
|
var outlineCSS = function (selector) { return Object(ts_dedent_esm.a)(_templateObject || (_templateObject = function _taggedTemplateLiteral(strings, raw) { return raw || (raw = strings.slice(0)), Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }(["\n ", " body {\n outline: 1px solid #2980b9 !important;\n }\n\n ", " article {\n outline: 1px solid #3498db !important;\n }\n\n ", " nav {\n outline: 1px solid #0088c3 !important;\n }\n\n ", " aside {\n outline: 1px solid #33a0ce !important;\n }\n\n ", " section {\n outline: 1px solid #66b8da !important;\n }\n\n ", " header {\n outline: 1px solid #99cfe7 !important;\n }\n\n ", " footer {\n outline: 1px solid #cce7f3 !important;\n }\n\n ", " h1 {\n outline: 1px solid #162544 !important;\n }\n\n ", " h2 {\n outline: 1px solid #314e6e !important;\n }\n\n ", " h3 {\n outline: 1px solid #3e5e85 !important;\n }\n\n ", " h4 {\n outline: 1px solid #449baf !important;\n }\n\n ", " h5 {\n outline: 1px solid #c7d1cb !important;\n }\n\n ", " h6 {\n outline: 1px solid #4371d0 !important;\n }\n\n ", " main {\n outline: 1px solid #2f4f90 !important;\n }\n\n ", " address {\n outline: 1px solid #1a2c51 !important;\n }\n\n ", " div {\n outline: 1px solid #036cdb !important;\n }\n\n ", " p {\n outline: 1px solid #ac050b !important;\n }\n\n ", " hr {\n outline: 1px solid #ff063f !important;\n }\n\n ", " pre {\n outline: 1px solid #850440 !important;\n }\n\n ", " blockquote {\n outline: 1px solid #f1b8e7 !important;\n }\n\n ", " ol {\n outline: 1px solid #ff050c !important;\n }\n\n ", " ul {\n outline: 1px solid #d90416 !important;\n }\n\n ", " li {\n outline: 1px solid #d90416 !important;\n }\n\n ", " dl {\n outline: 1px solid #fd3427 !important;\n }\n\n ", " dt {\n outline: 1px solid #ff0043 !important;\n }\n\n ", " dd {\n outline: 1px solid #e80174 !important;\n }\n\n ", " figure {\n outline: 1px solid #ff00bb !important;\n }\n\n ", " figcaption {\n outline: 1px solid #bf0032 !important;\n }\n\n ", " table {\n outline: 1px solid #00cc99 !important;\n }\n\n ", " caption {\n outline: 1px solid #37ffc4 !important;\n }\n\n ", " thead {\n outline: 1px solid #98daca !important;\n }\n\n ", " tbody {\n outline: 1px solid #64a7a0 !important;\n }\n\n ", " tfoot {\n outline: 1px solid #22746b !important;\n }\n\n ", " tr {\n outline: 1px solid #86c0b2 !important;\n }\n\n ", " th {\n outline: 1px solid #a1e7d6 !important;\n }\n\n ", " td {\n outline: 1px solid #3f5a54 !important;\n }\n\n ", " col {\n outline: 1px solid #6c9a8f !important;\n }\n\n ", " colgroup {\n outline: 1px solid #6c9a9d !important;\n }\n\n ", " button {\n outline: 1px solid #da8301 !important;\n }\n\n ", " datalist {\n outline: 1px solid #c06000 !important;\n }\n\n ", " fieldset {\n outline: 1px solid #d95100 !important;\n }\n\n ", " form {\n outline: 1px solid #d23600 !important;\n }\n\n ", " input {\n outline: 1px solid #fca600 !important;\n }\n\n ", " keygen {\n outline: 1px solid #b31e00 !important;\n }\n\n ", " label {\n outline: 1px solid #ee8900 !important;\n }\n\n ", " legend {\n outline: 1px solid #de6d00 !important;\n }\n\n ", " meter {\n outline: 1px solid #e8630c !important;\n }\n\n ", " optgroup {\n outline: 1px solid #b33600 !important;\n }\n\n ", " option {\n outline: 1px solid #ff8a00 !important;\n }\n\n ", " output {\n outline: 1px solid #ff9619 !important;\n }\n\n ", " progress {\n outline: 1px solid #e57c00 !important;\n }\n\n ", " select {\n outline: 1px solid #e26e0f !important;\n }\n\n ", " textarea {\n outline: 1px solid #cc5400 !important;\n }\n\n ", " details {\n outline: 1px solid #33848f !important;\n }\n\n ", " summary {\n outline: 1px solid #60a1a6 !important;\n }\n\n ", " command {\n outline: 1px solid #438da1 !important;\n }\n\n ", " menu {\n outline: 1px solid #449da6 !important;\n }\n\n ", " del {\n outline: 1px solid #bf0000 !important;\n }\n\n ", " ins {\n outline: 1px solid #400000 !important;\n }\n\n ", " img {\n outline: 1px solid #22746b !important;\n }\n\n ", " iframe {\n outline: 1px solid #64a7a0 !important;\n }\n\n ", " embed {\n outline: 1px solid #98daca !important;\n }\n\n ", " object {\n outline: 1px solid #00cc99 !important;\n }\n\n ", " param {\n outline: 1px solid #37ffc4 !important;\n }\n\n ", " video {\n outline: 1px solid #6ee866 !important;\n }\n\n ", " audio {\n outline: 1px solid #027353 !important;\n }\n\n ", " source {\n outline: 1px solid #012426 !important;\n }\n\n ", " canvas {\n outline: 1px solid #a2f570 !important;\n }\n\n ", " track {\n outline: 1px solid #59a600 !important;\n }\n\n ", " map {\n outline: 1px solid #7be500 !important;\n }\n\n ", " area {\n outline: 1px solid #305900 !important;\n }\n\n ", " a {\n outline: 1px solid #ff62ab !important;\n }\n\n ", " em {\n outline: 1px solid #800b41 !important;\n }\n\n ", " strong {\n outline: 1px solid #ff1583 !important;\n }\n\n ", " i {\n outline: 1px solid #803156 !important;\n }\n\n ", " b {\n outline: 1px solid #cc1169 !important;\n }\n\n ", " u {\n outline: 1px solid #ff0430 !important;\n }\n\n ", " s {\n outline: 1px solid #f805e3 !important;\n }\n\n ", " small {\n outline: 1px solid #d107b2 !important;\n }\n\n ", " abbr {\n outline: 1px solid #4a0263 !important;\n }\n\n ", " q {\n outline: 1px solid #240018 !important;\n }\n\n ", " cite {\n outline: 1px solid #64003c !important;\n }\n\n ", " dfn {\n outline: 1px solid #b4005a !important;\n }\n\n ", " sub {\n outline: 1px solid #dba0c8 !important;\n }\n\n ", " sup {\n outline: 1px solid #cc0256 !important;\n }\n\n ", " time {\n outline: 1px solid #d6606d !important;\n }\n\n ", " code {\n outline: 1px solid #e04251 !important;\n }\n\n ", " kbd {\n outline: 1px solid #5e001f !important;\n }\n\n ", " samp {\n outline: 1px solid #9c0033 !important;\n }\n\n ", " var {\n outline: 1px solid #d90047 !important;\n }\n\n ", " mark {\n outline: 1px solid #ff0053 !important;\n }\n\n ", " bdi {\n outline: 1px solid #bf3668 !important;\n }\n\n ", " bdo {\n outline: 1px solid #6f1400 !important;\n }\n\n ", " ruby {\n outline: 1px solid #ff7b93 !important;\n }\n\n ", " rt {\n outline: 1px solid #ff2f54 !important;\n }\n\n ", " rp {\n outline: 1px solid #803e49 !important;\n }\n\n ", " span {\n outline: 1px solid #cc2643 !important;\n }\n\n ", " br {\n outline: 1px solid #db687d !important;\n }\n\n ", " wbr {\n outline: 1px solid #db175b !important;\n }"])), selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector, selector); };
|
|
22045
22045
|
var decorators = [function withOutline(StoryFn, context) { var isActive = !0 === context.globals.outline, isInDocs = "docs" === context.viewMode, outlineStyles = Object(hooks.d)((function () { var selector = isInDocs ? "#anchor--".concat(context.id, " .docs-story") : ".sb-show-main"; return outlineCSS(selector); }), [context.id]); return Object(hooks.c)((function () { var selectorId = isInDocs ? "addon-outline-docs-".concat(context.id) : "addon-outline"; if (isActive)
|
|
22046
22046
|
return function addOutlineStyles(selector, css) { var existingStyle = document.getElementById(selector); if (existingStyle)
|
|
@@ -22262,4 +22262,4 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
|
22262
22262
|
args[_key] = arguments[_key]; return "function" == typeof args[0] ? decorator().apply(void 0, args) : function () { if (arguments.length > 1)
|
|
22263
22263
|
return args.length > 1 ? decorator(args).apply(void 0, arguments) : decorator.apply(void 0, args).apply(void 0, arguments); throw new Error("Passing stories directly into ".concat(name, "() is not allowed,\n instead use addDecorator(").concat(name, ") and pass options with the '").concat(parameterName, "' parameter")); }; }; };
|
|
22264
22264
|
}]]);
|
|
22265
|
-
//# sourceMappingURL=vendors~main.
|
|
22265
|
+
//# sourceMappingURL=vendors~main.dd7c8d3f.iframe.bundle.js.map
|
package/package.json
CHANGED
package/release-note.md
CHANGED
|
@@ -1,9 +1,19 @@
|
|
|
1
1
|
# PDS-DEV-KIT-WEB Release Notes
|
|
2
|
-
## [v1.9.0-beta.
|
|
3
|
-
###
|
|
4
|
-
*
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
*
|
|
2
|
+
## [v1.9.0-beta.6]
|
|
3
|
+
### Common
|
|
4
|
+
* scrollbar 관련 style들 추가
|
|
5
|
+
### Layout
|
|
6
|
+
* WS
|
|
7
|
+
* 스크롤이 있는 유형일 경우 스크롤이 보여지도록 조치
|
|
8
|
+
* WFB_1
|
|
9
|
+
* padding-top 80px → 64px로 수정
|
|
10
|
+
### Component
|
|
11
|
+
* AdminList
|
|
12
|
+
* flexibleHideInfoMode prop 추가
|
|
13
|
+
* AdminListItem
|
|
14
|
+
* flexibleHideInfoMode prop 추가
|
|
15
|
+
* Icon
|
|
16
|
+
* ic_cs_bold line 타입 추가
|
|
17
|
+
* ic_cs_face line 타입 추가
|
|
8
18
|
### Color
|
|
9
|
-
* 컬러 키 값 23.01.
|
|
19
|
+
* 컬러 키 값 23.01.27 18시 07분 기준 싱크
|