reactive-bulma 1.10.0 → 1.10.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.
@@ -0,0 +1,16 @@
1
+ import { ParseTestIdProps } from '../interfaces/functionProps';
2
+ /**
3
+ *
4
+ * @param { Array<string | null> } _classes Required. Array of classNames on `string` (or `null`) values
5
+ * @returns { string } A single string product of merge all classNames, separated by spaces
6
+ */
7
+ export declare const parseClasses: (_classes: Array<string | null>) => string;
8
+ /**
9
+ *
10
+ * @param { ParseTestIdProps } config Configuration of tag, parsedClasses and tag
11
+ * @param { string } config.tag Required. Component tag used between to build the final testId string.
12
+ * @param { string } config.parsedClasses Required. A single string of previously parsed classes what will be joined with `tag` property.
13
+ * @param { string } config.separator Optional. `''` by default. Will replace final string empty spaces with a configurable string.
14
+ * @returns A single string product of merge all classNames, separated by `separator` value
15
+ */
16
+ export declare const parseTestId: (config: ParseTestIdProps) => string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reactive-bulma",
3
- "version": "1.10.0",
3
+ "version": "1.10.2",
4
4
  "description": "A typescript-react-based component library based on bulma",
5
5
  "keywords": [
6
6
  "typescript",
@@ -1,3 +0,0 @@
1
- import { ParseTestIdProps } from '../interfaces/functionProps';
2
- export declare const parseClasses: (_classes: Array<string | null>) => string;
3
- export declare const parseTestId: (config: ParseTestIdProps) => string;
@@ -1,3 +0,0 @@
1
- import { ParseTestIdProps } from '../interfaces/functionProps';
2
- export declare const parseClasses: (_classes: Array<string | null>) => string;
3
- export declare const parseTestId: (config: ParseTestIdProps) => string;