@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 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 { kebabCase } from './kebab-case';
5
+ import { isKebabCase } from './is-kebab-case';
5
6
  import { isObject } from './is-object';
6
- export { debounce, deepClone, formatDate, kebabCase, isObject };
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;