Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VMO-4138 Unified Message Block #109

Merged
merged 25 commits into from
Jul 16, 2021
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
29cc712
VMO-4138 Title Component
poojahpatil90 Jun 30, 2021
1b0c54d
VMO-4138 Fixed some issues on title editor
poojahpatil90 Jul 1, 2021
d7cd50b
VMO-4138 Updated Resource editor
poojahpatil90 Jul 6, 2021
32e4715
VMO-4138 Overrode primary color of bootstrap
poojahpatil90 Jul 7, 2021
61a8d95
VMO-4138 Component for custom SVG Icons
poojahpatil90 Jul 7, 2021
999ec5d
VMO-4138 Updated Set as First Block button
poojahpatil90 Jul 8, 2021
b6680b1
VMO-4138 Updating IVR content design in Resources
poojahpatil90 Jul 8, 2021
c59f9ac
VMO-4138 Localizing the labels
poojahpatil90 Jul 8, 2021
01f9c73
VMO-4138 Adding icons to Resources
poojahpatil90 Jul 8, 2021
01c9a00
VMO-4138 Adding horizontal divider
poojahpatil90 Jul 9, 2021
7e9a0e7
VMO-4138 Updating snapshot
poojahpatil90 Jul 9, 2021
1e5870a
Merge branch 'master' into VMO-4138-unified-message-block
poojahpatil90 Jul 9, 2021
0abf890
VMO-4138 Separating title and block code components
poojahpatil90 Jul 10, 2021
5d8f9c0
VMO-4138 Adding semantic label
poojahpatil90 Jul 11, 2021
e16defa
VMO-4138 Fixed review comments
poojahpatil90 Jul 11, 2021
17541a6
VMO-4138 A few UX improvements
poojahpatil90 Jul 12, 2021
5dd86ff
Merge branch 'master' into VMO-4138-unified-message-block
poojahpatil90 Jul 12, 2021
99725c8
VMO-4138 Updated icons to be added to font-awesome library
poojahpatil90 Jul 13, 2021
a620530
VMO-4138 Fixed font weight + Icon sizes
poojahpatil90 Jul 13, 2021
d953d66
VMO-4138 Updating components names as per spec
poojahpatil90 Jul 15, 2021
542e3d2
VMO-4138 Updating name + label and semantic label for all block types
poojahpatil90 Jul 15, 2021
b17c64d
VMO-4138 Modifying Text Editor + Removed Small text editor
poojahpatil90 Jul 15, 2021
a1ce240
VMO-4138 Some fixes
poojahpatil90 Jul 15, 2021
e947755
Merge branch 'master' into VMO-4138-unified-message-block
poojahpatil90 Jul 15, 2021
210abde
VMO-4138 Updating snapshot
poojahpatil90 Jul 15, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@
"node-sass": "^4.14.1",
"sass-loader": "^8.0.2",
"storybook-vue-router": "^1.0.7",
"svg-inline-loader": "^0.8.2",
"ts-jest": "^27.0.3",
"ts-vue-plugin": "^0.1.3",
"typescript": "~4.3.4",
Expand Down
11 changes: 11 additions & 0 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
<template>
<div id="app">
<svg-sprite />
<router-view />
</div>
</template>

<script>
import SvgSprite from '@/components/common/SvgSprite'

export default {
components: {
SvgSprite,
},
}
</script>
5 changes: 5 additions & 0 deletions src/assets/icons/audio.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/icons/check.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/icons/enter.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/icons/message.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/icons/phone.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/assets/icons/record-audio.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/icons/rich-messaging.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/icons/settings.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/assets/icons/upload.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/assets/icons/ussd.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading