@dialpad/dialtone 9.7.0 → 9.9.0
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 +37 -2
- package/dist/css/CHANGELOG.json +1 -1
- package/dist/css/dialtone.css +3 -3
- package/dist/css/dialtone.min.css +1 -1
- package/dist/icons/icons.json +1 -1
- package/dist/icons/keywords.json +1 -1
- package/dist/icons/svg/0365-calendar.svg +1 -0
- package/dist/icons/svg/ai-write.svg +1 -0
- package/dist/icons/svg/align-center.svg +1 -0
- package/dist/icons/svg/align-justify.svg +1 -0
- package/dist/icons/svg/align-left.svg +1 -0
- package/dist/icons/svg/align-right.svg +1 -0
- package/dist/icons/svg/bullet.svg +1 -0
- package/dist/tokens/android/java/tokens-dark.kt +1 -1
- package/dist/tokens/android/java/tokens-light.kt +1 -1
- package/dist/tokens/android/res/values/colors-dark.xml +1 -1
- package/dist/tokens/android/res/values/colors-light.xml +1 -1
- package/dist/tokens/android/res/values/dimens.xml +1 -1
- package/dist/tokens/css/variables-dark.css +1 -1
- package/dist/tokens/css/variables-light.css +1 -1
- package/dist/tokens/ios/tokens-dark.swift +1 -1
- package/dist/tokens/ios/tokens-light.swift +1 -1
- package/dist/tokens/less/variables-dark.less +1 -1
- package/dist/tokens/less/variables-light.less +1 -1
- package/dist/vue2/dialtone-vue.cjs +3 -3
- package/dist/vue2/dialtone-vue.js +1019 -1017
- package/dist/vue2/emoji-dxiv7Pn5.cjs +1 -0
- package/dist/vue2/{emoji-6U-JCsdr.js → emoji-eFDb2_CE.js} +2740 -2656
- package/dist/vue2/emoji.cjs +1 -1
- package/dist/vue2/emoji.js +3 -3
- package/dist/vue2/{emoji_picker-_ah1kerg.js → emoji_picker-1wJCa-sD.js} +1 -1
- package/dist/vue2/{emoji_picker-AmUP-iCr.cjs → emoji_picker-abQkp-dE.cjs} +1 -1
- package/dist/vue2/{emoji_text_wrapper-uGdxxdhj.js → emoji_text_wrapper-VgRKbImg.js} +1 -1
- package/dist/vue2/{emoji_text_wrapper-KSNd1Eg_.cjs → emoji_text_wrapper-fbV6ZEWh.cjs} +1 -1
- package/dist/vue2/message_input.cjs +1 -1
- package/dist/vue2/message_input.js +3 -3
- package/dist/vue2/{stack-KJXN5GIj.cjs → stack-T6wnw8L8.cjs} +1 -1
- package/dist/vue2/{stack-kZE4U88k.js → stack-ksXg6ONX.js} +1 -1
- package/dist/vue2/style.css +1 -1
- package/dist/vue2/types/components/datepicker/modules/month-year-picker.vue.d.ts +2 -1
- package/dist/vue2/types/recipes/conversation_view/feed_item_row/feed_item_row.vue.d.ts +1 -6
- package/dist/vue2/types/recipes/conversation_view/feed_item_row/feed_item_row.vue.d.ts.map +1 -1
- package/dist/vue3/dialtone-vue.cjs +4 -4
- package/dist/vue3/dialtone-vue.js +735 -727
- package/dist/vue3/{emoji-KCktBw_Q.js → emoji-WjzabgKs.js} +6267 -6106
- package/dist/vue3/emoji-wyzCAeMh.cjs +1 -0
- package/dist/vue3/emoji.cjs +1 -1
- package/dist/vue3/emoji.js +3 -3
- package/dist/vue3/{emoji_picker-0dk1IIZe.js → emoji_picker-J3yCpi0n.js} +1 -1
- package/dist/vue3/{emoji_picker-oL0G6mkn.cjs → emoji_picker-Uhm2r1e3.cjs} +1 -1
- package/dist/vue3/{emoji_text_wrapper-8IftNGmf.js → emoji_text_wrapper-N_7eQTWM.js} +1 -1
- package/dist/vue3/{emoji_text_wrapper-oTDl_1_C.cjs → emoji_text_wrapper-PF5FAHE8.cjs} +1 -1
- package/dist/vue3/message_input.cjs +1 -1
- package/dist/vue3/message_input.js +3 -3
- package/dist/vue3/{stack-wGf3gStH.cjs → stack--3ERj1r4.cjs} +1 -1
- package/dist/vue3/{stack-ty9njR0G.js → stack-tU3sgAgJ.js} +1 -1
- package/dist/vue3/style.css +1 -1
- package/dist/vue3/types/recipes/conversation_view/feed_item_row/feed_item_row.vue.d.ts +5 -4
- package/dist/vue3/types/recipes/conversation_view/feed_item_row/feed_item_row.vue.d.ts.map +1 -1
- package/package.json +37 -5
- package/dist/vue2/emoji-w6s_k5vR.cjs +0 -1
- package/dist/vue3/emoji-tI6sCuHx.cjs +0 -1
package/README.md
CHANGED
|
@@ -113,11 +113,46 @@ pnpm nx build dialtone-documentation
|
|
|
113
113
|
|
|
114
114
|
### Releasing
|
|
115
115
|
|
|
116
|
+
Running these commands will call [release.sh](./scripts/release.sh) which
|
|
117
|
+
automatically release all packages that need to be released.
|
|
118
|
+
|
|
119
|
+
Once done, a GitHub Action will be triggered, you can check the progress here:
|
|
120
|
+
[release.yml](https://github.com/dialpad/dialtone/actions/workflows/release.yml)
|
|
121
|
+
|
|
122
|
+
#### Production
|
|
123
|
+
|
|
124
|
+
This can only be run while on **staging** branch. After running the command, it will execute the following steps:
|
|
125
|
+
|
|
126
|
+
1. Run build on the affected projects to improve the speed of the next step.
|
|
127
|
+
2. Run release-local script on the affected projects to verify and increase the version according to commits.
|
|
128
|
+
3. Merge `staging` version changes to `production`
|
|
129
|
+
4. Push `production` branch.
|
|
130
|
+
- A GHA will publish the release on npm and GitHub with `@latest` tag.
|
|
131
|
+
5. Merge changes from `production` back to `staging`
|
|
132
|
+
|
|
116
133
|
```bash
|
|
117
|
-
pnpm run release
|
|
134
|
+
pnpm run release
|
|
118
135
|
```
|
|
119
136
|
|
|
120
|
-
|
|
137
|
+
#### Alpha/Beta
|
|
138
|
+
|
|
139
|
+
Needs to be run while on your feature branch. After running the command, it will execute the following steps:
|
|
140
|
+
|
|
141
|
+
1. Delete local and remote `alpha/beta` branch.
|
|
142
|
+
2. Checkout to a clean `alpha/beta` branch and push to origin.
|
|
143
|
+
3. Run build on the affected projects to improve the speed of the next step.
|
|
144
|
+
4. Run release-local script on the affected projects to verify and increase the version according to commits.
|
|
145
|
+
5. Push updated `alpha/beta` branch to origin.
|
|
146
|
+
- A GHA will publish the release on npm and GitHub with `@alpha` or `@beta` tag.
|
|
147
|
+
6. Merge changes from `alpha/beta` back to your feature branch.
|
|
148
|
+
|
|
149
|
+
```bash
|
|
150
|
+
pnpm run release:alpha
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
```bash
|
|
154
|
+
pnpm run release:beta
|
|
155
|
+
```
|
|
121
156
|
|
|
122
157
|
## Usage
|
|
123
158
|
|