@rebilly/revel 4.21.3 → 5.1.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.
Files changed (77) hide show
  1. package/CHANGELOG.md +29 -47
  2. package/README.md +23 -14
  3. package/dist/common/date-picker-compat.d.ts +1 -0
  4. package/dist/common/datetime-formats.d.ts +28 -0
  5. package/dist/common/helpers/debounce.d.ts +2 -0
  6. package/dist/common/helpers/deep-clone.d.ts +2 -0
  7. package/dist/common/helpers/format-date.d.ts +4 -0
  8. package/dist/common/helpers/index.d.ts +6 -0
  9. package/dist/common/helpers/is-object.d.ts +2 -0
  10. package/dist/common/helpers/kebab-case.d.ts +2 -0
  11. package/dist/components/index.d.ts +27 -0
  12. package/dist/components/r-avatar/r-avatar.vue.d.ts +86 -0
  13. package/dist/components/r-badge/r-badge.vue.d.ts +40 -0
  14. package/dist/components/r-button/r-button.vue.d.ts +195 -0
  15. package/dist/components/r-button-group/r-button-group.vue.d.ts +18 -0
  16. package/dist/components/r-checkbox/r-checkbox.vue.d.ts +148 -0
  17. package/dist/components/r-date-input/calendar-presets.d.ts +36 -0
  18. package/dist/components/r-date-input/r-calendar.vue.d.ts +159 -0
  19. package/dist/components/r-date-input/r-date-input.vue.d.ts +297 -0
  20. package/dist/components/r-date-input/r-date-range-button-group.vue.d.ts +167 -0
  21. package/dist/components/r-date-input/r-range-calendar.vue.d.ts +211 -0
  22. package/dist/components/r-date-input/shared-calendar-options.d.ts +64 -0
  23. package/dist/components/r-date-input/types.d.ts +8 -0
  24. package/dist/components/r-date-input/v-calendar.es.d.ts +459 -0
  25. package/dist/components/r-file-upload/r-file-upload.vue.d.ts +68 -0
  26. package/dist/components/r-grid/columnTypes/badge.vue.d.ts +42 -0
  27. package/dist/components/r-grid/columnTypes/date.vue.d.ts +25 -0
  28. package/dist/components/r-grid/columnTypes/index.d.ts +93 -0
  29. package/dist/components/r-grid/columnTypes/numeric.vue.d.ts +24 -0
  30. package/dist/components/r-grid/columnTypes/text.vue.d.ts +26 -0
  31. package/dist/components/r-grid/columnTypes/types.d.ts +24 -0
  32. package/dist/components/r-grid/helpers/color-generator.d.ts +4 -0
  33. package/dist/components/r-grid/r-grid.vue.d.ts +196 -0
  34. package/dist/components/r-icon/r-icon-sprites.d.ts +128 -0
  35. package/dist/components/r-icon/r-icon.vue.d.ts +61 -0
  36. package/dist/components/r-icon-button/r-icon-button.vue.d.ts +133 -0
  37. package/dist/components/r-img/r-img.vue.d.ts +96 -0
  38. package/dist/components/r-input/r-input.vue.d.ts +411 -0
  39. package/dist/components/r-loader/r-loader.vue.d.ts +55 -0
  40. package/dist/components/r-modal/r-modal.vue.d.ts +132 -0
  41. package/dist/components/r-month-picker/months.d.ts +1 -0
  42. package/dist/components/r-month-picker/r-month-picker.vue.d.ts +122 -0
  43. package/dist/components/r-pagination/r-pagination.vue.d.ts +97 -0
  44. package/dist/components/r-pagination/types.d.ts +8 -0
  45. package/dist/components/r-pagination-control/r-pagination-control.vue.d.ts +33 -0
  46. package/dist/components/r-popper/r-popper.vue.d.ts +275 -0
  47. package/dist/components/r-radio/r-radio.vue.d.ts +132 -0
  48. package/dist/components/r-repeater/r-repeater.vue.d.ts +58 -0
  49. package/dist/components/r-select/async-extension.d.ts +91 -0
  50. package/dist/components/r-select/r-select.vue.d.ts +733 -0
  51. package/dist/components/r-select/types.d.ts +29 -0
  52. package/dist/components/r-tabs/r-tab.vue.d.ts +70 -0
  53. package/dist/components/r-tabs/r-tabs.vue.d.ts +6983 -0
  54. package/dist/components/r-tabs/types.d.ts +23 -0
  55. package/dist/components/r-tile/r-tile.vue.d.ts +2 -0
  56. package/dist/components/r-toast/default-error-handler.d.ts +4 -0
  57. package/dist/components/r-toast/r-toast-manager.d.ts +17 -0
  58. package/dist/components/r-toast/r-toast.vue.d.ts +141 -0
  59. package/dist/components/r-toast/types.d.ts +19 -0
  60. package/dist/components/r-toggle/r-toggle.vue.d.ts +69 -0
  61. package/dist/directives/index.d.ts +8 -0
  62. package/dist/directives/r-click-outside/r-click-outside.d.ts +10 -0
  63. package/dist/directives/r-content/r-content.d.ts +9 -0
  64. package/dist/directives/r-fs-exclude.d.ts +7 -0
  65. package/dist/directives/r-lazy.d.ts +5 -0
  66. package/dist/directives/r-tooltip/r-tooltip.d.ts +12 -0
  67. package/dist/index.d.ts +20 -0
  68. package/dist/playground/Playground-copyme.vue.d.ts +2 -0
  69. package/dist/playground/main.d.ts +1 -0
  70. package/dist/revel.mjs +5580 -4747
  71. package/dist/revel.umd.js +115 -115
  72. package/dist/style.css +1 -1
  73. package/dist/styles/config.d.ts +32 -0
  74. package/dist/styles/index.d.ts +5 -0
  75. package/dist/styles/tokens.d.ts +130 -0
  76. package/dist/types.d.ts +24 -0
  77. package/package.json +107 -85
