@blueprintjs/icons 4.2.3 → 4.2.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blueprintjs/icons",
3
- "version": "4.2.3",
3
+ "version": "4.2.6",
4
4
  "description": "Components, fonts, icons, and css files for creating and displaying icons.",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/esm/index.js",
@@ -41,8 +41,8 @@
41
41
  "tslib": "~2.3.1"
42
42
  },
43
43
  "devDependencies": {
44
- "@blueprintjs/node-build-scripts": "^4.0.2",
45
- "@blueprintjs/test-commons": "^1.0.5",
44
+ "@blueprintjs/node-build-scripts": "^5.0.1",
45
+ "@blueprintjs/test-commons": "^1.0.8",
46
46
  "enzyme": "^3.11.0",
47
47
  "fantasticon": "^1.2.3",
48
48
  "mocha": "^9.2.2",
@@ -10,7 +10,7 @@ Only to be used by `CamelCaseStringArray<>`.
10
10
  */
11
11
  type InnerCamelCaseStringArray<Parts extends any[], PreviousPart> = Parts extends [
12
12
  `${infer FirstPart}`,
13
- ...infer RemainingParts
13
+ ...infer RemainingParts,
14
14
  ]
15
15
  ? FirstPart extends undefined
16
16
  ? ""
@@ -14,7 +14,7 @@ export type SplitIncludingDelimiters<Source extends string, Delimiter extends st
14
14
  ? [
15
15
  ...SplitIncludingDelimiters<FirstPart, Delimiter>,
16
16
  UsedDelimiter,
17
- ...SplitIncludingDelimiters<SecondPart, Delimiter>
17
+ ...SplitIncludingDelimiters<SecondPart, Delimiter>,
18
18
  ]
19
19
  : never
20
20
  : never
@@ -30,7 +30,7 @@ type StringPartToDelimiterCase<
30
30
  StringPart extends string,
31
31
  UsedWordSeparators extends string,
32
32
  UsedUpperCaseCharacters extends string,
33
- Delimiter extends string
33
+ Delimiter extends string,
34
34
  > = StringPart extends UsedWordSeparators
35
35
  ? Delimiter
36
36
  : StringPart extends UsedUpperCaseCharacters
@@ -48,7 +48,7 @@ type StringArrayToDelimiterCase<
48
48
  Parts extends any[],
49
49
  UsedWordSeparators extends string,
50
50
  UsedUpperCaseCharacters extends string,
51
- Delimiter extends string
51
+ Delimiter extends string,
52
52
  > = Parts extends [`${infer FirstPart}`, ...infer RemainingParts]
53
53
  ? `${StringPartToDelimiterCase<
54
54
  FirstPart,