@dialpad/dialtone 9.6.1 → 9.7.0-alpha.2
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 +18 -2
- package/dist/css/dialtone.css +5 -3
- package/dist/css/dialtone.min.css +1 -1
- package/dist/icons/svg/dialpad-ai-color.svg +1 -1
- 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 +5 -5
- package/dist/vue2/dialtone-vue.js +1078 -1075
- package/dist/vue2/{emoji-u-6Ujtra.js → emoji-6U-JCsdr.js} +1 -1
- package/dist/vue2/emoji-w6s_k5vR.cjs +1 -0
- package/dist/vue2/emoji.cjs +1 -1
- package/dist/vue2/emoji.js +3 -3
- package/dist/vue2/{emoji_picker-xRY9wMAj.cjs → emoji_picker-AmUP-iCr.cjs} +1 -1
- package/dist/vue2/{emoji_picker-q4BK6caJ.js → emoji_picker-_ah1kerg.js} +1 -1
- package/dist/vue2/{emoji_text_wrapper-TKseOWgf.cjs → emoji_text_wrapper-KSNd1Eg_.cjs} +1 -1
- package/dist/vue2/{emoji_text_wrapper-ueIn3-wT.js → emoji_text_wrapper-uGdxxdhj.js} +1 -1
- package/dist/vue2/message_input.cjs +1 -1
- package/dist/vue2/message_input.js +3 -3
- package/dist/vue2/{stack-3Aje1HO3.cjs → stack-KJXN5GIj.cjs} +1 -1
- package/dist/vue2/{stack-JXwTwRNx.js → stack-kZE4U88k.js} +1 -1
- package/dist/vue2/types/components/datepicker/datepicker_constants.d.ts +1 -0
- package/dist/vue2/types/components/datepicker/datepicker_constants.d.ts.map +1 -1
- package/dist/vue2/types/components/datepicker/formatUtils.d.ts +5 -5
- package/dist/vue2/types/components/datepicker/formatUtils.d.ts.map +1 -1
- package/dist/vue2/types/components/datepicker/modules/month-year-picker.vue.d.ts +9 -2
- package/dist/vue2/types/components/datepicker/utils.d.ts +1 -1
- package/dist/vue2/types/components/datepicker/utils.d.ts.map +1 -1
- package/dist/vue3/dialtone-vue.cjs +5 -5
- package/dist/vue3/dialtone-vue.js +1120 -1113
- package/dist/vue3/{emoji-QBcVAL2w.js → emoji-KCktBw_Q.js} +1 -1
- package/dist/vue3/emoji-tI6sCuHx.cjs +1 -0
- package/dist/vue3/emoji.cjs +1 -1
- package/dist/vue3/emoji.js +3 -3
- package/dist/vue3/{emoji_picker-1WcAngUg.js → emoji_picker-0dk1IIZe.js} +1 -1
- package/dist/vue3/{emoji_picker-S21BvInz.cjs → emoji_picker-oL0G6mkn.cjs} +1 -1
- package/dist/vue3/{emoji_text_wrapper-OCfmMjea.js → emoji_text_wrapper-8IftNGmf.js} +1 -1
- package/dist/vue3/{emoji_text_wrapper-xizekE1A.cjs → emoji_text_wrapper-oTDl_1_C.cjs} +1 -1
- package/dist/vue3/message_input.cjs +1 -1
- package/dist/vue3/message_input.js +3 -3
- package/dist/vue3/{stack-YWmXxoQs.js → stack-ty9njR0G.js} +1 -1
- package/dist/vue3/{stack-Mu4_2N9e.cjs → stack-wGf3gStH.cjs} +1 -1
- package/dist/vue3/types/components/datepicker/composables/useMonthYearPicker.d.ts +1 -1
- package/dist/vue3/types/components/datepicker/datepicker_constants.d.ts +1 -0
- package/dist/vue3/types/components/datepicker/datepicker_constants.d.ts.map +1 -1
- package/dist/vue3/types/components/datepicker/formatUtils.d.ts +5 -5
- package/dist/vue3/types/components/datepicker/formatUtils.d.ts.map +1 -1
- package/dist/vue3/types/components/datepicker/modules/calendar.vue.d.ts +2 -2
- package/dist/vue3/types/components/datepicker/modules/month-year-picker.vue.d.ts +2 -0
- package/dist/vue3/types/components/datepicker/utils.d.ts +1 -1
- package/dist/vue3/types/components/datepicker/utils.d.ts.map +1 -1
- package/package.json +4 -2
- package/dist/vue2/emoji-hIcaq3qs.cjs +0 -1
- package/dist/vue3/emoji-RuBeUANw.cjs +0 -1
package/README.md
CHANGED
|
@@ -113,11 +113,27 @@ pnpm nx build dialtone-documentation
|
|
|
113
113
|
|
|
114
114
|
### Releasing
|
|
115
115
|
|
|
116
|
+
Running this commands will automatically release all packages that need to be released.
|
|
117
|
+
|
|
118
|
+
#### Production
|
|
119
|
+
|
|
120
|
+
Note: needs to be run while on staging branch.
|
|
121
|
+
|
|
122
|
+
```bash
|
|
123
|
+
pnpm run release
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
#### Alpha/Beta
|
|
127
|
+
|
|
128
|
+
Note: needs to be run while on your feature branch.
|
|
129
|
+
|
|
116
130
|
```bash
|
|
117
|
-
pnpm run release:
|
|
131
|
+
pnpm run release:alpha
|
|
118
132
|
```
|
|
119
133
|
|
|
120
|
-
|
|
134
|
+
```bash
|
|
135
|
+
pnpm run release:beta
|
|
136
|
+
```
|
|
121
137
|
|
|
122
138
|
## Usage
|
|
123
139
|
|
package/dist/css/dialtone.css
CHANGED
|
@@ -2150,7 +2150,9 @@ legend .d-label {
|
|
|
2150
2150
|
border: none;
|
|
2151
2151
|
}
|
|
2152
2152
|
.d-input__wrapper .d-input:focus,
|
|
2153
|
-
.d-input__wrapper .d-textarea:focus
|
|
2153
|
+
.d-input__wrapper .d-textarea:focus,
|
|
2154
|
+
.d-input__wrapper .d-input:focus-within,
|
|
2155
|
+
.d-input__wrapper .d-textarea:focus-within {
|
|
2154
2156
|
border: none;
|
|
2155
2157
|
outline: 0;
|
|
2156
2158
|
box-shadow: none !important;
|
|
@@ -7378,7 +7380,7 @@ body {
|
|
|
7378
7380
|
}
|
|
7379
7381
|
/**
|
|
7380
7382
|
* Do not edit directly
|
|
7381
|
-
* Generated on
|
|
7383
|
+
* Generated on Mon, 22 Jan 2024 23:11:41 GMT
|
|
7382
7384
|
*/
|
|
7383
7385
|
|
|
7384
7386
|
.dialtone-theme-light {
|
|
@@ -8175,7 +8177,7 @@ body {
|
|
|
8175
8177
|
|
|
8176
8178
|
/**
|
|
8177
8179
|
* Do not edit directly
|
|
8178
|
-
* Generated on
|
|
8180
|
+
* Generated on Mon, 22 Jan 2024 23:11:42 GMT
|
|
8179
8181
|
*/
|
|
8180
8182
|
|
|
8181
8183
|
.dialtone-theme-dark {
|