package/CHANGELOG.md CHANGED
@@ -1,300 +1,285 @@
1
- ## [4.21.3](https://github.com/Rebilly/rebilly/compare/revel-v4.21.2...revel-v4.21.3) (2023-08-03)
1
+ ## [5.1.0](https://github.com/Rebilly/rebilly/compare/revel-v5.0.0...revel-v5.1.0) (2023-08-08)
2
2
 
3
3
 
4
+ ### Features
5
+
6
+ * **revel:** Add display and flex style helpers ([#848](https://github.com/Rebilly/rebilly/issues/848)) ([09c9d82](https://github.com/Rebilly/rebilly/commit/09c9d82d75cb9a83f865e181a42efe4d726f94db))
7
+
8
+ ## [5.0.0](https://github.com/Rebilly/rebilly/compare/revel-v4.21.3...revel-v5.0.0) (2023-08-08)
9
+
10
+
11
+ ### ⚠ BREAKING CHANGES
12
+
13
+ * **revel:** Migrate revel to typescript (#661)
14
+
15
+ ### Features
16
+
17
+ * **revel:** Migrate revel to typescript ([#661](https://github.com/Rebilly/rebilly/issues/661)) ([ef63cbc](https://github.com/Rebilly/rebilly/commit/ef63cbc6a16c9c37d5bc17b10e003eb26c1c4e50)), closes [#608](https://github.com/Rebilly/rebilly/issues/608) [#630](https://github.com/Rebilly/rebilly/issues/630) [#636](https://github.com/Rebilly/rebilly/issues/636) [#658](https://github.com/Rebilly/rebilly/issues/658) [#642](https://github.com/Rebilly/rebilly/issues/642)
18
+ * **revel:** update yarn.lock ([#847](https://github.com/Rebilly/rebilly/issues/847)) ([7c6679f](https://github.com/Rebilly/rebilly/commit/7c6679f7cfeda76bffd1606c0af10e17a6414c83))
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * **revel:** replace npm-run-all with concurrently ([#850](https://github.com/Rebilly/rebilly/issues/850)) ([dea3d8e](https://github.com/Rebilly/rebilly/commit/dea3d8e71974162aba56fe9f4bff4072ed94bdf9))
24
+
25
+ ## [4.22](https://github.com/Rebilly/rebilly/compare/revel-v4.21.3...revel-v4.22.0) (2023-08-03)
26
+
27
+ * **revel:** Migrate to Typescript
28
+
29
+ ## [4.21.3](https://github.com/Rebilly/rebilly/compare/revel-v4.21.2...revel-v4.21.3)
30
+
4
31
  ### Bug Fixes
5
32
 
6
33
  * **recomm:** Re-enable vite.configuration.spec.js test ([#825](https://github.com/Rebilly/rebilly/issues/825)) ([b8118e7](https://github.com/Rebilly/rebilly/commit/b8118e7455b71d1eb165d21de7201433a6905cad))
7
34
 
8
35
  ## [4.21.2](https://github.com/Rebilly/rebilly/compare/revel-v4.21.1...revel-v4.21.2) (2023-08-03)
9
36
 
10
-
11
37
  ### Bug Fixes
12
38
 
13
39
  * **revel:** Update helpers styles and doc ([#817](https://github.com/Rebilly/rebilly/issues/817)) ([7474497](https://github.com/Rebilly/rebilly/commit/7474497e6fb2e75ffa1fd302fedfe3765a6a038e))
14
40
 
15
41
  ## [4.21.0](https://github.com/Rebilly/rebilly/compare/revel-v4.20.11...revel-v4.21.0) (2023-08-01)
16
42
 
17
-
18
43
  ### Features
19
44
 
20
45
  * **revel:** Add text CSS helpers to Revel lib ([#803](https://github.com/Rebilly/rebilly/issues/803)) ([4fb3999](https://github.com/Rebilly/rebilly/commit/4fb39993f397fe84496924954400551adbf71721))
21
46
 
22
47
  ## [4.20.10](https://github.com/Rebilly/rebilly/compare/revel-v4.20.9...revel-v4.20.10) (2023-07-24)
23
48
 
24
-
25
49
  ### Bug Fixes
26
50
 
27
51
  * **instruments:** Ensure dependencies are build as part of semantic-release ([#738](https://github.com/Rebilly/rebilly/issues/738)) ([cade641](https://github.com/Rebilly/rebilly/commit/cade6410236ed8b71a4bf65a591150709c645c90))
28
52
 
29
53
  ## [4.20.9](https://github.com/Rebilly/rebilly/compare/revel-v4.20.8...revel-v4.20.9) (2023-07-19)
30
54
 
31
-
32
55
  ### Bug Fixes
33
56
 
34
57
  * **revel:** Foundations and content main links are not working ([#714](https://github.com/Rebilly/rebilly/issues/714)) ([42cde1c](https://github.com/Rebilly/rebilly/commit/42cde1c5b3929053e83c99ec9b7c194f4c72ce8a))
35
58
 
36
59
  ## [4.20.8](https://github.com/Rebilly/rebilly/compare/revel-v4.20.7...revel-v4.20.8) (2023-07-17)
37
60
 
38
-
39
61
  ### Bug Fixes
40
62
 
41
63
  * **revel:** Update r-popper animation ([#705](https://github.com/Rebilly/rebilly/issues/705)) ([6847d8c](https://github.com/Rebilly/rebilly/commit/6847d8c4e4b2b4c437058f3dbca8d3e2f5dcf6a8))
42
64
 
43
65
  ## [4.20.7](https://github.com/Rebilly/rebilly/compare/revel-v4.20.6...revel-v4.20.7) (2023-07-17)
44
66
 
45
-
46
67
  ### Bug Fixes
47
68
 
48
69
  * **revel:** Missing class on popover styles ([#698](https://github.com/Rebilly/rebilly/issues/698)) ([cb6a25b](https://github.com/Rebilly/rebilly/commit/cb6a25b0d8d043fe4805ba7b1a0fbdea9013fb45))
49
70
 
50
71
  ## [4.20.6](https://github.com/Rebilly/rebilly/compare/revel-v4.20.5...revel-v4.20.6) (2023-07-17)
51
72
 
52
-
53
73
  ### Bug Fixes
54
74
 
55
75
  * **revel:** Update field group r-select styles ([#696](https://github.com/Rebilly/rebilly/issues/696)) ([4f01aca](https://github.com/Rebilly/rebilly/commit/4f01aca693e81e52db4f970de640e34a2d6ce6c4))
56
76
 
57
77
  ## [4.20.5](https://github.com/Rebilly/rebilly/compare/revel-v4.20.4...revel-v4.20.5) (2023-07-17)
58
78
 
59
-
60
79
  ### Bug Fixes
61
80
 
62
81
  * **recomm:** Api definitions workflow ([#693](https://github.com/Rebilly/rebilly/issues/693)) ([998c957](https://github.com/Rebilly/rebilly/commit/998c957ff145f818cf0d74ed607ec0c10859909e))
63
82
 
64
83
  ## [4.20.4](https://github.com/Rebilly/rebilly/compare/revel-v4.20.3...revel-v4.20.4) (2023-07-14)
65
84
 
66
-
67
85
  ### Bug Fixes
68
86
 
69
87
  * **revel:** Update tables styles ([#681](https://github.com/Rebilly/rebilly/issues/681)) ([5254628](https://github.com/Rebilly/rebilly/commit/52546283f4413e63fd183ca58051b65263c9b72f))
70
88
 
71
89
  ## [4.20.3](https://github.com/Rebilly/rebilly/compare/revel-v4.20.2...revel-v4.20.3) (2023-07-14)
72
90
 
73
-
74
91
  ### Bug Fixes
75
92
 
76
93
  * **revel:** Update r-input styles ([#634](https://github.com/Rebilly/rebilly/issues/634)) ([66fa61c](https://github.com/Rebilly/rebilly/commit/66fa61c5063e92670e88584b3b796154801c33da))
77
94
 
78
95
  ## [4.20.2](https://github.com/Rebilly/rebilly/compare/revel-v4.20.1...revel-v4.20.2) (2023-07-14)
79
96
 
80
-
81
97
  ### Bug Fixes
82
98
 
83
99
  * **revel:** Update popover styles ([#639](https://github.com/Rebilly/rebilly/issues/639)) ([619be8f](https://github.com/Rebilly/rebilly/commit/619be8fad292031e278f08e90e70f2c90e0b6ab4))
84
100
 
85
101
  ## [4.20.1](https://github.com/Rebilly/rebilly/compare/revel-v4.20.0...revel-v4.20.1) (2023-07-12)
86
102
 
87
-
88
103
  ### Bug Fixes
89
104
 
90
105
  * **revel:** update tooltip z-index on modal ([#669](https://github.com/Rebilly/rebilly/issues/669)) ([2d974ea](https://github.com/Rebilly/rebilly/commit/2d974eae73dccea1322f1f7ab68dcf5f61e42d45))
91
106
 
92
107
  ## [4.20.0](https://github.com/Rebilly/rebilly/compare/revel-v4.19.2...revel-v4.20.0) (2023-07-04)
93
108
 
94
-
95
109
  ### Features
96
110
 
97
111
  * **kyc-document-gatherer:** TypeScript, linting and formatting improvements ([#570](https://github.com/Rebilly/rebilly/issues/570)) ([a724088](https://github.com/Rebilly/rebilly/commit/a724088669b88437f4bee59bcd06f66c01a7b8d7))
98
112
 
99
113
  ## [4.19.2](https://github.com/Rebilly/rebilly/compare/revel-v4.19.1...revel-v4.19.2) (2023-06-26)
100
114
 
101
-
102
115
  ### Bug Fixes
103
116
 
104
117
  * **revel:** Add style to radios that are disabled but checked ([#563](https://github.com/Rebilly/rebilly/issues/563)) ([01a2615](https://github.com/Rebilly/rebilly/commit/01a261583c3a3db86edb1a9445afc17a02159b95))
105
118
 
106
119
  ## [4.19.1](https://github.com/Rebilly/rebilly/compare/revel-v4.19.0...revel-v4.19.1) (2023-06-26)
107
120
 
108
-
109
121
  ### Bug Fixes
110
122
 
111
123
  * **revel:** Fix r-select not showing no result message ([#562](https://github.com/Rebilly/rebilly/issues/562)) ([a6cb0f5](https://github.com/Rebilly/rebilly/commit/a6cb0f5faa4ad60f4f5f25ff9e93290d68979e74))
112
124
 
113
125
  ## [4.19.0](https://github.com/Rebilly/rebilly/compare/revel-v4.18.2...revel-v4.19.0) (2023-06-20)
114
126
 
115
-
116
127
  ### Features
117
128
 
118
129
  * **revel:** Add breakpoints tokens ([#516](https://github.com/Rebilly/rebilly/issues/516)) ([b9f7eda](https://github.com/Rebilly/rebilly/commit/b9f7edad021df1eefea2414d8cbfe62775f0738b))
119
130
 
120
131
  ## [4.18.2](https://github.com/Rebilly/rebilly/compare/revel-v4.18.1...revel-v4.18.2) (2023-06-19)
121
132
 
122
-
123
133
  ### Bug Fixes
124
134
 
125
135
  * **revel:** Update modal and tooltip z-index ([#536](https://github.com/Rebilly/rebilly/issues/536)) ([fd9f614](https://github.com/Rebilly/rebilly/commit/fd9f614174ec83f25723a414bb58cd9d10bf7769))
126
136
 
127
137
  ## [4.18.1](https://github.com/Rebilly/rebilly/compare/revel-v4.18.0...revel-v4.18.1) (2023-06-19)
128
138
 
129
-
130
139
  ### Bug Fixes
131
140
 
132
141
  * **revel:** Dropdown shows on top of header on Recomm ([#529](https://github.com/Rebilly/rebilly/issues/529)) ([8d1cb61](https://github.com/Rebilly/rebilly/commit/8d1cb610e89588526be7443d45264402f13154c3))
133
142
 
134
143
  ## [4.18.0](https://github.com/Rebilly/rebilly/compare/revel-v4.17.0...revel-v4.18.0) (2023-06-15)
135
144
 
136
-
137
145
  ### Features
138
146
 
139
147
  * **recomm:** Add reports page to Recomm ([#502](https://github.com/Rebilly/rebilly/issues/502)) ([2dba9db](https://github.com/Rebilly/rebilly/commit/2dba9dbb643499eec791f671d134c619d04bbba9))
140
148
 
141
149
  ## [4.17.0](https://github.com/Rebilly/rebilly/compare/revel-v4.16.0...revel-v4.17.0) (2023-06-14)
142
150
 
143
-
144
151
  ### Features
145
152
 
146
153
  * **revel:** Add motion tokens ([#503](https://github.com/Rebilly/rebilly/issues/503)) ([da5b1a2](https://github.com/Rebilly/rebilly/commit/da5b1a229eccc47b7940e57a3eb14949d32ce86c))
147
154
 
148
155
  ## [4.16.0](https://github.com/Rebilly/rebilly/compare/revel-v4.15.0...revel-v4.16.0) (2023-06-13)
149
156
 
150
-
151
157
  ### Features
152
158
 
153
159
  * **revel:** Added Z-index tokens to Revel ([#496](https://github.com/Rebilly/rebilly/issues/496)) ([9eeb7a9](https://github.com/Rebilly/rebilly/commit/9eeb7a91c588b4f529a968a8724cdf9f19cffca4))
154
160
 
155
161
  ## [4.15.0](https://github.com/Rebilly/rebilly/compare/revel-v4.14.0...revel-v4.15.0) (2023-06-13)
156
162
 
157
-
158
163
  ### Features
159
164
 
160
165
  * **kyc-document-gatherer:** Improve TypeScript for unit-tests & minor improvements ([#459](https://github.com/Rebilly/rebilly/issues/459)) ([460ef39](https://github.com/Rebilly/rebilly/commit/460ef39cc893680820a913cd9decd7accaa6bc57))
161
166
 
162
167
  ## [4.14.0](https://github.com/Rebilly/rebilly/compare/revel-v4.13.0...revel-v4.14.0) (2023-06-08)
163
168
 
164
-
165
169
  ### Features
166
170
 
167
171
  * **revel:** Shadows tokens ([#476](https://github.com/Rebilly/rebilly/issues/476)) ([cd1bfd2](https://github.com/Rebilly/rebilly/commit/cd1bfd22907ed77cdbf70fefaf41268eae7f197c))
168
172
 
169
173
  ## [4.13.0](https://github.com/Rebilly/rebilly/compare/revel-v4.12.0...revel-v4.13.0) (2023-06-07)
170
174
 
171
-
172
175
  ### Features
173
176
 
174
177
  * **revel:** Make toast closeable by default ([#466](https://github.com/Rebilly/rebilly/issues/466)) ([6ba62c4](https://github.com/Rebilly/rebilly/commit/6ba62c4a316ef70fd43c0ba5b9a1bc8e3ed098fc))
175
178
 
176
179
  ## [4.12.0](https://github.com/Rebilly/rebilly/compare/revel-v4.11.1...revel-v4.12.0) (2023-06-07)
177
180
 
178
-
179
181
  ### Features
180
182
 
181
183
  * **revel:** Add border radius tokens ([#455](https://github.com/Rebilly/rebilly/issues/455)) ([bd52bfe](https://github.com/Rebilly/rebilly/commit/bd52bfe55f2cd8754de94e336594f425a32c759f))
182
184
 
183
185
  ## [4.11.1](https://github.com/Rebilly/rebilly/compare/revel-v4.11.0...revel-v4.11.1) (2023-06-06)
184
186
 
185
-
186
187
  ### Bug Fixes
187
188
 
188
189
  * **instruments:** Fix 3ds not showing in approval url ([#454](https://github.com/Rebilly/rebilly/issues/454)) ([e1895a1](https://github.com/Rebilly/rebilly/commit/e1895a1c9347e928078d32ae1597eddeff9eccc8))
189
190
 
190
191
  ## [4.11.0](https://github.com/Rebilly/rebilly/compare/revel-v4.10.1...revel-v4.11.0) (2023-06-06)
191
192
 
192
-
193
193
  ### Features
194
194
 
195
195
  * **revel:** Update `Tokens.vue` component ([#445](https://github.com/Rebilly/rebilly/issues/445)) ([1c36772](https://github.com/Rebilly/rebilly/commit/1c3677212fc2283b7ce239bbe264fa4ba1649e2a))
196
196
 
197
197
  ## [4.10.1](https://github.com/Rebilly/rebilly/compare/revel-v4.10.0...revel-v4.10.1) (2023-05-24)
198
198
 
199
-
200
199
  ### Bug Fixes
201
200
 
202
201
  * **recomm:** Fix update-column-schemas command ([#331](https://github.com/Rebilly/rebilly/issues/331)) ([165f5ba](https://github.com/Rebilly/rebilly/commit/165f5ba631fb6cdf6891683ea3b7d3901fd60f5b))
203
202
 
204
203
  ## [4.10.0](https://github.com/Rebilly/rebilly/compare/revel-v4.9.0...revel-v4.10.0) (2023-05-19)
205
204
 
206
-
207
205
  ### Features
208
206
 
209
207
  * **kyc-document-gatherer:** Code formatting and TypeScript improvements ([#288](https://github.com/Rebilly/rebilly/issues/288)) ([52b1c5d](https://github.com/Rebilly/rebilly/commit/52b1c5d01783a11528575cef31e4e282f85de3a0))
210
208
 
211
209
  ## [4.9.0](https://github.com/Rebilly/rebilly/compare/revel-v4.8.0...revel-v4.9.0) (2023-05-18)
212
210
 
213
-
214
211
  ### Features
215
212
 
216
213
  * **kyc-document-gatherer:** Migrate components to TypeScript ([#229](https://github.com/Rebilly/rebilly/issues/229)) ([ecedced](https://github.com/Rebilly/rebilly/commit/ecedced77f4f5fa2078ab17a6b74e3bc63fd2582))
217
214
 
218
215
  ## [4.8.0](https://github.com/Rebilly/rebilly/compare/revel-v4.7.0...revel-v4.8.0) (2023-05-18)
219
216
 
220
-
221
217
  ### Features
222
218
 
223
219
  * **revel:** Update unstyled button style ([#271](https://github.com/Rebilly/rebilly/issues/271)) ([2d83ca7](https://github.com/Rebilly/rebilly/commit/2d83ca72d2657c5287cc75f9a9c38d775bace9b4))
224
220
 
225
221
  ## [4.7.0](https://github.com/Rebilly/rebilly/compare/revel-v4.6.0...revel-v4.7.0) (2023-05-17)
226
222
 
227
-
228
223
  ### Features
229
224
 
230
225
  * **revel:** Update r-button icon loading states ([#264](https://github.com/Rebilly/rebilly/issues/264)) ([97896a5](https://github.com/Rebilly/rebilly/commit/97896a5cabcea9306fe46a377f0cac322661dec1))
231
226
 
232
227
  ## [4.6.0](https://github.com/Rebilly/rebilly/compare/revel-v4.5.1...revel-v4.6.0) (2023-05-16)
233
228
 
234
-
235
229
  ### Features
236
230
 
237
231
  * **revel:** Add icon to r-button component ([#254](https://github.com/Rebilly/rebilly/issues/254)) ([e1aa0c6](https://github.com/Rebilly/rebilly/commit/e1aa0c6ff545f4f14caf8990cedea44bdc4583a5))
238
232
 
239
233
  ## [4.5.1](https://github.com/Rebilly/rebilly/compare/revel-v4.5.0...revel-v4.5.1) (2023-05-12)
240
234
 
241
-
242
235
  ### Bug Fixes
243
236
 
244
237
  * **revel:** Update button style condition ([#240](https://github.com/Rebilly/rebilly/issues/240)) ([334d5dc](https://github.com/Rebilly/rebilly/commit/334d5dc3e0814712dbf96be537f2c7f1d8fc89e9))
245
238
 
246
239
  ## [4.5.0](https://github.com/Rebilly/rebilly/compare/revel-v4.4.0...revel-v4.5.0) (2023-05-10)
247
240
 
248
-
249
241
  ### Features
250
242
 
251
243
  * **kyc-document-gatherer:** change eslint vue config ([#238](https://github.com/Rebilly/rebilly/issues/238)) ([7dc9475](https://github.com/Rebilly/rebilly/commit/7dc94759b3e758eddf4a4c8d729872551a380471))
252
244
 
253
245
  ## [4.4.0](https://github.com/Rebilly/rebilly/compare/revel-v4.3.1...revel-v4.4.0) (2023-05-09)
254
246
 
255
-
256
247
  ### Features
257
248
 
258
249
  * **kyc-document-gatherer:** TypeScript setup and configuration ([#201](https://github.com/Rebilly/rebilly/issues/201)) ([d7f804c](https://github.com/Rebilly/rebilly/commit/d7f804c871a4bd868864c7c67895b3468db049fe))
259
250
 
260
251
  ## [4.3.1](https://github.com/Rebilly/rebilly/compare/revel-v4.3.0...revel-v4.3.1) (2023-05-09)
261
252
 
262
-
263
253
  ### Bug Fixes
264
254
 
265
255
  * **revel:** Link button didn't display underline when hovered ([#233](https://github.com/Rebilly/rebilly/issues/233)) ([b9911ef](https://github.com/Rebilly/rebilly/commit/b9911ef3a9799109cebd81701e805ee87f334e89))
266
256
 
267
257
  ## [4.3.0](https://github.com/Rebilly/rebilly/compare/revel-v4.2.1...revel-v4.3.0) (2023-05-05)
268
258
 
269
-
270
259
  ### Features
271
260
 
272
261
  * **instruments:** Use JSON schema to validate mount options ([#211](https://github.com/Rebilly/rebilly/issues/211)) ([f304128](https://github.com/Rebilly/rebilly/commit/f304128c4cfc85f367f64c952625d31d08f845f5))
273
262
 
274
263
  ## [4.2.1](https://github.com/Rebilly/rebilly/compare/revel-v4.2.0...revel-v4.2.1) (2023-04-28)
275
264
 
276
-
277
265
  ### Bug Fixes
278
266
 
279
267
  * **revel:** r-avatar had wrong top margin applied ([#190](https://github.com/Rebilly/rebilly/issues/190)) ([23a166c](https://github.com/Rebilly/rebilly/commit/23a166c152653b6393cfe5db04129f5dec559857))
280
268
 
281
269
  ## [4.2.0](https://github.com/Rebilly/rebilly/compare/revel-v4.1.0...revel-v4.2.0) (2023-04-28)
282
270
 
283
-
284
271
  ### Features
285
272
 
286
273
  * **revel:** Update button component ([#186](https://github.com/Rebilly/rebilly/issues/186)) ([c269206](https://github.com/Rebilly/rebilly/commit/c269206077471cd5eaf0547754d0632c34d39f88))
287
274
 
288
275
  ## [4.1.0](https://github.com/Rebilly/rebilly/compare/revel-v4.0.0...revel-v4.1.0) (2023-04-28)
289
276
 
290
-
291
277
  ### Features
292
278
 
293
279
  * **revel:** Update icon component ([#187](https://github.com/Rebilly/rebilly/issues/187)) ([4f57cb1](https://github.com/Rebilly/rebilly/commit/4f57cb1b052825a7db6ce501a47678c852683446))
294
280
 
295
281
  ## [4.0.0](https://github.com/Rebilly/rebilly/compare/revel-v3.0.0...revel-v4.0.0) (2023-04-26)
296
282
 
297
-
298
283
  ### ⚠ BREAKING CHANGES
299
284
 
300
285
  * **revel:** Update library name to Revel (#178)
@@ -305,17 +290,15 @@
305
290
 
306
291
  ## [3.0.0](https://github.com/Rebilly/rebilly/compare/revel-v2.6.0...revel-v3.0.0) (2023-04-19)
307
292
 
308
-
309
293
  ### ⚠ BREAKING CHANGES
310
294
 
311
295
  * **revel:** Update spaces variables and helpers (#132)
312
296
 
313
297
  ### Features
314
298
 
315
- * Migrate kyc-document-gatherer-vue3 ([#99](https://github.com/Rebilly/rebilly/issues/99)) ([06596dc](https://github.com/Rebilly/rebilly/commit/06596dce43efda66b7945dfcd88b20da617622d4)), closes [#48](https://github.com/Rebilly/rebilly/issues/48) [#45](https://github.com/Rebilly/rebilly/issues/45)
299
+ - Migrate kyc-document-gatherer-vue3 ([#99](https://github.com/Rebilly/rebilly/issues/99)) ([06596dc](https://github.com/Rebilly/rebilly/commit/06596dce43efda66b7945dfcd88b20da617622d4)), closes [#48](https://github.com/Rebilly/rebilly/issues/48) [#45](https://github.com/Rebilly/rebilly/issues/45)
316
300
  * **revel:** Update spaces variables and helpers ([#132](https://github.com/Rebilly/rebilly/issues/132)) ([d45be29](https://github.com/Rebilly/rebilly/commit/d45be29415c72e4b887ea90661136fe0856b3330))
317
301
 
318
-
319
302
  ### Bug Fixes
320
303
 
321
304
  * **revel:** Force version bump and rename from `recomponents-next` ([#142](https://github.com/Rebilly/rebilly/issues/142)) ([1972c7e](https://github.com/Rebilly/rebilly/commit/1972c7eff197204a212c94a70bde2d59e47a88f1))
@@ -323,7 +306,6 @@
323
306
 
324
307
  ## [2.6.0](https://github.com/Rebilly/rebilly/compare/revel-v2.5.0...revel-v2.6.0) (2023-03-30)
325
308
 
326
-
327
309
  ### Features
328
310
 
329
311
  * **revel:** Update library to use color tokens ([#89](https://github.com/Rebilly/rebilly/issues/89)) ([0e8de67](https://github.com/Rebilly/rebilly/commit/0e8de67dee7777ef79754f95e617e527d8c72021))
package/README.md CHANGED
@@ -5,8 +5,11 @@
5
5
  </p>
6
6
 
7
7
  # Revel
8
+
8
9
  ### Design and develop clean, elegant, and performant Rebilly experiences.
10
+
9
11
  ---
12
+
10
13
  <p>
11
14
  <a href="https://revel.rebilly.dev/">
12
15
  View Documentation
@@ -26,35 +29,41 @@
26
29
  </p>
27
30
 
28
31
  ## About this repo
32
+
29
33
  Revel is the design system used by designers and developers at Rebilly to build clean, elegant, and performant experiences for its merchants.
30
34
 
31
35
  ## Commands
36
+
32
37
  ### Install dependecies and start development
38
+
33
39
  ```
34
40
  yarn && yarn docs:dev
35
41
  ```
36
42
 
37
43
  ### Commands
38
- Command | Description
39
- -|-
40
- `dev` | Run the dev server for the component documentation. See `docs:dev`.
41
- `docs:dev` | Run the dev server for the component documentation.
42
- `docs:build` | Build component documentation as a static HTML site.
43
- `build` | Build the library.
44
- `build:watch` | Build the library and rebuild on file changes.
45
- `playground:dev` | Run the playground dev server (see [Playground](#playground)).
46
- `lint:no-fix` | Run eslint.
47
- `lint:fix` | Run eslint and automatically fix issues.
48
- `test:unit` | Run the unit tests.
49
- `test:unit:watch` | Run the unit tests on changed files, in watch mode.
44
+
45
+ | Command | Description |
46
+ | ----------------- | ------------------------------------------------------------------- |
47
+ | `dev` | Run the dev server for the component documentation. See `docs:dev`. |
48
+ | `docs:dev` | Run the dev server for the component documentation. |
49
+ | `docs:build` | Build component documentation as a static HTML site. |
50
+ | `build` | Build the library. |
51
+ | `build:watch` | Build the library and rebuild on file changes. |
52
+ | `playground:dev` | Run the playground dev server (see [Playground](#playground)). |
53
+ | `lint:no-fix` | Run eslint. |
54
+ | `lint:fix` | Run eslint and automatically fix issues. |
55
+ | `test:unit` | Run the unit tests. |
56
+ | `test:unit:watch` | Run the unit tests on changed files, in watch mode. |
50
57
 
51
58
  ### Playground
59
+
52
60
  Sometimes it is easier to test a complex configuration directly in a vue application, rather than through our vuepress documentation.
53
61
 
54
62
  For this, we provide a playground server which can be run with:
63
+
55
64
  ```
56
65
  yarn playground:dev
57
66
  ```
58
67
 
59
- Note: You must copy the playground component file
60
- `/src/playground/Playground-copyme.vue` to `Playground.vue`.
68
+ Note: You must copy the playground component file
69
+ `/src/playground/Playground-copyme.vue` to `Playground.vue`.
@@ -0,0 +1 @@
1
+ export { DatePicker } from '../components/r-date-input/v-calendar.es';
@@ -0,0 +1,28 @@
1
+ /**
2
+ *
3
+ * App time formats.
4
+ * TODO: set correct names for time formats (rename all).
5
+ * constants should be independent of functionality (common names through the app),
6
+ * for example "datetime", "month", "date month", not "timelineTime".
7
+ */
8
+ export declare const DateTimeFormats: {
9
+ readonly datePickerDate: "YYYY-MM-DD";
10
+ readonly datetime: "MMM Do, YYYY [at] h:mm a";
11
+ readonly date: "MMM Do, YYYY";
12
+ readonly shortDate: "MMM D, YYYY";
13
+ readonly shortDateTime: "MMM D, YYYY h:mm a";
14
+ readonly shortDate24HrTime: "MMM D, YYYY HH:mm";
15
+ readonly time: "HH:mm:ssZ";
16
+ readonly shortTime: "hh:mm a";
17
+ readonly timeApiFormat: "HH:mm:ssZ";
18
+ readonly longDate: "MMMM Do, YYYY";
19
+ readonly longDateTime: "MMMM Do, YYYY [at] hh:mmA";
20
+ readonly timelineDateTime: "MMMM Do hh:mm:ss A";
21
+ readonly timelineTime: "h:mm:ss A";
22
+ readonly timelineHeader: "MMMM D";
23
+ readonly inlineDateValue: "MMM Do YYYY";
24
+ readonly orderDatetime: "MMM Do, YYYY h:mm a";
25
+ readonly orderDate: "MMM Do";
26
+ };
27
+ export type DateTimeFormatsVariant = keyof typeof DateTimeFormats;
28
+ export type DateTimeFormat = (typeof DateTimeFormats)[DateTimeFormatsVariant];
@@ -0,0 +1,2 @@
1
+ import debounce from 'lodash.debounce';
2
+ export { debounce };
@@ -0,0 +1,2 @@
1
+ import deepClone from 'lodash.clonedeep';
2
+ export { deepClone };
@@ -0,0 +1,4 @@
1
+ import type { Moment } from 'moment';
2
+ import { type DateTimeFormatsVariant } from '../datetime-formats';
3
+ import type { Voidable } from '../../types';
4
+ export declare const formatDate: (value: Voidable<Moment | string | Date>, format?: DateTimeFormatsVariant | string, timezone?: string) => string;
@@ -0,0 +1,6 @@
1
+ import { debounce } from './debounce';
2
+ import { deepClone } from './deep-clone';
3
+ import { formatDate } from './format-date';
4
+ import { kebabCase } from './kebab-case';
5
+ import { isObject } from './is-object';
6
+ export { debounce, deepClone, formatDate, kebabCase, isObject };
@@ -0,0 +1,2 @@
1
+ import type { Nullable } from '../../types';
2
+ export declare function isObject(value?: Nullable<object>): boolean;
@@ -0,0 +1,2 @@
1
+ import kebabCase from 'lodash.kebabcase';
2
+ export { kebabCase };
@@ -0,0 +1,27 @@
1
+ import '../styles';
2
+ export { default as RAvatar } from './r-avatar/r-avatar.vue';
3
+ export { default as RBadge } from './r-badge/r-badge.vue';
4
+ export { default as RButton } from './r-button/r-button.vue';
5
+ export { default as RButtonGroup } from './r-button-group/r-button-group.vue';
6
+ export { default as RCheckbox } from './r-checkbox/r-checkbox.vue';
7
+ export { default as RDateInput } from './r-date-input/r-date-input.vue';
8
+ export { default as RFileUpload } from './r-file-upload/r-file-upload.vue';
9
+ export { default as RGrid } from './r-grid/r-grid.vue';
10
+ export { default as RIcon } from './r-icon/r-icon.vue';
11
+ export { default as RIconButton } from './r-icon-button/r-icon-button.vue';
12
+ export { default as RImg } from './r-img/r-img.vue';
13
+ export { default as RInput } from './r-input/r-input.vue';
14
+ export { default as RLoader } from './r-loader/r-loader.vue';
15
+ export { default as RModal } from './r-modal/r-modal.vue';
16
+ export { default as RMonthPicker } from './r-month-picker/r-month-picker.vue';
17
+ export { default as RPagination } from './r-pagination/r-pagination.vue';
18
+ export { default as RPaginationControl } from './r-pagination-control/r-pagination-control.vue';
19
+ export { default as RPopper } from './r-popper/r-popper.vue';
20
+ export { default as RRadio } from './r-radio/r-radio.vue';
21
+ export { default as RRepeater } from './r-repeater/r-repeater.vue';
22
+ export { default as RSelect } from './r-select/r-select.vue';
23
+ export { default as RTab } from './r-tabs/r-tab.vue';
24
+ export { default as RTabs } from './r-tabs/r-tabs.vue';
25
+ export { default as RTile } from './r-tile/r-tile.vue';
26
+ export { default as RToast } from './r-toast/r-toast.vue';
27
+ export { default as RToggle } from './r-toggle/r-toggle.vue';
@@ -0,0 +1,86 @@
1
+ import { type PropType } from 'vue';
2
+ import type { Nullable } from '../../types';
3
+ declare const _default: import("vue").DefineComponent<{
4
+ /**
5
+ * Display initials
6
+ */
7
+ initials: {
8
+ type: PropType<Nullable<string>>;
9
+ validator: (value: string) => boolean;
10
+ default: null;
11
+ };
12
+ /**
13
+ * A text to describe the avatar
14
+ */
15
+ description: {
16
+ type: StringConstructor;
17
+ default: null;
18
+ };
19
+ /**
20
+ * The avatar image
21
+ */
22
+ image: {
23
+ type: StringConstructor;
24
+ default: null;
25
+ };
26
+ /**
27
+ * Color for the avatar
28
+ */
29
+ color: {
30
+ type: PropType<Nullable<string>>;
31
+ default: null;
32
+ };
33
+ /**
34
+ * Icon for the avatar
35
+ */
36
+ icon: {
37
+ type: StringConstructor;
38
+ default: null;
39
+ };
40
+ }, unknown, unknown, {
41
+ initialsColor(): string;
42
+ }, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
43
+ /**
44
+ * Display initials
45
+ */
46
+ initials: {
47
+ type: PropType<Nullable<string>>;
48
+ validator: (value: string) => boolean;
49
+ default: null;
50
+ };
51
+ /**
52
+ * A text to describe the avatar
53
+ */
54
+ description: {
55
+ type: StringConstructor;
56
+ default: null;
57
+ };
58
+ /**
59
+ * The avatar image
60
+ */
61
+ image: {
62
+ type: StringConstructor;
63
+ default: null;
64
+ };
65
+ /**
66
+ * Color for the avatar
67
+ */
68
+ color: {
69
+ type: PropType<Nullable<string>>;
70
+ default: null;
71
+ };
72
+ /**
73
+ * Icon for the avatar
74
+ */
75
+ icon: {
76
+ type: StringConstructor;
77
+ default: null;
78
+ };
79
+ }>>, {
80
+ icon: string;
81
+ color: Nullable<string>;
82
+ image: string;
83
+ initials: Nullable<string>;
84
+ description: string;
85
+ }>;
86
+ export default _default;
@@ -0,0 +1,40 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ /**
3
+ * Changes background color
4
+ */
5
+ type: {
6
+ type: StringConstructor;
7
+ default: string;
8
+ };
9
+ /**
10
+ * Show optional close button
11
+ */
12
+ close: {
13
+ type: BooleanConstructor;
14
+ default: boolean;
15
+ };
16
+ }, unknown, unknown, {
17
+ classes(): Record<string, boolean>;
18
+ }, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "click")[], "close" | "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
19
+ /**
20
+ * Changes background color
21
+ */
22
+ type: {
23
+ type: StringConstructor;
24
+ default: string;
25
+ };
26
+ /**
27
+ * Show optional close button
28
+ */
29
+ close: {
30
+ type: BooleanConstructor;
31
+ default: boolean;
32
+ };
33
+ }>> & {
34
+ onClick?: ((...args: any[]) => any) | undefined;
35
+ onClose?: ((...args: any[]) => any) | undefined;
36
+ }, {
37
+ close: boolean;
38
+ type: string;
39
+ }>;
40
+ export default _default;