@inntechcorp/it-design 2.2.2 → 2.2.4
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/datepicker/styled.d.ts +1 -5
- package/dist/global.css +73 -0
- package/dist/hooks/index.d.ts +0 -2
- package/dist/index.cjs.js +439 -795
- package/dist/index.d.ts +1 -24
- package/dist/index.esm.js +461 -817
- package/dist/modal/modal/styled.d.ts +1 -5
- package/dist/select/menu/styled.d.ts +1 -5
- package/package.json +1 -1
- package/dist/hooks/useCreateDynamicStyle.d.ts +0 -10
- package/dist/hooks/useCreateStyledStyle.d.ts +0 -13
|
@@ -17,8 +17,4 @@ declare const CalendarWrapper: import("styled-components/dist/types").IStyledCom
|
|
|
17
17
|
onChange?: ((value: import("./index").CalendarValueProps) => void) | null;
|
|
18
18
|
disabledDate?: (date: moment.Moment) => boolean;
|
|
19
19
|
}) => import("react/jsx-runtime").JSX.Element | null, keyof import("react").Component<any, {}, any>>;
|
|
20
|
-
|
|
21
|
-
declare const ModalEnterActive: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
22
|
-
declare const ModalExit: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
23
|
-
declare const ModalExitActive: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
24
|
-
export { Wrapper, CalendarWrapper, ModalEnter, ModalEnterActive, ModalExit, ModalExitActive };
|
|
20
|
+
export { Wrapper, CalendarWrapper };
|
package/dist/global.css
CHANGED
|
@@ -71,4 +71,77 @@ textarea {
|
|
|
71
71
|
--os-handle-bg: #3598fe80;
|
|
72
72
|
--os-handle-bg-hover: #3598fe;
|
|
73
73
|
--os-handle-bg-active: #3598fe;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/* ================================= */
|
|
77
|
+
/* Component Transitions */
|
|
78
|
+
/* ================================= */
|
|
79
|
+
|
|
80
|
+
/* Modal Transitions */
|
|
81
|
+
.modal-enter {
|
|
82
|
+
opacity: 0 !important;
|
|
83
|
+
transform: translate(-50%, -40%) !important;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.modal-enter-active {
|
|
87
|
+
opacity: 1 !important;
|
|
88
|
+
transform: translate(-50%, -50%) !important;
|
|
89
|
+
transition: opacity 300ms, transform 300ms !important;
|
|
90
|
+
transition-delay: .3s !important;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.modal-exit {
|
|
94
|
+
opacity: 1 !important;
|
|
95
|
+
transform: translate(-50%, -50%) !important;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.modal-exit-active {
|
|
99
|
+
opacity: 0 !important;
|
|
100
|
+
transform: translate(-50%, -40%) !important;
|
|
101
|
+
transition: opacity 300ms, transform 300ms !important;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
/* Select Menu Transitions */
|
|
105
|
+
.select-menu-enter {
|
|
106
|
+
opacity: 0 !important;
|
|
107
|
+
transform: translateY(-10px) scale(0.95) !important;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.select-menu-enter-active {
|
|
111
|
+
opacity: 1 !important;
|
|
112
|
+
transform: translateY(0) scale(1) !important;
|
|
113
|
+
transition: opacity 250ms ease-out, transform 250ms ease-out !important;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.select-menu-exit {
|
|
117
|
+
opacity: 1 !important;
|
|
118
|
+
transform: translateY(0) scale(1) !important;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.select-menu-exit-active {
|
|
122
|
+
opacity: 0 !important;
|
|
123
|
+
transform: translateY(-10px) scale(0.95) !important;
|
|
124
|
+
transition: opacity 200ms ease-in, transform 200ms ease-in !important;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
/* DatePicker Modal Transitions */
|
|
128
|
+
.datepicker-modal-enter {
|
|
129
|
+
opacity: 0 !important;
|
|
130
|
+
transform: translateY(-10px) !important;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.datepicker-modal-enter-active {
|
|
134
|
+
opacity: 1 !important;
|
|
135
|
+
transform: translateY(0) !important;
|
|
136
|
+
transition: opacity 250ms, transform 250ms !important;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.datepicker-modal-exit {
|
|
140
|
+
opacity: 1 !important;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.datepicker-modal-exit-active {
|
|
144
|
+
opacity: 0 !important;
|
|
145
|
+
transform: translateY(-10px) !important;
|
|
146
|
+
transition: opacity 250ms, transform 250ms !important;
|
|
74
147
|
}
|
package/dist/hooks/index.d.ts
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
export { default as useReCaptcha } from './useReCaptcha';
|
|
2
2
|
export { default as useConstructor } from './useConstructor';
|
|
3
3
|
export { default as useAddExternalCSS } from './useAddExternalCSS';
|
|
4
|
-
export { default as useCreateDynamicStyle } from './useCreateDynamicStyle';
|
|
5
|
-
export { default as useCreateStyledStyle } from './useCreateStyledStyle';
|
|
6
4
|
export { default as useOnClickOutside } from './useOnClickOutside';
|
|
7
5
|
export { default as useOnESCKeyDown } from './useOnESCKeyDown';
|
|
8
6
|
export { default as useSingleQuery } from './useSingleQuery';
|