ods-component-lib 1.19.11 → 1.19.13
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 +39 -39
- package/dist/components/antd/button/OdsButton.styled.d.ts +1 -1
- package/dist/components/antd/datepicker/OdsDateRangepicker.d.ts +2 -2
- package/dist/components/antd/timepicker/OdsTimepicker.styled.d.ts +1 -1
- package/dist/index.css +267 -267
- package/dist/index.d.ts +1 -0
- package/dist/index.js +111 -113
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +111 -114
- package/dist/index.modern.js.map +1 -1
- package/dist/stories/OdsDatepicker/OdsDatepicker.stories.d.ts +3 -1
- package/package.json +101 -101
- package/dist/App.d.ts +0 -3
- package/dist/components/antd/modal/OdsAdvanceModal.d.ts +0 -7
- package/dist/components/devextreme/OdsInlineEditDataGrid/handlers/ContentHandlers.d.ts +0 -14
- package/dist/components/devextreme/OdsInlineEditDataGrid/handlers/EditorPreparedHandlers.d.ts +0 -7
- package/dist/components/devextreme/OdsInlineEditDataGrid/handlers/OnExportingHandlers.d.ts +0 -19
- package/dist/components/devextreme/OdsInlineEditDataGrid/handlers/OptionHandlers.d.ts +0 -7
- package/dist/components/devextreme/OdsInlineEditDataGrid/handlers/SummaryHandlers.d.ts +0 -21
- package/dist/components/devextreme/OdsInlineEditDataGrid/partials/ActionCellRender.d.ts +0 -15
- package/dist/components/devextreme/OdsInlineEditDataGrid/partials/EditingPartial.d.ts +0 -9
- package/dist/components/devextreme/OdsInlineEditDataGrid/partials/PageTitle.d.ts +0 -8
- package/dist/components/devextreme/OdsInlineEditDataGrid/utils.d.ts +0 -19
- package/dist/components/devextreme/OdsTimeline/OdsTimeline.Constants.d.ts +0 -4
- package/dist/components/devextreme/OdsTimeline/OdsTimeline.Functions.d.ts +0 -6
- package/dist/components/devextreme/OdsTimeline/OdsTimeline.Types.d.ts +0 -77
- package/dist/components/devextreme/OdsTimeline/OdsTimeline.d.ts +0 -5
- package/dist/components/devextreme/OdsTimeline/OdsTimelineDateFilter.d.ts +0 -3
- package/dist/components/devextreme/OdsTimeline/OdsTimelineSelectionColumn.d.ts +0 -2
- package/dist/components/devextreme/OdsTimelineTable/OdsTimelineTableSearchBox.d.ts +0 -3
- package/dist/index.umd.js +0 -2
- package/dist/index.umd.js.map +0 -1
- package/dist/stories/OdsAdvanceModal/OdsAdvanceModal.stories.d.ts +0 -42
- package/dist/stories/OdsAdvanceModal/Samples/BasicOdsAdvanceModal.sample.d.ts +0 -8
- package/dist/stories/OdsModal/Samples/OdsModal.Sample.d.ts +0 -1
- package/dist/stories/OdsTimePicker/Samples/TimeRangePicker.d.ts +0 -2
- package/dist/stories/OdsTimeline/OdsTimeline.Constants.d.ts +0 -3
- package/dist/stories/OdsTimeline/OdsTimeline.Functions.d.ts +0 -6
- package/dist/stories/OdsTimeline/OdsTimeline.MockData.d.ts +0 -39
package/README.md
CHANGED
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
# odeon-component-library
|
|
2
|
-
|
|
3
|
-
> Odeon desgin system component library
|
|
4
|
-
|
|
5
|
-
[](https://www.npmjs.com/package/odeon-component-library) [](https://standardjs.com)
|
|
6
|
-
|
|
7
|
-
## Install
|
|
8
|
-
|
|
9
|
-
```bash
|
|
10
|
-
npm install
|
|
11
|
-
or
|
|
12
|
-
if you want to install without running the postinstall script
|
|
13
|
-
npm install --ignore-scripts
|
|
14
|
-
```
|
|
15
|
-
|
|
16
|
-
## Install Odeon Component Library in a project
|
|
17
|
-
|
|
18
|
-
```bash
|
|
19
|
-
npm install --save odeon-component-library
|
|
20
|
-
```
|
|
21
|
-
|
|
22
|
-
## Usage
|
|
23
|
-
|
|
24
|
-
```tsx
|
|
25
|
-
import React, { Component } from "react";
|
|
26
|
-
|
|
27
|
-
import MyComponent from "odeon-component-library";
|
|
28
|
-
import "odeon-component-library/dist/index.css";
|
|
29
|
-
|
|
30
|
-
class Example extends Component {
|
|
31
|
-
render() {
|
|
32
|
-
return <MyComponent />;
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
```
|
|
36
|
-
|
|
37
|
-
## License
|
|
38
|
-
|
|
39
|
-
MIT © [OdeonTechnology](https://github.com/OdeonTechnology)
|
|
1
|
+
# odeon-component-library
|
|
2
|
+
|
|
3
|
+
> Odeon desgin system component library
|
|
4
|
+
|
|
5
|
+
[](https://www.npmjs.com/package/odeon-component-library) [](https://standardjs.com)
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install
|
|
11
|
+
or
|
|
12
|
+
if you want to install without running the postinstall script
|
|
13
|
+
npm install --ignore-scripts
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## Install Odeon Component Library in a project
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
npm install --save odeon-component-library
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Usage
|
|
23
|
+
|
|
24
|
+
```tsx
|
|
25
|
+
import React, { Component } from "react";
|
|
26
|
+
|
|
27
|
+
import MyComponent from "odeon-component-library";
|
|
28
|
+
import "odeon-component-library/dist/index.css";
|
|
29
|
+
|
|
30
|
+
class Example extends Component {
|
|
31
|
+
render() {
|
|
32
|
+
return <MyComponent />;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## License
|
|
38
|
+
|
|
39
|
+
MIT © [OdeonTechnology](https://github.com/OdeonTechnology)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const StyledButton: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("antd").ButtonProps & import("react").RefAttributes<
|
|
2
|
+
export declare const StyledButton: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("antd").ButtonProps & import("react").RefAttributes<HTMLAnchorElement | HTMLButtonElement>> & {
|
|
3
3
|
Group: import("react").FC<import("antd/es/button").ButtonGroupProps>;
|
|
4
4
|
}, any, {}, never>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { RangePickerProps } from
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { RangePickerProps } from "antd/es/date-picker";
|
|
3
3
|
declare function OdsDateRangePicker(props: RangePickerProps): React.JSX.Element;
|
|
4
4
|
export default OdsDateRangePicker;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const StyledTimepicker: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<Pick<import("antd").TimePickerProps, "form" | "slot" | "style" | "title" | "pattern" | "defaultValue" | "value" | "onChange" | "onOk" | "locale" | "placeholder" | "id" | "disabled" | "onFocus" | "onBlur" | "onSelect" | "onKeyDown" | "size" | "prefix" | "accept" | "alt" | "autoComplete" | "capture" | "checked" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "height" | "list" | "maxLength" | "minLength" | "multiple" | "name" | "readOnly" | "required" | "src" | "step" | "type" | "width" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "prevIcon" | "nextIcon" | "superPrevIcon" | "superNextIcon" | "format" | "showNow" | "showHour" | "showMinute" | "showSecond" | "showMillisecond" | "use12Hours" | "hourStep" | "minuteStep" | "secondStep" | "millisecondStep" | "hideDisabledOptions" | "defaultOpenValue" | "disabledHours" | "disabledMinutes" | "disabledSeconds" | "disabledTime" | "changeOnScroll" | "removeIcon" | "maxTagCount" | "onCalendarChange" | "defaultPickerValue" | "pickerValue" | "onPickerValueChange" | "presets" | "mode" | "onPanelChange" | "direction" | "prefixCls" | "
|
|
2
|
+
export declare const StyledTimepicker: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<Pick<import("antd").TimePickerProps, "form" | "slot" | "style" | "title" | "pattern" | "defaultValue" | "value" | "onChange" | "onOk" | "locale" | "classNames" | "styles" | "placeholder" | "id" | "disabled" | "onFocus" | "onBlur" | "onSelect" | "onKeyDown" | "size" | "prefix" | "accept" | "alt" | "autoComplete" | "capture" | "checked" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "height" | "list" | "maxLength" | "minLength" | "multiple" | "name" | "readOnly" | "required" | "src" | "step" | "type" | "width" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "prevIcon" | "nextIcon" | "superPrevIcon" | "superNextIcon" | "format" | "showNow" | "showHour" | "showMinute" | "showSecond" | "showMillisecond" | "use12Hours" | "hourStep" | "minuteStep" | "secondStep" | "millisecondStep" | "hideDisabledOptions" | "defaultOpenValue" | "disabledHours" | "disabledMinutes" | "disabledSeconds" | "disabledTime" | "changeOnScroll" | "removeIcon" | "maxTagCount" | "onCalendarChange" | "defaultPickerValue" | "pickerValue" | "onPickerValueChange" | "presets" | "mode" | "onPanelChange" | "direction" | "prefixCls" | "showWeek" | "suffixIcon" | "allowClear" | "clearIcon" | "inputReadOnly" | "order" | "disabledDate" | "minDate" | "maxDate" | "defaultOpen" | "open" | "onOpenChange" | "popupAlign" | "getPopupContainer" | "placement" | "builtinPlacements" | "needConfirm" | "changeOnBlur" | "preserveInvalidOnBlur" | "transitionName" | "components" | "inputRender" | "cellRender" | "dateRender" | "monthCellRender" | "showToday" | "panelRender" | "renderExtraFooter" | "bordered" | "status" | "variant" | "dropdownClassName" | "popupClassName" | "rootClassName" | "popupStyle" | "key" | "addon"> & import("react").RefAttributes<import("rc-picker").PickerRef>> & {
|
|
3
3
|
RangePicker: import("react").ForwardRefExoticComponent<import("antd").TimeRangePickerProps & import("react").RefAttributes<import("rc-picker").PickerRef>>;
|
|
4
4
|
_InternalPanelDoNotUseOrYouWillBeFired: (props: Record<string | number | symbol, any>) => import("react").JSX.Element;
|
|
5
5
|
}, any, {}, never>;
|
package/dist/index.css
CHANGED
|
@@ -1,268 +1,268 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
._q4jkZ > ._1UPzZ, ._q4jkZ > ._1XbNt {
|
|
4
|
-
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
._q4jkZ ._1UPzZ, ._1GEDH + ._1UPzZ, ._1UPzZ._4V16J {
|
|
8
|
-
border-top: 1px solid rgba(0, 0, 0, 0.06);
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
._q4jkZ > ._1GEDH, ._q4jkZ > ._1UPzZ, ._q4jkZ > ._1XbNt {
|
|
12
|
-
border-left: 1px solid rgba(0, 0, 0, 0.06);
|
|
13
|
-
border-right: 1px solid rgba(0, 0, 0, 0.06);
|
|
14
|
-
border-radius: 5px;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
._q4jkZ > ._3mbXf, ._q4jkZ > ._1GEDH {
|
|
18
|
-
border-top: 1px solid rgba(0, 0, 0, 0.06);
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
._1GEDH ._2NiLf ._2CvVM > td {
|
|
22
|
-
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
._36VXO ._3udtX > td {
|
|
26
|
-
border-left: 1px solid rgba(0, 0, 0, 0.06);
|
|
27
|
-
border-right: 1px solid rgba(0, 0, 0, 0.06);
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
._1GEDH {
|
|
31
|
-
border-bottom: none;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
._2jY0l {
|
|
35
|
-
padding: 8px 16px 0 16px;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
._2P5bw{
|
|
39
|
-
font-family: Manrope;
|
|
40
|
-
font-size: 14px;
|
|
41
|
-
font-style: normal;
|
|
42
|
-
font-weight: 600;
|
|
43
|
-
line-height: 22px;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
._1GEDH {
|
|
47
|
-
color: #000000E0;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
._pljbP {
|
|
52
|
-
border-radius: 6px;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
._3nKdN, ._23Fql {
|
|
56
|
-
background-color: #E6F4FF;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
._1hTxK._3umXw {
|
|
60
|
-
background-color: #E6F4FF;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
._14hGA{
|
|
65
|
-
border-radius: 6px;
|
|
66
|
-
border: 1px solid var(--colorPrimaryBase, #1677FF);
|
|
67
|
-
background: var(--colorPrimaryBase, #1677FF);
|
|
68
|
-
box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.02);
|
|
69
|
-
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
/*.dx-item-content.dx-toolbar-item-content {
|
|
74
|
-
padding: 0 16px;
|
|
75
|
-
}
|
|
76
|
-
.dx-toolbar-after .dx-toolbar-item, .dx-toolbar-after .dx-toolbar-item:last-child {
|
|
77
|
-
padding: 0 0 0 12px !important;
|
|
78
|
-
}*/
|
|
79
|
-
|
|
80
|
-
._3YUEG > ._3PA4V, ._3YUEG._3PA4V, ._nCVgW > ._3PA4V, ._nCVgW._3PA4V {
|
|
81
|
-
width: 150px;
|
|
82
|
-
border-radius: 6px;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
._2jY0l ._39Ful {
|
|
86
|
-
margin-bottom: 8px !important;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
._3UDfa._1YpJq._jgr8O._1nt2x._rCTdR._1p-OE._3HXdb._1Niat {
|
|
90
|
-
border-radius: 6px;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
/* .dx-widget.dx-button.dx-button-mode-contained.dx-button-normal.dx-button-has-icon.dx-item.dx-buttongroup-item.dx-item-content.dx-buttongroup-item-content.dx-buttongroup-first-item.dx-buttongroup-last-item.dx-shape-standard.dx-dropdownbutton-action.dx-buttongroup-item-has-width {
|
|
94
|
-
border-radius: 6px;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
.dx-header-title{
|
|
98
|
-
color: var(--colorTextHeading, var(--colorText, rgba(0, 0, 0, 0.88)));
|
|
99
|
-
font-family: Manrope;
|
|
100
|
-
font-size: 16px;
|
|
101
|
-
font-style: normal;
|
|
102
|
-
font-weight: 600;
|
|
103
|
-
line-height: 24px;
|
|
104
|
-
margin-bottom:0 !important;
|
|
105
|
-
} */
|
|
106
|
-
|
|
107
|
-
tr._2CvVM._3Xrp3._19iuB._3udtX {
|
|
108
|
-
height: 38px;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
._36VXO._8U8_Y._q4jkZ {
|
|
112
|
-
border-radius: 16px ;
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
._3mbXf {
|
|
117
|
-
border-radius: 6px;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
._36VXO ._8U8_Y ._q4jkZ {
|
|
121
|
-
border: 1px solid rgba(0, 0, 0, 0.06);
|
|
122
|
-
}
|
|
123
|
-
/*.dx-item.dx-toolbar-item.dx-toolbar-button {
|
|
124
|
-
padding: 0 16px 0 0 0 !important;
|
|
125
|
-
}*/
|
|
126
|
-
|
|
127
|
-
._1GEDH._HwHQd._1Dint{
|
|
128
|
-
padding: 0 !important;
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
._3XxAq{
|
|
133
|
-
max-width: 230px;
|
|
134
|
-
min-width: 230px;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
._1vjE3 ._3WQXH {
|
|
138
|
-
width: 100%;
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
._33d3- {
|
|
142
|
-
overflow: visible;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
._206-B ._1IVO- {
|
|
147
|
-
padding-left: 12px !important;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
._39Ful ._1IVO- {
|
|
151
|
-
padding: 0;
|
|
152
|
-
/* -webkit-padding-end: 5px; */
|
|
153
|
-
padding-inline-end: 0 !important;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
._33d3-._2P5bw {
|
|
157
|
-
width: -moz-max-content;
|
|
158
|
-
width: max-content;
|
|
159
|
-
display: inline-block;
|
|
160
|
-
}
|
|
161
|
-
._1Y6Xh:has(._1XPxo) {
|
|
162
|
-
width: 100%;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
._1XPxo {
|
|
166
|
-
cursor: pointer;
|
|
167
|
-
width: 100%;
|
|
168
|
-
display: flex;
|
|
169
|
-
align-items: center;
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
._17w-X {
|
|
173
|
-
flex: 1;
|
|
174
|
-
align-content: center;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
._3lbve {
|
|
178
|
-
writing-mode: vertical-lr;
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
._3sOBn {
|
|
182
|
-
vertical-align: middle !important;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
._ww084:has(._2Ljgj) {
|
|
186
|
-
width: 100%;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
._2Ljgj{
|
|
190
|
-
cursor: pointer;
|
|
191
|
-
width: 100%;
|
|
192
|
-
display: flex;
|
|
193
|
-
align-items: center;
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
._2dILO {
|
|
197
|
-
flex: 1;
|
|
198
|
-
align-content: center;
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
._SQfc5 {
|
|
202
|
-
text-align: center !important;
|
|
203
|
-
}
|
|
204
|
-
._2o0Iw {
|
|
205
|
-
display: none !important;
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
._AqJeI {
|
|
209
|
-
border-radius: 16px !important;
|
|
210
|
-
background-color: white !important;
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
._vOHiU {
|
|
214
|
-
justify-content: center;
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
._2o0Iw {
|
|
218
|
-
display: none !important;
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
._AqJeI {
|
|
222
|
-
border-radius: 16px !important;
|
|
223
|
-
background-color: white !important;
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
._vOHiU {
|
|
227
|
-
justify-content: center;
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
/*ServerSide Transfer*/
|
|
232
|
-
._2n8bC {
|
|
233
|
-
display: flex;
|
|
234
|
-
flex-direction: column;
|
|
235
|
-
align-items: center;
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
._3eNgs {
|
|
239
|
-
display: flex;
|
|
240
|
-
flex-direction: row;
|
|
241
|
-
align-items: center;
|
|
242
|
-
}
|
|
243
|
-
|
|
244
|
-
._1t0-Z {
|
|
245
|
-
display: flex;
|
|
246
|
-
flex-direction: column;
|
|
247
|
-
justify-content: space-between;
|
|
248
|
-
margin: 0 20px;
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
._1t0-Z ._3ZRJ5 {
|
|
252
|
-
margin: 10px 0;
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
._3Ebn4 {
|
|
256
|
-
background-color: #f0f0f0;
|
|
257
|
-
color: #a0a0a0;
|
|
258
|
-
pointer-events: none;
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
._4kg4r ._1LVm1 {
|
|
262
|
-
background-color: #f0f0f0;
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
._2eCOe {
|
|
266
|
-
pointer-events: none;
|
|
267
|
-
background-color: #f0f0f0;
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
._q4jkZ > ._1UPzZ, ._q4jkZ > ._1XbNt {
|
|
4
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
._q4jkZ ._1UPzZ, ._1GEDH + ._1UPzZ, ._1UPzZ._4V16J {
|
|
8
|
+
border-top: 1px solid rgba(0, 0, 0, 0.06);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
._q4jkZ > ._1GEDH, ._q4jkZ > ._1UPzZ, ._q4jkZ > ._1XbNt {
|
|
12
|
+
border-left: 1px solid rgba(0, 0, 0, 0.06);
|
|
13
|
+
border-right: 1px solid rgba(0, 0, 0, 0.06);
|
|
14
|
+
border-radius: 5px;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
._q4jkZ > ._3mbXf, ._q4jkZ > ._1GEDH {
|
|
18
|
+
border-top: 1px solid rgba(0, 0, 0, 0.06);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
._1GEDH ._2NiLf ._2CvVM > td {
|
|
22
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
._36VXO ._3udtX > td {
|
|
26
|
+
border-left: 1px solid rgba(0, 0, 0, 0.06);
|
|
27
|
+
border-right: 1px solid rgba(0, 0, 0, 0.06);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
._1GEDH {
|
|
31
|
+
border-bottom: none;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
._2jY0l {
|
|
35
|
+
padding: 8px 16px 0 16px;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
._2P5bw{
|
|
39
|
+
font-family: Manrope;
|
|
40
|
+
font-size: 14px;
|
|
41
|
+
font-style: normal;
|
|
42
|
+
font-weight: 600;
|
|
43
|
+
line-height: 22px;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
._1GEDH {
|
|
47
|
+
color: #000000E0;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
._pljbP {
|
|
52
|
+
border-radius: 6px;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
._3nKdN, ._23Fql {
|
|
56
|
+
background-color: #E6F4FF;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
._1hTxK._3umXw {
|
|
60
|
+
background-color: #E6F4FF;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
._14hGA{
|
|
65
|
+
border-radius: 6px;
|
|
66
|
+
border: 1px solid var(--colorPrimaryBase, #1677FF);
|
|
67
|
+
background: var(--colorPrimaryBase, #1677FF);
|
|
68
|
+
box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.02);
|
|
69
|
+
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
/*.dx-item-content.dx-toolbar-item-content {
|
|
74
|
+
padding: 0 16px;
|
|
75
|
+
}
|
|
76
|
+
.dx-toolbar-after .dx-toolbar-item, .dx-toolbar-after .dx-toolbar-item:last-child {
|
|
77
|
+
padding: 0 0 0 12px !important;
|
|
78
|
+
}*/
|
|
79
|
+
|
|
80
|
+
._3YUEG > ._3PA4V, ._3YUEG._3PA4V, ._nCVgW > ._3PA4V, ._nCVgW._3PA4V {
|
|
81
|
+
width: 150px;
|
|
82
|
+
border-radius: 6px;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
._2jY0l ._39Ful {
|
|
86
|
+
margin-bottom: 8px !important;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
._3UDfa._1YpJq._jgr8O._1nt2x._rCTdR._1p-OE._3HXdb._1Niat {
|
|
90
|
+
border-radius: 6px;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
/* .dx-widget.dx-button.dx-button-mode-contained.dx-button-normal.dx-button-has-icon.dx-item.dx-buttongroup-item.dx-item-content.dx-buttongroup-item-content.dx-buttongroup-first-item.dx-buttongroup-last-item.dx-shape-standard.dx-dropdownbutton-action.dx-buttongroup-item-has-width {
|
|
94
|
+
border-radius: 6px;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.dx-header-title{
|
|
98
|
+
color: var(--colorTextHeading, var(--colorText, rgba(0, 0, 0, 0.88)));
|
|
99
|
+
font-family: Manrope;
|
|
100
|
+
font-size: 16px;
|
|
101
|
+
font-style: normal;
|
|
102
|
+
font-weight: 600;
|
|
103
|
+
line-height: 24px;
|
|
104
|
+
margin-bottom:0 !important;
|
|
105
|
+
} */
|
|
106
|
+
|
|
107
|
+
tr._2CvVM._3Xrp3._19iuB._3udtX {
|
|
108
|
+
height: 38px;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
._36VXO._8U8_Y._q4jkZ {
|
|
112
|
+
border-radius: 16px ;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
._3mbXf {
|
|
117
|
+
border-radius: 6px;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
._36VXO ._8U8_Y ._q4jkZ {
|
|
121
|
+
border: 1px solid rgba(0, 0, 0, 0.06);
|
|
122
|
+
}
|
|
123
|
+
/*.dx-item.dx-toolbar-item.dx-toolbar-button {
|
|
124
|
+
padding: 0 16px 0 0 0 !important;
|
|
125
|
+
}*/
|
|
126
|
+
|
|
127
|
+
._1GEDH._HwHQd._1Dint{
|
|
128
|
+
padding: 0 !important;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
._3XxAq{
|
|
133
|
+
max-width: 230px;
|
|
134
|
+
min-width: 230px;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
._1vjE3 ._3WQXH {
|
|
138
|
+
width: 100%;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
._33d3- {
|
|
142
|
+
overflow: visible;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
._206-B ._1IVO- {
|
|
147
|
+
padding-left: 12px !important;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
._39Ful ._1IVO- {
|
|
151
|
+
padding: 0;
|
|
152
|
+
/* -webkit-padding-end: 5px; */
|
|
153
|
+
padding-inline-end: 0 !important;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
._33d3-._2P5bw {
|
|
157
|
+
width: -moz-max-content;
|
|
158
|
+
width: max-content;
|
|
159
|
+
display: inline-block;
|
|
160
|
+
}
|
|
161
|
+
._1Y6Xh:has(._1XPxo) {
|
|
162
|
+
width: 100%;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
._1XPxo {
|
|
166
|
+
cursor: pointer;
|
|
167
|
+
width: 100%;
|
|
168
|
+
display: flex;
|
|
169
|
+
align-items: center;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
._17w-X {
|
|
173
|
+
flex: 1;
|
|
174
|
+
align-content: center;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
._3lbve {
|
|
178
|
+
writing-mode: vertical-lr;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
._3sOBn {
|
|
182
|
+
vertical-align: middle !important;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
._ww084:has(._2Ljgj) {
|
|
186
|
+
width: 100%;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
._2Ljgj{
|
|
190
|
+
cursor: pointer;
|
|
191
|
+
width: 100%;
|
|
192
|
+
display: flex;
|
|
193
|
+
align-items: center;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
._2dILO {
|
|
197
|
+
flex: 1;
|
|
198
|
+
align-content: center;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
._SQfc5 {
|
|
202
|
+
text-align: center !important;
|
|
203
|
+
}
|
|
204
|
+
._2o0Iw {
|
|
205
|
+
display: none !important;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
._AqJeI {
|
|
209
|
+
border-radius: 16px !important;
|
|
210
|
+
background-color: white !important;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
._vOHiU {
|
|
214
|
+
justify-content: center;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
._2o0Iw {
|
|
218
|
+
display: none !important;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
._AqJeI {
|
|
222
|
+
border-radius: 16px !important;
|
|
223
|
+
background-color: white !important;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
._vOHiU {
|
|
227
|
+
justify-content: center;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
/*ServerSide Transfer*/
|
|
232
|
+
._2n8bC {
|
|
233
|
+
display: flex;
|
|
234
|
+
flex-direction: column;
|
|
235
|
+
align-items: center;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
._3eNgs {
|
|
239
|
+
display: flex;
|
|
240
|
+
flex-direction: row;
|
|
241
|
+
align-items: center;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
._1t0-Z {
|
|
245
|
+
display: flex;
|
|
246
|
+
flex-direction: column;
|
|
247
|
+
justify-content: space-between;
|
|
248
|
+
margin: 0 20px;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
._1t0-Z ._3ZRJ5 {
|
|
252
|
+
margin: 10px 0;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
._3Ebn4 {
|
|
256
|
+
background-color: #f0f0f0;
|
|
257
|
+
color: #a0a0a0;
|
|
258
|
+
pointer-events: none;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
._4kg4r ._1LVm1 {
|
|
262
|
+
background-color: #f0f0f0;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
._2eCOe {
|
|
266
|
+
pointer-events: none;
|
|
267
|
+
background-color: #f0f0f0;
|
|
268
268
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -80,3 +80,4 @@ export { default as OdsTransferV2 } from "./components/devextreme/OdsTransferV2"
|
|
|
80
80
|
export { default as OdsFilter } from "./components/filter/OdsFilter";
|
|
81
81
|
export { default as OdsFilterPlus } from "./components/filter/OdsFilterPlus";
|
|
82
82
|
export { default as OdsFilterTagView } from "./components/filter/OdsFilterTagView";
|
|
83
|
+
export { useBodyClasses } from "./components/devextreme/DataGrid/hooks";
|