@rebilly/revel 5.11.0 → 5.13.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/CHANGELOG.md +14 -0
- package/dist/common/helpers/capitalize-first-letter.d.ts +1 -0
- package/dist/common/helpers/index.d.ts +4 -2
- package/dist/common/helpers/is-kebab-case.d.ts +1 -0
- package/dist/components/r-tabs/r-tabs.vue.d.ts +1 -0
- package/dist/revel.mjs +2360 -2097
- package/dist/revel.umd.js +5 -5
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [5.13.0](https://github.com/Rebilly/rebilly/compare/revel-v5.12.0...revel-v5.13.0) (2023-10-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **instruments/methods:** migrate helpers to ts ([#1284](https://github.com/Rebilly/rebilly/issues/1284)) ([4949fab](https://github.com/Rebilly/rebilly/commit/4949fab17735119309491157b8306fe5696b787a)), closes [#1287](https://github.com/Rebilly/rebilly/issues/1287)
|
|
7
|
+
|
|
8
|
+
## [5.12.0](https://github.com/Rebilly/rebilly/compare/revel-v5.11.0...revel-v5.12.0) (2023-10-03)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **revel:** Support kebab-cased tab names ([#1646](https://github.com/Rebilly/rebilly/issues/1646)) ([df6b53a](https://github.com/Rebilly/rebilly/commit/df6b53ab6162464a57fc669a5b54e48f0e024d4d))
|
|
14
|
+
|
|
1
15
|
## [5.11.0](https://github.com/Rebilly/rebilly/compare/revel-v5.10.4...revel-v5.11.0) (2023-09-28)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function capitalizeFirstLetter(str: string): string;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
import { capitalizeFirstLetter } from './capitalize-first-letter';
|
|
1
2
|
import { debounce } from './debounce';
|
|
2
3
|
import { deepClone } from './deep-clone';
|
|
3
4
|
import { formatDate } from './format-date';
|
|
4
|
-
import {
|
|
5
|
+
import { isKebabCase } from './is-kebab-case';
|
|
5
6
|
import { isObject } from './is-object';
|
|
6
|
-
|
|
7
|
+
import { kebabCase } from './kebab-case';
|
|
8
|
+
export { capitalizeFirstLetter, debounce, deepClone, formatDate, isKebabCase, isObject, kebabCase, };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function isKebabCase(str: string): boolean;
|
|
@@ -3487,6 +3487,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3487
3487
|
} | undefined;
|
|
3488
3488
|
}[];
|
|
3489
3489
|
}, {
|
|
3490
|
+
getTabName(tab: Tab, index: number): string;
|
|
3490
3491
|
selectTab({ name, value, to }: Tab, index?: Nullable<number>): void;
|
|
3491
3492
|
getRouteTab(): {
|
|
3492
3493
|
tabId: string;
|