pds-dev-kit-web 1.3.4 → 1.3.7
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 -2
- package/dist/src/common/assets/icons/line/DesignPreference.d.ts +4 -0
- package/dist/src/common/assets/icons/line/DesignPreference.js +38 -0
- package/dist/src/common/assets/icons/line/index.d.ts +1 -0
- package/dist/src/common/assets/icons/line/index.js +2 -0
- package/dist/src/common/index.d.ts +2 -2
- package/dist/src/common/styles/colorSet/PaletteColor_Dark.json +10 -2
- package/dist/src/common/styles/colorSet/PaletteColor_light.json +10 -2
- package/dist/src/common/styles/colorSet/UIColor.json +10 -2
- package/dist/src/common/styles/colorSet/index.d.ts +367 -343
- package/dist/src/common/styles/colorSet/index.js +5 -5
- package/dist/src/common/styles/colorSet/ui-type.d.ts +8 -0
- package/dist/src/common/types/comopnents.d.ts +5 -0
- package/dist/src/common/types/comopnents.js +2 -0
- package/dist/src/common/types/index.d.ts +1 -0
- package/dist/src/common/types/index.js +1 -0
- package/dist/src/desktop/components/AdminList/AdminList.d.ts +12 -12
- package/dist/src/desktop/components/AdminList/AdminList.js +14 -57
- package/dist/src/desktop/components/AdminList/BulkActionBar.d.ts +10 -10
- package/dist/src/desktop/components/AdminList/BulkActionBar.js +6 -6
- package/dist/src/desktop/components/AdminList/HeaderRow.js +5 -9
- package/dist/src/desktop/components/AdminListHeader/AdminListHeader.d.ts +5 -4
- package/dist/src/desktop/components/AdminListHeader/AdminListHeader.js +22 -8
- package/dist/src/desktop/components/AdminListHeader/HeaderBar.d.ts +4 -5
- package/dist/src/desktop/components/AdminListHeader/HeaderBar.js +3 -3
- package/dist/src/desktop/components/AdminListItem/AdminListItem.js +28 -23
- package/dist/src/desktop/components/Chip/Chip.d.ts +9 -5
- package/dist/src/desktop/components/Chip/Chip.js +45 -18
- package/dist/src/desktop/components/ContextMenuItem/ContextMenuItem.d.ts +8 -5
- package/dist/src/desktop/components/ContextMenuItem/ContextMenuItem.js +8 -3
- package/dist/src/desktop/components/DesktopHeaderBar/DesktopHeaderBar.d.ts +13 -30
- package/dist/src/desktop/components/DesktopHeaderBar/DesktopHeaderBar.js +70 -18
- package/dist/src/desktop/components/DesktopTabBar/DesktopTabBar.js +23 -19
- package/dist/src/desktop/components/Dropdown/Dropdown.d.ts +4 -7
- package/dist/src/desktop/components/Dropdown/Dropdown.js +9 -4
- package/dist/src/desktop/components/EditApplyTextField/EditApplyTextField.js +5 -2
- package/dist/src/desktop/components/FilterBar/FilterBar.d.ts +8 -10
- package/dist/src/desktop/components/FilterBar/FilterBar.js +9 -17
- package/dist/src/desktop/components/UserDesktopNavBar/UserDesktopNavBar.d.ts +2 -7
- package/dist/src/desktop/components/UserDesktopNavBar/UserDesktopNavBar.js +4 -4
- package/dist/src/desktop/layout/LayoutWF/LayoutWF.js +1 -1
- package/dist/src/desktop/layout/LayoutWS/LayoutWS.js +1 -1
- package/dist/src/desktop/layout/LayoutWT/LayoutWT.js +1 -1
- package/dist/src/mobile/components/Chip/Chip.d.ts +9 -5
- package/dist/src/mobile/components/Chip/Chip.js +52 -28
- package/dist/src/mobile/components/ContextMenuItem/ContextMenuItem.d.ts +8 -5
- package/dist/src/mobile/components/ContextMenuItem/ContextMenuItem.js +8 -3
- package/dist/src/mobile/components/Dropdown/Dropdown.d.ts +6 -8
- package/dist/src/mobile/components/Dropdown/Dropdown.js +9 -4
- package/package.json +1 -1
- package/release-note.md +15 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { UITheme, IFormValues, FillIconNameKeys, LineIconNameKeys, DesktopFontSize, FontWeight, PDSTextType, UiColors, PdsDevKitTheme, fontWeight, desktopFontSize, desktopLineHeight, mobileFontSize, mobileLineHeight, boxShadow, spacing, uiColors, customTheme, theme, Form } from './src/common';
|
|
2
|
-
export { UITheme, IFormValues, FillIconNameKeys, LineIconNameKeys, PdsDevKitTheme, DesktopFontSize, FontWeight, PDSTextType, UiColors };
|
|
1
|
+
import { UITheme, IFormValues, FillIconNameKeys, LineIconNameKeys, DesktopFontSize, FontWeight, PDSTextType, PDSValueOption, UiColors, PdsDevKitTheme, fontWeight, desktopFontSize, desktopLineHeight, mobileFontSize, mobileLineHeight, boxShadow, spacing, uiColors, customTheme, theme, Form } from './src/common';
|
|
2
|
+
export { UITheme, IFormValues, FillIconNameKeys, LineIconNameKeys, PdsDevKitTheme, DesktopFontSize, FontWeight, PDSTextType, PDSValueOption, UiColors };
|
|
3
3
|
export { fontWeight, desktopFontSize, desktopLineHeight, mobileFontSize, mobileLineHeight, boxShadow, spacing, uiColors, customTheme };
|
|
4
4
|
export { theme };
|
|
5
5
|
export { Form };
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
14
|
+
var t = {};
|
|
15
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
16
|
+
t[p] = s[p];
|
|
17
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
18
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
19
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
20
|
+
t[p[i]] = s[p[i]];
|
|
21
|
+
}
|
|
22
|
+
return t;
|
|
23
|
+
};
|
|
24
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
26
|
+
};
|
|
27
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
+
var react_1 = __importDefault(require("react"));
|
|
29
|
+
var DesignPreference = function (_a) {
|
|
30
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
|
31
|
+
return (react_1.default.createElement("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest),
|
|
32
|
+
react_1.default.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24" },
|
|
33
|
+
react_1.default.createElement("g", { fill: "none", fillRule: "evenodd" },
|
|
34
|
+
react_1.default.createElement("path", { stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M14.0742,15.9112 C12.1572,16.6692 10.8122,18.4402 10.8122,20.5052 C10.8122,20.9592 10.8782,21.3992 11.0002,21.8172 C5.8122,21.4682 1.7242,17.5842 1.7242,12.8452 C1.7242,7.8752 6.2192,3.8462 11.7632,3.8462 C13.6432,3.8462 15.4022,4.3092 16.9062,5.1152 M20.6709,8.6912 C21.3939,9.9342 21.8029,11.3462 21.8029,12.8452 C21.8029,14.5302 21.2849,16.1062 20.3859,17.4542 C19.6069,16.5162 18.4769,15.8432 17.1799,15.6092" }),
|
|
35
|
+
react_1.default.createElement("path", { fill: color, d: "M8.9422,10.4341 C8.9422,9.3141 8.0342,8.4061 6.9142,8.4061 C5.7952,8.4061 4.8872,9.3141 4.8872,10.4341 C4.8872,11.5541 5.7952,12.4621 6.9142,12.4621 C8.0342,12.4621 8.9422,11.5541 8.9422,10.4341 M13.5869,7.8135 C13.5869,6.8415 12.7989,6.0535 11.8269,6.0535 C10.8559,6.0535 10.0679,6.8415 10.0679,7.8135 C10.0679,8.7855 10.8559,9.5735 11.8269,9.5735 C12.7989,9.5735 13.5869,8.7855 13.5869,7.8135 M9.2917,16.0693 C9.2917,15.0973 8.5037,14.3093 7.5317,14.3093 C6.5607,14.3093 5.7727,15.0973 5.7727,16.0693 C5.7727,17.0413 6.5607,17.8293 7.5317,17.8293 C8.5037,17.8293 9.2917,17.0413 9.2917,16.0693" }),
|
|
36
|
+
react_1.default.createElement("path", { stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M17.7283,9.5905 C18.2343,9.7555 18.5663,10.0895 18.5163,10.5975 C18.5083,10.6775 18.4923,10.7575 18.4663,10.8375 L15.2993,20.2945 C15.1073,20.8805 14.4773,21.1985 13.8923,21.0075 C13.3073,20.8155 12.9883,20.1855 13.1803,19.6005 L16.3473,10.1425 C16.5393,9.5575 17.1433,9.3985 17.7283,9.5905 Z M18.6588,1.8879 C18.6588,1.8879 23.8258,3.4439 21.8078,7.3999 C21.8078,7.3999 21.4918,8.0149 20.8398,8.5739 C20.7368,8.6629 20.6258,8.7499 20.5058,8.8329 C19.2708,9.6879 17.7148,9.9479 16.6108,8.9289 C16.1568,8.5099 15.9078,7.6109 15.9508,7.1689 C16.0678,5.9859 16.7088,5.5819 17.6238,4.8589 C18.5388,4.1349 18.7498,2.9029 18.6588,1.8879 Z" })))));
|
|
37
|
+
};
|
|
38
|
+
exports.default = DesignPreference;
|
|
@@ -32,6 +32,7 @@ declare const lineIcons: {
|
|
|
32
32
|
readonly ic_copy: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
33
33
|
readonly ic_cs: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
34
34
|
readonly ic_dashboard: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
35
|
+
readonly ic_design_preference: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
35
36
|
readonly ic_developer: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
36
37
|
readonly ic_edit: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
37
38
|
readonly ic_editor: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
@@ -35,6 +35,7 @@ var ContWatching_1 = __importDefault(require("./ContWatching"));
|
|
|
35
35
|
var Copy_1 = __importDefault(require("./Copy"));
|
|
36
36
|
var Cs_1 = __importDefault(require("./Cs"));
|
|
37
37
|
var Dashboard_1 = __importDefault(require("./Dashboard"));
|
|
38
|
+
var DesignPreference_1 = __importDefault(require("./DesignPreference"));
|
|
38
39
|
var Developer_1 = __importDefault(require("./Developer"));
|
|
39
40
|
var Edit_1 = __importDefault(require("./Edit"));
|
|
40
41
|
var Editor_1 = __importDefault(require("./Editor"));
|
|
@@ -163,6 +164,7 @@ var lineIcons = {
|
|
|
163
164
|
ic_copy: Copy_1.default,
|
|
164
165
|
ic_cs: Cs_1.default,
|
|
165
166
|
ic_dashboard: Dashboard_1.default,
|
|
167
|
+
ic_design_preference: DesignPreference_1.default,
|
|
166
168
|
ic_developer: Developer_1.default,
|
|
167
169
|
ic_edit: Edit_1.default,
|
|
168
170
|
ic_editor: Editor_1.default,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { UITheme } from './styles/colorSet/ui-type';
|
|
2
|
-
import { IFormValues, FillIconNameKeys, LineIconNameKeys, PdsDevKitTheme, DesktopFontSize, FontWeight, PDSTextType, UiColors } from './types';
|
|
3
|
-
export { UITheme, IFormValues, FillIconNameKeys, LineIconNameKeys, PdsDevKitTheme, DesktopFontSize, FontWeight, PDSTextType, UiColors };
|
|
2
|
+
import { IFormValues, FillIconNameKeys, LineIconNameKeys, PdsDevKitTheme, DesktopFontSize, FontWeight, PDSTextType, PDSValueOption, UiColors } from './types';
|
|
3
|
+
export { UITheme, IFormValues, FillIconNameKeys, LineIconNameKeys, PdsDevKitTheme, DesktopFontSize, FontWeight, PDSTextType, PDSValueOption, UiColors };
|
|
4
4
|
import { fontWeight, desktopFontSize, desktopLineHeight, mobileFontSize, mobileLineHeight, boxShadow, spacing } from './styles/theme';
|
|
5
5
|
import { uiColors, customTheme } from './styles/ui-colors';
|
|
6
6
|
export { fontWeight, desktopFontSize, desktopLineHeight, mobileFontSize, mobileLineHeight, boxShadow, spacing, uiColors, customTheme };
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"sys_temp_secondary_01": "darkgreen700",
|
|
74
74
|
"sys_temp_red": "darkred500",
|
|
75
75
|
"sys_temp_white_opacity_00": "white/opacity00",
|
|
76
|
-
"sys_temp_dimmed": "black/
|
|
76
|
+
"sys_temp_dimmed": "black/opacity20",
|
|
77
77
|
"sys_temp_black": "black",
|
|
78
78
|
"sys_temp_primary_02": "darkblue700",
|
|
79
79
|
"sys_temp_primary_03": "darkblue300",
|
|
@@ -140,5 +140,13 @@
|
|
|
140
140
|
"sys_gradient_base_01_opacity40": "grey950/opacity40",
|
|
141
141
|
"sys_widget_black": "black",
|
|
142
142
|
"usr_temp_primary_01": "darkblue500",
|
|
143
|
-
"sys_cpnt_sheet_base_02_opacity50": "darkgrey50/opacity50"
|
|
143
|
+
"sys_cpnt_sheet_base_02_opacity50": "darkgrey50/opacity50",
|
|
144
|
+
"usr_menu_primarymenu_main": "darkgrey900",
|
|
145
|
+
"usr_menu_primarymenu_sub": "darkgrey500",
|
|
146
|
+
"usr_menu_secondarymenu_main": "darkgrey900",
|
|
147
|
+
"usr_menu_secondarymenu_sub": "darkgrey500",
|
|
148
|
+
"usr_menu_hover": "darkblue500",
|
|
149
|
+
"usr_menu_active": "darkblue500",
|
|
150
|
+
"usr_menu_background": "grey950",
|
|
151
|
+
"sys_cpnt_base_white_opacity50": "white/opacity50"
|
|
144
152
|
}
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"sys_temp_secondary_01": "green700",
|
|
74
74
|
"sys_temp_red": "red500",
|
|
75
75
|
"sys_temp_white_opacity_00": "white/opacity00",
|
|
76
|
-
"sys_temp_dimmed": "black/
|
|
76
|
+
"sys_temp_dimmed": "black/opacity20",
|
|
77
77
|
"sys_temp_black": "black",
|
|
78
78
|
"sys_temp_primary_02": "blue700",
|
|
79
79
|
"sys_temp_primary_03": "blue300",
|
|
@@ -140,5 +140,13 @@
|
|
|
140
140
|
"sys_gradient_base_01_opacity40": "white/opacity40",
|
|
141
141
|
"sys_widget_black": "black",
|
|
142
142
|
"usr_temp_primary_01": "blue500",
|
|
143
|
-
"sys_cpnt_sheet_base_02_opacity50": "grey50/opacity50"
|
|
143
|
+
"sys_cpnt_sheet_base_02_opacity50": "grey50/opacity50",
|
|
144
|
+
"usr_menu_primarymenu_main": "grey900",
|
|
145
|
+
"usr_menu_primarymenu_sub": "grey500",
|
|
146
|
+
"usr_menu_secondarymenu_main": "grey900",
|
|
147
|
+
"usr_menu_secondarymenu_sub": "grey500",
|
|
148
|
+
"usr_menu_hover": "blue500",
|
|
149
|
+
"usr_menu_active": "blue500",
|
|
150
|
+
"usr_menu_background": "white",
|
|
151
|
+
"sys_cpnt_base_white_opacity50": "white/opacity50"
|
|
144
152
|
}
|
|
@@ -469,6 +469,14 @@
|
|
|
469
469
|
"ui_cpnt_pg_gradient_04": "sys_gradient_base_01_opacity75",
|
|
470
470
|
"ui_cpnt_pg_gradient_05": "sys_gradient_base_01_opacity40",
|
|
471
471
|
"ui_cpnt_mask_base": "sys_component_base_02",
|
|
472
|
-
"ui_temp_usr_primary_01": "
|
|
473
|
-
"ui_cpnt_sheet_base_02_opacity50": "sys_cpnt_sheet_base_02_opacity50"
|
|
472
|
+
"ui_temp_usr_primary_01": "usr_brand_primary",
|
|
473
|
+
"ui_cpnt_sheet_base_02_opacity50": "sys_cpnt_sheet_base_02_opacity50",
|
|
474
|
+
"ui_menu_primarymenu_main": "usr_menu_primarymenu_main",
|
|
475
|
+
"ui_menu_primarymenu_sub": "usr_menu_primarymenu_sub",
|
|
476
|
+
"ui_menu_secondarymenu_main": "usr_menu_secondarymenu_main",
|
|
477
|
+
"ui_menu_secondarymenu_sub": "usr_menu_secondarymenu_sub",
|
|
478
|
+
"ui_menu_hover": "usr_menu_hover",
|
|
479
|
+
"ui_menu_active": "usr_menu_active",
|
|
480
|
+
"ui_menu_background": "usr_menu_background",
|
|
481
|
+
"ui_cpnt_video_progress_base": "sys_cpnt_base_white_opacity50"
|
|
474
482
|
}
|