pds-dev-kit-web 2.1.5 → 2.1.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/README.md +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/src/common/index.d.ts +1 -1
- package/dist/src/common/styles/colorSet/PaletteColor_Dark.json +6 -5
- package/dist/src/common/styles/colorSet/PaletteColor_light.json +6 -5
- package/dist/src/common/styles/colorSet/SemanticColor.json +3 -1
- package/dist/src/common/styles/colorSet/UIColor.json +2 -1
- package/dist/src/common/styles/colorSet/index.d.ts +326 -321
- 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/types/components.d.ts +8 -1
- package/dist/src/desktop/components/AdminList/AdminList.d.ts +13 -13
- package/dist/src/desktop/components/AdminList/BulkActionBar.d.ts +13 -13
- package/dist/src/desktop/components/AdminListHeader/AdminListHeader.d.ts +4 -4
- package/dist/src/desktop/components/AdminListHeader/HeaderBar.d.ts +4 -4
- package/dist/src/desktop/components/BasicButtonGroup/BasicButtonGroup.js +11 -4
- package/dist/src/desktop/components/ContextMenuItem/ContextMenuItem.d.ts +4 -4
- package/dist/src/desktop/components/ContextMenuItem/ContextMenuItem.js +1 -1
- package/dist/src/desktop/components/IconButton/IconButton.d.ts +1 -1
- package/dist/src/desktop/components/IconButton/IconButton.js +19 -14
- package/dist/src/desktop/components/SegmentedButtonGroup/SegmentedButtonGroup.d.ts +1 -0
- package/dist/src/desktop/components/SegmentedButtonGroup/SegmentedButtonGroup.js +6 -3
- package/dist/src/desktop/components/Slider/Slider.js +1 -1
- package/dist/src/desktop/components/TextField/TextField.d.ts +2 -1
- package/dist/src/desktop/components/TextField/TextField.js +5 -5
- package/dist/src/desktop/components/TextLabel/TextLabel.js +6 -18
- package/dist/src/desktop/components/UploadIconButton/UploadIconButton.d.ts +1 -1
- package/dist/src/desktop/components/UploadIconButton/UploadIconButton.js +18 -13
- package/dist/src/mobile/components/BasicButtonGroup/BasicButtonGroup.js +11 -4
- package/dist/src/mobile/components/ContextMenuItem/ContextMenuItem.d.ts +4 -4
- package/dist/src/mobile/components/ContextMenuItem/ContextMenuItem.js +2 -4
- package/dist/src/mobile/components/IconButton/IconButton.d.ts +1 -1
- package/dist/src/mobile/components/IconButton/IconButton.js +11 -6
- package/dist/src/mobile/components/SegmentedButtonGroup/SegmentedButtonGroup.d.ts +1 -0
- package/dist/src/mobile/components/SegmentedButtonGroup/SegmentedButtonGroup.js +6 -3
- package/dist/src/mobile/components/TextField/TextField.d.ts +2 -1
- package/dist/src/mobile/components/TextField/TextField.js +5 -5
- package/dist/src/mobile/components/UploadIconButton/UploadIconButton.d.ts +1 -1
- package/dist/src/mobile/components/UploadIconButton/UploadIconButton.js +10 -5
- package/dist/src/sub/AdminList/AdminListHeader/AdminListHeader.d.ts +4 -4
- package/dist/src/sub/AdminList/AdminListHeader/HeaderBar.d.ts +4 -4
- package/dist/src/sub/AdminList/BulkActionBar/BulkActionBar.d.ts +13 -13
- package/package.json +1 -1
- package/release-note.md +19 -8
package/README.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { UITheme, IFormValues, FillIconNameKeys, LineIconNameKeys, DesktopFontSize, FontWeight, PDSTextType, PDSValueOption, UiColors, PdsDevKitTheme, fontWeight, desktopFontSize, desktopLineHeight, desktopEditorFontSize, desktopEditorLineHeight, mobileFontSize, mobileLineHeight, mobileEditorFontSize, mobileEditorLineHeight, boxShadow, spacing, uiColors, customTheme, theme, Form, PDSIconType, ForwardedRefType } from './src/common';
|
|
2
|
-
export { UITheme, IFormValues, FillIconNameKeys, LineIconNameKeys, PdsDevKitTheme, DesktopFontSize, FontWeight, PDSTextType, PDSValueOption, UiColors, PDSIconType, ForwardedRefType };
|
|
1
|
+
import { UITheme, IFormValues, FillIconNameKeys, LineIconNameKeys, DesktopFontSize, FontWeight, PDSTextType, PDSValueOption, ContextMenuItemValueOption, DropdownValueOption, AdminListDropdownValueOption, BasicButtonGroupValueOption, UiColors, PdsDevKitTheme, fontWeight, desktopFontSize, desktopLineHeight, desktopEditorFontSize, desktopEditorLineHeight, mobileFontSize, mobileLineHeight, mobileEditorFontSize, mobileEditorLineHeight, boxShadow, spacing, uiColors, customTheme, theme, Form, PDSIconType, ForwardedRefType } from './src/common';
|
|
2
|
+
export { UITheme, IFormValues, FillIconNameKeys, LineIconNameKeys, PdsDevKitTheme, DesktopFontSize, FontWeight, PDSTextType, PDSValueOption, ContextMenuItemValueOption, DropdownValueOption, AdminListDropdownValueOption, BasicButtonGroupValueOption, UiColors, PDSIconType, ForwardedRefType };
|
|
3
3
|
export { fontWeight, desktopFontSize, desktopLineHeight, desktopEditorFontSize, desktopEditorLineHeight, mobileFontSize, mobileLineHeight, mobileEditorFontSize, mobileEditorLineHeight, boxShadow, spacing, uiColors, customTheme };
|
|
4
4
|
export { theme };
|
|
5
5
|
export { dialogOnAni, dialogOffAni, dialogOverlayOnAni, dialogOverlayOffAni, modalOnAni, modalOffAni, modalOverlayOnAni, modalOverlayOffAni } from './src/common/styles';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { UITheme } from './styles/colorSet/ui-type';
|
|
2
|
-
export { IFormValues, FillIconNameKeys, LineIconNameKeys, PDSIconType, PdsDevKitTheme, DesktopFontSize, FontWeight, PDSTextType, PDSValueOption, UiColors, ForwardedRefType } from './types';
|
|
2
|
+
export { IFormValues, FillIconNameKeys, LineIconNameKeys, PDSIconType, PdsDevKitTheme, DesktopFontSize, FontWeight, PDSTextType, PDSValueOption, ContextMenuItemValueOption, DropdownValueOption, AdminListDropdownValueOption, BasicButtonGroupValueOption, UiColors, ForwardedRefType } from './types';
|
|
3
3
|
export { fontWeight, desktopFontSize, desktopLineHeight, desktopEditorFontSize, desktopEditorLineHeight, mobileFontSize, mobileLineHeight, mobileEditorFontSize, mobileEditorLineHeight, boxShadow, spacing } from './styles/theme';
|
|
4
4
|
export { uiColors, customTheme } from './styles/ui-colors';
|
|
5
5
|
export { theme } from './styles';
|
|
@@ -301,11 +301,11 @@
|
|
|
301
301
|
"sys_component_base_40": "darkorange50",
|
|
302
302
|
"sys_component_base_41": "darkskyblue100",
|
|
303
303
|
"sys_cpnt_slider_track": "darkgrey100",
|
|
304
|
-
"sys_cpnt_slider_track_active": "
|
|
305
|
-
"sys_cpnt_slider_thumb_normal": "
|
|
304
|
+
"sys_cpnt_slider_track_active": "darkblue500",
|
|
305
|
+
"sys_cpnt_slider_thumb_normal": "darkblue500",
|
|
306
306
|
"sys_cpnt_slider_thumb_disabled": "darkgrey400",
|
|
307
|
-
"sys_cpnt_slider_thumb_hover_circle": "
|
|
308
|
-
"sys_cpnt_slider_thumb_pressed_circle": "
|
|
307
|
+
"sys_cpnt_slider_thumb_hover_circle": "darkblue500/opacity10",
|
|
308
|
+
"sys_cpnt_slider_thumb_pressed_circle": "darkblue500/opacity20",
|
|
309
309
|
"sys_cpnt_slider_track_disabled": "darkgrey400",
|
|
310
310
|
"sys_component_base_42": "darkorange30",
|
|
311
311
|
"sys_component_base_43": "darkblue30",
|
|
@@ -317,5 +317,6 @@
|
|
|
317
317
|
"sys_editor_layout_navigation_panel": "darkgrey80",
|
|
318
318
|
"sys_editor_layout_canvas_area": "darkgrey30",
|
|
319
319
|
"sys_editor_layout_control_panel": "darkgrey70",
|
|
320
|
-
"sys_editor_layout_property_panel": "darkgrey70"
|
|
320
|
+
"sys_editor_layout_property_panel": "darkgrey70",
|
|
321
|
+
"sys_editor_layout_navigation_panel_section_item_area_normal": "darkgrey300"
|
|
321
322
|
}
|
|
@@ -301,11 +301,11 @@
|
|
|
301
301
|
"sys_component_base_40": "orange50",
|
|
302
302
|
"sys_component_base_41": "skyblue100",
|
|
303
303
|
"sys_cpnt_slider_track": "grey100",
|
|
304
|
-
"sys_cpnt_slider_track_active": "
|
|
305
|
-
"sys_cpnt_slider_thumb_normal": "
|
|
304
|
+
"sys_cpnt_slider_track_active": "blue500",
|
|
305
|
+
"sys_cpnt_slider_thumb_normal": "blue500",
|
|
306
306
|
"sys_cpnt_slider_thumb_disabled": "grey400",
|
|
307
|
-
"sys_cpnt_slider_thumb_hover_circle": "
|
|
308
|
-
"sys_cpnt_slider_thumb_pressed_circle": "
|
|
307
|
+
"sys_cpnt_slider_thumb_hover_circle": "blue500/opacity10",
|
|
308
|
+
"sys_cpnt_slider_thumb_pressed_circle": "blue500/opacity20",
|
|
309
309
|
"sys_cpnt_slider_track_disabled": "grey400",
|
|
310
310
|
"sys_component_base_42": "orange30",
|
|
311
311
|
"sys_component_base_43": "blue30",
|
|
@@ -317,5 +317,6 @@
|
|
|
317
317
|
"sys_editor_layout_navigation_panel": "grey50",
|
|
318
318
|
"sys_editor_layout_canvas_area": "grey30",
|
|
319
319
|
"sys_editor_layout_control_panel": "white",
|
|
320
|
-
"sys_editor_layout_property_panel": "white"
|
|
320
|
+
"sys_editor_layout_property_panel": "white",
|
|
321
|
+
"sys_editor_layout_navigation_panel_section_item_area_normal": "white"
|
|
321
322
|
}
|
|
@@ -804,5 +804,6 @@
|
|
|
804
804
|
"ui_editor_layout_navigation_panel": "sys_editor_layout_navigation_panel",
|
|
805
805
|
"ui_editor_layout_canvas_area": "sys_editor_layout_canvas_area",
|
|
806
806
|
"ui_editor_layout_control_panel": "sys_editor_layout_control_panel",
|
|
807
|
-
"ui_editor_layout_property_panel": "sys_editor_layout_property_panel"
|
|
807
|
+
"ui_editor_layout_property_panel": "sys_editor_layout_property_panel",
|
|
808
|
+
"ui_editor_layout_navigation_panel_section_item_area_normal": "sys_editor_layout_navigation_panel_section_item_area_normal"
|
|
808
809
|
}
|