@t007/utils 0.0.32 → 0.0.34

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.
@@ -1,7 +1,7 @@
1
1
  interface HighlightOptions {
2
- /** Whether to trim individual query strings. Defaults to `true`. */
2
+ /** Whether to trim individual query strings. @default `true`. */
3
3
  trimQuery?: boolean;
4
- /** Whether to match whole words only. Defaults to `false`. */
4
+ /** Whether to match whole words only. @default `false`. */
5
5
  wholeWord?: boolean;
6
6
  }
7
7
  /** React hook to process a text string and identify parts that match a given query, returning an array of text chunks with information on whether they match the query.
@@ -1,7 +1,7 @@
1
1
  interface HighlightOptions {
2
- /** Whether to trim individual query strings. Defaults to `true`. */
2
+ /** Whether to trim individual query strings. @default `true`. */
3
3
  trimQuery?: boolean;
4
- /** Whether to match whole words only. Defaults to `false`. */
4
+ /** Whether to match whole words only. @default `false`. */
5
5
  wholeWord?: boolean;
6
6
  }
7
7
  /** React hook to process a text string and identify parts that match a given query, returning an array of text chunks with information on whether they match the query.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@t007/utils",
3
- "version": "0.0.32",
3
+ "version": "0.0.34",
4
4
  "description": "High-performance utilities for the t007 ecosystem.",
5
5
  "author": "Oketade Oluwatobiloba <tobioketade007@gmail.com>",
6
6
  "license": "MIT",
@@ -16,7 +16,8 @@
16
16
  "browser": "./dist/index.js",
17
17
  "types": "./dist/index.d.ts",
18
18
  "sideEffects": [
19
- "*.css"
19
+ "**/*.css",
20
+ "**/*.scss"
20
21
  ],
21
22
  "exports": {
22
23
  ".": {
@@ -75,7 +76,7 @@
75
76
  "react-dom": "^18.3.1"
76
77
  },
77
78
  "dependencies": {
78
- "sia-reactor": "^0.0.33"
79
+ "sia-reactor": "^0.0.35"
79
80
  },
80
81
  "peerDependencies": {
81
82
  "react": "^18.0.0"