@anzusystems/common-admin 0.0.44 → 0.0.45

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.
@@ -4593,13 +4593,21 @@ export declare const stringToSlug: (value: string) => string;
4593
4593
  export declare const stringTrimLength: (value: string, maxLength?: number) => string;
4594
4594
 
4595
4595
  /**
4596
- * Converts colon parameters to real values.
4596
+ * Converts colon parameters to real values from params.
4597
4597
  *
4598
4598
  * @param template url containing colon parameters, example: '/:id/edit'
4599
4599
  * @param params object containing real values to be replaced, example: { id:5 }
4600
4600
  */
4601
4601
  export declare const stringUrlTemplateReplace: (template: string, params: UrlParams) => string;
4602
4602
 
4603
+ /**
4604
+ * Converts colon parameters to real values from params. Same as above but it additionally supports vue router regexp.
4605
+ *
4606
+ * @param template url containing colon parameters, example: '/:id(\\d+)/edit'
4607
+ * @param params object containing real values to be replaced, example: { id:5 }
4608
+ */
4609
+ export declare const stringUrlTemplateReplaceVueRouter: (template: string, params: UrlParams) => string;
4610
+
4603
4611
  export declare const SubjectScopeSymbol: InjectionKey<string>;
4604
4612
 
4605
4613
  export declare const SystemScopeSymbol: InjectionKey<string>;