@vlprojects-chat/chat 0.0.43 → 0.0.46
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/containers/CreatePollPage/components/CreatePollForm/CreatePollForm.d.ts +1 -3
- package/dist/containers/CreatePollPage/components/CreatePollForm/validate.d.ts +1 -0
- package/dist/containers/CreatePollPage/components/SelectPollType/SelectPollType.d.ts +4 -2
- package/dist/containers/CreatePollPage/types.d.ts +1 -1
- package/dist/index.es.js +14 -14
- package/dist/index.js +14 -14
- package/dist/keystone/chat/channel.d.ts +1 -1
- package/dist/keystone/chat/index.d.ts +2 -1
- package/dist/keystone/chat/pinnedMessage.d.ts +5 -0
- package/dist/keystone/index.d.ts +3 -2
- package/dist/keystone/socket.d.ts +8 -0
- package/dist/locales/index.d.ts +6 -0
- package/dist/theme/consts.d.ts +2 -0
- package/dist/ui-kit/icons/PollOption1.d.ts +10 -0
- package/dist/utils/date.d.ts +1 -1
- package/package.json +1 -1
- package/dist/containers/CreatePollPage/components/ErrorMessage/ErrorMesage.d.ts +0 -6
- package/dist/containers/CreatePollPage/components/ErrorMessage/index.d.ts +0 -1
- package/dist/containers/CreatePollPage/components/ErrorMessage/styles.d.ts +0 -2
- package/dist/containers/CreatePollPage/components/SelectPollType/styles.d.ts +0 -2
- package/dist/containers/CreatePollPage/styles.d.ts +0 -2
|
@@ -1,9 +1,7 @@
|
|
|
1
|
+
import Channel from 'keystone/chat/channel';
|
|
1
2
|
import { FC } from 'react';
|
|
2
|
-
import Channel from '../../../../keystone/chat/channel';
|
|
3
|
-
import { PollTypeEnum } from '../../types';
|
|
4
3
|
interface IProps {
|
|
5
4
|
channel: Channel;
|
|
6
|
-
selectedPollType: PollTypeEnum;
|
|
7
5
|
}
|
|
8
6
|
declare const CreatePollForm: FC<IProps>;
|
|
9
7
|
export default CreatePollForm;
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
import { ICreatePollForm, PollTypeEnum } from 'containers/CreatePollPage/types';
|
|
2
|
+
import { FormApi } from 'final-form';
|
|
1
3
|
import { FC } from 'react';
|
|
2
|
-
import { PollTypeEnum } from '../../types';
|
|
3
4
|
interface IProps {
|
|
4
|
-
|
|
5
|
+
form: FormApi<ICreatePollForm>;
|
|
6
|
+
selectedPollType: PollTypeEnum;
|
|
5
7
|
}
|
|
6
8
|
declare const SelectPollType: FC<IProps>;
|
|
7
9
|
export default SelectPollType;
|